blob: fababa19030557de775aff66284a28db77c6c18a [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 Tarreau70b1e502019-08-30 11:52:59 +0200505 if (!h2s || h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau17104d42019-08-30 07:12:55 +0200506 chunk_appendf(&trace_buf, " : h2c=%p(%s)", h2c, h2c_st_to_str(h2c->st0));
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200507 else if (h2s->id <= 0)
Willy Tarreau17104d42019-08-30 07:12:55 +0200508 chunk_appendf(&trace_buf, " : h2c=%p(%s) dsi=%d h2s=%p(%d,%s)", h2c, h2c_st_to_str(h2c->st0), h2c->dsi, h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200509 else
Willy Tarreau17104d42019-08-30 07:12:55 +0200510 chunk_appendf(&trace_buf, " : h2c=%p(%s) h2s=%p(%d,%s)", h2c, h2c_st_to_str(h2c->st0), h2s, h2s->id, h2s_st_to_str(h2s->st));
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200511 }
512
513 /* Let's dump decoded requests and responses right after parsing. They
514 * are traced at level USER with a few recognizable flags.
515 */
516 if ((mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW) ||
517 mask == (H2_EV_RX_FRAME|H2_EV_RX_HDR)) && buf)
518 htx = htxbuf(buf); // recv req/res
519 else if (mask == (H2_EV_TX_FRAME|H2_EV_TX_HDR))
520 htx = a3; // send req/res
521 else
522 htx = NULL;
523
Willy Tarreau94f1dcf2019-08-30 07:11:30 +0200524 if (level == TRACE_LEVEL_USER && src->verbosity != H2_VERB_MINIMAL && htx && (pos = htx_get_head(htx)) != -1) {
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200525 const struct htx_blk *blk = htx_get_blk(htx, pos);
526 const struct htx_sl *sl = htx_get_blk_ptr(htx, blk);
527 enum htx_blk_type type = htx_get_blk_type(blk);
528
529 if (type == HTX_BLK_REQ_SL)
530 chunk_appendf(&trace_buf, " : [%d] H2 REQ: %.*s %.*s %.*s",
Willy Tarreauc067a3a2019-08-30 07:28:24 +0200531 h2s ? h2s->id : h2c->dsi,
Willy Tarreaudb3cfff2019-08-19 17:56:27 +0200532 HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl),
533 HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl),
534 HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl));
535 else if (type == HTX_BLK_RES_SL)
536 chunk_appendf(&trace_buf, " : [%d] H2 RES: %.*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 }
542}
543
Olivier Houchard7a977432019-03-21 15:47:13 +0100544static __inline int
545h2c_is_dead(struct h2c *h2c)
546{
547 if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */
548 ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */
549 (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */
550 (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */
Willy Tarreau662fafc2019-05-26 09:43:07 +0200551 (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */
Olivier Houchard7a977432019-03-21 15:47:13 +0100552 (conn_xprt_read0_pending(h2c->conn) ||
553 (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid)))))
554 return 1;
555
556 return 0;
Olivier Houchard7a977432019-03-21 15:47:13 +0100557}
558
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200559/*****************************************************/
560/* functions below are for dynamic buffer management */
561/*****************************************************/
562
Willy Tarreau315d8072017-12-10 22:17:57 +0100563/* indicates whether or not the we may call the h2_recv() function to attempt
564 * to receive data into the buffer and/or demux pending data. The condition is
565 * a bit complex due to some API limits for now. The rules are the following :
566 * - if an error or a shutdown was detected on the connection and the buffer
567 * is empty, we must not attempt to receive
568 * - if the demux buf failed to be allocated, we must not try to receive and
569 * we know there is nothing pending
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100570 * - if no flag indicates a blocking condition, we may attempt to receive,
571 * regardless of whether the demux buffer is full or not, so that only
572 * de demux part decides whether or not to block. This is needed because
573 * the connection API indeed prevents us from re-enabling receipt that is
574 * already enabled in a polled state, so we must always immediately stop
575 * as soon as the demux can't proceed so as never to hit an end of read
576 * with data pending in the buffers.
Willy Tarreau315d8072017-12-10 22:17:57 +0100577 * - otherwise must may not attempt
578 */
579static inline int h2_recv_allowed(const struct h2c *h2c)
580{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200581 if (b_data(&h2c->dbuf) == 0 &&
Willy Tarreau315d8072017-12-10 22:17:57 +0100582 (h2c->st0 >= H2_CS_ERROR ||
583 h2c->conn->flags & CO_FL_ERROR ||
584 conn_xprt_read0_pending(h2c->conn)))
585 return 0;
586
587 if (!(h2c->flags & H2_CF_DEM_DALLOC) &&
Willy Tarreau6042aeb2017-12-12 11:01:44 +0100588 !(h2c->flags & H2_CF_DEM_BLOCK_ANY))
Willy Tarreau315d8072017-12-10 22:17:57 +0100589 return 1;
590
591 return 0;
592}
593
Willy Tarreau47b515a2018-12-21 16:09:41 +0100594/* restarts reading on the connection if it was not enabled */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200595static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer)
Willy Tarreau47b515a2018-12-21 16:09:41 +0100596{
597 if (!h2_recv_allowed(h2c))
598 return;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200599 if ((!consider_buffer || !b_data(&h2c->dbuf))
600 && (h2c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau47b515a2018-12-21 16:09:41 +0100601 return;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200602 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau47b515a2018-12-21 16:09:41 +0100603}
604
605
Willy Tarreaufa1d3572019-01-31 10:31:51 +0100606/* returns true if the front connection has too many conn_streams attached */
607static inline int h2_frt_has_too_many_cs(const struct h2c *h2c)
Willy Tarreauf2101912018-07-19 10:11:38 +0200608{
Willy Tarreaua8754662018-12-23 20:43:58 +0100609 return h2c->nb_cs > h2_settings_max_concurrent_streams;
Willy Tarreauf2101912018-07-19 10:11:38 +0200610}
611
Willy Tarreau44e973f2018-03-01 17:49:30 +0100612/* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c
613 * flags are used to figure what buffer was requested. It returns 1 if the
614 * allocation succeeds, in which case the connection is woken up, or 0 if it's
615 * impossible to wake up and we prefer to be woken up later.
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200616 */
Willy Tarreau44e973f2018-03-01 17:49:30 +0100617static int h2_buf_available(void *target)
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200618{
619 struct h2c *h2c = target;
Willy Tarreau0b559072018-02-26 15:22:17 +0100620 struct h2s *h2s;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200621
Willy Tarreau44e973f2018-03-01 17:49:30 +0100622 if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc_margin(&h2c->dbuf, 0)) {
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200623 h2c->flags &= ~H2_CF_DEM_DALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200624 h2c_restart_reading(h2c, 1);
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200625 return 1;
626 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200627
Willy Tarreau51330962019-05-26 09:38:07 +0200628 if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc_margin(br_tail(h2c->mbuf), 0)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100629 h2c->flags &= ~H2_CF_MUX_MALLOC;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200630
631 if (h2c->flags & H2_CF_DEM_MROOM) {
632 h2c->flags &= ~H2_CF_DEM_MROOM;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200633 h2c_restart_reading(h2c, 1);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +0200634 }
Willy Tarreau14398122017-09-22 14:26:04 +0200635 return 1;
636 }
Willy Tarreau0b559072018-02-26 15:22:17 +0100637
638 if ((h2c->flags & H2_CF_DEM_SALLOC) &&
639 (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs &&
Olivier Houchard638b7992018-08-16 15:41:52 +0200640 b_alloc_margin(&h2s->rxbuf, 0)) {
Willy Tarreau0b559072018-02-26 15:22:17 +0100641 h2c->flags &= ~H2_CF_DEM_SALLOC;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200642 h2c_restart_reading(h2c, 1);
Willy Tarreau0b559072018-02-26 15:22:17 +0100643 return 1;
644 }
645
Willy Tarreau14398122017-09-22 14:26:04 +0200646 return 0;
647}
648
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200649static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200650{
651 struct buffer *buf = NULL;
652
Willy Tarreauc234ae32019-05-13 17:56:11 +0200653 if (likely(!LIST_ADDED(&h2c->buf_wait.list)) &&
Willy Tarreau44e973f2018-03-01 17:49:30 +0100654 unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) {
655 h2c->buf_wait.target = h2c;
656 h2c->buf_wait.wakeup_cb = h2_buf_available;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100657 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100658 LIST_ADDQ(&buffer_wq, &h2c->buf_wait.list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100659 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreau14398122017-09-22 14:26:04 +0200660 __conn_xprt_stop_recv(h2c->conn);
661 }
662 return buf;
663}
664
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200665static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr)
Willy Tarreau14398122017-09-22 14:26:04 +0200666{
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200667 if (bptr->size) {
Willy Tarreau44e973f2018-03-01 17:49:30 +0100668 b_free(bptr);
Willy Tarreau201840a2019-05-29 17:50:48 +0200669 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau14398122017-09-22 14:26:04 +0200670 }
671}
672
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200673static inline void h2_release_mbuf(struct h2c *h2c)
674{
675 struct buffer *buf;
676 unsigned int count = 0;
677
678 while (b_size(buf = br_head_pick(h2c->mbuf))) {
679 b_free(buf);
680 count++;
681 }
682 if (count)
Willy Tarreau201840a2019-05-29 17:50:48 +0200683 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200684}
685
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100686/* returns the number of allocatable outgoing streams for the connection taking
687 * the last_sid and the reserved ones into account.
688 */
689static inline int h2_streams_left(const struct h2c *h2c)
690{
691 int ret;
692
693 /* consider the number of outgoing streams we're allowed to create before
694 * reaching the last GOAWAY frame seen. max_id is the last assigned id,
695 * nb_reserved is the number of streams which don't yet have an ID.
696 */
697 ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF;
698 ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1;
699 if (ret < 0)
700 ret = 0;
701 return ret;
702}
703
Willy Tarreau00f18a32019-01-26 12:19:01 +0100704/* returns the number of streams in use on a connection to figure if it's
705 * idle or not. We check nb_cs and not nb_streams as the caller will want
706 * to know if it was the last one after a detach().
707 */
708static int h2_used_streams(struct connection *conn)
709{
710 struct h2c *h2c = conn->ctx;
711
712 return h2c->nb_cs;
713}
714
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100715/* returns the number of concurrent streams available on the connection */
Olivier Houchardd540b362018-11-05 18:37:53 +0100716static int h2_avail_streams(struct connection *conn)
717{
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100718 struct server *srv = objt_server(conn->target);
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100719 struct h2c *h2c = conn->ctx;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100720 int ret1, ret2;
Olivier Houchardd540b362018-11-05 18:37:53 +0100721
Willy Tarreau6afec462019-01-28 06:40:19 +0100722 /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional
723 * streams on the connection.
724 */
725 if (h2c->last_sid >= 0)
726 return 0;
727
Willy Tarreau86949782019-01-31 10:42:05 +0100728 /* note: may be negative if a SETTINGS frame changes the limit */
729 ret1 = h2c->streams_limit - h2c->nb_streams;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100730
731 /* we must also consider the limit imposed by stream IDs */
732 ret2 = h2_streams_left(h2c);
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100733 ret1 = MIN(ret1, ret2);
Willy Tarreau86949782019-01-31 10:42:05 +0100734 if (ret1 > 0 && srv && srv->max_reuse >= 0) {
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100735 ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0;
736 ret1 = MIN(ret1, ret2);
737 }
738 return ret1;
Olivier Houchardd540b362018-11-05 18:37:53 +0100739}
740
Willy Tarreau35dbd5d2017-09-22 09:13:49 +0200741
Willy Tarreau62f52692017-10-08 23:01:42 +0200742/*****************************************************************/
743/* functions below are dedicated to the mux setup and management */
744/*****************************************************************/
745
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200746/* Initialize the mux once it's attached. For outgoing connections, the context
747 * is already initialized before installing the mux, so we detect incoming
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200748 * connections from the fact that the context is still NULL (even during mux
749 * upgrades). <input> is always used as Input buffer and may contain data. It is
750 * the caller responsibility to not reuse it anymore. Returns < 0 on error.
Willy Tarreau7dc24e42018-10-03 13:52:41 +0200751 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200752static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess,
753 struct buffer *input)
Willy Tarreau32218eb2017-09-22 08:07:25 +0200754{
755 struct h2c *h2c;
Willy Tarreauea392822017-10-31 10:02:25 +0100756 struct task *t = NULL;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200757
Willy Tarreau7838a792019-08-12 18:42:03 +0200758 TRACE_ENTER(H2_EV_H2C_NEW, conn);
759
Willy Tarreaubafbe012017-11-24 17:34:44 +0100760 h2c = pool_alloc(pool_head_h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200761 if (!h2c)
mildiscd2d7de2018-10-02 16:44:18 +0200762 goto fail_no_h2c;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200763
Christopher Faulete9b70722019-04-08 10:46:02 +0200764 if (conn_is_back(conn)) {
Willy Tarreau01b44822018-10-03 14:26:37 +0200765 h2c->flags = H2_CF_IS_BACK;
766 h2c->shut_timeout = h2c->timeout = prx->timeout.server;
767 if (tick_isset(prx->timeout.serverfin))
768 h2c->shut_timeout = prx->timeout.serverfin;
769 } else {
770 h2c->flags = H2_CF_NONE;
771 h2c->shut_timeout = h2c->timeout = prx->timeout.client;
772 if (tick_isset(prx->timeout.clientfin))
773 h2c->shut_timeout = prx->timeout.clientfin;
774 }
Willy Tarreau3f133572017-10-31 19:21:06 +0100775
Willy Tarreau0b37d652018-10-03 10:33:02 +0200776 h2c->proxy = prx;
Willy Tarreau33400292017-11-05 11:23:40 +0100777 h2c->task = NULL;
Willy Tarreau3f133572017-10-31 19:21:06 +0100778 if (tick_isset(h2c->timeout)) {
779 t = task_new(tid_bit);
780 if (!t)
781 goto fail;
782
783 h2c->task = t;
784 t->process = h2_timeout_task;
785 t->context = h2c;
786 t->expire = tick_add(now_ms, h2c->timeout);
787 }
Willy Tarreauea392822017-10-31 10:02:25 +0100788
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200789 h2c->wait_event.tasklet = tasklet_new();
790 if (!h2c->wait_event.tasklet)
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200791 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200792 h2c->wait_event.tasklet->process = h2_io_cb;
793 h2c->wait_event.tasklet->context = h2c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100794 h2c->wait_event.events = 0;
Olivier Houchard910b2bc2018-07-17 18:49:38 +0200795
Willy Tarreau32218eb2017-09-22 08:07:25 +0200796 h2c->ddht = hpack_dht_alloc(h2_settings_header_table_size);
797 if (!h2c->ddht)
798 goto fail;
799
800 /* Initialise the context. */
801 h2c->st0 = H2_CS_PREFACE;
802 h2c->conn = conn;
Willy Tarreau2e2083a2019-01-31 10:34:07 +0100803 h2c->streams_limit = h2_settings_max_concurrent_streams;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200804 h2c->max_id = -1;
805 h2c->errcode = H2_ERR_NO_ERROR;
Willy Tarreau97aaa672018-12-23 09:49:04 +0100806 h2c->rcvd_c = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200807 h2c->rcvd_s = 0;
Willy Tarreau49745612017-12-03 18:56:02 +0100808 h2c->nb_streams = 0;
Willy Tarreau7ac60e82018-07-19 09:04:05 +0200809 h2c->nb_cs = 0;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +0100810 h2c->nb_reserved = 0;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100811 h2c->stream_cnt = 0;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200812
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200813 h2c->dbuf = *input;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200814 h2c->dsi = -1;
815 h2c->msi = -1;
Willy Tarreaue9634bd2019-01-23 10:25:10 +0100816
Willy Tarreau32218eb2017-09-22 08:07:25 +0200817 h2c->last_sid = -1;
818
Willy Tarreau51330962019-05-26 09:38:07 +0200819 br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0]));
Willy Tarreau32218eb2017-09-22 08:07:25 +0200820 h2c->miw = 65535; /* mux initial window size */
821 h2c->mws = 65535; /* mux window size */
822 h2c->mfs = 16384; /* initial max frame size */
Willy Tarreau751f2d02018-10-05 09:35:00 +0200823 h2c->streams_by_id = EB_ROOT;
Willy Tarreau32218eb2017-09-22 08:07:25 +0200824 LIST_INIT(&h2c->send_list);
825 LIST_INIT(&h2c->fctl_list);
Olivier Houchardd846c262018-10-19 17:24:29 +0200826 LIST_INIT(&h2c->sending_list);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100827 LIST_INIT(&h2c->buf_wait.list);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200828
Willy Tarreau3f133572017-10-31 19:21:06 +0100829 if (t)
830 task_queue(t);
Willy Tarreauea392822017-10-31 10:02:25 +0100831
Willy Tarreau01b44822018-10-03 14:26:37 +0200832 if (h2c->flags & H2_CF_IS_BACK) {
833 /* FIXME: this is temporary, for outgoing connections we need
834 * to immediately allocate a stream until the code is modified
835 * so that the caller calls ->attach(). For now the outgoing cs
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100836 * is stored as conn->ctx by the caller.
Willy Tarreau01b44822018-10-03 14:26:37 +0200837 */
838 struct h2s *h2s;
839
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100840 h2s = h2c_bck_stream_new(h2c, conn->ctx, sess);
Willy Tarreau01b44822018-10-03 14:26:37 +0200841 if (!h2s)
842 goto fail_stream;
843 }
844
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100845 conn->ctx = h2c;
Willy Tarreau01b44822018-10-03 14:26:37 +0200846
Willy Tarreau0f383582018-10-03 14:22:21 +0200847 /* prepare to read something */
Olivier Houchard3ca18bf2019-04-05 15:34:34 +0200848 h2c_restart_reading(h2c, 1);
Willy Tarreau7838a792019-08-12 18:42:03 +0200849 TRACE_LEAVE(H2_EV_H2C_NEW, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200850 return 0;
Willy Tarreau01b44822018-10-03 14:26:37 +0200851 fail_stream:
852 hpack_dht_free(h2c->ddht);
mildiscd2d7de2018-10-02 16:44:18 +0200853 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200854 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200855 if (h2c->wait_event.tasklet)
856 tasklet_free(h2c->wait_event.tasklet);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100857 pool_free(pool_head_h2c, h2c);
mildiscd2d7de2018-10-02 16:44:18 +0200858 fail_no_h2c:
Willy Tarreau7838a792019-08-12 18:42:03 +0200859 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 +0200860 return -1;
861}
862
Willy Tarreau751f2d02018-10-05 09:35:00 +0200863/* returns the next allocatable outgoing stream ID for the H2 connection, or
864 * -1 if no more is allocatable.
865 */
866static inline int32_t h2c_get_next_sid(const struct h2c *h2c)
867{
868 int32_t id = (h2c->max_id + 1) | 1;
Willy Tarreaua80dca82019-01-24 17:08:28 +0100869
870 if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid))
Willy Tarreau751f2d02018-10-05 09:35:00 +0200871 id = -1;
872 return id;
873}
874
Willy Tarreau2373acc2017-10-12 17:35:14 +0200875/* returns the stream associated with id <id> or NULL if not found */
876static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id)
877{
878 struct eb32_node *node;
879
Willy Tarreau751f2d02018-10-05 09:35:00 +0200880 if (id == 0)
881 return (struct h2s *)h2_closed_stream;
882
Willy Tarreau2a856182017-05-16 15:20:39 +0200883 if (id > h2c->max_id)
884 return (struct h2s *)h2_idle_stream;
885
Willy Tarreau2373acc2017-10-12 17:35:14 +0200886 node = eb32_lookup(&h2c->streams_by_id, id);
887 if (!node)
Willy Tarreau2a856182017-05-16 15:20:39 +0200888 return (struct h2s *)h2_closed_stream;
Willy Tarreau2373acc2017-10-12 17:35:14 +0200889
890 return container_of(node, struct h2s, by_id);
891}
892
Christopher Faulet73c12072019-04-08 11:23:22 +0200893/* release function. This one should be called to free all resources allocated
894 * to the mux.
Willy Tarreau62f52692017-10-08 23:01:42 +0200895 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200896static void h2_release(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +0200897{
Christopher Faulet61840e72019-04-15 09:33:32 +0200898 struct connection *conn = NULL;;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200899
Willy Tarreau7838a792019-08-12 18:42:03 +0200900 TRACE_ENTER(H2_EV_H2C_END);
901
Willy Tarreau32218eb2017-09-22 08:07:25 +0200902 if (h2c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200903 /* The connection must be aattached to this mux to be released */
904 if (h2c->conn && h2c->conn->ctx == h2c)
905 conn = h2c->conn;
906
Willy Tarreau7838a792019-08-12 18:42:03 +0200907 TRACE_DEVEL("freeing h2c", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200908 hpack_dht_free(h2c->ddht);
Willy Tarreau14398122017-09-22 14:26:04 +0200909
Willy Tarreau186e96e2019-05-28 17:21:18 +0200910 if (LIST_ADDED(&h2c->buf_wait.list)) {
911 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
912 LIST_DEL(&h2c->buf_wait.list);
913 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
914 }
Willy Tarreau14398122017-09-22 14:26:04 +0200915
Willy Tarreau44e973f2018-03-01 17:49:30 +0100916 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau2e3c0002019-05-26 09:45:23 +0200917 h2_release_mbuf(h2c);
Willy Tarreau44e973f2018-03-01 17:49:30 +0100918
Willy Tarreauea392822017-10-31 10:02:25 +0100919 if (h2c->task) {
Willy Tarreau0975f112018-03-29 15:22:59 +0200920 h2c->task->context = NULL;
921 task_wakeup(h2c->task, TASK_WOKEN_OTHER);
Willy Tarreauea392822017-10-31 10:02:25 +0100922 h2c->task = NULL;
923 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200924 if (h2c->wait_event.tasklet)
925 tasklet_free(h2c->wait_event.tasklet);
Olivier Houchard0e079372019-04-15 17:51:16 +0200926 if (h2c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100927 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events,
Olivier Houchard0e079372019-04-15 17:51:16 +0200928 &h2c->wait_event);
Willy Tarreauea392822017-10-31 10:02:25 +0100929
Willy Tarreaubafbe012017-11-24 17:34:44 +0100930 pool_free(pool_head_h2c, h2c);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200931 }
932
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200933 if (conn) {
934 conn->mux = NULL;
935 conn->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +0200936 TRACE_DEVEL("freeing conn", H2_EV_H2C_END, conn);
Willy Tarreau32218eb2017-09-22 08:07:25 +0200937
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200938 conn_stop_tracking(conn);
939 conn_full_close(conn);
940 if (conn->destroy_cb)
941 conn->destroy_cb(conn);
942 conn_free(conn);
943 }
Willy Tarreau7838a792019-08-12 18:42:03 +0200944
945 TRACE_LEAVE(H2_EV_H2C_END);
Willy Tarreau62f52692017-10-08 23:01:42 +0200946}
947
948
Willy Tarreau71681172017-10-23 14:39:06 +0200949/******************************************************/
950/* functions below are for the H2 protocol processing */
951/******************************************************/
952
953/* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */
Willy Tarreau1f094672017-11-20 21:27:45 +0100954static inline __maybe_unused int h2s_id(const struct h2s *h2s)
Willy Tarreau71681172017-10-23 14:39:06 +0200955{
956 return h2s ? h2s->id : 0;
957}
958
Willy Tarreau1d4a0f82019-08-02 07:52:08 +0200959/* returns the sum of the stream's own window size and the mux's initial
960 * window, which together form the stream's effective window size.
961 */
962static inline int h2s_mws(const struct h2s *h2s)
963{
964 return h2s->sws + h2s->h2c->miw;
965}
966
Willy Tarreau5b5e6872017-09-25 16:17:25 +0200967/* returns true of the mux is currently busy as seen from stream <h2s> */
Willy Tarreau1f094672017-11-20 21:27:45 +0100968static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s)
Willy Tarreau5b5e6872017-09-25 16:17:25 +0200969{
970 if (h2c->msi < 0)
971 return 0;
972
973 if (h2c->msi == h2s_id(h2s))
974 return 0;
975
976 return 1;
977}
978
Willy Tarreau741d6df2017-10-17 08:00:59 +0200979/* marks an error on the connection */
Willy Tarreau1f094672017-11-20 21:27:45 +0100980static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err)
Willy Tarreau741d6df2017-10-17 08:00:59 +0200981{
Willy Tarreau7838a792019-08-12 18:42:03 +0200982 TRACE_POINT(H2_EV_H2C_ERR, h2c->conn,,, (void *)(long)(err));
Willy Tarreau741d6df2017-10-17 08:00:59 +0200983 h2c->errcode = err;
984 h2c->st0 = H2_CS_ERROR;
985}
986
Willy Tarreau175cebb2019-01-24 10:02:24 +0100987/* marks an error on the stream. It may also update an already closed stream
988 * (e.g. to report an error after an RST was received).
989 */
Willy Tarreau1f094672017-11-20 21:27:45 +0100990static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err)
Willy Tarreau2e43f082017-10-17 08:03:59 +0200991{
Willy Tarreau175cebb2019-01-24 10:02:24 +0100992 if (h2s->id && h2s->st != H2_SS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +0200993 TRACE_POINT(H2_EV_H2S_ERR, h2s->h2c->conn, h2s,, (void *)(long)(err));
Willy Tarreau2e43f082017-10-17 08:03:59 +0200994 h2s->errcode = err;
Willy Tarreau175cebb2019-01-24 10:02:24 +0100995 if (h2s->st < H2_SS_ERROR)
996 h2s->st = H2_SS_ERROR;
Willy Tarreauec988c72018-12-19 18:00:29 +0100997 if (h2s->cs)
998 cs_set_error(h2s->cs);
Willy Tarreau2e43f082017-10-17 08:03:59 +0200999 }
1000}
1001
Willy Tarreau7e094452018-12-19 18:08:52 +01001002/* attempt to notify the data layer of recv availability */
1003static void __maybe_unused h2s_notify_recv(struct h2s *h2s)
1004{
1005 struct wait_event *sw;
1006
1007 if (h2s->recv_wait) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001008 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau7e094452018-12-19 18:08:52 +01001009 sw = h2s->recv_wait;
1010 sw->events &= ~SUB_RETRY_RECV;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001011 tasklet_wakeup(sw->tasklet);
Willy Tarreau7e094452018-12-19 18:08:52 +01001012 h2s->recv_wait = NULL;
1013 }
1014}
1015
1016/* attempt to notify the data layer of send availability */
1017static void __maybe_unused h2s_notify_send(struct h2s *h2s)
1018{
1019 struct wait_event *sw;
1020
Willy Tarreauc234ae32019-05-13 17:56:11 +02001021 if (h2s->send_wait && !LIST_ADDED(&h2s->sending_list)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001022 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau7e094452018-12-19 18:08:52 +01001023 sw = h2s->send_wait;
1024 sw->events &= ~SUB_RETRY_SEND;
Olivier Houchardfd1e96d2019-03-25 14:04:25 +01001025 LIST_ADDQ(&h2s->h2c->sending_list, &h2s->sending_list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001026 tasklet_wakeup(sw->tasklet);
Willy Tarreau7e094452018-12-19 18:08:52 +01001027 }
1028}
1029
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001030/* alerts the data layer, trying to wake it up by all means, following
1031 * this sequence :
1032 * - if the h2s' data layer is subscribed to recv, then it's woken up for recv
1033 * - if its subscribed to send, then it's woken up for send
1034 * - if it was subscribed to neither, its ->wake() callback is called
1035 * It is safe to call this function with a closed stream which doesn't have a
1036 * conn_stream anymore.
1037 */
1038static void __maybe_unused h2s_alert(struct h2s *h2s)
1039{
Willy Tarreau7838a792019-08-12 18:42:03 +02001040 TRACE_ENTER(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
1041
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001042 if (h2s->recv_wait || h2s->send_wait) {
1043 h2s_notify_recv(h2s);
1044 h2s_notify_send(h2s);
1045 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001046 else if (h2s->cs && h2s->cs->data_cb->wake != NULL) {
1047 TRACE_POINT(H2_EV_STRM_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001048 h2s->cs->data_cb->wake(h2s->cs);
Willy Tarreau7838a792019-08-12 18:42:03 +02001049 }
1050
1051 TRACE_LEAVE(H2_EV_H2S_WAKE, h2s->h2c->conn, h2s);
Willy Tarreau8b2757c2018-12-19 17:36:48 +01001052}
1053
Willy Tarreaue4820742017-07-27 13:37:23 +02001054/* writes the 24-bit frame size <len> at address <frame> */
Willy Tarreau1f094672017-11-20 21:27:45 +01001055static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len)
Willy Tarreaue4820742017-07-27 13:37:23 +02001056{
1057 uint8_t *out = frame;
1058
1059 *out = len >> 16;
1060 write_n16(out + 1, len);
1061}
1062
Willy Tarreau54c15062017-10-10 17:10:03 +02001063/* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the
1064 * current pointer, dealing with wrapping, and stores the result in <dst>. It's
1065 * the caller's responsibility to verify that there are at least <bytes> bytes
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001066 * available in the buffer's input prior to calling this function. The buffer
1067 * is assumed not to hold any output data.
Willy Tarreau54c15062017-10-10 17:10:03 +02001068 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001069static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes,
Willy Tarreau54c15062017-10-10 17:10:03 +02001070 const struct buffer *b, int o)
1071{
Willy Tarreau591d4452018-06-15 17:21:00 +02001072 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 +02001073}
1074
Willy Tarreau1f094672017-11-20 21:27:45 +01001075static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001076{
Willy Tarreau591d4452018-06-15 17:21:00 +02001077 return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001078}
1079
Willy Tarreau1f094672017-11-20 21:27:45 +01001080static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001081{
Willy Tarreau591d4452018-06-15 17:21:00 +02001082 return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001083}
1084
Willy Tarreau1f094672017-11-20 21:27:45 +01001085static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o)
Willy Tarreau54c15062017-10-10 17:10:03 +02001086{
Willy Tarreau591d4452018-06-15 17:21:00 +02001087 return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b));
Willy Tarreau54c15062017-10-10 17:10:03 +02001088}
1089
1090
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001091/* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>.
1092 * The algorithm is not obvious. It turns out that H2 headers are neither
1093 * aligned nor do they use regular sizes. And to add to the trouble, the buffer
1094 * may wrap so each byte read must be checked. The header is formed like this :
Willy Tarreau715d5312017-07-11 15:20:24 +02001095 *
1096 * b0 b1 b2 b3 b4 b5..b8
1097 * +----------+---------+--------+----+----+----------------------+
1098 * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)|
1099 * +----------+---------+--------+----+----+----------------------+
1100 *
1101 * Here we read a big-endian 64 bit word from h[1]. This way in a single read
1102 * we get the sid properly aligned and ordered, and 16 bits of len properly
1103 * ordered as well. The type and flags can be extracted using bit shifts from
1104 * the word, and only one extra read is needed to fetch len[16:23].
Willy Tarreau9c7f2d12018-06-15 11:51:32 +02001105 * Returns zero if some bytes are missing, otherwise non-zero on success. The
1106 * buffer is assumed not to contain any output data.
Willy Tarreau715d5312017-07-11 15:20:24 +02001107 */
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001108static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001109{
1110 uint64_t w;
1111
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001112 if (b_data(b) < o + 9)
Willy Tarreau715d5312017-07-11 15:20:24 +02001113 return 0;
1114
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001115 w = h2_get_n64(b, o + 1);
1116 h->len = *(uint8_t*)b_peek(b, o) << 16;
Willy Tarreau715d5312017-07-11 15:20:24 +02001117 h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */
1118 h->ff = w >> 32;
1119 h->ft = w >> 40;
1120 h->len += w >> 48;
1121 return 1;
1122}
1123
1124/* skip the next 9 bytes corresponding to the frame header possibly parsed by
1125 * h2_peek_frame_hdr() above.
1126 */
Willy Tarreau1f094672017-11-20 21:27:45 +01001127static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b)
Willy Tarreau715d5312017-07-11 15:20:24 +02001128{
Willy Tarreaue5f12ce2018-06-15 10:28:05 +02001129 b_del(b, 9);
Willy Tarreau715d5312017-07-11 15:20:24 +02001130}
1131
1132/* same as above, automatically advances the buffer on success */
Willy Tarreau1f094672017-11-20 21:27:45 +01001133static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h)
Willy Tarreau715d5312017-07-11 15:20:24 +02001134{
1135 int ret;
1136
Willy Tarreaua4428bd2018-12-22 18:11:41 +01001137 ret = h2_peek_frame_hdr(b, 0, h);
Willy Tarreau715d5312017-07-11 15:20:24 +02001138 if (ret > 0)
1139 h2_skip_frame_hdr(b);
1140 return ret;
1141}
1142
Willy Tarreau00dd0782018-03-01 16:31:34 +01001143/* marks stream <h2s> as CLOSED and decrement the number of active streams for
1144 * its connection if the stream was not yet closed. Please use this exclusively
1145 * before closing a stream to ensure stream count is well maintained.
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001146 */
Willy Tarreau00dd0782018-03-01 16:31:34 +01001147static inline void h2s_close(struct h2s *h2s)
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001148{
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001149 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreau7838a792019-08-12 18:42:03 +02001150 TRACE_ENTER(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001151 h2s->h2c->nb_streams--;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001152 if (!h2s->id)
1153 h2s->h2c->nb_reserved--;
Willy Tarreaua27db382019-03-25 18:13:16 +01001154 if (h2s->cs) {
Willy Tarreaua27db382019-03-25 18:13:16 +01001155 if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf))
1156 h2s_notify_recv(h2s);
1157 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001158 TRACE_LEAVE(H2_EV_H2S_END, h2s->h2c->conn, h2s);
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001159 }
Willy Tarreau91bfdd72017-12-14 12:00:14 +01001160 h2s->st = H2_SS_CLOSED;
1161}
1162
Willy Tarreau71049cc2018-03-28 13:56:39 +02001163/* detaches an H2 stream from its H2C and releases it to the H2S pool. */
1164static void h2s_destroy(struct h2s *h2s)
Willy Tarreau0a10de62018-03-01 16:27:53 +01001165{
Willy Tarreau7838a792019-08-12 18:42:03 +02001166 struct connection *conn = h2s->h2c->conn;
1167
1168 TRACE_ENTER(H2_EV_H2S_END, conn, h2s);
1169
Willy Tarreau0a10de62018-03-01 16:27:53 +01001170 h2s_close(h2s);
1171 eb32_delete(&h2s->by_id);
Olivier Houchard638b7992018-08-16 15:41:52 +02001172 if (b_size(&h2s->rxbuf)) {
1173 b_free(&h2s->rxbuf);
1174 offer_buffers(NULL, tasks_run_queue);
1175 }
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001176 if (h2s->send_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001177 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001178 if (h2s->recv_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001179 h2s->recv_wait->events &= ~SUB_RETRY_RECV;
Joseph Herlantd77575d2018-11-25 10:54:45 -08001180 /* There's no need to explicitly call unsubscribe here, the only
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001181 * reference left would be in the h2c send_list/fctl_list, and if
1182 * we're in it, we're getting out anyway
1183 */
Olivier Houchardd360ac62019-03-22 17:37:16 +01001184 LIST_DEL_INIT(&h2s->list);
Willy Tarreauc234ae32019-05-13 17:56:11 +02001185 if (LIST_ADDED(&h2s->sending_list)) {
Willy Tarreau86eded62019-06-14 14:47:49 +02001186 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchard998410a2019-04-15 19:23:37 +02001187 LIST_DEL_INIT(&h2s->sending_list);
1188 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001189 tasklet_free(h2s->wait_event.tasklet);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001190 pool_free(pool_head_h2s, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001191
1192 TRACE_LEAVE(H2_EV_H2S_END, conn);
Willy Tarreau0a10de62018-03-01 16:27:53 +01001193}
1194
Willy Tarreaua8e49542018-10-03 18:53:55 +02001195/* allocates a new stream <id> for connection <h2c> and adds it into h2c's
1196 * stream tree. In case of error, nothing is added and NULL is returned. The
1197 * causes of errors can be any failed memory allocation. The caller is
1198 * responsible for checking if the connection may support an extra stream
1199 * prior to calling this function.
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001200 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02001201static struct h2s *h2s_new(struct h2c *h2c, int id)
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001202{
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001203 struct h2s *h2s;
1204
Willy Tarreau7838a792019-08-12 18:42:03 +02001205 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1206
Willy Tarreaubafbe012017-11-24 17:34:44 +01001207 h2s = pool_alloc(pool_head_h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001208 if (!h2s)
1209 goto out;
1210
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001211 h2s->wait_event.tasklet = tasklet_new();
1212 if (!h2s->wait_event.tasklet) {
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001213 pool_free(pool_head_h2s, h2s);
1214 goto out;
1215 }
1216 h2s->send_wait = NULL;
1217 h2s->recv_wait = NULL;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001218 h2s->wait_event.tasklet->process = h2_deferred_shut;
1219 h2s->wait_event.tasklet->context = h2s;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001220 h2s->wait_event.events = 0;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02001221 LIST_INIT(&h2s->list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01001222 LIST_INIT(&h2s->sending_list);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001223 h2s->h2c = h2c;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001224 h2s->cs = NULL;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001225 h2s->sws = 0;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001226 h2s->flags = H2_SF_NONE;
1227 h2s->errcode = H2_ERR_NO_ERROR;
1228 h2s->st = H2_SS_IDLE;
Willy Tarreau9c5e22e2018-09-11 19:22:14 +02001229 h2s->status = 0;
Willy Tarreau1915ca22019-01-24 11:49:37 +01001230 h2s->body_len = 0;
Olivier Houchard638b7992018-08-16 15:41:52 +02001231 h2s->rxbuf = BUF_NULL;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001232
1233 if (h2c->flags & H2_CF_IS_BACK) {
1234 h1m_init_req(&h2s->h1m);
1235 h2s->h1m.err_pos = -1; // don't care about errors on the request path
1236 h2s->h1m.flags |= H1_MF_TOLOWER;
1237 } else {
1238 h1m_init_res(&h2s->h1m);
1239 h2s->h1m.err_pos = -1; // don't care about errors on the response path
1240 h2s->h1m.flags |= H1_MF_TOLOWER;
1241 }
1242
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001243 h2s->by_id.key = h2s->id = id;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001244 if (id > 0)
1245 h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01001246 else
1247 h2c->nb_reserved++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001248
1249 eb32_insert(&h2c->streams_by_id, &h2s->by_id);
Willy Tarreau49745612017-12-03 18:56:02 +01001250 h2c->nb_streams++;
Willy Tarreaue9634bd2019-01-23 10:25:10 +01001251 h2c->stream_cnt++;
Willy Tarreaua8e49542018-10-03 18:53:55 +02001252
Willy Tarreau7838a792019-08-12 18:42:03 +02001253 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001254 return h2s;
1255
1256 out_free_h2s:
1257 pool_free(pool_head_h2s, h2s);
1258 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001259 TRACE_DEVEL("leaving in error", H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreaua8e49542018-10-03 18:53:55 +02001260 return NULL;
1261}
1262
1263/* creates a new stream <id> on the h2c connection and returns it, or NULL in
1264 * case of memory allocation error.
1265 */
1266static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id)
1267{
1268 struct session *sess = h2c->conn->owner;
1269 struct conn_stream *cs;
1270 struct h2s *h2s;
1271
Willy Tarreau7838a792019-08-12 18:42:03 +02001272 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1273
Willy Tarreaua8e49542018-10-03 18:53:55 +02001274 if (h2c->nb_streams >= h2_settings_max_concurrent_streams)
1275 goto out;
1276
1277 h2s = h2s_new(h2c, id);
1278 if (!h2s)
1279 goto out;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001280
1281 cs = cs_new(h2c->conn);
1282 if (!cs)
1283 goto out_close;
1284
Olivier Houchard746fb772018-12-15 19:42:00 +01001285 cs->flags |= CS_FL_NOT_FIRST;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001286 h2s->cs = cs;
1287 cs->ctx = h2s;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001288 h2c->nb_cs++;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001289
1290 if (stream_create_from_cs(cs) < 0)
1291 goto out_free_cs;
1292
Willy Tarreau590a0512018-09-05 11:56:48 +02001293 /* We want the accept date presented to the next stream to be the one
1294 * we have now, the handshake time to be null (since the next stream
1295 * is not delayed by a handshake), and the idle time to count since
1296 * right now.
1297 */
1298 sess->accept_date = date;
1299 sess->tv_accept = now;
1300 sess->t_handshake = 0;
1301
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001302 /* OK done, the stream lives its own life now */
Willy Tarreaufa1d3572019-01-31 10:31:51 +01001303 if (h2_frt_has_too_many_cs(h2c))
Willy Tarreauf2101912018-07-19 10:11:38 +02001304 h2c->flags |= H2_CF_DEM_TOOMANY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001305 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001306 return h2s;
1307
1308 out_free_cs:
Willy Tarreau7ac60e82018-07-19 09:04:05 +02001309 h2c->nb_cs--;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001310 cs_free(cs);
Olivier Houchard58d87f32019-05-29 16:44:17 +02001311 h2s->cs = NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001312 out_close:
Willy Tarreau71049cc2018-03-28 13:56:39 +02001313 h2s_destroy(h2s);
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001314 out:
Willy Tarreau45efc072018-10-03 18:27:52 +02001315 sess_log(sess);
Willy Tarreau7838a792019-08-12 18:42:03 +02001316 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn);
Willy Tarreau45efc072018-10-03 18:27:52 +02001317 return NULL;
Willy Tarreau3ccf4b22017-10-13 19:07:26 +02001318}
1319
Willy Tarreau751f2d02018-10-05 09:35:00 +02001320/* allocates a new stream associated to conn_stream <cs> on the h2c connection
1321 * and returns it, or NULL in case of memory allocation error or if the highest
1322 * possible stream ID was reached.
1323 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001324static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001325{
1326 struct h2s *h2s = NULL;
1327
Willy Tarreau7838a792019-08-12 18:42:03 +02001328 TRACE_ENTER(H2_EV_H2S_NEW, h2c->conn);
1329
Willy Tarreau86949782019-01-31 10:42:05 +01001330 if (h2c->nb_streams >= h2c->streams_limit)
Willy Tarreau751f2d02018-10-05 09:35:00 +02001331 goto out;
1332
Willy Tarreaua80dca82019-01-24 17:08:28 +01001333 if (h2_streams_left(h2c) < 1)
1334 goto out;
1335
Willy Tarreau751f2d02018-10-05 09:35:00 +02001336 /* Defer choosing the ID until we send the first message to create the stream */
1337 h2s = h2s_new(h2c, 0);
1338 if (!h2s)
1339 goto out;
1340
1341 h2s->cs = cs;
Olivier Houchardf502aca2018-12-14 19:42:40 +01001342 h2s->sess = sess;
Willy Tarreau751f2d02018-10-05 09:35:00 +02001343 cs->ctx = h2s;
1344 h2c->nb_cs++;
1345
Willy Tarreau751f2d02018-10-05 09:35:00 +02001346 out:
Willy Tarreau7838a792019-08-12 18:42:03 +02001347 if (likely(h2s))
1348 TRACE_LEAVE(H2_EV_H2S_NEW, h2c->conn, h2s);
1349 else
1350 TRACE_LEAVE(H2_EV_H2S_NEW|H2_EV_H2S_ERR|H2_EV_H2S_END, h2c->conn, h2s);
Willy Tarreau751f2d02018-10-05 09:35:00 +02001351 return h2s;
1352}
1353
Willy Tarreaube5b7152017-09-25 16:25:39 +02001354/* try to send a settings frame on the connection. Returns > 0 on success, 0 if
1355 * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for
1356 * the various settings codes.
1357 */
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001358static int h2c_send_settings(struct h2c *h2c)
Willy Tarreaube5b7152017-09-25 16:25:39 +02001359{
1360 struct buffer *res;
1361 char buf_data[100]; // enough for 15 settings
Willy Tarreau83061a82018-07-13 11:56:34 +02001362 struct buffer buf;
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001363 int mfs;
Willy Tarreau7838a792019-08-12 18:42:03 +02001364 int ret = 0;
1365
1366 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001367
1368 if (h2c_mux_busy(h2c, NULL)) {
1369 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001370 goto out;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001371 }
1372
Willy Tarreaube5b7152017-09-25 16:25:39 +02001373 chunk_init(&buf, buf_data, sizeof(buf_data));
1374 chunk_memcpy(&buf,
1375 "\x00\x00\x00" /* length : 0 for now */
1376 "\x04\x00" /* type : 4 (settings), flags : 0 */
1377 "\x00\x00\x00\x00", /* stream ID : 0 */
1378 9);
1379
Willy Tarreau0bbad6b2019-02-26 16:01:52 +01001380 if (h2c->flags & H2_CF_IS_BACK) {
1381 /* send settings_enable_push=0 */
1382 chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6);
1383 }
1384
Willy Tarreaube5b7152017-09-25 16:25:39 +02001385 if (h2_settings_header_table_size != 4096) {
1386 char str[6] = "\x00\x01"; /* header_table_size */
1387
1388 write_n32(str + 2, h2_settings_header_table_size);
1389 chunk_memcat(&buf, str, 6);
1390 }
1391
1392 if (h2_settings_initial_window_size != 65535) {
1393 char str[6] = "\x00\x04"; /* initial_window_size */
1394
1395 write_n32(str + 2, h2_settings_initial_window_size);
1396 chunk_memcat(&buf, str, 6);
1397 }
1398
1399 if (h2_settings_max_concurrent_streams != 0) {
1400 char str[6] = "\x00\x03"; /* max_concurrent_streams */
1401
1402 /* Note: 0 means "unlimited" for haproxy's config but not for
1403 * the protocol, so never send this value!
1404 */
1405 write_n32(str + 2, h2_settings_max_concurrent_streams);
1406 chunk_memcat(&buf, str, 6);
1407 }
1408
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001409 mfs = h2_settings_max_frame_size;
1410 if (mfs > global.tune.bufsize)
1411 mfs = global.tune.bufsize;
1412
1413 if (!mfs)
1414 mfs = global.tune.bufsize;
1415
1416 if (mfs != 16384) {
Willy Tarreaube5b7152017-09-25 16:25:39 +02001417 char str[6] = "\x00\x05"; /* max_frame_size */
1418
1419 /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to
1420 * match bufsize - rewrite size, but at the moment it seems
1421 * that clients don't take care of it.
1422 */
Willy Tarreaua24b35c2019-02-21 13:24:36 +01001423 write_n32(str + 2, mfs);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001424 chunk_memcat(&buf, str, 6);
1425 }
1426
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001427 h2_set_frame_size(buf.area, buf.data - 9);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001428
1429 res = br_tail(h2c->mbuf);
1430 retry:
1431 if (!h2_get_buf(h2c, res)) {
1432 h2c->flags |= H2_CF_MUX_MALLOC;
1433 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001434 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001435 }
1436
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001437 ret = b_istput(res, ist2(buf.area, buf.data));
Willy Tarreaube5b7152017-09-25 16:25:39 +02001438 if (unlikely(ret <= 0)) {
1439 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001440 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1441 goto retry;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001442 h2c->flags |= H2_CF_MUX_MFULL;
1443 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001444 }
1445 else {
1446 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001447 ret = 0;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001448 }
1449 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001450 out:
1451 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001452 return ret;
1453}
1454
Willy Tarreau52eed752017-09-22 15:05:09 +02001455/* Try to receive a connection preface, then upon success try to send our
1456 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1457 * missing data. It may return an error in h2c.
1458 */
1459static int h2c_frt_recv_preface(struct h2c *h2c)
1460{
1461 int ret1;
Willy Tarreaube5b7152017-09-25 16:25:39 +02001462 int ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001463
Willy Tarreau7838a792019-08-12 18:42:03 +02001464 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
1465
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001466 ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE));
Willy Tarreau52eed752017-09-22 15:05:09 +02001467
1468 if (unlikely(ret1 <= 0)) {
Willy Tarreau22de8d32018-09-05 19:55:58 +02001469 if (ret1 < 0)
1470 sess_log(h2c->conn->owner);
1471
Willy Tarreau52eed752017-09-22 15:05:09 +02001472 if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn))
1473 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001474 ret2 = 0;
1475 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02001476 }
1477
Willy Tarreau7f0cc492018-10-08 07:13:08 +02001478 ret2 = h2c_send_settings(h2c);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001479 if (ret2 > 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001480 b_del(&h2c->dbuf, ret1);
Willy Tarreau7838a792019-08-12 18:42:03 +02001481 out:
1482 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreaube5b7152017-09-25 16:25:39 +02001483 return ret2;
Willy Tarreau52eed752017-09-22 15:05:09 +02001484}
1485
Willy Tarreau01b44822018-10-03 14:26:37 +02001486/* Try to send a connection preface, then upon success try to send our
1487 * preface which is a SETTINGS frame. Returns > 0 on success or zero on
1488 * missing data. It may return an error in h2c.
1489 */
1490static int h2c_bck_send_preface(struct h2c *h2c)
1491{
1492 struct buffer *res;
Willy Tarreau7838a792019-08-12 18:42:03 +02001493 int ret = 0;
1494
1495 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02001496
1497 if (h2c_mux_busy(h2c, NULL)) {
1498 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001499 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001500 }
1501
Willy Tarreaubcc45952019-05-26 10:05:50 +02001502 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001503 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001504 if (!h2_get_buf(h2c, res)) {
Willy Tarreau01b44822018-10-03 14:26:37 +02001505 h2c->flags |= H2_CF_MUX_MALLOC;
1506 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001507 goto out;
Willy Tarreau01b44822018-10-03 14:26:37 +02001508 }
1509
1510 if (!b_data(res)) {
1511 /* preface not yet sent */
Willy Tarreau9c218e72019-05-26 10:08:28 +02001512 ret = b_istput(res, ist(H2_CONN_PREFACE));
1513 if (unlikely(ret <= 0)) {
1514 if (!ret) {
1515 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1516 goto retry;
1517 h2c->flags |= H2_CF_MUX_MFULL;
1518 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001519 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001520 }
1521 else {
1522 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001523 ret = 0;
1524 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02001525 }
1526 }
Willy Tarreau01b44822018-10-03 14:26:37 +02001527 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001528 ret = h2c_send_settings(h2c);
1529 out:
1530 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PREFACE, h2c->conn);
1531 return ret;
Willy Tarreau01b44822018-10-03 14:26:37 +02001532}
1533
Willy Tarreau081d4722017-05-16 21:51:05 +02001534/* try to send a GOAWAY frame on the connection to report an error or a graceful
1535 * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero
1536 * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it
1537 * from h2c->max_id if it's not set yet (<0). In case of lack of room to write
1538 * the message, it subscribes the requester (either <h2s> or <h2c>) to future
1539 * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED
1540 * on unrecoverable failure. It will not attempt to send one again in this last
1541 * case so that it is safe to use h2c_error() to report such errors.
1542 */
1543static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s)
1544{
1545 struct buffer *res;
1546 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02001547 int ret = 0;
Willy Tarreau081d4722017-05-16 21:51:05 +02001548
Willy Tarreau7838a792019-08-12 18:42:03 +02001549 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
1550
1551 if (h2c->flags & H2_CF_GOAWAY_FAILED) {
1552 ret = 1; // claim that it worked
1553 goto out;
1554 }
Willy Tarreau081d4722017-05-16 21:51:05 +02001555
1556 if (h2c_mux_busy(h2c, h2s)) {
1557 if (h2s)
1558 h2s->flags |= H2_SF_BLK_MBUSY;
1559 else
1560 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001561 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001562 }
1563
Willy Tarreau9c218e72019-05-26 10:08:28 +02001564 /* len: 8, type: 7, flags: none, sid: 0 */
1565 memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9);
1566
1567 if (h2c->last_sid < 0)
1568 h2c->last_sid = h2c->max_id;
1569
1570 write_n32(str + 9, h2c->last_sid);
1571 write_n32(str + 13, h2c->errcode);
1572
Willy Tarreaubcc45952019-05-26 10:05:50 +02001573 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001574 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001575 if (!h2_get_buf(h2c, res)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02001576 h2c->flags |= H2_CF_MUX_MALLOC;
1577 if (h2s)
1578 h2s->flags |= H2_SF_BLK_MROOM;
1579 else
1580 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001581 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001582 }
1583
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001584 ret = b_istput(res, ist2(str, 17));
Willy Tarreau081d4722017-05-16 21:51:05 +02001585 if (unlikely(ret <= 0)) {
1586 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001587 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1588 goto retry;
Willy Tarreau081d4722017-05-16 21:51:05 +02001589 h2c->flags |= H2_CF_MUX_MFULL;
1590 if (h2s)
1591 h2s->flags |= H2_SF_BLK_MROOM;
1592 else
1593 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001594 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001595 }
1596 else {
1597 /* we cannot report this error using GOAWAY, so we mark
1598 * it and claim a success.
1599 */
1600 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
1601 h2c->flags |= H2_CF_GOAWAY_FAILED;
Willy Tarreau7838a792019-08-12 18:42:03 +02001602 ret = 1;
1603 goto out;
Willy Tarreau081d4722017-05-16 21:51:05 +02001604 }
1605 }
1606 h2c->flags |= H2_CF_GOAWAY_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02001607 out:
1608 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_GOAWAY, h2c->conn);
Willy Tarreau081d4722017-05-16 21:51:05 +02001609 return ret;
1610}
1611
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001612/* Try to send an RST_STREAM frame on the connection for the indicated stream
1613 * during mux operations. This stream must be valid and cannot be closed
1614 * already. h2s->id will be used for the stream ID and h2s->errcode will be
1615 * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was
1616 * not yet.
1617 *
1618 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1619 * to write the message, it subscribes the stream to future notifications.
1620 */
1621static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1622{
1623 struct buffer *res;
1624 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001625 int ret = 0;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001626
Willy Tarreau7838a792019-08-12 18:42:03 +02001627 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
1628
1629 if (!h2s || h2s->st == H2_SS_CLOSED) {
1630 ret = 1;
1631 goto out;
1632 }
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001633
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001634 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1635 * RST_STREAM in response to a RST_STREAM frame.
1636 */
Willy Tarreau231f6162019-08-06 10:01:40 +02001637 if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) {
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001638 ret = 1;
1639 goto ignore;
1640 }
1641
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001642 if (h2c_mux_busy(h2c, h2s)) {
1643 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001644 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001645 }
1646
Willy Tarreau9c218e72019-05-26 10:08:28 +02001647 /* len: 4, type: 3, flags: none */
1648 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1649 write_n32(str + 5, h2s->id);
1650 write_n32(str + 9, h2s->errcode);
1651
Willy Tarreaubcc45952019-05-26 10:05:50 +02001652 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001653 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001654 if (!h2_get_buf(h2c, res)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001655 h2c->flags |= H2_CF_MUX_MALLOC;
1656 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001657 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001658 }
1659
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001660 ret = b_istput(res, ist2(str, 13));
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001661 if (unlikely(ret <= 0)) {
1662 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001663 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1664 goto retry;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001665 h2c->flags |= H2_CF_MUX_MFULL;
1666 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001667 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001668 }
1669 else {
1670 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001671 ret = 0;
1672 goto out;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001673 }
1674 }
1675
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001676 ignore:
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001677 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001678 h2s_close(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001679 out:
1680 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001681 return ret;
1682}
1683
1684/* Try to send an RST_STREAM frame on the connection for the stream being
1685 * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the
Willy Tarreaue6888ff2018-12-23 18:26:26 +01001686 * error code, even if the stream is one of the dummy ones, and will update
1687 * h2s->st to H2_SS_CLOSED if it was not yet.
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001688 *
1689 * Returns > 0 on success or zero if nothing was done. In case of lack of room
1690 * to write the message, it blocks the demuxer and subscribes it to future
Joseph Herlantd77575d2018-11-25 10:54:45 -08001691 * notifications. It's worth mentioning that an RST may even be sent for a
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001692 * closed stream.
Willy Tarreau27a84c92017-10-17 08:10:17 +02001693 */
1694static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s)
1695{
1696 struct buffer *res;
1697 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02001698 int ret = 0;
1699
1700 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001701
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001702 /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a
1703 * RST_STREAM in response to a RST_STREAM frame.
1704 */
1705 if (h2c->dft == H2_FT_RST_STREAM) {
1706 ret = 1;
1707 goto ignore;
1708 }
1709
Willy Tarreau27a84c92017-10-17 08:10:17 +02001710 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001711 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001712 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001713 }
1714
Willy Tarreau9c218e72019-05-26 10:08:28 +02001715 /* len: 4, type: 3, flags: none */
1716 memcpy(str, "\x00\x00\x04\x03\x00", 5);
1717
1718 write_n32(str + 5, h2c->dsi);
1719 write_n32(str + 9, h2s->errcode);
1720
Willy Tarreaubcc45952019-05-26 10:05:50 +02001721 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001722 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001723 if (!h2_get_buf(h2c, res)) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001724 h2c->flags |= H2_CF_MUX_MALLOC;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001725 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001726 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001727 }
1728
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001729 ret = b_istput(res, ist2(str, 13));
Willy Tarreau27a84c92017-10-17 08:10:17 +02001730 if (unlikely(ret <= 0)) {
1731 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001732 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1733 goto retry;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001734 h2c->flags |= H2_CF_MUX_MFULL;
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001735 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001736 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001737 }
1738 else {
1739 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001740 ret = 0;
1741 goto out;
Willy Tarreau27a84c92017-10-17 08:10:17 +02001742 }
1743 }
1744
Willy Tarreau8adae7c2018-03-22 17:37:05 +01001745 ignore:
Willy Tarreauab0e1da2018-10-05 10:16:37 +02001746 if (h2s->id) {
Willy Tarreau27a84c92017-10-17 08:10:17 +02001747 h2s->flags |= H2_SF_RST_SENT;
Willy Tarreau00dd0782018-03-01 16:31:34 +01001748 h2s_close(h2s);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01001749 }
1750
Willy Tarreau7838a792019-08-12 18:42:03 +02001751 out:
1752 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_RST, h2c->conn, h2s);
Willy Tarreau27a84c92017-10-17 08:10:17 +02001753 return ret;
1754}
1755
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001756/* try to send an empty DATA frame with the ES flag set to notify about the
1757 * end of stream and match a shutdown(write). If an ES was already sent as
1758 * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0
1759 * on success or zero if nothing was done. In case of lack of room to write the
1760 * message, it subscribes the requesting stream to future notifications.
1761 */
1762static int h2_send_empty_data_es(struct h2s *h2s)
1763{
1764 struct h2c *h2c = h2s->h2c;
1765 struct buffer *res;
1766 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02001767 int ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001768
Willy Tarreau7838a792019-08-12 18:42:03 +02001769 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
1770
1771 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) {
1772 ret = 1;
1773 goto out;
1774 }
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001775
1776 if (h2c_mux_busy(h2c, h2s)) {
1777 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001778 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001779 }
1780
Willy Tarreau9c218e72019-05-26 10:08:28 +02001781 /* len: 0x000000, type: 0(DATA), flags: ES=1 */
1782 memcpy(str, "\x00\x00\x00\x00\x01", 5);
1783 write_n32(str + 5, h2s->id);
1784
Willy Tarreaubcc45952019-05-26 10:05:50 +02001785 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02001786 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02001787 if (!h2_get_buf(h2c, res)) {
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001788 h2c->flags |= H2_CF_MUX_MALLOC;
1789 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02001790 goto out;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001791 }
1792
Willy Tarreauea1b06d2018-07-12 09:02:47 +02001793 ret = b_istput(res, ist2(str, 9));
Willy Tarreau6d8b6822017-11-07 14:39:09 +01001794 if (likely(ret > 0)) {
1795 h2s->flags |= H2_SF_ES_SENT;
1796 }
1797 else if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02001798 if ((res = br_tail_add(h2c->mbuf)) != NULL)
1799 goto retry;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01001800 h2c->flags |= H2_CF_MUX_MFULL;
1801 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau6d8b6822017-11-07 14:39:09 +01001802 }
1803 else {
1804 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02001805 ret = 0;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001806 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001807 out:
1808 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA|H2_EV_TX_EOI, h2c->conn, h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01001809 return ret;
1810}
1811
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001812/* wake a specific stream and assign its conn_stream som CS_FL_* flags among
Willy Tarreau99ad1b32019-05-14 11:46:28 +02001813 * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001814 * is automatically updated accordingly. If the stream is orphaned, it is
1815 * destroyed.
Christopher Fauletf02ca002019-03-07 16:21:34 +01001816 */
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001817static void h2s_wake_one_stream(struct h2s *h2s)
Christopher Fauletf02ca002019-03-07 16:21:34 +01001818{
Willy Tarreau7838a792019-08-12 18:42:03 +02001819 struct h2c *h2c = h2s->h2c;
1820
1821 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn, h2s);
1822
Christopher Fauletf02ca002019-03-07 16:21:34 +01001823 if (!h2s->cs) {
1824 /* this stream was already orphaned */
1825 h2s_destroy(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001826 TRACE_DEVEL("leaving with no h2s", H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01001827 return;
1828 }
1829
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001830 if (conn_xprt_read0_pending(h2s->h2c->conn)) {
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001831 if (h2s->st == H2_SS_OPEN)
1832 h2s->st = H2_SS_HREM;
1833 else if (h2s->st == H2_SS_HLOC)
1834 h2s_close(h2s);
1835 }
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001836
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001837 if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) ||
1838 (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) {
1839 h2s->cs->flags |= CS_FL_ERR_PENDING;
1840 if (h2s->cs->flags & CS_FL_EOS)
1841 h2s->cs->flags |= CS_FL_ERROR;
Willy Tarreau23482912019-05-07 15:23:14 +02001842
Willy Tarreauaebbe5e2019-05-07 17:48:59 +02001843 if (h2s->st < H2_SS_ERROR)
1844 h2s->st = H2_SS_ERROR;
1845 }
Christopher Fauletf02ca002019-03-07 16:21:34 +01001846
1847 h2s_alert(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02001848 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Christopher Fauletf02ca002019-03-07 16:21:34 +01001849}
1850
1851/* wake the streams attached to the connection, whose id is greater than <last>
1852 * or unassigned.
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001853 */
Willy Tarreau23482912019-05-07 15:23:14 +02001854static void h2_wake_some_streams(struct h2c *h2c, int last)
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001855{
1856 struct eb32_node *node;
1857 struct h2s *h2s;
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001858
Willy Tarreau7838a792019-08-12 18:42:03 +02001859 TRACE_ENTER(H2_EV_H2S_WAKE, h2c->conn);
1860
Christopher Fauletf02ca002019-03-07 16:21:34 +01001861 /* Wake all streams with ID > last */
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001862 node = eb32_lookup_ge(&h2c->streams_by_id, last + 1);
1863 while (node) {
1864 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001865 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001866 h2s_wake_one_stream(h2s);
Christopher Fauletf02ca002019-03-07 16:21:34 +01001867 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01001868
Christopher Fauletf02ca002019-03-07 16:21:34 +01001869 /* Wake all streams with unassigned ID (ID == 0) */
1870 node = eb32_lookup(&h2c->streams_by_id, 0);
1871 while (node) {
1872 h2s = container_of(node, struct h2s, by_id);
1873 if (h2s->id > 0)
1874 break;
1875 node = eb32_next(node);
Willy Tarreau13b6c2e2019-05-07 17:26:05 +02001876 h2s_wake_one_stream(h2s);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001877 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001878
1879 TRACE_LEAVE(H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau23b92aa2017-10-30 00:26:54 +01001880}
1881
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001882/* Wake up all blocked streams whose window size has become positive after the
1883 * mux's initial window was adjusted. This should be done after having processed
1884 * SETTINGS frames which have updated the mux's initial window size.
Willy Tarreau3421aba2017-07-27 15:41:03 +02001885 */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001886static void h2c_unblock_sfctl(struct h2c *h2c)
Willy Tarreau3421aba2017-07-27 15:41:03 +02001887{
1888 struct h2s *h2s;
1889 struct eb32_node *node;
1890
Willy Tarreau7838a792019-08-12 18:42:03 +02001891 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
1892
Willy Tarreau3421aba2017-07-27 15:41:03 +02001893 node = eb32_first(&h2c->streams_by_id);
1894 while (node) {
1895 h2s = container_of(node, struct h2s, by_id);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02001896 if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) {
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001897 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02001898 if (h2s->send_wait && !LIST_ADDED(&h2s->list))
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001899 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreaub1c9edc2019-01-30 16:11:20 +01001900 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02001901 node = eb32_next(node);
1902 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001903
1904 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02001905}
1906
1907/* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and
1908 * ACKs it if needed. Returns > 0 on success or zero on missing data. It may
Willy Tarreaub860c732019-01-30 15:39:55 +01001909 * return an error in h2c. The caller must have already verified frame length
1910 * and stream ID validity. Described in RFC7540#6.5.
Willy Tarreau3421aba2017-07-27 15:41:03 +02001911 */
1912static int h2c_handle_settings(struct h2c *h2c)
1913{
1914 unsigned int offset;
1915 int error;
1916
Willy Tarreau7838a792019-08-12 18:42:03 +02001917 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
1918
Willy Tarreau3421aba2017-07-27 15:41:03 +02001919 if (h2c->dff & H2_F_SETTINGS_ACK) {
1920 if (h2c->dfl) {
1921 error = H2_ERR_FRAME_SIZE_ERROR;
1922 goto fail;
1923 }
Willy Tarreau7838a792019-08-12 18:42:03 +02001924 goto done;
Willy Tarreau3421aba2017-07-27 15:41:03 +02001925 }
1926
Willy Tarreau3421aba2017-07-27 15:41:03 +02001927 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001928 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02001929 goto out0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02001930
1931 /* parse the frame */
1932 for (offset = 0; offset < h2c->dfl; offset += 6) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001933 uint16_t type = h2_get_n16(&h2c->dbuf, offset);
1934 int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2);
Willy Tarreau3421aba2017-07-27 15:41:03 +02001935
1936 switch (type) {
1937 case H2_SETTINGS_INITIAL_WINDOW_SIZE:
1938 /* we need to update all existing streams with the
1939 * difference from the previous iws.
1940 */
1941 if (arg < 0) { // RFC7540#6.5.2
1942 error = H2_ERR_FLOW_CONTROL_ERROR;
1943 goto fail;
1944 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02001945 h2c->miw = arg;
1946 break;
1947 case H2_SETTINGS_MAX_FRAME_SIZE:
1948 if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2
1949 error = H2_ERR_PROTOCOL_ERROR;
1950 goto fail;
1951 }
1952 h2c->mfs = arg;
1953 break;
Willy Tarreau1b38b462017-12-03 19:02:28 +01001954 case H2_SETTINGS_ENABLE_PUSH:
1955 if (arg < 0 || arg > 1) { // RFC7540#6.5.2
1956 error = H2_ERR_PROTOCOL_ERROR;
1957 goto fail;
1958 }
1959 break;
Willy Tarreau2e2083a2019-01-31 10:34:07 +01001960 case H2_SETTINGS_MAX_CONCURRENT_STREAMS:
1961 if (h2c->flags & H2_CF_IS_BACK) {
1962 /* the limit is only for the backend; for the frontend it is our limit */
1963 if ((unsigned int)arg > h2_settings_max_concurrent_streams)
1964 arg = h2_settings_max_concurrent_streams;
1965 h2c->streams_limit = arg;
1966 }
1967 break;
Willy Tarreau3421aba2017-07-27 15:41:03 +02001968 }
1969 }
1970
1971 /* need to ACK this frame now */
1972 h2c->st0 = H2_CS_FRAME_A;
Willy Tarreau7838a792019-08-12 18:42:03 +02001973 done:
1974 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02001975 return 1;
1976 fail:
Willy Tarreau22de8d32018-09-05 19:55:58 +02001977 sess_log(h2c->conn->owner);
Willy Tarreau3421aba2017-07-27 15:41:03 +02001978 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02001979 out0:
1980 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 +02001981 return 0;
1982}
1983
1984/* try to send an ACK for a settings frame on the connection. Returns > 0 on
1985 * success or one of the h2_status values.
1986 */
1987static int h2c_ack_settings(struct h2c *h2c)
1988{
1989 struct buffer *res;
1990 char str[9];
Willy Tarreau7838a792019-08-12 18:42:03 +02001991 int ret = 0;
1992
1993 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02001994
1995 if (h2c_mux_busy(h2c, NULL)) {
1996 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02001997 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02001998 }
1999
Willy Tarreau9c218e72019-05-26 10:08:28 +02002000 memcpy(str,
2001 "\x00\x00\x00" /* length : 0 (no data) */
2002 "\x04" "\x01" /* type : 4, flags : ACK */
2003 "\x00\x00\x00\x00" /* stream ID */, 9);
2004
Willy Tarreaubcc45952019-05-26 10:05:50 +02002005 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002006 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002007 if (!h2_get_buf(h2c, res)) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002008 h2c->flags |= H2_CF_MUX_MALLOC;
2009 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002010 goto out;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002011 }
2012
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002013 ret = b_istput(res, ist2(str, 9));
Willy Tarreau3421aba2017-07-27 15:41:03 +02002014 if (unlikely(ret <= 0)) {
2015 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002016 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2017 goto retry;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002018 h2c->flags |= H2_CF_MUX_MFULL;
2019 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002020 }
2021 else {
2022 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002023 ret = 0;
Willy Tarreau3421aba2017-07-27 15:41:03 +02002024 }
2025 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002026 out:
2027 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_SETTINGS, h2c->conn);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002028 return ret;
2029}
2030
Willy Tarreaucf68c782017-10-10 17:11:41 +02002031/* processes a PING frame and schedules an ACK if needed. The caller must pass
2032 * the pointer to the payload in <payload>. Returns > 0 on success or zero on
Willy Tarreaub860c732019-01-30 15:39:55 +01002033 * missing data. The caller must have already verified frame length
2034 * and stream ID validity.
Willy Tarreaucf68c782017-10-10 17:11:41 +02002035 */
2036static int h2c_handle_ping(struct h2c *h2c)
2037{
Willy Tarreaucf68c782017-10-10 17:11:41 +02002038 /* schedule a response */
Willy Tarreau68ed6412017-12-03 18:15:56 +01002039 if (!(h2c->dff & H2_F_PING_ACK))
Willy Tarreaucf68c782017-10-10 17:11:41 +02002040 h2c->st0 = H2_CS_FRAME_A;
2041 return 1;
2042}
2043
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002044/* Try to send a window update for stream id <sid> and value <increment>.
2045 * Returns > 0 on success or zero on missing room or failure. It may return an
2046 * error in h2c.
2047 */
2048static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment)
2049{
2050 struct buffer *res;
2051 char str[13];
Willy Tarreau7838a792019-08-12 18:42:03 +02002052 int ret = 0;
2053
2054 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002055
2056 if (h2c_mux_busy(h2c, NULL)) {
2057 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002058 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002059 }
2060
Willy Tarreau9c218e72019-05-26 10:08:28 +02002061 /* length: 4, type: 8, flags: none */
2062 memcpy(str, "\x00\x00\x04\x08\x00", 5);
2063 write_n32(str + 5, sid);
2064 write_n32(str + 9, increment);
2065
Willy Tarreaubcc45952019-05-26 10:05:50 +02002066 res = br_tail(h2c->mbuf);
Willy Tarreau9c218e72019-05-26 10:08:28 +02002067 retry:
Willy Tarreaubcc45952019-05-26 10:05:50 +02002068 if (!h2_get_buf(h2c, res)) {
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002069 h2c->flags |= H2_CF_MUX_MALLOC;
2070 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002071 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002072 }
2073
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002074 ret = b_istput(res, ist2(str, 13));
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002075 if (unlikely(ret <= 0)) {
2076 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002077 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2078 goto retry;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002079 h2c->flags |= H2_CF_MUX_MFULL;
2080 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002081 }
2082 else {
2083 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002084 ret = 0;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002085 }
2086 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002087 out:
2088 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002089 return ret;
2090}
2091
2092/* try to send pending window update for the connection. It's safe to call it
2093 * with no pending updates. Returns > 0 on success or zero on missing room or
2094 * failure. It may return an error in h2c.
2095 */
2096static int h2c_send_conn_wu(struct h2c *h2c)
2097{
2098 int ret = 1;
2099
Willy Tarreau7838a792019-08-12 18:42:03 +02002100 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2101
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002102 if (h2c->rcvd_c <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002103 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002104
Willy Tarreau97aaa672018-12-23 09:49:04 +01002105 if (!(h2c->flags & H2_CF_WINDOW_OPENED)) {
2106 /* increase the advertised connection window to 2G on
2107 * first update.
2108 */
2109 h2c->flags |= H2_CF_WINDOW_OPENED;
2110 h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT;
2111 }
2112
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002113 /* send WU for the connection */
2114 ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c);
2115 if (ret > 0)
2116 h2c->rcvd_c = 0;
2117
Willy Tarreau7838a792019-08-12 18:42:03 +02002118 out:
2119 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002120 return ret;
2121}
2122
2123/* try to send pending window update for the current dmux stream. It's safe to
2124 * call it with no pending updates. Returns > 0 on success or zero on missing
2125 * room or failure. It may return an error in h2c.
2126 */
2127static int h2c_send_strm_wu(struct h2c *h2c)
2128{
2129 int ret = 1;
2130
Willy Tarreau7838a792019-08-12 18:42:03 +02002131 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
2132
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002133 if (h2c->rcvd_s <= 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002134 goto out;
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002135
2136 /* send WU for the stream */
2137 ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s);
2138 if (ret > 0)
2139 h2c->rcvd_s = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002140 out:
2141 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02002142 return ret;
2143}
2144
Willy Tarreaucf68c782017-10-10 17:11:41 +02002145/* try to send an ACK for a ping frame on the connection. Returns > 0 on
2146 * success, 0 on missing data or one of the h2_status values.
2147 */
2148static int h2c_ack_ping(struct h2c *h2c)
2149{
2150 struct buffer *res;
2151 char str[17];
Willy Tarreau7838a792019-08-12 18:42:03 +02002152 int ret = 0;
2153
2154 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002155
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002156 if (b_data(&h2c->dbuf) < 8)
Willy Tarreau7838a792019-08-12 18:42:03 +02002157 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002158
2159 if (h2c_mux_busy(h2c, NULL)) {
2160 h2c->flags |= H2_CF_DEM_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02002161 goto out;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002162 }
2163
Willy Tarreaucf68c782017-10-10 17:11:41 +02002164 memcpy(str,
2165 "\x00\x00\x08" /* length : 8 (same payload) */
2166 "\x06" "\x01" /* type : 6, flags : ACK */
2167 "\x00\x00\x00\x00" /* stream ID */, 9);
2168
2169 /* copy the original payload */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002170 h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002171
Willy Tarreau9c218e72019-05-26 10:08:28 +02002172 res = br_tail(h2c->mbuf);
2173 retry:
2174 if (!h2_get_buf(h2c, res)) {
2175 h2c->flags |= H2_CF_MUX_MALLOC;
2176 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02002177 goto out;
Willy Tarreau9c218e72019-05-26 10:08:28 +02002178 }
2179
Willy Tarreauea1b06d2018-07-12 09:02:47 +02002180 ret = b_istput(res, ist2(str, 17));
Willy Tarreaucf68c782017-10-10 17:11:41 +02002181 if (unlikely(ret <= 0)) {
2182 if (!ret) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02002183 if ((res = br_tail_add(h2c->mbuf)) != NULL)
2184 goto retry;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002185 h2c->flags |= H2_CF_MUX_MFULL;
2186 h2c->flags |= H2_CF_DEM_MROOM;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002187 }
2188 else {
2189 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002190 ret = 0;
Willy Tarreaucf68c782017-10-10 17:11:41 +02002191 }
2192 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002193 out:
2194 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_PING, h2c->conn);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002195 return ret;
2196}
2197
Willy Tarreau26f95952017-07-27 17:18:30 +02002198/* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes.
2199 * Returns > 0 on success or zero on missing data. It may return an error in
Willy Tarreaub860c732019-01-30 15:39:55 +01002200 * h2c or h2s. The caller must have already verified frame length and stream ID
2201 * validity. Described in RFC7540#6.9.
Willy Tarreau26f95952017-07-27 17:18:30 +02002202 */
2203static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s)
2204{
2205 int32_t inc;
2206 int error;
2207
Willy Tarreau7838a792019-08-12 18:42:03 +02002208 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
2209
Willy Tarreau26f95952017-07-27 17:18:30 +02002210 /* process full frame only */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002211 if (b_data(&h2c->dbuf) < h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002212 goto out0;
Willy Tarreau26f95952017-07-27 17:18:30 +02002213
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002214 inc = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau26f95952017-07-27 17:18:30 +02002215
2216 if (h2c->dsi != 0) {
2217 /* stream window update */
Willy Tarreau26f95952017-07-27 17:18:30 +02002218
2219 /* it's not an error to receive WU on a closed stream */
2220 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau7838a792019-08-12 18:42:03 +02002221 goto done;
Willy Tarreau26f95952017-07-27 17:18:30 +02002222
2223 if (!inc) {
2224 error = H2_ERR_PROTOCOL_ERROR;
2225 goto strm_err;
2226 }
2227
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002228 if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002229 error = H2_ERR_FLOW_CONTROL_ERROR;
2230 goto strm_err;
2231 }
2232
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002233 h2s->sws += inc;
2234 if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) {
Willy Tarreau26f95952017-07-27 17:18:30 +02002235 h2s->flags &= ~H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02002236 if (h2s->send_wait && !LIST_ADDED(&h2s->list))
Olivier Houcharddddfe312018-10-10 18:51:00 +02002237 LIST_ADDQ(&h2c->send_list, &h2s->list);
Willy Tarreau26f95952017-07-27 17:18:30 +02002238 }
2239 }
2240 else {
2241 /* connection window update */
2242 if (!inc) {
2243 error = H2_ERR_PROTOCOL_ERROR;
2244 goto conn_err;
2245 }
2246
2247 if (h2c->mws >= 0 && h2c->mws + inc < 0) {
2248 error = H2_ERR_FLOW_CONTROL_ERROR;
2249 goto conn_err;
2250 }
2251
2252 h2c->mws += inc;
2253 }
2254
Willy Tarreau7838a792019-08-12 18:42:03 +02002255 done:
2256 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002257 return 1;
2258
2259 conn_err:
2260 h2c_error(h2c, error);
Willy Tarreau7838a792019-08-12 18:42:03 +02002261 out0:
2262 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 +02002263 return 0;
2264
2265 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002266 h2s_error(h2s, error);
2267 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002268 TRACE_DEVEL("leaving on stream error", H2_EV_RX_FRAME|H2_EV_RX_WU, h2c->conn);
Willy Tarreau26f95952017-07-27 17:18:30 +02002269 return 0;
2270}
2271
Willy Tarreaue96b0922017-10-30 00:28:29 +01002272/* processes a GOAWAY frame, and signals all streams whose ID is greater than
Willy Tarreaub860c732019-01-30 15:39:55 +01002273 * the last ID. Returns > 0 on success or zero on missing data. The caller must
2274 * have already verified frame length and stream ID validity. Described in
2275 * RFC7540#6.8.
Willy Tarreaue96b0922017-10-30 00:28:29 +01002276 */
2277static int h2c_handle_goaway(struct h2c *h2c)
2278{
Willy Tarreaue96b0922017-10-30 00:28:29 +01002279 int last;
2280
Willy Tarreau7838a792019-08-12 18:42:03 +02002281 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002282 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002283 if (b_data(&h2c->dbuf) < h2c->dfl) {
2284 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002285 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002286 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01002287
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002288 last = h2_get_n32(&h2c->dbuf, 0);
2289 h2c->errcode = h2_get_n32(&h2c->dbuf, 4);
Willy Tarreau11cc2d62017-12-03 10:27:47 +01002290 if (h2c->last_sid < 0)
2291 h2c->last_sid = last;
Willy Tarreau23482912019-05-07 15:23:14 +02002292 h2_wake_some_streams(h2c, last);
Willy Tarreau7838a792019-08-12 18:42:03 +02002293 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn);
Willy Tarreaue96b0922017-10-30 00:28:29 +01002294 return 1;
Willy Tarreaue96b0922017-10-30 00:28:29 +01002295}
2296
Willy Tarreau92153fc2017-12-03 19:46:19 +01002297/* processes a PRIORITY frame, and either skips it or rejects if it is
Willy Tarreaub860c732019-01-30 15:39:55 +01002298 * invalid. Returns > 0 on success or zero on missing data. It may return an
2299 * error in h2c. The caller must have already verified frame length and stream
2300 * ID validity. Described in RFC7540#6.3.
Willy Tarreau92153fc2017-12-03 19:46:19 +01002301 */
2302static int h2c_handle_priority(struct h2c *h2c)
2303{
Willy Tarreau7838a792019-08-12 18:42:03 +02002304 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
2305
Willy Tarreau92153fc2017-12-03 19:46:19 +01002306 /* process full frame only */
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002307 if (b_data(&h2c->dbuf) < h2c->dfl) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002308 TRACE_DEVEL("leaving on missing data", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002309 return 0;
Willy Tarreaue7bbbca2019-08-30 15:02:22 +02002310 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01002311
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002312 if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) {
Willy Tarreau92153fc2017-12-03 19:46:19 +01002313 /* 7540#5.3 : can't depend on itself */
Willy Tarreaub860c732019-01-30 15:39:55 +01002314 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreau7838a792019-08-12 18:42:03 +02002315 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreaub860c732019-01-30 15:39:55 +01002316 return 0;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002317 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002318 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn);
Willy Tarreau92153fc2017-12-03 19:46:19 +01002319 return 1;
Willy Tarreau92153fc2017-12-03 19:46:19 +01002320}
2321
Willy Tarreaucd234e92017-08-18 10:59:39 +02002322/* processes an RST_STREAM frame, and sets the 32-bit error code on the stream.
Willy Tarreaub860c732019-01-30 15:39:55 +01002323 * Returns > 0 on success or zero on missing data. The caller must have already
2324 * verified frame length and stream ID validity. Described in RFC7540#6.4.
Willy Tarreaucd234e92017-08-18 10:59:39 +02002325 */
2326static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s)
2327{
Willy Tarreau7838a792019-08-12 18:42:03 +02002328 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
2329
Willy Tarreaucd234e92017-08-18 10:59:39 +02002330 /* process full frame only */
Willy Tarreau7838a792019-08-12 18:42:03 +02002331 if (b_data(&h2c->dbuf) < h2c->dfl) {
2332 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 +02002333 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02002334 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002335
2336 /* late RST, already handled */
Willy Tarreau7838a792019-08-12 18:42:03 +02002337 if (h2s->st == H2_SS_CLOSED) {
2338 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 +02002339 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002340 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02002341
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002342 h2s->errcode = h2_get_n32(&h2c->dbuf, 0);
Willy Tarreau00dd0782018-03-01 16:31:34 +01002343 h2s_close(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002344
2345 if (h2s->cs) {
Willy Tarreauec988c72018-12-19 18:00:29 +01002346 cs_set_error(h2s->cs);
Willy Tarreauf830f012018-12-19 17:44:55 +01002347 h2s_alert(h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002348 }
2349
2350 h2s->flags |= H2_SF_RST_RCVD;
Willy Tarreau7838a792019-08-12 18:42:03 +02002351 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_RST|H2_EV_RX_EOI, h2c->conn, h2s);
Willy Tarreaucd234e92017-08-18 10:59:39 +02002352 return 1;
Willy Tarreaucd234e92017-08-18 10:59:39 +02002353}
2354
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002355/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2356 * It may return an error in h2c or h2s. The caller must consider that the
2357 * return value is the new h2s in case one was allocated (most common case).
2358 * Described in RFC7540#6.2. Most of the
Willy Tarreau13278b42017-10-13 19:23:14 +02002359 * errors here are reported as connection errors since it's impossible to
2360 * recover from such errors after the compression context has been altered.
2361 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002362static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s)
Willy Tarreau13278b42017-10-13 19:23:14 +02002363{
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002364 struct buffer rxbuf = BUF_NULL;
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002365 unsigned long long body_len = 0;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002366 uint32_t flags = 0;
Willy Tarreau13278b42017-10-13 19:23:14 +02002367 int error;
2368
Willy Tarreau7838a792019-08-12 18:42:03 +02002369 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2370
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002371 if (!b_size(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002372 goto out; // empty buffer
Willy Tarreau13278b42017-10-13 19:23:14 +02002373
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002374 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002375 goto out; // incomplete frame
Willy Tarreau13278b42017-10-13 19:23:14 +02002376
2377 /* now either the frame is complete or the buffer is complete */
2378 if (h2s->st != H2_SS_IDLE) {
Willy Tarreau88d138e2019-01-02 19:38:14 +01002379 /* The stream exists/existed, this must be a trailers frame */
2380 if (h2s->st != H2_SS_CLOSED) {
Willy Tarreauaab1a602019-05-06 11:12:18 +02002381 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len);
2382 /* unrecoverable error ? */
2383 if (h2c->st0 >= H2_CS_ERROR)
2384 goto out;
2385
2386 if (error == 0)
2387 goto out; // missing data
2388
2389 if (error < 0) {
2390 /* Failed to decode this frame (e.g. too large request)
2391 * but the HPACK decompressor is still synchronized.
2392 */
2393 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
2394 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau88d138e2019-01-02 19:38:14 +01002395 goto out;
Willy Tarreauaab1a602019-05-06 11:12:18 +02002396 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01002397 goto done;
2398 }
Willy Tarreau1f035502019-01-30 11:44:07 +01002399 /* the connection was already killed by an RST, let's consume
2400 * the data and send another RST.
2401 */
2402 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
2403 h2s = (struct h2s*)h2_error_stream;
2404 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002405 }
2406 else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) {
2407 /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */
2408 error = H2_ERR_PROTOCOL_ERROR;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002409 sess_log(h2c->conn->owner);
Willy Tarreau13278b42017-10-13 19:23:14 +02002410 goto conn_err;
2411 }
Willy Tarreau415b1ee2019-01-02 13:59:43 +01002412 else if (h2c->flags & H2_CF_DEM_TOOMANY)
2413 goto out; // IDLE but too many cs still present
Willy Tarreau13278b42017-10-13 19:23:14 +02002414
Willy Tarreau4790f7c2019-01-24 11:33:02 +01002415 error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002416
Willy Tarreau25919232019-01-03 14:48:18 +01002417 /* unrecoverable error ? */
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002418 if (h2c->st0 >= H2_CS_ERROR)
2419 goto out;
2420
Willy Tarreau25919232019-01-03 14:48:18 +01002421 if (error <= 0) {
2422 if (error == 0)
2423 goto out; // missing data
2424
2425 /* Failed to decode this stream (e.g. too large request)
2426 * but the HPACK decompressor is still synchronized.
2427 */
2428 h2s = (struct h2s*)h2_error_stream;
2429 goto send_rst;
2430 }
2431
Willy Tarreau22de8d32018-09-05 19:55:58 +02002432 /* Note: we don't emit any other logs below because ff we return
Willy Tarreaua8e49542018-10-03 18:53:55 +02002433 * positively from h2c_frt_stream_new(), the stream will report the error,
2434 * and if we return in error, h2c_frt_stream_new() will emit the error.
Willy Tarreau22de8d32018-09-05 19:55:58 +02002435 */
Willy Tarreaua8e49542018-10-03 18:53:55 +02002436 h2s = h2c_frt_stream_new(h2c, h2c->dsi);
Willy Tarreau13278b42017-10-13 19:23:14 +02002437 if (!h2s) {
Willy Tarreau96a10c22018-12-23 18:30:44 +01002438 h2s = (struct h2s*)h2_refused_stream;
2439 goto send_rst;
Willy Tarreau13278b42017-10-13 19:23:14 +02002440 }
2441
2442 h2s->st = H2_SS_OPEN;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002443 h2s->rxbuf = rxbuf;
2444 h2s->flags |= flags;
Willy Tarreau1915ca22019-01-24 11:49:37 +01002445 h2s->body_len = body_len;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002446
Willy Tarreau88d138e2019-01-02 19:38:14 +01002447 done:
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002448 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau13278b42017-10-13 19:23:14 +02002449 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002450
2451 if (h2s->flags & H2_SF_ES_RCVD) {
Willy Tarreaufc10f592019-01-30 19:28:32 +01002452 if (h2s->st == H2_SS_OPEN)
2453 h2s->st = H2_SS_HREM;
2454 else
2455 h2s_close(h2s);
Willy Tarreau13278b42017-10-13 19:23:14 +02002456 }
2457
Willy Tarreau3a429f02019-01-03 11:41:50 +01002458 /* update the max stream ID if the request is being processed */
2459 if (h2s->id > h2c->max_id)
2460 h2c->max_id = h2s->id;
Willy Tarreau13278b42017-10-13 19:23:14 +02002461
Willy Tarreau8fecec22019-08-30 07:29:53 +02002462 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 +01002463 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002464
2465 conn_err:
2466 h2c_error(h2c, error);
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002467 goto out;
Willy Tarreau13278b42017-10-13 19:23:14 +02002468
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01002469 out:
2470 h2_release_buf(h2c, &rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002471 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 +01002472 return NULL;
Willy Tarreau96a10c22018-12-23 18:30:44 +01002473
2474 send_rst:
2475 /* make the demux send an RST for the current stream. We may only
2476 * do this if we're certain that the HEADERS frame was properly
2477 * decompressed so that the HPACK decoder is still kept up to date.
2478 */
2479 h2_release_buf(h2c, &rxbuf);
2480 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002481
2482 TRACE_USER("rejected H2 request", H2_EV_RX_FRAME|H2_EV_RX_HDR|H2_EV_STRM_NEW|H2_EV_STRM_END, h2c->conn,, &rxbuf);
2483 TRACE_DEVEL("leaving on error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreau96a10c22018-12-23 18:30:44 +01002484 return h2s;
Willy Tarreau13278b42017-10-13 19:23:14 +02002485}
2486
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002487/* processes a HEADERS frame. Returns h2s on success or NULL on missing data.
2488 * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the
2489 * errors here are reported as connection errors since it's impossible to
2490 * recover from such errors after the compression context has been altered.
2491 */
2492static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s)
2493{
2494 int error;
2495
Willy Tarreau7838a792019-08-12 18:42:03 +02002496 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2497
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002498 if (!b_size(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002499 goto fail; // empty buffer
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002500
2501 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002502 goto fail; // incomplete frame
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002503
Willy Tarreau1915ca22019-01-24 11:49:37 +01002504 error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002505
Willy Tarreau25919232019-01-03 14:48:18 +01002506 /* unrecoverable error ? */
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002507 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002508 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002509
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002510 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2511 /* RFC7540#5.1 */
2512 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2513 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002514 goto fail;
Willy Tarreau08bb1d62019-01-30 16:55:48 +01002515 }
2516
Willy Tarreau25919232019-01-03 14:48:18 +01002517 if (error <= 0) {
2518 if (error == 0)
Willy Tarreau7838a792019-08-12 18:42:03 +02002519 goto fail; // missing data
Willy Tarreau25919232019-01-03 14:48:18 +01002520
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002521 /* stream error : send RST_STREAM */
Willy Tarreau25919232019-01-03 14:48:18 +01002522 h2s_error(h2s, H2_ERR_PROTOCOL_ERROR);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002523 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002524 goto fail;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002525 }
2526
Christopher Fauletfa922f02019-05-07 10:55:17 +02002527 if (h2c->dff & H2_F_HEADERS_END_STREAM)
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002528 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreau45ffc0c2019-01-03 09:32:20 +01002529
Willy Tarreau927b88b2019-03-04 08:03:25 +01002530 if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR)
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002531 h2s->st = H2_SS_ERROR;
Christopher Fauletfa922f02019-05-07 10:55:17 +02002532 else if (h2s->flags & H2_SF_ES_RCVD) {
2533 if (h2s->st == H2_SS_OPEN)
2534 h2s->st = H2_SS_HREM;
2535 else if (h2s->st == H2_SS_HLOC)
2536 h2s_close(h2s);
2537 }
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002538
Willy Tarreau8fecec22019-08-30 07:29:53 +02002539 TRACE_USER("rcvd H2 response", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn,, &h2s->rxbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02002540 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002541 return h2s;
Willy Tarreau7838a792019-08-12 18:42:03 +02002542 fail:
2543 TRACE_DEVEL("leaving on missing data or error", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
2544 return NULL;
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002545}
2546
Willy Tarreau454f9052017-10-26 19:40:35 +02002547/* processes a DATA frame. Returns > 0 on success or zero on missing data.
2548 * It may return an error in h2c or h2s. Described in RFC7540#6.1.
2549 */
2550static int h2c_frt_handle_data(struct h2c *h2c, struct h2s *h2s)
2551{
2552 int error;
2553
Willy Tarreau7838a792019-08-12 18:42:03 +02002554 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
2555
Willy Tarreau454f9052017-10-26 19:40:35 +02002556 /* note that empty DATA frames are perfectly valid and sometimes used
2557 * to signal an end of stream (with the ES flag).
2558 */
2559
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002560 if (!b_size(&h2c->dbuf) && h2c->dfl)
Willy Tarreau7838a792019-08-12 18:42:03 +02002561 goto fail; // empty buffer
Willy Tarreau454f9052017-10-26 19:40:35 +02002562
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002563 if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf))
Willy Tarreau7838a792019-08-12 18:42:03 +02002564 goto fail; // incomplete frame
Willy Tarreau454f9052017-10-26 19:40:35 +02002565
2566 /* now either the frame is complete or the buffer is complete */
2567
Willy Tarreau454f9052017-10-26 19:40:35 +02002568 if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) {
2569 /* RFC7540#6.1 */
2570 error = H2_ERR_STREAM_CLOSED;
2571 goto strm_err;
2572 }
2573
Christopher Faulet4f09ec82019-06-19 09:25:58 +02002574 if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) {
Willy Tarreau1915ca22019-01-24 11:49:37 +01002575 /* RFC7540#8.1.2 */
2576 error = H2_ERR_PROTOCOL_ERROR;
2577 goto strm_err;
2578 }
2579
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002580 if (!h2_frt_transfer_data(h2s))
Willy Tarreau7838a792019-08-12 18:42:03 +02002581 goto fail;
Willy Tarreaua56a6de2018-02-26 15:59:07 +01002582
Willy Tarreau454f9052017-10-26 19:40:35 +02002583 /* call the upper layers to process the frame, then let the upper layer
2584 * notify the stream about any change.
2585 */
2586 if (!h2s->cs) {
Willy Tarreau082c4572019-08-06 10:11:02 +02002587 /* The upper layer has already closed, this may happen on
2588 * 4xx/redirects during POST, or when receiving a response
2589 * from an H2 server after the client has aborted.
2590 */
2591 error = H2_ERR_CANCEL;
Willy Tarreau454f9052017-10-26 19:40:35 +02002592 goto strm_err;
2593 }
2594
Willy Tarreau8f650c32017-11-21 19:36:21 +01002595 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002596 goto fail;
Willy Tarreau8f650c32017-11-21 19:36:21 +01002597
Willy Tarreau721c9742017-11-07 11:05:42 +01002598 if (h2s->st >= H2_SS_ERROR) {
Willy Tarreau454f9052017-10-26 19:40:35 +02002599 /* stream error : send RST_STREAM */
Willy Tarreaua20a5192017-12-27 11:02:06 +01002600 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau454f9052017-10-26 19:40:35 +02002601 }
2602
2603 /* check for completion : the callee will change this to FRAME_A or
2604 * FRAME_H once done.
2605 */
2606 if (h2c->st0 == H2_CS_FRAME_P)
Willy Tarreau7838a792019-08-12 18:42:03 +02002607 goto fail;
Willy Tarreau454f9052017-10-26 19:40:35 +02002608
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002609 /* last frame */
2610 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Fauletfa922f02019-05-07 10:55:17 +02002611 h2s->flags |= H2_SF_ES_RCVD;
Willy Tarreaufc10f592019-01-30 19:28:32 +01002612 if (h2s->st == H2_SS_OPEN)
2613 h2s->st = H2_SS_HREM;
2614 else
2615 h2s_close(h2s);
2616
Willy Tarreau1915ca22019-01-24 11:49:37 +01002617 if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) {
2618 /* RFC7540#8.1.2 */
2619 error = H2_ERR_PROTOCOL_ERROR;
2620 goto strm_err;
2621 }
Willy Tarreauc4134ba2017-12-11 18:45:08 +01002622 }
2623
Willy Tarreau7838a792019-08-12 18:42:03 +02002624 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02002625 return 1;
2626
Willy Tarreau454f9052017-10-26 19:40:35 +02002627 strm_err:
Willy Tarreau6432dc82019-01-30 15:42:44 +01002628 h2s_error(h2s, error);
2629 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002630 fail:
2631 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 +02002632 return 0;
2633}
2634
Willy Tarreau63864812019-08-07 14:25:20 +02002635/* check that the current frame described in h2c->{dsi,dft,dfl,dff,...} is
2636 * valid for the current stream state. This is needed only after parsing the
2637 * frame header but in practice it can be performed at any time during
2638 * H2_CS_FRAME_P since no state transition happens there. Returns >0 on success
2639 * or 0 in case of error, in which case either h2s or h2c will carry an error.
2640 */
2641static int h2_frame_check_vs_state(struct h2c *h2c, struct h2s *h2s)
2642{
Willy Tarreau7838a792019-08-12 18:42:03 +02002643 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
2644
Willy Tarreau63864812019-08-07 14:25:20 +02002645 if (h2s->st == H2_SS_IDLE &&
2646 h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) {
2647 /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in
2648 * this state MUST be treated as a connection error
2649 */
2650 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2651 if (!h2c->nb_streams) {
2652 /* only log if no other stream can report the error */
2653 sess_log(h2c->conn->owner);
2654 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002655 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 +02002656 return 0;
2657 }
2658
2659 if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE &&
2660 h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) {
2661 /* RFC7540#5.1: any frame other than WU/PRIO/RST in
2662 * this state MUST be treated as a stream error.
2663 * 6.2, 6.6 and 6.10 further mandate that HEADERS/
2664 * PUSH_PROMISE/CONTINUATION cause connection errors.
2665 */
2666 if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK)
2667 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2668 else
2669 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02002670 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 +02002671 return 0;
2672 }
2673
2674 /* Below the management of frames received in closed state is a
2675 * bit hackish because the spec makes strong differences between
2676 * streams closed by receiving RST, sending RST, and seeing ES
2677 * in both directions. In addition to this, the creation of a
2678 * new stream reusing the identifier of a closed one will be
2679 * detected here. Given that we cannot keep track of all closed
2680 * streams forever, we consider that unknown closed streams were
2681 * closed on RST received, which allows us to respond with an
2682 * RST without breaking the connection (eg: to abort a transfer).
2683 * Some frames have to be silently ignored as well.
2684 */
2685 if (h2s->st == H2_SS_CLOSED && h2c->dsi) {
2686 if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
2687 /* #5.1.1: The identifier of a newly
2688 * established stream MUST be numerically
2689 * greater than all streams that the initiating
2690 * endpoint has opened or reserved. This
2691 * governs streams that are opened using a
2692 * HEADERS frame and streams that are reserved
2693 * using PUSH_PROMISE. An endpoint that
2694 * receives an unexpected stream identifier
2695 * MUST respond with a connection error.
2696 */
2697 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02002698 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 +02002699 return 0;
2700 }
2701
2702 if (h2s->flags & H2_SF_RST_RCVD && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) {
2703 /* RFC7540#5.1:closed: an endpoint that
2704 * receives any frame other than PRIORITY after
2705 * receiving a RST_STREAM MUST treat that as a
2706 * stream error of type STREAM_CLOSED.
2707 *
2708 * Note that old streams fall into this category
2709 * and will lead to an RST being sent.
2710 *
2711 * However, we cannot generalize this to all frame types. Those
2712 * carrying compression state must still be processed before
2713 * being dropped or we'll desynchronize the decoder. This can
2714 * happen with request trailers received after sending an
2715 * RST_STREAM, or with header/trailers responses received after
2716 * sending RST_STREAM (aborted stream).
2717 */
2718 h2s_error(h2s, H2_ERR_STREAM_CLOSED);
2719 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02002720 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 +02002721 return 0;
2722 }
2723
2724 /* RFC7540#5.1:closed: if this state is reached as a
2725 * result of sending a RST_STREAM frame, the peer that
2726 * receives the RST_STREAM might have already sent
2727 * frames on the stream that cannot be withdrawn. An
2728 * endpoint MUST ignore frames that it receives on
2729 * closed streams after it has sent a RST_STREAM
2730 * frame. An endpoint MAY choose to limit the period
2731 * over which it ignores frames and treat frames that
2732 * arrive after this time as being in error.
2733 */
2734 if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) {
2735 /* RFC7540#5.1:closed: any frame other than
2736 * PRIO/WU/RST in this state MUST be treated as
2737 * a connection error
2738 */
2739 if (h2c->dft != H2_FT_RST_STREAM &&
2740 h2c->dft != H2_FT_PRIORITY &&
2741 h2c->dft != H2_FT_WINDOW_UPDATE) {
2742 h2c_error(h2c, H2_ERR_STREAM_CLOSED);
Willy Tarreau7838a792019-08-12 18:42:03 +02002743 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 +02002744 return 0;
2745 }
2746 }
2747 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002748 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn, h2s);
Willy Tarreau63864812019-08-07 14:25:20 +02002749 return 1;
2750}
2751
Willy Tarreaubc933932017-10-09 16:21:43 +02002752/* process Rx frames to be demultiplexed */
2753static void h2_process_demux(struct h2c *h2c)
2754{
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002755 struct h2s *h2s = NULL, *tmp_h2s;
Willy Tarreau54f46e52019-01-30 15:11:03 +01002756 struct h2_fh hdr;
2757 unsigned int padlen = 0;
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02002758 int32_t old_iw = h2c->miw;
Willy Tarreauf3ee0692017-10-17 08:18:25 +02002759
Willy Tarreau7838a792019-08-12 18:42:03 +02002760 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
2761
Willy Tarreau081d4722017-05-16 21:51:05 +02002762 if (h2c->st0 >= H2_CS_ERROR)
Willy Tarreau7838a792019-08-12 18:42:03 +02002763 goto out;
Willy Tarreau52eed752017-09-22 15:05:09 +02002764
2765 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
2766 if (h2c->st0 == H2_CS_PREFACE) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002767 TRACE_STATE("expecting preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau01b44822018-10-03 14:26:37 +02002768 if (h2c->flags & H2_CF_IS_BACK)
Willy Tarreau7838a792019-08-12 18:42:03 +02002769 goto out;
2770
Willy Tarreau52eed752017-09-22 15:05:09 +02002771 if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) {
2772 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02002773 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002774 TRACE_PROTO("failed to receive preface", H2_EV_RX_PREFACE|H2_EV_PROTO_ERR, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02002775 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002776 sess_log(h2c->conn->owner);
2777 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002778 goto fail;
2779 }
Willy Tarreau7838a792019-08-12 18:42:03 +02002780 TRACE_PROTO("received preface", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02002781
2782 h2c->max_id = 0;
2783 h2c->st0 = H2_CS_SETTINGS1;
Willy Tarreau7838a792019-08-12 18:42:03 +02002784 TRACE_STATE("switching to SETTINGS1", H2_EV_RX_PREFACE, h2c->conn);
Willy Tarreau52eed752017-09-22 15:05:09 +02002785 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002786
2787 if (h2c->st0 == H2_CS_SETTINGS1) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002788 /* ensure that what is pending is a valid SETTINGS frame
2789 * without an ACK.
2790 */
Willy Tarreau7838a792019-08-12 18:42:03 +02002791 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 +02002792 if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002793 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau22de8d32018-09-05 19:55:58 +02002794 if (h2c->st0 == H2_CS_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002795 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 +02002796 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002797 sess_log(h2c->conn->owner);
2798 }
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002799 goto fail;
2800 }
2801
2802 if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) {
2803 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau7838a792019-08-12 18:42:03 +02002804 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 +02002805 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2806 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002807 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002808 goto fail;
2809 }
2810
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02002811 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002812 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
Willy Tarreau7838a792019-08-12 18:42:03 +02002813 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 +02002814 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
2815 h2c->st0 = H2_CS_ERROR2;
Willy Tarreau22de8d32018-09-05 19:55:58 +02002816 sess_log(h2c->conn->owner);
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002817 goto fail;
2818 }
2819
Willy Tarreau3bf69182018-12-21 15:34:50 +01002820 /* that's OK, switch to FRAME_P to process it. This is
2821 * a SETTINGS frame whose header has already been
2822 * deleted above.
2823 */
Willy Tarreau54f46e52019-01-30 15:11:03 +01002824 padlen = 0;
2825 goto new_frame;
Willy Tarreau4c3690b2017-10-10 15:16:55 +02002826 }
Willy Tarreau52eed752017-09-22 15:05:09 +02002827 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002828
2829 /* process as many incoming frames as possible below */
Willy Tarreau7838a792019-08-12 18:42:03 +02002830 while (1) {
Willy Tarreau7e98c052017-10-10 15:56:59 +02002831 int ret = 0;
2832
Willy Tarreau7838a792019-08-12 18:42:03 +02002833 if (!b_data(&h2c->dbuf)) {
2834 TRACE_DEVEL("no more Rx data", H2_EV_RX_FRAME, h2c->conn);
2835 break;
2836 }
2837
2838 if (h2c->st0 >= H2_CS_ERROR) {
2839 TRACE_STATE("end of connection reported", H2_EV_RX_FRAME|H2_EV_RX_EOI, h2c->conn);
Willy Tarreau7e98c052017-10-10 15:56:59 +02002840 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02002841 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002842
2843 if (h2c->st0 == H2_CS_FRAME_H) {
Willy Tarreau30d05f32019-08-06 15:49:51 +02002844 h2c->rcvd_s = 0;
2845
Willy Tarreau7838a792019-08-12 18:42:03 +02002846 TRACE_STATE("expecting H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Willy Tarreaua4428bd2018-12-22 18:11:41 +01002847 if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr))
Willy Tarreau7e98c052017-10-10 15:56:59 +02002848 break;
2849
Willy Tarreau3f0e1ec2018-04-17 10:28:27 +02002850 if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002851 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 +02002852 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
Willy Tarreau22de8d32018-09-05 19:55:58 +02002853 if (!h2c->nb_streams) {
2854 /* only log if no other stream can report the error */
2855 sess_log(h2c->conn->owner);
2856 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002857 break;
2858 }
2859
Christopher Fauletdd2a5622019-06-18 12:22:38 +02002860 padlen = 0;
Willy Tarreau3bf69182018-12-21 15:34:50 +01002861 if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) {
2862 /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA),
2863 * we read the pad length and drop it from the remaining
2864 * payload (one byte + the 9 remaining ones = 10 total
2865 * removed), so we have a frame payload starting after the
2866 * pad len. Flow controlled frames (DATA) also count the
2867 * padlen in the flow control, so it must be adjusted.
2868 */
2869 if (hdr.len < 1) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002870 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 +01002871 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
2872 sess_log(h2c->conn->owner);
2873 goto fail;
2874 }
2875 hdr.len--;
2876
2877 if (b_data(&h2c->dbuf) < 10)
2878 break; // missing padlen
2879
2880 padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9);
2881
2882 if (padlen > hdr.len) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002883 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 +01002884 /* RFC7540#6.1 : pad length = length of
2885 * frame payload or greater => error.
2886 */
2887 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2888 sess_log(h2c->conn->owner);
2889 goto fail;
2890 }
2891
2892 if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) {
2893 h2c->rcvd_c++;
2894 h2c->rcvd_s++;
2895 }
2896 b_del(&h2c->dbuf, 1);
2897 }
2898 h2_skip_frame_hdr(&h2c->dbuf);
Willy Tarreau8fecec22019-08-30 07:29:53 +02002899 TRACE_STATE("rcvd H2 frame header", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Willy Tarreau54f46e52019-01-30 15:11:03 +01002900
2901 new_frame:
Willy Tarreau7e98c052017-10-10 15:56:59 +02002902 h2c->dfl = hdr.len;
2903 h2c->dsi = hdr.sid;
2904 h2c->dft = hdr.ft;
2905 h2c->dff = hdr.ff;
Willy Tarreau3bf69182018-12-21 15:34:50 +01002906 h2c->dpl = padlen;
Willy Tarreau7e98c052017-10-10 15:56:59 +02002907 h2c->st0 = H2_CS_FRAME_P;
Willy Tarreau7838a792019-08-12 18:42:03 +02002908 TRACE_STATE("switching to FRAME_P state", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Willy Tarreau54f46e52019-01-30 15:11:03 +01002909
2910 /* check for minimum basic frame format validity */
2911 ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize);
2912 if (ret != H2_ERR_NO_ERROR) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002913 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 +01002914 h2c_error(h2c, ret);
2915 sess_log(h2c->conn->owner);
2916 goto fail;
2917 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02002918 }
2919
Willy Tarreau9fd5aa82019-08-06 15:21:45 +02002920 /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here.
2921 * H2_CS_FRAME_P indicates an incomplete previous operation
2922 * (most often the first attempt) and requires some validity
2923 * checks for the frame and the current state. The two other
2924 * ones are set after completion (or abortion) and must skip
2925 * validity checks.
2926 */
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002927 tmp_h2s = h2c_st_by_id(h2c, h2c->dsi);
2928
Willy Tarreau567beb82018-12-18 16:52:44 +01002929 if (tmp_h2s != h2s && h2s && h2s->cs &&
2930 (b_data(&h2s->rxbuf) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02002931 conn_xprt_read0_pending(h2c->conn) ||
2932 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02002933 (h2s->flags & H2_SF_ES_RCVD) ||
2934 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002935 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02002936 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 +01002937 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01002938 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002939 }
2940 h2s = tmp_h2s;
Willy Tarreau7e98c052017-10-10 15:56:59 +02002941
Willy Tarreau63864812019-08-07 14:25:20 +02002942 if (h2c->st0 == H2_CS_FRAME_E ||
Willy Tarreau7838a792019-08-12 18:42:03 +02002943 (h2c->st0 == H2_CS_FRAME_P && !h2_frame_check_vs_state(h2c, h2s))) {
2944 TRACE_PROTO("stream error reported", H2_EV_RX_FRAME|H2_EV_PROTO_ERR, h2c->conn, h2s);
Willy Tarreauf182a9a2017-10-30 12:03:50 +01002945 goto strm_err;
Willy Tarreau7838a792019-08-12 18:42:03 +02002946 }
Willy Tarreauc0da1962017-10-30 18:38:00 +01002947
Willy Tarreau7e98c052017-10-10 15:56:59 +02002948 switch (h2c->dft) {
Willy Tarreau3421aba2017-07-27 15:41:03 +02002949 case H2_FT_SETTINGS:
Willy Tarreau7838a792019-08-12 18:42:03 +02002950 if (h2c->st0 == H2_CS_FRAME_P) {
2951 TRACE_PROTO("receiving H2 SETTINGS frame", H2_EV_RX_FRAME|H2_EV_RX_SETTINGS, h2c->conn, h2s);
Willy Tarreau3421aba2017-07-27 15:41:03 +02002952 ret = h2c_handle_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02002953 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002954
Willy Tarreau7838a792019-08-12 18:42:03 +02002955 if (h2c->st0 == H2_CS_FRAME_A) {
2956 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 +02002957 ret = h2c_ack_settings(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02002958 }
Willy Tarreau3421aba2017-07-27 15:41:03 +02002959 break;
2960
Willy Tarreaucf68c782017-10-10 17:11:41 +02002961 case H2_FT_PING:
Willy Tarreau7838a792019-08-12 18:42:03 +02002962 if (h2c->st0 == H2_CS_FRAME_P) {
2963 TRACE_PROTO("receiving H2 PING frame", H2_EV_RX_FRAME|H2_EV_RX_PING, h2c->conn, h2s);
Willy Tarreaucf68c782017-10-10 17:11:41 +02002964 ret = h2c_handle_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02002965 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02002966
Willy Tarreau7838a792019-08-12 18:42:03 +02002967 if (h2c->st0 == H2_CS_FRAME_A) {
2968 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 +02002969 ret = h2c_ack_ping(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02002970 }
Willy Tarreaucf68c782017-10-10 17:11:41 +02002971 break;
2972
Willy Tarreau26f95952017-07-27 17:18:30 +02002973 case H2_FT_WINDOW_UPDATE:
Willy Tarreau7838a792019-08-12 18:42:03 +02002974 if (h2c->st0 == H2_CS_FRAME_P) {
2975 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 +02002976 ret = h2c_handle_window_update(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02002977 }
Willy Tarreau26f95952017-07-27 17:18:30 +02002978 break;
2979
Willy Tarreau61290ec2017-10-17 08:19:21 +02002980 case H2_FT_CONTINUATION:
Willy Tarreauea18f862018-12-22 20:19:26 +01002981 /* RFC7540#6.10: CONTINUATION may only be preceeded by
2982 * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These
2983 * frames' parsers consume all following CONTINUATION
2984 * frames so this one is out of sequence.
Willy Tarreau61290ec2017-10-17 08:19:21 +02002985 */
Willy Tarreau7838a792019-08-12 18:42:03 +02002986 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 +01002987 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
2988 sess_log(h2c->conn->owner);
2989 goto fail;
Willy Tarreau61290ec2017-10-17 08:19:21 +02002990
Willy Tarreau13278b42017-10-13 19:23:14 +02002991 case H2_FT_HEADERS:
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002992 if (h2c->st0 == H2_CS_FRAME_P) {
Willy Tarreau7838a792019-08-12 18:42:03 +02002993 TRACE_PROTO("receiving H2 HEADERS frame", H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn, h2s);
Willy Tarreauc12f38f2018-10-08 14:53:27 +02002994 if (h2c->flags & H2_CF_IS_BACK)
2995 tmp_h2s = h2c_bck_handle_headers(h2c, h2s);
2996 else
2997 tmp_h2s = h2c_frt_handle_headers(h2c, h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01002998 if (tmp_h2s) {
2999 h2s = tmp_h2s;
3000 ret = 1;
3001 }
3002 }
Willy Tarreau13278b42017-10-13 19:23:14 +02003003 break;
3004
Willy Tarreau454f9052017-10-26 19:40:35 +02003005 case H2_FT_DATA:
Willy Tarreau7838a792019-08-12 18:42:03 +02003006 if (h2c->st0 == H2_CS_FRAME_P) {
3007 TRACE_PROTO("receiving H2 DATA frame", H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454f9052017-10-26 19:40:35 +02003008 ret = h2c_frt_handle_data(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003009 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003010
Willy Tarreau7838a792019-08-12 18:42:03 +02003011 if (h2c->st0 == H2_CS_FRAME_A) {
3012 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 +02003013 ret = h2c_send_strm_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003014 }
Willy Tarreau454f9052017-10-26 19:40:35 +02003015 break;
Willy Tarreaucd234e92017-08-18 10:59:39 +02003016
Willy Tarreau92153fc2017-12-03 19:46:19 +01003017 case H2_FT_PRIORITY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003018 if (h2c->st0 == H2_CS_FRAME_P) {
3019 TRACE_PROTO("receiving H2 PRIORITY frame", H2_EV_RX_FRAME|H2_EV_RX_PRIO, h2c->conn, h2s);
Willy Tarreau92153fc2017-12-03 19:46:19 +01003020 ret = h2c_handle_priority(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003021 }
Willy Tarreau92153fc2017-12-03 19:46:19 +01003022 break;
3023
Willy Tarreaucd234e92017-08-18 10:59:39 +02003024 case H2_FT_RST_STREAM:
Willy Tarreau7838a792019-08-12 18:42:03 +02003025 if (h2c->st0 == H2_CS_FRAME_P) {
3026 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 +02003027 ret = h2c_handle_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003028 }
Willy Tarreaucd234e92017-08-18 10:59:39 +02003029 break;
3030
Willy Tarreaue96b0922017-10-30 00:28:29 +01003031 case H2_FT_GOAWAY:
Willy Tarreau7838a792019-08-12 18:42:03 +02003032 if (h2c->st0 == H2_CS_FRAME_P) {
3033 TRACE_PROTO("receiving H2 GOAWAY frame", H2_EV_RX_FRAME|H2_EV_RX_GOAWAY, h2c->conn, h2s);
Willy Tarreaue96b0922017-10-30 00:28:29 +01003034 ret = h2c_handle_goaway(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003035 }
Willy Tarreaue96b0922017-10-30 00:28:29 +01003036 break;
3037
Willy Tarreau1c661982017-10-30 13:52:01 +01003038 /* implement all extra frame types here */
Willy Tarreau7e98c052017-10-10 15:56:59 +02003039 default:
Willy Tarreau7838a792019-08-12 18:42:03 +02003040 TRACE_PROTO("receiving H2 ignored frame", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003041 /* drop frames that we ignore. They may be larger than
3042 * the buffer so we drain all of their contents until
3043 * we reach the end.
3044 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003045 ret = MIN(b_data(&h2c->dbuf), h2c->dfl);
3046 b_del(&h2c->dbuf, ret);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003047 h2c->dfl -= ret;
3048 ret = h2c->dfl == 0;
3049 }
3050
Willy Tarreauf182a9a2017-10-30 12:03:50 +01003051 strm_err:
Willy Tarreaua20a5192017-12-27 11:02:06 +01003052 /* We may have to send an RST if not done yet */
Willy Tarreau7838a792019-08-12 18:42:03 +02003053 if (h2s->st == H2_SS_ERROR) {
3054 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 +01003055 h2c->st0 = H2_CS_FRAME_E;
Willy Tarreau7838a792019-08-12 18:42:03 +02003056 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003057
Willy Tarreau7838a792019-08-12 18:42:03 +02003058 if (h2c->st0 == H2_CS_FRAME_E) {
3059 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 +01003060 ret = h2c_send_rst_stream(h2c, h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003061 }
Willy Tarreau27a84c92017-10-17 08:10:17 +02003062
Willy Tarreau7e98c052017-10-10 15:56:59 +02003063 /* error or missing data condition met above ? */
Willy Tarreau7838a792019-08-12 18:42:03 +02003064 if (ret <= 0) {
3065 TRACE_DEVEL("insufficient data to proceed", H2_EV_RX_FRAME, h2c->conn, h2s);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003066 break;
Willy Tarreau7838a792019-08-12 18:42:03 +02003067 }
Willy Tarreau7e98c052017-10-10 15:56:59 +02003068
3069 if (h2c->st0 != H2_CS_FRAME_H) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003070 TRACE_STATE("switching to FRAME_H", H2_EV_RX_FRAME|H2_EV_RX_FHDR, h2c->conn);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003071 b_del(&h2c->dbuf, h2c->dfl);
Willy Tarreau7e98c052017-10-10 15:56:59 +02003072 h2c->st0 = H2_CS_FRAME_H;
3073 }
3074 }
Willy Tarreau52eed752017-09-22 15:05:09 +02003075
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003076 if (h2c->rcvd_c > 0 &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003077 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) {
3078 TRACE_PROTO("sending H2 WINDOW_UPDATE frame", H2_EV_TX_FRAME|H2_EV_TX_WU, h2c->conn);
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003079 h2c_send_conn_wu(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003080 }
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003081
Willy Tarreau52eed752017-09-22 15:05:09 +02003082 fail:
3083 /* we can go here on missing data, blocked response or error */
Willy Tarreau567beb82018-12-18 16:52:44 +01003084 if (h2s && h2s->cs &&
3085 (b_data(&h2s->rxbuf) ||
Willy Tarreau76c83822019-06-15 09:55:50 +02003086 conn_xprt_read0_pending(h2c->conn) ||
3087 h2s->st == H2_SS_CLOSED ||
Christopher Fauletfa922f02019-05-07 10:55:17 +02003088 (h2s->flags & H2_SF_ES_RCVD) ||
3089 (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) {
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003090 /* we may have to signal the upper layers */
Willy Tarreau7838a792019-08-12 18:42:03 +02003091 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 +01003092 h2s->cs->flags |= CS_FL_RCV_MORE;
Willy Tarreau7e094452018-12-19 18:08:52 +01003093 h2s_notify_recv(h2s);
Willy Tarreau2a761dc2018-02-26 18:50:57 +01003094 }
Willy Tarreau1ed87b72018-11-25 08:45:16 +01003095
Willy Tarreau7838a792019-08-12 18:42:03 +02003096 if (old_iw != h2c->miw) {
3097 TRACE_STATE("notifying streams about SFCTL increase", H2_EV_RX_FRAME|H2_EV_H2S_WAKE, h2c->conn);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003098 h2c_unblock_sfctl(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003099 }
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02003100
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003101 h2c_restart_reading(h2c, 0);
Willy Tarreau7838a792019-08-12 18:42:03 +02003102 out:
3103 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreaubc933932017-10-09 16:21:43 +02003104}
3105
3106/* process Tx frames from streams to be multiplexed. Returns > 0 if it reached
3107 * the end.
3108 */
3109static int h2_process_mux(struct h2c *h2c)
3110{
Olivier Houchard998410a2019-04-15 19:23:37 +02003111 struct h2s *h2s, *h2s_back;
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003112
Willy Tarreau7838a792019-08-12 18:42:03 +02003113 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3114
Willy Tarreau01b44822018-10-03 14:26:37 +02003115 if (unlikely(h2c->st0 < H2_CS_FRAME_H)) {
3116 if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) {
3117 if (unlikely(h2c_bck_send_preface(h2c) <= 0)) {
3118 /* RFC7540#3.5: a GOAWAY frame MAY be omitted */
3119 if (h2c->st0 == H2_CS_ERROR) {
3120 h2c->st0 = H2_CS_ERROR2;
3121 sess_log(h2c->conn->owner);
3122 }
3123 goto fail;
3124 }
3125 h2c->st0 = H2_CS_SETTINGS1;
3126 }
3127 /* need to wait for the other side */
Willy Tarreau75a930a2018-12-12 08:03:58 +01003128 if (h2c->st0 < H2_CS_FRAME_H)
Willy Tarreau7838a792019-08-12 18:42:03 +02003129 goto done;
Willy Tarreau01b44822018-10-03 14:26:37 +02003130 }
3131
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003132 /* start by sending possibly pending window updates */
Willy Tarreaue74679a2019-08-06 15:39:32 +02003133 if (h2c->rcvd_s > 0 &&
3134 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3135 h2c_send_strm_wu(h2c) < 0)
3136 goto fail;
3137
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003138 if (h2c->rcvd_c > 0 &&
3139 !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) &&
3140 h2c_send_conn_wu(h2c) < 0)
3141 goto fail;
3142
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003143 /* First we always process the flow control list because the streams
3144 * waiting there were already elected for immediate emission but were
3145 * blocked just on this.
3146 */
3147
Olivier Houchard998410a2019-04-15 19:23:37 +02003148 list_for_each_entry_safe(h2s, h2s_back, &h2c->fctl_list, list) {
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003149 if (h2c->mws <= 0 || h2c->flags & H2_CF_MUX_BLOCK_ANY ||
3150 h2c->st0 >= H2_CS_ERROR)
3151 break;
Olivier Houchard998410a2019-04-15 19:23:37 +02003152
Willy Tarreauc234ae32019-05-13 17:56:11 +02003153 if (LIST_ADDED(&h2s->sending_list))
Olivier Houchardd360ac62019-03-22 17:37:16 +01003154 continue;
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003155
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003156 h2s->flags &= ~H2_SF_BLK_ANY;
Olivier Houchard998410a2019-04-15 19:23:37 +02003157 /* For some reason, the upper layer failed to subsribe again,
3158 * so remove it from the send_list
3159 */
3160 if (!h2s->send_wait) {
3161 LIST_DEL_INIT(&h2s->list);
3162 continue;
3163 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003164 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Olivier Houchardd360ac62019-03-22 17:37:16 +01003165 LIST_ADDQ(&h2c->sending_list, &h2s->sending_list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003166 tasklet_wakeup(h2s->send_wait->tasklet);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003167 }
3168
Olivier Houchard998410a2019-04-15 19:23:37 +02003169 list_for_each_entry_safe(h2s, h2s_back, &h2c->send_list, list) {
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003170 if (h2c->st0 >= H2_CS_ERROR || h2c->flags & H2_CF_MUX_BLOCK_ANY)
3171 break;
Olivier Houchard998410a2019-04-15 19:23:37 +02003172
Willy Tarreauc234ae32019-05-13 17:56:11 +02003173 if (LIST_ADDED(&h2s->sending_list))
Olivier Houchardd360ac62019-03-22 17:37:16 +01003174 continue;
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003175
Olivier Houchard998410a2019-04-15 19:23:37 +02003176 /* For some reason, the upper layer failed to subsribe again,
3177 * so remove it from the send_list
3178 */
3179 if (!h2s->send_wait) {
3180 LIST_DEL_INIT(&h2s->list);
3181 continue;
3182 }
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003183 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003184 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Olivier Houchardd360ac62019-03-22 17:37:16 +01003185 LIST_ADDQ(&h2c->sending_list, &h2s->sending_list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003186 tasklet_wakeup(h2s->send_wait->tasklet);
Willy Tarreaubacdf5a2017-10-17 10:57:04 +02003187 }
3188
Willy Tarreaucc0b8c32017-10-26 16:55:59 +02003189 fail:
Willy Tarreau3eabe9b2017-11-07 11:03:01 +01003190 if (unlikely(h2c->st0 >= H2_CS_ERROR)) {
Willy Tarreau081d4722017-05-16 21:51:05 +02003191 if (h2c->st0 == H2_CS_ERROR) {
3192 if (h2c->max_id >= 0) {
3193 h2c_send_goaway_error(h2c, NULL);
3194 if (h2c->flags & H2_CF_MUX_BLOCK_ANY)
Willy Tarreau7838a792019-08-12 18:42:03 +02003195 goto out0;
Willy Tarreau081d4722017-05-16 21:51:05 +02003196 }
3197
3198 h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) !
3199 }
Willy Tarreau081d4722017-05-16 21:51:05 +02003200 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003201 done:
3202 TRACE_LEAVE(H2_EV_H2C_WAKE, h2c->conn);
3203 return 1;
3204 out0:
3205 TRACE_DEVEL("leaving in blocked situation", H2_EV_H2C_WAKE, h2c->conn);
3206 return 0;
Willy Tarreaubc933932017-10-09 16:21:43 +02003207}
3208
Willy Tarreau62f52692017-10-08 23:01:42 +02003209
Willy Tarreau479998a2018-11-18 06:30:59 +01003210/* Attempt to read data, and subscribe if none available.
3211 * The function returns 1 if data has been received, otherwise zero.
3212 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003213static int h2_recv(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003214{
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003215 struct connection *conn = h2c->conn;
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003216 struct buffer *buf;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003217 int max;
Olivier Houchard7505f942018-08-21 18:10:44 +02003218 size_t ret;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003219
Willy Tarreau7838a792019-08-12 18:42:03 +02003220 TRACE_ENTER(H2_EV_H2C_RECV, h2c->conn);
3221
3222 if (h2c->wait_event.events & SUB_RETRY_RECV) {
3223 TRACE_DEVEL("leaving on sub_recv", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003224 return (b_data(&h2c->dbuf));
Willy Tarreau7838a792019-08-12 18:42:03 +02003225 }
Olivier Houchardaf4021e2018-08-09 13:06:55 +02003226
Willy Tarreau7838a792019-08-12 18:42:03 +02003227 if (!h2_recv_allowed(h2c)) {
3228 TRACE_DEVEL("leaving on !recv_allowed", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003229 return 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003230 }
Willy Tarreaua2af5122017-10-09 11:56:46 +02003231
Willy Tarreau44e973f2018-03-01 17:49:30 +01003232 buf = h2_get_buf(h2c, &h2c->dbuf);
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003233 if (!buf) {
3234 h2c->flags |= H2_CF_DEM_DALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02003235 TRACE_DEVEL("leaving on !alloc", H2_EV_H2C_RECV, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003236 return 0;
Willy Tarreau1b62c5c2017-09-25 11:55:01 +02003237 }
Willy Tarreau35dbd5d2017-09-22 09:13:49 +02003238
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003239 b_realign_if_empty(buf);
3240 if (!b_data(buf)) {
3241 /* try to pre-align the buffer like the
3242 * rxbufs will be to optimize memory copies. We'll make
3243 * sure that the frame header lands at the end of the
3244 * HTX block to alias it upon recv. We cannot use the
3245 * head because rcv_buf() will realign the buffer if
3246 * it's empty. Thus we cheat and pretend we already
3247 * have a few bytes there.
3248 */
3249 max = buf_room_for_htx_data(buf) + 9;
3250 buf->head = sizeof(struct htx) - 9;
3251 }
3252 else
3253 max = b_room(buf);
Willy Tarreau2a59e872018-12-12 08:23:47 +01003254
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003255 ret = max ? conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0) : 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003256
Willy Tarreau7838a792019-08-12 18:42:03 +02003257 if (max && !ret && h2_recv_allowed(h2c)) {
3258 TRACE_DATA("failed to receive data, subscribing", H2_EV_H2C_RECV, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003259 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003260 } else if (ret)
3261 TRACE_DATA("received data", H2_EV_H2C_RECV, h2c->conn,,, (void*)(long)ret);
Olivier Houchard81a15af2018-10-19 17:26:49 +02003262
Olivier Houcharda1411e62018-08-17 18:42:48 +02003263 if (!b_data(buf)) {
Willy Tarreau44e973f2018-03-01 17:49:30 +01003264 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02003265 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Olivier Houchard46677732018-11-29 17:06:17 +01003266 return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003267 }
3268
Willy Tarreau7838a792019-08-12 18:42:03 +02003269 if (b_data(buf) == buf->size) {
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003270 h2c->flags |= H2_CF_DEM_DFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02003271 TRACE_STATE("demux buffer full", H2_EV_H2C_RECV|H2_EV_H2C_BLK);
3272 }
3273
3274 TRACE_LEAVE(H2_EV_H2C_RECV, h2c->conn);
Willy Tarreau4d7a8842019-07-31 16:00:48 +02003275 return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003276}
3277
Willy Tarreau479998a2018-11-18 06:30:59 +01003278/* Try to send data if possible.
3279 * The function returns 1 if data have been sent, otherwise zero.
3280 */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003281static int h2_send(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003282{
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003283 struct connection *conn = h2c->conn;
Willy Tarreaubc933932017-10-09 16:21:43 +02003284 int done;
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003285 int sent = 0;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003286
Willy Tarreau7838a792019-08-12 18:42:03 +02003287 TRACE_ENTER(H2_EV_H2C_SEND, h2c->conn);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003288
Willy Tarreau7838a792019-08-12 18:42:03 +02003289 if (conn->flags & CO_FL_ERROR) {
3290 TRACE_DEVEL("leaving on error", H2_EV_H2C_SEND, h2c->conn);
3291 return 1;
3292 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003293
Willy Tarreaua2af5122017-10-09 11:56:46 +02003294 if (conn->flags & (CO_FL_HANDSHAKE|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) {
3295 /* a handshake was requested */
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003296 goto schedule;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003297 }
3298
Willy Tarreaubc933932017-10-09 16:21:43 +02003299 /* This loop is quite simple : it tries to fill as much as it can from
3300 * pending streams into the existing buffer until it's reportedly full
3301 * or the end of send requests is reached. Then it tries to send this
3302 * buffer's contents out, marks it not full if at least one byte could
3303 * be sent, and tries again.
3304 *
3305 * The snd_buf() function normally takes a "flags" argument which may
3306 * be made of a combination of CO_SFL_MSG_MORE to indicate that more
3307 * data immediately comes and CO_SFL_STREAMER to indicate that the
3308 * connection is streaming lots of data (used to increase TLS record
3309 * size at the expense of latency). The former can be sent any time
3310 * there's a buffer full flag, as it indicates at least one stream
3311 * attempted to send and failed so there are pending data. An
3312 * alternative would be to set it as long as there's an active stream
3313 * but that would be problematic for ACKs until we have an absolute
3314 * guarantee that all waiters have at least one byte to send. The
3315 * latter should possibly not be set for now.
3316 */
3317
3318 done = 0;
3319 while (!done) {
3320 unsigned int flags = 0;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003321 unsigned int released = 0;
3322 struct buffer *buf;
Willy Tarreaubc933932017-10-09 16:21:43 +02003323
3324 /* fill as much as we can into the current buffer */
3325 while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done)
3326 done = h2_process_mux(h2c);
3327
Olivier Houchard2b094432019-01-29 18:28:36 +01003328 if (h2c->flags & H2_CF_MUX_MALLOC)
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003329 done = 1; // we won't go further without extra buffers
Olivier Houchard2b094432019-01-29 18:28:36 +01003330
Willy Tarreaubc933932017-10-09 16:21:43 +02003331 if (conn->flags & CO_FL_ERROR)
3332 break;
3333
3334 if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))
3335 flags |= CO_SFL_MSG_MORE;
3336
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003337 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3338 if (b_data(buf)) {
3339 int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003340 if (!ret) {
3341 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003342 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003343 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003344 sent = 1;
Willy Tarreau7838a792019-08-12 18:42:03 +02003345 TRACE_DATA("sent data", H2_EV_H2C_SEND, h2c->conn,, buf, (void*)(long)ret);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003346 b_del(buf, ret);
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003347 if (b_data(buf)) {
3348 done = 1;
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003349 break;
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003350 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003351 }
3352 b_free(buf);
3353 released++;
Willy Tarreau787db9a2018-06-14 18:31:46 +02003354 }
Willy Tarreaubc933932017-10-09 16:21:43 +02003355
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003356 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02003357 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003358
Willy Tarreaubc933932017-10-09 16:21:43 +02003359 /* wrote at least one byte, the buffer is not full anymore */
3360 h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM);
3361 }
3362
Willy Tarreaua2af5122017-10-09 11:56:46 +02003363 if (conn->flags & CO_FL_SOCK_WR_SH) {
3364 /* output closed, nothing to send, clear the buffer to release it */
Willy Tarreau51330962019-05-26 09:38:07 +02003365 b_reset(br_tail(h2c->mbuf));
Willy Tarreaua2af5122017-10-09 11:56:46 +02003366 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003367 /* We're not full anymore, so we can wake any task that are waiting
3368 * for us.
3369 */
3370 if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM))) {
Olivier Houchardd360ac62019-03-22 17:37:16 +01003371 struct h2s *h2s;
3372
3373 list_for_each_entry(h2s, &h2c->send_list, list) {
3374 if (h2c->st0 >= H2_CS_ERROR || h2c->flags & H2_CF_MUX_BLOCK_ANY)
3375 break;
Olivier Houchard998410a2019-04-15 19:23:37 +02003376
Willy Tarreauc234ae32019-05-13 17:56:11 +02003377 if (LIST_ADDED(&h2s->sending_list))
Olivier Houchardd360ac62019-03-22 17:37:16 +01003378 continue;
3379
Olivier Houchard998410a2019-04-15 19:23:37 +02003380 /* For some reason, the upper layer failed to subsribe again,
3381 * so remove it from the send_list
3382 */
3383 if (!h2s->send_wait) {
3384 LIST_DEL_INIT(&h2s->list);
3385 continue;
3386 }
Olivier Houchardd360ac62019-03-22 17:37:16 +01003387 h2s->flags &= ~H2_SF_BLK_ANY;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003388 h2s->send_wait->events &= ~SUB_RETRY_SEND;
Willy Tarreau7838a792019-08-12 18:42:03 +02003389 TRACE_DEVEL("waking up pending stream", H2_EV_H2C_SEND|H2_EV_H2S_WAKE, h2c->conn, h2s);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003390 tasklet_wakeup(h2s->send_wait->tasklet);
Olivier Houchardd360ac62019-03-22 17:37:16 +01003391 LIST_ADDQ(&h2c->sending_list, &h2s->sending_list);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02003392 }
Olivier Houchard6ff20392018-07-17 18:46:31 +02003393 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003394 /* We're done, no more to send */
Willy Tarreau7838a792019-08-12 18:42:03 +02003395 if (!br_data(h2c->mbuf)) {
3396 TRACE_DEVEL("leaving with everything sent", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003397 return sent;
Willy Tarreau7838a792019-08-12 18:42:03 +02003398 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003399schedule:
Willy Tarreau7838a792019-08-12 18:42:03 +02003400 if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) {
3401 TRACE_STATE("more data to send, subscribing", H2_EV_H2C_SEND, h2c->conn);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01003402 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event);
Willy Tarreau7838a792019-08-12 18:42:03 +02003403 }
Willy Tarreau7f1265a2019-05-29 17:36:37 +02003404
Willy Tarreau7838a792019-08-12 18:42:03 +02003405 TRACE_DEVEL("leaving with some data left to send", H2_EV_H2C_SEND, h2c->conn);
Olivier Houchardd4dd22d2018-08-17 18:39:46 +02003406 return sent;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003407}
3408
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003409/* this is the tasklet referenced in h2c->wait_event.tasklet */
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003410static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short status)
3411{
3412 struct h2c *h2c = ctx;
Olivier Houchard7505f942018-08-21 18:10:44 +02003413 int ret = 0;
Olivier Houchard29fb89d2018-08-02 18:56:36 +02003414
Willy Tarreau7838a792019-08-12 18:42:03 +02003415 TRACE_ENTER(H2_EV_H2C_WAKE, h2c->conn);
3416
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003417 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Olivier Houchard7505f942018-08-21 18:10:44 +02003418 ret = h2_send(h2c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003419 if (!(h2c->wait_event.events & SUB_RETRY_RECV))
Olivier Houchard7505f942018-08-21 18:10:44 +02003420 ret |= h2_recv(h2c);
Willy Tarreaucef5c8e2018-12-18 10:29:54 +01003421 if (ret || b_data(&h2c->dbuf))
Olivier Houchard7505f942018-08-21 18:10:44 +02003422 h2_process(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003423
3424 TRACE_LEAVE(H2_EV_H2C_WAKE);
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003425 return NULL;
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003426}
Willy Tarreaua2af5122017-10-09 11:56:46 +02003427
Willy Tarreau62f52692017-10-08 23:01:42 +02003428/* callback called on any event by the connection handler.
3429 * It applies changes and returns zero, or < 0 if it wants immediate
3430 * destruction of the connection (which normally doesn not happen in h2).
3431 */
Olivier Houchard7505f942018-08-21 18:10:44 +02003432static int h2_process(struct h2c *h2c)
Willy Tarreau62f52692017-10-08 23:01:42 +02003433{
Olivier Houchard7505f942018-08-21 18:10:44 +02003434 struct connection *conn = h2c->conn;
Willy Tarreaua2af5122017-10-09 11:56:46 +02003435
Willy Tarreau7838a792019-08-12 18:42:03 +02003436 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3437
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003438 if (b_data(&h2c->dbuf) && !(h2c->flags & H2_CF_DEM_BLOCK_ANY)) {
Willy Tarreaud13bf272017-12-14 10:34:52 +01003439 h2_process_demux(h2c);
3440
3441 if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003442 b_reset(&h2c->dbuf);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003443
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003444 if (!b_full(&h2c->dbuf))
Willy Tarreaud13bf272017-12-14 10:34:52 +01003445 h2c->flags &= ~H2_CF_DEM_DFULL;
3446 }
Olivier Houchard7505f942018-08-21 18:10:44 +02003447 h2_send(h2c);
Willy Tarreaud13bf272017-12-14 10:34:52 +01003448
Willy Tarreau0b37d652018-10-03 10:33:02 +02003449 if (unlikely(h2c->proxy->state == PR_STSTOPPED)) {
Willy Tarreau8ec14062017-12-30 18:08:13 +01003450 /* frontend is stopping, reload likely in progress, let's try
3451 * to announce a graceful shutdown if not yet done. We don't
3452 * care if it fails, it will be tried again later.
3453 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003454 TRACE_STATE("proxy stopped, sending GOAWAY", H2_EV_H2C_WAKE|H2_EV_TX_FRAME, conn);
Willy Tarreau8ec14062017-12-30 18:08:13 +01003455 if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
3456 if (h2c->last_sid < 0)
3457 h2c->last_sid = (1U << 31) - 1;
3458 h2c_send_goaway_error(h2c, NULL);
3459 }
3460 }
3461
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003462 /*
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003463 * If we received early data, and the handshake is done, wake
3464 * any stream that was waiting for it.
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003465 */
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003466 if (!(h2c->flags & H2_CF_WAIT_FOR_HS) &&
3467 (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_HANDSHAKE | CO_FL_EARLY_DATA)) == CO_FL_EARLY_DATA) {
3468 struct eb32_node *node;
3469 struct h2s *h2s;
3470
3471 h2c->flags |= H2_CF_WAIT_FOR_HS;
3472 node = eb32_lookup_ge(&h2c->streams_by_id, 1);
3473
3474 while (node) {
3475 h2s = container_of(node, struct h2s, by_id);
Willy Tarreaufde287c2018-12-19 18:33:16 +01003476 if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS)
Willy Tarreau7e094452018-12-19 18:08:52 +01003477 h2s_notify_recv(h2s);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003478 node = eb32_next(node);
3479 }
Olivier Houchard7fc96d52017-11-23 18:25:47 +01003480 }
Olivier Houchard6fa63d92017-11-27 18:41:32 +01003481
Willy Tarreau26bd7612017-10-09 16:47:04 +02003482 if (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn) ||
Willy Tarreau29a98242017-10-31 06:59:15 +01003483 h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED ||
3484 (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 &&
3485 h2c->max_id >= h2c->last_sid)) {
Willy Tarreau23482912019-05-07 15:23:14 +02003486 h2_wake_some_streams(h2c, 0);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003487
3488 if (eb_is_empty(&h2c->streams_by_id)) {
3489 /* no more stream, kill the connection now */
Christopher Faulet73c12072019-04-08 11:23:22 +02003490 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003491 TRACE_DEVEL("leaving after releasing the connection", H2_EV_H2C_WAKE);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003492 return -1;
3493 }
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003494 }
3495
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003496 if (!b_data(&h2c->dbuf))
Willy Tarreau44e973f2018-03-01 17:49:30 +01003497 h2_release_buf(h2c, &h2c->dbuf);
Willy Tarreaufbe3b4f2017-10-09 15:14:19 +02003498
Olivier Houchard53216e72018-10-10 15:46:36 +02003499 if ((conn->flags & CO_FL_SOCK_WR_SH) ||
3500 h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) ||
3501 (h2c->st0 != H2_CS_ERROR &&
Willy Tarreau662fafc2019-05-26 09:43:07 +02003502 !br_data(h2c->mbuf) &&
Olivier Houchard53216e72018-10-10 15:46:36 +02003503 (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) &&
3504 ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list))))
Willy Tarreau2e3c0002019-05-26 09:45:23 +02003505 h2_release_mbuf(h2c);
Willy Tarreaua2af5122017-10-09 11:56:46 +02003506
Willy Tarreau3f133572017-10-31 19:21:06 +01003507 if (h2c->task) {
Willy Tarreau73481192019-06-07 08:20:46 +02003508 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3509 task_queue(h2c->task);
Willy Tarreauea392822017-10-31 10:02:25 +01003510 }
Olivier Houchard910b2bc2018-07-17 18:49:38 +02003511
Olivier Houchard7505f942018-08-21 18:10:44 +02003512 h2_send(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003513 TRACE_LEAVE(H2_EV_H2C_WAKE, conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003514 return 0;
3515}
3516
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003517/* wake-up function called by the connection layer (mux_ops.wake) */
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003518static int h2_wake(struct connection *conn)
3519{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003520 struct h2c *h2c = conn->ctx;
Willy Tarreau7838a792019-08-12 18:42:03 +02003521 int ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003522
Willy Tarreau7838a792019-08-12 18:42:03 +02003523 TRACE_ENTER(H2_EV_H2C_WAKE, conn);
3524 ret = h2_process(h2c);
3525 TRACE_LEAVE(H2_EV_H2C_WAKE);
3526 return ret;
Olivier Houchard21df6cc2018-09-14 23:21:44 +02003527}
3528
Willy Tarreauea392822017-10-31 10:02:25 +01003529/* Connection timeout management. The principle is that if there's no receipt
3530 * nor sending for a certain amount of time, the connection is closed. If the
3531 * MUX buffer still has lying data or is not allocatable, the connection is
3532 * immediately killed. If it's allocatable and empty, we attempt to send a
3533 * GOAWAY frame.
3534 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02003535static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state)
Willy Tarreauea392822017-10-31 10:02:25 +01003536{
Olivier Houchard9f6af332018-05-25 14:04:04 +02003537 struct h2c *h2c = context;
Willy Tarreauea392822017-10-31 10:02:25 +01003538 int expired = tick_is_expired(t->expire, now_ms);
3539
Willy Tarreau7838a792019-08-12 18:42:03 +02003540 TRACE_ENTER(H2_EV_H2C_WAKE, h2c ? h2c->conn : NULL);
3541
3542 if (!expired && h2c) {
3543 TRACE_DEVEL("leaving (not expired)", H2_EV_H2C_WAKE, h2c->conn);
Willy Tarreauea392822017-10-31 10:02:25 +01003544 return t;
Willy Tarreau7838a792019-08-12 18:42:03 +02003545 }
Willy Tarreauea392822017-10-31 10:02:25 +01003546
Olivier Houchard3f795f72019-04-17 22:51:06 +02003547 task_destroy(t);
Willy Tarreau0975f112018-03-29 15:22:59 +02003548
3549 if (!h2c) {
3550 /* resources were already deleted */
Willy Tarreau7838a792019-08-12 18:42:03 +02003551 TRACE_DEVEL("leaving (not more h2c)", H2_EV_H2C_WAKE);
Willy Tarreau0975f112018-03-29 15:22:59 +02003552 return NULL;
3553 }
3554
3555 h2c->task = NULL;
Willy Tarreauea392822017-10-31 10:02:25 +01003556 h2c_error(h2c, H2_ERR_NO_ERROR);
Willy Tarreau23482912019-05-07 15:23:14 +02003557 h2_wake_some_streams(h2c, 0);
Willy Tarreauea392822017-10-31 10:02:25 +01003558
Willy Tarreau662fafc2019-05-26 09:43:07 +02003559 if (br_data(h2c->mbuf)) {
Willy Tarreauea392822017-10-31 10:02:25 +01003560 /* don't even try to send a GOAWAY, the buffer is stuck */
3561 h2c->flags |= H2_CF_GOAWAY_FAILED;
3562 }
3563
3564 /* try to send but no need to insist */
Willy Tarreau599391a2017-11-24 10:16:00 +01003565 h2c->last_sid = h2c->max_id;
Willy Tarreauea392822017-10-31 10:02:25 +01003566 if (h2c_send_goaway_error(h2c, NULL) <= 0)
3567 h2c->flags |= H2_CF_GOAWAY_FAILED;
3568
Willy Tarreau662fafc2019-05-26 09:43:07 +02003569 if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) {
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003570 unsigned int released = 0;
3571 struct buffer *buf;
3572
3573 for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) {
3574 if (b_data(buf)) {
3575 int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0);
3576 if (!ret)
3577 break;
3578 b_del(buf, ret);
3579 if (b_data(buf))
3580 break;
3581 b_free(buf);
3582 released++;
3583 }
Willy Tarreau787db9a2018-06-14 18:31:46 +02003584 }
Willy Tarreau41c4d6a2019-05-26 09:49:17 +02003585
3586 if (released)
Willy Tarreau201840a2019-05-29 17:50:48 +02003587 offer_buffers(NULL, tasks_run_queue);
Willy Tarreau787db9a2018-06-14 18:31:46 +02003588 }
Willy Tarreauea392822017-10-31 10:02:25 +01003589
Willy Tarreau0975f112018-03-29 15:22:59 +02003590 /* either we can release everything now or it will be done later once
3591 * the last stream closes.
3592 */
3593 if (eb_is_empty(&h2c->streams_by_id))
Christopher Faulet73c12072019-04-08 11:23:22 +02003594 h2_release(h2c);
Willy Tarreauea392822017-10-31 10:02:25 +01003595
Willy Tarreau7838a792019-08-12 18:42:03 +02003596 TRACE_LEAVE(H2_EV_H2C_WAKE);
Willy Tarreauea392822017-10-31 10:02:25 +01003597 return NULL;
3598}
3599
3600
Willy Tarreau62f52692017-10-08 23:01:42 +02003601/*******************************************/
3602/* functions below are used by the streams */
3603/*******************************************/
3604
3605/*
3606 * Attach a new stream to a connection
3607 * (Used for outgoing connections)
3608 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01003609static struct conn_stream *h2_attach(struct connection *conn, struct session *sess)
Willy Tarreau62f52692017-10-08 23:01:42 +02003610{
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003611 struct conn_stream *cs;
3612 struct h2s *h2s;
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003613 struct h2c *h2c = conn->ctx;
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003614
Willy Tarreau7838a792019-08-12 18:42:03 +02003615 TRACE_ENTER(H2_EV_H2S_NEW, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003616 cs = cs_new(conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003617 if (!cs) {
3618 TRACE_DEVEL("leaving on CS allocation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003619 return NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02003620 }
Olivier Houchardf502aca2018-12-14 19:42:40 +01003621 h2s = h2c_bck_stream_new(h2c, cs, sess);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003622 if (!h2s) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003623 TRACE_DEVEL("leaving on stream creation failure", H2_EV_H2S_NEW|H2_EV_H2S_ERR, conn);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003624 cs_free(cs);
3625 return NULL;
3626 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003627 TRACE_LEAVE(H2_EV_H2S_NEW, conn, h2s);
Olivier Houchard7a57e8a2018-11-27 17:36:33 +01003628 return cs;
Willy Tarreau62f52692017-10-08 23:01:42 +02003629}
3630
Willy Tarreaufafd3982018-11-18 21:29:20 +01003631/* Retrieves the first valid conn_stream from this connection, or returns NULL.
3632 * We have to scan because we may have some orphan streams. It might be
3633 * beneficial to scan backwards from the end to reduce the likeliness to find
3634 * orphans.
3635 */
3636static const struct conn_stream *h2_get_first_cs(const struct connection *conn)
3637{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01003638 struct h2c *h2c = conn->ctx;
Willy Tarreaufafd3982018-11-18 21:29:20 +01003639 struct h2s *h2s;
3640 struct eb32_node *node;
3641
3642 node = eb32_first(&h2c->streams_by_id);
3643 while (node) {
3644 h2s = container_of(node, struct h2s, by_id);
3645 if (h2s->cs)
3646 return h2s->cs;
3647 node = eb32_next(node);
3648 }
3649 return NULL;
3650}
3651
Willy Tarreau62f52692017-10-08 23:01:42 +02003652/*
Olivier Houchard060ed432018-11-06 16:32:42 +01003653 * Destroy the mux and the associated connection, if it is no longer used
3654 */
Christopher Faulet73c12072019-04-08 11:23:22 +02003655static void h2_destroy(void *ctx)
Olivier Houchard060ed432018-11-06 16:32:42 +01003656{
Christopher Faulet73c12072019-04-08 11:23:22 +02003657 struct h2c *h2c = ctx;
Olivier Houchard060ed432018-11-06 16:32:42 +01003658
Willy Tarreau7838a792019-08-12 18:42:03 +02003659 TRACE_ENTER(H2_EV_H2C_END, h2c->conn);
Christopher Faulet39a96ee2019-04-08 10:52:21 +02003660 if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c)
Christopher Faulet73c12072019-04-08 11:23:22 +02003661 h2_release(h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02003662 TRACE_LEAVE(H2_EV_H2C_END);
Olivier Houchard060ed432018-11-06 16:32:42 +01003663}
3664
3665/*
Willy Tarreau62f52692017-10-08 23:01:42 +02003666 * Detach the stream from the connection and possibly release the connection.
3667 */
3668static void h2_detach(struct conn_stream *cs)
3669{
Willy Tarreau60935142017-10-16 18:11:19 +02003670 struct h2s *h2s = cs->ctx;
3671 struct h2c *h2c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01003672 struct session *sess;
Willy Tarreau60935142017-10-16 18:11:19 +02003673
Willy Tarreau7838a792019-08-12 18:42:03 +02003674 TRACE_ENTER(H2_EV_STRM_END, h2s ? h2s->h2c->conn : NULL, h2s);
3675
Willy Tarreau60935142017-10-16 18:11:19 +02003676 cs->ctx = NULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02003677 if (!h2s) {
3678 TRACE_LEAVE(H2_EV_STRM_END);
Willy Tarreau60935142017-10-16 18:11:19 +02003679 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02003680 }
Willy Tarreau60935142017-10-16 18:11:19 +02003681
Olivier Houchard998410a2019-04-15 19:23:37 +02003682 /* The stream is about to die, so no need to attempt to run its task */
Willy Tarreauc234ae32019-05-13 17:56:11 +02003683 if (LIST_ADDED(&h2s->sending_list) &&
Olivier Houchard998410a2019-04-15 19:23:37 +02003684 h2s->send_wait != &h2s->wait_event) {
Willy Tarreau86eded62019-06-14 14:47:49 +02003685 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchard998410a2019-04-15 19:23:37 +02003686 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd9986ed2019-05-09 13:24:08 +02003687 /*
3688 * At this point, the stream_interface is supposed to have called
3689 * h2_unsubscribe(), so the only way there's still a
3690 * subscription that came from the stream_interface (as we
3691 * can subscribe ourself, in h2_do_shutw() and h2_do_shutr(),
3692 * without the stream_interface involved) is that we subscribed
3693 * for sending, we woke the tasklet up and removed the
3694 * SUB_RETRY_SEND flag, so the stream_interface would not
3695 * know it has to unsubscribe for send, but the tasklet hasn't
3696 * run yet. Make sure to handle that by explicitely setting
3697 * send_wait to NULL, as nothing else will do it for us.
3698 */
3699 h2s->send_wait = NULL;
Olivier Houchard998410a2019-04-15 19:23:37 +02003700 }
3701
Olivier Houchardf502aca2018-12-14 19:42:40 +01003702 sess = h2s->sess;
Willy Tarreau60935142017-10-16 18:11:19 +02003703 h2c = h2s->h2c;
3704 h2s->cs = NULL;
Willy Tarreau7ac60e82018-07-19 09:04:05 +02003705 h2c->nb_cs--;
Willy Tarreaufa1d3572019-01-31 10:31:51 +01003706 if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY &&
3707 !h2_frt_has_too_many_cs(h2c)) {
3708 /* frontend connection was blocking new streams creation */
Willy Tarreauf2101912018-07-19 10:11:38 +02003709 h2c->flags &= ~H2_CF_DEM_TOOMANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003710 h2c_restart_reading(h2c, 1);
Willy Tarreauf2101912018-07-19 10:11:38 +02003711 }
Willy Tarreau60935142017-10-16 18:11:19 +02003712
Willy Tarreau22cf59b2017-11-10 11:42:33 +01003713 /* this stream may be blocked waiting for some data to leave (possibly
3714 * an ES or RST frame), so orphan it in this case.
3715 */
Willy Tarreau3041fcc2018-03-29 15:41:32 +02003716 if (!(cs->conn->flags & CO_FL_ERROR) &&
Willy Tarreaua2b51812018-07-27 09:55:14 +02003717 (h2c->st0 < H2_CS_ERROR) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02003718 (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) && (h2s->send_wait || h2s->recv_wait)) {
3719 TRACE_DEVEL("leaving on stream blocked", H2_EV_STRM_END|H2_EV_H2S_BLK, h2c->conn, h2s);
Willy Tarreau22cf59b2017-11-10 11:42:33 +01003720 return;
Willy Tarreau7838a792019-08-12 18:42:03 +02003721 }
Willy Tarreau22cf59b2017-11-10 11:42:33 +01003722
Willy Tarreau45f752e2017-10-30 15:44:59 +01003723 if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) ||
3724 (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) {
3725 /* unblock the connection if it was blocked on this
3726 * stream.
3727 */
3728 h2c->flags &= ~H2_CF_DEM_BLOCK_ANY;
3729 h2c->flags &= ~H2_CF_MUX_BLOCK_ANY;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02003730 h2c_restart_reading(h2c, 1);
Willy Tarreau45f752e2017-10-30 15:44:59 +01003731 }
3732
Willy Tarreau71049cc2018-03-28 13:56:39 +02003733 h2s_destroy(h2s);
Willy Tarreau60935142017-10-16 18:11:19 +02003734
Christopher Faulet9b79a102019-07-15 11:22:56 +02003735 if (h2c->flags & H2_CF_IS_BACK) {
Olivier Houchard8a786902018-12-15 16:05:40 +01003736 if (!(h2c->conn->flags &
3737 (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
3738 if (!h2c->conn->owner) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01003739 h2c->conn->owner = sess;
Olivier Houchard351411f2018-12-27 17:20:54 +01003740 if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) {
3741 h2c->conn->owner = NULL;
3742 if (eb_is_empty(&h2c->streams_by_id)) {
3743 if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn))
3744 /* The server doesn't want it, let's kill the connection right away */
3745 h2c->conn->mux->destroy(h2c->conn);
Willy Tarreau7838a792019-08-12 18:42:03 +02003746 TRACE_DEVEL("leaving on error after killing outgoing connection", H2_EV_STRM_END|H2_EV_H2C_ERR);
Olivier Houchard351411f2018-12-27 17:20:54 +01003747 return;
3748 }
3749 }
Olivier Houchard8a786902018-12-15 16:05:40 +01003750 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003751 if (eb_is_empty(&h2c->streams_by_id)) {
3752 if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0)
3753 /* 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 +02003754 TRACE_DEVEL("leaving without reusable idle connection", H2_EV_STRM_END);
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003755 return;
3756 }
Olivier Houchard8a786902018-12-15 16:05:40 +01003757 /* Never ever allow to reuse a connection from a non-reuse backend */
3758 if ((h2c->proxy->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
3759 h2c->conn->flags |= CO_FL_PRIVATE;
Willy Tarreauc234ae32019-05-13 17:56:11 +02003760 if (!LIST_ADDED(&h2c->conn->list) && h2c->nb_streams < h2c->streams_limit) {
Olivier Houchard8a786902018-12-15 16:05:40 +01003761 struct server *srv = objt_server(h2c->conn->target);
3762
3763 if (srv) {
3764 if (h2c->conn->flags & CO_FL_PRIVATE)
3765 LIST_ADD(&srv->priv_conns[tid], &h2c->conn->list);
3766 else
3767 LIST_ADD(&srv->idle_conns[tid], &h2c->conn->list);
3768 }
3769
3770 }
3771 }
3772 }
3773
Willy Tarreaue323f342018-03-28 13:51:45 +02003774 /* We don't want to close right now unless we're removing the
3775 * last stream, and either the connection is in error, or it
3776 * reached the ID already specified in a GOAWAY frame received
3777 * or sent (as seen by last_sid >= 0).
3778 */
Olivier Houchard7a977432019-03-21 15:47:13 +01003779 if (h2c_is_dead(h2c)) {
Willy Tarreaue323f342018-03-28 13:51:45 +02003780 /* no more stream will come, kill it now */
Willy Tarreau7838a792019-08-12 18:42:03 +02003781 TRACE_DEVEL("leaving and killing dead connection", H2_EV_STRM_END, h2c->conn);
Christopher Faulet73c12072019-04-08 11:23:22 +02003782 h2_release(h2c);
Willy Tarreaue323f342018-03-28 13:51:45 +02003783 }
3784 else if (h2c->task) {
Willy Tarreau73481192019-06-07 08:20:46 +02003785 h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout);
3786 task_queue(h2c->task);
Willy Tarreau7838a792019-08-12 18:42:03 +02003787 TRACE_DEVEL("leaving, refreshing connection's timeout", H2_EV_STRM_END, h2c->conn);
Willy Tarreau60935142017-10-16 18:11:19 +02003788 }
Willy Tarreau7838a792019-08-12 18:42:03 +02003789 else
3790 TRACE_DEVEL("leaving", H2_EV_STRM_END, h2c->conn);
Willy Tarreau62f52692017-10-08 23:01:42 +02003791}
3792
Willy Tarreau88bdba32019-05-13 18:17:53 +02003793/* Performs a synchronous or asynchronous shutr(). */
3794static void h2_do_shutr(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02003795{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003796 struct h2c *h2c = h2s->h2c;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003797 struct wait_event *sw = &h2s->wait_event;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003798
Willy Tarreauf983d002019-05-14 10:40:21 +02003799 if (h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003800 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003801
Willy Tarreau7838a792019-08-12 18:42:03 +02003802 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
3803
Willy Tarreau18059042019-01-31 19:12:48 +01003804 /* a connstream may require us to immediately kill the whole connection
3805 * for example because of a "tcp-request content reject" rule that is
3806 * normally used to limit abuse. In this case we schedule a goaway to
3807 * close the connection.
Willy Tarreau926fa4c2017-11-07 14:42:12 +01003808 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003809 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01003810 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003811 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01003812 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
3813 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
3814 }
Christopher Faulet35757d32019-03-07 15:51:33 +01003815 else if (!(h2s->flags & H2_SF_HEADERS_SENT)) {
3816 /* Nothing was never sent for this stream, so reset with
3817 * REFUSED_STREAM error to let the client retry the
3818 * request.
3819 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003820 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01003821 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
3822 }
Willy Tarreaucfba9d62019-08-06 10:30:58 +02003823 else {
3824 /* a final response was already provided, we don't want this
3825 * stream anymore. This may happen when the server responds
3826 * before the end of an upload and closes quickly (redirect,
3827 * deny, ...)
3828 */
3829 h2s_error(h2s, H2_ERR_CANCEL);
3830 }
Willy Tarreau18059042019-01-31 19:12:48 +01003831
Willy Tarreau90c32322017-11-24 08:00:30 +01003832 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003833 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003834 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01003835
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003836 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003837 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau00dd0782018-03-01 16:31:34 +01003838 h2s_close(h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003839 done:
3840 h2s->flags &= ~H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02003841 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003842 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003843add_to_list:
Willy Tarreauc234ae32019-05-13 17:56:11 +02003844 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003845 sw->events |= SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003846 if (h2s->flags & H2_SF_BLK_MFCTL) {
3847 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
3848 h2s->send_wait = sw;
3849 } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) {
3850 h2s->send_wait = sw;
3851 LIST_ADDQ(&h2c->send_list, &h2s->list);
3852 }
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003853 }
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003854 /* Let the handler know we want shutr */
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003855 h2s->flags |= H2_SF_WANT_SHUTR;
Willy Tarreau7838a792019-08-12 18:42:03 +02003856 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003857 return;
Willy Tarreau62f52692017-10-08 23:01:42 +02003858}
3859
Willy Tarreau88bdba32019-05-13 18:17:53 +02003860/* Performs a synchronous or asynchronous shutw(). */
3861static void h2_do_shutw(struct h2s *h2s)
Willy Tarreau62f52692017-10-08 23:01:42 +02003862{
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003863 struct h2c *h2c = h2s->h2c;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003864 struct wait_event *sw = &h2s->wait_event;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003865
Willy Tarreaucfba9d62019-08-06 10:30:58 +02003866 if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003867 goto done;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003868
Willy Tarreau7838a792019-08-12 18:42:03 +02003869 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
3870
Willy Tarreaucfba9d62019-08-06 10:30:58 +02003871 if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) {
Willy Tarreau58e32082017-11-07 14:41:09 +01003872 /* we can cleanly close using an empty data frame only after headers */
3873
3874 if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) &&
3875 h2_send_empty_data_es(h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003876 goto add_to_list;
Willy Tarreau58e32082017-11-07 14:41:09 +01003877
3878 if (h2s->st == H2_SS_HREM)
Willy Tarreau00dd0782018-03-01 16:31:34 +01003879 h2s_close(h2s);
Willy Tarreau58e32082017-11-07 14:41:09 +01003880 else
3881 h2s->st = H2_SS_HLOC;
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003882 } else {
Willy Tarreau18059042019-01-31 19:12:48 +01003883 /* a connstream may require us to immediately kill the whole connection
3884 * for example because of a "tcp-request content reject" rule that is
3885 * normally used to limit abuse. In this case we schedule a goaway to
3886 * close the connection.
Willy Tarreaua1349f02017-10-31 07:41:55 +01003887 */
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003888 if ((h2s->flags & H2_SF_KILL_CONN) &&
Willy Tarreau18059042019-01-31 19:12:48 +01003889 !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02003890 TRACE_STATE("stream wants to kill the connection", H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau18059042019-01-31 19:12:48 +01003891 h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM);
3892 h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM);
3893 }
Christopher Faulet35757d32019-03-07 15:51:33 +01003894 else {
3895 /* Nothing was never sent for this stream, so reset with
3896 * REFUSED_STREAM error to let the client retry the
3897 * request.
3898 */
Willy Tarreau7838a792019-08-12 18:42:03 +02003899 TRACE_STATE("no headers sent yet, trying a retryable abort", H2_EV_STRM_SHUT, h2c->conn, h2s);
Christopher Faulet35757d32019-03-07 15:51:33 +01003900 h2s_error(h2s, H2_ERR_REFUSED_STREAM);
3901 }
Willy Tarreau18059042019-01-31 19:12:48 +01003902
Willy Tarreau90c32322017-11-24 08:00:30 +01003903 if (!(h2s->flags & H2_SF_RST_SENT) &&
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003904 h2s_send_rst_stream(h2c, h2s) <= 0)
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003905 goto add_to_list;
Willy Tarreau90c32322017-11-24 08:00:30 +01003906
Willy Tarreau00dd0782018-03-01 16:31:34 +01003907 h2s_close(h2s);
Willy Tarreauc7576ea2017-10-29 22:00:09 +01003908 }
3909
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003910 if (!(h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003911 tasklet_wakeup(h2c->wait_event.tasklet);
Willy Tarreau7838a792019-08-12 18:42:03 +02003912
3913 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
3914
Willy Tarreau88bdba32019-05-13 18:17:53 +02003915 done:
3916 h2s->flags &= ~H2_SF_WANT_SHUTW;
3917 return;
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003918
3919 add_to_list:
Willy Tarreauc234ae32019-05-13 17:56:11 +02003920 if (!LIST_ADDED(&h2s->list)) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01003921 sw->events |= SUB_RETRY_SEND;
Olivier Houchardfa8aa862018-10-10 18:25:41 +02003922 if (h2s->flags & H2_SF_BLK_MFCTL) {
3923 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
3924 h2s->send_wait = sw;
3925 } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) {
3926 h2s->send_wait = sw;
3927 LIST_ADDQ(&h2c->send_list, &h2s->list);
3928 }
Willy Tarreaub2e290a2018-03-30 17:35:38 +02003929 }
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003930 /* let the handler know we want to shutw */
3931 h2s->flags |= H2_SF_WANT_SHUTW;
Willy Tarreau7838a792019-08-12 18:42:03 +02003932 TRACE_LEAVE(H2_EV_STRM_SHUT, h2c->conn, h2s);
Willy Tarreau88bdba32019-05-13 18:17:53 +02003933 return;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003934}
3935
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02003936/* This is the tasklet referenced in h2s->wait_event.tasklet, it is used for
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003937 * deferred shutdowns when the h2_detach() was done but the mux buffer was full
3938 * and prevented the last frame from being emitted.
3939 */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003940static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state)
3941{
3942 struct h2s *h2s = ctx;
Willy Tarreau88bdba32019-05-13 18:17:53 +02003943 struct h2c *h2c = h2s->h2c;
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003944
Willy Tarreau7838a792019-08-12 18:42:03 +02003945 TRACE_ENTER(H2_EV_STRM_SHUT, h2c->conn, h2s);
3946
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003947 LIST_DEL_INIT(&h2s->sending_list);
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003948 if (h2s->flags & H2_SF_WANT_SHUTW)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003949 h2_do_shutw(h2s);
3950
Willy Tarreau2c249eb2019-05-13 18:06:17 +02003951 if (h2s->flags & H2_SF_WANT_SHUTR)
Willy Tarreau88bdba32019-05-13 18:17:53 +02003952 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003953
Willy Tarreau88bdba32019-05-13 18:17:53 +02003954 if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) {
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003955 /* We're done trying to send, remove ourself from the send_list */
Olivier Houchardafc7cb82019-03-25 14:08:01 +01003956 LIST_DEL_INIT(&h2s->list);
Olivier Houchard7a977432019-03-21 15:47:13 +01003957
Willy Tarreau88bdba32019-05-13 18:17:53 +02003958 if (!h2s->cs) {
3959 h2s_destroy(h2s);
3960 if (h2c_is_dead(h2c))
3961 h2_release(h2c);
3962 }
Olivier Houchard7a977432019-03-21 15:47:13 +01003963 }
3964
Willy Tarreau7838a792019-08-12 18:42:03 +02003965 TRACE_LEAVE(H2_EV_STRM_SHUT);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003966 return NULL;
Willy Tarreau62f52692017-10-08 23:01:42 +02003967}
3968
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003969/* shutr() called by the conn_stream (mux_ops.shutr) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003970static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
3971{
3972 struct h2s *h2s = cs->ctx;
3973
Willy Tarreau7838a792019-08-12 18:42:03 +02003974 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003975 if (cs->flags & CS_FL_KILL_CONN)
3976 h2s->flags |= H2_SF_KILL_CONN;
3977
Willy Tarreau7838a792019-08-12 18:42:03 +02003978 if (mode)
3979 h2_do_shutr(h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003980
Willy Tarreau7838a792019-08-12 18:42:03 +02003981 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003982}
3983
Willy Tarreau749f5ca2019-03-21 19:19:36 +01003984/* shutw() called by the conn_stream (mux_ops.shutw) */
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003985static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
3986{
3987 struct h2s *h2s = cs->ctx;
3988
Willy Tarreau7838a792019-08-12 18:42:03 +02003989 TRACE_ENTER(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Willy Tarreau3cf69fe2019-05-14 10:44:40 +02003990 if (cs->flags & CS_FL_KILL_CONN)
3991 h2s->flags |= H2_SF_KILL_CONN;
3992
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003993 h2_do_shutw(h2s);
Willy Tarreau7838a792019-08-12 18:42:03 +02003994 TRACE_LEAVE(H2_EV_STRM_SHUT, h2s->h2c->conn, h2s);
Olivier Houchard8ae735d2018-09-11 18:24:28 +02003995}
3996
Christopher Faulet9b79a102019-07-15 11:22:56 +02003997/* Decode the payload of a HEADERS frame and produce the HTX request or response
3998 * depending on the connection's side. Returns a positive value on success, a
3999 * negative value on failure, or 0 if it couldn't proceed. May report connection
4000 * errors in h2c->errcode if the frame is non-decodable and the connection
4001 * unrecoverable. In absence of connection error when a failure is reported, the
4002 * caller must assume a stream error.
Willy Tarreauea18f862018-12-22 20:19:26 +01004003 *
4004 * The function may fold CONTINUATION frames into the initial HEADERS frame
4005 * by removing padding and next frame header, then moving the CONTINUATION
4006 * frame's payload and adjusting h2c->dfl to match the new aggregated frame,
4007 * leaving a hole between the main frame and the beginning of the next one.
4008 * The possibly remaining incomplete or next frame at the end may be moved
4009 * if the aggregated frame is not deleted, in order to fill the hole. Wrapped
4010 * HEADERS frames are unwrapped into a temporary buffer before decoding.
4011 *
4012 * A buffer at the beginning of processing may look like this :
4013 *
4014 * ,---.---------.-----.--------------.--------------.------.---.
4015 * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///|
4016 * `---^---------^-----^--------------^--------------^------^---'
4017 * | | <-----> | |
4018 * area | dpl | wrap
4019 * |<--------------> |
4020 * | dfl |
4021 * |<-------------------------------------------------->|
4022 * head data
4023 *
4024 * Padding is automatically overwritten when folding, participating to the
4025 * hole size after dfl :
4026 *
4027 * ,---.------------------------.-----.--------------.------.---.
4028 * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///|
4029 * `---^------------------------^-----^--------------^------^---'
4030 * | | <-----> | |
4031 * area | hole | wrap
4032 * |<-----------------------> |
4033 * | dfl |
4034 * |<-------------------------------------------------->|
4035 * head data
4036 *
4037 * Please note that the HEADERS frame is always deprived from its PADLEN byte
4038 * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY
4039 * bit.
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004040 *
4041 * The <flags> field must point to either the stream's flags or to a copy of it
4042 * so that the function can update the following flags :
4043 * - H2_SF_DATA_CLEN when content-length is seen
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004044 * - H2_SF_HEADERS_RCVD once the frame is successfully decoded
Willy Tarreau88d138e2019-01-02 19:38:14 +01004045 *
4046 * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to
4047 * decoding, in order to detect if we're dealing with a headers or a trailers
4048 * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen).
Willy Tarreau13278b42017-10-13 19:23:14 +02004049 */
Willy Tarreau4790f7c2019-01-24 11:33:02 +01004050static 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 +02004051{
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004052 const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf);
Willy Tarreau83061a82018-07-13 11:56:34 +02004053 struct buffer *tmp = get_trash_chunk();
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004054 struct http_hdr list[global.tune.max_http_hdr * 2];
Willy Tarreau83061a82018-07-13 11:56:34 +02004055 struct buffer *copy = NULL;
Willy Tarreau174b06a2018-04-25 18:13:58 +02004056 unsigned int msgf;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004057 struct htx *htx = NULL;
Willy Tarreauea18f862018-12-22 20:19:26 +01004058 int flen; // header frame len
4059 int hole = 0;
Willy Tarreau86277d42019-01-02 15:36:11 +01004060 int ret = 0;
4061 int outlen;
Willy Tarreau13278b42017-10-13 19:23:14 +02004062 int wrap;
Willy Tarreau13278b42017-10-13 19:23:14 +02004063
Willy Tarreau7838a792019-08-12 18:42:03 +02004064 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
4065
Willy Tarreauea18f862018-12-22 20:19:26 +01004066next_frame:
4067 if (b_data(&h2c->dbuf) - hole < h2c->dfl)
4068 goto leave; // incomplete input frame
4069
4070 /* No END_HEADERS means there's one or more CONTINUATION frames. In
4071 * this case, we'll try to paste it immediately after the initial
4072 * HEADERS frame payload and kill any possible padding. The initial
4073 * frame's length will be increased to represent the concatenation
4074 * of the two frames. The next frame is read from position <tlen>
4075 * and written at position <flen> (minus padding if some is present).
4076 */
4077 if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) {
4078 struct h2_fh hdr;
4079 int clen; // CONTINUATION frame's payload length
4080
Willy Tarreau7838a792019-08-12 18:42:03 +02004081 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 +01004082 if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) {
4083 /* no more data, the buffer may be full, either due to
4084 * too large a frame or because of too large a hole that
4085 * we're going to compact at the end.
4086 */
4087 goto leave;
4088 }
4089
4090 if (hdr.ft != H2_FT_CONTINUATION) {
4091 /* RFC7540#6.10: frame of unexpected type */
Willy Tarreau7838a792019-08-12 18:42:03 +02004092 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 +01004093 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
4094 goto fail;
4095 }
4096
4097 if (hdr.sid != h2c->dsi) {
4098 /* RFC7540#6.10: frame of different stream */
Willy Tarreau7838a792019-08-12 18:42:03 +02004099 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 +01004100 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
4101 goto fail;
4102 }
4103
4104 if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) {
4105 /* RFC7540#4.2: invalid frame length */
Willy Tarreau7838a792019-08-12 18:42:03 +02004106 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 +01004107 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4108 goto fail;
4109 }
4110
4111 /* detect when we must stop aggragating frames */
4112 h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS;
4113
4114 /* Take as much as we can of the CONTINUATION frame's payload */
4115 clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9);
4116 if (clen > hdr.len)
4117 clen = hdr.len;
4118
4119 /* Move the frame's payload over the padding, hole and frame
4120 * header. At least one of hole or dpl is null (see diagrams
4121 * above). The hole moves after the new aggragated frame.
4122 */
4123 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole + 9), clen, -(h2c->dpl + hole + 9));
4124 h2c->dfl += clen - h2c->dpl;
4125 hole += h2c->dpl + 9;
4126 h2c->dpl = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004127 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 +01004128 goto next_frame;
4129 }
4130
4131 flen = h2c->dfl - h2c->dpl;
Willy Tarreau68472622017-12-11 18:36:37 +01004132
Willy Tarreau13278b42017-10-13 19:23:14 +02004133 /* if the input buffer wraps, take a temporary copy of it (rare) */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004134 wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf);
Willy Tarreau13278b42017-10-13 19:23:14 +02004135 if (wrap < h2c->dfl) {
Willy Tarreau68dd9852017-07-03 14:44:26 +02004136 copy = alloc_trash_chunk();
4137 if (!copy) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004138 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 +02004139 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
4140 goto fail;
4141 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004142 memcpy(copy->area, b_head(&h2c->dbuf), wrap);
4143 memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap);
4144 hdrs = (uint8_t *) copy->area;
Willy Tarreau13278b42017-10-13 19:23:14 +02004145 }
4146
Willy Tarreau13278b42017-10-13 19:23:14 +02004147 /* Skip StreamDep and weight for now (we don't support PRIORITY) */
4148 if (h2c->dff & H2_F_HEADERS_PRIORITY) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004149 if (read_n32(hdrs) == h2c->dsi) {
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004150 /* RFC7540#5.3.1 : stream dep may not depend on itself */
Willy Tarreau7838a792019-08-12 18:42:03 +02004151 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 +01004152 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
Willy Tarreaua0d11b62018-09-05 18:30:05 +02004153 goto fail;
Willy Tarreau18b86cd2017-12-03 19:24:50 +01004154 }
4155
Willy Tarreaua01f45e2018-12-31 07:41:24 +01004156 if (flen < 5) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004157 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 +01004158 h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR);
4159 goto fail;
4160 }
4161
Willy Tarreau13278b42017-10-13 19:23:14 +02004162 hdrs += 5; // stream dep = 4, weight = 1
4163 flen -= 5;
4164 }
4165
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004166 if (!h2_get_buf(h2c, rxbuf)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004167 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 +01004168 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau86277d42019-01-02 15:36:11 +01004169 goto leave;
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004170 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004171
Willy Tarreau937f7602018-02-26 15:22:17 +01004172 /* we can't retry a failed decompression operation so we must be very
4173 * careful not to take any risks. In practice the output buffer is
4174 * always empty except maybe for trailers, in which case we simply have
4175 * to wait for the upper layer to finish consuming what is available.
4176 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004177 htx = htx_from_buf(rxbuf);
4178 if (!htx_is_empty(htx)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004179 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 +02004180 h2c->flags |= H2_CF_DEM_SFULL;
4181 goto leave;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004182 }
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004183
Willy Tarreau25919232019-01-03 14:48:18 +01004184 /* past this point we cannot roll back in case of error */
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004185 outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list,
4186 sizeof(list)/sizeof(list[0]), tmp);
4187 if (outlen < 0) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004188 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 +01004189 h2c_error(h2c, H2_ERR_COMPRESSION_ERROR);
4190 goto fail;
4191 }
4192
Willy Tarreau25919232019-01-03 14:48:18 +01004193 /* The PACK decompressor was updated, let's update the input buffer and
4194 * the parser's state to commit these changes and allow us to later
4195 * fail solely on the stream if needed.
4196 */
4197 b_del(&h2c->dbuf, h2c->dfl + hole);
4198 h2c->dfl = hole = 0;
4199 h2c->st0 = H2_CS_FRAME_H;
4200
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004201 /* OK now we have our header list in <list> */
Willy Tarreau880f5802019-01-03 08:10:14 +01004202 msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY;
Willy Tarreaubd4a6b62018-11-27 09:29:36 +01004203
Willy Tarreau88d138e2019-01-02 19:38:14 +01004204 if (*flags & H2_SF_HEADERS_RCVD)
4205 goto trailers;
4206
4207 /* This is the first HEADERS frame so it's a headers block */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004208 if (h2c->flags & H2_CF_IS_BACK)
4209 outlen = h2_make_htx_response(list, htx, &msgf, body_len);
4210 else
4211 outlen = h2_make_htx_request(list, htx, &msgf, body_len);
Willy Tarreau59a10fb2017-11-21 20:03:02 +01004212
4213 if (outlen < 0) {
Willy Tarreau25919232019-01-03 14:48:18 +01004214 /* too large headers? this is a stream error only */
Willy Tarreau7838a792019-08-12 18:42:03 +02004215 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 +01004216 goto fail;
4217 }
Willy Tarreau13278b42017-10-13 19:23:14 +02004218
Willy Tarreau174b06a2018-04-25 18:13:58 +02004219 if (msgf & H2_MSGF_BODY) {
4220 /* a payload is present */
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004221 if (msgf & H2_MSGF_BODY_CL) {
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004222 *flags |= H2_SF_DATA_CLEN;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004223 htx->extra = *body_len;
Christopher Fauleteaf0d2a2019-02-18 16:04:35 +01004224 }
Willy Tarreau174b06a2018-04-25 18:13:58 +02004225 }
4226
Willy Tarreau88d138e2019-01-02 19:38:14 +01004227 done:
Christopher Faulet0b465482019-02-19 15:14:23 +01004228 /* indicate that a HEADERS frame was received for this stream, except
4229 * for 1xx responses. For 1xx responses, another HEADERS frame is
4230 * expected.
4231 */
4232 if (!(msgf & H2_MSGF_RSP_1XX))
4233 *flags |= H2_SF_HEADERS_RCVD;
Willy Tarreau6cc85a52019-01-02 15:49:20 +01004234
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02004235 if ((h2c->dff & H2_F_HEADERS_END_STREAM)) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02004236 /* Mark the end of message using EOM */
Willy Tarreau7838a792019-08-12 18:42:03 +02004237 if (!htx_add_endof(htx, HTX_BLK_EOM)) {
4238 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 +02004239 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004240 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004241 }
Willy Tarreau937f7602018-02-26 15:22:17 +01004242
Willy Tarreau86277d42019-01-02 15:36:11 +01004243 /* success */
4244 ret = 1;
4245
Willy Tarreau68dd9852017-07-03 14:44:26 +02004246 leave:
Willy Tarreau86277d42019-01-02 15:36:11 +01004247 /* If there is a hole left and it's not at the end, we are forced to
Willy Tarreauea18f862018-12-22 20:19:26 +01004248 * move the remaining data over it.
4249 */
4250 if (hole) {
4251 if (b_data(&h2c->dbuf) > h2c->dfl + hole)
4252 b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole),
4253 b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole);
4254 b_sub(&h2c->dbuf, hole);
4255 }
4256
Willy Tarreau97215ca2019-04-29 10:20:21 +02004257 if (b_full(&h2c->dbuf) && h2c->dfl >= b_data(&h2c->dbuf)) {
Willy Tarreauea18f862018-12-22 20:19:26 +01004258 /* too large frames */
4259 h2c_error(h2c, H2_ERR_INTERNAL_ERROR);
Willy Tarreau86277d42019-01-02 15:36:11 +01004260 ret = -1;
Willy Tarreauea18f862018-12-22 20:19:26 +01004261 }
4262
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004263 if (htx)
Willy Tarreau5c8cafa2018-12-23 11:30:42 +01004264 htx_to_buf(htx, rxbuf);
Willy Tarreau68dd9852017-07-03 14:44:26 +02004265 free_trash_chunk(copy);
Willy Tarreau7838a792019-08-12 18:42:03 +02004266 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_HDR, h2c->conn);
Willy Tarreau86277d42019-01-02 15:36:11 +01004267 return ret;
4268
Willy Tarreau68dd9852017-07-03 14:44:26 +02004269 fail:
Willy Tarreau86277d42019-01-02 15:36:11 +01004270 ret = -1;
Willy Tarreau68dd9852017-07-03 14:44:26 +02004271 goto leave;
Willy Tarreau88d138e2019-01-02 19:38:14 +01004272
4273 trailers:
4274 /* This is the last HEADERS frame hence a trailer */
Willy Tarreau88d138e2019-01-02 19:38:14 +01004275 if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) {
4276 /* It's a trailer but it's missing ES flag */
Willy Tarreau7838a792019-08-12 18:42:03 +02004277 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 +01004278 h2c_error(h2c, H2_ERR_PROTOCOL_ERROR);
4279 goto fail;
4280 }
4281
Christopher Faulet9b79a102019-07-15 11:22:56 +02004282 /* Trailers terminate a DATA sequence */
Willy Tarreau7838a792019-08-12 18:42:03 +02004283 if (h2_make_htx_trailers(list, htx) <= 0) {
4284 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 +02004285 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004286 }
Willy Tarreau88d138e2019-01-02 19:38:14 +01004287 goto done;
Willy Tarreau13278b42017-10-13 19:23:14 +02004288}
4289
Christopher Faulet9b79a102019-07-15 11:22:56 +02004290/* Transfer the payload of a DATA frame to the HTTP/1 side. The HTTP/2 frame
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004291 * parser state is automatically updated. Returns > 0 if it could completely
4292 * send the current frame, 0 if it couldn't complete, in which case
4293 * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty
4294 * DATA frame can return 0 as a valid result). Stream errors are reported in
4295 * h2s->errcode and connection errors in h2c->errcode. The caller must already
4296 * have checked the frame header and ensured that the frame was complete or the
4297 * buffer full. It changes the frame state to FRAME_A once done.
Willy Tarreau454f9052017-10-26 19:40:35 +02004298 */
Willy Tarreau454b57b2018-02-26 15:50:05 +01004299static int h2_frt_transfer_data(struct h2s *h2s)
Willy Tarreau454f9052017-10-26 19:40:35 +02004300{
4301 struct h2c *h2c = h2s->h2c;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004302 int block;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004303 unsigned int flen = 0;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004304 struct htx *htx = NULL;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004305 struct buffer *csbuf;
Christopher Faulet9b79a102019-07-15 11:22:56 +02004306 unsigned int sent;
Willy Tarreau454f9052017-10-26 19:40:35 +02004307
Willy Tarreau7838a792019-08-12 18:42:03 +02004308 TRACE_ENTER(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
4309
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004310 h2c->flags &= ~H2_CF_DEM_SFULL;
Willy Tarreau454f9052017-10-26 19:40:35 +02004311
Olivier Houchard638b7992018-08-16 15:41:52 +02004312 csbuf = h2_get_buf(h2c, &h2s->rxbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004313 if (!csbuf) {
4314 h2c->flags |= H2_CF_DEM_SALLOC;
Willy Tarreau7838a792019-08-12 18:42:03 +02004315 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 +01004316 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004317 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004318 htx = htx_from_buf(csbuf);
Willy Tarreaud755ea62018-02-26 15:44:54 +01004319
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004320try_again:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004321 flen = h2c->dfl - h2c->dpl;
4322 if (!flen)
Willy Tarreau4a28da12018-01-04 14:41:00 +01004323 goto end_transfer;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004324
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004325 if (flen > b_data(&h2c->dbuf)) {
4326 flen = b_data(&h2c->dbuf);
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004327 if (!flen)
Willy Tarreau454b57b2018-02-26 15:50:05 +01004328 goto fail;
Willy Tarreaud755ea62018-02-26 15:44:54 +01004329 }
4330
Christopher Faulet9b79a102019-07-15 11:22:56 +02004331 block = htx_free_data_space(htx);
4332 if (!block) {
4333 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004334 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 +02004335 goto fail;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004336 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02004337 if (flen > block)
4338 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004339
Christopher Faulet9b79a102019-07-15 11:22:56 +02004340 /* here, flen is the max we can copy into the output buffer */
4341 block = b_contig_data(&h2c->dbuf, 0);
4342 if (flen > block)
4343 flen = block;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004344
Christopher Faulet9b79a102019-07-15 11:22:56 +02004345 sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen));
Willy Tarreau7838a792019-08-12 18:42:03 +02004346 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 +02004347
Christopher Faulet9b79a102019-07-15 11:22:56 +02004348 b_del(&h2c->dbuf, sent);
4349 h2c->dfl -= sent;
4350 h2c->rcvd_c += sent;
4351 h2c->rcvd_s += sent; // warning, this can also affect the closed streams!
Willy Tarreau454f9052017-10-26 19:40:35 +02004352
Christopher Faulet9b79a102019-07-15 11:22:56 +02004353 if (h2s->flags & H2_SF_DATA_CLEN) {
4354 h2s->body_len -= sent;
4355 htx->extra = h2s->body_len;
Willy Tarreaueba10f22018-04-25 20:44:22 +02004356 }
4357
Christopher Faulet9b79a102019-07-15 11:22:56 +02004358 if (sent < flen) {
Willy Tarreaud755ea62018-02-26 15:44:54 +01004359 h2c->flags |= H2_CF_DEM_SFULL;
Willy Tarreau7838a792019-08-12 18:42:03 +02004360 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 +01004361 goto fail;
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004362 }
4363
Christopher Faulet9b79a102019-07-15 11:22:56 +02004364 goto try_again;
4365
Willy Tarreau4a28da12018-01-04 14:41:00 +01004366 end_transfer:
Willy Tarreau8fc016d2017-12-11 18:27:15 +01004367 /* here we're done with the frame, all the payload (except padding) was
4368 * transferred.
4369 */
Willy Tarreaueba10f22018-04-25 20:44:22 +02004370
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004371 if (h2c->dff & H2_F_DATA_END_STREAM) {
Christopher Faulet9b79a102019-07-15 11:22:56 +02004372 if (!htx_add_endof(htx, HTX_BLK_EOM)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004373 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 +02004374 h2c->flags |= H2_CF_DEM_SFULL;
4375 goto fail;
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004376 }
Willy Tarreaueba10f22018-04-25 20:44:22 +02004377 }
4378
Willy Tarreaud1023bb2018-03-22 16:53:12 +01004379 h2c->rcvd_c += h2c->dpl;
4380 h2c->rcvd_s += h2c->dpl;
4381 h2c->dpl = 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004382 h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update
Christopher Faulet9b79a102019-07-15 11:22:56 +02004383 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02004384 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau61ea7dc2018-12-01 23:23:04 +01004385 return 1;
Willy Tarreau454b57b2018-02-26 15:50:05 +01004386 fail:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004387 if (htx)
4388 htx_to_buf(htx, csbuf);
Willy Tarreau7838a792019-08-12 18:42:03 +02004389 TRACE_LEAVE(H2_EV_RX_FRAME|H2_EV_RX_DATA, h2c->conn, h2s);
Willy Tarreau454b57b2018-02-26 15:50:05 +01004390 return 0;
Willy Tarreau454f9052017-10-26 19:40:35 +02004391}
4392
Willy Tarreau115e83b2018-12-01 19:17:53 +01004393/* Try to send a HEADERS frame matching HTX response present in HTX message
4394 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4395 * must check the stream's status to detect any error which might have happened
4396 * subsequently to a successful send. The htx blocks are automatically removed
4397 * from the message. The htx message is assumed to be valid since produced from
4398 * the internal code, hence it contains a start line, an optional series of
4399 * header blocks and an end of header, otherwise an invalid frame could be
4400 * emitted and the resulting htx message could be left in an inconsistent state.
4401 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004402static size_t h2s_frt_make_resp_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004403{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004404 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau115e83b2018-12-01 19:17:53 +01004405 struct h2c *h2c = h2s->h2c;
4406 struct htx_blk *blk;
4407 struct htx_blk *blk_end;
4408 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004409 struct buffer *mbuf;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004410 struct htx_sl *sl;
4411 enum htx_blk_type type;
4412 int es_now = 0;
4413 int ret = 0;
4414 int hdr;
4415 int idx;
4416
Willy Tarreau7838a792019-08-12 18:42:03 +02004417 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
4418
Willy Tarreau115e83b2018-12-01 19:17:53 +01004419 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004420 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004421 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02004422 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004423 return 0;
4424 }
4425
Willy Tarreau115e83b2018-12-01 19:17:53 +01004426 /* determine the first block which must not be deleted, blk_end may
4427 * be NULL if all blocks have to be deleted.
4428 */
4429 idx = htx_get_head(htx);
4430 blk_end = NULL;
4431 while (idx != -1) {
4432 type = htx_get_blk_type(htx_get_blk(htx, idx));
4433 idx = htx_get_next(htx, idx);
4434 if (type == HTX_BLK_EOH) {
4435 if (idx != -1)
4436 blk_end = htx_get_blk(htx, idx);
4437 break;
4438 }
4439 }
4440
4441 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004442 blk = htx_get_head_blk(htx);
4443 BUG_ON(htx_get_blk_type(blk) != HTX_BLK_RES_SL);
4444 ALREADY_CHECKED(blk);
4445 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004446 h2s->status = sl->info.res.status;
Willy Tarreau7838a792019-08-12 18:42:03 +02004447 if (h2s->status < 100 || h2s->status > 999) {
4448 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 +01004449 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004450 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004451
4452 /* and the rest of the headers, that we dump starting at header 0 */
4453 hdr = 0;
4454
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004455 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau115e83b2018-12-01 19:17:53 +01004456 while ((idx = htx_get_next(htx, idx)) != -1) {
4457 blk = htx_get_blk(htx, idx);
4458 type = htx_get_blk_type(blk);
4459
4460 if (type == HTX_BLK_UNUSED)
4461 continue;
4462
4463 if (type != HTX_BLK_HDR)
4464 break;
4465
Willy Tarreau7838a792019-08-12 18:42:03 +02004466 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
4467 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 +01004468 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004469 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004470
4471 list[hdr].n = htx_get_blk_name(htx, blk);
4472 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004473 hdr++;
4474 }
4475
4476 /* marker for end of headers */
4477 list[hdr].n = ist("");
4478
4479 if (h2s->status == 204 || h2s->status == 304) {
4480 /* no contents, claim c-len is present and set to zero */
4481 es_now = 1;
4482 }
4483
Willy Tarreau9c218e72019-05-26 10:08:28 +02004484 mbuf = br_tail(h2c->mbuf);
4485 retry:
4486 if (!h2_get_buf(h2c, mbuf)) {
4487 h2c->flags |= H2_CF_MUX_MALLOC;
4488 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02004489 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 +02004490 return 0;
4491 }
4492
Willy Tarreau115e83b2018-12-01 19:17:53 +01004493 chunk_reset(&outbuf);
4494
4495 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004496 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4497 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004498 break;
4499 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004500 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau115e83b2018-12-01 19:17:53 +01004501 }
4502
4503 if (outbuf.size < 9)
4504 goto full;
4505
4506 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4507 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4508 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4509 outbuf.data = 9;
4510
4511 /* encode status, which necessarily is the first one */
Willy Tarreauaafdf582018-12-10 18:06:40 +01004512 if (!hpack_encode_int_status(&outbuf, h2s->status)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004513 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004514 goto realign_again;
4515 goto full;
4516 }
4517
4518 /* encode all headers, stop at empty name */
4519 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4520 /* these ones do not exist in H2 and must be dropped. */
4521 if (isteq(list[hdr].n, ist("connection")) ||
4522 isteq(list[hdr].n, ist("proxy-connection")) ||
4523 isteq(list[hdr].n, ist("keep-alive")) ||
4524 isteq(list[hdr].n, ist("upgrade")) ||
4525 isteq(list[hdr].n, ist("transfer-encoding")))
4526 continue;
4527
Christopher Faulet86d144c2019-08-14 16:32:25 +02004528 /* Skip all pseudo-headers */
4529 if (*(list[hdr].n.ptr) == ':')
4530 continue;
4531
Willy Tarreau115e83b2018-12-01 19:17:53 +01004532 if (isteq(list[hdr].n, ist("")))
4533 break; // end
4534
4535 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4536 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004537 if (b_space_wraps(mbuf))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004538 goto realign_again;
4539 goto full;
4540 }
4541 }
4542
Christopher Faulet0b465482019-02-19 15:14:23 +01004543 /* we may need to add END_STREAM except for 1xx responses.
Willy Tarreau115e83b2018-12-01 19:17:53 +01004544 * FIXME: we should also set it when we know for sure that the
4545 * content-length is zero as well as on 204/304
4546 */
Christopher Faulet0b465482019-02-19 15:14:23 +01004547 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM &&
4548 (h2s->status >= 200 || h2s->status == 101))
Willy Tarreau115e83b2018-12-01 19:17:53 +01004549 es_now = 1;
4550
Willy Tarreau927b88b2019-03-04 08:03:25 +01004551 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau115e83b2018-12-01 19:17:53 +01004552 es_now = 1;
4553
4554 /* update the frame's size */
4555 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4556
4557 if (es_now)
4558 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
4559
4560 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02004561 TRACE_USER("sent H2 response", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
Willy Tarreaubcc45952019-05-26 10:05:50 +02004562 b_add(mbuf, outbuf.data);
Christopher Faulet0b465482019-02-19 15:14:23 +01004563
4564 /* indicates the HEADERS frame was sent, except for 1xx responses. For
4565 * 1xx responses, another HEADERS frame is expected.
4566 */
4567 if (h2s->status >= 200 || h2s->status == 101)
4568 h2s->flags |= H2_SF_HEADERS_SENT;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004569
Willy Tarreau115e83b2018-12-01 19:17:53 +01004570 if (es_now) {
4571 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02004572 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 +01004573 if (h2s->st == H2_SS_OPEN)
4574 h2s->st = H2_SS_HLOC;
4575 else
4576 h2s_close(h2s);
4577 }
4578
4579 /* OK we could properly deliver the response */
4580
4581 /* remove all header blocks including the EOH and compute the
4582 * corresponding size.
4583 *
4584 * FIXME: We should remove everything when es_now is set.
4585 */
4586 ret = 0;
4587 idx = htx_get_head(htx);
4588 blk = htx_get_blk(htx, idx);
4589 while (blk != blk_end) {
4590 ret += htx_get_blksz(blk);
4591 blk = htx_remove_blk(htx, blk);
4592 }
Willy Tarreauc5753ae2018-12-02 12:28:01 +01004593
Christopher Faulet316934d2019-05-15 14:22:48 +02004594 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
4595 ret += htx_get_blksz(blk_end);
Willy Tarreauc5753ae2018-12-02 12:28:01 +01004596 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02004597 }
Willy Tarreau115e83b2018-12-01 19:17:53 +01004598 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02004599 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau115e83b2018-12-01 19:17:53 +01004600 return ret;
4601 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004602 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4603 goto retry;
Willy Tarreau115e83b2018-12-01 19:17:53 +01004604 h2c->flags |= H2_CF_MUX_MFULL;
4605 h2s->flags |= H2_SF_BLK_MROOM;
4606 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004607 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 +01004608 goto end;
4609 fail:
4610 /* unparsable HTX messages, too large ones to be produced in the local
4611 * list etc go here (unrecoverable errors).
4612 */
4613 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4614 ret = 0;
4615 goto end;
4616}
4617
Willy Tarreau80739692018-10-05 11:35:57 +02004618/* Try to send a HEADERS frame matching HTX request present in HTX message
4619 * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller
4620 * must check the stream's status to detect any error which might have happened
4621 * subsequently to a successful send. The htx blocks are automatically removed
4622 * from the message. The htx message is assumed to be valid since produced from
4623 * the internal code, hence it contains a start line, an optional series of
4624 * header blocks and an end of header, otherwise an invalid frame could be
4625 * emitted and the resulting htx message could be left in an inconsistent state.
4626 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004627static size_t h2s_bck_make_req_headers(struct h2s *h2s, struct htx *htx)
Willy Tarreau80739692018-10-05 11:35:57 +02004628{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02004629 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau80739692018-10-05 11:35:57 +02004630 struct h2c *h2c = h2s->h2c;
4631 struct htx_blk *blk;
4632 struct htx_blk *blk_end;
4633 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004634 struct buffer *mbuf;
Willy Tarreau80739692018-10-05 11:35:57 +02004635 struct htx_sl *sl;
Willy Tarreau053c1572019-02-01 16:13:59 +01004636 struct ist meth, path, auth;
Willy Tarreau80739692018-10-05 11:35:57 +02004637 enum htx_blk_type type;
4638 int es_now = 0;
4639 int ret = 0;
4640 int hdr;
4641 int idx;
4642
Willy Tarreau7838a792019-08-12 18:42:03 +02004643 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
4644
Willy Tarreau80739692018-10-05 11:35:57 +02004645 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004646 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02004647 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02004648 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau80739692018-10-05 11:35:57 +02004649 return 0;
4650 }
4651
Willy Tarreau80739692018-10-05 11:35:57 +02004652 /* determine the first block which must not be deleted, blk_end may
4653 * be NULL if all blocks have to be deleted.
4654 */
4655 idx = htx_get_head(htx);
4656 blk_end = NULL;
4657 while (idx != -1) {
4658 type = htx_get_blk_type(htx_get_blk(htx, idx));
4659 idx = htx_get_next(htx, idx);
4660 if (type == HTX_BLK_EOH) {
4661 if (idx != -1)
4662 blk_end = htx_get_blk(htx, idx);
4663 break;
4664 }
4665 }
4666
4667 /* get the start line, we do have one */
Christopher Fauletb77a1d22019-05-13 11:55:10 +02004668 blk = htx_get_head_blk(htx);
4669 BUG_ON(htx_get_blk_type(blk) != HTX_BLK_REQ_SL);
4670 ALREADY_CHECKED(blk);
4671 sl = htx_get_blk_ptr(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02004672 meth = htx_sl_req_meth(sl);
4673 path = htx_sl_req_uri(sl);
4674
4675 /* and the rest of the headers, that we dump starting at header 0 */
4676 hdr = 0;
4677
Willy Tarreau8e162ee2018-12-06 14:07:27 +01004678 idx = htx_get_head(htx); // returns the SL that we skip
Willy Tarreau80739692018-10-05 11:35:57 +02004679 while ((idx = htx_get_next(htx, idx)) != -1) {
4680 blk = htx_get_blk(htx, idx);
4681 type = htx_get_blk_type(blk);
4682
4683 if (type == HTX_BLK_UNUSED)
4684 continue;
4685
4686 if (type != HTX_BLK_HDR)
4687 break;
4688
Willy Tarreau7838a792019-08-12 18:42:03 +02004689 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
4690 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 +02004691 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02004692 }
Willy Tarreau80739692018-10-05 11:35:57 +02004693
4694 list[hdr].n = htx_get_blk_name(htx, blk);
4695 list[hdr].v = htx_get_blk_value(htx, blk);
Willy Tarreau80739692018-10-05 11:35:57 +02004696 hdr++;
4697 }
4698
4699 /* marker for end of headers */
4700 list[hdr].n = ist("");
4701
Willy Tarreau9c218e72019-05-26 10:08:28 +02004702 mbuf = br_tail(h2c->mbuf);
4703 retry:
4704 if (!h2_get_buf(h2c, mbuf)) {
4705 h2c->flags |= H2_CF_MUX_MALLOC;
4706 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02004707 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 +02004708 return 0;
4709 }
4710
Willy Tarreau80739692018-10-05 11:35:57 +02004711 chunk_reset(&outbuf);
4712
4713 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004714 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
4715 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004716 break;
4717 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02004718 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau80739692018-10-05 11:35:57 +02004719 }
4720
4721 if (outbuf.size < 9)
4722 goto full;
4723
4724 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */
4725 memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5);
4726 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
4727 outbuf.data = 9;
4728
4729 /* encode the method, which necessarily is the first one */
Willy Tarreaubdabc3a2018-12-10 18:25:11 +01004730 if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004731 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004732 goto realign_again;
4733 goto full;
4734 }
4735
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004736 /* RFC7540 #8.3: the CONNECT method must have :
4737 * - :authority set to the URI part (host:port)
4738 * - :method set to CONNECT
4739 * - :scheme and :path omitted
4740 */
4741 if (sl->info.req.meth != HTTP_METH_CONNECT) {
4742 /* encode the scheme which is always "https" (or 0x86 for "http") */
Christopher Faulet3b44c542019-06-14 10:46:51 +02004743 struct ist scheme;
4744
4745 if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP))
4746 scheme = ist("http");
4747 else
4748 scheme = ist("https");
4749
4750 if (!hpack_encode_scheme(&outbuf, scheme)) {
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004751 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004752 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004753 goto realign_again;
4754 goto full;
4755 }
Willy Tarreau80739692018-10-05 11:35:57 +02004756
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004757 /* encode the path, which necessarily is the second one */
4758 if (!hpack_encode_path(&outbuf, path)) {
4759 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004760 if (b_space_wraps(mbuf))
Willy Tarreau5be92ff2019-02-01 15:51:59 +01004761 goto realign_again;
4762 goto full;
4763 }
Willy Tarreau053c1572019-02-01 16:13:59 +01004764
4765 /* look for the Host header and place it in :authority */
4766 auth = ist2(NULL, 0);
4767 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4768 if (isteq(list[hdr].n, ist("")))
4769 break; // end
4770
4771 if (isteq(list[hdr].n, ist("host"))) {
4772 auth = list[hdr].v;
4773 break;
4774 }
4775 }
4776 }
4777 else {
4778 /* for CONNECT, :authority is taken from the path */
4779 auth = path;
4780 }
4781
4782 if (auth.ptr && !hpack_encode_header(&outbuf, ist(":authority"), auth)) {
4783 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004784 if (b_space_wraps(mbuf))
Willy Tarreau053c1572019-02-01 16:13:59 +01004785 goto realign_again;
4786 goto full;
Willy Tarreau80739692018-10-05 11:35:57 +02004787 }
4788
4789 /* encode all headers, stop at empty name */
4790 for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) {
4791 /* these ones do not exist in H2 and must be dropped. */
4792 if (isteq(list[hdr].n, ist("connection")) ||
Willy Tarreau053c1572019-02-01 16:13:59 +01004793 isteq(list[hdr].n, ist("host")) ||
Willy Tarreau80739692018-10-05 11:35:57 +02004794 isteq(list[hdr].n, ist("proxy-connection")) ||
4795 isteq(list[hdr].n, ist("keep-alive")) ||
4796 isteq(list[hdr].n, ist("upgrade")) ||
4797 isteq(list[hdr].n, ist("transfer-encoding")))
4798 continue;
4799
Christopher Faulet86d144c2019-08-14 16:32:25 +02004800 /* Skip all pseudo-headers */
4801 if (*(list[hdr].n.ptr) == ':')
4802 continue;
4803
Willy Tarreau80739692018-10-05 11:35:57 +02004804 if (isteq(list[hdr].n, ist("")))
4805 break; // end
4806
4807 if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) {
4808 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004809 if (b_space_wraps(mbuf))
Willy Tarreau80739692018-10-05 11:35:57 +02004810 goto realign_again;
4811 goto full;
4812 }
4813 }
4814
4815 /* we may need to add END_STREAM if we have no body :
4816 * - request already closed, or :
4817 * - no transfer-encoding, and :
4818 * - no content-length or content-length:0
4819 * Fixme: this doesn't take into account CONNECT requests.
4820 */
4821 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM)
4822 es_now = 1;
4823
4824 if (sl->flags & HTX_SL_F_BODYLESS)
4825 es_now = 1;
4826
Willy Tarreau927b88b2019-03-04 08:03:25 +01004827 if (!h2s->cs || h2s->cs->flags & CS_FL_SHW)
Willy Tarreau80739692018-10-05 11:35:57 +02004828 es_now = 1;
4829
4830 /* update the frame's size */
4831 h2_set_frame_size(outbuf.area, outbuf.data - 9);
4832
4833 if (es_now)
4834 outbuf.area[4] |= H2_F_HEADERS_END_STREAM;
4835
4836 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02004837 TRACE_USER("sent H2 request", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s, htx);
Willy Tarreaubcc45952019-05-26 10:05:50 +02004838 b_add(mbuf, outbuf.data);
Willy Tarreau80739692018-10-05 11:35:57 +02004839 h2s->flags |= H2_SF_HEADERS_SENT;
4840 h2s->st = H2_SS_OPEN;
4841
Willy Tarreau80739692018-10-05 11:35:57 +02004842 if (es_now) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004843 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 +02004844 // trim any possibly pending data (eg: inconsistent content-length)
4845 h2s->flags |= H2_SF_ES_SENT;
4846 h2s->st = H2_SS_HLOC;
4847 }
4848
4849 /* remove all header blocks including the EOH and compute the
4850 * corresponding size.
4851 *
4852 * FIXME: We should remove everything when es_now is set.
4853 */
4854 ret = 0;
4855 idx = htx_get_head(htx);
4856 blk = htx_get_blk(htx, idx);
4857 while (blk != blk_end) {
4858 ret += htx_get_blksz(blk);
4859 blk = htx_remove_blk(htx, blk);
4860 }
4861
Christopher Faulet316934d2019-05-15 14:22:48 +02004862 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
4863 ret += htx_get_blksz(blk_end);
Willy Tarreau80739692018-10-05 11:35:57 +02004864 htx_remove_blk(htx, blk_end);
Christopher Faulet316934d2019-05-15 14:22:48 +02004865 }
Willy Tarreau80739692018-10-05 11:35:57 +02004866
4867 end:
4868 return ret;
4869 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02004870 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4871 goto retry;
Willy Tarreau80739692018-10-05 11:35:57 +02004872 h2c->flags |= H2_CF_MUX_MFULL;
4873 h2s->flags |= H2_SF_BLK_MROOM;
4874 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02004875 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 +02004876 goto end;
4877 fail:
4878 /* unparsable HTX messages, too large ones to be produced in the local
4879 * list etc go here (unrecoverable errors).
4880 */
4881 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
4882 ret = 0;
4883 goto end;
4884}
4885
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004886/* Try to send a DATA frame matching HTTP response present in HTX structure
Willy Tarreau98de12a2018-12-12 07:03:00 +01004887 * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The
4888 * caller must check the stream's status to detect any error which might have
4889 * happened subsequently to a successful send. Returns the number of data bytes
Christopher Faulet54b5e212019-06-04 10:08:28 +02004890 * consumed, or zero if nothing done. Note that EOM count for 1 byte.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004891 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02004892static size_t h2s_frt_make_resp_data(struct h2s *h2s, struct buffer *buf, size_t count)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004893{
4894 struct h2c *h2c = h2s->h2c;
Willy Tarreau98de12a2018-12-12 07:03:00 +01004895 struct htx *htx;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004896 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02004897 struct buffer *mbuf;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004898 size_t total = 0;
4899 int es_now = 0;
4900 int bsize; /* htx block size */
4901 int fsize; /* h2 frame size */
4902 struct htx_blk *blk;
4903 enum htx_blk_type type;
4904 int idx;
4905
Willy Tarreau7838a792019-08-12 18:42:03 +02004906 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
4907
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004908 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02004909 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004910 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02004911 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004912 goto end;
4913 }
4914
Willy Tarreau98de12a2018-12-12 07:03:00 +01004915 htx = htx_from_buf(buf);
4916
Christopher Faulet54b5e212019-06-04 10:08:28 +02004917 /* We only come here with HTX_BLK_DATA blocks. However, while looping,
4918 * we can meet an HTX_BLK_EOM block that we'll leave to the caller to
4919 * handle.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004920 */
4921
4922 new_frame:
Willy Tarreauee573762018-12-04 15:25:57 +01004923 if (!count || htx_is_empty(htx))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004924 goto end;
4925
4926 idx = htx_get_head(htx);
4927 blk = htx_get_blk(htx, idx);
Christopher Faulet54b5e212019-06-04 10:08:28 +02004928 type = htx_get_blk_type(blk); // DATA or EOM
Willy Tarreau0c535fd2018-12-01 19:25:56 +01004929 bsize = htx_get_blksz(blk);
4930 fsize = bsize;
4931
Christopher Faulet54b5e212019-06-04 10:08:28 +02004932 if (type == HTX_BLK_EOM) {
Willy Tarreau7eeb10a2019-01-04 09:28:17 +01004933 if (h2s->flags & H2_SF_ES_SENT) {
4934 /* ES already sent */
4935 htx_remove_blk(htx, blk);
4936 total++; // EOM counts as one byte
4937 count--;
4938 goto end;
4939 }
4940 }
4941 else if (type != HTX_BLK_DATA)
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01004942 goto end;
Willy Tarreau98de12a2018-12-12 07:03:00 +01004943
Willy Tarreau9c218e72019-05-26 10:08:28 +02004944 mbuf = br_tail(h2c->mbuf);
4945 retry:
4946 if (!h2_get_buf(h2c, mbuf)) {
4947 h2c->flags |= H2_CF_MUX_MALLOC;
4948 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02004949 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 +02004950 goto end;
4951 }
4952
Willy Tarreau98de12a2018-12-12 07:03:00 +01004953 /* Perform some optimizations to reduce the number of buffer copies.
4954 * First, if the mux's buffer is empty and the htx area contains
4955 * exactly one data block of the same size as the requested count, and
4956 * this count fits within the frame size, the stream's window size, and
4957 * the connection's window size, then it's possible to simply swap the
4958 * caller's buffer with the mux's output buffer and adjust offsets and
4959 * length to match the entire DATA HTX block in the middle. In this
4960 * case we perform a true zero-copy operation from end-to-end. This is
4961 * the situation that happens all the time with large files. Second, if
4962 * this is not possible, but the mux's output buffer is empty, we still
4963 * have an opportunity to avoid the copy to the intermediary buffer, by
4964 * making the intermediary buffer's area point to the output buffer's
4965 * area. In this case we want to skip the HTX header to make sure that
4966 * copies remain aligned and that this operation remains possible all
4967 * the time. This goes for headers, data blocks and any data extracted
4968 * from the HTX blocks.
4969 */
4970 if (unlikely(fsize == count &&
Christopher Faulet192c6a22019-06-11 16:32:24 +02004971 htx_nbblks(htx) == 1 && type == HTX_BLK_DATA &&
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02004972 fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02004973 void *old_area = mbuf->area;
Willy Tarreau98de12a2018-12-12 07:03:00 +01004974
Willy Tarreaubcc45952019-05-26 10:05:50 +02004975 if (b_data(mbuf)) {
Willy Tarreau8ab128c2019-03-21 17:47:28 +01004976 /* Too bad there are data left there. We're willing to memcpy/memmove
4977 * up to 1/4 of the buffer, which means that it's OK to copy a large
4978 * frame into a buffer containing few data if it needs to be realigned,
4979 * and that it's also OK to copy few data without realigning. Otherwise
4980 * we'll pretend the mbuf is full and wait for it to become empty.
Willy Tarreau98de12a2018-12-12 07:03:00 +01004981 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02004982 if (fsize + 9 <= b_room(mbuf) &&
4983 (b_data(mbuf) <= b_size(mbuf) / 4 ||
Willy Tarreau7838a792019-08-12 18:42:03 +02004984 (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) {
4985 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 +01004986 goto copy;
Willy Tarreau7838a792019-08-12 18:42:03 +02004987 }
Willy Tarreau8ab128c2019-03-21 17:47:28 +01004988
Willy Tarreau9c218e72019-05-26 10:08:28 +02004989 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
4990 goto retry;
4991
Willy Tarreau98de12a2018-12-12 07:03:00 +01004992 h2c->flags |= H2_CF_MUX_MFULL;
4993 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02004994 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 +01004995 goto end;
4996 }
4997
4998 /* map an H2 frame to the HTX block so that we can put the
4999 * frame header there.
5000 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005001 *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9);
5002 outbuf.area = b_head(mbuf);
Willy Tarreau98de12a2018-12-12 07:03:00 +01005003
5004 /* prepend an H2 DATA frame header just before the DATA block */
5005 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5006 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5007 h2_set_frame_size(outbuf.area, fsize);
5008
5009 /* update windows */
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005010 h2s->sws -= fsize;
Willy Tarreau98de12a2018-12-12 07:03:00 +01005011 h2c->mws -= fsize;
5012
5013 /* and exchange with our old area */
5014 buf->area = old_area;
5015 buf->data = buf->head = 0;
5016 total += fsize;
Willy Tarreau7838a792019-08-12 18:42:03 +02005017
5018 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 +01005019 goto end;
5020 }
Willy Tarreau2fb1d4c2018-12-04 15:28:03 +01005021
Willy Tarreau98de12a2018-12-12 07:03:00 +01005022 copy:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005023 /* for DATA and EOM we'll have to emit a frame, even if empty */
5024
5025 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005026 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5027 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005028 break;
5029 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005030 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005031 }
5032
5033 if (outbuf.size < 9) {
Willy Tarreau9c218e72019-05-26 10:08:28 +02005034 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5035 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005036 h2c->flags |= H2_CF_MUX_MFULL;
5037 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005038 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005039 goto end;
5040 }
5041
5042 /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */
5043 memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5);
5044 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5045 outbuf.data = 9;
5046
5047 /* we have in <fsize> the exact number of bytes we need to copy from
5048 * the HTX buffer. We need to check this against the connection's and
5049 * the stream's send windows, and to ensure that this fits in the max
5050 * frame size and in the buffer's available space minus 9 bytes (for
5051 * the frame header). The connection's flow control is applied last so
5052 * that we can use a separate list of streams which are immediately
5053 * unblocked on window opening. Note: we don't implement padding.
5054 */
5055
5056 /* EOM is presented with bsize==1 but would lead to the emission of an
5057 * empty frame, thus we force it to zero here.
5058 */
5059 if (type == HTX_BLK_EOM)
5060 bsize = fsize = 0;
5061
5062 if (!fsize)
5063 goto send_empty;
5064
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005065 if (h2s_mws(h2s) <= 0) {
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005066 h2s->flags |= H2_SF_BLK_SFCTL;
Willy Tarreauc234ae32019-05-13 17:56:11 +02005067 if (LIST_ADDED(&h2s->list))
Olivier Houchardbfe2a832019-05-10 14:02:21 +02005068 LIST_DEL_INIT(&h2s->list);
Willy Tarreau7838a792019-08-12 18:42:03 +02005069 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 +01005070 goto end;
5071 }
5072
Willy Tarreauee573762018-12-04 15:25:57 +01005073 if (fsize > count)
5074 fsize = count;
5075
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005076 if (fsize > h2s_mws(h2s))
5077 fsize = h2s_mws(h2s); // >0
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005078
5079 if (h2c->mfs && fsize > h2c->mfs)
5080 fsize = h2c->mfs; // >0
5081
5082 if (fsize + 9 > outbuf.size) {
Willy Tarreau455d5682019-05-24 19:42:18 +02005083 /* It doesn't fit at once. If it at least fits once split and
5084 * the amount of data to move is low, let's defragment the
5085 * buffer now.
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005086 */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005087 if (b_space_wraps(mbuf) &&
5088 (fsize + 9 <= b_room(mbuf)) &&
5089 b_data(mbuf) <= MAX_DATA_REALIGN)
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005090 goto realign_again;
5091 fsize = outbuf.size - 9;
5092
5093 if (fsize <= 0) {
5094 /* no need to send an empty frame here */
Willy Tarreau9c218e72019-05-26 10:08:28 +02005095 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5096 goto retry;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005097 h2c->flags |= H2_CF_MUX_MFULL;
5098 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005099 TRACE_STATE("output buffer full", H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005100 goto end;
5101 }
5102 }
5103
5104 if (h2c->mws <= 0) {
5105 h2s->flags |= H2_SF_BLK_MFCTL;
Willy Tarreau7838a792019-08-12 18:42:03 +02005106 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 +01005107 goto end;
5108 }
5109
5110 if (fsize > h2c->mws)
5111 fsize = h2c->mws;
5112
5113 /* now let's copy this this into the output buffer */
5114 memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize);
Willy Tarreau1d4a0f82019-08-02 07:52:08 +02005115 h2s->sws -= fsize;
Willy Tarreau0f799ca2018-12-04 15:20:11 +01005116 h2c->mws -= fsize;
Willy Tarreauee573762018-12-04 15:25:57 +01005117 count -= fsize;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005118
5119 send_empty:
5120 /* update the frame's size */
5121 h2_set_frame_size(outbuf.area, fsize);
5122
5123 /* FIXME: for now we only set the ES flag on empty DATA frames, once
5124 * meeting EOM. We should optimize this later.
5125 */
5126 if (type == HTX_BLK_EOM) {
Willy Tarreauee573762018-12-04 15:25:57 +01005127 total++; // EOM counts as one byte
5128 count--;
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005129 es_now = 1;
5130 }
5131
5132 if (es_now)
5133 outbuf.area[4] |= H2_F_DATA_END_STREAM;
5134
5135 /* commit the H2 response */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005136 b_add(mbuf, fsize + 9);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005137
5138 /* consume incoming HTX block, including EOM */
5139 total += fsize;
5140 if (fsize == bsize) {
5141 htx_remove_blk(htx, blk);
Willy Tarreau7838a792019-08-12 18:42:03 +02005142 if (fsize) {
5143 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 +01005144 goto new_frame;
Willy Tarreau7838a792019-08-12 18:42:03 +02005145 }
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005146 } else {
5147 /* we've truncated this block */
5148 htx_cut_data_blk(htx, blk, fsize);
5149 }
5150
5151 if (es_now) {
5152 if (h2s->st == H2_SS_OPEN)
5153 h2s->st = H2_SS_HLOC;
5154 else
5155 h2s_close(h2s);
5156
5157 h2s->flags |= H2_SF_ES_SENT;
Willy Tarreau7838a792019-08-12 18:42:03 +02005158 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 +01005159 }
5160
5161 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005162 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_DATA, h2c->conn, h2s);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005163 return total;
5164}
5165
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005166/* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in
5167 * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes
5168 * processed. The caller must check the stream's status to detect any error
5169 * which might have happened subsequently to a successful send. The htx blocks
5170 * are automatically removed from the message. The htx message is assumed to be
5171 * valid since produced from the internal code. Processing stops when meeting
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005172 * the EOM, which is *not* removed. All trailers are processed at once and sent
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005173 * as a single frame. The ES flag is always set.
5174 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005175static size_t h2s_make_trailers(struct h2s *h2s, struct htx *htx)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005176{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02005177 struct http_hdr list[global.tune.max_http_hdr];
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005178 struct h2c *h2c = h2s->h2c;
5179 struct htx_blk *blk;
5180 struct htx_blk *blk_end;
5181 struct buffer outbuf;
Willy Tarreaubcc45952019-05-26 10:05:50 +02005182 struct buffer *mbuf;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005183 enum htx_blk_type type;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005184 int ret = 0;
5185 int hdr;
5186 int idx;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005187
Willy Tarreau7838a792019-08-12 18:42:03 +02005188 TRACE_ENTER(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
5189
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005190 if (h2c_mux_busy(h2c, h2s)) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005191 TRACE_STATE("mux output busy", H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005192 h2s->flags |= H2_SF_BLK_MBUSY;
Willy Tarreau7838a792019-08-12 18:42:03 +02005193 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005194 goto end;
5195 }
5196
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005197 /* determine the first block which must not be deleted, blk_end may
5198 * be NULL if all blocks have to be deleted. also get trailers.
5199 */
5200 idx = htx_get_head(htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005201 blk_end = NULL;
5202
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005203 hdr = 0;
5204 while (idx != -1) {
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005205 blk = htx_get_blk(htx, idx);
5206 type = htx_get_blk_type(blk);
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005207 idx = htx_get_next(htx, idx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005208 if (type == HTX_BLK_UNUSED)
5209 continue;
5210
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005211 if (type == HTX_BLK_EOT) {
5212 if (idx != -1)
5213 blk_end = blk;
5214 break;
5215 }
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005216 if (type != HTX_BLK_TLR)
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005217 break;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005218
Willy Tarreau7838a792019-08-12 18:42:03 +02005219 if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) {
5220 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 +01005221 goto fail;
Willy Tarreau7838a792019-08-12 18:42:03 +02005222 }
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005223
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005224 list[hdr].n = htx_get_blk_name(htx, blk);
5225 list[hdr].v = htx_get_blk_value(htx, blk);
5226 hdr++;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005227 }
5228
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005229 /* marker for end of trailers */
5230 list[hdr].n = ist("");
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005231
Willy Tarreau9c218e72019-05-26 10:08:28 +02005232 mbuf = br_tail(h2c->mbuf);
5233 retry:
5234 if (!h2_get_buf(h2c, mbuf)) {
5235 h2c->flags |= H2_CF_MUX_MALLOC;
5236 h2s->flags |= H2_SF_BLK_MROOM;
Willy Tarreau7838a792019-08-12 18:42:03 +02005237 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 +02005238 goto end;
5239 }
5240
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005241 chunk_reset(&outbuf);
5242
5243 while (1) {
Willy Tarreaubcc45952019-05-26 10:05:50 +02005244 outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0);
5245 if (outbuf.size >= 9 || !b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005246 break;
5247 realign_again:
Willy Tarreaubcc45952019-05-26 10:05:50 +02005248 b_slow_realign(mbuf, trash.area, b_data(mbuf));
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005249 }
5250
5251 if (outbuf.size < 9)
5252 goto full;
5253
5254 /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */
5255 memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5);
5256 write_n32(outbuf.area + 5, h2s->id); // 4 bytes
5257 outbuf.data = 9;
5258
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005259 /* encode all headers */
5260 for (idx = 0; idx < hdr; idx++) {
5261 /* these ones do not exist in H2 or must not appear in
5262 * trailers and must be dropped.
5263 */
5264 if (isteq(list[idx].n, ist("host")) ||
5265 isteq(list[idx].n, ist("content-length")) ||
5266 isteq(list[idx].n, ist("connection")) ||
5267 isteq(list[idx].n, ist("proxy-connection")) ||
5268 isteq(list[idx].n, ist("keep-alive")) ||
5269 isteq(list[idx].n, ist("upgrade")) ||
5270 isteq(list[idx].n, ist("te")) ||
5271 isteq(list[idx].n, ist("transfer-encoding")))
5272 continue;
5273
Christopher Faulet86d144c2019-08-14 16:32:25 +02005274 /* Skip all pseudo-headers */
5275 if (*(list[idx].n.ptr) == ':')
5276 continue;
5277
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005278 if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) {
5279 /* output full */
Willy Tarreaubcc45952019-05-26 10:05:50 +02005280 if (b_space_wraps(mbuf))
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005281 goto realign_again;
5282 goto full;
5283 }
5284 }
5285
Willy Tarreau5121e5d2019-05-06 15:13:41 +02005286 if (outbuf.data == 9) {
5287 /* here we have a problem, we have nothing to emit (either we
5288 * received an empty trailers block followed or we removed its
5289 * contents above). Because of this we can't send a HEADERS
5290 * frame, so we have to cheat and instead send an empty DATA
5291 * frame conveying the ES flag.
Willy Tarreau67b8cae2019-02-21 18:16:35 +01005292 */
5293 outbuf.area[3] = H2_FT_DATA;
5294 outbuf.area[4] = H2_F_DATA_END_STREAM;
5295 }
5296
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005297 /* update the frame's size */
5298 h2_set_frame_size(outbuf.area, outbuf.data - 9);
5299
5300 /* commit the H2 response */
Willy Tarreau7838a792019-08-12 18:42:03 +02005301 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 +02005302 b_add(mbuf, outbuf.data);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005303 h2s->flags |= H2_SF_ES_SENT;
5304
5305 if (h2s->st == H2_SS_OPEN)
5306 h2s->st = H2_SS_HLOC;
5307 else
5308 h2s_close(h2s);
5309
5310 /* OK we could properly deliver the response */
5311 done:
Willy Tarreaufb07b3f2019-05-06 11:23:29 +02005312 /* remove all header blocks till the end and compute the corresponding size. */
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005313 ret = 0;
5314 idx = htx_get_head(htx);
5315 blk = htx_get_blk(htx, idx);
5316 while (blk != blk_end) {
5317 ret += htx_get_blksz(blk);
5318 blk = htx_remove_blk(htx, blk);
5319 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005320
5321 if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) {
5322 ret += htx_get_blksz(blk_end);
5323 htx_remove_blk(htx, blk_end);
5324 }
5325
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005326 end:
Willy Tarreau7838a792019-08-12 18:42:03 +02005327 TRACE_LEAVE(H2_EV_TX_FRAME|H2_EV_TX_HDR, h2c->conn, h2s);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005328 return ret;
5329 full:
Willy Tarreau9c218e72019-05-26 10:08:28 +02005330 if ((mbuf = br_tail_add(h2c->mbuf)) != NULL)
5331 goto retry;
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005332 h2c->flags |= H2_CF_MUX_MFULL;
5333 h2s->flags |= H2_SF_BLK_MROOM;
5334 ret = 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005335 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 +01005336 goto end;
5337 fail:
5338 /* unparsable HTX messages, too large ones to be produced in the local
5339 * list etc go here (unrecoverable errors).
5340 */
5341 h2s_error(h2s, H2_ERR_INTERNAL_ERROR);
5342 ret = 0;
5343 goto end;
5344}
5345
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005346/* Called from the upper layer, to subscribe to events, such as being able to send.
5347 * The <param> argument here is supposed to be a pointer to a wait_event struct
5348 * which will be passed to h2s->recv_wait or h2s->send_wait depending on the
5349 * event_type. The event_type must only be a combination of SUB_RETRY_RECV and
5350 * SUB_RETRY_SEND, other values will lead to -1 being returned. It always
5351 * returns 0 except for the error above.
5352 */
Olivier Houchard6ff20392018-07-17 18:46:31 +02005353static int h2_subscribe(struct conn_stream *cs, int event_type, void *param)
5354{
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005355 struct wait_event *sw;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005356 struct h2s *h2s = cs->ctx;
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005357 struct h2c *h2c = h2s->h2c;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005358
Willy Tarreau7838a792019-08-12 18:42:03 +02005359 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005360 if (event_type & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005361 TRACE_DEVEL("subscribe(recv)", H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard4cf7fb12018-08-02 19:23:05 +02005362 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005363 BUG_ON(h2s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV));
5364 sw->events |= SUB_RETRY_RECV;
5365 h2s->recv_wait = sw;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005366 event_type &= ~SUB_RETRY_RECV;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005367 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005368 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005369 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2c->conn, h2s);
Olivier Houchard6ff20392018-07-17 18:46:31 +02005370 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005371 BUG_ON(h2s->send_wait != NULL || (sw->events & SUB_RETRY_SEND));
5372 sw->events |= SUB_RETRY_SEND;
5373 h2s->send_wait = sw;
5374 if (!(h2s->flags & H2_SF_BLK_SFCTL) &&
5375 !LIST_ADDED(&h2s->list)) {
5376 if (h2s->flags & H2_SF_BLK_MFCTL)
5377 LIST_ADDQ(&h2c->fctl_list, &h2s->list);
5378 else
5379 LIST_ADDQ(&h2c->send_list, &h2s->list);
Olivier Houcharde1c6dbc2018-08-01 17:06:43 +02005380 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005381 event_type &= ~SUB_RETRY_SEND;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005382 }
Willy Tarreau7838a792019-08-12 18:42:03 +02005383 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005384 if (event_type != 0)
5385 return -1;
5386 return 0;
Olivier Houchard6ff20392018-07-17 18:46:31 +02005387}
5388
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005389/* Called from the upper layer, to unsubscribe some events (undo h2_subscribe).
5390 * The <param> argument here is supposed to be a pointer to the same wait_event
5391 * struct that was passed to h2_subscribe() otherwise nothing will be changed.
5392 * It always returns zero.
5393 */
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005394static int h2_unsubscribe(struct conn_stream *cs, int event_type, void *param)
5395{
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005396 struct wait_event *sw;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005397 struct h2s *h2s = cs->ctx;
5398
Willy Tarreau7838a792019-08-12 18:42:03 +02005399 TRACE_ENTER(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005400 if (event_type & SUB_RETRY_RECV) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005401 TRACE_DEVEL("unsubscribe(recv)", H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005402 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005403 BUG_ON(h2s->recv_wait != sw);
5404 sw->events &= ~SUB_RETRY_RECV;
5405 h2s->recv_wait = NULL;
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005406 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005407 if (event_type & SUB_RETRY_SEND) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005408 TRACE_DEVEL("subscribe(send)", H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005409 sw = param;
Olivier Houchardf8338152019-05-14 17:50:32 +02005410 BUG_ON(h2s->send_wait != sw);
5411 LIST_DEL(&h2s->list);
5412 LIST_INIT(&h2s->list);
5413 sw->events &= ~SUB_RETRY_SEND;
5414 /* We were about to send, make sure it does not happen */
5415 if (LIST_ADDED(&h2s->sending_list) &&
5416 h2s->send_wait != &h2s->wait_event) {
Willy Tarreau86eded62019-06-14 14:47:49 +02005417 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Olivier Houchardf8338152019-05-14 17:50:32 +02005418 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd846c262018-10-19 17:24:29 +02005419 }
Olivier Houchardf8338152019-05-14 17:50:32 +02005420 h2s->send_wait = NULL;
Olivier Houchardd846c262018-10-19 17:24:29 +02005421 }
Willy Tarreau7838a792019-08-12 18:42:03 +02005422 TRACE_LEAVE(H2_EV_STRM_SEND|H2_EV_STRM_RECV, h2s->h2c->conn, h2s);
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005423 return 0;
5424}
5425
5426
Olivier Houchard511efea2018-08-16 15:30:32 +02005427/* Called from the upper layer, to receive data */
5428static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
5429{
Olivier Houchard638b7992018-08-16 15:41:52 +02005430 struct h2s *h2s = cs->ctx;
Willy Tarreau082f5592018-11-25 08:03:32 +01005431 struct h2c *h2c = h2s->h2c;
Willy Tarreau86724e22018-12-01 23:19:43 +01005432 struct htx *h2s_htx = NULL;
5433 struct htx *buf_htx = NULL;
Olivier Houchard511efea2018-08-16 15:30:32 +02005434 size_t ret = 0;
5435
Willy Tarreau7838a792019-08-12 18:42:03 +02005436 TRACE_ENTER(H2_EV_STRM_RECV, h2c->conn, h2s);
5437
Olivier Houchard511efea2018-08-16 15:30:32 +02005438 /* transfer possibly pending data to the upper layer */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005439 h2s_htx = htx_from_buf(&h2s->rxbuf);
5440 if (htx_is_empty(h2s_htx)) {
5441 /* Here htx_to_buf() will set buffer data to 0 because
5442 * the HTX is empty.
5443 */
5444 htx_to_buf(h2s_htx, &h2s->rxbuf);
5445 goto end;
5446 }
Willy Tarreau7196dd62019-03-05 10:51:11 +01005447
Christopher Faulet9b79a102019-07-15 11:22:56 +02005448 ret = h2s_htx->data;
5449 buf_htx = htx_from_buf(buf);
Willy Tarreau7196dd62019-03-05 10:51:11 +01005450
Christopher Faulet9b79a102019-07-15 11:22:56 +02005451 /* <buf> is empty and the message is small enough, swap the
5452 * buffers. */
5453 if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) {
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005454 htx_to_buf(buf_htx, buf);
5455 htx_to_buf(h2s_htx, &h2s->rxbuf);
Christopher Faulet9b79a102019-07-15 11:22:56 +02005456 b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf));
5457 goto end;
Willy Tarreau86724e22018-12-01 23:19:43 +01005458 }
Christopher Faulet9b79a102019-07-15 11:22:56 +02005459
5460 htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_EOM);
5461
5462 if (h2s_htx->flags & HTX_FL_PARSING_ERROR) {
5463 buf_htx->flags |= HTX_FL_PARSING_ERROR;
5464 if (htx_is_empty(buf_htx))
5465 cs->flags |= CS_FL_EOI;
Willy Tarreau86724e22018-12-01 23:19:43 +01005466 }
Olivier Houchard511efea2018-08-16 15:30:32 +02005467
Christopher Faulet9b79a102019-07-15 11:22:56 +02005468 buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0);
5469 htx_to_buf(buf_htx, buf);
5470 htx_to_buf(h2s_htx, &h2s->rxbuf);
5471 ret -= h2s_htx->data;
5472
Christopher Faulet37070b22019-02-14 15:12:14 +01005473 end:
Olivier Houchard638b7992018-08-16 15:41:52 +02005474 if (b_data(&h2s->rxbuf))
Olivier Houchardd247be02018-12-06 16:22:29 +01005475 cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Olivier Houchard511efea2018-08-16 15:30:32 +02005476 else {
Olivier Houchardd247be02018-12-06 16:22:29 +01005477 cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
Christopher Fauletfa922f02019-05-07 10:55:17 +02005478 if (h2s->flags & H2_SF_ES_RCVD)
5479 cs->flags |= CS_FL_EOI;
Willy Tarreau76c83822019-06-15 09:55:50 +02005480 if (conn_xprt_read0_pending(h2c->conn) || h2s->st == H2_SS_CLOSED)
Olivier Houchard511efea2018-08-16 15:30:32 +02005481 cs->flags |= CS_FL_EOS;
Olivier Houchard71748cb2018-12-17 14:16:46 +01005482 if (cs->flags & CS_FL_ERR_PENDING)
5483 cs->flags |= CS_FL_ERROR;
Olivier Houchard638b7992018-08-16 15:41:52 +02005484 if (b_size(&h2s->rxbuf)) {
5485 b_free(&h2s->rxbuf);
5486 offer_buffers(NULL, tasks_run_queue);
5487 }
Olivier Houchard511efea2018-08-16 15:30:32 +02005488 }
5489
Willy Tarreau082f5592018-11-25 08:03:32 +01005490 if (ret && h2c->dsi == h2s->id) {
5491 /* demux is blocking on this stream's buffer */
5492 h2c->flags &= ~H2_CF_DEM_SFULL;
Olivier Houchard3ca18bf2019-04-05 15:34:34 +02005493 h2c_restart_reading(h2c, 1);
Willy Tarreau082f5592018-11-25 08:03:32 +01005494 }
Christopher Faulet37070b22019-02-14 15:12:14 +01005495
Willy Tarreau7838a792019-08-12 18:42:03 +02005496 TRACE_LEAVE(H2_EV_STRM_RECV, h2c->conn, h2s);
Olivier Houchard511efea2018-08-16 15:30:32 +02005497 return ret;
5498}
5499
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005500/* stops all senders of this connection for example when the mux buffer is full.
5501 * They are moved from the sending_list to either fctl_list or send_list.
5502 */
Olivier Houchardd846c262018-10-19 17:24:29 +02005503static void h2_stop_senders(struct h2c *h2c)
5504{
5505 struct h2s *h2s, *h2s_back;
5506
Olivier Houchardd360ac62019-03-22 17:37:16 +01005507 list_for_each_entry_safe(h2s, h2s_back, &h2c->sending_list, sending_list) {
5508 LIST_DEL_INIT(&h2s->sending_list);
Willy Tarreau86eded62019-06-14 14:47:49 +02005509 tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005510 h2s->send_wait->events |= SUB_RETRY_SEND;
Olivier Houchardd846c262018-10-19 17:24:29 +02005511 }
5512}
5513
Willy Tarreau749f5ca2019-03-21 19:19:36 +01005514/* Called from the upper layer, to send data from buffer <buf> for no more than
5515 * <count> bytes. Returns the number of bytes effectively sent. Some status
5516 * flags may be updated on the conn_stream.
5517 */
Christopher Fauletd44a9b32018-07-27 11:59:41 +02005518static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
Willy Tarreau62f52692017-10-08 23:01:42 +02005519{
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005520 struct h2s *h2s = cs->ctx;
Willy Tarreau1dc41e72018-06-14 13:21:28 +02005521 size_t total = 0;
Willy Tarreau5dd17352018-06-14 13:33:30 +02005522 size_t ret;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005523 struct htx *htx;
5524 struct htx_blk *blk;
5525 enum htx_blk_type btype;
5526 uint32_t bsize;
5527 int32_t idx;
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005528
Willy Tarreau7838a792019-08-12 18:42:03 +02005529 TRACE_ENTER(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
5530
Olivier Houchardd360ac62019-03-22 17:37:16 +01005531 /* If we were not just woken because we wanted to send but couldn't,
5532 * and there's somebody else that is waiting to send, do nothing,
5533 * we will subscribe later and be put at the end of the list
5534 */
Willy Tarreauc234ae32019-05-13 17:56:11 +02005535 if (!LIST_ADDED(&h2s->sending_list) &&
Willy Tarreau7838a792019-08-12 18:42:03 +02005536 (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) {
5537 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 +01005538 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005539 }
Olivier Houchard998410a2019-04-15 19:23:37 +02005540 LIST_DEL_INIT(&h2s->sending_list);
Olivier Houchardd360ac62019-03-22 17:37:16 +01005541
Olivier Houchard998410a2019-04-15 19:23:37 +02005542 /* We couldn't set it to NULL before, because we needed it in case
5543 * we had to cancel the tasklet
5544 */
5545 h2s->send_wait = NULL;
5546
Willy Tarreau7838a792019-08-12 18:42:03 +02005547 if (h2s->h2c->st0 < H2_CS_FRAME_H) {
5548 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 +02005549 return 0;
Willy Tarreau7838a792019-08-12 18:42:03 +02005550 }
Willy Tarreau6bf641a2018-10-08 09:43:03 +02005551
Christopher Faulet9b79a102019-07-15 11:22:56 +02005552 htx = htx_from_buf(buf);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005553
Willy Tarreau0bad0432018-06-14 16:54:01 +02005554 if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count)
Willy Tarreauc4312d32017-11-07 12:01:53 +01005555 h2s->flags |= H2_SF_OUTGOING_DATA;
5556
Willy Tarreau751f2d02018-10-05 09:35:00 +02005557 if (h2s->id == 0) {
5558 int32_t id = h2c_get_next_sid(h2s->h2c);
5559
5560 if (id < 0) {
Willy Tarreau751f2d02018-10-05 09:35:00 +02005561 cs->flags |= CS_FL_ERROR;
Willy Tarreau7838a792019-08-12 18:42:03 +02005562 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 +02005563 return 0;
5564 }
5565
5566 eb32_delete(&h2s->by_id);
5567 h2s->by_id.key = h2s->id = id;
5568 h2s->h2c->max_id = id;
Willy Tarreaud64a3eb2019-01-23 10:22:21 +01005569 h2s->h2c->nb_reserved--;
Willy Tarreau751f2d02018-10-05 09:35:00 +02005570 eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id);
5571 }
5572
Christopher Faulet9b79a102019-07-15 11:22:56 +02005573 while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) &&
5574 count && !htx_is_empty(htx)) {
5575 idx = htx_get_head(htx);
5576 blk = htx_get_blk(htx, idx);
5577 btype = htx_get_blk_type(blk);
5578 bsize = htx_get_blksz(blk);
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005579
Christopher Faulet9b79a102019-07-15 11:22:56 +02005580 switch (btype) {
Willy Tarreau80739692018-10-05 11:35:57 +02005581 case HTX_BLK_REQ_SL:
5582 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005583 ret = h2s_bck_make_req_headers(h2s, htx);
Willy Tarreau80739692018-10-05 11:35:57 +02005584 if (ret > 0) {
5585 total += ret;
5586 count -= ret;
5587 if (ret < bsize)
5588 goto done;
5589 }
5590 break;
5591
Willy Tarreau115e83b2018-12-01 19:17:53 +01005592 case HTX_BLK_RES_SL:
5593 /* start-line before headers */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005594 ret = h2s_frt_make_resp_headers(h2s, htx);
Willy Tarreau115e83b2018-12-01 19:17:53 +01005595 if (ret > 0) {
5596 total += ret;
5597 count -= ret;
5598 if (ret < bsize)
5599 goto done;
5600 }
5601 break;
5602
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005603 case HTX_BLK_DATA:
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005604 case HTX_BLK_EOM:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005605 /* all these cause the emission of a DATA frame (possibly empty).
5606 * This EOM necessarily is one before trailers, as the EOM following
5607 * trailers would have been consumed by the trailers parser.
5608 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005609 ret = h2s_frt_make_resp_data(h2s, buf, count);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005610 if (ret > 0) {
Willy Tarreau98de12a2018-12-12 07:03:00 +01005611 htx = htx_from_buf(buf);
Willy Tarreau0c535fd2018-12-01 19:25:56 +01005612 total += ret;
5613 count -= ret;
5614 if (ret < bsize)
5615 goto done;
5616 }
5617 break;
5618
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005619 case HTX_BLK_TLR:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02005620 case HTX_BLK_EOT:
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005621 /* This is the first trailers block, all the subsequent ones AND
5622 * the EOM will be swallowed by the parser.
5623 */
Christopher Faulet9b79a102019-07-15 11:22:56 +02005624 ret = h2s_make_trailers(h2s, htx);
Willy Tarreau1bb812f2019-01-04 10:56:26 +01005625 if (ret > 0) {
5626 total += ret;
5627 count -= ret;
5628 if (ret < bsize)
5629 goto done;
5630 }
5631 break;
5632
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005633 default:
5634 htx_remove_blk(htx, blk);
5635 total += bsize;
5636 count -= bsize;
5637 break;
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005638 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005639 }
5640
Christopher Faulet9b79a102019-07-15 11:22:56 +02005641 done:
Willy Tarreau2b778482019-05-06 15:00:22 +02005642 if (h2s->st >= H2_SS_HLOC) {
Willy Tarreau00610962018-07-19 10:58:28 +02005643 /* trim any possibly pending data after we close (extra CR-LF,
5644 * unprocessed trailers, abnormal extra data, ...)
5645 */
Willy Tarreau0bad0432018-06-14 16:54:01 +02005646 total += count;
5647 count = 0;
Willy Tarreau00610962018-07-19 10:58:28 +02005648 }
5649
Willy Tarreauc6795ca2017-11-07 09:43:06 +01005650 /* RST are sent similarly to frame acks */
Willy Tarreau02492192017-12-07 15:59:29 +01005651 if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005652 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 +01005653 cs_set_error(cs);
Willy Tarreau8c0ea7d2017-11-10 10:05:24 +01005654 if (h2s_send_rst_stream(h2s->h2c, h2s) > 0)
Willy Tarreau00dd0782018-03-01 16:31:34 +01005655 h2s_close(h2s);
Willy Tarreauc6795ca2017-11-07 09:43:06 +01005656 }
5657
Christopher Faulet9b79a102019-07-15 11:22:56 +02005658 htx_to_buf(htx, buf);
Olivier Houchardd846c262018-10-19 17:24:29 +02005659
5660 /* The mux is full, cancel the pending tasks */
5661 if ((h2s->h2c->flags & H2_CF_MUX_BLOCK_ANY) ||
Willy Tarreau7838a792019-08-12 18:42:03 +02005662 (h2s->flags & H2_SF_BLK_MBUSY)) {
5663 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 +02005664 h2_stop_senders(h2s->h2c);
Willy Tarreau7838a792019-08-12 18:42:03 +02005665 }
Willy Tarreaubcd3bb32018-12-01 18:59:00 +01005666
Olivier Houchard7505f942018-08-21 18:10:44 +02005667 if (total > 0) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005668 if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND))
Willy Tarreau7838a792019-08-12 18:42:03 +02005669 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 +02005670 tasklet_wakeup(h2s->h2c->wait_event.tasklet);
Olivier Houchardd846c262018-10-19 17:24:29 +02005671
Olivier Houchard7505f942018-08-21 18:10:44 +02005672 }
Olivier Houchard6dea2ee2018-12-19 18:16:17 +01005673 /* If we're waiting for flow control, and we got a shutr on the
5674 * connection, we will never be unlocked, so add an error on
5675 * the conn_stream.
5676 */
5677 if (conn_xprt_read0_pending(h2s->h2c->conn) &&
5678 !b_data(&h2s->h2c->dbuf) &&
5679 (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) {
Willy Tarreau7838a792019-08-12 18:42:03 +02005680 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 +01005681 if (cs->flags & CS_FL_EOS)
5682 cs->flags |= CS_FL_ERROR;
5683 else
5684 cs->flags |= CS_FL_ERR_PENDING;
5685 }
Olivier Houchard998410a2019-04-15 19:23:37 +02005686 if (total > 0) {
Olivier Houchardd360ac62019-03-22 17:37:16 +01005687 /* Ok we managed to send something, leave the send_list */
Olivier Houchardd360ac62019-03-22 17:37:16 +01005688 LIST_DEL_INIT(&h2s->list);
5689 }
Willy Tarreau7838a792019-08-12 18:42:03 +02005690 TRACE_LEAVE(H2_EV_H2S_SEND|H2_EV_STRM_SEND, h2s->h2c->conn, h2s);
Willy Tarreau9e5ae1d2017-10-17 19:58:20 +02005691 return total;
Willy Tarreau62f52692017-10-08 23:01:42 +02005692}
5693
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005694/* for debugging with CLI's "show fd" command */
Willy Tarreau83061a82018-07-13 11:56:34 +02005695static void h2_show_fd(struct buffer *msg, struct connection *conn)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005696{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01005697 struct h2c *h2c = conn->ctx;
Willy Tarreau987c0632018-12-18 10:32:05 +01005698 struct h2s *h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005699 struct eb32_node *node;
5700 int fctl_cnt = 0;
5701 int send_cnt = 0;
5702 int tree_cnt = 0;
5703 int orph_cnt = 0;
Willy Tarreau60f62682019-05-26 11:32:27 +02005704 struct buffer *hmbuf, *tmbuf;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005705
5706 if (!h2c)
5707 return;
5708
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005709 list_for_each_entry(h2s, &h2c->fctl_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005710 fctl_cnt++;
5711
Olivier Houchardfa8aa862018-10-10 18:25:41 +02005712 list_for_each_entry(h2s, &h2c->send_list, list)
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005713 send_cnt++;
5714
Willy Tarreau3af37712018-12-18 14:34:41 +01005715 h2s = NULL;
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005716 node = eb32_first(&h2c->streams_by_id);
5717 while (node) {
5718 h2s = container_of(node, struct h2s, by_id);
5719 tree_cnt++;
5720 if (!h2s->cs)
5721 orph_cnt++;
5722 node = eb32_next(node);
5723 }
5724
Willy Tarreau60f62682019-05-26 11:32:27 +02005725 hmbuf = br_head(h2c->mbuf);
Willy Tarreaubcc45952019-05-26 10:05:50 +02005726 tmbuf = br_tail(h2c->mbuf);
Willy Tarreauab2ec452019-08-30 07:07:08 +02005727 chunk_appendf(msg, " h2c.st0=%s .err=%d .maxid=%d .lastid=%d .flg=0x%04x"
Willy Tarreau987c0632018-12-18 10:32:05 +01005728 " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d"
Willy Tarreau60f62682019-05-26 11:32:27 +02005729 " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d"
5730 " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]",
Willy Tarreauab2ec452019-08-30 07:07:08 +02005731 h2c_st_to_str(h2c->st0), h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags,
Willy Tarreau616ac812018-07-24 14:12:42 +02005732 h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt,
Willy Tarreau4f6516d2018-12-19 13:59:17 +01005733 h2c->wait_event.events, h2c->dsi,
Willy Tarreau987c0632018-12-18 10:32:05 +01005734 (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf),
5735 (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf),
5736 h2c->msi,
Willy Tarreau60f62682019-05-26 11:32:27 +02005737 br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf),
5738 (unsigned int)b_data(hmbuf), b_orig(hmbuf),
5739 (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf),
Willy Tarreaubcc45952019-05-26 10:05:50 +02005740 (unsigned int)b_data(tmbuf), b_orig(tmbuf),
5741 (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf));
Willy Tarreau987c0632018-12-18 10:32:05 +01005742
5743 if (h2s) {
Willy Tarreauab2ec452019-08-30 07:07:08 +02005744 chunk_appendf(msg, " last_h2s=%p .id=%d .st=%s.flg=0x%04x .rxbuf=%u@%p+%u/%u .cs=%p",
5745 h2s, h2s->id, h2s_st_to_str(h2s->st), h2s->flags,
Willy Tarreau987c0632018-12-18 10:32:05 +01005746 (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf),
5747 (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf),
5748 h2s->cs);
5749 if (h2s->cs)
5750 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
5751 h2s->cs->flags, h2s->cs->data);
5752 }
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005753}
Willy Tarreau62f52692017-10-08 23:01:42 +02005754
5755/*******************************************************/
5756/* functions below are dedicated to the config parsers */
5757/*******************************************************/
5758
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02005759/* config parser for global "tune.h2.header-table-size" */
5760static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx,
5761 struct proxy *defpx, const char *file, int line,
5762 char **err)
5763{
5764 if (too_many_args(1, args, err, NULL))
5765 return -1;
5766
5767 h2_settings_header_table_size = atoi(args[1]);
5768 if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) {
5769 memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]);
5770 return -1;
5771 }
5772 return 0;
5773}
Willy Tarreau62f52692017-10-08 23:01:42 +02005774
Willy Tarreaue6baec02017-07-27 11:45:11 +02005775/* config parser for global "tune.h2.initial-window-size" */
5776static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx,
5777 struct proxy *defpx, const char *file, int line,
5778 char **err)
5779{
5780 if (too_many_args(1, args, err, NULL))
5781 return -1;
5782
5783 h2_settings_initial_window_size = atoi(args[1]);
5784 if (h2_settings_initial_window_size < 0) {
5785 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
5786 return -1;
5787 }
5788 return 0;
5789}
5790
Willy Tarreau5242ef82017-07-27 11:47:28 +02005791/* config parser for global "tune.h2.max-concurrent-streams" */
5792static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx,
5793 struct proxy *defpx, const char *file, int line,
5794 char **err)
5795{
5796 if (too_many_args(1, args, err, NULL))
5797 return -1;
5798
5799 h2_settings_max_concurrent_streams = atoi(args[1]);
Willy Tarreau5a490b62019-01-31 10:39:51 +01005800 if ((int)h2_settings_max_concurrent_streams < 0) {
Willy Tarreau5242ef82017-07-27 11:47:28 +02005801 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
5802 return -1;
5803 }
5804 return 0;
5805}
5806
Willy Tarreaua24b35c2019-02-21 13:24:36 +01005807/* config parser for global "tune.h2.max-frame-size" */
5808static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx,
5809 struct proxy *defpx, const char *file, int line,
5810 char **err)
5811{
5812 if (too_many_args(1, args, err, NULL))
5813 return -1;
5814
5815 h2_settings_max_frame_size = atoi(args[1]);
5816 if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) {
5817 memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]);
5818 return -1;
5819 }
5820 return 0;
5821}
5822
Willy Tarreau62f52692017-10-08 23:01:42 +02005823
5824/****************************************/
5825/* MUX initialization and instanciation */
5826/***************************************/
5827
5828/* The mux operations */
Willy Tarreau680b2bd2018-11-27 07:30:17 +01005829static const struct mux_ops h2_ops = {
Willy Tarreau62f52692017-10-08 23:01:42 +02005830 .init = h2_init,
Olivier Houchard21df6cc2018-09-14 23:21:44 +02005831 .wake = h2_wake,
Willy Tarreau62f52692017-10-08 23:01:42 +02005832 .snd_buf = h2_snd_buf,
Olivier Houchard511efea2018-08-16 15:30:32 +02005833 .rcv_buf = h2_rcv_buf,
Olivier Houchard6ff20392018-07-17 18:46:31 +02005834 .subscribe = h2_subscribe,
Olivier Houchard83a0cd82018-09-28 17:57:58 +02005835 .unsubscribe = h2_unsubscribe,
Willy Tarreau62f52692017-10-08 23:01:42 +02005836 .attach = h2_attach,
Willy Tarreaufafd3982018-11-18 21:29:20 +01005837 .get_first_cs = h2_get_first_cs,
Willy Tarreau62f52692017-10-08 23:01:42 +02005838 .detach = h2_detach,
Olivier Houchard060ed432018-11-06 16:32:42 +01005839 .destroy = h2_destroy,
Olivier Houchardd540b362018-11-05 18:37:53 +01005840 .avail_streams = h2_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01005841 .used_streams = h2_used_streams,
Willy Tarreau62f52692017-10-08 23:01:42 +02005842 .shutr = h2_shutr,
5843 .shutw = h2_shutw,
Willy Tarreaue3f36cd2018-03-30 14:43:13 +02005844 .show_fd = h2_show_fd,
Christopher Faulet9b79a102019-07-15 11:22:56 +02005845 .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX,
Willy Tarreau62f52692017-10-08 23:01:42 +02005846 .name = "H2",
5847};
5848
Christopher Faulet32f61c02018-04-10 14:33:41 +02005849static struct mux_proto_list mux_proto_h2 =
Christopher Fauletc985f6c2019-07-15 11:42:52 +02005850 { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &h2_ops };
Willy Tarreau62f52692017-10-08 23:01:42 +02005851
Willy Tarreau0108d902018-11-25 19:14:37 +01005852INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2);
5853
Willy Tarreau62f52692017-10-08 23:01:42 +02005854/* config keyword parsers */
5855static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreaufe20e5b2017-07-27 11:42:14 +02005856 { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size },
Willy Tarreaue6baec02017-07-27 11:45:11 +02005857 { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size },
Willy Tarreau5242ef82017-07-27 11:47:28 +02005858 { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams },
Willy Tarreaua24b35c2019-02-21 13:24:36 +01005859 { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size },
Willy Tarreau62f52692017-10-08 23:01:42 +02005860 { 0, NULL, NULL }
5861}};
5862
Willy Tarreau0108d902018-11-25 19:14:37 +01005863INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);