Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 1 | /* |
| 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 Tarreau | afba57a | 2018-12-11 13:44:24 +0100 | [diff] [blame] | 15 | #include <common/h1.h> |
Willy Tarreau | 5ab6b57 | 2017-09-22 08:05:00 +0200 | [diff] [blame] | 16 | #include <common/h2.h> |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 17 | #include <common/hpack-dec.h> |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 18 | #include <common/hpack-enc.h> |
Willy Tarreau | 5ab6b57 | 2017-09-22 08:05:00 +0200 | [diff] [blame] | 19 | #include <common/hpack-tbl.h> |
Willy Tarreau | b96b77e | 2018-12-11 10:22:41 +0100 | [diff] [blame] | 20 | #include <common/htx.h> |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 21 | #include <common/initcall.h> |
Willy Tarreau | e482074 | 2017-07-27 13:37:23 +0200 | [diff] [blame] | 22 | #include <common/net_helper.h> |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 23 | #include <proto/connection.h> |
Willy Tarreau | bcd3bb3 | 2018-12-01 18:59:00 +0100 | [diff] [blame] | 24 | #include <proto/http_htx.h> |
Olivier Houchard | 44d5914 | 2018-12-13 18:46:22 +0100 | [diff] [blame] | 25 | #include <proto/session.h> |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 26 | #include <proto/stream.h> |
Olivier Houchard | 44d5914 | 2018-12-13 18:46:22 +0100 | [diff] [blame] | 27 | #include <proto/stream_interface.h> |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 28 | #include <types/session.h> |
Willy Tarreau | 5ab6b57 | 2017-09-22 08:05:00 +0200 | [diff] [blame] | 29 | #include <eb32tree.h> |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 30 | |
| 31 | |
Willy Tarreau | ecb9dcd | 2019-01-03 12:00:17 +0100 | [diff] [blame] | 32 | /* dummy streams returned for closed, error, refused, idle and states */ |
Willy Tarreau | 2a85618 | 2017-05-16 15:20:39 +0200 | [diff] [blame] | 33 | static const struct h2s *h2_closed_stream; |
Willy Tarreau | ecb9dcd | 2019-01-03 12:00:17 +0100 | [diff] [blame] | 34 | static const struct h2s *h2_error_stream; |
Willy Tarreau | 8d0d58b | 2018-12-23 18:29:12 +0100 | [diff] [blame] | 35 | static const struct h2s *h2_refused_stream; |
Willy Tarreau | 2a85618 | 2017-05-16 15:20:39 +0200 | [diff] [blame] | 36 | static const struct h2s *h2_idle_stream; |
| 37 | |
Willy Tarreau | 5ab6b57 | 2017-09-22 08:05:00 +0200 | [diff] [blame] | 38 | /* Connection flags (32 bit), in h2c->flags */ |
| 39 | #define H2_CF_NONE 0x00000000 |
| 40 | |
Willy Tarreau | 2e5b60e | 2017-09-25 11:49:03 +0200 | [diff] [blame] | 41 | /* Flags indicating why writing to the mux is blocked. */ |
| 42 | #define H2_CF_MUX_MALLOC 0x00000001 // mux blocked on lack of connection's mux buffer |
| 43 | #define H2_CF_MUX_MFULL 0x00000002 // mux blocked on connection's mux buffer full |
| 44 | #define H2_CF_MUX_BLOCK_ANY 0x00000003 // aggregate of the mux flags above |
| 45 | |
Willy Tarreau | 315d807 | 2017-12-10 22:17:57 +0100 | [diff] [blame] | 46 | /* Flags indicating why writing to the demux is blocked. |
| 47 | * The first two ones directly affect the ability for the mux to receive data |
| 48 | * from the connection. The other ones affect the mux's ability to demux |
| 49 | * received data. |
| 50 | */ |
Willy Tarreau | 2e5b60e | 2017-09-25 11:49:03 +0200 | [diff] [blame] | 51 | #define H2_CF_DEM_DALLOC 0x00000004 // demux blocked on lack of connection's demux buffer |
| 52 | #define H2_CF_DEM_DFULL 0x00000008 // demux blocked on connection's demux buffer full |
Willy Tarreau | 315d807 | 2017-12-10 22:17:57 +0100 | [diff] [blame] | 53 | |
Willy Tarreau | 2e5b60e | 2017-09-25 11:49:03 +0200 | [diff] [blame] | 54 | #define H2_CF_DEM_MBUSY 0x00000010 // demux blocked on connection's mux side busy |
| 55 | #define H2_CF_DEM_MROOM 0x00000020 // demux blocked on lack of room in mux buffer |
| 56 | #define H2_CF_DEM_SALLOC 0x00000040 // demux blocked on lack of stream's request buffer |
| 57 | #define H2_CF_DEM_SFULL 0x00000080 // demux blocked on stream request buffer full |
Willy Tarreau | f210191 | 2018-07-19 10:11:38 +0200 | [diff] [blame] | 58 | #define H2_CF_DEM_TOOMANY 0x00000100 // demux blocked waiting for some conn_streams to leave |
| 59 | #define H2_CF_DEM_BLOCK_ANY 0x000001F0 // aggregate of the demux flags above except DALLOC/DFULL |
Willy Tarreau | 2e5b60e | 2017-09-25 11:49:03 +0200 | [diff] [blame] | 60 | |
Willy Tarreau | 081d472 | 2017-05-16 21:51:05 +0200 | [diff] [blame] | 61 | /* other flags */ |
Willy Tarreau | f210191 | 2018-07-19 10:11:38 +0200 | [diff] [blame] | 62 | #define H2_CF_GOAWAY_SENT 0x00001000 // a GOAWAY frame was successfully sent |
| 63 | #define H2_CF_GOAWAY_FAILED 0x00002000 // a GOAWAY frame failed to be sent |
| 64 | #define H2_CF_WAIT_FOR_HS 0x00004000 // We did check that at least a stream was waiting for handshake |
Willy Tarreau | b3fb56d | 2018-10-03 13:56:38 +0200 | [diff] [blame] | 65 | #define H2_CF_IS_BACK 0x00008000 // this is an outgoing connection |
Willy Tarreau | 97aaa67 | 2018-12-23 09:49:04 +0100 | [diff] [blame] | 66 | #define H2_CF_WINDOW_OPENED 0x00010000 // demux increased window already advertised |
Willy Tarreau | 081d472 | 2017-05-16 21:51:05 +0200 | [diff] [blame] | 67 | |
Willy Tarreau | 5ab6b57 | 2017-09-22 08:05:00 +0200 | [diff] [blame] | 68 | /* H2 connection state, in h2c->st0 */ |
| 69 | enum h2_cs { |
| 70 | H2_CS_PREFACE, // init done, waiting for connection preface |
| 71 | H2_CS_SETTINGS1, // preface OK, waiting for first settings frame |
| 72 | H2_CS_FRAME_H, // first settings frame ok, waiting for frame header |
| 73 | H2_CS_FRAME_P, // frame header OK, waiting for frame payload |
Willy Tarreau | a20a519 | 2017-12-27 11:02:06 +0100 | [diff] [blame] | 74 | H2_CS_FRAME_A, // frame payload OK, trying to send ACK frame |
| 75 | H2_CS_FRAME_E, // frame payload OK, trying to send RST frame |
Willy Tarreau | 5ab6b57 | 2017-09-22 08:05:00 +0200 | [diff] [blame] | 76 | H2_CS_ERROR, // send GOAWAY(errcode) and close the connection ASAP |
| 77 | H2_CS_ERROR2, // GOAWAY(errcode) sent, close the connection ASAP |
| 78 | H2_CS_ENTRIES // must be last |
| 79 | } __attribute__((packed)); |
| 80 | |
Willy Tarreau | 5133096 | 2019-05-26 09:38:07 +0200 | [diff] [blame] | 81 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 82 | /* 32 buffers: one for the ring's root, rest for the mbuf itself */ |
| 83 | #define H2C_MBUF_CNT 32 |
Willy Tarreau | 5133096 | 2019-05-26 09:38:07 +0200 | [diff] [blame] | 84 | |
Willy Tarreau | 5ab6b57 | 2017-09-22 08:05:00 +0200 | [diff] [blame] | 85 | /* H2 connection descriptor */ |
| 86 | struct h2c { |
| 87 | struct connection *conn; |
| 88 | |
| 89 | enum h2_cs st0; /* mux state */ |
| 90 | enum h2_err errcode; /* H2 err code (H2_ERR_*) */ |
| 91 | |
| 92 | /* 16 bit hole here */ |
| 93 | uint32_t flags; /* connection flags: H2_CF_* */ |
Willy Tarreau | 2e2083a | 2019-01-31 10:34:07 +0100 | [diff] [blame] | 94 | uint32_t streams_limit; /* maximum number of concurrent streams the peer supports */ |
Willy Tarreau | 5ab6b57 | 2017-09-22 08:05:00 +0200 | [diff] [blame] | 95 | int32_t max_id; /* highest ID known on this connection, <0 before preface */ |
| 96 | uint32_t rcvd_c; /* newly received data to ACK for the connection */ |
| 97 | uint32_t rcvd_s; /* newly received data to ACK for the current stream (dsi) */ |
| 98 | |
| 99 | /* states for the demux direction */ |
| 100 | struct hpack_dht *ddht; /* demux dynamic header table */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 101 | struct buffer dbuf; /* demux buffer */ |
Willy Tarreau | 5ab6b57 | 2017-09-22 08:05:00 +0200 | [diff] [blame] | 102 | |
| 103 | int32_t dsi; /* demux stream ID (<0 = idle) */ |
| 104 | int32_t dfl; /* demux frame length (if dsi >= 0) */ |
| 105 | int8_t dft; /* demux frame type (if dsi >= 0) */ |
| 106 | int8_t dff; /* demux frame flags (if dsi >= 0) */ |
Willy Tarreau | 05e5daf | 2017-12-11 15:17:36 +0100 | [diff] [blame] | 107 | uint8_t dpl; /* demux pad length (part of dfl), init to 0 */ |
| 108 | /* 8 bit hole here */ |
Willy Tarreau | 5ab6b57 | 2017-09-22 08:05:00 +0200 | [diff] [blame] | 109 | int32_t last_sid; /* last processed stream ID for GOAWAY, <0 before preface */ |
| 110 | |
| 111 | /* states for the mux direction */ |
Willy Tarreau | 5133096 | 2019-05-26 09:38:07 +0200 | [diff] [blame] | 112 | struct buffer mbuf[H2C_MBUF_CNT]; /* mux buffers (ring) */ |
Willy Tarreau | 5ab6b57 | 2017-09-22 08:05:00 +0200 | [diff] [blame] | 113 | int32_t msi; /* mux stream ID (<0 = idle) */ |
| 114 | int32_t mfl; /* mux frame length (if dsi >= 0) */ |
| 115 | int8_t mft; /* mux frame type (if dsi >= 0) */ |
| 116 | int8_t mff; /* mux frame flags (if dsi >= 0) */ |
| 117 | /* 16 bit hole here */ |
| 118 | int32_t miw; /* mux initial window size for all new streams */ |
| 119 | int32_t mws; /* mux window size. Can be negative. */ |
| 120 | int32_t mfs; /* mux's max frame size */ |
| 121 | |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 122 | int timeout; /* idle timeout duration in ticks */ |
Willy Tarreau | 599391a | 2017-11-24 10:16:00 +0100 | [diff] [blame] | 123 | int shut_timeout; /* idle timeout duration in ticks after GOAWAY was sent */ |
Willy Tarreau | 4974561 | 2017-12-03 18:56:02 +0100 | [diff] [blame] | 124 | unsigned int nb_streams; /* number of streams in the tree */ |
Willy Tarreau | 7ac60e8 | 2018-07-19 09:04:05 +0200 | [diff] [blame] | 125 | unsigned int nb_cs; /* number of attached conn_streams */ |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 126 | unsigned int nb_reserved; /* number of reserved streams */ |
Willy Tarreau | e9634bd | 2019-01-23 10:25:10 +0100 | [diff] [blame] | 127 | unsigned int stream_cnt; /* total number of streams seen */ |
Willy Tarreau | 0b37d65 | 2018-10-03 10:33:02 +0200 | [diff] [blame] | 128 | struct proxy *proxy; /* the proxy this connection was created for */ |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 129 | struct task *task; /* timeout management task */ |
Willy Tarreau | 5ab6b57 | 2017-09-22 08:05:00 +0200 | [diff] [blame] | 130 | struct eb_root streams_by_id; /* all active streams by their ID */ |
| 131 | struct list send_list; /* list of blocked streams requesting to send */ |
| 132 | struct list fctl_list; /* list of streams blocked by connection's fctl */ |
Willy Tarreau | bda92dd | 2019-10-02 10:49:59 +0200 | [diff] [blame] | 133 | struct list blocked_list; /* list of streams blocked for other reasons (e.g. sfctl, dep) */ |
Olivier Houchard | d846c26 | 2018-10-19 17:24:29 +0200 | [diff] [blame] | 134 | struct list sending_list; /* list of h2s scheduled to send data */ |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 135 | struct buffer_wait buf_wait; /* wait list for buffer allocations */ |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 136 | struct wait_event wait_event; /* To be used if we're waiting for I/Os */ |
Willy Tarreau | 5ab6b57 | 2017-09-22 08:05:00 +0200 | [diff] [blame] | 137 | }; |
| 138 | |
Willy Tarreau | 1831264 | 2017-10-11 07:57:07 +0200 | [diff] [blame] | 139 | /* H2 stream state, in h2s->st */ |
| 140 | enum 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 Tarreau | 96060ba | 2017-10-16 18:34:34 +0200 | [diff] [blame] | 147 | H2_SS_ERROR, // an error needs to be sent using RST_STREAM |
Willy Tarreau | 1831264 | 2017-10-11 07:57:07 +0200 | [diff] [blame] | 148 | H2_SS_CLOSED, // closed |
| 149 | H2_SS_ENTRIES // must be last |
| 150 | } __attribute__((packed)); |
| 151 | |
Willy Tarreau | 4c688eb | 2019-05-14 11:44:03 +0200 | [diff] [blame] | 152 | #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 Tarreau | 4c688eb | 2019-05-14 11:44:03 +0200 | [diff] [blame] | 161 | |
Willy Tarreau | 1831264 | 2017-10-11 07:57:07 +0200 | [diff] [blame] | 162 | /* 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 Tarreau | 2e5b60e | 2017-09-25 11:49:03 +0200 | [diff] [blame] | 170 | /* stream flags indicating the reason the stream is blocked */ |
| 171 | #define H2_SF_BLK_MBUSY 0x00000010 // blocked waiting for mux access (transient) |
Willy Tarreau | bda92dd | 2019-10-02 10:49:59 +0200 | [diff] [blame] | 172 | #define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux (must be in send list) |
| 173 | #define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl (must be in fctl list) |
| 174 | #define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl (must be in blocked list) |
Willy Tarreau | 2e5b60e | 2017-09-25 11:49:03 +0200 | [diff] [blame] | 175 | #define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above |
| 176 | |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 177 | /* stream flags indicating how data is supposed to be sent */ |
| 178 | #define H2_SF_DATA_CLEN 0x00000100 // data sent using content-length |
| 179 | #define H2_SF_DATA_CHNK 0x00000200 // data sent using chunked-encoding |
| 180 | |
| 181 | /* step we're currently in when sending chunks. This is needed because we may |
| 182 | * have to transfer chunks as large as a full buffer so there's no room left |
| 183 | * for size nor crlf around. |
| 184 | */ |
| 185 | #define H2_SF_CHNK_SIZE 0x00000000 // trying to send chunk size |
| 186 | #define H2_SF_CHNK_DATA 0x00000400 // trying to send chunk data |
| 187 | #define H2_SF_CHNK_CRLF 0x00000800 // trying to send chunk crlf after data |
| 188 | |
| 189 | #define H2_SF_CHNK_MASK 0x00000C00 // trying to send chunk size |
| 190 | |
Willy Tarreau | 6743420 | 2017-11-06 20:20:51 +0100 | [diff] [blame] | 191 | #define H2_SF_HEADERS_SENT 0x00001000 // a HEADERS frame was sent for this stream |
Willy Tarreau | c4312d3 | 2017-11-07 12:01:53 +0100 | [diff] [blame] | 192 | #define H2_SF_OUTGOING_DATA 0x00002000 // set whenever we've seen outgoing data |
Willy Tarreau | 6743420 | 2017-11-06 20:20:51 +0100 | [diff] [blame] | 193 | |
Willy Tarreau | 6cc85a5 | 2019-01-02 15:49:20 +0100 | [diff] [blame] | 194 | #define H2_SF_HEADERS_RCVD 0x00004000 // a HEADERS frame was received for this stream |
| 195 | |
Willy Tarreau | 2c249eb | 2019-05-13 18:06:17 +0200 | [diff] [blame] | 196 | #define H2_SF_WANT_SHUTR 0x00008000 // a stream couldn't shutr() (mux full/busy) |
| 197 | #define H2_SF_WANT_SHUTW 0x00010000 // a stream couldn't shutw() (mux full/busy) |
Willy Tarreau | 3cf69fe | 2019-05-14 10:44:40 +0200 | [diff] [blame] | 198 | #define H2_SF_KILL_CONN 0x00020000 // kill the whole connection with this stream |
Willy Tarreau | 2c249eb | 2019-05-13 18:06:17 +0200 | [diff] [blame] | 199 | |
| 200 | |
Willy Tarreau | 1831264 | 2017-10-11 07:57:07 +0200 | [diff] [blame] | 201 | /* H2 stream descriptor, describing the stream as it appears in the H2C, and as |
| 202 | * it is being processed in the internal HTTP representation (H1 for now). |
| 203 | */ |
| 204 | struct h2s { |
| 205 | struct conn_stream *cs; |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 206 | struct session *sess; |
Willy Tarreau | 1831264 | 2017-10-11 07:57:07 +0200 | [diff] [blame] | 207 | struct h2c *h2c; |
Willy Tarreau | a40704a | 2018-09-11 13:52:04 +0200 | [diff] [blame] | 208 | struct h1m h1m; /* request or response parser state for H1 */ |
Willy Tarreau | 1831264 | 2017-10-11 07:57:07 +0200 | [diff] [blame] | 209 | struct eb32_node by_id; /* place in h2c's streams_by_id */ |
Willy Tarreau | 1831264 | 2017-10-11 07:57:07 +0200 | [diff] [blame] | 210 | int32_t id; /* stream ID */ |
| 211 | uint32_t flags; /* H2_SF_* */ |
Willy Tarreau | 5a9c875 | 2019-08-02 07:52:08 +0200 | [diff] [blame] | 212 | int sws; /* stream window size, to be added to the mux's initial window size */ |
Willy Tarreau | 1831264 | 2017-10-11 07:57:07 +0200 | [diff] [blame] | 213 | enum h2_err errcode; /* H2 err code (H2_ERR_*) */ |
| 214 | enum h2_ss st; |
Willy Tarreau | 9c5e22e | 2018-09-11 19:22:14 +0200 | [diff] [blame] | 215 | uint16_t status; /* HTTP response status */ |
Willy Tarreau | 1915ca2 | 2019-01-24 11:49:37 +0100 | [diff] [blame] | 216 | unsigned long long body_len; /* remaining body length according to content-length if H2_SF_DATA_CLEN */ |
Olivier Houchard | 638b799 | 2018-08-16 15:41:52 +0200 | [diff] [blame] | 217 | struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */ |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 218 | struct wait_event wait_event; /* Wait list, when we're attempting to send a RST but we can't send */ |
Willy Tarreau | 749f5ca | 2019-03-21 19:19:36 +0100 | [diff] [blame] | 219 | struct wait_event *recv_wait; /* recv wait_event the conn_stream associated is waiting on (via h2_subscribe) */ |
| 220 | struct wait_event *send_wait; /* send wait_event the conn_stream associated is waiting on (via h2_subscribe) */ |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 221 | struct list list; /* To be used when adding in h2c->send_list or h2c->fctl_lsit */ |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 222 | struct list sending_list; /* To be used when adding in h2c->sending_list */ |
Willy Tarreau | 1831264 | 2017-10-11 07:57:07 +0200 | [diff] [blame] | 223 | }; |
Willy Tarreau | 5ab6b57 | 2017-09-22 08:05:00 +0200 | [diff] [blame] | 224 | |
Willy Tarreau | c640514 | 2017-09-21 20:23:50 +0200 | [diff] [blame] | 225 | /* descriptor for an h2 frame header */ |
| 226 | struct h2_fh { |
| 227 | uint32_t len; /* length, host order, 24 bits */ |
| 228 | uint32_t sid; /* stream id, host order, 31 bits */ |
| 229 | uint8_t ft; /* frame type */ |
| 230 | uint8_t ff; /* frame flags */ |
| 231 | }; |
| 232 | |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 233 | /* the h2c connection pool */ |
| 234 | DECLARE_STATIC_POOL(pool_head_h2c, "h2c", sizeof(struct h2c)); |
| 235 | |
| 236 | /* the h2s stream pool */ |
| 237 | DECLARE_STATIC_POOL(pool_head_h2s, "h2s", sizeof(struct h2s)); |
| 238 | |
Willy Tarreau | dc57236 | 2018-12-12 08:08:05 +0100 | [diff] [blame] | 239 | /* The default connection window size is 65535, it may only be enlarged using |
| 240 | * a WINDOW_UPDATE message. Since the window must never be larger than 2G-1, |
| 241 | * we'll pretend we already received the difference between the two to send |
| 242 | * an equivalent window update to enlarge it to 2G-1. |
| 243 | */ |
| 244 | #define H2_INITIAL_WINDOW_INCREMENT ((1U<<31)-1 - 65535) |
| 245 | |
Willy Tarreau | 455d568 | 2019-05-24 19:42:18 +0200 | [diff] [blame] | 246 | /* maximum amount of data we're OK with re-aligning for buffer optimizations */ |
| 247 | #define MAX_DATA_REALIGN 1024 |
| 248 | |
Willy Tarreau | fe20e5b | 2017-07-27 11:42:14 +0200 | [diff] [blame] | 249 | /* a few settings from the global section */ |
| 250 | static int h2_settings_header_table_size = 4096; /* initial value */ |
Willy Tarreau | e6baec0 | 2017-07-27 11:45:11 +0200 | [diff] [blame] | 251 | static int h2_settings_initial_window_size = 65535; /* initial value */ |
Willy Tarreau | 5a490b6 | 2019-01-31 10:39:51 +0100 | [diff] [blame] | 252 | static unsigned int h2_settings_max_concurrent_streams = 100; |
Willy Tarreau | a24b35c | 2019-02-21 13:24:36 +0100 | [diff] [blame] | 253 | static int h2_settings_max_frame_size = 0; /* unset */ |
Willy Tarreau | fe20e5b | 2017-07-27 11:42:14 +0200 | [diff] [blame] | 254 | |
Willy Tarreau | 2a85618 | 2017-05-16 15:20:39 +0200 | [diff] [blame] | 255 | /* a dmumy closed stream */ |
| 256 | static const struct h2s *h2_closed_stream = &(const struct h2s){ |
| 257 | .cs = NULL, |
| 258 | .h2c = NULL, |
| 259 | .st = H2_SS_CLOSED, |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 260 | .errcode = H2_ERR_STREAM_CLOSED, |
Willy Tarreau | ab83750 | 2017-12-27 15:07:30 +0100 | [diff] [blame] | 261 | .flags = H2_SF_RST_RCVD, |
Willy Tarreau | 2a85618 | 2017-05-16 15:20:39 +0200 | [diff] [blame] | 262 | .id = 0, |
| 263 | }; |
| 264 | |
Willy Tarreau | ecb9dcd | 2019-01-03 12:00:17 +0100 | [diff] [blame] | 265 | /* a dmumy closed stream returning a PROTOCOL_ERROR error */ |
| 266 | static const struct h2s *h2_error_stream = &(const struct h2s){ |
| 267 | .cs = NULL, |
| 268 | .h2c = NULL, |
| 269 | .st = H2_SS_CLOSED, |
| 270 | .errcode = H2_ERR_PROTOCOL_ERROR, |
| 271 | .flags = 0, |
| 272 | .id = 0, |
| 273 | }; |
| 274 | |
Willy Tarreau | 8d0d58b | 2018-12-23 18:29:12 +0100 | [diff] [blame] | 275 | /* a dmumy closed stream returning a REFUSED_STREAM error */ |
| 276 | static const struct h2s *h2_refused_stream = &(const struct h2s){ |
| 277 | .cs = NULL, |
| 278 | .h2c = NULL, |
| 279 | .st = H2_SS_CLOSED, |
| 280 | .errcode = H2_ERR_REFUSED_STREAM, |
| 281 | .flags = 0, |
| 282 | .id = 0, |
| 283 | }; |
| 284 | |
Willy Tarreau | 2a85618 | 2017-05-16 15:20:39 +0200 | [diff] [blame] | 285 | /* and a dummy idle stream for use with any unannounced stream */ |
| 286 | static const struct h2s *h2_idle_stream = &(const struct h2s){ |
| 287 | .cs = NULL, |
| 288 | .h2c = NULL, |
| 289 | .st = H2_SS_IDLE, |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 290 | .errcode = H2_ERR_STREAM_CLOSED, |
Willy Tarreau | 2a85618 | 2017-05-16 15:20:39 +0200 | [diff] [blame] | 291 | .id = 0, |
| 292 | }; |
| 293 | |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 294 | static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state); |
Olivier Houchard | d4dd22d | 2018-08-17 18:39:46 +0200 | [diff] [blame] | 295 | static int h2_send(struct h2c *h2c); |
| 296 | static int h2_recv(struct h2c *h2c); |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 297 | static int h2_process(struct h2c *h2c); |
Olivier Houchard | 29fb89d | 2018-08-02 18:56:36 +0200 | [diff] [blame] | 298 | static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short state); |
Willy Tarreau | 0b55907 | 2018-02-26 15:22:17 +0100 | [diff] [blame] | 299 | static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id); |
Willy Tarreau | 4790f7c | 2019-01-24 11:33:02 +0100 | [diff] [blame] | 300 | static int h2c_decode_headers(struct h2c *h2c, struct buffer *rxbuf, uint32_t *flags, unsigned long long *body_len); |
Willy Tarreau | a56a6de | 2018-02-26 15:59:07 +0100 | [diff] [blame] | 301 | static int h2_frt_transfer_data(struct h2s *h2s); |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 302 | static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state); |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 303 | static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess); |
Willy Tarreau | 8b2757c | 2018-12-19 17:36:48 +0100 | [diff] [blame] | 304 | static void h2s_alert(struct h2s *h2s); |
Willy Tarreau | fe20e5b | 2017-07-27 11:42:14 +0200 | [diff] [blame] | 305 | |
Willy Tarreau | 534d8f9 | 2019-10-01 10:12:00 +0200 | [diff] [blame] | 306 | /* returns true if the connection is allowed to expire, false otherwise. A |
| 307 | * connection may expire when: |
| 308 | * - it has no stream |
| 309 | * - it has data in the mux buffer |
| 310 | * - it has streams in the blocked list |
| 311 | * - it has streams in the fctl list |
| 312 | * - it has streams in the send list |
| 313 | * Otherwise it means some streams are waiting in the data layer and it should |
| 314 | * not expire. |
| 315 | */ |
| 316 | static inline int h2c_may_expire(const struct h2c *h2c) |
| 317 | { |
| 318 | return eb_is_empty(&h2c->streams_by_id) || |
| 319 | br_data(h2c->mbuf) || |
| 320 | !LIST_ISEMPTY(&h2c->blocked_list) || |
| 321 | !LIST_ISEMPTY(&h2c->fctl_list) || |
| 322 | !LIST_ISEMPTY(&h2c->send_list) || |
| 323 | !LIST_ISEMPTY(&h2c->sending_list); |
| 324 | } |
| 325 | |
Olivier Houchard | 7a97743 | 2019-03-21 15:47:13 +0100 | [diff] [blame] | 326 | static __inline int |
Willy Tarreau | 534d8f9 | 2019-10-01 10:12:00 +0200 | [diff] [blame] | 327 | h2c_is_dead(const struct h2c *h2c) |
Olivier Houchard | 7a97743 | 2019-03-21 15:47:13 +0100 | [diff] [blame] | 328 | { |
| 329 | if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */ |
| 330 | ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */ |
| 331 | (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */ |
| 332 | (!(h2c->conn->owner)) || /* Nobody's left to take care of the connection, drop it now */ |
Willy Tarreau | 662fafc | 2019-05-26 09:43:07 +0200 | [diff] [blame] | 333 | (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */ |
Olivier Houchard | 7a97743 | 2019-03-21 15:47:13 +0100 | [diff] [blame] | 334 | (conn_xprt_read0_pending(h2c->conn) || |
| 335 | (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid))))) |
| 336 | return 1; |
| 337 | |
| 338 | return 0; |
Olivier Houchard | 7a97743 | 2019-03-21 15:47:13 +0100 | [diff] [blame] | 339 | } |
| 340 | |
Willy Tarreau | 35dbd5d | 2017-09-22 09:13:49 +0200 | [diff] [blame] | 341 | /*****************************************************/ |
| 342 | /* functions below are for dynamic buffer management */ |
| 343 | /*****************************************************/ |
| 344 | |
Willy Tarreau | 315d807 | 2017-12-10 22:17:57 +0100 | [diff] [blame] | 345 | /* indicates whether or not the we may call the h2_recv() function to attempt |
| 346 | * to receive data into the buffer and/or demux pending data. The condition is |
| 347 | * a bit complex due to some API limits for now. The rules are the following : |
| 348 | * - if an error or a shutdown was detected on the connection and the buffer |
| 349 | * is empty, we must not attempt to receive |
| 350 | * - if the demux buf failed to be allocated, we must not try to receive and |
| 351 | * we know there is nothing pending |
Willy Tarreau | 6042aeb | 2017-12-12 11:01:44 +0100 | [diff] [blame] | 352 | * - if no flag indicates a blocking condition, we may attempt to receive, |
| 353 | * regardless of whether the demux buffer is full or not, so that only |
| 354 | * de demux part decides whether or not to block. This is needed because |
| 355 | * the connection API indeed prevents us from re-enabling receipt that is |
| 356 | * already enabled in a polled state, so we must always immediately stop |
| 357 | * as soon as the demux can't proceed so as never to hit an end of read |
| 358 | * with data pending in the buffers. |
Willy Tarreau | 315d807 | 2017-12-10 22:17:57 +0100 | [diff] [blame] | 359 | * - otherwise must may not attempt |
| 360 | */ |
| 361 | static inline int h2_recv_allowed(const struct h2c *h2c) |
| 362 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 363 | if (b_data(&h2c->dbuf) == 0 && |
Willy Tarreau | 315d807 | 2017-12-10 22:17:57 +0100 | [diff] [blame] | 364 | (h2c->st0 >= H2_CS_ERROR || |
| 365 | h2c->conn->flags & CO_FL_ERROR || |
| 366 | conn_xprt_read0_pending(h2c->conn))) |
| 367 | return 0; |
| 368 | |
| 369 | if (!(h2c->flags & H2_CF_DEM_DALLOC) && |
Willy Tarreau | 6042aeb | 2017-12-12 11:01:44 +0100 | [diff] [blame] | 370 | !(h2c->flags & H2_CF_DEM_BLOCK_ANY)) |
Willy Tarreau | 315d807 | 2017-12-10 22:17:57 +0100 | [diff] [blame] | 371 | return 1; |
| 372 | |
| 373 | return 0; |
| 374 | } |
| 375 | |
Willy Tarreau | 47b515a | 2018-12-21 16:09:41 +0100 | [diff] [blame] | 376 | /* restarts reading on the connection if it was not enabled */ |
Olivier Houchard | 3ca18bf | 2019-04-05 15:34:34 +0200 | [diff] [blame] | 377 | static inline void h2c_restart_reading(const struct h2c *h2c, int consider_buffer) |
Willy Tarreau | 47b515a | 2018-12-21 16:09:41 +0100 | [diff] [blame] | 378 | { |
| 379 | if (!h2_recv_allowed(h2c)) |
| 380 | return; |
Olivier Houchard | 3ca18bf | 2019-04-05 15:34:34 +0200 | [diff] [blame] | 381 | if ((!consider_buffer || !b_data(&h2c->dbuf)) |
| 382 | && (h2c->wait_event.events & SUB_RETRY_RECV)) |
Willy Tarreau | 47b515a | 2018-12-21 16:09:41 +0100 | [diff] [blame] | 383 | return; |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 384 | tasklet_wakeup(h2c->wait_event.tasklet); |
Willy Tarreau | 47b515a | 2018-12-21 16:09:41 +0100 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | |
Willy Tarreau | fa1d357 | 2019-01-31 10:31:51 +0100 | [diff] [blame] | 388 | /* returns true if the front connection has too many conn_streams attached */ |
| 389 | static inline int h2_frt_has_too_many_cs(const struct h2c *h2c) |
Willy Tarreau | f210191 | 2018-07-19 10:11:38 +0200 | [diff] [blame] | 390 | { |
Willy Tarreau | a875466 | 2018-12-23 20:43:58 +0100 | [diff] [blame] | 391 | return h2c->nb_cs > h2_settings_max_concurrent_streams; |
Willy Tarreau | f210191 | 2018-07-19 10:11:38 +0200 | [diff] [blame] | 392 | } |
| 393 | |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 394 | /* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c |
| 395 | * flags are used to figure what buffer was requested. It returns 1 if the |
| 396 | * allocation succeeds, in which case the connection is woken up, or 0 if it's |
| 397 | * impossible to wake up and we prefer to be woken up later. |
Willy Tarreau | 35dbd5d | 2017-09-22 09:13:49 +0200 | [diff] [blame] | 398 | */ |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 399 | static int h2_buf_available(void *target) |
Willy Tarreau | 35dbd5d | 2017-09-22 09:13:49 +0200 | [diff] [blame] | 400 | { |
| 401 | struct h2c *h2c = target; |
Willy Tarreau | 0b55907 | 2018-02-26 15:22:17 +0100 | [diff] [blame] | 402 | struct h2s *h2s; |
Willy Tarreau | 35dbd5d | 2017-09-22 09:13:49 +0200 | [diff] [blame] | 403 | |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 404 | if ((h2c->flags & H2_CF_DEM_DALLOC) && b_alloc_margin(&h2c->dbuf, 0)) { |
Willy Tarreau | 1b62c5c | 2017-09-25 11:55:01 +0200 | [diff] [blame] | 405 | h2c->flags &= ~H2_CF_DEM_DALLOC; |
Olivier Houchard | 3ca18bf | 2019-04-05 15:34:34 +0200 | [diff] [blame] | 406 | h2c_restart_reading(h2c, 1); |
Willy Tarreau | 35dbd5d | 2017-09-22 09:13:49 +0200 | [diff] [blame] | 407 | return 1; |
| 408 | } |
Willy Tarreau | 35dbd5d | 2017-09-22 09:13:49 +0200 | [diff] [blame] | 409 | |
Willy Tarreau | 5133096 | 2019-05-26 09:38:07 +0200 | [diff] [blame] | 410 | if ((h2c->flags & H2_CF_MUX_MALLOC) && b_alloc_margin(br_tail(h2c->mbuf), 0)) { |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 411 | h2c->flags &= ~H2_CF_MUX_MALLOC; |
Willy Tarreau | 1b62c5c | 2017-09-25 11:55:01 +0200 | [diff] [blame] | 412 | |
| 413 | if (h2c->flags & H2_CF_DEM_MROOM) { |
| 414 | h2c->flags &= ~H2_CF_DEM_MROOM; |
Olivier Houchard | 3ca18bf | 2019-04-05 15:34:34 +0200 | [diff] [blame] | 415 | h2c_restart_reading(h2c, 1); |
Willy Tarreau | 1b62c5c | 2017-09-25 11:55:01 +0200 | [diff] [blame] | 416 | } |
Willy Tarreau | 1439812 | 2017-09-22 14:26:04 +0200 | [diff] [blame] | 417 | return 1; |
| 418 | } |
Willy Tarreau | 0b55907 | 2018-02-26 15:22:17 +0100 | [diff] [blame] | 419 | |
| 420 | if ((h2c->flags & H2_CF_DEM_SALLOC) && |
| 421 | (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs && |
Olivier Houchard | 638b799 | 2018-08-16 15:41:52 +0200 | [diff] [blame] | 422 | b_alloc_margin(&h2s->rxbuf, 0)) { |
Willy Tarreau | 0b55907 | 2018-02-26 15:22:17 +0100 | [diff] [blame] | 423 | h2c->flags &= ~H2_CF_DEM_SALLOC; |
Olivier Houchard | 3ca18bf | 2019-04-05 15:34:34 +0200 | [diff] [blame] | 424 | h2c_restart_reading(h2c, 1); |
Willy Tarreau | 0b55907 | 2018-02-26 15:22:17 +0100 | [diff] [blame] | 425 | return 1; |
| 426 | } |
| 427 | |
Willy Tarreau | 1439812 | 2017-09-22 14:26:04 +0200 | [diff] [blame] | 428 | return 0; |
| 429 | } |
| 430 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 431 | static inline struct buffer *h2_get_buf(struct h2c *h2c, struct buffer *bptr) |
Willy Tarreau | 1439812 | 2017-09-22 14:26:04 +0200 | [diff] [blame] | 432 | { |
| 433 | struct buffer *buf = NULL; |
| 434 | |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 435 | if (likely(!LIST_ADDED(&h2c->buf_wait.list)) && |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 436 | unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) { |
| 437 | h2c->buf_wait.target = h2c; |
| 438 | h2c->buf_wait.wakeup_cb = h2_buf_available; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 439 | HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 440 | LIST_ADDQ(&buffer_wq, &h2c->buf_wait.list); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 441 | HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
Willy Tarreau | 1439812 | 2017-09-22 14:26:04 +0200 | [diff] [blame] | 442 | __conn_xprt_stop_recv(h2c->conn); |
| 443 | } |
| 444 | return buf; |
| 445 | } |
| 446 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 447 | static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr) |
Willy Tarreau | 1439812 | 2017-09-22 14:26:04 +0200 | [diff] [blame] | 448 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 449 | if (bptr->size) { |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 450 | b_free(bptr); |
Willy Tarreau | 201840a | 2019-05-29 17:50:48 +0200 | [diff] [blame] | 451 | offer_buffers(NULL, tasks_run_queue); |
Willy Tarreau | 1439812 | 2017-09-22 14:26:04 +0200 | [diff] [blame] | 452 | } |
| 453 | } |
| 454 | |
Willy Tarreau | 2e3c000 | 2019-05-26 09:45:23 +0200 | [diff] [blame] | 455 | static inline void h2_release_mbuf(struct h2c *h2c) |
| 456 | { |
| 457 | struct buffer *buf; |
| 458 | unsigned int count = 0; |
| 459 | |
| 460 | while (b_size(buf = br_head_pick(h2c->mbuf))) { |
| 461 | b_free(buf); |
| 462 | count++; |
| 463 | } |
| 464 | if (count) |
Willy Tarreau | 201840a | 2019-05-29 17:50:48 +0200 | [diff] [blame] | 465 | offer_buffers(NULL, tasks_run_queue); |
Willy Tarreau | 2e3c000 | 2019-05-26 09:45:23 +0200 | [diff] [blame] | 466 | } |
| 467 | |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 468 | /* returns the number of allocatable outgoing streams for the connection taking |
| 469 | * the last_sid and the reserved ones into account. |
| 470 | */ |
| 471 | static inline int h2_streams_left(const struct h2c *h2c) |
| 472 | { |
| 473 | int ret; |
| 474 | |
| 475 | /* consider the number of outgoing streams we're allowed to create before |
| 476 | * reaching the last GOAWAY frame seen. max_id is the last assigned id, |
| 477 | * nb_reserved is the number of streams which don't yet have an ID. |
| 478 | */ |
| 479 | ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF; |
| 480 | ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1; |
| 481 | if (ret < 0) |
| 482 | ret = 0; |
| 483 | return ret; |
| 484 | } |
| 485 | |
Willy Tarreau | 00f18a3 | 2019-01-26 12:19:01 +0100 | [diff] [blame] | 486 | /* returns the number of streams in use on a connection to figure if it's |
| 487 | * idle or not. We check nb_cs and not nb_streams as the caller will want |
| 488 | * to know if it was the last one after a detach(). |
| 489 | */ |
| 490 | static int h2_used_streams(struct connection *conn) |
| 491 | { |
| 492 | struct h2c *h2c = conn->ctx; |
| 493 | |
| 494 | return h2c->nb_cs; |
| 495 | } |
| 496 | |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 497 | /* returns the number of concurrent streams available on the connection */ |
Olivier Houchard | d540b36 | 2018-11-05 18:37:53 +0100 | [diff] [blame] | 498 | static int h2_avail_streams(struct connection *conn) |
| 499 | { |
Willy Tarreau | e9634bd | 2019-01-23 10:25:10 +0100 | [diff] [blame] | 500 | struct server *srv = objt_server(conn->target); |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 501 | struct h2c *h2c = conn->ctx; |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 502 | int ret1, ret2; |
Olivier Houchard | d540b36 | 2018-11-05 18:37:53 +0100 | [diff] [blame] | 503 | |
Willy Tarreau | 6afec46 | 2019-01-28 06:40:19 +0100 | [diff] [blame] | 504 | /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional |
| 505 | * streams on the connection. |
| 506 | */ |
| 507 | if (h2c->last_sid >= 0) |
| 508 | return 0; |
| 509 | |
Willy Tarreau | d63b85d | 2019-10-31 15:10:03 +0100 | [diff] [blame] | 510 | if (h2c->st0 >= H2_CS_ERROR) |
| 511 | return 0; |
| 512 | |
Willy Tarreau | 8694978 | 2019-01-31 10:42:05 +0100 | [diff] [blame] | 513 | /* note: may be negative if a SETTINGS frame changes the limit */ |
| 514 | ret1 = h2c->streams_limit - h2c->nb_streams; |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 515 | |
| 516 | /* we must also consider the limit imposed by stream IDs */ |
| 517 | ret2 = h2_streams_left(h2c); |
Willy Tarreau | e9634bd | 2019-01-23 10:25:10 +0100 | [diff] [blame] | 518 | ret1 = MIN(ret1, ret2); |
Willy Tarreau | 8694978 | 2019-01-31 10:42:05 +0100 | [diff] [blame] | 519 | if (ret1 > 0 && srv && srv->max_reuse >= 0) { |
Willy Tarreau | e9634bd | 2019-01-23 10:25:10 +0100 | [diff] [blame] | 520 | ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0; |
| 521 | ret1 = MIN(ret1, ret2); |
| 522 | } |
| 523 | return ret1; |
Olivier Houchard | d540b36 | 2018-11-05 18:37:53 +0100 | [diff] [blame] | 524 | } |
| 525 | |
Willy Tarreau | 35dbd5d | 2017-09-22 09:13:49 +0200 | [diff] [blame] | 526 | |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 527 | /*****************************************************************/ |
| 528 | /* functions below are dedicated to the mux setup and management */ |
| 529 | /*****************************************************************/ |
| 530 | |
Willy Tarreau | 7dc24e4 | 2018-10-03 13:52:41 +0200 | [diff] [blame] | 531 | /* Initialize the mux once it's attached. For outgoing connections, the context |
| 532 | * is already initialized before installing the mux, so we detect incoming |
Christopher Faulet | 51f73eb | 2019-04-08 11:22:47 +0200 | [diff] [blame] | 533 | * connections from the fact that the context is still NULL (even during mux |
| 534 | * upgrades). <input> is always used as Input buffer and may contain data. It is |
| 535 | * the caller responsibility to not reuse it anymore. Returns < 0 on error. |
Willy Tarreau | 7dc24e4 | 2018-10-03 13:52:41 +0200 | [diff] [blame] | 536 | */ |
Christopher Faulet | 51f73eb | 2019-04-08 11:22:47 +0200 | [diff] [blame] | 537 | static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess, |
| 538 | struct buffer *input) |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 539 | { |
| 540 | struct h2c *h2c; |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 541 | struct task *t = NULL; |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 542 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 543 | h2c = pool_alloc(pool_head_h2c); |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 544 | if (!h2c) |
mildis | cd2d7de | 2018-10-02 16:44:18 +0200 | [diff] [blame] | 545 | goto fail_no_h2c; |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 546 | |
Christopher Faulet | e9b7072 | 2019-04-08 10:46:02 +0200 | [diff] [blame] | 547 | if (conn_is_back(conn)) { |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 548 | h2c->flags = H2_CF_IS_BACK; |
| 549 | h2c->shut_timeout = h2c->timeout = prx->timeout.server; |
| 550 | if (tick_isset(prx->timeout.serverfin)) |
| 551 | h2c->shut_timeout = prx->timeout.serverfin; |
| 552 | } else { |
| 553 | h2c->flags = H2_CF_NONE; |
| 554 | h2c->shut_timeout = h2c->timeout = prx->timeout.client; |
| 555 | if (tick_isset(prx->timeout.clientfin)) |
| 556 | h2c->shut_timeout = prx->timeout.clientfin; |
| 557 | } |
Willy Tarreau | 3f13357 | 2017-10-31 19:21:06 +0100 | [diff] [blame] | 558 | |
Willy Tarreau | 0b37d65 | 2018-10-03 10:33:02 +0200 | [diff] [blame] | 559 | h2c->proxy = prx; |
Willy Tarreau | 3340029 | 2017-11-05 11:23:40 +0100 | [diff] [blame] | 560 | h2c->task = NULL; |
Willy Tarreau | 3f13357 | 2017-10-31 19:21:06 +0100 | [diff] [blame] | 561 | if (tick_isset(h2c->timeout)) { |
| 562 | t = task_new(tid_bit); |
| 563 | if (!t) |
| 564 | goto fail; |
| 565 | |
| 566 | h2c->task = t; |
| 567 | t->process = h2_timeout_task; |
| 568 | t->context = h2c; |
| 569 | t->expire = tick_add(now_ms, h2c->timeout); |
| 570 | } |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 571 | |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 572 | h2c->wait_event.tasklet = tasklet_new(); |
| 573 | if (!h2c->wait_event.tasklet) |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 574 | goto fail; |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 575 | h2c->wait_event.tasklet->process = h2_io_cb; |
| 576 | h2c->wait_event.tasklet->context = h2c; |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 577 | h2c->wait_event.events = 0; |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 578 | |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 579 | h2c->ddht = hpack_dht_alloc(h2_settings_header_table_size); |
| 580 | if (!h2c->ddht) |
| 581 | goto fail; |
| 582 | |
| 583 | /* Initialise the context. */ |
| 584 | h2c->st0 = H2_CS_PREFACE; |
| 585 | h2c->conn = conn; |
Willy Tarreau | 2e2083a | 2019-01-31 10:34:07 +0100 | [diff] [blame] | 586 | h2c->streams_limit = h2_settings_max_concurrent_streams; |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 587 | h2c->max_id = -1; |
| 588 | h2c->errcode = H2_ERR_NO_ERROR; |
Willy Tarreau | 97aaa67 | 2018-12-23 09:49:04 +0100 | [diff] [blame] | 589 | h2c->rcvd_c = 0; |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 590 | h2c->rcvd_s = 0; |
Willy Tarreau | 4974561 | 2017-12-03 18:56:02 +0100 | [diff] [blame] | 591 | h2c->nb_streams = 0; |
Willy Tarreau | 7ac60e8 | 2018-07-19 09:04:05 +0200 | [diff] [blame] | 592 | h2c->nb_cs = 0; |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 593 | h2c->nb_reserved = 0; |
Willy Tarreau | e9634bd | 2019-01-23 10:25:10 +0100 | [diff] [blame] | 594 | h2c->stream_cnt = 0; |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 595 | |
Christopher Faulet | 51f73eb | 2019-04-08 11:22:47 +0200 | [diff] [blame] | 596 | h2c->dbuf = *input; |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 597 | h2c->dsi = -1; |
| 598 | h2c->msi = -1; |
Willy Tarreau | e9634bd | 2019-01-23 10:25:10 +0100 | [diff] [blame] | 599 | |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 600 | h2c->last_sid = -1; |
| 601 | |
Willy Tarreau | 5133096 | 2019-05-26 09:38:07 +0200 | [diff] [blame] | 602 | br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0])); |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 603 | h2c->miw = 65535; /* mux initial window size */ |
| 604 | h2c->mws = 65535; /* mux window size */ |
| 605 | h2c->mfs = 16384; /* initial max frame size */ |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 606 | h2c->streams_by_id = EB_ROOT; |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 607 | LIST_INIT(&h2c->send_list); |
| 608 | LIST_INIT(&h2c->fctl_list); |
Willy Tarreau | bda92dd | 2019-10-02 10:49:59 +0200 | [diff] [blame] | 609 | LIST_INIT(&h2c->blocked_list); |
Olivier Houchard | d846c26 | 2018-10-19 17:24:29 +0200 | [diff] [blame] | 610 | LIST_INIT(&h2c->sending_list); |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 611 | LIST_INIT(&h2c->buf_wait.list); |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 612 | |
Willy Tarreau | 3f13357 | 2017-10-31 19:21:06 +0100 | [diff] [blame] | 613 | if (t) |
| 614 | task_queue(t); |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 615 | |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 616 | if (h2c->flags & H2_CF_IS_BACK) { |
| 617 | /* FIXME: this is temporary, for outgoing connections we need |
| 618 | * to immediately allocate a stream until the code is modified |
| 619 | * so that the caller calls ->attach(). For now the outgoing cs |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 620 | * is stored as conn->ctx by the caller. |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 621 | */ |
| 622 | struct h2s *h2s; |
| 623 | |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 624 | h2s = h2c_bck_stream_new(h2c, conn->ctx, sess); |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 625 | if (!h2s) |
| 626 | goto fail_stream; |
| 627 | } |
| 628 | |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 629 | conn->ctx = h2c; |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 630 | |
Willy Tarreau | 0f38358 | 2018-10-03 14:22:21 +0200 | [diff] [blame] | 631 | /* prepare to read something */ |
Olivier Houchard | 3ca18bf | 2019-04-05 15:34:34 +0200 | [diff] [blame] | 632 | h2c_restart_reading(h2c, 1); |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 633 | return 0; |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 634 | fail_stream: |
| 635 | hpack_dht_free(h2c->ddht); |
mildis | cd2d7de | 2018-10-02 16:44:18 +0200 | [diff] [blame] | 636 | fail: |
Willy Tarreau | f656279 | 2019-05-07 19:05:35 +0200 | [diff] [blame] | 637 | task_destroy(t); |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 638 | if (h2c->wait_event.tasklet) |
| 639 | tasklet_free(h2c->wait_event.tasklet); |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 640 | pool_free(pool_head_h2c, h2c); |
mildis | cd2d7de | 2018-10-02 16:44:18 +0200 | [diff] [blame] | 641 | fail_no_h2c: |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 642 | return -1; |
| 643 | } |
| 644 | |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 645 | /* returns the next allocatable outgoing stream ID for the H2 connection, or |
| 646 | * -1 if no more is allocatable. |
| 647 | */ |
| 648 | static inline int32_t h2c_get_next_sid(const struct h2c *h2c) |
| 649 | { |
| 650 | int32_t id = (h2c->max_id + 1) | 1; |
Willy Tarreau | a80dca8 | 2019-01-24 17:08:28 +0100 | [diff] [blame] | 651 | |
| 652 | if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid)) |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 653 | id = -1; |
| 654 | return id; |
| 655 | } |
| 656 | |
Willy Tarreau | 2373acc | 2017-10-12 17:35:14 +0200 | [diff] [blame] | 657 | /* returns the stream associated with id <id> or NULL if not found */ |
| 658 | static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id) |
| 659 | { |
| 660 | struct eb32_node *node; |
| 661 | |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 662 | if (id == 0) |
| 663 | return (struct h2s *)h2_closed_stream; |
| 664 | |
Willy Tarreau | 2a85618 | 2017-05-16 15:20:39 +0200 | [diff] [blame] | 665 | if (id > h2c->max_id) |
| 666 | return (struct h2s *)h2_idle_stream; |
| 667 | |
Willy Tarreau | 2373acc | 2017-10-12 17:35:14 +0200 | [diff] [blame] | 668 | node = eb32_lookup(&h2c->streams_by_id, id); |
| 669 | if (!node) |
Willy Tarreau | 2a85618 | 2017-05-16 15:20:39 +0200 | [diff] [blame] | 670 | return (struct h2s *)h2_closed_stream; |
Willy Tarreau | 2373acc | 2017-10-12 17:35:14 +0200 | [diff] [blame] | 671 | |
| 672 | return container_of(node, struct h2s, by_id); |
| 673 | } |
| 674 | |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 675 | /* release function. This one should be called to free all resources allocated |
| 676 | * to the mux. |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 677 | */ |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 678 | static void h2_release(struct h2c *h2c) |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 679 | { |
Christopher Faulet | 61840e7 | 2019-04-15 09:33:32 +0200 | [diff] [blame] | 680 | struct connection *conn = NULL;; |
Christopher Faulet | 39a96ee | 2019-04-08 10:52:21 +0200 | [diff] [blame] | 681 | |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 682 | if (h2c) { |
Christopher Faulet | 61840e7 | 2019-04-15 09:33:32 +0200 | [diff] [blame] | 683 | /* The connection must be aattached to this mux to be released */ |
| 684 | if (h2c->conn && h2c->conn->ctx == h2c) |
| 685 | conn = h2c->conn; |
| 686 | |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 687 | hpack_dht_free(h2c->ddht); |
Willy Tarreau | 1439812 | 2017-09-22 14:26:04 +0200 | [diff] [blame] | 688 | |
Willy Tarreau | 186e96e | 2019-05-28 17:21:18 +0200 | [diff] [blame] | 689 | if (LIST_ADDED(&h2c->buf_wait.list)) { |
| 690 | HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
| 691 | LIST_DEL(&h2c->buf_wait.list); |
| 692 | HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
| 693 | } |
Willy Tarreau | 1439812 | 2017-09-22 14:26:04 +0200 | [diff] [blame] | 694 | |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 695 | h2_release_buf(h2c, &h2c->dbuf); |
Willy Tarreau | 2e3c000 | 2019-05-26 09:45:23 +0200 | [diff] [blame] | 696 | h2_release_mbuf(h2c); |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 697 | |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 698 | if (h2c->task) { |
Willy Tarreau | 0975f11 | 2018-03-29 15:22:59 +0200 | [diff] [blame] | 699 | h2c->task->context = NULL; |
| 700 | task_wakeup(h2c->task, TASK_WOKEN_OTHER); |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 701 | h2c->task = NULL; |
| 702 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 703 | if (h2c->wait_event.tasklet) |
| 704 | tasklet_free(h2c->wait_event.tasklet); |
Christopher Faulet | 0e01256 | 2019-09-18 11:07:20 +0200 | [diff] [blame] | 705 | if (conn && h2c->wait_event.events != 0) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 706 | conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events, |
Christopher Faulet | 0e01256 | 2019-09-18 11:07:20 +0200 | [diff] [blame] | 707 | &h2c->wait_event); |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 708 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 709 | pool_free(pool_head_h2c, h2c); |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 710 | } |
| 711 | |
Christopher Faulet | 39a96ee | 2019-04-08 10:52:21 +0200 | [diff] [blame] | 712 | if (conn) { |
| 713 | conn->mux = NULL; |
| 714 | conn->ctx = NULL; |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 715 | |
Christopher Faulet | 39a96ee | 2019-04-08 10:52:21 +0200 | [diff] [blame] | 716 | conn_stop_tracking(conn); |
| 717 | conn_full_close(conn); |
| 718 | if (conn->destroy_cb) |
| 719 | conn->destroy_cb(conn); |
| 720 | conn_free(conn); |
| 721 | } |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 722 | } |
| 723 | |
| 724 | |
Willy Tarreau | 7168117 | 2017-10-23 14:39:06 +0200 | [diff] [blame] | 725 | /******************************************************/ |
| 726 | /* functions below are for the H2 protocol processing */ |
| 727 | /******************************************************/ |
| 728 | |
| 729 | /* returns the stream if of stream <h2s> or 0 if <h2s> is NULL */ |
Willy Tarreau | 1f09467 | 2017-11-20 21:27:45 +0100 | [diff] [blame] | 730 | static inline __maybe_unused int h2s_id(const struct h2s *h2s) |
Willy Tarreau | 7168117 | 2017-10-23 14:39:06 +0200 | [diff] [blame] | 731 | { |
| 732 | return h2s ? h2s->id : 0; |
| 733 | } |
| 734 | |
Willy Tarreau | 5a9c875 | 2019-08-02 07:52:08 +0200 | [diff] [blame] | 735 | /* returns the sum of the stream's own window size and the mux's initial |
| 736 | * window, which together form the stream's effective window size. |
| 737 | */ |
| 738 | static inline int h2s_mws(const struct h2s *h2s) |
| 739 | { |
| 740 | return h2s->sws + h2s->h2c->miw; |
| 741 | } |
| 742 | |
Willy Tarreau | 5b5e687 | 2017-09-25 16:17:25 +0200 | [diff] [blame] | 743 | /* returns true of the mux is currently busy as seen from stream <h2s> */ |
Willy Tarreau | 1f09467 | 2017-11-20 21:27:45 +0100 | [diff] [blame] | 744 | static inline __maybe_unused int h2c_mux_busy(const struct h2c *h2c, const struct h2s *h2s) |
Willy Tarreau | 5b5e687 | 2017-09-25 16:17:25 +0200 | [diff] [blame] | 745 | { |
| 746 | if (h2c->msi < 0) |
| 747 | return 0; |
| 748 | |
| 749 | if (h2c->msi == h2s_id(h2s)) |
| 750 | return 0; |
| 751 | |
| 752 | return 1; |
| 753 | } |
| 754 | |
Willy Tarreau | 741d6df | 2017-10-17 08:00:59 +0200 | [diff] [blame] | 755 | /* marks an error on the connection */ |
Willy Tarreau | 1f09467 | 2017-11-20 21:27:45 +0100 | [diff] [blame] | 756 | static inline __maybe_unused void h2c_error(struct h2c *h2c, enum h2_err err) |
Willy Tarreau | 741d6df | 2017-10-17 08:00:59 +0200 | [diff] [blame] | 757 | { |
| 758 | h2c->errcode = err; |
| 759 | h2c->st0 = H2_CS_ERROR; |
| 760 | } |
| 761 | |
Willy Tarreau | 175cebb | 2019-01-24 10:02:24 +0100 | [diff] [blame] | 762 | /* marks an error on the stream. It may also update an already closed stream |
| 763 | * (e.g. to report an error after an RST was received). |
| 764 | */ |
Willy Tarreau | 1f09467 | 2017-11-20 21:27:45 +0100 | [diff] [blame] | 765 | static inline __maybe_unused void h2s_error(struct h2s *h2s, enum h2_err err) |
Willy Tarreau | 2e43f08 | 2017-10-17 08:03:59 +0200 | [diff] [blame] | 766 | { |
Willy Tarreau | 175cebb | 2019-01-24 10:02:24 +0100 | [diff] [blame] | 767 | if (h2s->id && h2s->st != H2_SS_ERROR) { |
Willy Tarreau | 2e43f08 | 2017-10-17 08:03:59 +0200 | [diff] [blame] | 768 | h2s->errcode = err; |
Willy Tarreau | 175cebb | 2019-01-24 10:02:24 +0100 | [diff] [blame] | 769 | if (h2s->st < H2_SS_ERROR) |
| 770 | h2s->st = H2_SS_ERROR; |
Willy Tarreau | ec988c7 | 2018-12-19 18:00:29 +0100 | [diff] [blame] | 771 | if (h2s->cs) |
| 772 | cs_set_error(h2s->cs); |
Willy Tarreau | 2e43f08 | 2017-10-17 08:03:59 +0200 | [diff] [blame] | 773 | } |
| 774 | } |
| 775 | |
Willy Tarreau | 7e09445 | 2018-12-19 18:08:52 +0100 | [diff] [blame] | 776 | /* attempt to notify the data layer of recv availability */ |
| 777 | static void __maybe_unused h2s_notify_recv(struct h2s *h2s) |
| 778 | { |
| 779 | struct wait_event *sw; |
| 780 | |
| 781 | if (h2s->recv_wait) { |
| 782 | sw = h2s->recv_wait; |
| 783 | sw->events &= ~SUB_RETRY_RECV; |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 784 | tasklet_wakeup(sw->tasklet); |
Willy Tarreau | 7e09445 | 2018-12-19 18:08:52 +0100 | [diff] [blame] | 785 | h2s->recv_wait = NULL; |
| 786 | } |
| 787 | } |
| 788 | |
| 789 | /* attempt to notify the data layer of send availability */ |
| 790 | static void __maybe_unused h2s_notify_send(struct h2s *h2s) |
| 791 | { |
| 792 | struct wait_event *sw; |
| 793 | |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 794 | if (h2s->send_wait && !LIST_ADDED(&h2s->sending_list)) { |
Willy Tarreau | 7e09445 | 2018-12-19 18:08:52 +0100 | [diff] [blame] | 795 | sw = h2s->send_wait; |
| 796 | sw->events &= ~SUB_RETRY_SEND; |
Olivier Houchard | fd1e96d | 2019-03-25 14:04:25 +0100 | [diff] [blame] | 797 | LIST_ADDQ(&h2s->h2c->sending_list, &h2s->sending_list); |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 798 | tasklet_wakeup(sw->tasklet); |
Willy Tarreau | 7e09445 | 2018-12-19 18:08:52 +0100 | [diff] [blame] | 799 | } |
| 800 | } |
| 801 | |
Willy Tarreau | 8b2757c | 2018-12-19 17:36:48 +0100 | [diff] [blame] | 802 | /* alerts the data layer, trying to wake it up by all means, following |
| 803 | * this sequence : |
| 804 | * - if the h2s' data layer is subscribed to recv, then it's woken up for recv |
| 805 | * - if its subscribed to send, then it's woken up for send |
| 806 | * - if it was subscribed to neither, its ->wake() callback is called |
| 807 | * It is safe to call this function with a closed stream which doesn't have a |
| 808 | * conn_stream anymore. |
| 809 | */ |
| 810 | static void __maybe_unused h2s_alert(struct h2s *h2s) |
| 811 | { |
| 812 | if (h2s->recv_wait || h2s->send_wait) { |
| 813 | h2s_notify_recv(h2s); |
| 814 | h2s_notify_send(h2s); |
| 815 | } |
| 816 | else if (h2s->cs && h2s->cs->data_cb->wake != NULL) |
| 817 | h2s->cs->data_cb->wake(h2s->cs); |
| 818 | } |
| 819 | |
Willy Tarreau | e482074 | 2017-07-27 13:37:23 +0200 | [diff] [blame] | 820 | /* writes the 24-bit frame size <len> at address <frame> */ |
Willy Tarreau | 1f09467 | 2017-11-20 21:27:45 +0100 | [diff] [blame] | 821 | static inline __maybe_unused void h2_set_frame_size(void *frame, uint32_t len) |
Willy Tarreau | e482074 | 2017-07-27 13:37:23 +0200 | [diff] [blame] | 822 | { |
| 823 | uint8_t *out = frame; |
| 824 | |
| 825 | *out = len >> 16; |
| 826 | write_n16(out + 1, len); |
| 827 | } |
| 828 | |
Willy Tarreau | 54c1506 | 2017-10-10 17:10:03 +0200 | [diff] [blame] | 829 | /* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the |
| 830 | * current pointer, dealing with wrapping, and stores the result in <dst>. It's |
| 831 | * the caller's responsibility to verify that there are at least <bytes> bytes |
Willy Tarreau | 9c7f2d1 | 2018-06-15 11:51:32 +0200 | [diff] [blame] | 832 | * available in the buffer's input prior to calling this function. The buffer |
| 833 | * is assumed not to hold any output data. |
Willy Tarreau | 54c1506 | 2017-10-10 17:10:03 +0200 | [diff] [blame] | 834 | */ |
Willy Tarreau | 1f09467 | 2017-11-20 21:27:45 +0100 | [diff] [blame] | 835 | static inline __maybe_unused void h2_get_buf_bytes(void *dst, size_t bytes, |
Willy Tarreau | 54c1506 | 2017-10-10 17:10:03 +0200 | [diff] [blame] | 836 | const struct buffer *b, int o) |
| 837 | { |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 838 | readv_bytes(dst, bytes, b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b)); |
Willy Tarreau | 54c1506 | 2017-10-10 17:10:03 +0200 | [diff] [blame] | 839 | } |
| 840 | |
Willy Tarreau | 1f09467 | 2017-11-20 21:27:45 +0100 | [diff] [blame] | 841 | static inline __maybe_unused uint16_t h2_get_n16(const struct buffer *b, int o) |
Willy Tarreau | 54c1506 | 2017-10-10 17:10:03 +0200 | [diff] [blame] | 842 | { |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 843 | return readv_n16(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b)); |
Willy Tarreau | 54c1506 | 2017-10-10 17:10:03 +0200 | [diff] [blame] | 844 | } |
| 845 | |
Willy Tarreau | 1f09467 | 2017-11-20 21:27:45 +0100 | [diff] [blame] | 846 | static inline __maybe_unused uint32_t h2_get_n32(const struct buffer *b, int o) |
Willy Tarreau | 54c1506 | 2017-10-10 17:10:03 +0200 | [diff] [blame] | 847 | { |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 848 | return readv_n32(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b)); |
Willy Tarreau | 54c1506 | 2017-10-10 17:10:03 +0200 | [diff] [blame] | 849 | } |
| 850 | |
Willy Tarreau | 1f09467 | 2017-11-20 21:27:45 +0100 | [diff] [blame] | 851 | static inline __maybe_unused uint64_t h2_get_n64(const struct buffer *b, int o) |
Willy Tarreau | 54c1506 | 2017-10-10 17:10:03 +0200 | [diff] [blame] | 852 | { |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 853 | return readv_n64(b_peek(b, o), b_wrap(b) - b_peek(b, o), b_orig(b)); |
Willy Tarreau | 54c1506 | 2017-10-10 17:10:03 +0200 | [diff] [blame] | 854 | } |
| 855 | |
| 856 | |
Willy Tarreau | a4428bd | 2018-12-22 18:11:41 +0100 | [diff] [blame] | 857 | /* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>. |
| 858 | * The algorithm is not obvious. It turns out that H2 headers are neither |
| 859 | * aligned nor do they use regular sizes. And to add to the trouble, the buffer |
| 860 | * may wrap so each byte read must be checked. The header is formed like this : |
Willy Tarreau | 715d531 | 2017-07-11 15:20:24 +0200 | [diff] [blame] | 861 | * |
| 862 | * b0 b1 b2 b3 b4 b5..b8 |
| 863 | * +----------+---------+--------+----+----+----------------------+ |
| 864 | * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)| |
| 865 | * +----------+---------+--------+----+----+----------------------+ |
| 866 | * |
| 867 | * Here we read a big-endian 64 bit word from h[1]. This way in a single read |
| 868 | * we get the sid properly aligned and ordered, and 16 bits of len properly |
| 869 | * ordered as well. The type and flags can be extracted using bit shifts from |
| 870 | * the word, and only one extra read is needed to fetch len[16:23]. |
Willy Tarreau | 9c7f2d1 | 2018-06-15 11:51:32 +0200 | [diff] [blame] | 871 | * Returns zero if some bytes are missing, otherwise non-zero on success. The |
| 872 | * buffer is assumed not to contain any output data. |
Willy Tarreau | 715d531 | 2017-07-11 15:20:24 +0200 | [diff] [blame] | 873 | */ |
Willy Tarreau | a4428bd | 2018-12-22 18:11:41 +0100 | [diff] [blame] | 874 | static __maybe_unused int h2_peek_frame_hdr(const struct buffer *b, int o, struct h2_fh *h) |
Willy Tarreau | 715d531 | 2017-07-11 15:20:24 +0200 | [diff] [blame] | 875 | { |
| 876 | uint64_t w; |
| 877 | |
Willy Tarreau | a4428bd | 2018-12-22 18:11:41 +0100 | [diff] [blame] | 878 | if (b_data(b) < o + 9) |
Willy Tarreau | 715d531 | 2017-07-11 15:20:24 +0200 | [diff] [blame] | 879 | return 0; |
| 880 | |
Willy Tarreau | a4428bd | 2018-12-22 18:11:41 +0100 | [diff] [blame] | 881 | w = h2_get_n64(b, o + 1); |
| 882 | h->len = *(uint8_t*)b_peek(b, o) << 16; |
Willy Tarreau | 715d531 | 2017-07-11 15:20:24 +0200 | [diff] [blame] | 883 | h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */ |
| 884 | h->ff = w >> 32; |
| 885 | h->ft = w >> 40; |
| 886 | h->len += w >> 48; |
| 887 | return 1; |
| 888 | } |
| 889 | |
| 890 | /* skip the next 9 bytes corresponding to the frame header possibly parsed by |
| 891 | * h2_peek_frame_hdr() above. |
| 892 | */ |
Willy Tarreau | 1f09467 | 2017-11-20 21:27:45 +0100 | [diff] [blame] | 893 | static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b) |
Willy Tarreau | 715d531 | 2017-07-11 15:20:24 +0200 | [diff] [blame] | 894 | { |
Willy Tarreau | e5f12ce | 2018-06-15 10:28:05 +0200 | [diff] [blame] | 895 | b_del(b, 9); |
Willy Tarreau | 715d531 | 2017-07-11 15:20:24 +0200 | [diff] [blame] | 896 | } |
| 897 | |
| 898 | /* same as above, automatically advances the buffer on success */ |
Willy Tarreau | 1f09467 | 2017-11-20 21:27:45 +0100 | [diff] [blame] | 899 | static inline __maybe_unused int h2_get_frame_hdr(struct buffer *b, struct h2_fh *h) |
Willy Tarreau | 715d531 | 2017-07-11 15:20:24 +0200 | [diff] [blame] | 900 | { |
| 901 | int ret; |
| 902 | |
Willy Tarreau | a4428bd | 2018-12-22 18:11:41 +0100 | [diff] [blame] | 903 | ret = h2_peek_frame_hdr(b, 0, h); |
Willy Tarreau | 715d531 | 2017-07-11 15:20:24 +0200 | [diff] [blame] | 904 | if (ret > 0) |
| 905 | h2_skip_frame_hdr(b); |
| 906 | return ret; |
| 907 | } |
| 908 | |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 909 | /* marks stream <h2s> as CLOSED and decrement the number of active streams for |
| 910 | * its connection if the stream was not yet closed. Please use this exclusively |
| 911 | * before closing a stream to ensure stream count is well maintained. |
Willy Tarreau | 91bfdd7 | 2017-12-14 12:00:14 +0100 | [diff] [blame] | 912 | */ |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 913 | static inline void h2s_close(struct h2s *h2s) |
Willy Tarreau | 91bfdd7 | 2017-12-14 12:00:14 +0100 | [diff] [blame] | 914 | { |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 915 | if (h2s->st != H2_SS_CLOSED) { |
Willy Tarreau | 91bfdd7 | 2017-12-14 12:00:14 +0100 | [diff] [blame] | 916 | h2s->h2c->nb_streams--; |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 917 | if (!h2s->id) |
| 918 | h2s->h2c->nb_reserved--; |
Willy Tarreau | a27db38 | 2019-03-25 18:13:16 +0100 | [diff] [blame] | 919 | if (h2s->cs) { |
Willy Tarreau | a27db38 | 2019-03-25 18:13:16 +0100 | [diff] [blame] | 920 | if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf)) |
| 921 | h2s_notify_recv(h2s); |
| 922 | } |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 923 | } |
Willy Tarreau | 91bfdd7 | 2017-12-14 12:00:14 +0100 | [diff] [blame] | 924 | h2s->st = H2_SS_CLOSED; |
| 925 | } |
| 926 | |
Willy Tarreau | 71049cc | 2018-03-28 13:56:39 +0200 | [diff] [blame] | 927 | /* detaches an H2 stream from its H2C and releases it to the H2S pool. */ |
| 928 | static void h2s_destroy(struct h2s *h2s) |
Willy Tarreau | 0a10de6 | 2018-03-01 16:27:53 +0100 | [diff] [blame] | 929 | { |
| 930 | h2s_close(h2s); |
| 931 | eb32_delete(&h2s->by_id); |
Olivier Houchard | 638b799 | 2018-08-16 15:41:52 +0200 | [diff] [blame] | 932 | if (b_size(&h2s->rxbuf)) { |
| 933 | b_free(&h2s->rxbuf); |
| 934 | offer_buffers(NULL, tasks_run_queue); |
| 935 | } |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 936 | if (h2s->send_wait != NULL) |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 937 | h2s->send_wait->events &= ~SUB_RETRY_SEND; |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 938 | if (h2s->recv_wait != NULL) |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 939 | h2s->recv_wait->events &= ~SUB_RETRY_RECV; |
Joseph Herlant | d77575d | 2018-11-25 10:54:45 -0800 | [diff] [blame] | 940 | /* There's no need to explicitly call unsubscribe here, the only |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 941 | * reference left would be in the h2c send_list/fctl_list, and if |
| 942 | * we're in it, we're getting out anyway |
| 943 | */ |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 944 | LIST_DEL_INIT(&h2s->list); |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 945 | if (LIST_ADDED(&h2s->sending_list)) { |
Willy Tarreau | 86eded6 | 2019-06-14 14:47:49 +0200 | [diff] [blame] | 946 | tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet); |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 947 | LIST_DEL_INIT(&h2s->sending_list); |
| 948 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 949 | tasklet_free(h2s->wait_event.tasklet); |
Willy Tarreau | 0a10de6 | 2018-03-01 16:27:53 +0100 | [diff] [blame] | 950 | pool_free(pool_head_h2s, h2s); |
| 951 | } |
| 952 | |
Willy Tarreau | a8e4954 | 2018-10-03 18:53:55 +0200 | [diff] [blame] | 953 | /* allocates a new stream <id> for connection <h2c> and adds it into h2c's |
| 954 | * stream tree. In case of error, nothing is added and NULL is returned. The |
| 955 | * causes of errors can be any failed memory allocation. The caller is |
| 956 | * responsible for checking if the connection may support an extra stream |
| 957 | * prior to calling this function. |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 958 | */ |
Willy Tarreau | a8e4954 | 2018-10-03 18:53:55 +0200 | [diff] [blame] | 959 | static struct h2s *h2s_new(struct h2c *h2c, int id) |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 960 | { |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 961 | struct h2s *h2s; |
| 962 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 963 | h2s = pool_alloc(pool_head_h2s); |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 964 | if (!h2s) |
| 965 | goto out; |
| 966 | |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 967 | h2s->wait_event.tasklet = tasklet_new(); |
| 968 | if (!h2s->wait_event.tasklet) { |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 969 | pool_free(pool_head_h2s, h2s); |
| 970 | goto out; |
| 971 | } |
| 972 | h2s->send_wait = NULL; |
| 973 | h2s->recv_wait = NULL; |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 974 | h2s->wait_event.tasklet->process = h2_deferred_shut; |
| 975 | h2s->wait_event.tasklet->context = h2s; |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 976 | h2s->wait_event.events = 0; |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 977 | LIST_INIT(&h2s->list); |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 978 | LIST_INIT(&h2s->sending_list); |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 979 | h2s->h2c = h2c; |
Willy Tarreau | a8e4954 | 2018-10-03 18:53:55 +0200 | [diff] [blame] | 980 | h2s->cs = NULL; |
Willy Tarreau | 5a9c875 | 2019-08-02 07:52:08 +0200 | [diff] [blame] | 981 | h2s->sws = 0; |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 982 | h2s->flags = H2_SF_NONE; |
| 983 | h2s->errcode = H2_ERR_NO_ERROR; |
| 984 | h2s->st = H2_SS_IDLE; |
Willy Tarreau | 9c5e22e | 2018-09-11 19:22:14 +0200 | [diff] [blame] | 985 | h2s->status = 0; |
Willy Tarreau | 1915ca2 | 2019-01-24 11:49:37 +0100 | [diff] [blame] | 986 | h2s->body_len = 0; |
Olivier Houchard | 638b799 | 2018-08-16 15:41:52 +0200 | [diff] [blame] | 987 | h2s->rxbuf = BUF_NULL; |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 988 | |
| 989 | if (h2c->flags & H2_CF_IS_BACK) { |
| 990 | h1m_init_req(&h2s->h1m); |
| 991 | h2s->h1m.err_pos = -1; // don't care about errors on the request path |
| 992 | h2s->h1m.flags |= H1_MF_TOLOWER; |
| 993 | } else { |
| 994 | h1m_init_res(&h2s->h1m); |
| 995 | h2s->h1m.err_pos = -1; // don't care about errors on the response path |
| 996 | h2s->h1m.flags |= H1_MF_TOLOWER; |
| 997 | } |
| 998 | |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 999 | h2s->by_id.key = h2s->id = id; |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 1000 | if (id > 0) |
| 1001 | h2c->max_id = id; |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 1002 | else |
| 1003 | h2c->nb_reserved++; |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 1004 | |
| 1005 | eb32_insert(&h2c->streams_by_id, &h2s->by_id); |
Willy Tarreau | 4974561 | 2017-12-03 18:56:02 +0100 | [diff] [blame] | 1006 | h2c->nb_streams++; |
Willy Tarreau | e9634bd | 2019-01-23 10:25:10 +0100 | [diff] [blame] | 1007 | h2c->stream_cnt++; |
Willy Tarreau | a8e4954 | 2018-10-03 18:53:55 +0200 | [diff] [blame] | 1008 | |
| 1009 | return h2s; |
| 1010 | |
| 1011 | out_free_h2s: |
| 1012 | pool_free(pool_head_h2s, h2s); |
| 1013 | out: |
| 1014 | return NULL; |
| 1015 | } |
| 1016 | |
| 1017 | /* creates a new stream <id> on the h2c connection and returns it, or NULL in |
| 1018 | * case of memory allocation error. |
| 1019 | */ |
| 1020 | static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id) |
| 1021 | { |
| 1022 | struct session *sess = h2c->conn->owner; |
| 1023 | struct conn_stream *cs; |
| 1024 | struct h2s *h2s; |
| 1025 | |
| 1026 | if (h2c->nb_streams >= h2_settings_max_concurrent_streams) |
| 1027 | goto out; |
| 1028 | |
| 1029 | h2s = h2s_new(h2c, id); |
| 1030 | if (!h2s) |
| 1031 | goto out; |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 1032 | |
| 1033 | cs = cs_new(h2c->conn); |
| 1034 | if (!cs) |
| 1035 | goto out_close; |
| 1036 | |
Olivier Houchard | 746fb77 | 2018-12-15 19:42:00 +0100 | [diff] [blame] | 1037 | cs->flags |= CS_FL_NOT_FIRST; |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 1038 | h2s->cs = cs; |
| 1039 | cs->ctx = h2s; |
Willy Tarreau | 7ac60e8 | 2018-07-19 09:04:05 +0200 | [diff] [blame] | 1040 | h2c->nb_cs++; |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 1041 | |
| 1042 | if (stream_create_from_cs(cs) < 0) |
| 1043 | goto out_free_cs; |
| 1044 | |
Willy Tarreau | 590a051 | 2018-09-05 11:56:48 +0200 | [diff] [blame] | 1045 | /* We want the accept date presented to the next stream to be the one |
| 1046 | * we have now, the handshake time to be null (since the next stream |
| 1047 | * is not delayed by a handshake), and the idle time to count since |
| 1048 | * right now. |
| 1049 | */ |
| 1050 | sess->accept_date = date; |
| 1051 | sess->tv_accept = now; |
| 1052 | sess->t_handshake = 0; |
| 1053 | |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 1054 | /* OK done, the stream lives its own life now */ |
Willy Tarreau | fa1d357 | 2019-01-31 10:31:51 +0100 | [diff] [blame] | 1055 | if (h2_frt_has_too_many_cs(h2c)) |
Willy Tarreau | f210191 | 2018-07-19 10:11:38 +0200 | [diff] [blame] | 1056 | h2c->flags |= H2_CF_DEM_TOOMANY; |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 1057 | return h2s; |
| 1058 | |
| 1059 | out_free_cs: |
Willy Tarreau | 7ac60e8 | 2018-07-19 09:04:05 +0200 | [diff] [blame] | 1060 | h2c->nb_cs--; |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 1061 | cs_free(cs); |
Olivier Houchard | 58d87f3 | 2019-05-29 16:44:17 +0200 | [diff] [blame] | 1062 | h2s->cs = NULL; |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 1063 | out_close: |
Willy Tarreau | 71049cc | 2018-03-28 13:56:39 +0200 | [diff] [blame] | 1064 | h2s_destroy(h2s); |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 1065 | out: |
Willy Tarreau | 45efc07 | 2018-10-03 18:27:52 +0200 | [diff] [blame] | 1066 | sess_log(sess); |
| 1067 | return NULL; |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 1068 | } |
| 1069 | |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 1070 | /* allocates a new stream associated to conn_stream <cs> on the h2c connection |
| 1071 | * and returns it, or NULL in case of memory allocation error or if the highest |
| 1072 | * possible stream ID was reached. |
| 1073 | */ |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 1074 | static struct h2s *h2c_bck_stream_new(struct h2c *h2c, struct conn_stream *cs, struct session *sess) |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 1075 | { |
| 1076 | struct h2s *h2s = NULL; |
| 1077 | |
Willy Tarreau | 8694978 | 2019-01-31 10:42:05 +0100 | [diff] [blame] | 1078 | if (h2c->nb_streams >= h2c->streams_limit) |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 1079 | goto out; |
| 1080 | |
Willy Tarreau | a80dca8 | 2019-01-24 17:08:28 +0100 | [diff] [blame] | 1081 | if (h2_streams_left(h2c) < 1) |
| 1082 | goto out; |
| 1083 | |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 1084 | /* Defer choosing the ID until we send the first message to create the stream */ |
| 1085 | h2s = h2s_new(h2c, 0); |
| 1086 | if (!h2s) |
| 1087 | goto out; |
| 1088 | |
| 1089 | h2s->cs = cs; |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 1090 | h2s->sess = sess; |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 1091 | cs->ctx = h2s; |
| 1092 | h2c->nb_cs++; |
| 1093 | |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 1094 | out: |
| 1095 | return h2s; |
| 1096 | } |
| 1097 | |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1098 | /* try to send a settings frame on the connection. Returns > 0 on success, 0 if |
| 1099 | * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for |
| 1100 | * the various settings codes. |
| 1101 | */ |
Willy Tarreau | 7f0cc49 | 2018-10-08 07:13:08 +0200 | [diff] [blame] | 1102 | static int h2c_send_settings(struct h2c *h2c) |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1103 | { |
| 1104 | struct buffer *res; |
| 1105 | char buf_data[100]; // enough for 15 settings |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1106 | struct buffer buf; |
Willy Tarreau | a24b35c | 2019-02-21 13:24:36 +0100 | [diff] [blame] | 1107 | int mfs; |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1108 | int ret; |
| 1109 | |
| 1110 | if (h2c_mux_busy(h2c, NULL)) { |
| 1111 | h2c->flags |= H2_CF_DEM_MBUSY; |
| 1112 | return 0; |
| 1113 | } |
| 1114 | |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1115 | chunk_init(&buf, buf_data, sizeof(buf_data)); |
| 1116 | chunk_memcpy(&buf, |
| 1117 | "\x00\x00\x00" /* length : 0 for now */ |
| 1118 | "\x04\x00" /* type : 4 (settings), flags : 0 */ |
| 1119 | "\x00\x00\x00\x00", /* stream ID : 0 */ |
| 1120 | 9); |
| 1121 | |
Willy Tarreau | 0bbad6b | 2019-02-26 16:01:52 +0100 | [diff] [blame] | 1122 | if (h2c->flags & H2_CF_IS_BACK) { |
| 1123 | /* send settings_enable_push=0 */ |
| 1124 | chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6); |
| 1125 | } |
| 1126 | |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1127 | if (h2_settings_header_table_size != 4096) { |
| 1128 | char str[6] = "\x00\x01"; /* header_table_size */ |
| 1129 | |
| 1130 | write_n32(str + 2, h2_settings_header_table_size); |
| 1131 | chunk_memcat(&buf, str, 6); |
| 1132 | } |
| 1133 | |
| 1134 | if (h2_settings_initial_window_size != 65535) { |
| 1135 | char str[6] = "\x00\x04"; /* initial_window_size */ |
| 1136 | |
| 1137 | write_n32(str + 2, h2_settings_initial_window_size); |
| 1138 | chunk_memcat(&buf, str, 6); |
| 1139 | } |
| 1140 | |
| 1141 | if (h2_settings_max_concurrent_streams != 0) { |
| 1142 | char str[6] = "\x00\x03"; /* max_concurrent_streams */ |
| 1143 | |
| 1144 | /* Note: 0 means "unlimited" for haproxy's config but not for |
| 1145 | * the protocol, so never send this value! |
| 1146 | */ |
| 1147 | write_n32(str + 2, h2_settings_max_concurrent_streams); |
| 1148 | chunk_memcat(&buf, str, 6); |
| 1149 | } |
| 1150 | |
Willy Tarreau | a24b35c | 2019-02-21 13:24:36 +0100 | [diff] [blame] | 1151 | mfs = h2_settings_max_frame_size; |
| 1152 | if (mfs > global.tune.bufsize) |
| 1153 | mfs = global.tune.bufsize; |
| 1154 | |
| 1155 | if (!mfs) |
| 1156 | mfs = global.tune.bufsize; |
| 1157 | |
| 1158 | if (mfs != 16384) { |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1159 | char str[6] = "\x00\x05"; /* max_frame_size */ |
| 1160 | |
| 1161 | /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to |
| 1162 | * match bufsize - rewrite size, but at the moment it seems |
| 1163 | * that clients don't take care of it. |
| 1164 | */ |
Willy Tarreau | a24b35c | 2019-02-21 13:24:36 +0100 | [diff] [blame] | 1165 | write_n32(str + 2, mfs); |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1166 | chunk_memcat(&buf, str, 6); |
| 1167 | } |
| 1168 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1169 | h2_set_frame_size(buf.area, buf.data - 9); |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1170 | |
| 1171 | res = br_tail(h2c->mbuf); |
| 1172 | retry: |
| 1173 | if (!h2_get_buf(h2c, res)) { |
| 1174 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 1175 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1176 | return 0; |
| 1177 | } |
| 1178 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1179 | ret = b_istput(res, ist2(buf.area, buf.data)); |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1180 | if (unlikely(ret <= 0)) { |
| 1181 | if (!ret) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1182 | if ((res = br_tail_add(h2c->mbuf)) != NULL) |
| 1183 | goto retry; |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1184 | h2c->flags |= H2_CF_MUX_MFULL; |
| 1185 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1186 | return 0; |
| 1187 | } |
| 1188 | else { |
| 1189 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
| 1190 | return 0; |
| 1191 | } |
| 1192 | } |
| 1193 | return ret; |
| 1194 | } |
| 1195 | |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 1196 | /* Try to receive a connection preface, then upon success try to send our |
| 1197 | * preface which is a SETTINGS frame. Returns > 0 on success or zero on |
| 1198 | * missing data. It may return an error in h2c. |
| 1199 | */ |
| 1200 | static int h2c_frt_recv_preface(struct h2c *h2c) |
| 1201 | { |
| 1202 | int ret1; |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1203 | int ret2; |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 1204 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1205 | ret1 = b_isteq(&h2c->dbuf, 0, b_data(&h2c->dbuf), ist(H2_CONN_PREFACE)); |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 1206 | |
| 1207 | if (unlikely(ret1 <= 0)) { |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 1208 | if (ret1 < 0) |
| 1209 | sess_log(h2c->conn->owner); |
| 1210 | |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 1211 | if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn)) |
| 1212 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
| 1213 | return 0; |
| 1214 | } |
| 1215 | |
Willy Tarreau | 7f0cc49 | 2018-10-08 07:13:08 +0200 | [diff] [blame] | 1216 | ret2 = h2c_send_settings(h2c); |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1217 | if (ret2 > 0) |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1218 | b_del(&h2c->dbuf, ret1); |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 1219 | |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1220 | return ret2; |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 1221 | } |
| 1222 | |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 1223 | /* Try to send a connection preface, then upon success try to send our |
| 1224 | * preface which is a SETTINGS frame. Returns > 0 on success or zero on |
| 1225 | * missing data. It may return an error in h2c. |
| 1226 | */ |
| 1227 | static int h2c_bck_send_preface(struct h2c *h2c) |
| 1228 | { |
| 1229 | struct buffer *res; |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1230 | int ret; |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 1231 | |
| 1232 | if (h2c_mux_busy(h2c, NULL)) { |
| 1233 | h2c->flags |= H2_CF_DEM_MBUSY; |
| 1234 | return 0; |
| 1235 | } |
| 1236 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1237 | res = br_tail(h2c->mbuf); |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1238 | retry: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1239 | if (!h2_get_buf(h2c, res)) { |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 1240 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 1241 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1242 | return 0; |
| 1243 | } |
| 1244 | |
| 1245 | if (!b_data(res)) { |
| 1246 | /* preface not yet sent */ |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1247 | ret = b_istput(res, ist(H2_CONN_PREFACE)); |
| 1248 | if (unlikely(ret <= 0)) { |
| 1249 | if (!ret) { |
| 1250 | if ((res = br_tail_add(h2c->mbuf)) != NULL) |
| 1251 | goto retry; |
| 1252 | h2c->flags |= H2_CF_MUX_MFULL; |
| 1253 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1254 | return 0; |
| 1255 | } |
| 1256 | else { |
| 1257 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
| 1258 | return 0; |
| 1259 | } |
| 1260 | } |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 1261 | } |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 1262 | return h2c_send_settings(h2c); |
| 1263 | } |
| 1264 | |
Willy Tarreau | 081d472 | 2017-05-16 21:51:05 +0200 | [diff] [blame] | 1265 | /* try to send a GOAWAY frame on the connection to report an error or a graceful |
| 1266 | * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero |
| 1267 | * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it |
| 1268 | * from h2c->max_id if it's not set yet (<0). In case of lack of room to write |
| 1269 | * the message, it subscribes the requester (either <h2s> or <h2c>) to future |
| 1270 | * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED |
| 1271 | * on unrecoverable failure. It will not attempt to send one again in this last |
| 1272 | * case so that it is safe to use h2c_error() to report such errors. |
| 1273 | */ |
| 1274 | static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s) |
| 1275 | { |
| 1276 | struct buffer *res; |
| 1277 | char str[17]; |
| 1278 | int ret; |
| 1279 | |
| 1280 | if (h2c->flags & H2_CF_GOAWAY_FAILED) |
| 1281 | return 1; // claim that it worked |
| 1282 | |
| 1283 | if (h2c_mux_busy(h2c, h2s)) { |
| 1284 | if (h2s) |
| 1285 | h2s->flags |= H2_SF_BLK_MBUSY; |
| 1286 | else |
| 1287 | h2c->flags |= H2_CF_DEM_MBUSY; |
| 1288 | return 0; |
| 1289 | } |
| 1290 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1291 | /* len: 8, type: 7, flags: none, sid: 0 */ |
| 1292 | memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9); |
| 1293 | |
| 1294 | if (h2c->last_sid < 0) |
| 1295 | h2c->last_sid = h2c->max_id; |
| 1296 | |
| 1297 | write_n32(str + 9, h2c->last_sid); |
| 1298 | write_n32(str + 13, h2c->errcode); |
| 1299 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1300 | res = br_tail(h2c->mbuf); |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1301 | retry: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1302 | if (!h2_get_buf(h2c, res)) { |
Willy Tarreau | 081d472 | 2017-05-16 21:51:05 +0200 | [diff] [blame] | 1303 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 1304 | if (h2s) |
| 1305 | h2s->flags |= H2_SF_BLK_MROOM; |
| 1306 | else |
| 1307 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1308 | return 0; |
| 1309 | } |
| 1310 | |
Willy Tarreau | ea1b06d | 2018-07-12 09:02:47 +0200 | [diff] [blame] | 1311 | ret = b_istput(res, ist2(str, 17)); |
Willy Tarreau | 081d472 | 2017-05-16 21:51:05 +0200 | [diff] [blame] | 1312 | if (unlikely(ret <= 0)) { |
| 1313 | if (!ret) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1314 | if ((res = br_tail_add(h2c->mbuf)) != NULL) |
| 1315 | goto retry; |
Willy Tarreau | 081d472 | 2017-05-16 21:51:05 +0200 | [diff] [blame] | 1316 | h2c->flags |= H2_CF_MUX_MFULL; |
| 1317 | if (h2s) |
| 1318 | h2s->flags |= H2_SF_BLK_MROOM; |
| 1319 | else |
| 1320 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1321 | return 0; |
| 1322 | } |
| 1323 | else { |
| 1324 | /* we cannot report this error using GOAWAY, so we mark |
| 1325 | * it and claim a success. |
| 1326 | */ |
| 1327 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
| 1328 | h2c->flags |= H2_CF_GOAWAY_FAILED; |
| 1329 | return 1; |
| 1330 | } |
| 1331 | } |
| 1332 | h2c->flags |= H2_CF_GOAWAY_SENT; |
| 1333 | return ret; |
| 1334 | } |
| 1335 | |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1336 | /* Try to send an RST_STREAM frame on the connection for the indicated stream |
| 1337 | * during mux operations. This stream must be valid and cannot be closed |
| 1338 | * already. h2s->id will be used for the stream ID and h2s->errcode will be |
| 1339 | * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was |
| 1340 | * not yet. |
| 1341 | * |
| 1342 | * Returns > 0 on success or zero if nothing was done. In case of lack of room |
| 1343 | * to write the message, it subscribes the stream to future notifications. |
| 1344 | */ |
| 1345 | static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s) |
| 1346 | { |
| 1347 | struct buffer *res; |
| 1348 | char str[13]; |
| 1349 | int ret; |
| 1350 | |
| 1351 | if (!h2s || h2s->st == H2_SS_CLOSED) |
| 1352 | return 1; |
| 1353 | |
Willy Tarreau | 8adae7c | 2018-03-22 17:37:05 +0100 | [diff] [blame] | 1354 | /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a |
| 1355 | * RST_STREAM in response to a RST_STREAM frame. |
| 1356 | */ |
Willy Tarreau | bf9a20b | 2019-08-06 10:01:40 +0200 | [diff] [blame] | 1357 | if (h2c->dsi == h2s->id && h2c->dft == H2_FT_RST_STREAM) { |
Willy Tarreau | 8adae7c | 2018-03-22 17:37:05 +0100 | [diff] [blame] | 1358 | ret = 1; |
| 1359 | goto ignore; |
| 1360 | } |
| 1361 | |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1362 | if (h2c_mux_busy(h2c, h2s)) { |
| 1363 | h2s->flags |= H2_SF_BLK_MBUSY; |
| 1364 | return 0; |
| 1365 | } |
| 1366 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1367 | /* len: 4, type: 3, flags: none */ |
| 1368 | memcpy(str, "\x00\x00\x04\x03\x00", 5); |
| 1369 | write_n32(str + 5, h2s->id); |
| 1370 | write_n32(str + 9, h2s->errcode); |
| 1371 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1372 | res = br_tail(h2c->mbuf); |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1373 | retry: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1374 | if (!h2_get_buf(h2c, res)) { |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1375 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 1376 | h2s->flags |= H2_SF_BLK_MROOM; |
| 1377 | return 0; |
| 1378 | } |
| 1379 | |
Willy Tarreau | ea1b06d | 2018-07-12 09:02:47 +0200 | [diff] [blame] | 1380 | ret = b_istput(res, ist2(str, 13)); |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1381 | if (unlikely(ret <= 0)) { |
| 1382 | if (!ret) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1383 | if ((res = br_tail_add(h2c->mbuf)) != NULL) |
| 1384 | goto retry; |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1385 | h2c->flags |= H2_CF_MUX_MFULL; |
| 1386 | h2s->flags |= H2_SF_BLK_MROOM; |
| 1387 | return 0; |
| 1388 | } |
| 1389 | else { |
| 1390 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
| 1391 | return 0; |
| 1392 | } |
| 1393 | } |
| 1394 | |
Willy Tarreau | 8adae7c | 2018-03-22 17:37:05 +0100 | [diff] [blame] | 1395 | ignore: |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1396 | h2s->flags |= H2_SF_RST_SENT; |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 1397 | h2s_close(h2s); |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1398 | return ret; |
| 1399 | } |
| 1400 | |
| 1401 | /* Try to send an RST_STREAM frame on the connection for the stream being |
| 1402 | * demuxed using h2c->dsi for the stream ID. It will use h2s->errcode as the |
Willy Tarreau | e6888ff | 2018-12-23 18:26:26 +0100 | [diff] [blame] | 1403 | * error code, even if the stream is one of the dummy ones, and will update |
| 1404 | * h2s->st to H2_SS_CLOSED if it was not yet. |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1405 | * |
| 1406 | * Returns > 0 on success or zero if nothing was done. In case of lack of room |
| 1407 | * to write the message, it blocks the demuxer and subscribes it to future |
Joseph Herlant | d77575d | 2018-11-25 10:54:45 -0800 | [diff] [blame] | 1408 | * notifications. It's worth mentioning that an RST may even be sent for a |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1409 | * closed stream. |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 1410 | */ |
| 1411 | static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s) |
| 1412 | { |
| 1413 | struct buffer *res; |
| 1414 | char str[13]; |
| 1415 | int ret; |
| 1416 | |
Willy Tarreau | 8adae7c | 2018-03-22 17:37:05 +0100 | [diff] [blame] | 1417 | /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a |
| 1418 | * RST_STREAM in response to a RST_STREAM frame. |
| 1419 | */ |
| 1420 | if (h2c->dft == H2_FT_RST_STREAM) { |
| 1421 | ret = 1; |
| 1422 | goto ignore; |
| 1423 | } |
| 1424 | |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 1425 | if (h2c_mux_busy(h2c, h2s)) { |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1426 | h2c->flags |= H2_CF_DEM_MBUSY; |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 1427 | return 0; |
| 1428 | } |
| 1429 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1430 | /* len: 4, type: 3, flags: none */ |
| 1431 | memcpy(str, "\x00\x00\x04\x03\x00", 5); |
| 1432 | |
| 1433 | write_n32(str + 5, h2c->dsi); |
| 1434 | write_n32(str + 9, h2s->errcode); |
| 1435 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1436 | res = br_tail(h2c->mbuf); |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1437 | retry: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1438 | if (!h2_get_buf(h2c, res)) { |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 1439 | h2c->flags |= H2_CF_MUX_MALLOC; |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1440 | h2c->flags |= H2_CF_DEM_MROOM; |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 1441 | return 0; |
| 1442 | } |
| 1443 | |
Willy Tarreau | ea1b06d | 2018-07-12 09:02:47 +0200 | [diff] [blame] | 1444 | ret = b_istput(res, ist2(str, 13)); |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 1445 | if (unlikely(ret <= 0)) { |
| 1446 | if (!ret) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1447 | if ((res = br_tail_add(h2c->mbuf)) != NULL) |
| 1448 | goto retry; |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 1449 | h2c->flags |= H2_CF_MUX_MFULL; |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1450 | h2c->flags |= H2_CF_DEM_MROOM; |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 1451 | return 0; |
| 1452 | } |
| 1453 | else { |
| 1454 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
| 1455 | return 0; |
| 1456 | } |
| 1457 | } |
| 1458 | |
Willy Tarreau | 8adae7c | 2018-03-22 17:37:05 +0100 | [diff] [blame] | 1459 | ignore: |
Willy Tarreau | ab0e1da | 2018-10-05 10:16:37 +0200 | [diff] [blame] | 1460 | if (h2s->id) { |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 1461 | h2s->flags |= H2_SF_RST_SENT; |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 1462 | h2s_close(h2s); |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1463 | } |
| 1464 | |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 1465 | return ret; |
| 1466 | } |
| 1467 | |
Willy Tarreau | c7576ea | 2017-10-29 22:00:09 +0100 | [diff] [blame] | 1468 | /* try to send an empty DATA frame with the ES flag set to notify about the |
| 1469 | * end of stream and match a shutdown(write). If an ES was already sent as |
| 1470 | * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0 |
| 1471 | * on success or zero if nothing was done. In case of lack of room to write the |
| 1472 | * message, it subscribes the requesting stream to future notifications. |
| 1473 | */ |
| 1474 | static int h2_send_empty_data_es(struct h2s *h2s) |
| 1475 | { |
| 1476 | struct h2c *h2c = h2s->h2c; |
| 1477 | struct buffer *res; |
| 1478 | char str[9]; |
| 1479 | int ret; |
| 1480 | |
Willy Tarreau | 721c974 | 2017-11-07 11:05:42 +0100 | [diff] [blame] | 1481 | if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_ERROR || h2s->st == H2_SS_CLOSED) |
Willy Tarreau | c7576ea | 2017-10-29 22:00:09 +0100 | [diff] [blame] | 1482 | return 1; |
| 1483 | |
| 1484 | if (h2c_mux_busy(h2c, h2s)) { |
| 1485 | h2s->flags |= H2_SF_BLK_MBUSY; |
| 1486 | return 0; |
| 1487 | } |
| 1488 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1489 | /* len: 0x000000, type: 0(DATA), flags: ES=1 */ |
| 1490 | memcpy(str, "\x00\x00\x00\x00\x01", 5); |
| 1491 | write_n32(str + 5, h2s->id); |
| 1492 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1493 | res = br_tail(h2c->mbuf); |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1494 | retry: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1495 | if (!h2_get_buf(h2c, res)) { |
Willy Tarreau | c7576ea | 2017-10-29 22:00:09 +0100 | [diff] [blame] | 1496 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 1497 | h2s->flags |= H2_SF_BLK_MROOM; |
| 1498 | return 0; |
| 1499 | } |
| 1500 | |
Willy Tarreau | ea1b06d | 2018-07-12 09:02:47 +0200 | [diff] [blame] | 1501 | ret = b_istput(res, ist2(str, 9)); |
Willy Tarreau | 6d8b682 | 2017-11-07 14:39:09 +0100 | [diff] [blame] | 1502 | if (likely(ret > 0)) { |
| 1503 | h2s->flags |= H2_SF_ES_SENT; |
| 1504 | } |
| 1505 | else if (!ret) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1506 | if ((res = br_tail_add(h2c->mbuf)) != NULL) |
| 1507 | goto retry; |
Willy Tarreau | 6d8b682 | 2017-11-07 14:39:09 +0100 | [diff] [blame] | 1508 | h2c->flags |= H2_CF_MUX_MFULL; |
| 1509 | h2s->flags |= H2_SF_BLK_MROOM; |
| 1510 | return 0; |
| 1511 | } |
| 1512 | else { |
| 1513 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
| 1514 | return 0; |
Willy Tarreau | c7576ea | 2017-10-29 22:00:09 +0100 | [diff] [blame] | 1515 | } |
| 1516 | return ret; |
| 1517 | } |
| 1518 | |
Willy Tarreau | 13b6c2e | 2019-05-07 17:26:05 +0200 | [diff] [blame] | 1519 | /* wake a specific stream and assign its conn_stream som CS_FL_* flags among |
Willy Tarreau | 99ad1b3 | 2019-05-14 11:46:28 +0200 | [diff] [blame] | 1520 | * CS_FL_ERR_PENDING and CS_FL_ERROR if needed. The stream's state |
Willy Tarreau | 13b6c2e | 2019-05-07 17:26:05 +0200 | [diff] [blame] | 1521 | * is automatically updated accordingly. If the stream is orphaned, it is |
| 1522 | * destroyed. |
Christopher Faulet | f02ca00 | 2019-03-07 16:21:34 +0100 | [diff] [blame] | 1523 | */ |
Willy Tarreau | 13b6c2e | 2019-05-07 17:26:05 +0200 | [diff] [blame] | 1524 | static void h2s_wake_one_stream(struct h2s *h2s) |
Christopher Faulet | f02ca00 | 2019-03-07 16:21:34 +0100 | [diff] [blame] | 1525 | { |
| 1526 | if (!h2s->cs) { |
| 1527 | /* this stream was already orphaned */ |
| 1528 | h2s_destroy(h2s); |
| 1529 | return; |
| 1530 | } |
| 1531 | |
Willy Tarreau | aebbe5e | 2019-05-07 17:48:59 +0200 | [diff] [blame] | 1532 | if (conn_xprt_read0_pending(h2s->h2c->conn)) { |
Willy Tarreau | aebbe5e | 2019-05-07 17:48:59 +0200 | [diff] [blame] | 1533 | if (h2s->st == H2_SS_OPEN) |
| 1534 | h2s->st = H2_SS_HREM; |
| 1535 | else if (h2s->st == H2_SS_HLOC) |
| 1536 | h2s_close(h2s); |
| 1537 | } |
Willy Tarreau | 13b6c2e | 2019-05-07 17:26:05 +0200 | [diff] [blame] | 1538 | |
Willy Tarreau | aebbe5e | 2019-05-07 17:48:59 +0200 | [diff] [blame] | 1539 | if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) || |
| 1540 | (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) { |
| 1541 | h2s->cs->flags |= CS_FL_ERR_PENDING; |
| 1542 | if (h2s->cs->flags & CS_FL_EOS) |
| 1543 | h2s->cs->flags |= CS_FL_ERROR; |
Willy Tarreau | 2348291 | 2019-05-07 15:23:14 +0200 | [diff] [blame] | 1544 | |
Willy Tarreau | aebbe5e | 2019-05-07 17:48:59 +0200 | [diff] [blame] | 1545 | if (h2s->st < H2_SS_ERROR) |
| 1546 | h2s->st = H2_SS_ERROR; |
| 1547 | } |
Christopher Faulet | f02ca00 | 2019-03-07 16:21:34 +0100 | [diff] [blame] | 1548 | |
| 1549 | h2s_alert(h2s); |
Christopher Faulet | f02ca00 | 2019-03-07 16:21:34 +0100 | [diff] [blame] | 1550 | } |
| 1551 | |
| 1552 | /* wake the streams attached to the connection, whose id is greater than <last> |
| 1553 | * or unassigned. |
Willy Tarreau | 23b92aa | 2017-10-30 00:26:54 +0100 | [diff] [blame] | 1554 | */ |
Willy Tarreau | 2348291 | 2019-05-07 15:23:14 +0200 | [diff] [blame] | 1555 | static void h2_wake_some_streams(struct h2c *h2c, int last) |
Willy Tarreau | 23b92aa | 2017-10-30 00:26:54 +0100 | [diff] [blame] | 1556 | { |
| 1557 | struct eb32_node *node; |
| 1558 | struct h2s *h2s; |
Willy Tarreau | 23b92aa | 2017-10-30 00:26:54 +0100 | [diff] [blame] | 1559 | |
Christopher Faulet | f02ca00 | 2019-03-07 16:21:34 +0100 | [diff] [blame] | 1560 | /* Wake all streams with ID > last */ |
Willy Tarreau | 23b92aa | 2017-10-30 00:26:54 +0100 | [diff] [blame] | 1561 | node = eb32_lookup_ge(&h2c->streams_by_id, last + 1); |
| 1562 | while (node) { |
| 1563 | h2s = container_of(node, struct h2s, by_id); |
Willy Tarreau | 23b92aa | 2017-10-30 00:26:54 +0100 | [diff] [blame] | 1564 | node = eb32_next(node); |
Willy Tarreau | 13b6c2e | 2019-05-07 17:26:05 +0200 | [diff] [blame] | 1565 | h2s_wake_one_stream(h2s); |
Christopher Faulet | f02ca00 | 2019-03-07 16:21:34 +0100 | [diff] [blame] | 1566 | } |
Willy Tarreau | 22cf59b | 2017-11-10 11:42:33 +0100 | [diff] [blame] | 1567 | |
Christopher Faulet | f02ca00 | 2019-03-07 16:21:34 +0100 | [diff] [blame] | 1568 | /* Wake all streams with unassigned ID (ID == 0) */ |
| 1569 | node = eb32_lookup(&h2c->streams_by_id, 0); |
| 1570 | while (node) { |
| 1571 | h2s = container_of(node, struct h2s, by_id); |
| 1572 | if (h2s->id > 0) |
| 1573 | break; |
| 1574 | node = eb32_next(node); |
Willy Tarreau | 13b6c2e | 2019-05-07 17:26:05 +0200 | [diff] [blame] | 1575 | h2s_wake_one_stream(h2s); |
Willy Tarreau | 23b92aa | 2017-10-30 00:26:54 +0100 | [diff] [blame] | 1576 | } |
| 1577 | } |
| 1578 | |
Willy Tarreau | 5a9c875 | 2019-08-02 07:52:08 +0200 | [diff] [blame] | 1579 | /* Wake up all blocked streams whose window size has become positive after the |
| 1580 | * mux's initial window was adjusted. This should be done after having processed |
| 1581 | * SETTINGS frames which have updated the mux's initial window size. |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1582 | */ |
Willy Tarreau | 5a9c875 | 2019-08-02 07:52:08 +0200 | [diff] [blame] | 1583 | static void h2c_unblock_sfctl(struct h2c *h2c) |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1584 | { |
| 1585 | struct h2s *h2s; |
| 1586 | struct eb32_node *node; |
| 1587 | |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1588 | node = eb32_first(&h2c->streams_by_id); |
| 1589 | while (node) { |
| 1590 | h2s = container_of(node, struct h2s, by_id); |
Willy Tarreau | 5a9c875 | 2019-08-02 07:52:08 +0200 | [diff] [blame] | 1591 | if (h2s->flags & H2_SF_BLK_SFCTL && h2s_mws(h2s) > 0) { |
Willy Tarreau | b1c9edc | 2019-01-30 16:11:20 +0100 | [diff] [blame] | 1592 | h2s->flags &= ~H2_SF_BLK_SFCTL; |
Willy Tarreau | bda92dd | 2019-10-02 10:49:59 +0200 | [diff] [blame] | 1593 | LIST_DEL_INIT(&h2s->list); |
| 1594 | if (h2s->send_wait) |
Willy Tarreau | b1c9edc | 2019-01-30 16:11:20 +0100 | [diff] [blame] | 1595 | LIST_ADDQ(&h2c->send_list, &h2s->list); |
Willy Tarreau | b1c9edc | 2019-01-30 16:11:20 +0100 | [diff] [blame] | 1596 | } |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1597 | node = eb32_next(node); |
| 1598 | } |
| 1599 | } |
| 1600 | |
| 1601 | /* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and |
| 1602 | * ACKs it if needed. Returns > 0 on success or zero on missing data. It may |
Willy Tarreau | b860c73 | 2019-01-30 15:39:55 +0100 | [diff] [blame] | 1603 | * return an error in h2c. The caller must have already verified frame length |
| 1604 | * and stream ID validity. Described in RFC7540#6.5. |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1605 | */ |
| 1606 | static int h2c_handle_settings(struct h2c *h2c) |
| 1607 | { |
| 1608 | unsigned int offset; |
| 1609 | int error; |
| 1610 | |
| 1611 | if (h2c->dff & H2_F_SETTINGS_ACK) { |
| 1612 | if (h2c->dfl) { |
| 1613 | error = H2_ERR_FRAME_SIZE_ERROR; |
| 1614 | goto fail; |
| 1615 | } |
| 1616 | return 1; |
| 1617 | } |
| 1618 | |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1619 | /* process full frame only */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1620 | if (b_data(&h2c->dbuf) < h2c->dfl) |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1621 | return 0; |
| 1622 | |
| 1623 | /* parse the frame */ |
| 1624 | for (offset = 0; offset < h2c->dfl; offset += 6) { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1625 | uint16_t type = h2_get_n16(&h2c->dbuf, offset); |
| 1626 | int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2); |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1627 | |
| 1628 | switch (type) { |
| 1629 | case H2_SETTINGS_INITIAL_WINDOW_SIZE: |
| 1630 | /* we need to update all existing streams with the |
| 1631 | * difference from the previous iws. |
| 1632 | */ |
| 1633 | if (arg < 0) { // RFC7540#6.5.2 |
| 1634 | error = H2_ERR_FLOW_CONTROL_ERROR; |
| 1635 | goto fail; |
| 1636 | } |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1637 | h2c->miw = arg; |
| 1638 | break; |
| 1639 | case H2_SETTINGS_MAX_FRAME_SIZE: |
| 1640 | if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2 |
| 1641 | error = H2_ERR_PROTOCOL_ERROR; |
| 1642 | goto fail; |
| 1643 | } |
| 1644 | h2c->mfs = arg; |
| 1645 | break; |
Willy Tarreau | 1b38b46 | 2017-12-03 19:02:28 +0100 | [diff] [blame] | 1646 | case H2_SETTINGS_ENABLE_PUSH: |
| 1647 | if (arg < 0 || arg > 1) { // RFC7540#6.5.2 |
| 1648 | error = H2_ERR_PROTOCOL_ERROR; |
| 1649 | goto fail; |
| 1650 | } |
| 1651 | break; |
Willy Tarreau | 2e2083a | 2019-01-31 10:34:07 +0100 | [diff] [blame] | 1652 | case H2_SETTINGS_MAX_CONCURRENT_STREAMS: |
| 1653 | if (h2c->flags & H2_CF_IS_BACK) { |
| 1654 | /* the limit is only for the backend; for the frontend it is our limit */ |
| 1655 | if ((unsigned int)arg > h2_settings_max_concurrent_streams) |
| 1656 | arg = h2_settings_max_concurrent_streams; |
| 1657 | h2c->streams_limit = arg; |
| 1658 | } |
| 1659 | break; |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1660 | } |
| 1661 | } |
| 1662 | |
| 1663 | /* need to ACK this frame now */ |
| 1664 | h2c->st0 = H2_CS_FRAME_A; |
| 1665 | return 1; |
| 1666 | fail: |
Willy Tarreau | 21178a5 | 2019-10-23 11:06:35 +0200 | [diff] [blame] | 1667 | if (!(h2c->flags & H2_CF_IS_BACK)) |
| 1668 | sess_log(h2c->conn->owner); |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1669 | h2c_error(h2c, error); |
| 1670 | return 0; |
| 1671 | } |
| 1672 | |
| 1673 | /* try to send an ACK for a settings frame on the connection. Returns > 0 on |
| 1674 | * success or one of the h2_status values. |
| 1675 | */ |
| 1676 | static int h2c_ack_settings(struct h2c *h2c) |
| 1677 | { |
| 1678 | struct buffer *res; |
| 1679 | char str[9]; |
| 1680 | int ret = -1; |
| 1681 | |
| 1682 | if (h2c_mux_busy(h2c, NULL)) { |
| 1683 | h2c->flags |= H2_CF_DEM_MBUSY; |
| 1684 | return 0; |
| 1685 | } |
| 1686 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1687 | memcpy(str, |
| 1688 | "\x00\x00\x00" /* length : 0 (no data) */ |
| 1689 | "\x04" "\x01" /* type : 4, flags : ACK */ |
| 1690 | "\x00\x00\x00\x00" /* stream ID */, 9); |
| 1691 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1692 | res = br_tail(h2c->mbuf); |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1693 | retry: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1694 | if (!h2_get_buf(h2c, res)) { |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1695 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 1696 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1697 | return 0; |
| 1698 | } |
| 1699 | |
Willy Tarreau | ea1b06d | 2018-07-12 09:02:47 +0200 | [diff] [blame] | 1700 | ret = b_istput(res, ist2(str, 9)); |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1701 | if (unlikely(ret <= 0)) { |
| 1702 | if (!ret) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1703 | if ((res = br_tail_add(h2c->mbuf)) != NULL) |
| 1704 | goto retry; |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1705 | h2c->flags |= H2_CF_MUX_MFULL; |
| 1706 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1707 | return 0; |
| 1708 | } |
| 1709 | else { |
| 1710 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
| 1711 | return 0; |
| 1712 | } |
| 1713 | } |
| 1714 | return ret; |
| 1715 | } |
| 1716 | |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 1717 | /* processes a PING frame and schedules an ACK if needed. The caller must pass |
| 1718 | * the pointer to the payload in <payload>. Returns > 0 on success or zero on |
Willy Tarreau | b860c73 | 2019-01-30 15:39:55 +0100 | [diff] [blame] | 1719 | * missing data. The caller must have already verified frame length |
| 1720 | * and stream ID validity. |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 1721 | */ |
| 1722 | static int h2c_handle_ping(struct h2c *h2c) |
| 1723 | { |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 1724 | /* schedule a response */ |
Willy Tarreau | 68ed641 | 2017-12-03 18:15:56 +0100 | [diff] [blame] | 1725 | if (!(h2c->dff & H2_F_PING_ACK)) |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 1726 | h2c->st0 = H2_CS_FRAME_A; |
| 1727 | return 1; |
| 1728 | } |
| 1729 | |
Willy Tarreau | cc0b8c3 | 2017-10-26 16:55:59 +0200 | [diff] [blame] | 1730 | /* Try to send a window update for stream id <sid> and value <increment>. |
| 1731 | * Returns > 0 on success or zero on missing room or failure. It may return an |
| 1732 | * error in h2c. |
| 1733 | */ |
| 1734 | static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment) |
| 1735 | { |
| 1736 | struct buffer *res; |
| 1737 | char str[13]; |
| 1738 | int ret = -1; |
| 1739 | |
| 1740 | if (h2c_mux_busy(h2c, NULL)) { |
| 1741 | h2c->flags |= H2_CF_DEM_MBUSY; |
| 1742 | return 0; |
| 1743 | } |
| 1744 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1745 | /* length: 4, type: 8, flags: none */ |
| 1746 | memcpy(str, "\x00\x00\x04\x08\x00", 5); |
| 1747 | write_n32(str + 5, sid); |
| 1748 | write_n32(str + 9, increment); |
| 1749 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1750 | res = br_tail(h2c->mbuf); |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1751 | retry: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1752 | if (!h2_get_buf(h2c, res)) { |
Willy Tarreau | cc0b8c3 | 2017-10-26 16:55:59 +0200 | [diff] [blame] | 1753 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 1754 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1755 | return 0; |
| 1756 | } |
| 1757 | |
Willy Tarreau | ea1b06d | 2018-07-12 09:02:47 +0200 | [diff] [blame] | 1758 | ret = b_istput(res, ist2(str, 13)); |
Willy Tarreau | cc0b8c3 | 2017-10-26 16:55:59 +0200 | [diff] [blame] | 1759 | if (unlikely(ret <= 0)) { |
| 1760 | if (!ret) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1761 | if ((res = br_tail_add(h2c->mbuf)) != NULL) |
| 1762 | goto retry; |
Willy Tarreau | cc0b8c3 | 2017-10-26 16:55:59 +0200 | [diff] [blame] | 1763 | h2c->flags |= H2_CF_MUX_MFULL; |
| 1764 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1765 | return 0; |
| 1766 | } |
| 1767 | else { |
| 1768 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
| 1769 | return 0; |
| 1770 | } |
| 1771 | } |
| 1772 | return ret; |
| 1773 | } |
| 1774 | |
| 1775 | /* try to send pending window update for the connection. It's safe to call it |
| 1776 | * with no pending updates. Returns > 0 on success or zero on missing room or |
| 1777 | * failure. It may return an error in h2c. |
| 1778 | */ |
| 1779 | static int h2c_send_conn_wu(struct h2c *h2c) |
| 1780 | { |
| 1781 | int ret = 1; |
| 1782 | |
| 1783 | if (h2c->rcvd_c <= 0) |
| 1784 | return 1; |
| 1785 | |
Willy Tarreau | 97aaa67 | 2018-12-23 09:49:04 +0100 | [diff] [blame] | 1786 | if (!(h2c->flags & H2_CF_WINDOW_OPENED)) { |
| 1787 | /* increase the advertised connection window to 2G on |
| 1788 | * first update. |
| 1789 | */ |
| 1790 | h2c->flags |= H2_CF_WINDOW_OPENED; |
| 1791 | h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT; |
| 1792 | } |
| 1793 | |
Willy Tarreau | cc0b8c3 | 2017-10-26 16:55:59 +0200 | [diff] [blame] | 1794 | /* send WU for the connection */ |
| 1795 | ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c); |
| 1796 | if (ret > 0) |
| 1797 | h2c->rcvd_c = 0; |
| 1798 | |
| 1799 | return ret; |
| 1800 | } |
| 1801 | |
| 1802 | /* try to send pending window update for the current dmux stream. It's safe to |
| 1803 | * call it with no pending updates. Returns > 0 on success or zero on missing |
| 1804 | * room or failure. It may return an error in h2c. |
| 1805 | */ |
| 1806 | static int h2c_send_strm_wu(struct h2c *h2c) |
| 1807 | { |
| 1808 | int ret = 1; |
| 1809 | |
| 1810 | if (h2c->rcvd_s <= 0) |
| 1811 | return 1; |
| 1812 | |
| 1813 | /* send WU for the stream */ |
| 1814 | ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s); |
| 1815 | if (ret > 0) |
| 1816 | h2c->rcvd_s = 0; |
| 1817 | |
| 1818 | return ret; |
| 1819 | } |
| 1820 | |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 1821 | /* try to send an ACK for a ping frame on the connection. Returns > 0 on |
| 1822 | * success, 0 on missing data or one of the h2_status values. |
| 1823 | */ |
| 1824 | static int h2c_ack_ping(struct h2c *h2c) |
| 1825 | { |
| 1826 | struct buffer *res; |
| 1827 | char str[17]; |
| 1828 | int ret = -1; |
| 1829 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1830 | if (b_data(&h2c->dbuf) < 8) |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 1831 | return 0; |
| 1832 | |
| 1833 | if (h2c_mux_busy(h2c, NULL)) { |
| 1834 | h2c->flags |= H2_CF_DEM_MBUSY; |
| 1835 | return 0; |
| 1836 | } |
| 1837 | |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 1838 | memcpy(str, |
| 1839 | "\x00\x00\x08" /* length : 8 (same payload) */ |
| 1840 | "\x06" "\x01" /* type : 6, flags : ACK */ |
| 1841 | "\x00\x00\x00\x00" /* stream ID */, 9); |
| 1842 | |
| 1843 | /* copy the original payload */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1844 | h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0); |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 1845 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1846 | res = br_tail(h2c->mbuf); |
| 1847 | retry: |
| 1848 | if (!h2_get_buf(h2c, res)) { |
| 1849 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 1850 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1851 | return 0; |
| 1852 | } |
| 1853 | |
Willy Tarreau | ea1b06d | 2018-07-12 09:02:47 +0200 | [diff] [blame] | 1854 | ret = b_istput(res, ist2(str, 17)); |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 1855 | if (unlikely(ret <= 0)) { |
| 1856 | if (!ret) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1857 | if ((res = br_tail_add(h2c->mbuf)) != NULL) |
| 1858 | goto retry; |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 1859 | h2c->flags |= H2_CF_MUX_MFULL; |
| 1860 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1861 | return 0; |
| 1862 | } |
| 1863 | else { |
| 1864 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
| 1865 | return 0; |
| 1866 | } |
| 1867 | } |
| 1868 | return ret; |
| 1869 | } |
| 1870 | |
Willy Tarreau | 26f9595 | 2017-07-27 17:18:30 +0200 | [diff] [blame] | 1871 | /* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes. |
| 1872 | * Returns > 0 on success or zero on missing data. It may return an error in |
Willy Tarreau | b860c73 | 2019-01-30 15:39:55 +0100 | [diff] [blame] | 1873 | * h2c or h2s. The caller must have already verified frame length and stream ID |
| 1874 | * validity. Described in RFC7540#6.9. |
Willy Tarreau | 26f9595 | 2017-07-27 17:18:30 +0200 | [diff] [blame] | 1875 | */ |
| 1876 | static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s) |
| 1877 | { |
| 1878 | int32_t inc; |
| 1879 | int error; |
| 1880 | |
Willy Tarreau | 26f9595 | 2017-07-27 17:18:30 +0200 | [diff] [blame] | 1881 | /* process full frame only */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1882 | if (b_data(&h2c->dbuf) < h2c->dfl) |
Willy Tarreau | 26f9595 | 2017-07-27 17:18:30 +0200 | [diff] [blame] | 1883 | return 0; |
| 1884 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1885 | inc = h2_get_n32(&h2c->dbuf, 0); |
Willy Tarreau | 26f9595 | 2017-07-27 17:18:30 +0200 | [diff] [blame] | 1886 | |
| 1887 | if (h2c->dsi != 0) { |
| 1888 | /* stream window update */ |
Willy Tarreau | 26f9595 | 2017-07-27 17:18:30 +0200 | [diff] [blame] | 1889 | |
| 1890 | /* it's not an error to receive WU on a closed stream */ |
| 1891 | if (h2s->st == H2_SS_CLOSED) |
| 1892 | return 1; |
| 1893 | |
| 1894 | if (!inc) { |
| 1895 | error = H2_ERR_PROTOCOL_ERROR; |
| 1896 | goto strm_err; |
| 1897 | } |
| 1898 | |
Willy Tarreau | 5a9c875 | 2019-08-02 07:52:08 +0200 | [diff] [blame] | 1899 | if (h2s_mws(h2s) >= 0 && h2s_mws(h2s) + inc < 0) { |
Willy Tarreau | 26f9595 | 2017-07-27 17:18:30 +0200 | [diff] [blame] | 1900 | error = H2_ERR_FLOW_CONTROL_ERROR; |
| 1901 | goto strm_err; |
| 1902 | } |
| 1903 | |
Willy Tarreau | 5a9c875 | 2019-08-02 07:52:08 +0200 | [diff] [blame] | 1904 | h2s->sws += inc; |
| 1905 | if (h2s_mws(h2s) > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) { |
Willy Tarreau | 26f9595 | 2017-07-27 17:18:30 +0200 | [diff] [blame] | 1906 | h2s->flags &= ~H2_SF_BLK_SFCTL; |
Willy Tarreau | bda92dd | 2019-10-02 10:49:59 +0200 | [diff] [blame] | 1907 | LIST_DEL_INIT(&h2s->list); |
| 1908 | if (h2s->send_wait) |
Olivier Houchard | dddfe31 | 2018-10-10 18:51:00 +0200 | [diff] [blame] | 1909 | LIST_ADDQ(&h2c->send_list, &h2s->list); |
Willy Tarreau | 26f9595 | 2017-07-27 17:18:30 +0200 | [diff] [blame] | 1910 | } |
| 1911 | } |
| 1912 | else { |
| 1913 | /* connection window update */ |
| 1914 | if (!inc) { |
| 1915 | error = H2_ERR_PROTOCOL_ERROR; |
| 1916 | goto conn_err; |
| 1917 | } |
| 1918 | |
| 1919 | if (h2c->mws >= 0 && h2c->mws + inc < 0) { |
| 1920 | error = H2_ERR_FLOW_CONTROL_ERROR; |
| 1921 | goto conn_err; |
| 1922 | } |
| 1923 | |
| 1924 | h2c->mws += inc; |
| 1925 | } |
| 1926 | |
| 1927 | return 1; |
| 1928 | |
| 1929 | conn_err: |
| 1930 | h2c_error(h2c, error); |
| 1931 | return 0; |
| 1932 | |
| 1933 | strm_err: |
Willy Tarreau | 6432dc8 | 2019-01-30 15:42:44 +0100 | [diff] [blame] | 1934 | h2s_error(h2s, error); |
| 1935 | h2c->st0 = H2_CS_FRAME_E; |
Willy Tarreau | 26f9595 | 2017-07-27 17:18:30 +0200 | [diff] [blame] | 1936 | return 0; |
| 1937 | } |
| 1938 | |
Willy Tarreau | e96b092 | 2017-10-30 00:28:29 +0100 | [diff] [blame] | 1939 | /* processes a GOAWAY frame, and signals all streams whose ID is greater than |
Willy Tarreau | b860c73 | 2019-01-30 15:39:55 +0100 | [diff] [blame] | 1940 | * the last ID. Returns > 0 on success or zero on missing data. The caller must |
| 1941 | * have already verified frame length and stream ID validity. Described in |
| 1942 | * RFC7540#6.8. |
Willy Tarreau | e96b092 | 2017-10-30 00:28:29 +0100 | [diff] [blame] | 1943 | */ |
| 1944 | static int h2c_handle_goaway(struct h2c *h2c) |
| 1945 | { |
Willy Tarreau | e96b092 | 2017-10-30 00:28:29 +0100 | [diff] [blame] | 1946 | int last; |
| 1947 | |
Willy Tarreau | e96b092 | 2017-10-30 00:28:29 +0100 | [diff] [blame] | 1948 | /* process full frame only */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1949 | if (b_data(&h2c->dbuf) < h2c->dfl) |
Willy Tarreau | e96b092 | 2017-10-30 00:28:29 +0100 | [diff] [blame] | 1950 | return 0; |
| 1951 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1952 | last = h2_get_n32(&h2c->dbuf, 0); |
| 1953 | h2c->errcode = h2_get_n32(&h2c->dbuf, 4); |
Willy Tarreau | 11cc2d6 | 2017-12-03 10:27:47 +0100 | [diff] [blame] | 1954 | if (h2c->last_sid < 0) |
| 1955 | h2c->last_sid = last; |
Willy Tarreau | 2348291 | 2019-05-07 15:23:14 +0200 | [diff] [blame] | 1956 | h2_wake_some_streams(h2c, last); |
Willy Tarreau | e96b092 | 2017-10-30 00:28:29 +0100 | [diff] [blame] | 1957 | return 1; |
Willy Tarreau | e96b092 | 2017-10-30 00:28:29 +0100 | [diff] [blame] | 1958 | } |
| 1959 | |
Willy Tarreau | 92153fc | 2017-12-03 19:46:19 +0100 | [diff] [blame] | 1960 | /* processes a PRIORITY frame, and either skips it or rejects if it is |
Willy Tarreau | b860c73 | 2019-01-30 15:39:55 +0100 | [diff] [blame] | 1961 | * invalid. Returns > 0 on success or zero on missing data. It may return an |
| 1962 | * error in h2c. The caller must have already verified frame length and stream |
| 1963 | * ID validity. Described in RFC7540#6.3. |
Willy Tarreau | 92153fc | 2017-12-03 19:46:19 +0100 | [diff] [blame] | 1964 | */ |
| 1965 | static int h2c_handle_priority(struct h2c *h2c) |
| 1966 | { |
Willy Tarreau | 92153fc | 2017-12-03 19:46:19 +0100 | [diff] [blame] | 1967 | /* process full frame only */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1968 | if (b_data(&h2c->dbuf) < h2c->dfl) |
Willy Tarreau | 92153fc | 2017-12-03 19:46:19 +0100 | [diff] [blame] | 1969 | return 0; |
| 1970 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1971 | if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) { |
Willy Tarreau | 92153fc | 2017-12-03 19:46:19 +0100 | [diff] [blame] | 1972 | /* 7540#5.3 : can't depend on itself */ |
Willy Tarreau | b860c73 | 2019-01-30 15:39:55 +0100 | [diff] [blame] | 1973 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
| 1974 | return 0; |
Willy Tarreau | 92153fc | 2017-12-03 19:46:19 +0100 | [diff] [blame] | 1975 | } |
| 1976 | return 1; |
Willy Tarreau | 92153fc | 2017-12-03 19:46:19 +0100 | [diff] [blame] | 1977 | } |
| 1978 | |
Willy Tarreau | cd234e9 | 2017-08-18 10:59:39 +0200 | [diff] [blame] | 1979 | /* processes an RST_STREAM frame, and sets the 32-bit error code on the stream. |
Willy Tarreau | b860c73 | 2019-01-30 15:39:55 +0100 | [diff] [blame] | 1980 | * Returns > 0 on success or zero on missing data. The caller must have already |
| 1981 | * verified frame length and stream ID validity. Described in RFC7540#6.4. |
Willy Tarreau | cd234e9 | 2017-08-18 10:59:39 +0200 | [diff] [blame] | 1982 | */ |
| 1983 | static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s) |
| 1984 | { |
Willy Tarreau | cd234e9 | 2017-08-18 10:59:39 +0200 | [diff] [blame] | 1985 | /* process full frame only */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1986 | if (b_data(&h2c->dbuf) < h2c->dfl) |
Willy Tarreau | cd234e9 | 2017-08-18 10:59:39 +0200 | [diff] [blame] | 1987 | return 0; |
| 1988 | |
| 1989 | /* late RST, already handled */ |
| 1990 | if (h2s->st == H2_SS_CLOSED) |
| 1991 | return 1; |
| 1992 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1993 | h2s->errcode = h2_get_n32(&h2c->dbuf, 0); |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 1994 | h2s_close(h2s); |
Willy Tarreau | cd234e9 | 2017-08-18 10:59:39 +0200 | [diff] [blame] | 1995 | |
| 1996 | if (h2s->cs) { |
Willy Tarreau | ec988c7 | 2018-12-19 18:00:29 +0100 | [diff] [blame] | 1997 | cs_set_error(h2s->cs); |
Willy Tarreau | f830f01 | 2018-12-19 17:44:55 +0100 | [diff] [blame] | 1998 | h2s_alert(h2s); |
Willy Tarreau | cd234e9 | 2017-08-18 10:59:39 +0200 | [diff] [blame] | 1999 | } |
| 2000 | |
| 2001 | h2s->flags |= H2_SF_RST_RCVD; |
| 2002 | return 1; |
Willy Tarreau | cd234e9 | 2017-08-18 10:59:39 +0200 | [diff] [blame] | 2003 | } |
| 2004 | |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2005 | /* processes a HEADERS frame. Returns h2s on success or NULL on missing data. |
| 2006 | * It may return an error in h2c or h2s. The caller must consider that the |
| 2007 | * return value is the new h2s in case one was allocated (most common case). |
| 2008 | * Described in RFC7540#6.2. Most of the |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2009 | * errors here are reported as connection errors since it's impossible to |
| 2010 | * recover from such errors after the compression context has been altered. |
| 2011 | */ |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2012 | static struct h2s *h2c_frt_handle_headers(struct h2c *h2c, struct h2s *h2s) |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2013 | { |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 2014 | struct buffer rxbuf = BUF_NULL; |
Willy Tarreau | 4790f7c | 2019-01-24 11:33:02 +0100 | [diff] [blame] | 2015 | unsigned long long body_len = 0; |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 2016 | uint32_t flags = 0; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2017 | int error; |
| 2018 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2019 | if (!b_size(&h2c->dbuf)) |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2020 | return NULL; // empty buffer |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2021 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2022 | if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2023 | return NULL; // incomplete frame |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2024 | |
| 2025 | /* now either the frame is complete or the buffer is complete */ |
| 2026 | if (h2s->st != H2_SS_IDLE) { |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 2027 | /* The stream exists/existed, this must be a trailers frame */ |
| 2028 | if (h2s->st != H2_SS_CLOSED) { |
Willy Tarreau | aab1a60 | 2019-05-06 11:12:18 +0200 | [diff] [blame] | 2029 | error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len); |
| 2030 | /* unrecoverable error ? */ |
| 2031 | if (h2c->st0 >= H2_CS_ERROR) |
| 2032 | goto out; |
| 2033 | |
| 2034 | if (error == 0) |
| 2035 | goto out; // missing data |
| 2036 | |
| 2037 | if (error < 0) { |
| 2038 | /* Failed to decode this frame (e.g. too large request) |
| 2039 | * but the HPACK decompressor is still synchronized. |
| 2040 | */ |
| 2041 | h2s_error(h2s, H2_ERR_INTERNAL_ERROR); |
| 2042 | h2c->st0 = H2_CS_FRAME_E; |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 2043 | goto out; |
Willy Tarreau | aab1a60 | 2019-05-06 11:12:18 +0200 | [diff] [blame] | 2044 | } |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 2045 | goto done; |
| 2046 | } |
Willy Tarreau | 1f03550 | 2019-01-30 11:44:07 +0100 | [diff] [blame] | 2047 | /* the connection was already killed by an RST, let's consume |
| 2048 | * the data and send another RST. |
| 2049 | */ |
| 2050 | error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len); |
| 2051 | h2s = (struct h2s*)h2_error_stream; |
| 2052 | goto send_rst; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2053 | } |
| 2054 | else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) { |
| 2055 | /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */ |
| 2056 | error = H2_ERR_PROTOCOL_ERROR; |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 2057 | sess_log(h2c->conn->owner); |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2058 | goto conn_err; |
| 2059 | } |
Willy Tarreau | 415b1ee | 2019-01-02 13:59:43 +0100 | [diff] [blame] | 2060 | else if (h2c->flags & H2_CF_DEM_TOOMANY) |
| 2061 | goto out; // IDLE but too many cs still present |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2062 | |
Willy Tarreau | 4790f7c | 2019-01-24 11:33:02 +0100 | [diff] [blame] | 2063 | error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len); |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 2064 | |
Willy Tarreau | 2591923 | 2019-01-03 14:48:18 +0100 | [diff] [blame] | 2065 | /* unrecoverable error ? */ |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 2066 | if (h2c->st0 >= H2_CS_ERROR) |
| 2067 | goto out; |
| 2068 | |
Willy Tarreau | 2591923 | 2019-01-03 14:48:18 +0100 | [diff] [blame] | 2069 | if (error <= 0) { |
| 2070 | if (error == 0) |
| 2071 | goto out; // missing data |
| 2072 | |
| 2073 | /* Failed to decode this stream (e.g. too large request) |
| 2074 | * but the HPACK decompressor is still synchronized. |
| 2075 | */ |
| 2076 | h2s = (struct h2s*)h2_error_stream; |
| 2077 | goto send_rst; |
| 2078 | } |
| 2079 | |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 2080 | /* Note: we don't emit any other logs below because ff we return |
Willy Tarreau | a8e4954 | 2018-10-03 18:53:55 +0200 | [diff] [blame] | 2081 | * positively from h2c_frt_stream_new(), the stream will report the error, |
| 2082 | * and if we return in error, h2c_frt_stream_new() will emit the error. |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 2083 | */ |
Willy Tarreau | a8e4954 | 2018-10-03 18:53:55 +0200 | [diff] [blame] | 2084 | h2s = h2c_frt_stream_new(h2c, h2c->dsi); |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2085 | if (!h2s) { |
Willy Tarreau | 96a10c2 | 2018-12-23 18:30:44 +0100 | [diff] [blame] | 2086 | h2s = (struct h2s*)h2_refused_stream; |
| 2087 | goto send_rst; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2088 | } |
| 2089 | |
| 2090 | h2s->st = H2_SS_OPEN; |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 2091 | h2s->rxbuf = rxbuf; |
| 2092 | h2s->flags |= flags; |
Willy Tarreau | 1915ca2 | 2019-01-24 11:49:37 +0100 | [diff] [blame] | 2093 | h2s->body_len = body_len; |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 2094 | |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 2095 | done: |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 2096 | if (h2c->dff & H2_F_HEADERS_END_STREAM) |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2097 | h2s->flags |= H2_SF_ES_RCVD; |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 2098 | |
| 2099 | if (h2s->flags & H2_SF_ES_RCVD) { |
Willy Tarreau | fc10f59 | 2019-01-30 19:28:32 +0100 | [diff] [blame] | 2100 | if (h2s->st == H2_SS_OPEN) |
| 2101 | h2s->st = H2_SS_HREM; |
| 2102 | else |
| 2103 | h2s_close(h2s); |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2104 | } |
| 2105 | |
Willy Tarreau | 3a429f0 | 2019-01-03 11:41:50 +0100 | [diff] [blame] | 2106 | /* update the max stream ID if the request is being processed */ |
| 2107 | if (h2s->id > h2c->max_id) |
| 2108 | h2c->max_id = h2s->id; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2109 | |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2110 | return h2s; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2111 | |
| 2112 | conn_err: |
| 2113 | h2c_error(h2c, error); |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 2114 | goto out; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2115 | |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 2116 | out: |
| 2117 | h2_release_buf(h2c, &rxbuf); |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2118 | return NULL; |
Willy Tarreau | 96a10c2 | 2018-12-23 18:30:44 +0100 | [diff] [blame] | 2119 | |
| 2120 | send_rst: |
| 2121 | /* make the demux send an RST for the current stream. We may only |
| 2122 | * do this if we're certain that the HEADERS frame was properly |
| 2123 | * decompressed so that the HPACK decoder is still kept up to date. |
| 2124 | */ |
| 2125 | h2_release_buf(h2c, &rxbuf); |
| 2126 | h2c->st0 = H2_CS_FRAME_E; |
| 2127 | return h2s; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2128 | } |
| 2129 | |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2130 | /* processes a HEADERS frame. Returns h2s on success or NULL on missing data. |
| 2131 | * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the |
| 2132 | * errors here are reported as connection errors since it's impossible to |
| 2133 | * recover from such errors after the compression context has been altered. |
| 2134 | */ |
| 2135 | static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s) |
| 2136 | { |
Christopher Faulet | 96b88f2 | 2019-09-23 15:28:20 +0200 | [diff] [blame] | 2137 | struct buffer rxbuf = BUF_NULL; |
| 2138 | unsigned long long body_len = 0; |
| 2139 | uint32_t flags = 0; |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2140 | int error; |
| 2141 | |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2142 | if (!b_size(&h2c->dbuf)) |
| 2143 | return NULL; // empty buffer |
| 2144 | |
| 2145 | if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) |
| 2146 | return NULL; // incomplete frame |
| 2147 | |
Christopher Faulet | 96b88f2 | 2019-09-23 15:28:20 +0200 | [diff] [blame] | 2148 | if (h2s->st != H2_SS_CLOSED) { |
| 2149 | error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len); |
| 2150 | } |
| 2151 | else { |
| 2152 | /* the connection was already killed by an RST, let's consume |
| 2153 | * the data and send another RST. |
| 2154 | */ |
| 2155 | error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len); |
Christopher Faulet | 0342705 | 2019-09-26 16:19:13 +0200 | [diff] [blame] | 2156 | h2s = (struct h2s*)h2_error_stream; |
Christopher Faulet | 96b88f2 | 2019-09-23 15:28:20 +0200 | [diff] [blame] | 2157 | h2c->st0 = H2_CS_FRAME_E; |
| 2158 | goto send_rst; |
| 2159 | } |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2160 | |
Willy Tarreau | 2591923 | 2019-01-03 14:48:18 +0100 | [diff] [blame] | 2161 | /* unrecoverable error ? */ |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2162 | if (h2c->st0 >= H2_CS_ERROR) |
| 2163 | return NULL; |
| 2164 | |
Willy Tarreau | 08bb1d6 | 2019-01-30 16:55:48 +0100 | [diff] [blame] | 2165 | if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) { |
| 2166 | /* RFC7540#5.1 */ |
| 2167 | h2s_error(h2s, H2_ERR_STREAM_CLOSED); |
| 2168 | h2c->st0 = H2_CS_FRAME_E; |
| 2169 | return NULL; |
| 2170 | } |
| 2171 | |
Willy Tarreau | 2591923 | 2019-01-03 14:48:18 +0100 | [diff] [blame] | 2172 | if (error <= 0) { |
| 2173 | if (error == 0) |
| 2174 | return NULL; // missing data |
| 2175 | |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2176 | /* stream error : send RST_STREAM */ |
Willy Tarreau | 2591923 | 2019-01-03 14:48:18 +0100 | [diff] [blame] | 2177 | h2s_error(h2s, H2_ERR_PROTOCOL_ERROR); |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2178 | h2c->st0 = H2_CS_FRAME_E; |
Willy Tarreau | 2591923 | 2019-01-03 14:48:18 +0100 | [diff] [blame] | 2179 | return NULL; |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2180 | } |
| 2181 | |
Christopher Faulet | fa922f0 | 2019-05-07 10:55:17 +0200 | [diff] [blame] | 2182 | if (h2c->dff & H2_F_HEADERS_END_STREAM) |
Willy Tarreau | 45ffc0c | 2019-01-03 09:32:20 +0100 | [diff] [blame] | 2183 | h2s->flags |= H2_SF_ES_RCVD; |
Willy Tarreau | 45ffc0c | 2019-01-03 09:32:20 +0100 | [diff] [blame] | 2184 | |
Willy Tarreau | 927b88b | 2019-03-04 08:03:25 +0100 | [diff] [blame] | 2185 | if (h2s->cs && h2s->cs->flags & CS_FL_ERROR && h2s->st < H2_SS_ERROR) |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2186 | h2s->st = H2_SS_ERROR; |
Christopher Faulet | fa922f0 | 2019-05-07 10:55:17 +0200 | [diff] [blame] | 2187 | else if (h2s->flags & H2_SF_ES_RCVD) { |
| 2188 | if (h2s->st == H2_SS_OPEN) |
| 2189 | h2s->st = H2_SS_HREM; |
| 2190 | else if (h2s->st == H2_SS_HLOC) |
| 2191 | h2s_close(h2s); |
| 2192 | } |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2193 | |
| 2194 | return h2s; |
Christopher Faulet | 96b88f2 | 2019-09-23 15:28:20 +0200 | [diff] [blame] | 2195 | |
| 2196 | send_rst: |
| 2197 | /* make the demux send an RST for the current stream. We may only |
| 2198 | * do this if we're certain that the HEADERS frame was properly |
| 2199 | * decompressed so that the HPACK decoder is still kept up to date. |
| 2200 | */ |
| 2201 | h2_release_buf(h2c, &rxbuf); |
| 2202 | h2c->st0 = H2_CS_FRAME_E; |
| 2203 | return h2s; |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2204 | } |
| 2205 | |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2206 | /* processes a DATA frame. Returns > 0 on success or zero on missing data. |
| 2207 | * It may return an error in h2c or h2s. Described in RFC7540#6.1. |
| 2208 | */ |
| 2209 | static int h2c_frt_handle_data(struct h2c *h2c, struct h2s *h2s) |
| 2210 | { |
| 2211 | int error; |
| 2212 | |
| 2213 | /* note that empty DATA frames are perfectly valid and sometimes used |
| 2214 | * to signal an end of stream (with the ES flag). |
| 2215 | */ |
| 2216 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2217 | if (!b_size(&h2c->dbuf) && h2c->dfl) |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2218 | return 0; // empty buffer |
| 2219 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2220 | if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2221 | return 0; // incomplete frame |
| 2222 | |
| 2223 | /* now either the frame is complete or the buffer is complete */ |
| 2224 | |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2225 | if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) { |
| 2226 | /* RFC7540#6.1 */ |
| 2227 | error = H2_ERR_STREAM_CLOSED; |
| 2228 | goto strm_err; |
| 2229 | } |
| 2230 | |
Christopher Faulet | 4fb65f4 | 2019-06-19 09:25:58 +0200 | [diff] [blame] | 2231 | if ((h2s->flags & H2_SF_DATA_CLEN) && (h2c->dfl - h2c->dpl) > h2s->body_len) { |
Willy Tarreau | 1915ca2 | 2019-01-24 11:49:37 +0100 | [diff] [blame] | 2232 | /* RFC7540#8.1.2 */ |
| 2233 | error = H2_ERR_PROTOCOL_ERROR; |
| 2234 | goto strm_err; |
| 2235 | } |
| 2236 | |
Willy Tarreau | a56a6de | 2018-02-26 15:59:07 +0100 | [diff] [blame] | 2237 | if (!h2_frt_transfer_data(h2s)) |
| 2238 | return 0; |
| 2239 | |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2240 | /* call the upper layers to process the frame, then let the upper layer |
| 2241 | * notify the stream about any change. |
| 2242 | */ |
| 2243 | if (!h2s->cs) { |
Willy Tarreau | c1a2965 | 2019-08-06 10:11:02 +0200 | [diff] [blame] | 2244 | /* The upper layer has already closed, this may happen on |
| 2245 | * 4xx/redirects during POST, or when receiving a response |
| 2246 | * from an H2 server after the client has aborted. |
| 2247 | */ |
| 2248 | error = H2_ERR_CANCEL; |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2249 | goto strm_err; |
| 2250 | } |
| 2251 | |
Willy Tarreau | 8f650c3 | 2017-11-21 19:36:21 +0100 | [diff] [blame] | 2252 | if (h2c->st0 >= H2_CS_ERROR) |
| 2253 | return 0; |
| 2254 | |
Willy Tarreau | 721c974 | 2017-11-07 11:05:42 +0100 | [diff] [blame] | 2255 | if (h2s->st >= H2_SS_ERROR) { |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2256 | /* stream error : send RST_STREAM */ |
Willy Tarreau | a20a519 | 2017-12-27 11:02:06 +0100 | [diff] [blame] | 2257 | h2c->st0 = H2_CS_FRAME_E; |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2258 | } |
| 2259 | |
| 2260 | /* check for completion : the callee will change this to FRAME_A or |
| 2261 | * FRAME_H once done. |
| 2262 | */ |
| 2263 | if (h2c->st0 == H2_CS_FRAME_P) |
| 2264 | return 0; |
| 2265 | |
Willy Tarreau | c4134ba | 2017-12-11 18:45:08 +0100 | [diff] [blame] | 2266 | /* last frame */ |
| 2267 | if (h2c->dff & H2_F_DATA_END_STREAM) { |
Christopher Faulet | fa922f0 | 2019-05-07 10:55:17 +0200 | [diff] [blame] | 2268 | h2s->flags |= H2_SF_ES_RCVD; |
Willy Tarreau | fc10f59 | 2019-01-30 19:28:32 +0100 | [diff] [blame] | 2269 | if (h2s->st == H2_SS_OPEN) |
| 2270 | h2s->st = H2_SS_HREM; |
| 2271 | else |
| 2272 | h2s_close(h2s); |
| 2273 | |
Willy Tarreau | 1915ca2 | 2019-01-24 11:49:37 +0100 | [diff] [blame] | 2274 | if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) { |
| 2275 | /* RFC7540#8.1.2 */ |
| 2276 | error = H2_ERR_PROTOCOL_ERROR; |
| 2277 | goto strm_err; |
| 2278 | } |
Willy Tarreau | c4134ba | 2017-12-11 18:45:08 +0100 | [diff] [blame] | 2279 | } |
| 2280 | |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2281 | return 1; |
| 2282 | |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2283 | strm_err: |
Willy Tarreau | 6432dc8 | 2019-01-30 15:42:44 +0100 | [diff] [blame] | 2284 | h2s_error(h2s, error); |
| 2285 | h2c->st0 = H2_CS_FRAME_E; |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2286 | return 0; |
| 2287 | } |
| 2288 | |
Willy Tarreau | bc93393 | 2017-10-09 16:21:43 +0200 | [diff] [blame] | 2289 | /* process Rx frames to be demultiplexed */ |
| 2290 | static void h2_process_demux(struct h2c *h2c) |
| 2291 | { |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2292 | struct h2s *h2s = NULL, *tmp_h2s; |
Willy Tarreau | 54f46e5 | 2019-01-30 15:11:03 +0100 | [diff] [blame] | 2293 | struct h2_fh hdr; |
| 2294 | unsigned int padlen = 0; |
Willy Tarreau | 5a9c875 | 2019-08-02 07:52:08 +0200 | [diff] [blame] | 2295 | int32_t old_iw = h2c->miw; |
Willy Tarreau | f3ee069 | 2017-10-17 08:18:25 +0200 | [diff] [blame] | 2296 | |
Willy Tarreau | 081d472 | 2017-05-16 21:51:05 +0200 | [diff] [blame] | 2297 | if (h2c->st0 >= H2_CS_ERROR) |
| 2298 | return; |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 2299 | |
| 2300 | if (unlikely(h2c->st0 < H2_CS_FRAME_H)) { |
| 2301 | if (h2c->st0 == H2_CS_PREFACE) { |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 2302 | if (h2c->flags & H2_CF_IS_BACK) |
| 2303 | return; |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 2304 | if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) { |
| 2305 | /* RFC7540#3.5: a GOAWAY frame MAY be omitted */ |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 2306 | if (h2c->st0 == H2_CS_ERROR) { |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 2307 | h2c->st0 = H2_CS_ERROR2; |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 2308 | sess_log(h2c->conn->owner); |
| 2309 | } |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 2310 | goto fail; |
| 2311 | } |
| 2312 | |
| 2313 | h2c->max_id = 0; |
| 2314 | h2c->st0 = H2_CS_SETTINGS1; |
| 2315 | } |
Willy Tarreau | 4c3690b | 2017-10-10 15:16:55 +0200 | [diff] [blame] | 2316 | |
| 2317 | if (h2c->st0 == H2_CS_SETTINGS1) { |
Willy Tarreau | 4c3690b | 2017-10-10 15:16:55 +0200 | [diff] [blame] | 2318 | /* ensure that what is pending is a valid SETTINGS frame |
| 2319 | * without an ACK. |
| 2320 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2321 | if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) { |
Willy Tarreau | 4c3690b | 2017-10-10 15:16:55 +0200 | [diff] [blame] | 2322 | /* RFC7540#3.5: a GOAWAY frame MAY be omitted */ |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 2323 | if (h2c->st0 == H2_CS_ERROR) { |
Willy Tarreau | 4c3690b | 2017-10-10 15:16:55 +0200 | [diff] [blame] | 2324 | h2c->st0 = H2_CS_ERROR2; |
Willy Tarreau | 21178a5 | 2019-10-23 11:06:35 +0200 | [diff] [blame] | 2325 | if (!(h2c->flags & H2_CF_IS_BACK)) |
| 2326 | sess_log(h2c->conn->owner); |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 2327 | } |
Willy Tarreau | 4c3690b | 2017-10-10 15:16:55 +0200 | [diff] [blame] | 2328 | goto fail; |
| 2329 | } |
| 2330 | |
| 2331 | if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) { |
| 2332 | /* RFC7540#3.5: a GOAWAY frame MAY be omitted */ |
| 2333 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
| 2334 | h2c->st0 = H2_CS_ERROR2; |
Willy Tarreau | 21178a5 | 2019-10-23 11:06:35 +0200 | [diff] [blame] | 2335 | if (!(h2c->flags & H2_CF_IS_BACK)) |
| 2336 | sess_log(h2c->conn->owner); |
Willy Tarreau | 4c3690b | 2017-10-10 15:16:55 +0200 | [diff] [blame] | 2337 | goto fail; |
| 2338 | } |
| 2339 | |
Willy Tarreau | 3f0e1ec | 2018-04-17 10:28:27 +0200 | [diff] [blame] | 2340 | if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) { |
Willy Tarreau | 4c3690b | 2017-10-10 15:16:55 +0200 | [diff] [blame] | 2341 | /* RFC7540#3.5: a GOAWAY frame MAY be omitted */ |
| 2342 | h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR); |
| 2343 | h2c->st0 = H2_CS_ERROR2; |
Willy Tarreau | 21178a5 | 2019-10-23 11:06:35 +0200 | [diff] [blame] | 2344 | if (!(h2c->flags & H2_CF_IS_BACK)) |
| 2345 | sess_log(h2c->conn->owner); |
Willy Tarreau | 4c3690b | 2017-10-10 15:16:55 +0200 | [diff] [blame] | 2346 | goto fail; |
| 2347 | } |
| 2348 | |
Willy Tarreau | 3bf6918 | 2018-12-21 15:34:50 +0100 | [diff] [blame] | 2349 | /* that's OK, switch to FRAME_P to process it. This is |
| 2350 | * a SETTINGS frame whose header has already been |
| 2351 | * deleted above. |
| 2352 | */ |
Willy Tarreau | 54f46e5 | 2019-01-30 15:11:03 +0100 | [diff] [blame] | 2353 | padlen = 0; |
| 2354 | goto new_frame; |
Willy Tarreau | 4c3690b | 2017-10-10 15:16:55 +0200 | [diff] [blame] | 2355 | } |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 2356 | } |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2357 | |
| 2358 | /* process as many incoming frames as possible below */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2359 | while (b_data(&h2c->dbuf)) { |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2360 | int ret = 0; |
| 2361 | |
| 2362 | if (h2c->st0 >= H2_CS_ERROR) |
| 2363 | break; |
| 2364 | |
| 2365 | if (h2c->st0 == H2_CS_FRAME_H) { |
Willy Tarreau | ab3ebbc | 2019-08-06 15:49:51 +0200 | [diff] [blame] | 2366 | h2c->rcvd_s = 0; |
| 2367 | |
Willy Tarreau | a4428bd | 2018-12-22 18:11:41 +0100 | [diff] [blame] | 2368 | if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr)) |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2369 | break; |
| 2370 | |
Willy Tarreau | 3f0e1ec | 2018-04-17 10:28:27 +0200 | [diff] [blame] | 2371 | if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) { |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2372 | h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR); |
Willy Tarreau | 21178a5 | 2019-10-23 11:06:35 +0200 | [diff] [blame] | 2373 | if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) { |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 2374 | /* only log if no other stream can report the error */ |
| 2375 | sess_log(h2c->conn->owner); |
| 2376 | } |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2377 | break; |
| 2378 | } |
| 2379 | |
Christopher Faulet | 3d574a5 | 2019-06-18 12:22:38 +0200 | [diff] [blame] | 2380 | padlen = 0; |
Willy Tarreau | 3bf6918 | 2018-12-21 15:34:50 +0100 | [diff] [blame] | 2381 | if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) { |
| 2382 | /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA), |
| 2383 | * we read the pad length and drop it from the remaining |
| 2384 | * payload (one byte + the 9 remaining ones = 10 total |
| 2385 | * removed), so we have a frame payload starting after the |
| 2386 | * pad len. Flow controlled frames (DATA) also count the |
| 2387 | * padlen in the flow control, so it must be adjusted. |
| 2388 | */ |
| 2389 | if (hdr.len < 1) { |
| 2390 | h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR); |
Willy Tarreau | 21178a5 | 2019-10-23 11:06:35 +0200 | [diff] [blame] | 2391 | if (!(h2c->flags & H2_CF_IS_BACK)) |
| 2392 | sess_log(h2c->conn->owner); |
Willy Tarreau | 3bf6918 | 2018-12-21 15:34:50 +0100 | [diff] [blame] | 2393 | goto fail; |
| 2394 | } |
| 2395 | hdr.len--; |
| 2396 | |
| 2397 | if (b_data(&h2c->dbuf) < 10) |
| 2398 | break; // missing padlen |
| 2399 | |
| 2400 | padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9); |
| 2401 | |
| 2402 | if (padlen > hdr.len) { |
| 2403 | /* RFC7540#6.1 : pad length = length of |
| 2404 | * frame payload or greater => error. |
| 2405 | */ |
| 2406 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
Willy Tarreau | 21178a5 | 2019-10-23 11:06:35 +0200 | [diff] [blame] | 2407 | if (!(h2c->flags & H2_CF_IS_BACK)) |
| 2408 | sess_log(h2c->conn->owner); |
Willy Tarreau | 3bf6918 | 2018-12-21 15:34:50 +0100 | [diff] [blame] | 2409 | goto fail; |
| 2410 | } |
| 2411 | |
| 2412 | if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) { |
| 2413 | h2c->rcvd_c++; |
| 2414 | h2c->rcvd_s++; |
| 2415 | } |
| 2416 | b_del(&h2c->dbuf, 1); |
| 2417 | } |
| 2418 | h2_skip_frame_hdr(&h2c->dbuf); |
Willy Tarreau | 54f46e5 | 2019-01-30 15:11:03 +0100 | [diff] [blame] | 2419 | |
| 2420 | new_frame: |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2421 | h2c->dfl = hdr.len; |
| 2422 | h2c->dsi = hdr.sid; |
| 2423 | h2c->dft = hdr.ft; |
| 2424 | h2c->dff = hdr.ff; |
Willy Tarreau | 3bf6918 | 2018-12-21 15:34:50 +0100 | [diff] [blame] | 2425 | h2c->dpl = padlen; |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2426 | h2c->st0 = H2_CS_FRAME_P; |
Willy Tarreau | 54f46e5 | 2019-01-30 15:11:03 +0100 | [diff] [blame] | 2427 | |
| 2428 | /* check for minimum basic frame format validity */ |
| 2429 | ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize); |
| 2430 | if (ret != H2_ERR_NO_ERROR) { |
| 2431 | h2c_error(h2c, ret); |
Willy Tarreau | 21178a5 | 2019-10-23 11:06:35 +0200 | [diff] [blame] | 2432 | if (!(h2c->flags & H2_CF_IS_BACK)) |
| 2433 | sess_log(h2c->conn->owner); |
Willy Tarreau | 54f46e5 | 2019-01-30 15:11:03 +0100 | [diff] [blame] | 2434 | goto fail; |
| 2435 | } |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2436 | } |
| 2437 | |
Willy Tarreau | bde2f0a | 2019-08-06 15:21:45 +0200 | [diff] [blame] | 2438 | /* Only H2_CS_FRAME_P, H2_CS_FRAME_A and H2_CS_FRAME_E here. |
| 2439 | * H2_CS_FRAME_P indicates an incomplete previous operation |
| 2440 | * (most often the first attempt) and requires some validity |
| 2441 | * checks for the frame and the current state. The two other |
| 2442 | * ones are set after completion (or abortion) and must skip |
| 2443 | * validity checks. |
| 2444 | */ |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2445 | tmp_h2s = h2c_st_by_id(h2c, h2c->dsi); |
| 2446 | |
Willy Tarreau | 567beb8 | 2018-12-18 16:52:44 +0100 | [diff] [blame] | 2447 | if (tmp_h2s != h2s && h2s && h2s->cs && |
| 2448 | (b_data(&h2s->rxbuf) || |
Willy Tarreau | 76c8382 | 2019-06-15 09:55:50 +0200 | [diff] [blame] | 2449 | conn_xprt_read0_pending(h2c->conn) || |
| 2450 | h2s->st == H2_SS_CLOSED || |
Christopher Faulet | fa922f0 | 2019-05-07 10:55:17 +0200 | [diff] [blame] | 2451 | (h2s->flags & H2_SF_ES_RCVD) || |
| 2452 | (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) { |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2453 | /* we may have to signal the upper layers */ |
| 2454 | h2s->cs->flags |= CS_FL_RCV_MORE; |
Willy Tarreau | 7e09445 | 2018-12-19 18:08:52 +0100 | [diff] [blame] | 2455 | h2s_notify_recv(h2s); |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2456 | } |
| 2457 | h2s = tmp_h2s; |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2458 | |
Willy Tarreau | d790143 | 2017-12-29 11:34:40 +0100 | [diff] [blame] | 2459 | if (h2c->st0 == H2_CS_FRAME_E) |
| 2460 | goto strm_err; |
| 2461 | |
Willy Tarreau | bde2f0a | 2019-08-06 15:21:45 +0200 | [diff] [blame] | 2462 | if (h2c->st0 == H2_CS_FRAME_A) |
| 2463 | goto valid_frame_type; |
| 2464 | |
Willy Tarreau | f65b80d | 2017-10-30 11:46:49 +0100 | [diff] [blame] | 2465 | if (h2s->st == H2_SS_IDLE && |
| 2466 | h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) { |
| 2467 | /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in |
| 2468 | * this state MUST be treated as a connection error |
| 2469 | */ |
| 2470 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
Willy Tarreau | 21178a5 | 2019-10-23 11:06:35 +0200 | [diff] [blame] | 2471 | if (!h2c->nb_streams && !(h2c->flags & H2_CF_IS_BACK)) { |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 2472 | /* only log if no other stream can report the error */ |
| 2473 | sess_log(h2c->conn->owner); |
| 2474 | } |
Willy Tarreau | f65b80d | 2017-10-30 11:46:49 +0100 | [diff] [blame] | 2475 | break; |
| 2476 | } |
| 2477 | |
Willy Tarreau | 85ee6e8 | 2019-11-24 14:57:53 +0100 | [diff] [blame] | 2478 | if (h2s->st == H2_SS_IDLE && (h2c->flags & H2_CF_IS_BACK)) { |
| 2479 | /* only PUSH_PROMISE would be permitted here */ |
| 2480 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
| 2481 | break; |
| 2482 | } |
| 2483 | |
Willy Tarreau | f182a9a | 2017-10-30 12:03:50 +0100 | [diff] [blame] | 2484 | if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE && |
| 2485 | h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) { |
| 2486 | /* RFC7540#5.1: any frame other than WU/PRIO/RST in |
Willy Tarreau | 5b4eae3 | 2019-01-24 09:43:32 +0100 | [diff] [blame] | 2487 | * this state MUST be treated as a stream error. |
| 2488 | * 6.2, 6.6 and 6.10 further mandate that HEADERS/ |
| 2489 | * PUSH_PROMISE/CONTINUATION cause connection errors. |
Willy Tarreau | f182a9a | 2017-10-30 12:03:50 +0100 | [diff] [blame] | 2490 | */ |
Willy Tarreau | 5b4eae3 | 2019-01-24 09:43:32 +0100 | [diff] [blame] | 2491 | if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) |
| 2492 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
| 2493 | else |
| 2494 | h2s_error(h2s, H2_ERR_STREAM_CLOSED); |
Willy Tarreau | f182a9a | 2017-10-30 12:03:50 +0100 | [diff] [blame] | 2495 | goto strm_err; |
| 2496 | } |
| 2497 | |
Willy Tarreau | ab83750 | 2017-12-27 15:07:30 +0100 | [diff] [blame] | 2498 | /* Below the management of frames received in closed state is a |
| 2499 | * bit hackish because the spec makes strong differences between |
| 2500 | * streams closed by receiving RST, sending RST, and seeing ES |
| 2501 | * in both directions. In addition to this, the creation of a |
| 2502 | * new stream reusing the identifier of a closed one will be |
| 2503 | * detected here. Given that we cannot keep track of all closed |
| 2504 | * streams forever, we consider that unknown closed streams were |
| 2505 | * closed on RST received, which allows us to respond with an |
| 2506 | * RST without breaking the connection (eg: to abort a transfer). |
| 2507 | * Some frames have to be silently ignored as well. |
| 2508 | */ |
| 2509 | if (h2s->st == H2_SS_CLOSED && h2c->dsi) { |
Willy Tarreau | 3ad5d31 | 2019-01-29 18:33:26 +0100 | [diff] [blame] | 2510 | if (!(h2c->flags & H2_CF_IS_BACK) && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) { |
Willy Tarreau | ab83750 | 2017-12-27 15:07:30 +0100 | [diff] [blame] | 2511 | /* #5.1.1: The identifier of a newly |
| 2512 | * established stream MUST be numerically |
| 2513 | * greater than all streams that the initiating |
| 2514 | * endpoint has opened or reserved. This |
| 2515 | * governs streams that are opened using a |
| 2516 | * HEADERS frame and streams that are reserved |
| 2517 | * using PUSH_PROMISE. An endpoint that |
| 2518 | * receives an unexpected stream identifier |
| 2519 | * MUST respond with a connection error. |
| 2520 | */ |
| 2521 | h2c_error(h2c, H2_ERR_STREAM_CLOSED); |
| 2522 | goto strm_err; |
| 2523 | } |
| 2524 | |
Willy Tarreau | eb5be9d | 2019-09-26 08:47:15 +0200 | [diff] [blame] | 2525 | if (h2s->flags & H2_SF_RST_RCVD && |
| 2526 | !(h2_ft_bit(h2c->dft) & (H2_FT_HDR_MASK | H2_FT_RST_STREAM_BIT | H2_FT_PRIORITY_BIT | H2_FT_WINDOW_UPDATE_BIT))) { |
Willy Tarreau | ab83750 | 2017-12-27 15:07:30 +0100 | [diff] [blame] | 2527 | /* RFC7540#5.1:closed: an endpoint that |
| 2528 | * receives any frame other than PRIORITY after |
| 2529 | * receiving a RST_STREAM MUST treat that as a |
| 2530 | * stream error of type STREAM_CLOSED. |
| 2531 | * |
| 2532 | * Note that old streams fall into this category |
| 2533 | * and will lead to an RST being sent. |
Willy Tarreau | 8d9ac3e | 2019-01-30 16:58:30 +0100 | [diff] [blame] | 2534 | * |
| 2535 | * However, we cannot generalize this to all frame types. Those |
| 2536 | * carrying compression state must still be processed before |
| 2537 | * being dropped or we'll desynchronize the decoder. This can |
| 2538 | * happen with request trailers received after sending an |
| 2539 | * RST_STREAM, or with header/trailers responses received after |
| 2540 | * sending RST_STREAM (aborted stream). |
Willy Tarreau | eb5be9d | 2019-09-26 08:47:15 +0200 | [diff] [blame] | 2541 | * |
| 2542 | * In addition, since our CLOSED streams always carry the |
| 2543 | * RST_RCVD bit, we don't want to accidently catch valid |
| 2544 | * frames for a closed stream, i.e. RST/PRIO/WU. |
Willy Tarreau | ab83750 | 2017-12-27 15:07:30 +0100 | [diff] [blame] | 2545 | */ |
| 2546 | h2s_error(h2s, H2_ERR_STREAM_CLOSED); |
| 2547 | h2c->st0 = H2_CS_FRAME_E; |
| 2548 | goto strm_err; |
| 2549 | } |
| 2550 | |
| 2551 | /* RFC7540#5.1:closed: if this state is reached as a |
| 2552 | * result of sending a RST_STREAM frame, the peer that |
| 2553 | * receives the RST_STREAM might have already sent |
| 2554 | * frames on the stream that cannot be withdrawn. An |
| 2555 | * endpoint MUST ignore frames that it receives on |
| 2556 | * closed streams after it has sent a RST_STREAM |
| 2557 | * frame. An endpoint MAY choose to limit the period |
| 2558 | * over which it ignores frames and treat frames that |
| 2559 | * arrive after this time as being in error. |
| 2560 | */ |
Willy Tarreau | 24ff1f8 | 2019-01-30 19:20:09 +0100 | [diff] [blame] | 2561 | if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) { |
Willy Tarreau | ab83750 | 2017-12-27 15:07:30 +0100 | [diff] [blame] | 2562 | /* RFC7540#5.1:closed: any frame other than |
| 2563 | * PRIO/WU/RST in this state MUST be treated as |
| 2564 | * a connection error |
| 2565 | */ |
| 2566 | if (h2c->dft != H2_FT_RST_STREAM && |
| 2567 | h2c->dft != H2_FT_PRIORITY && |
| 2568 | h2c->dft != H2_FT_WINDOW_UPDATE) { |
| 2569 | h2c_error(h2c, H2_ERR_STREAM_CLOSED); |
| 2570 | goto strm_err; |
| 2571 | } |
| 2572 | } |
| 2573 | } |
| 2574 | |
Willy Tarreau | c0da196 | 2017-10-30 18:38:00 +0100 | [diff] [blame] | 2575 | #if 0 |
| 2576 | // problem below: it is not possible to completely ignore such |
| 2577 | // streams as we need to maintain the compression state as well |
| 2578 | // and for this we need to completely process these frames (eg: |
| 2579 | // HEADERS frames) as well as counting DATA frames to emit |
| 2580 | // proper WINDOW UPDATES and ensure the connection doesn't stall. |
| 2581 | // This is a typical case of layer violation where the |
| 2582 | // transported contents are critical to the connection's |
| 2583 | // validity and must be ignored at the same time :-( |
| 2584 | |
| 2585 | /* graceful shutdown, ignore streams whose ID is higher than |
| 2586 | * the one advertised in GOAWAY. RFC7540#6.8. |
| 2587 | */ |
| 2588 | if (unlikely(h2c->last_sid >= 0) && h2c->dsi > h2c->last_sid) { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2589 | ret = MIN(b_data(&h2c->dbuf), h2c->dfl); |
| 2590 | b_del(&h2c->dbuf, ret); |
Willy Tarreau | c0da196 | 2017-10-30 18:38:00 +0100 | [diff] [blame] | 2591 | h2c->dfl -= ret; |
| 2592 | ret = h2c->dfl == 0; |
| 2593 | goto strm_err; |
| 2594 | } |
| 2595 | #endif |
| 2596 | |
Willy Tarreau | bde2f0a | 2019-08-06 15:21:45 +0200 | [diff] [blame] | 2597 | valid_frame_type: |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2598 | switch (h2c->dft) { |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 2599 | case H2_FT_SETTINGS: |
| 2600 | if (h2c->st0 == H2_CS_FRAME_P) |
| 2601 | ret = h2c_handle_settings(h2c); |
| 2602 | |
| 2603 | if (h2c->st0 == H2_CS_FRAME_A) |
| 2604 | ret = h2c_ack_settings(h2c); |
| 2605 | break; |
| 2606 | |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 2607 | case H2_FT_PING: |
| 2608 | if (h2c->st0 == H2_CS_FRAME_P) |
| 2609 | ret = h2c_handle_ping(h2c); |
| 2610 | |
| 2611 | if (h2c->st0 == H2_CS_FRAME_A) |
| 2612 | ret = h2c_ack_ping(h2c); |
| 2613 | break; |
| 2614 | |
Willy Tarreau | 26f9595 | 2017-07-27 17:18:30 +0200 | [diff] [blame] | 2615 | case H2_FT_WINDOW_UPDATE: |
| 2616 | if (h2c->st0 == H2_CS_FRAME_P) |
| 2617 | ret = h2c_handle_window_update(h2c, h2s); |
| 2618 | break; |
| 2619 | |
Willy Tarreau | 61290ec | 2017-10-17 08:19:21 +0200 | [diff] [blame] | 2620 | case H2_FT_CONTINUATION: |
Willy Tarreau | ea18f86 | 2018-12-22 20:19:26 +0100 | [diff] [blame] | 2621 | /* RFC7540#6.10: CONTINUATION may only be preceeded by |
| 2622 | * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These |
| 2623 | * frames' parsers consume all following CONTINUATION |
| 2624 | * frames so this one is out of sequence. |
Willy Tarreau | 61290ec | 2017-10-17 08:19:21 +0200 | [diff] [blame] | 2625 | */ |
Willy Tarreau | ea18f86 | 2018-12-22 20:19:26 +0100 | [diff] [blame] | 2626 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
Willy Tarreau | 21178a5 | 2019-10-23 11:06:35 +0200 | [diff] [blame] | 2627 | if (!(h2c->flags & H2_CF_IS_BACK)) |
| 2628 | sess_log(h2c->conn->owner); |
Willy Tarreau | ea18f86 | 2018-12-22 20:19:26 +0100 | [diff] [blame] | 2629 | goto fail; |
Willy Tarreau | 61290ec | 2017-10-17 08:19:21 +0200 | [diff] [blame] | 2630 | |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2631 | case H2_FT_HEADERS: |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2632 | if (h2c->st0 == H2_CS_FRAME_P) { |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2633 | if (h2c->flags & H2_CF_IS_BACK) |
| 2634 | tmp_h2s = h2c_bck_handle_headers(h2c, h2s); |
| 2635 | else |
| 2636 | tmp_h2s = h2c_frt_handle_headers(h2c, h2s); |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2637 | if (tmp_h2s) { |
| 2638 | h2s = tmp_h2s; |
| 2639 | ret = 1; |
| 2640 | } |
| 2641 | } |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2642 | break; |
| 2643 | |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2644 | case H2_FT_DATA: |
| 2645 | if (h2c->st0 == H2_CS_FRAME_P) |
| 2646 | ret = h2c_frt_handle_data(h2c, h2s); |
| 2647 | |
| 2648 | if (h2c->st0 == H2_CS_FRAME_A) |
| 2649 | ret = h2c_send_strm_wu(h2c); |
| 2650 | break; |
Willy Tarreau | cd234e9 | 2017-08-18 10:59:39 +0200 | [diff] [blame] | 2651 | |
Willy Tarreau | 92153fc | 2017-12-03 19:46:19 +0100 | [diff] [blame] | 2652 | case H2_FT_PRIORITY: |
| 2653 | if (h2c->st0 == H2_CS_FRAME_P) |
| 2654 | ret = h2c_handle_priority(h2c); |
| 2655 | break; |
| 2656 | |
Willy Tarreau | cd234e9 | 2017-08-18 10:59:39 +0200 | [diff] [blame] | 2657 | case H2_FT_RST_STREAM: |
| 2658 | if (h2c->st0 == H2_CS_FRAME_P) |
| 2659 | ret = h2c_handle_rst_stream(h2c, h2s); |
| 2660 | break; |
| 2661 | |
Willy Tarreau | e96b092 | 2017-10-30 00:28:29 +0100 | [diff] [blame] | 2662 | case H2_FT_GOAWAY: |
| 2663 | if (h2c->st0 == H2_CS_FRAME_P) |
| 2664 | ret = h2c_handle_goaway(h2c); |
| 2665 | break; |
| 2666 | |
Willy Tarreau | 1c66198 | 2017-10-30 13:52:01 +0100 | [diff] [blame] | 2667 | /* implement all extra frame types here */ |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2668 | default: |
| 2669 | /* drop frames that we ignore. They may be larger than |
| 2670 | * the buffer so we drain all of their contents until |
| 2671 | * we reach the end. |
| 2672 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2673 | ret = MIN(b_data(&h2c->dbuf), h2c->dfl); |
| 2674 | b_del(&h2c->dbuf, ret); |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2675 | h2c->dfl -= ret; |
| 2676 | ret = h2c->dfl == 0; |
| 2677 | } |
| 2678 | |
Willy Tarreau | f182a9a | 2017-10-30 12:03:50 +0100 | [diff] [blame] | 2679 | strm_err: |
Willy Tarreau | a20a519 | 2017-12-27 11:02:06 +0100 | [diff] [blame] | 2680 | /* We may have to send an RST if not done yet */ |
| 2681 | if (h2s->st == H2_SS_ERROR) |
| 2682 | h2c->st0 = H2_CS_FRAME_E; |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 2683 | |
Willy Tarreau | a20a519 | 2017-12-27 11:02:06 +0100 | [diff] [blame] | 2684 | if (h2c->st0 == H2_CS_FRAME_E) |
| 2685 | ret = h2c_send_rst_stream(h2c, h2s); |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 2686 | |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2687 | /* error or missing data condition met above ? */ |
Willy Tarreau | 1ed87b7 | 2018-11-25 08:45:16 +0100 | [diff] [blame] | 2688 | if (ret <= 0) |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2689 | break; |
| 2690 | |
| 2691 | if (h2c->st0 != H2_CS_FRAME_H) { |
Christopher Faulet | e12a26f | 2019-09-26 16:38:28 +0200 | [diff] [blame] | 2692 | ret = MIN(b_data(&h2c->dbuf), h2c->dfl); |
| 2693 | b_del(&h2c->dbuf, ret); |
| 2694 | h2c->dfl -= ret; |
| 2695 | if (!h2c->dfl) |
| 2696 | h2c->st0 = H2_CS_FRAME_H; |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2697 | } |
| 2698 | } |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 2699 | |
Willy Tarreau | cc0b8c3 | 2017-10-26 16:55:59 +0200 | [diff] [blame] | 2700 | if (h2c->rcvd_c > 0 && |
| 2701 | !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) |
| 2702 | h2c_send_conn_wu(h2c); |
| 2703 | |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 2704 | fail: |
| 2705 | /* we can go here on missing data, blocked response or error */ |
Willy Tarreau | 567beb8 | 2018-12-18 16:52:44 +0100 | [diff] [blame] | 2706 | if (h2s && h2s->cs && |
| 2707 | (b_data(&h2s->rxbuf) || |
Willy Tarreau | 76c8382 | 2019-06-15 09:55:50 +0200 | [diff] [blame] | 2708 | conn_xprt_read0_pending(h2c->conn) || |
| 2709 | h2s->st == H2_SS_CLOSED || |
Christopher Faulet | fa922f0 | 2019-05-07 10:55:17 +0200 | [diff] [blame] | 2710 | (h2s->flags & H2_SF_ES_RCVD) || |
| 2711 | (h2s->cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING|CS_FL_EOS)))) { |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2712 | /* we may have to signal the upper layers */ |
| 2713 | h2s->cs->flags |= CS_FL_RCV_MORE; |
Willy Tarreau | 7e09445 | 2018-12-19 18:08:52 +0100 | [diff] [blame] | 2714 | h2s_notify_recv(h2s); |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2715 | } |
Willy Tarreau | 1ed87b7 | 2018-11-25 08:45:16 +0100 | [diff] [blame] | 2716 | |
Willy Tarreau | 5a9c875 | 2019-08-02 07:52:08 +0200 | [diff] [blame] | 2717 | if (old_iw != h2c->miw) |
| 2718 | h2c_unblock_sfctl(h2c); |
| 2719 | |
Olivier Houchard | 3ca18bf | 2019-04-05 15:34:34 +0200 | [diff] [blame] | 2720 | h2c_restart_reading(h2c, 0); |
Willy Tarreau | bc93393 | 2017-10-09 16:21:43 +0200 | [diff] [blame] | 2721 | } |
| 2722 | |
| 2723 | /* process Tx frames from streams to be multiplexed. Returns > 0 if it reached |
| 2724 | * the end. |
| 2725 | */ |
| 2726 | static int h2_process_mux(struct h2c *h2c) |
| 2727 | { |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 2728 | struct h2s *h2s, *h2s_back; |
Willy Tarreau | bacdf5a | 2017-10-17 10:57:04 +0200 | [diff] [blame] | 2729 | |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 2730 | if (unlikely(h2c->st0 < H2_CS_FRAME_H)) { |
| 2731 | if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) { |
| 2732 | if (unlikely(h2c_bck_send_preface(h2c) <= 0)) { |
| 2733 | /* RFC7540#3.5: a GOAWAY frame MAY be omitted */ |
Willy Tarreau | 21178a5 | 2019-10-23 11:06:35 +0200 | [diff] [blame] | 2734 | if (h2c->st0 == H2_CS_ERROR) |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 2735 | h2c->st0 = H2_CS_ERROR2; |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 2736 | goto fail; |
| 2737 | } |
| 2738 | h2c->st0 = H2_CS_SETTINGS1; |
| 2739 | } |
| 2740 | /* need to wait for the other side */ |
Willy Tarreau | 75a930a | 2018-12-12 08:03:58 +0100 | [diff] [blame] | 2741 | if (h2c->st0 < H2_CS_FRAME_H) |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 2742 | return 1; |
| 2743 | } |
| 2744 | |
Willy Tarreau | cc0b8c3 | 2017-10-26 16:55:59 +0200 | [diff] [blame] | 2745 | /* start by sending possibly pending window updates */ |
Willy Tarreau | 9c497c2 | 2019-08-06 15:39:32 +0200 | [diff] [blame] | 2746 | if (h2c->rcvd_s > 0 && |
| 2747 | !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) && |
| 2748 | h2c_send_strm_wu(h2c) < 0) |
| 2749 | goto fail; |
| 2750 | |
Willy Tarreau | cc0b8c3 | 2017-10-26 16:55:59 +0200 | [diff] [blame] | 2751 | if (h2c->rcvd_c > 0 && |
| 2752 | !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) && |
| 2753 | h2c_send_conn_wu(h2c) < 0) |
| 2754 | goto fail; |
| 2755 | |
Willy Tarreau | bacdf5a | 2017-10-17 10:57:04 +0200 | [diff] [blame] | 2756 | /* First we always process the flow control list because the streams |
| 2757 | * waiting there were already elected for immediate emission but were |
| 2758 | * blocked just on this. |
| 2759 | */ |
| 2760 | |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 2761 | list_for_each_entry_safe(h2s, h2s_back, &h2c->fctl_list, list) { |
Willy Tarreau | bacdf5a | 2017-10-17 10:57:04 +0200 | [diff] [blame] | 2762 | if (h2c->mws <= 0 || h2c->flags & H2_CF_MUX_BLOCK_ANY || |
| 2763 | h2c->st0 >= H2_CS_ERROR) |
| 2764 | break; |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 2765 | |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 2766 | if (LIST_ADDED(&h2s->sending_list)) |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 2767 | continue; |
Willy Tarreau | bacdf5a | 2017-10-17 10:57:04 +0200 | [diff] [blame] | 2768 | |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 2769 | h2s->flags &= ~H2_SF_BLK_ANY; |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 2770 | /* For some reason, the upper layer failed to subsribe again, |
| 2771 | * so remove it from the send_list |
| 2772 | */ |
| 2773 | if (!h2s->send_wait) { |
| 2774 | LIST_DEL_INIT(&h2s->list); |
| 2775 | continue; |
| 2776 | } |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2777 | h2s->send_wait->events &= ~SUB_RETRY_SEND; |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 2778 | LIST_ADDQ(&h2c->sending_list, &h2s->sending_list); |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 2779 | tasklet_wakeup(h2s->send_wait->tasklet); |
Willy Tarreau | bacdf5a | 2017-10-17 10:57:04 +0200 | [diff] [blame] | 2780 | } |
| 2781 | |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 2782 | list_for_each_entry_safe(h2s, h2s_back, &h2c->send_list, list) { |
Willy Tarreau | bacdf5a | 2017-10-17 10:57:04 +0200 | [diff] [blame] | 2783 | if (h2c->st0 >= H2_CS_ERROR || h2c->flags & H2_CF_MUX_BLOCK_ANY) |
| 2784 | break; |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 2785 | |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 2786 | if (LIST_ADDED(&h2s->sending_list)) |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 2787 | continue; |
Willy Tarreau | bacdf5a | 2017-10-17 10:57:04 +0200 | [diff] [blame] | 2788 | |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 2789 | /* For some reason, the upper layer failed to subsribe again, |
| 2790 | * so remove it from the send_list |
| 2791 | */ |
| 2792 | if (!h2s->send_wait) { |
| 2793 | LIST_DEL_INIT(&h2s->list); |
| 2794 | continue; |
| 2795 | } |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 2796 | h2s->flags &= ~H2_SF_BLK_ANY; |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2797 | h2s->send_wait->events &= ~SUB_RETRY_SEND; |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 2798 | LIST_ADDQ(&h2c->sending_list, &h2s->sending_list); |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 2799 | tasklet_wakeup(h2s->send_wait->tasklet); |
Willy Tarreau | bacdf5a | 2017-10-17 10:57:04 +0200 | [diff] [blame] | 2800 | } |
| 2801 | |
Willy Tarreau | cc0b8c3 | 2017-10-26 16:55:59 +0200 | [diff] [blame] | 2802 | fail: |
Willy Tarreau | 3eabe9b | 2017-11-07 11:03:01 +0100 | [diff] [blame] | 2803 | if (unlikely(h2c->st0 >= H2_CS_ERROR)) { |
Willy Tarreau | 081d472 | 2017-05-16 21:51:05 +0200 | [diff] [blame] | 2804 | if (h2c->st0 == H2_CS_ERROR) { |
| 2805 | if (h2c->max_id >= 0) { |
| 2806 | h2c_send_goaway_error(h2c, NULL); |
| 2807 | if (h2c->flags & H2_CF_MUX_BLOCK_ANY) |
| 2808 | return 0; |
| 2809 | } |
| 2810 | |
| 2811 | h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) ! |
| 2812 | } |
| 2813 | return 1; |
| 2814 | } |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 2815 | return (1); |
Willy Tarreau | bc93393 | 2017-10-09 16:21:43 +0200 | [diff] [blame] | 2816 | } |
| 2817 | |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 2818 | |
Willy Tarreau | 479998a | 2018-11-18 06:30:59 +0100 | [diff] [blame] | 2819 | /* Attempt to read data, and subscribe if none available. |
| 2820 | * The function returns 1 if data has been received, otherwise zero. |
| 2821 | */ |
Olivier Houchard | d4dd22d | 2018-08-17 18:39:46 +0200 | [diff] [blame] | 2822 | static int h2_recv(struct h2c *h2c) |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 2823 | { |
Olivier Houchard | af4021e | 2018-08-09 13:06:55 +0200 | [diff] [blame] | 2824 | struct connection *conn = h2c->conn; |
Willy Tarreau | 35dbd5d | 2017-09-22 09:13:49 +0200 | [diff] [blame] | 2825 | struct buffer *buf; |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2826 | int max; |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 2827 | size_t ret; |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2828 | |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2829 | if (h2c->wait_event.events & SUB_RETRY_RECV) |
Olivier Houchard | 81a15af | 2018-10-19 17:26:49 +0200 | [diff] [blame] | 2830 | return (b_data(&h2c->dbuf)); |
Olivier Houchard | af4021e | 2018-08-09 13:06:55 +0200 | [diff] [blame] | 2831 | |
Willy Tarreau | 315d807 | 2017-12-10 22:17:57 +0100 | [diff] [blame] | 2832 | if (!h2_recv_allowed(h2c)) |
Olivier Houchard | 81a15af | 2018-10-19 17:26:49 +0200 | [diff] [blame] | 2833 | return 1; |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2834 | |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 2835 | buf = h2_get_buf(h2c, &h2c->dbuf); |
Willy Tarreau | 1b62c5c | 2017-09-25 11:55:01 +0200 | [diff] [blame] | 2836 | if (!buf) { |
| 2837 | h2c->flags |= H2_CF_DEM_DALLOC; |
Olivier Houchard | d4dd22d | 2018-08-17 18:39:46 +0200 | [diff] [blame] | 2838 | return 0; |
Willy Tarreau | 1b62c5c | 2017-09-25 11:55:01 +0200 | [diff] [blame] | 2839 | } |
Willy Tarreau | 35dbd5d | 2017-09-22 09:13:49 +0200 | [diff] [blame] | 2840 | |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 2841 | do { |
Willy Tarreau | e0f24ee | 2018-12-14 10:51:23 +0100 | [diff] [blame] | 2842 | b_realign_if_empty(buf); |
Willy Tarreau | 2a59e87 | 2018-12-12 08:23:47 +0100 | [diff] [blame] | 2843 | if (!b_data(buf) && (h2c->proxy->options2 & PR_O2_USE_HTX)) { |
| 2844 | /* HTX in use : try to pre-align the buffer like the |
| 2845 | * rxbufs will be to optimize memory copies. We'll make |
| 2846 | * sure that the frame header lands at the end of the |
| 2847 | * HTX block to alias it upon recv. We cannot use the |
| 2848 | * head because rcv_buf() will realign the buffer if |
| 2849 | * it's empty. Thus we cheat and pretend we already |
| 2850 | * have a few bytes there. |
| 2851 | */ |
| 2852 | max = buf_room_for_htx_data(buf) + 9; |
Willy Tarreau | c0960d1 | 2018-12-14 10:59:15 +0100 | [diff] [blame] | 2853 | buf->head = sizeof(struct htx) - 9; |
Willy Tarreau | 2a59e87 | 2018-12-12 08:23:47 +0100 | [diff] [blame] | 2854 | } |
| 2855 | else |
| 2856 | max = b_room(buf); |
| 2857 | |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 2858 | if (max) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 2859 | ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0); |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 2860 | else |
| 2861 | ret = 0; |
| 2862 | } while (ret > 0); |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2863 | |
Willy Tarreau | a8fcdac | 2019-08-02 07:48:47 +0200 | [diff] [blame] | 2864 | if (max && !ret && h2_recv_allowed(h2c)) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 2865 | conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h2c->wait_event); |
Olivier Houchard | 81a15af | 2018-10-19 17:26:49 +0200 | [diff] [blame] | 2866 | |
Olivier Houchard | a1411e6 | 2018-08-17 18:42:48 +0200 | [diff] [blame] | 2867 | if (!b_data(buf)) { |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 2868 | h2_release_buf(h2c, &h2c->dbuf); |
Olivier Houchard | 4667773 | 2018-11-29 17:06:17 +0100 | [diff] [blame] | 2869 | return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn)); |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2870 | } |
| 2871 | |
Willy Tarreau | b7b5fe1 | 2018-06-18 13:33:09 +0200 | [diff] [blame] | 2872 | if (b_data(buf) == buf->size) |
Willy Tarreau | fbe3b4f | 2017-10-09 15:14:19 +0200 | [diff] [blame] | 2873 | h2c->flags |= H2_CF_DEM_DFULL; |
Olivier Houchard | d4dd22d | 2018-08-17 18:39:46 +0200 | [diff] [blame] | 2874 | return 1; |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 2875 | } |
| 2876 | |
Willy Tarreau | 479998a | 2018-11-18 06:30:59 +0100 | [diff] [blame] | 2877 | /* Try to send data if possible. |
| 2878 | * The function returns 1 if data have been sent, otherwise zero. |
| 2879 | */ |
Olivier Houchard | d4dd22d | 2018-08-17 18:39:46 +0200 | [diff] [blame] | 2880 | static int h2_send(struct h2c *h2c) |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 2881 | { |
Olivier Houchard | 29fb89d | 2018-08-02 18:56:36 +0200 | [diff] [blame] | 2882 | struct connection *conn = h2c->conn; |
Willy Tarreau | bc93393 | 2017-10-09 16:21:43 +0200 | [diff] [blame] | 2883 | int done; |
Olivier Houchard | d4dd22d | 2018-08-17 18:39:46 +0200 | [diff] [blame] | 2884 | int sent = 0; |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2885 | |
| 2886 | if (conn->flags & CO_FL_ERROR) |
Olivier Houchard | 7c6f8b1 | 2018-11-13 16:48:36 +0100 | [diff] [blame] | 2887 | return 1; |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2888 | |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 2889 | |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2890 | if (conn->flags & (CO_FL_HANDSHAKE|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) { |
| 2891 | /* a handshake was requested */ |
Olivier Houchard | d4dd22d | 2018-08-17 18:39:46 +0200 | [diff] [blame] | 2892 | goto schedule; |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2893 | } |
| 2894 | |
Willy Tarreau | bc93393 | 2017-10-09 16:21:43 +0200 | [diff] [blame] | 2895 | /* This loop is quite simple : it tries to fill as much as it can from |
| 2896 | * pending streams into the existing buffer until it's reportedly full |
| 2897 | * or the end of send requests is reached. Then it tries to send this |
| 2898 | * buffer's contents out, marks it not full if at least one byte could |
| 2899 | * be sent, and tries again. |
| 2900 | * |
| 2901 | * The snd_buf() function normally takes a "flags" argument which may |
| 2902 | * be made of a combination of CO_SFL_MSG_MORE to indicate that more |
| 2903 | * data immediately comes and CO_SFL_STREAMER to indicate that the |
| 2904 | * connection is streaming lots of data (used to increase TLS record |
| 2905 | * size at the expense of latency). The former can be sent any time |
| 2906 | * there's a buffer full flag, as it indicates at least one stream |
| 2907 | * attempted to send and failed so there are pending data. An |
| 2908 | * alternative would be to set it as long as there's an active stream |
| 2909 | * but that would be problematic for ACKs until we have an absolute |
| 2910 | * guarantee that all waiters have at least one byte to send. The |
| 2911 | * latter should possibly not be set for now. |
| 2912 | */ |
| 2913 | |
| 2914 | done = 0; |
| 2915 | while (!done) { |
| 2916 | unsigned int flags = 0; |
Willy Tarreau | 41c4d6a | 2019-05-26 09:49:17 +0200 | [diff] [blame] | 2917 | unsigned int released = 0; |
| 2918 | struct buffer *buf; |
Willy Tarreau | bc93393 | 2017-10-09 16:21:43 +0200 | [diff] [blame] | 2919 | |
| 2920 | /* fill as much as we can into the current buffer */ |
| 2921 | while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done) |
| 2922 | done = h2_process_mux(h2c); |
| 2923 | |
Olivier Houchard | 2b09443 | 2019-01-29 18:28:36 +0100 | [diff] [blame] | 2924 | if (h2c->flags & H2_CF_MUX_MALLOC) |
Willy Tarreau | 7f1265a | 2019-05-29 17:36:37 +0200 | [diff] [blame] | 2925 | done = 1; // we won't go further without extra buffers |
Olivier Houchard | 2b09443 | 2019-01-29 18:28:36 +0100 | [diff] [blame] | 2926 | |
Willy Tarreau | bc93393 | 2017-10-09 16:21:43 +0200 | [diff] [blame] | 2927 | if (conn->flags & CO_FL_ERROR) |
| 2928 | break; |
| 2929 | |
| 2930 | if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM)) |
| 2931 | flags |= CO_SFL_MSG_MORE; |
| 2932 | |
Willy Tarreau | 41c4d6a | 2019-05-26 09:49:17 +0200 | [diff] [blame] | 2933 | for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) { |
| 2934 | if (b_data(buf)) { |
| 2935 | int ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, buf, b_data(buf), flags); |
Willy Tarreau | 7f1265a | 2019-05-29 17:36:37 +0200 | [diff] [blame] | 2936 | if (!ret) { |
| 2937 | done = 1; |
Willy Tarreau | 41c4d6a | 2019-05-26 09:49:17 +0200 | [diff] [blame] | 2938 | break; |
Willy Tarreau | 7f1265a | 2019-05-29 17:36:37 +0200 | [diff] [blame] | 2939 | } |
Willy Tarreau | 41c4d6a | 2019-05-26 09:49:17 +0200 | [diff] [blame] | 2940 | sent = 1; |
| 2941 | b_del(buf, ret); |
Willy Tarreau | 7f1265a | 2019-05-29 17:36:37 +0200 | [diff] [blame] | 2942 | if (b_data(buf)) { |
| 2943 | done = 1; |
Willy Tarreau | 41c4d6a | 2019-05-26 09:49:17 +0200 | [diff] [blame] | 2944 | break; |
Willy Tarreau | 7f1265a | 2019-05-29 17:36:37 +0200 | [diff] [blame] | 2945 | } |
Willy Tarreau | 41c4d6a | 2019-05-26 09:49:17 +0200 | [diff] [blame] | 2946 | } |
| 2947 | b_free(buf); |
| 2948 | released++; |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 2949 | } |
Willy Tarreau | bc93393 | 2017-10-09 16:21:43 +0200 | [diff] [blame] | 2950 | |
Willy Tarreau | 41c4d6a | 2019-05-26 09:49:17 +0200 | [diff] [blame] | 2951 | if (released) |
Willy Tarreau | 201840a | 2019-05-29 17:50:48 +0200 | [diff] [blame] | 2952 | offer_buffers(NULL, tasks_run_queue); |
Willy Tarreau | 41c4d6a | 2019-05-26 09:49:17 +0200 | [diff] [blame] | 2953 | |
Willy Tarreau | bc93393 | 2017-10-09 16:21:43 +0200 | [diff] [blame] | 2954 | /* wrote at least one byte, the buffer is not full anymore */ |
Christopher Faulet | 0742308 | 2019-10-24 10:31:01 +0200 | [diff] [blame] | 2955 | if (sent) |
| 2956 | h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM); |
Willy Tarreau | bc93393 | 2017-10-09 16:21:43 +0200 | [diff] [blame] | 2957 | } |
| 2958 | |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2959 | if (conn->flags & CO_FL_SOCK_WR_SH) { |
| 2960 | /* output closed, nothing to send, clear the buffer to release it */ |
Willy Tarreau | 5133096 | 2019-05-26 09:38:07 +0200 | [diff] [blame] | 2961 | b_reset(br_tail(h2c->mbuf)); |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2962 | } |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 2963 | /* We're not full anymore, so we can wake any task that are waiting |
| 2964 | * for us. |
| 2965 | */ |
Willy Tarreau | c51d47c | 2019-09-25 07:57:31 +0200 | [diff] [blame] | 2966 | if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM)) && h2c->st0 >= H2_CS_FRAME_H) { |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 2967 | struct h2s *h2s; |
| 2968 | |
| 2969 | list_for_each_entry(h2s, &h2c->send_list, list) { |
| 2970 | if (h2c->st0 >= H2_CS_ERROR || h2c->flags & H2_CF_MUX_BLOCK_ANY) |
| 2971 | break; |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 2972 | |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 2973 | if (LIST_ADDED(&h2s->sending_list)) |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 2974 | continue; |
| 2975 | |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 2976 | /* For some reason, the upper layer failed to subsribe again, |
| 2977 | * so remove it from the send_list |
| 2978 | */ |
| 2979 | if (!h2s->send_wait) { |
| 2980 | LIST_DEL_INIT(&h2s->list); |
| 2981 | continue; |
| 2982 | } |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 2983 | h2s->flags &= ~H2_SF_BLK_ANY; |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2984 | h2s->send_wait->events &= ~SUB_RETRY_SEND; |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 2985 | tasklet_wakeup(h2s->send_wait->tasklet); |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 2986 | LIST_ADDQ(&h2c->sending_list, &h2s->sending_list); |
Olivier Houchard | 4cf7fb1 | 2018-08-02 19:23:05 +0200 | [diff] [blame] | 2987 | } |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 2988 | } |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 2989 | /* We're done, no more to send */ |
Willy Tarreau | 662fafc | 2019-05-26 09:43:07 +0200 | [diff] [blame] | 2990 | if (!br_data(h2c->mbuf)) |
Olivier Houchard | d4dd22d | 2018-08-17 18:39:46 +0200 | [diff] [blame] | 2991 | return sent; |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 2992 | schedule: |
Willy Tarreau | 7f1265a | 2019-05-29 17:36:37 +0200 | [diff] [blame] | 2993 | if (!(conn->flags & CO_FL_ERROR) && !(h2c->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 2994 | conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h2c->wait_event); |
Willy Tarreau | 7f1265a | 2019-05-29 17:36:37 +0200 | [diff] [blame] | 2995 | |
Olivier Houchard | d4dd22d | 2018-08-17 18:39:46 +0200 | [diff] [blame] | 2996 | return sent; |
Olivier Houchard | 29fb89d | 2018-08-02 18:56:36 +0200 | [diff] [blame] | 2997 | } |
| 2998 | |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 2999 | /* this is the tasklet referenced in h2c->wait_event.tasklet */ |
Olivier Houchard | 29fb89d | 2018-08-02 18:56:36 +0200 | [diff] [blame] | 3000 | static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short status) |
| 3001 | { |
| 3002 | struct h2c *h2c = ctx; |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 3003 | int ret = 0; |
Olivier Houchard | 29fb89d | 2018-08-02 18:56:36 +0200 | [diff] [blame] | 3004 | |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 3005 | if (!(h2c->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 3006 | ret = h2_send(h2c); |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 3007 | if (!(h2c->wait_event.events & SUB_RETRY_RECV)) |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 3008 | ret |= h2_recv(h2c); |
Willy Tarreau | cef5c8e | 2018-12-18 10:29:54 +0100 | [diff] [blame] | 3009 | if (ret || b_data(&h2c->dbuf)) |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 3010 | h2_process(h2c); |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 3011 | return NULL; |
Willy Tarreau | fbe3b4f | 2017-10-09 15:14:19 +0200 | [diff] [blame] | 3012 | } |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 3013 | |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3014 | /* callback called on any event by the connection handler. |
| 3015 | * It applies changes and returns zero, or < 0 if it wants immediate |
| 3016 | * destruction of the connection (which normally doesn not happen in h2). |
| 3017 | */ |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 3018 | static int h2_process(struct h2c *h2c) |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3019 | { |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 3020 | struct connection *conn = h2c->conn; |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 3021 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3022 | if (b_data(&h2c->dbuf) && !(h2c->flags & H2_CF_DEM_BLOCK_ANY)) { |
Willy Tarreau | d13bf27 | 2017-12-14 10:34:52 +0100 | [diff] [blame] | 3023 | h2_process_demux(h2c); |
| 3024 | |
| 3025 | if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR) |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3026 | b_reset(&h2c->dbuf); |
Willy Tarreau | d13bf27 | 2017-12-14 10:34:52 +0100 | [diff] [blame] | 3027 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3028 | if (!b_full(&h2c->dbuf)) |
Willy Tarreau | d13bf27 | 2017-12-14 10:34:52 +0100 | [diff] [blame] | 3029 | h2c->flags &= ~H2_CF_DEM_DFULL; |
| 3030 | } |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 3031 | h2_send(h2c); |
Willy Tarreau | d13bf27 | 2017-12-14 10:34:52 +0100 | [diff] [blame] | 3032 | |
Willy Tarreau | 0b37d65 | 2018-10-03 10:33:02 +0200 | [diff] [blame] | 3033 | if (unlikely(h2c->proxy->state == PR_STSTOPPED)) { |
Willy Tarreau | 8ec1406 | 2017-12-30 18:08:13 +0100 | [diff] [blame] | 3034 | /* frontend is stopping, reload likely in progress, let's try |
| 3035 | * to announce a graceful shutdown if not yet done. We don't |
| 3036 | * care if it fails, it will be tried again later. |
| 3037 | */ |
| 3038 | if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) { |
| 3039 | if (h2c->last_sid < 0) |
| 3040 | h2c->last_sid = (1U << 31) - 1; |
| 3041 | h2c_send_goaway_error(h2c, NULL); |
| 3042 | } |
| 3043 | } |
| 3044 | |
Olivier Houchard | 7fc96d5 | 2017-11-23 18:25:47 +0100 | [diff] [blame] | 3045 | /* |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 3046 | * If we received early data, and the handshake is done, wake |
| 3047 | * any stream that was waiting for it. |
Olivier Houchard | 7fc96d5 | 2017-11-23 18:25:47 +0100 | [diff] [blame] | 3048 | */ |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 3049 | if (!(h2c->flags & H2_CF_WAIT_FOR_HS) && |
| 3050 | (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_HANDSHAKE | CO_FL_EARLY_DATA)) == CO_FL_EARLY_DATA) { |
| 3051 | struct eb32_node *node; |
| 3052 | struct h2s *h2s; |
| 3053 | |
| 3054 | h2c->flags |= H2_CF_WAIT_FOR_HS; |
| 3055 | node = eb32_lookup_ge(&h2c->streams_by_id, 1); |
| 3056 | |
| 3057 | while (node) { |
| 3058 | h2s = container_of(node, struct h2s, by_id); |
Willy Tarreau | fde287c | 2018-12-19 18:33:16 +0100 | [diff] [blame] | 3059 | if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS) |
Willy Tarreau | 7e09445 | 2018-12-19 18:08:52 +0100 | [diff] [blame] | 3060 | h2s_notify_recv(h2s); |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 3061 | node = eb32_next(node); |
| 3062 | } |
Olivier Houchard | 7fc96d5 | 2017-11-23 18:25:47 +0100 | [diff] [blame] | 3063 | } |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 3064 | |
Willy Tarreau | 26bd761 | 2017-10-09 16:47:04 +0200 | [diff] [blame] | 3065 | if (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn) || |
Willy Tarreau | 29a9824 | 2017-10-31 06:59:15 +0100 | [diff] [blame] | 3066 | h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED || |
| 3067 | (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 && |
| 3068 | h2c->max_id >= h2c->last_sid)) { |
Willy Tarreau | 2348291 | 2019-05-07 15:23:14 +0200 | [diff] [blame] | 3069 | h2_wake_some_streams(h2c, 0); |
Willy Tarreau | fbe3b4f | 2017-10-09 15:14:19 +0200 | [diff] [blame] | 3070 | |
| 3071 | if (eb_is_empty(&h2c->streams_by_id)) { |
| 3072 | /* no more stream, kill the connection now */ |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 3073 | h2_release(h2c); |
Willy Tarreau | fbe3b4f | 2017-10-09 15:14:19 +0200 | [diff] [blame] | 3074 | return -1; |
| 3075 | } |
Willy Tarreau | ab66e15 | 2019-10-31 15:36:30 +0100 | [diff] [blame] | 3076 | |
| 3077 | /* connections in error must be removed from the idle lists */ |
| 3078 | HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]); |
| 3079 | LIST_DEL_LOCKED(&conn->list); |
| 3080 | HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]); |
| 3081 | } |
| 3082 | else if (h2c->st0 == H2_CS_ERROR) { |
| 3083 | /* connections in error must be removed from the idle lists */ |
| 3084 | HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]); |
| 3085 | LIST_DEL_LOCKED(&conn->list); |
| 3086 | HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]); |
Willy Tarreau | fbe3b4f | 2017-10-09 15:14:19 +0200 | [diff] [blame] | 3087 | } |
| 3088 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3089 | if (!b_data(&h2c->dbuf)) |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 3090 | h2_release_buf(h2c, &h2c->dbuf); |
Willy Tarreau | fbe3b4f | 2017-10-09 15:14:19 +0200 | [diff] [blame] | 3091 | |
Olivier Houchard | 53216e7 | 2018-10-10 15:46:36 +0200 | [diff] [blame] | 3092 | if ((conn->flags & CO_FL_SOCK_WR_SH) || |
| 3093 | h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) || |
| 3094 | (h2c->st0 != H2_CS_ERROR && |
Willy Tarreau | 662fafc | 2019-05-26 09:43:07 +0200 | [diff] [blame] | 3095 | !br_data(h2c->mbuf) && |
Olivier Houchard | 53216e7 | 2018-10-10 15:46:36 +0200 | [diff] [blame] | 3096 | (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) && |
| 3097 | ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list)))) |
Willy Tarreau | 2e3c000 | 2019-05-26 09:45:23 +0200 | [diff] [blame] | 3098 | h2_release_mbuf(h2c); |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 3099 | |
Willy Tarreau | 3f13357 | 2017-10-31 19:21:06 +0100 | [diff] [blame] | 3100 | if (h2c->task) { |
Willy Tarreau | 534d8f9 | 2019-10-01 10:12:00 +0200 | [diff] [blame] | 3101 | if (h2c_may_expire(h2c)) |
| 3102 | h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout); |
| 3103 | else |
| 3104 | h2c->task->expire = TICK_ETERNITY; |
Willy Tarreau | 7348119 | 2019-06-07 08:20:46 +0200 | [diff] [blame] | 3105 | task_queue(h2c->task); |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3106 | } |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 3107 | |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 3108 | h2_send(h2c); |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3109 | return 0; |
| 3110 | } |
| 3111 | |
Willy Tarreau | 749f5ca | 2019-03-21 19:19:36 +0100 | [diff] [blame] | 3112 | /* wake-up function called by the connection layer (mux_ops.wake) */ |
Olivier Houchard | 21df6cc | 2018-09-14 23:21:44 +0200 | [diff] [blame] | 3113 | static int h2_wake(struct connection *conn) |
| 3114 | { |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 3115 | struct h2c *h2c = conn->ctx; |
Olivier Houchard | 21df6cc | 2018-09-14 23:21:44 +0200 | [diff] [blame] | 3116 | |
| 3117 | return (h2_process(h2c)); |
| 3118 | } |
| 3119 | |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3120 | /* Connection timeout management. The principle is that if there's no receipt |
| 3121 | * nor sending for a certain amount of time, the connection is closed. If the |
| 3122 | * MUX buffer still has lying data or is not allocatable, the connection is |
| 3123 | * immediately killed. If it's allocatable and empty, we attempt to send a |
| 3124 | * GOAWAY frame. |
| 3125 | */ |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 3126 | static struct task *h2_timeout_task(struct task *t, void *context, unsigned short state) |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3127 | { |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 3128 | struct h2c *h2c = context; |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3129 | int expired = tick_is_expired(t->expire, now_ms); |
| 3130 | |
Willy Tarreau | 0975f11 | 2018-03-29 15:22:59 +0200 | [diff] [blame] | 3131 | if (!expired && h2c) |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3132 | return t; |
| 3133 | |
Willy Tarreau | 534d8f9 | 2019-10-01 10:12:00 +0200 | [diff] [blame] | 3134 | if (h2c && !h2c_may_expire(h2c)) { |
| 3135 | /* we do still have streams but all of them are idle, waiting |
| 3136 | * for the data layer, so we must not enforce the timeout here. |
| 3137 | */ |
| 3138 | t->expire = TICK_ETERNITY; |
| 3139 | return t; |
| 3140 | } |
| 3141 | |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 3142 | task_destroy(t); |
Willy Tarreau | 0975f11 | 2018-03-29 15:22:59 +0200 | [diff] [blame] | 3143 | |
| 3144 | if (!h2c) { |
| 3145 | /* resources were already deleted */ |
| 3146 | return NULL; |
| 3147 | } |
| 3148 | |
| 3149 | h2c->task = NULL; |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3150 | h2c_error(h2c, H2_ERR_NO_ERROR); |
Willy Tarreau | 2348291 | 2019-05-07 15:23:14 +0200 | [diff] [blame] | 3151 | h2_wake_some_streams(h2c, 0); |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3152 | |
Willy Tarreau | 662fafc | 2019-05-26 09:43:07 +0200 | [diff] [blame] | 3153 | if (br_data(h2c->mbuf)) { |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3154 | /* don't even try to send a GOAWAY, the buffer is stuck */ |
| 3155 | h2c->flags |= H2_CF_GOAWAY_FAILED; |
| 3156 | } |
| 3157 | |
| 3158 | /* try to send but no need to insist */ |
Willy Tarreau | 599391a | 2017-11-24 10:16:00 +0100 | [diff] [blame] | 3159 | h2c->last_sid = h2c->max_id; |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3160 | if (h2c_send_goaway_error(h2c, NULL) <= 0) |
| 3161 | h2c->flags |= H2_CF_GOAWAY_FAILED; |
| 3162 | |
Willy Tarreau | 662fafc | 2019-05-26 09:43:07 +0200 | [diff] [blame] | 3163 | if (br_data(h2c->mbuf) && !(h2c->flags & H2_CF_GOAWAY_FAILED) && conn_xprt_ready(h2c->conn)) { |
Willy Tarreau | 41c4d6a | 2019-05-26 09:49:17 +0200 | [diff] [blame] | 3164 | unsigned int released = 0; |
| 3165 | struct buffer *buf; |
| 3166 | |
| 3167 | for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) { |
| 3168 | if (b_data(buf)) { |
| 3169 | int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0); |
| 3170 | if (!ret) |
| 3171 | break; |
| 3172 | b_del(buf, ret); |
| 3173 | if (b_data(buf)) |
| 3174 | break; |
| 3175 | b_free(buf); |
| 3176 | released++; |
| 3177 | } |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 3178 | } |
Willy Tarreau | 41c4d6a | 2019-05-26 09:49:17 +0200 | [diff] [blame] | 3179 | |
| 3180 | if (released) |
Willy Tarreau | 201840a | 2019-05-29 17:50:48 +0200 | [diff] [blame] | 3181 | offer_buffers(NULL, tasks_run_queue); |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 3182 | } |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3183 | |
Willy Tarreau | ab66e15 | 2019-10-31 15:36:30 +0100 | [diff] [blame] | 3184 | /* in any case this connection must not be considered idle anymore */ |
| 3185 | HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[tid]); |
| 3186 | LIST_DEL_LOCKED(&h2c->conn->list); |
| 3187 | HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[tid]); |
| 3188 | |
Willy Tarreau | 0975f11 | 2018-03-29 15:22:59 +0200 | [diff] [blame] | 3189 | /* either we can release everything now or it will be done later once |
| 3190 | * the last stream closes. |
| 3191 | */ |
| 3192 | if (eb_is_empty(&h2c->streams_by_id)) |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 3193 | h2_release(h2c); |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3194 | |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3195 | return NULL; |
| 3196 | } |
| 3197 | |
| 3198 | |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3199 | /*******************************************/ |
| 3200 | /* functions below are used by the streams */ |
| 3201 | /*******************************************/ |
| 3202 | |
| 3203 | /* |
| 3204 | * Attach a new stream to a connection |
| 3205 | * (Used for outgoing connections) |
| 3206 | */ |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 3207 | static struct conn_stream *h2_attach(struct connection *conn, struct session *sess) |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3208 | { |
Olivier Houchard | 7a57e8a | 2018-11-27 17:36:33 +0100 | [diff] [blame] | 3209 | struct conn_stream *cs; |
| 3210 | struct h2s *h2s; |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 3211 | struct h2c *h2c = conn->ctx; |
Olivier Houchard | 7a57e8a | 2018-11-27 17:36:33 +0100 | [diff] [blame] | 3212 | |
| 3213 | cs = cs_new(conn); |
| 3214 | if (!cs) |
| 3215 | return NULL; |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 3216 | h2s = h2c_bck_stream_new(h2c, cs, sess); |
Olivier Houchard | 7a57e8a | 2018-11-27 17:36:33 +0100 | [diff] [blame] | 3217 | if (!h2s) { |
| 3218 | cs_free(cs); |
| 3219 | return NULL; |
| 3220 | } |
| 3221 | return cs; |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3222 | } |
| 3223 | |
Willy Tarreau | fafd398 | 2018-11-18 21:29:20 +0100 | [diff] [blame] | 3224 | /* Retrieves the first valid conn_stream from this connection, or returns NULL. |
| 3225 | * We have to scan because we may have some orphan streams. It might be |
| 3226 | * beneficial to scan backwards from the end to reduce the likeliness to find |
| 3227 | * orphans. |
| 3228 | */ |
| 3229 | static const struct conn_stream *h2_get_first_cs(const struct connection *conn) |
| 3230 | { |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 3231 | struct h2c *h2c = conn->ctx; |
Willy Tarreau | fafd398 | 2018-11-18 21:29:20 +0100 | [diff] [blame] | 3232 | struct h2s *h2s; |
| 3233 | struct eb32_node *node; |
| 3234 | |
| 3235 | node = eb32_first(&h2c->streams_by_id); |
| 3236 | while (node) { |
| 3237 | h2s = container_of(node, struct h2s, by_id); |
| 3238 | if (h2s->cs) |
| 3239 | return h2s->cs; |
| 3240 | node = eb32_next(node); |
| 3241 | } |
| 3242 | return NULL; |
| 3243 | } |
| 3244 | |
Olivier Houchard | 198d129 | 2019-10-25 16:19:26 +0200 | [diff] [blame] | 3245 | static int h2_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output) |
| 3246 | { |
| 3247 | int ret = 0; |
| 3248 | struct h2c *h2c = conn->ctx; |
| 3249 | |
| 3250 | switch (mux_ctl) { |
| 3251 | case MUX_STATUS: |
| 3252 | /* Only consider the mux to be ready if we're done with |
| 3253 | * the preface and settings, and we had no error. |
| 3254 | */ |
| 3255 | if (h2c->st0 >= H2_CS_FRAME_H && h2c->st0 < H2_CS_ERROR) |
| 3256 | ret |= MUX_STATUS_READY; |
| 3257 | return ret; |
| 3258 | default: |
| 3259 | return -1; |
| 3260 | } |
| 3261 | } |
| 3262 | |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3263 | /* |
Olivier Houchard | 060ed43 | 2018-11-06 16:32:42 +0100 | [diff] [blame] | 3264 | * Destroy the mux and the associated connection, if it is no longer used |
| 3265 | */ |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 3266 | static void h2_destroy(void *ctx) |
Olivier Houchard | 060ed43 | 2018-11-06 16:32:42 +0100 | [diff] [blame] | 3267 | { |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 3268 | struct h2c *h2c = ctx; |
Olivier Houchard | 060ed43 | 2018-11-06 16:32:42 +0100 | [diff] [blame] | 3269 | |
Christopher Faulet | 39a96ee | 2019-04-08 10:52:21 +0200 | [diff] [blame] | 3270 | if (eb_is_empty(&h2c->streams_by_id) || !h2c->conn || h2c->conn->ctx != h2c) |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 3271 | h2_release(h2c); |
Olivier Houchard | 060ed43 | 2018-11-06 16:32:42 +0100 | [diff] [blame] | 3272 | } |
| 3273 | |
| 3274 | /* |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3275 | * Detach the stream from the connection and possibly release the connection. |
| 3276 | */ |
| 3277 | static void h2_detach(struct conn_stream *cs) |
| 3278 | { |
Willy Tarreau | 6093514 | 2017-10-16 18:11:19 +0200 | [diff] [blame] | 3279 | struct h2s *h2s = cs->ctx; |
| 3280 | struct h2c *h2c; |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 3281 | struct session *sess; |
Willy Tarreau | 6093514 | 2017-10-16 18:11:19 +0200 | [diff] [blame] | 3282 | |
| 3283 | cs->ctx = NULL; |
| 3284 | if (!h2s) |
| 3285 | return; |
| 3286 | |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 3287 | /* The stream is about to die, so no need to attempt to run its task */ |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 3288 | if (LIST_ADDED(&h2s->sending_list) && |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 3289 | h2s->send_wait != &h2s->wait_event) { |
Willy Tarreau | 86eded6 | 2019-06-14 14:47:49 +0200 | [diff] [blame] | 3290 | tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet); |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 3291 | LIST_DEL_INIT(&h2s->sending_list); |
Olivier Houchard | d9986ed | 2019-05-09 13:24:08 +0200 | [diff] [blame] | 3292 | /* |
| 3293 | * At this point, the stream_interface is supposed to have called |
| 3294 | * h2_unsubscribe(), so the only way there's still a |
| 3295 | * subscription that came from the stream_interface (as we |
| 3296 | * can subscribe ourself, in h2_do_shutw() and h2_do_shutr(), |
| 3297 | * without the stream_interface involved) is that we subscribed |
| 3298 | * for sending, we woke the tasklet up and removed the |
| 3299 | * SUB_RETRY_SEND flag, so the stream_interface would not |
| 3300 | * know it has to unsubscribe for send, but the tasklet hasn't |
| 3301 | * run yet. Make sure to handle that by explicitely setting |
| 3302 | * send_wait to NULL, as nothing else will do it for us. |
| 3303 | */ |
| 3304 | h2s->send_wait = NULL; |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 3305 | } |
| 3306 | |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 3307 | sess = h2s->sess; |
Willy Tarreau | 6093514 | 2017-10-16 18:11:19 +0200 | [diff] [blame] | 3308 | h2c = h2s->h2c; |
| 3309 | h2s->cs = NULL; |
Willy Tarreau | 7ac60e8 | 2018-07-19 09:04:05 +0200 | [diff] [blame] | 3310 | h2c->nb_cs--; |
Willy Tarreau | fa1d357 | 2019-01-31 10:31:51 +0100 | [diff] [blame] | 3311 | if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY && |
| 3312 | !h2_frt_has_too_many_cs(h2c)) { |
| 3313 | /* frontend connection was blocking new streams creation */ |
Willy Tarreau | f210191 | 2018-07-19 10:11:38 +0200 | [diff] [blame] | 3314 | h2c->flags &= ~H2_CF_DEM_TOOMANY; |
Olivier Houchard | 3ca18bf | 2019-04-05 15:34:34 +0200 | [diff] [blame] | 3315 | h2c_restart_reading(h2c, 1); |
Willy Tarreau | f210191 | 2018-07-19 10:11:38 +0200 | [diff] [blame] | 3316 | } |
Willy Tarreau | 6093514 | 2017-10-16 18:11:19 +0200 | [diff] [blame] | 3317 | |
Willy Tarreau | 22cf59b | 2017-11-10 11:42:33 +0100 | [diff] [blame] | 3318 | /* this stream may be blocked waiting for some data to leave (possibly |
| 3319 | * an ES or RST frame), so orphan it in this case. |
| 3320 | */ |
Willy Tarreau | 3041fcc | 2018-03-29 15:41:32 +0200 | [diff] [blame] | 3321 | if (!(cs->conn->flags & CO_FL_ERROR) && |
Willy Tarreau | a2b5181 | 2018-07-27 09:55:14 +0200 | [diff] [blame] | 3322 | (h2c->st0 < H2_CS_ERROR) && |
Olivier Houchard | 16ff261 | 2019-03-21 15:48:46 +0100 | [diff] [blame] | 3323 | (h2s->flags & (H2_SF_BLK_MBUSY | H2_SF_BLK_MROOM | H2_SF_BLK_MFCTL)) && (h2s->send_wait || h2s->recv_wait)) |
Willy Tarreau | 22cf59b | 2017-11-10 11:42:33 +0100 | [diff] [blame] | 3324 | return; |
| 3325 | |
Willy Tarreau | 45f752e | 2017-10-30 15:44:59 +0100 | [diff] [blame] | 3326 | if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) || |
| 3327 | (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) { |
| 3328 | /* unblock the connection if it was blocked on this |
| 3329 | * stream. |
| 3330 | */ |
| 3331 | h2c->flags &= ~H2_CF_DEM_BLOCK_ANY; |
| 3332 | h2c->flags &= ~H2_CF_MUX_BLOCK_ANY; |
Olivier Houchard | 3ca18bf | 2019-04-05 15:34:34 +0200 | [diff] [blame] | 3333 | h2c_restart_reading(h2c, 1); |
Willy Tarreau | 45f752e | 2017-10-30 15:44:59 +0100 | [diff] [blame] | 3334 | } |
| 3335 | |
Willy Tarreau | 71049cc | 2018-03-28 13:56:39 +0200 | [diff] [blame] | 3336 | h2s_destroy(h2s); |
Willy Tarreau | 6093514 | 2017-10-16 18:11:19 +0200 | [diff] [blame] | 3337 | |
Olivier Houchard | 8a78690 | 2018-12-15 16:05:40 +0100 | [diff] [blame] | 3338 | if (h2c->flags & H2_CF_IS_BACK && |
| 3339 | (h2c->proxy->options2 & PR_O2_USE_HTX)) { |
Olivier Houchard | 8a78690 | 2018-12-15 16:05:40 +0100 | [diff] [blame] | 3340 | if (!(h2c->conn->flags & |
| 3341 | (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) { |
| 3342 | if (!h2c->conn->owner) { |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 3343 | h2c->conn->owner = sess; |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 3344 | if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) { |
| 3345 | h2c->conn->owner = NULL; |
| 3346 | if (eb_is_empty(&h2c->streams_by_id)) { |
| 3347 | if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn)) |
| 3348 | /* The server doesn't want it, let's kill the connection right away */ |
| 3349 | h2c->conn->mux->destroy(h2c->conn); |
| 3350 | return; |
| 3351 | } |
| 3352 | } |
Olivier Houchard | 8a78690 | 2018-12-15 16:05:40 +0100 | [diff] [blame] | 3353 | } |
Olivier Houchard | a4d4fdf | 2018-12-14 19:27:06 +0100 | [diff] [blame] | 3354 | if (eb_is_empty(&h2c->streams_by_id)) { |
| 3355 | if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) |
| 3356 | /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */ |
| 3357 | return; |
| 3358 | } |
Olivier Houchard | 8a78690 | 2018-12-15 16:05:40 +0100 | [diff] [blame] | 3359 | /* Never ever allow to reuse a connection from a non-reuse backend */ |
| 3360 | if ((h2c->proxy->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR) |
| 3361 | h2c->conn->flags |= CO_FL_PRIVATE; |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 3362 | if (!LIST_ADDED(&h2c->conn->list) && h2c->nb_streams < h2c->streams_limit) { |
Olivier Houchard | 8a78690 | 2018-12-15 16:05:40 +0100 | [diff] [blame] | 3363 | struct server *srv = objt_server(h2c->conn->target); |
| 3364 | |
| 3365 | if (srv) { |
| 3366 | if (h2c->conn->flags & CO_FL_PRIVATE) |
| 3367 | LIST_ADD(&srv->priv_conns[tid], &h2c->conn->list); |
| 3368 | else |
| 3369 | LIST_ADD(&srv->idle_conns[tid], &h2c->conn->list); |
| 3370 | } |
| 3371 | |
| 3372 | } |
| 3373 | } |
| 3374 | } |
| 3375 | |
Willy Tarreau | e323f34 | 2018-03-28 13:51:45 +0200 | [diff] [blame] | 3376 | /* We don't want to close right now unless we're removing the |
| 3377 | * last stream, and either the connection is in error, or it |
| 3378 | * reached the ID already specified in a GOAWAY frame received |
| 3379 | * or sent (as seen by last_sid >= 0). |
| 3380 | */ |
Olivier Houchard | 7a97743 | 2019-03-21 15:47:13 +0100 | [diff] [blame] | 3381 | if (h2c_is_dead(h2c)) { |
Willy Tarreau | e323f34 | 2018-03-28 13:51:45 +0200 | [diff] [blame] | 3382 | /* no more stream will come, kill it now */ |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 3383 | h2_release(h2c); |
Willy Tarreau | e323f34 | 2018-03-28 13:51:45 +0200 | [diff] [blame] | 3384 | } |
| 3385 | else if (h2c->task) { |
Willy Tarreau | 534d8f9 | 2019-10-01 10:12:00 +0200 | [diff] [blame] | 3386 | if (h2c_may_expire(h2c)) |
| 3387 | h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout); |
| 3388 | else |
| 3389 | h2c->task->expire = TICK_ETERNITY; |
Willy Tarreau | 7348119 | 2019-06-07 08:20:46 +0200 | [diff] [blame] | 3390 | task_queue(h2c->task); |
Willy Tarreau | 6093514 | 2017-10-16 18:11:19 +0200 | [diff] [blame] | 3391 | } |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3392 | } |
| 3393 | |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3394 | /* Performs a synchronous or asynchronous shutr(). */ |
| 3395 | static void h2_do_shutr(struct h2s *h2s) |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3396 | { |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3397 | struct h2c *h2c = h2s->h2c; |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 3398 | struct wait_event *sw = &h2s->wait_event; |
Willy Tarreau | c7576ea | 2017-10-29 22:00:09 +0100 | [diff] [blame] | 3399 | |
Willy Tarreau | f983d00 | 2019-05-14 10:40:21 +0200 | [diff] [blame] | 3400 | if (h2s->st == H2_SS_CLOSED) |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3401 | goto done; |
Willy Tarreau | c7576ea | 2017-10-29 22:00:09 +0100 | [diff] [blame] | 3402 | |
Willy Tarreau | 1805904 | 2019-01-31 19:12:48 +0100 | [diff] [blame] | 3403 | /* a connstream may require us to immediately kill the whole connection |
| 3404 | * for example because of a "tcp-request content reject" rule that is |
| 3405 | * normally used to limit abuse. In this case we schedule a goaway to |
| 3406 | * close the connection. |
Willy Tarreau | 926fa4c | 2017-11-07 14:42:12 +0100 | [diff] [blame] | 3407 | */ |
Willy Tarreau | 3cf69fe | 2019-05-14 10:44:40 +0200 | [diff] [blame] | 3408 | if ((h2s->flags & H2_SF_KILL_CONN) && |
Willy Tarreau | 1805904 | 2019-01-31 19:12:48 +0100 | [diff] [blame] | 3409 | !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) { |
| 3410 | h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM); |
| 3411 | h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM); |
| 3412 | } |
Christopher Faulet | 35757d3 | 2019-03-07 15:51:33 +0100 | [diff] [blame] | 3413 | else if (!(h2s->flags & H2_SF_HEADERS_SENT)) { |
| 3414 | /* Nothing was never sent for this stream, so reset with |
| 3415 | * REFUSED_STREAM error to let the client retry the |
| 3416 | * request. |
| 3417 | */ |
| 3418 | h2s_error(h2s, H2_ERR_REFUSED_STREAM); |
| 3419 | } |
Willy Tarreau | ebdb6a0 | 2019-08-06 10:30:58 +0200 | [diff] [blame] | 3420 | else { |
| 3421 | /* a final response was already provided, we don't want this |
| 3422 | * stream anymore. This may happen when the server responds |
| 3423 | * before the end of an upload and closes quickly (redirect, |
| 3424 | * deny, ...) |
| 3425 | */ |
| 3426 | h2s_error(h2s, H2_ERR_CANCEL); |
| 3427 | } |
Willy Tarreau | 1805904 | 2019-01-31 19:12:48 +0100 | [diff] [blame] | 3428 | |
Willy Tarreau | 90c3232 | 2017-11-24 08:00:30 +0100 | [diff] [blame] | 3429 | if (!(h2s->flags & H2_SF_RST_SENT) && |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3430 | h2s_send_rst_stream(h2c, h2s) <= 0) |
Willy Tarreau | b2e290a | 2018-03-30 17:35:38 +0200 | [diff] [blame] | 3431 | goto add_to_list; |
Willy Tarreau | 90c3232 | 2017-11-24 08:00:30 +0100 | [diff] [blame] | 3432 | |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 3433 | if (!(h2c->wait_event.events & SUB_RETRY_SEND)) |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 3434 | tasklet_wakeup(h2c->wait_event.tasklet); |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 3435 | h2s_close(h2s); |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3436 | done: |
| 3437 | h2s->flags &= ~H2_SF_WANT_SHUTR; |
| 3438 | return; |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3439 | add_to_list: |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 3440 | if (!LIST_ADDED(&h2s->list)) { |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 3441 | sw->events |= SUB_RETRY_SEND; |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 3442 | if (h2s->flags & H2_SF_BLK_MFCTL) { |
| 3443 | LIST_ADDQ(&h2c->fctl_list, &h2s->list); |
| 3444 | h2s->send_wait = sw; |
| 3445 | } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) { |
| 3446 | h2s->send_wait = sw; |
| 3447 | LIST_ADDQ(&h2c->send_list, &h2s->list); |
| 3448 | } |
Willy Tarreau | b2e290a | 2018-03-30 17:35:38 +0200 | [diff] [blame] | 3449 | } |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3450 | /* Let the handler know we want shutr */ |
Willy Tarreau | 2c249eb | 2019-05-13 18:06:17 +0200 | [diff] [blame] | 3451 | h2s->flags |= H2_SF_WANT_SHUTR; |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3452 | return; |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3453 | } |
| 3454 | |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3455 | /* Performs a synchronous or asynchronous shutw(). */ |
| 3456 | static void h2_do_shutw(struct h2s *h2s) |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3457 | { |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3458 | struct h2c *h2c = h2s->h2c; |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 3459 | struct wait_event *sw = &h2s->wait_event; |
Willy Tarreau | c7576ea | 2017-10-29 22:00:09 +0100 | [diff] [blame] | 3460 | |
Willy Tarreau | ebdb6a0 | 2019-08-06 10:30:58 +0200 | [diff] [blame] | 3461 | if (h2s->st == H2_SS_HLOC || h2s->st == H2_SS_CLOSED) |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3462 | goto done; |
Willy Tarreau | c7576ea | 2017-10-29 22:00:09 +0100 | [diff] [blame] | 3463 | |
Willy Tarreau | ebdb6a0 | 2019-08-06 10:30:58 +0200 | [diff] [blame] | 3464 | if (h2s->st != H2_SS_ERROR && (h2s->flags & H2_SF_HEADERS_SENT)) { |
Willy Tarreau | 58e3208 | 2017-11-07 14:41:09 +0100 | [diff] [blame] | 3465 | /* we can cleanly close using an empty data frame only after headers */ |
| 3466 | |
| 3467 | if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) && |
| 3468 | h2_send_empty_data_es(h2s) <= 0) |
Willy Tarreau | b2e290a | 2018-03-30 17:35:38 +0200 | [diff] [blame] | 3469 | goto add_to_list; |
Willy Tarreau | 58e3208 | 2017-11-07 14:41:09 +0100 | [diff] [blame] | 3470 | |
| 3471 | if (h2s->st == H2_SS_HREM) |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 3472 | h2s_close(h2s); |
Willy Tarreau | 58e3208 | 2017-11-07 14:41:09 +0100 | [diff] [blame] | 3473 | else |
| 3474 | h2s->st = H2_SS_HLOC; |
Willy Tarreau | c7576ea | 2017-10-29 22:00:09 +0100 | [diff] [blame] | 3475 | } else { |
Willy Tarreau | 1805904 | 2019-01-31 19:12:48 +0100 | [diff] [blame] | 3476 | /* a connstream may require us to immediately kill the whole connection |
| 3477 | * for example because of a "tcp-request content reject" rule that is |
| 3478 | * normally used to limit abuse. In this case we schedule a goaway to |
| 3479 | * close the connection. |
Willy Tarreau | a1349f0 | 2017-10-31 07:41:55 +0100 | [diff] [blame] | 3480 | */ |
Willy Tarreau | 3cf69fe | 2019-05-14 10:44:40 +0200 | [diff] [blame] | 3481 | if ((h2s->flags & H2_SF_KILL_CONN) && |
Willy Tarreau | 1805904 | 2019-01-31 19:12:48 +0100 | [diff] [blame] | 3482 | !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) { |
| 3483 | h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM); |
| 3484 | h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM); |
| 3485 | } |
Christopher Faulet | 35757d3 | 2019-03-07 15:51:33 +0100 | [diff] [blame] | 3486 | else { |
| 3487 | /* Nothing was never sent for this stream, so reset with |
| 3488 | * REFUSED_STREAM error to let the client retry the |
| 3489 | * request. |
| 3490 | */ |
| 3491 | h2s_error(h2s, H2_ERR_REFUSED_STREAM); |
| 3492 | } |
Willy Tarreau | 1805904 | 2019-01-31 19:12:48 +0100 | [diff] [blame] | 3493 | |
Willy Tarreau | 90c3232 | 2017-11-24 08:00:30 +0100 | [diff] [blame] | 3494 | if (!(h2s->flags & H2_SF_RST_SENT) && |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3495 | h2s_send_rst_stream(h2c, h2s) <= 0) |
Willy Tarreau | b2e290a | 2018-03-30 17:35:38 +0200 | [diff] [blame] | 3496 | goto add_to_list; |
Willy Tarreau | 90c3232 | 2017-11-24 08:00:30 +0100 | [diff] [blame] | 3497 | |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 3498 | h2s_close(h2s); |
Willy Tarreau | c7576ea | 2017-10-29 22:00:09 +0100 | [diff] [blame] | 3499 | } |
| 3500 | |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 3501 | if (!(h2c->wait_event.events & SUB_RETRY_SEND)) |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 3502 | tasklet_wakeup(h2c->wait_event.tasklet); |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3503 | done: |
| 3504 | h2s->flags &= ~H2_SF_WANT_SHUTW; |
| 3505 | return; |
Willy Tarreau | b2e290a | 2018-03-30 17:35:38 +0200 | [diff] [blame] | 3506 | |
| 3507 | add_to_list: |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 3508 | if (!LIST_ADDED(&h2s->list)) { |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 3509 | sw->events |= SUB_RETRY_SEND; |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 3510 | if (h2s->flags & H2_SF_BLK_MFCTL) { |
| 3511 | LIST_ADDQ(&h2c->fctl_list, &h2s->list); |
| 3512 | h2s->send_wait = sw; |
| 3513 | } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) { |
| 3514 | h2s->send_wait = sw; |
| 3515 | LIST_ADDQ(&h2c->send_list, &h2s->list); |
| 3516 | } |
Willy Tarreau | b2e290a | 2018-03-30 17:35:38 +0200 | [diff] [blame] | 3517 | } |
Willy Tarreau | 2c249eb | 2019-05-13 18:06:17 +0200 | [diff] [blame] | 3518 | /* let the handler know we want to shutw */ |
| 3519 | h2s->flags |= H2_SF_WANT_SHUTW; |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3520 | return; |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3521 | } |
| 3522 | |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 3523 | /* This is the tasklet referenced in h2s->wait_event.tasklet, it is used for |
Willy Tarreau | 749f5ca | 2019-03-21 19:19:36 +0100 | [diff] [blame] | 3524 | * deferred shutdowns when the h2_detach() was done but the mux buffer was full |
| 3525 | * and prevented the last frame from being emitted. |
| 3526 | */ |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3527 | static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state) |
| 3528 | { |
| 3529 | struct h2s *h2s = ctx; |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3530 | struct h2c *h2c = h2s->h2c; |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3531 | |
Olivier Houchard | afc7cb8 | 2019-03-25 14:08:01 +0100 | [diff] [blame] | 3532 | LIST_DEL_INIT(&h2s->sending_list); |
Willy Tarreau | 2c249eb | 2019-05-13 18:06:17 +0200 | [diff] [blame] | 3533 | if (h2s->flags & H2_SF_WANT_SHUTW) |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3534 | h2_do_shutw(h2s); |
| 3535 | |
Willy Tarreau | 2c249eb | 2019-05-13 18:06:17 +0200 | [diff] [blame] | 3536 | if (h2s->flags & H2_SF_WANT_SHUTR) |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3537 | h2_do_shutr(h2s); |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3538 | |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3539 | if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) { |
Olivier Houchard | afc7cb8 | 2019-03-25 14:08:01 +0100 | [diff] [blame] | 3540 | /* We're done trying to send, remove ourself from the send_list */ |
Olivier Houchard | afc7cb8 | 2019-03-25 14:08:01 +0100 | [diff] [blame] | 3541 | LIST_DEL_INIT(&h2s->list); |
Olivier Houchard | 7a97743 | 2019-03-21 15:47:13 +0100 | [diff] [blame] | 3542 | |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3543 | if (!h2s->cs) { |
| 3544 | h2s_destroy(h2s); |
| 3545 | if (h2c_is_dead(h2c)) |
| 3546 | h2_release(h2c); |
| 3547 | } |
Olivier Houchard | 7a97743 | 2019-03-21 15:47:13 +0100 | [diff] [blame] | 3548 | } |
| 3549 | |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3550 | return NULL; |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3551 | } |
| 3552 | |
Willy Tarreau | 749f5ca | 2019-03-21 19:19:36 +0100 | [diff] [blame] | 3553 | /* shutr() called by the conn_stream (mux_ops.shutr) */ |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3554 | static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode) |
| 3555 | { |
| 3556 | struct h2s *h2s = cs->ctx; |
| 3557 | |
Willy Tarreau | 3cf69fe | 2019-05-14 10:44:40 +0200 | [diff] [blame] | 3558 | if (cs->flags & CS_FL_KILL_CONN) |
| 3559 | h2s->flags |= H2_SF_KILL_CONN; |
| 3560 | |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3561 | if (!mode) |
| 3562 | return; |
| 3563 | |
| 3564 | h2_do_shutr(h2s); |
| 3565 | } |
| 3566 | |
Willy Tarreau | 749f5ca | 2019-03-21 19:19:36 +0100 | [diff] [blame] | 3567 | /* shutw() called by the conn_stream (mux_ops.shutw) */ |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3568 | static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode) |
| 3569 | { |
| 3570 | struct h2s *h2s = cs->ctx; |
| 3571 | |
Willy Tarreau | 3cf69fe | 2019-05-14 10:44:40 +0200 | [diff] [blame] | 3572 | if (cs->flags & CS_FL_KILL_CONN) |
| 3573 | h2s->flags |= H2_SF_KILL_CONN; |
| 3574 | |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3575 | h2_do_shutw(h2s); |
| 3576 | } |
| 3577 | |
Willy Tarreau | bd4a6b6 | 2018-11-27 09:29:36 +0100 | [diff] [blame] | 3578 | /* Decode the payload of a HEADERS frame and produce the equivalent HTTP/1 or |
Willy Tarreau | 86277d4 | 2019-01-02 15:36:11 +0100 | [diff] [blame] | 3579 | * HTX request or response depending on the connection's side. Returns a |
| 3580 | * positive value on success, a negative value on failure, or 0 if it couldn't |
| 3581 | * proceed. May report connection errors in h2c->errcode if the frame is |
| 3582 | * non-decodable and the connection unrecoverable. In absence of connection |
| 3583 | * error when a failure is reported, the caller must assume a stream error. |
Willy Tarreau | ea18f86 | 2018-12-22 20:19:26 +0100 | [diff] [blame] | 3584 | * |
| 3585 | * The function may fold CONTINUATION frames into the initial HEADERS frame |
| 3586 | * by removing padding and next frame header, then moving the CONTINUATION |
| 3587 | * frame's payload and adjusting h2c->dfl to match the new aggregated frame, |
| 3588 | * leaving a hole between the main frame and the beginning of the next one. |
| 3589 | * The possibly remaining incomplete or next frame at the end may be moved |
| 3590 | * if the aggregated frame is not deleted, in order to fill the hole. Wrapped |
| 3591 | * HEADERS frames are unwrapped into a temporary buffer before decoding. |
| 3592 | * |
| 3593 | * A buffer at the beginning of processing may look like this : |
| 3594 | * |
| 3595 | * ,---.---------.-----.--------------.--------------.------.---. |
| 3596 | * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///| |
| 3597 | * `---^---------^-----^--------------^--------------^------^---' |
| 3598 | * | | <-----> | | |
| 3599 | * area | dpl | wrap |
| 3600 | * |<--------------> | |
| 3601 | * | dfl | |
| 3602 | * |<-------------------------------------------------->| |
| 3603 | * head data |
| 3604 | * |
| 3605 | * Padding is automatically overwritten when folding, participating to the |
| 3606 | * hole size after dfl : |
| 3607 | * |
| 3608 | * ,---.------------------------.-----.--------------.------.---. |
| 3609 | * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///| |
| 3610 | * `---^------------------------^-----^--------------^------^---' |
| 3611 | * | | <-----> | | |
| 3612 | * area | hole | wrap |
| 3613 | * |<-----------------------> | |
| 3614 | * | dfl | |
| 3615 | * |<-------------------------------------------------->| |
| 3616 | * head data |
| 3617 | * |
| 3618 | * Please note that the HEADERS frame is always deprived from its PADLEN byte |
| 3619 | * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY |
| 3620 | * bit. |
Willy Tarreau | 6cc85a5 | 2019-01-02 15:49:20 +0100 | [diff] [blame] | 3621 | * |
| 3622 | * The <flags> field must point to either the stream's flags or to a copy of it |
| 3623 | * so that the function can update the following flags : |
| 3624 | * - H2_SF_DATA_CLEN when content-length is seen |
| 3625 | * - H2_SF_DATA_CHNK when chunking should be used for the H1 conversion |
| 3626 | * - H2_SF_HEADERS_RCVD once the frame is successfully decoded |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 3627 | * |
| 3628 | * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to |
| 3629 | * decoding, in order to detect if we're dealing with a headers or a trailers |
| 3630 | * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen). |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3631 | */ |
Willy Tarreau | 4790f7c | 2019-01-24 11:33:02 +0100 | [diff] [blame] | 3632 | static int h2c_decode_headers(struct h2c *h2c, struct buffer *rxbuf, uint32_t *flags, unsigned long long *body_len) |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3633 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3634 | const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf); |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 3635 | struct buffer *tmp = get_trash_chunk(); |
Christopher Faulet | e4ab11b | 2019-06-11 15:05:37 +0200 | [diff] [blame] | 3636 | struct http_hdr list[global.tune.max_http_hdr * 2]; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 3637 | struct buffer *copy = NULL; |
Willy Tarreau | 174b06a | 2018-04-25 18:13:58 +0200 | [diff] [blame] | 3638 | unsigned int msgf; |
Willy Tarreau | bd4a6b6 | 2018-11-27 09:29:36 +0100 | [diff] [blame] | 3639 | struct htx *htx = NULL; |
Willy Tarreau | ea18f86 | 2018-12-22 20:19:26 +0100 | [diff] [blame] | 3640 | int flen; // header frame len |
| 3641 | int hole = 0; |
Willy Tarreau | 86277d4 | 2019-01-02 15:36:11 +0100 | [diff] [blame] | 3642 | int ret = 0; |
| 3643 | int outlen; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3644 | int wrap; |
Willy Tarreau | bd4a6b6 | 2018-11-27 09:29:36 +0100 | [diff] [blame] | 3645 | int try = 0; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3646 | |
Willy Tarreau | ea18f86 | 2018-12-22 20:19:26 +0100 | [diff] [blame] | 3647 | next_frame: |
| 3648 | if (b_data(&h2c->dbuf) - hole < h2c->dfl) |
| 3649 | goto leave; // incomplete input frame |
| 3650 | |
| 3651 | /* No END_HEADERS means there's one or more CONTINUATION frames. In |
| 3652 | * this case, we'll try to paste it immediately after the initial |
| 3653 | * HEADERS frame payload and kill any possible padding. The initial |
| 3654 | * frame's length will be increased to represent the concatenation |
| 3655 | * of the two frames. The next frame is read from position <tlen> |
| 3656 | * and written at position <flen> (minus padding if some is present). |
| 3657 | */ |
| 3658 | if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) { |
| 3659 | struct h2_fh hdr; |
| 3660 | int clen; // CONTINUATION frame's payload length |
| 3661 | |
| 3662 | if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) { |
| 3663 | /* no more data, the buffer may be full, either due to |
| 3664 | * too large a frame or because of too large a hole that |
| 3665 | * we're going to compact at the end. |
| 3666 | */ |
| 3667 | goto leave; |
| 3668 | } |
| 3669 | |
| 3670 | if (hdr.ft != H2_FT_CONTINUATION) { |
| 3671 | /* RFC7540#6.10: frame of unexpected type */ |
| 3672 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
| 3673 | goto fail; |
| 3674 | } |
| 3675 | |
| 3676 | if (hdr.sid != h2c->dsi) { |
| 3677 | /* RFC7540#6.10: frame of different stream */ |
| 3678 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
| 3679 | goto fail; |
| 3680 | } |
| 3681 | |
| 3682 | if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) { |
| 3683 | /* RFC7540#4.2: invalid frame length */ |
| 3684 | h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR); |
| 3685 | goto fail; |
| 3686 | } |
| 3687 | |
| 3688 | /* detect when we must stop aggragating frames */ |
| 3689 | h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS; |
| 3690 | |
| 3691 | /* Take as much as we can of the CONTINUATION frame's payload */ |
| 3692 | clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9); |
| 3693 | if (clen > hdr.len) |
| 3694 | clen = hdr.len; |
| 3695 | |
| 3696 | /* Move the frame's payload over the padding, hole and frame |
| 3697 | * header. At least one of hole or dpl is null (see diagrams |
| 3698 | * above). The hole moves after the new aggragated frame. |
| 3699 | */ |
| 3700 | b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole + 9), clen, -(h2c->dpl + hole + 9)); |
| 3701 | h2c->dfl += clen - h2c->dpl; |
| 3702 | hole += h2c->dpl + 9; |
| 3703 | h2c->dpl = 0; |
| 3704 | goto next_frame; |
| 3705 | } |
| 3706 | |
| 3707 | flen = h2c->dfl - h2c->dpl; |
Willy Tarreau | 6847262 | 2017-12-11 18:36:37 +0100 | [diff] [blame] | 3708 | |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3709 | /* if the input buffer wraps, take a temporary copy of it (rare) */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3710 | wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf); |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3711 | if (wrap < h2c->dfl) { |
Willy Tarreau | 68dd985 | 2017-07-03 14:44:26 +0200 | [diff] [blame] | 3712 | copy = alloc_trash_chunk(); |
| 3713 | if (!copy) { |
| 3714 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
| 3715 | goto fail; |
| 3716 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3717 | memcpy(copy->area, b_head(&h2c->dbuf), wrap); |
| 3718 | memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap); |
| 3719 | hdrs = (uint8_t *) copy->area; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3720 | } |
| 3721 | |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3722 | /* Skip StreamDep and weight for now (we don't support PRIORITY) */ |
| 3723 | if (h2c->dff & H2_F_HEADERS_PRIORITY) { |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 3724 | if (read_n32(hdrs) == h2c->dsi) { |
Willy Tarreau | 18b86cd | 2017-12-03 19:24:50 +0100 | [diff] [blame] | 3725 | /* RFC7540#5.3.1 : stream dep may not depend on itself */ |
| 3726 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
Willy Tarreau | a0d11b6 | 2018-09-05 18:30:05 +0200 | [diff] [blame] | 3727 | goto fail; |
Willy Tarreau | 18b86cd | 2017-12-03 19:24:50 +0100 | [diff] [blame] | 3728 | } |
| 3729 | |
Willy Tarreau | a01f45e | 2018-12-31 07:41:24 +0100 | [diff] [blame] | 3730 | if (flen < 5) { |
| 3731 | h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR); |
| 3732 | goto fail; |
| 3733 | } |
| 3734 | |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3735 | hdrs += 5; // stream dep = 4, weight = 1 |
| 3736 | flen -= 5; |
| 3737 | } |
| 3738 | |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 3739 | if (!h2_get_buf(h2c, rxbuf)) { |
Willy Tarreau | 937f760 | 2018-02-26 15:22:17 +0100 | [diff] [blame] | 3740 | h2c->flags |= H2_CF_DEM_SALLOC; |
Willy Tarreau | 86277d4 | 2019-01-02 15:36:11 +0100 | [diff] [blame] | 3741 | goto leave; |
Willy Tarreau | 59a10fb | 2017-11-21 20:03:02 +0100 | [diff] [blame] | 3742 | } |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3743 | |
Willy Tarreau | 937f760 | 2018-02-26 15:22:17 +0100 | [diff] [blame] | 3744 | /* we can't retry a failed decompression operation so we must be very |
| 3745 | * careful not to take any risks. In practice the output buffer is |
| 3746 | * always empty except maybe for trailers, in which case we simply have |
| 3747 | * to wait for the upper layer to finish consuming what is available. |
| 3748 | */ |
Willy Tarreau | bd4a6b6 | 2018-11-27 09:29:36 +0100 | [diff] [blame] | 3749 | |
| 3750 | if (h2c->proxy->options2 & PR_O2_USE_HTX) { |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 3751 | htx = htx_from_buf(rxbuf); |
Willy Tarreau | 8dbb170 | 2019-01-03 08:52:09 +0100 | [diff] [blame] | 3752 | if (!htx_is_empty(htx)) { |
| 3753 | h2c->flags |= H2_CF_DEM_SFULL; |
Willy Tarreau | 86277d4 | 2019-01-02 15:36:11 +0100 | [diff] [blame] | 3754 | goto leave; |
Willy Tarreau | 8dbb170 | 2019-01-03 08:52:09 +0100 | [diff] [blame] | 3755 | } |
Willy Tarreau | bd4a6b6 | 2018-11-27 09:29:36 +0100 | [diff] [blame] | 3756 | } else { |
Willy Tarreau | 8dbb170 | 2019-01-03 08:52:09 +0100 | [diff] [blame] | 3757 | if (b_data(rxbuf)) { |
| 3758 | h2c->flags |= H2_CF_DEM_SFULL; |
Willy Tarreau | 86277d4 | 2019-01-02 15:36:11 +0100 | [diff] [blame] | 3759 | goto leave; |
Willy Tarreau | 8dbb170 | 2019-01-03 08:52:09 +0100 | [diff] [blame] | 3760 | } |
Willy Tarreau | 59a10fb | 2017-11-21 20:03:02 +0100 | [diff] [blame] | 3761 | |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 3762 | rxbuf->head = 0; |
| 3763 | try = b_size(rxbuf); |
Willy Tarreau | bd4a6b6 | 2018-11-27 09:29:36 +0100 | [diff] [blame] | 3764 | } |
Willy Tarreau | 59a10fb | 2017-11-21 20:03:02 +0100 | [diff] [blame] | 3765 | |
Willy Tarreau | 2591923 | 2019-01-03 14:48:18 +0100 | [diff] [blame] | 3766 | /* past this point we cannot roll back in case of error */ |
Willy Tarreau | 59a10fb | 2017-11-21 20:03:02 +0100 | [diff] [blame] | 3767 | outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list, |
| 3768 | sizeof(list)/sizeof(list[0]), tmp); |
| 3769 | if (outlen < 0) { |
| 3770 | h2c_error(h2c, H2_ERR_COMPRESSION_ERROR); |
| 3771 | goto fail; |
| 3772 | } |
| 3773 | |
Willy Tarreau | 2591923 | 2019-01-03 14:48:18 +0100 | [diff] [blame] | 3774 | /* The PACK decompressor was updated, let's update the input buffer and |
| 3775 | * the parser's state to commit these changes and allow us to later |
| 3776 | * fail solely on the stream if needed. |
| 3777 | */ |
| 3778 | b_del(&h2c->dbuf, h2c->dfl + hole); |
| 3779 | h2c->dfl = hole = 0; |
| 3780 | h2c->st0 = H2_CS_FRAME_H; |
| 3781 | |
Willy Tarreau | 59a10fb | 2017-11-21 20:03:02 +0100 | [diff] [blame] | 3782 | /* OK now we have our header list in <list> */ |
Willy Tarreau | 880f580 | 2019-01-03 08:10:14 +0100 | [diff] [blame] | 3783 | msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY; |
Willy Tarreau | bd4a6b6 | 2018-11-27 09:29:36 +0100 | [diff] [blame] | 3784 | |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 3785 | if (*flags & H2_SF_HEADERS_RCVD) |
| 3786 | goto trailers; |
| 3787 | |
| 3788 | /* This is the first HEADERS frame so it's a headers block */ |
Willy Tarreau | c3e18f3 | 2018-10-08 14:51:56 +0200 | [diff] [blame] | 3789 | if (htx) { |
| 3790 | /* HTX mode */ |
| 3791 | if (h2c->flags & H2_CF_IS_BACK) |
Willy Tarreau | 4790f7c | 2019-01-24 11:33:02 +0100 | [diff] [blame] | 3792 | outlen = h2_make_htx_response(list, htx, &msgf, body_len); |
Willy Tarreau | c3e18f3 | 2018-10-08 14:51:56 +0200 | [diff] [blame] | 3793 | else |
Willy Tarreau | 4790f7c | 2019-01-24 11:33:02 +0100 | [diff] [blame] | 3794 | outlen = h2_make_htx_request(list, htx, &msgf, body_len); |
Willy Tarreau | c3e18f3 | 2018-10-08 14:51:56 +0200 | [diff] [blame] | 3795 | } else { |
| 3796 | /* HTTP/1 mode */ |
Willy Tarreau | 4790f7c | 2019-01-24 11:33:02 +0100 | [diff] [blame] | 3797 | outlen = h2_make_h1_request(list, b_tail(rxbuf), try, &msgf, body_len); |
Willy Tarreau | 8319593 | 2019-01-03 10:26:23 +0100 | [diff] [blame] | 3798 | if (outlen > 0) |
| 3799 | b_add(rxbuf, outlen); |
Willy Tarreau | c3e18f3 | 2018-10-08 14:51:56 +0200 | [diff] [blame] | 3800 | } |
Willy Tarreau | 59a10fb | 2017-11-21 20:03:02 +0100 | [diff] [blame] | 3801 | |
| 3802 | if (outlen < 0) { |
Willy Tarreau | 2591923 | 2019-01-03 14:48:18 +0100 | [diff] [blame] | 3803 | /* too large headers? this is a stream error only */ |
Willy Tarreau | 59a10fb | 2017-11-21 20:03:02 +0100 | [diff] [blame] | 3804 | goto fail; |
| 3805 | } |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3806 | |
Willy Tarreau | 174b06a | 2018-04-25 18:13:58 +0200 | [diff] [blame] | 3807 | if (msgf & H2_MSGF_BODY) { |
| 3808 | /* a payload is present */ |
Christopher Faulet | eaf0d2a | 2019-02-18 16:04:35 +0100 | [diff] [blame] | 3809 | if (msgf & H2_MSGF_BODY_CL) { |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 3810 | *flags |= H2_SF_DATA_CLEN; |
Christopher Faulet | eaf0d2a | 2019-02-18 16:04:35 +0100 | [diff] [blame] | 3811 | if (htx) |
| 3812 | htx->extra = *body_len; |
| 3813 | } |
Olivier Houchard | 50d660c | 2018-12-08 00:18:31 +0100 | [diff] [blame] | 3814 | else if (!(msgf & H2_MSGF_BODY_TUNNEL) && !htx) |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 3815 | *flags |= H2_SF_DATA_CHNK; |
Willy Tarreau | 174b06a | 2018-04-25 18:13:58 +0200 | [diff] [blame] | 3816 | } |
| 3817 | |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 3818 | done: |
Christopher Faulet | 0b46548 | 2019-02-19 15:14:23 +0100 | [diff] [blame] | 3819 | /* indicate that a HEADERS frame was received for this stream, except |
| 3820 | * for 1xx responses. For 1xx responses, another HEADERS frame is |
| 3821 | * expected. |
| 3822 | */ |
| 3823 | if (!(msgf & H2_MSGF_RSP_1XX)) |
| 3824 | *flags |= H2_SF_HEADERS_RCVD; |
Willy Tarreau | 6cc85a5 | 2019-01-02 15:49:20 +0100 | [diff] [blame] | 3825 | |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 3826 | if ((h2c->dff & H2_F_HEADERS_END_STREAM)) { |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 3827 | /* Mark the end of message, either using EOM in HTX or with the |
| 3828 | * trailing CRLF after the end of trailers. Note that DATA_CHNK |
Willy Tarreau | 2135f91 | 2019-05-07 11:17:32 +0200 | [diff] [blame] | 3829 | * is not set during headers with END_STREAM. For HTX trailers, |
| 3830 | * we must not leave an HTX trailers block not followed by an |
| 3831 | * EOM block, the two must be atomic. Thus if we fail to emit |
| 3832 | * the EOM block we must remove the TLR block we've just added. |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 3833 | */ |
| 3834 | if (htx) { |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 3835 | if (!htx_add_endof(htx, HTX_BLK_EOM)) |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 3836 | goto fail; |
| 3837 | } |
| 3838 | else if (*flags & H2_SF_DATA_CHNK) { |
| 3839 | if (!b_putblk(rxbuf, "\r\n", 2)) |
| 3840 | goto fail; |
| 3841 | } |
| 3842 | } |
Willy Tarreau | 937f760 | 2018-02-26 15:22:17 +0100 | [diff] [blame] | 3843 | |
Willy Tarreau | 86277d4 | 2019-01-02 15:36:11 +0100 | [diff] [blame] | 3844 | /* success */ |
| 3845 | ret = 1; |
| 3846 | |
Willy Tarreau | 68dd985 | 2017-07-03 14:44:26 +0200 | [diff] [blame] | 3847 | leave: |
Willy Tarreau | 86277d4 | 2019-01-02 15:36:11 +0100 | [diff] [blame] | 3848 | /* If there is a hole left and it's not at the end, we are forced to |
Willy Tarreau | ea18f86 | 2018-12-22 20:19:26 +0100 | [diff] [blame] | 3849 | * move the remaining data over it. |
| 3850 | */ |
| 3851 | if (hole) { |
| 3852 | if (b_data(&h2c->dbuf) > h2c->dfl + hole) |
| 3853 | b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole), |
| 3854 | b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole); |
| 3855 | b_sub(&h2c->dbuf, hole); |
| 3856 | } |
| 3857 | |
Willy Tarreau | 97215ca | 2019-04-29 10:20:21 +0200 | [diff] [blame] | 3858 | if (b_full(&h2c->dbuf) && h2c->dfl >= b_data(&h2c->dbuf)) { |
Willy Tarreau | ea18f86 | 2018-12-22 20:19:26 +0100 | [diff] [blame] | 3859 | /* too large frames */ |
| 3860 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
Willy Tarreau | 86277d4 | 2019-01-02 15:36:11 +0100 | [diff] [blame] | 3861 | ret = -1; |
Willy Tarreau | ea18f86 | 2018-12-22 20:19:26 +0100 | [diff] [blame] | 3862 | } |
| 3863 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 3864 | if (htx) |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 3865 | htx_to_buf(htx, rxbuf); |
Willy Tarreau | 68dd985 | 2017-07-03 14:44:26 +0200 | [diff] [blame] | 3866 | free_trash_chunk(copy); |
Willy Tarreau | 86277d4 | 2019-01-02 15:36:11 +0100 | [diff] [blame] | 3867 | return ret; |
| 3868 | |
Willy Tarreau | 68dd985 | 2017-07-03 14:44:26 +0200 | [diff] [blame] | 3869 | fail: |
Willy Tarreau | 86277d4 | 2019-01-02 15:36:11 +0100 | [diff] [blame] | 3870 | ret = -1; |
Willy Tarreau | 68dd985 | 2017-07-03 14:44:26 +0200 | [diff] [blame] | 3871 | goto leave; |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 3872 | |
| 3873 | trailers: |
| 3874 | /* This is the last HEADERS frame hence a trailer */ |
| 3875 | |
| 3876 | if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) { |
| 3877 | /* It's a trailer but it's missing ES flag */ |
| 3878 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
| 3879 | goto fail; |
| 3880 | } |
| 3881 | |
Christopher Faulet | 54b5e21 | 2019-06-04 10:08:28 +0200 | [diff] [blame] | 3882 | /* Trailers terminate a DATA sequence. In HTX we always handle them. In |
| 3883 | * legacy, when using chunks, we have to emit the 0 CRLF marker first |
| 3884 | * and then handle the trailers. For other modes, the trailers are |
| 3885 | * silently dropped. |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 3886 | */ |
| 3887 | if (htx) { |
Willy Tarreau | 5255f28 | 2019-01-03 18:41:05 +0100 | [diff] [blame] | 3888 | if (h2_make_htx_trailers(list, htx) <= 0) |
| 3889 | goto fail; |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 3890 | } |
| 3891 | else if (*flags & H2_SF_DATA_CHNK) { |
| 3892 | /* Legacy mode with chunked encoding : we must finalize the |
| 3893 | * data block message emit the trailing CRLF */ |
| 3894 | if (!b_putblk(rxbuf, "0\r\n", 3)) |
| 3895 | goto fail; |
Willy Tarreau | e2b05cc | 2019-01-03 16:18:34 +0100 | [diff] [blame] | 3896 | |
| 3897 | outlen = h2_make_h1_trailers(list, b_tail(rxbuf), try); |
| 3898 | if (outlen > 0) |
| 3899 | b_add(rxbuf, outlen); |
| 3900 | else |
| 3901 | goto fail; |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 3902 | } |
| 3903 | |
| 3904 | goto done; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3905 | } |
| 3906 | |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 3907 | /* Transfer the payload of a DATA frame to the HTTP/1 side. When content-length |
| 3908 | * or a tunnel is used, the contents are copied as-is. When chunked encoding is |
| 3909 | * in use, a new chunk is emitted for each frame. This is supposed to fit |
| 3910 | * because the smallest chunk takes 1 byte for the size, 2 for CRLF, X for the |
| 3911 | * data, 2 for the extra CRLF, so that's 5+X, while on the H2 side the smallest |
| 3912 | * frame will be 9+X bytes based on the same buffer size. The HTTP/2 frame |
Willy Tarreau | 61ea7dc | 2018-12-01 23:23:04 +0100 | [diff] [blame] | 3913 | * parser state is automatically updated. Returns > 0 if it could completely |
| 3914 | * send the current frame, 0 if it couldn't complete, in which case |
| 3915 | * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty |
| 3916 | * DATA frame can return 0 as a valid result). Stream errors are reported in |
| 3917 | * h2s->errcode and connection errors in h2c->errcode. The caller must already |
| 3918 | * have checked the frame header and ensured that the frame was complete or the |
| 3919 | * buffer full. It changes the frame state to FRAME_A once done. |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 3920 | */ |
Willy Tarreau | 454b57b | 2018-02-26 15:50:05 +0100 | [diff] [blame] | 3921 | static int h2_frt_transfer_data(struct h2s *h2s) |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 3922 | { |
| 3923 | struct h2c *h2c = h2s->h2c; |
| 3924 | int block1, block2; |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3925 | unsigned int flen = 0; |
Willy Tarreau | eba10f2 | 2018-04-25 20:44:22 +0200 | [diff] [blame] | 3926 | unsigned int chklen = 0; |
Willy Tarreau | 61ea7dc | 2018-12-01 23:23:04 +0100 | [diff] [blame] | 3927 | struct htx *htx = NULL; |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3928 | struct buffer *csbuf; |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 3929 | |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 3930 | h2c->flags &= ~H2_CF_DEM_SFULL; |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 3931 | |
Olivier Houchard | 638b799 | 2018-08-16 15:41:52 +0200 | [diff] [blame] | 3932 | csbuf = h2_get_buf(h2c, &h2s->rxbuf); |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3933 | if (!csbuf) { |
| 3934 | h2c->flags |= H2_CF_DEM_SALLOC; |
Willy Tarreau | 454b57b | 2018-02-26 15:50:05 +0100 | [diff] [blame] | 3935 | goto fail; |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3936 | } |
| 3937 | |
Willy Tarreau | 61ea7dc | 2018-12-01 23:23:04 +0100 | [diff] [blame] | 3938 | try_again: |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 3939 | flen = h2c->dfl - h2c->dpl; |
Olivier Houchard | 2f30883 | 2018-12-19 15:53:53 +0100 | [diff] [blame] | 3940 | if (h2c->proxy->options2 & PR_O2_USE_HTX) |
| 3941 | htx = htx_from_buf(csbuf); |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 3942 | if (!flen) |
Willy Tarreau | 4a28da1 | 2018-01-04 14:41:00 +0100 | [diff] [blame] | 3943 | goto end_transfer; |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 3944 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3945 | if (flen > b_data(&h2c->dbuf)) { |
| 3946 | flen = b_data(&h2c->dbuf); |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 3947 | if (!flen) |
Willy Tarreau | 454b57b | 2018-02-26 15:50:05 +0100 | [diff] [blame] | 3948 | goto fail; |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3949 | } |
| 3950 | |
Willy Tarreau | a9b7796 | 2019-01-31 07:23:00 +0100 | [diff] [blame] | 3951 | if (htx) { |
Willy Tarreau | 0a7ef02 | 2019-05-28 10:30:11 +0200 | [diff] [blame] | 3952 | unsigned int sent; |
| 3953 | |
Willy Tarreau | 61ea7dc | 2018-12-01 23:23:04 +0100 | [diff] [blame] | 3954 | block1 = htx_free_data_space(htx); |
| 3955 | if (!block1) { |
| 3956 | h2c->flags |= H2_CF_DEM_SFULL; |
| 3957 | goto fail; |
| 3958 | } |
| 3959 | if (flen > block1) |
| 3960 | flen = block1; |
| 3961 | |
| 3962 | /* here, flen is the max we can copy into the output buffer */ |
| 3963 | block1 = b_contig_data(&h2c->dbuf, 0); |
| 3964 | if (flen > block1) |
| 3965 | flen = block1; |
| 3966 | |
Willy Tarreau | 0a7ef02 | 2019-05-28 10:30:11 +0200 | [diff] [blame] | 3967 | sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen)); |
Willy Tarreau | 61ea7dc | 2018-12-01 23:23:04 +0100 | [diff] [blame] | 3968 | |
Willy Tarreau | b6563f4 | 2019-06-15 11:34:41 +0200 | [diff] [blame] | 3969 | b_del(&h2c->dbuf, sent); |
| 3970 | h2c->dfl -= sent; |
| 3971 | h2c->rcvd_c += sent; |
| 3972 | h2c->rcvd_s += sent; // warning, this can also affect the closed streams! |
Willy Tarreau | 1915ca2 | 2019-01-24 11:49:37 +0100 | [diff] [blame] | 3973 | |
Christopher Faulet | eaf0d2a | 2019-02-18 16:04:35 +0100 | [diff] [blame] | 3974 | if (h2s->flags & H2_SF_DATA_CLEN) { |
Willy Tarreau | b6563f4 | 2019-06-15 11:34:41 +0200 | [diff] [blame] | 3975 | h2s->body_len -= sent; |
Christopher Faulet | eaf0d2a | 2019-02-18 16:04:35 +0100 | [diff] [blame] | 3976 | htx->extra = h2s->body_len; |
| 3977 | } |
Willy Tarreau | 0a7ef02 | 2019-05-28 10:30:11 +0200 | [diff] [blame] | 3978 | |
| 3979 | if (sent < flen) { |
| 3980 | h2c->flags |= H2_CF_DEM_SFULL; |
| 3981 | goto fail; |
| 3982 | } |
| 3983 | |
Willy Tarreau | 61ea7dc | 2018-12-01 23:23:04 +0100 | [diff] [blame] | 3984 | goto try_again; |
| 3985 | } |
Willy Tarreau | 455d568 | 2019-05-24 19:42:18 +0200 | [diff] [blame] | 3986 | else if (unlikely(b_space_wraps(csbuf) && |
| 3987 | flen + chklen <= b_room(csbuf) && |
| 3988 | b_data(csbuf) <= MAX_DATA_REALIGN)) { |
| 3989 | /* it doesn't fit in a single block and the buffer is fragmented, if there are |
| 3990 | * not too many data in the buffer, let's defragment it and try |
| 3991 | * again. |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3992 | */ |
| 3993 | b_slow_realign(csbuf, trash.area, 0); |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 3994 | } |
| 3995 | |
Willy Tarreau | eba10f2 | 2018-04-25 20:44:22 +0200 | [diff] [blame] | 3996 | /* chunked-encoding requires more room */ |
| 3997 | if (h2s->flags & H2_SF_DATA_CHNK) { |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3998 | chklen = MIN(flen, b_room(csbuf)); |
Willy Tarreau | eba10f2 | 2018-04-25 20:44:22 +0200 | [diff] [blame] | 3999 | chklen = (chklen < 16) ? 1 : (chklen < 256) ? 2 : |
| 4000 | (chklen < 4096) ? 3 : (chklen < 65536) ? 4 : |
| 4001 | (chklen < 1048576) ? 4 : 8; |
| 4002 | chklen += 4; // CRLF, CRLF |
| 4003 | } |
| 4004 | |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 4005 | /* does it fit in output buffer or should we wait ? */ |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 4006 | if (flen + chklen > b_room(csbuf)) { |
| 4007 | if (chklen >= b_room(csbuf)) { |
| 4008 | h2c->flags |= H2_CF_DEM_SFULL; |
Willy Tarreau | 454b57b | 2018-02-26 15:50:05 +0100 | [diff] [blame] | 4009 | goto fail; |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 4010 | } |
| 4011 | flen = b_room(csbuf) - chklen; |
Willy Tarreau | eba10f2 | 2018-04-25 20:44:22 +0200 | [diff] [blame] | 4012 | } |
| 4013 | |
| 4014 | if (h2s->flags & H2_SF_DATA_CHNK) { |
| 4015 | /* emit the chunk size */ |
| 4016 | unsigned int chksz = flen; |
| 4017 | char str[10]; |
| 4018 | char *beg; |
| 4019 | |
| 4020 | beg = str + sizeof(str); |
| 4021 | *--beg = '\n'; |
| 4022 | *--beg = '\r'; |
| 4023 | do { |
| 4024 | *--beg = hextab[chksz & 0xF]; |
| 4025 | } while (chksz >>= 4); |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 4026 | b_putblk(csbuf, beg, str + sizeof(str) - beg); |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 4027 | } |
| 4028 | |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 4029 | /* Block1 is the length of the first block before the buffer wraps, |
| 4030 | * block2 is the optional second block to reach the end of the frame. |
| 4031 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 4032 | block1 = b_contig_data(&h2c->dbuf, 0); |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 4033 | if (block1 > flen) |
| 4034 | block1 = flen; |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 4035 | block2 = flen - block1; |
| 4036 | |
| 4037 | if (block1) |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 4038 | b_putblk(csbuf, b_head(&h2c->dbuf), block1); |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 4039 | |
| 4040 | if (block2) |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 4041 | b_putblk(csbuf, b_peek(&h2c->dbuf, block1), block2); |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 4042 | |
Willy Tarreau | eba10f2 | 2018-04-25 20:44:22 +0200 | [diff] [blame] | 4043 | if (h2s->flags & H2_SF_DATA_CHNK) { |
| 4044 | /* emit the CRLF */ |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 4045 | b_putblk(csbuf, "\r\n", 2); |
Willy Tarreau | eba10f2 | 2018-04-25 20:44:22 +0200 | [diff] [blame] | 4046 | } |
| 4047 | |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 4048 | /* now mark the input data as consumed (will be deleted from the buffer |
| 4049 | * by the caller when seeing FRAME_A after sending the window update). |
| 4050 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 4051 | b_del(&h2c->dbuf, flen); |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 4052 | h2c->dfl -= flen; |
| 4053 | h2c->rcvd_c += flen; |
| 4054 | h2c->rcvd_s += flen; // warning, this can also affect the closed streams! |
| 4055 | |
Willy Tarreau | 1915ca2 | 2019-01-24 11:49:37 +0100 | [diff] [blame] | 4056 | if (h2s->flags & H2_SF_DATA_CLEN) |
| 4057 | h2s->body_len -= flen; |
| 4058 | |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 4059 | if (h2c->dfl > h2c->dpl) { |
| 4060 | /* more data available, transfer stalled on stream full */ |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 4061 | h2c->flags |= H2_CF_DEM_SFULL; |
Willy Tarreau | 454b57b | 2018-02-26 15:50:05 +0100 | [diff] [blame] | 4062 | goto fail; |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 4063 | } |
| 4064 | |
Willy Tarreau | 4a28da1 | 2018-01-04 14:41:00 +0100 | [diff] [blame] | 4065 | end_transfer: |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 4066 | /* here we're done with the frame, all the payload (except padding) was |
| 4067 | * transferred. |
| 4068 | */ |
Willy Tarreau | eba10f2 | 2018-04-25 20:44:22 +0200 | [diff] [blame] | 4069 | |
Willy Tarreau | 61ea7dc | 2018-12-01 23:23:04 +0100 | [diff] [blame] | 4070 | if (h2c->dff & H2_F_DATA_END_STREAM) { |
| 4071 | if (htx) { |
| 4072 | if (!htx_add_endof(htx, HTX_BLK_EOM)) { |
| 4073 | h2c->flags |= H2_CF_DEM_SFULL; |
| 4074 | goto fail; |
| 4075 | } |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 4076 | } |
Willy Tarreau | 61ea7dc | 2018-12-01 23:23:04 +0100 | [diff] [blame] | 4077 | else if (h2s->flags & H2_SF_DATA_CHNK) { |
| 4078 | /* emit the trailing 0 CRLF CRLF */ |
| 4079 | if (b_room(csbuf) < 5) { |
| 4080 | h2c->flags |= H2_CF_DEM_SFULL; |
| 4081 | goto fail; |
| 4082 | } |
| 4083 | chklen += 5; |
| 4084 | b_putblk(csbuf, "0\r\n\r\n", 5); |
| 4085 | } |
Willy Tarreau | eba10f2 | 2018-04-25 20:44:22 +0200 | [diff] [blame] | 4086 | } |
| 4087 | |
Willy Tarreau | d1023bb | 2018-03-22 16:53:12 +0100 | [diff] [blame] | 4088 | h2c->rcvd_c += h2c->dpl; |
| 4089 | h2c->rcvd_s += h2c->dpl; |
| 4090 | h2c->dpl = 0; |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 4091 | h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 4092 | if (htx) |
| 4093 | htx_to_buf(htx, csbuf); |
Willy Tarreau | 61ea7dc | 2018-12-01 23:23:04 +0100 | [diff] [blame] | 4094 | return 1; |
Willy Tarreau | 454b57b | 2018-02-26 15:50:05 +0100 | [diff] [blame] | 4095 | fail: |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 4096 | if (htx) |
| 4097 | htx_to_buf(htx, csbuf); |
Willy Tarreau | 454b57b | 2018-02-26 15:50:05 +0100 | [diff] [blame] | 4098 | return 0; |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 4099 | } |
| 4100 | |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4101 | /* Try to send a HEADERS frame matching HTTP/1 response present at offset <ofs> |
| 4102 | * and for <max> bytes in buffer <buf> for the H2 stream <h2s>. Returns the |
| 4103 | * number of bytes sent. The caller must check the stream's status to detect |
| 4104 | * any error which might have happened subsequently to a successful send. |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4105 | */ |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 4106 | static size_t h2s_frt_make_resp_headers(struct h2s *h2s, const struct buffer *buf, size_t ofs, size_t max) |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4107 | { |
Christopher Faulet | e4ab11b | 2019-06-11 15:05:37 +0200 | [diff] [blame] | 4108 | struct http_hdr list[global.tune.max_http_hdr]; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4109 | struct h2c *h2c = h2s->h2c; |
Willy Tarreau | a40704a | 2018-09-11 13:52:04 +0200 | [diff] [blame] | 4110 | struct h1m *h1m = &h2s->h1m; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 4111 | struct buffer outbuf; |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4112 | struct buffer *mbuf; |
Willy Tarreau | 9c5e22e | 2018-09-11 19:22:14 +0200 | [diff] [blame] | 4113 | union h1_sl sl; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4114 | int es_now = 0; |
| 4115 | int ret = 0; |
| 4116 | int hdr; |
| 4117 | |
| 4118 | if (h2c_mux_busy(h2c, h2s)) { |
| 4119 | h2s->flags |= H2_SF_BLK_MBUSY; |
| 4120 | return 0; |
| 4121 | } |
| 4122 | |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4123 | /* First, try to parse the H1 response and index it into <list>. |
| 4124 | * NOTE! Since it comes from haproxy, we *know* that a response header |
| 4125 | * block does not wrap and we can safely read it this way without |
| 4126 | * having to realign the buffer. |
| 4127 | */ |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4128 | ret = h1_headers_to_hdr_list(b_peek(buf, ofs), b_peek(buf, ofs) + max, |
Willy Tarreau | 9c5e22e | 2018-09-11 19:22:14 +0200 | [diff] [blame] | 4129 | list, sizeof(list)/sizeof(list[0]), h1m, &sl); |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4130 | if (ret <= 0) { |
Willy Tarreau | f13ef96 | 2017-11-02 15:14:19 +0100 | [diff] [blame] | 4131 | /* incomplete or invalid response, this is abnormal coming from |
| 4132 | * haproxy and may only result in a bad errorfile or bad Lua code |
| 4133 | * so that won't be fixed, raise an error now. |
| 4134 | * |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4135 | * FIXME: we should instead add the ability to only return a |
| 4136 | * 502 bad gateway. But in theory this is not supposed to |
| 4137 | * happen. |
| 4138 | */ |
| 4139 | h2s_error(h2s, H2_ERR_INTERNAL_ERROR); |
| 4140 | ret = 0; |
| 4141 | goto end; |
| 4142 | } |
| 4143 | |
Willy Tarreau | 9c5e22e | 2018-09-11 19:22:14 +0200 | [diff] [blame] | 4144 | h2s->status = sl.st.status; |
Willy Tarreau | db72da0 | 2018-09-13 11:52:20 +0200 | [diff] [blame] | 4145 | |
| 4146 | /* certain statuses have no body or an empty one, regardless of |
| 4147 | * what the headers say. |
| 4148 | */ |
| 4149 | if (sl.st.status >= 100 && sl.st.status < 200) { |
| 4150 | h1m->flags &= ~(H1_MF_CLEN | H1_MF_CHNK); |
| 4151 | h1m->curr_len = h1m->body_len = 0; |
| 4152 | } |
| 4153 | else if (sl.st.status == 204 || sl.st.status == 304) { |
| 4154 | /* no contents, claim c-len is present and set to zero */ |
| 4155 | h1m->flags &= ~H1_MF_CHNK; |
| 4156 | h1m->flags |= H1_MF_CLEN; |
| 4157 | h1m->curr_len = h1m->body_len = 0; |
| 4158 | } |
| 4159 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4160 | mbuf = br_tail(h2c->mbuf); |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4161 | retry: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4162 | if (!h2_get_buf(h2c, mbuf)) { |
| 4163 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 4164 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4165 | return 0; |
| 4166 | } |
| 4167 | |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4168 | chunk_reset(&outbuf); |
| 4169 | |
| 4170 | while (1) { |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4171 | outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0); |
| 4172 | if (outbuf.size >= 9 || !b_space_wraps(mbuf)) |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4173 | break; |
| 4174 | realign_again: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4175 | b_slow_realign(mbuf, trash.area, b_data(mbuf)); |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4176 | } |
| 4177 | |
Willy Tarreau | b5b7d4a | 2018-09-12 18:51:18 +0200 | [diff] [blame] | 4178 | if (outbuf.size < 9) |
| 4179 | goto full; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4180 | |
| 4181 | /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4182 | memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5); |
| 4183 | write_n32(outbuf.area + 5, h2s->id); // 4 bytes |
| 4184 | outbuf.data = 9; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4185 | |
| 4186 | /* encode status, which necessarily is the first one */ |
Willy Tarreau | aafdf58 | 2018-12-10 18:06:40 +0100 | [diff] [blame] | 4187 | if (unlikely(list[0].v.len != 3)) { |
Willy Tarreau | a87f202 | 2017-11-09 11:23:00 +0100 | [diff] [blame] | 4188 | /* this is an unparsable response */ |
| 4189 | h2s_error(h2s, H2_ERR_INTERNAL_ERROR); |
| 4190 | ret = 0; |
| 4191 | goto end; |
| 4192 | } |
Willy Tarreau | aafdf58 | 2018-12-10 18:06:40 +0100 | [diff] [blame] | 4193 | |
| 4194 | if (!hpack_encode_str_status(&outbuf, h2s->status, list[0].v)) { |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4195 | if (b_space_wraps(mbuf)) |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4196 | goto realign_again; |
Willy Tarreau | b5b7d4a | 2018-09-12 18:51:18 +0200 | [diff] [blame] | 4197 | goto full; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4198 | } |
| 4199 | |
| 4200 | /* encode all headers, stop at empty name */ |
| 4201 | for (hdr = 1; hdr < sizeof(list)/sizeof(list[0]); hdr++) { |
Willy Tarreau | a76e4c2 | 2017-11-24 08:17:28 +0100 | [diff] [blame] | 4202 | /* these ones do not exist in H2 and must be dropped. */ |
| 4203 | if (isteq(list[hdr].n, ist("connection")) || |
| 4204 | isteq(list[hdr].n, ist("proxy-connection")) || |
| 4205 | isteq(list[hdr].n, ist("keep-alive")) || |
| 4206 | isteq(list[hdr].n, ist("upgrade")) || |
| 4207 | isteq(list[hdr].n, ist("transfer-encoding"))) |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4208 | continue; |
| 4209 | |
| 4210 | if (isteq(list[hdr].n, ist(""))) |
| 4211 | break; // end |
| 4212 | |
| 4213 | if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) { |
| 4214 | /* output full */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4215 | if (b_space_wraps(mbuf)) |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4216 | goto realign_again; |
Willy Tarreau | b5b7d4a | 2018-09-12 18:51:18 +0200 | [diff] [blame] | 4217 | goto full; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4218 | } |
| 4219 | } |
| 4220 | |
| 4221 | /* we may need to add END_STREAM */ |
Willy Tarreau | 927b88b | 2019-03-04 08:03:25 +0100 | [diff] [blame] | 4222 | if (((h1m->flags & H1_MF_CLEN) && !h1m->body_len) || !h2s->cs || h2s->cs->flags & CS_FL_SHW) |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4223 | es_now = 1; |
| 4224 | |
| 4225 | /* update the frame's size */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4226 | h2_set_frame_size(outbuf.area, outbuf.data - 9); |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4227 | |
| 4228 | if (es_now) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4229 | outbuf.area[4] |= H2_F_HEADERS_END_STREAM; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4230 | |
| 4231 | /* consume incoming H1 response */ |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4232 | max -= ret; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4233 | |
| 4234 | /* commit the H2 response */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4235 | b_add(mbuf, outbuf.data); |
Willy Tarreau | 6743420 | 2017-11-06 20:20:51 +0100 | [diff] [blame] | 4236 | h2s->flags |= H2_SF_HEADERS_SENT; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4237 | |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4238 | if (es_now) { |
Willy Tarreau | 35a6270 | 2018-02-27 15:37:25 +0100 | [diff] [blame] | 4239 | // trim any possibly pending data (eg: inconsistent content-length) |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4240 | ret += max; |
Willy Tarreau | 35a6270 | 2018-02-27 15:37:25 +0100 | [diff] [blame] | 4241 | |
Willy Tarreau | 801250e | 2018-09-11 11:45:04 +0200 | [diff] [blame] | 4242 | h1m->state = H1_MSG_DONE; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4243 | h2s->flags |= H2_SF_ES_SENT; |
| 4244 | if (h2s->st == H2_SS_OPEN) |
| 4245 | h2s->st = H2_SS_HLOC; |
| 4246 | else |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 4247 | h2s_close(h2s); |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4248 | } |
Willy Tarreau | 9c5e22e | 2018-09-11 19:22:14 +0200 | [diff] [blame] | 4249 | else if (h2s->status >= 100 && h2s->status < 200) { |
Willy Tarreau | 8728559 | 2017-11-29 15:41:32 +0100 | [diff] [blame] | 4250 | /* we'll let the caller check if it has more headers to send */ |
Willy Tarreau | 7f437ff | 2018-09-11 13:51:19 +0200 | [diff] [blame] | 4251 | h1m_init_res(h1m); |
Willy Tarreau | 9b8cd1f | 2018-09-12 09:24:38 +0200 | [diff] [blame] | 4252 | h1m->err_pos = -1; // don't care about errors on the response path |
Willy Tarreau | eb528db | 2018-09-12 09:54:00 +0200 | [diff] [blame] | 4253 | h2s->h1m.flags |= H1_MF_TOLOWER; |
Willy Tarreau | 8728559 | 2017-11-29 15:41:32 +0100 | [diff] [blame] | 4254 | goto end; |
Willy Tarreau | c199faf | 2017-10-31 08:35:27 +0100 | [diff] [blame] | 4255 | } |
Willy Tarreau | 001823c | 2018-09-12 17:25:32 +0200 | [diff] [blame] | 4256 | |
| 4257 | /* now the h1m state is either H1_MSG_CHUNK_SIZE or H1_MSG_DATA */ |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4258 | |
| 4259 | end: |
Dirkjan Bussink | c26c72d | 2018-09-14 14:30:25 +0200 | [diff] [blame] | 4260 | //fprintf(stderr, "[%d] sent simple H2 response (sid=%d) = %d bytes (%d in, ep=%u, es=%s)\n", h2c->st0, h2s->id, outbuf.len, ret, h1m->err_pos, h1m_state_str(h1m->err_state)); |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4261 | return ret; |
Willy Tarreau | b5b7d4a | 2018-09-12 18:51:18 +0200 | [diff] [blame] | 4262 | full: |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4263 | if ((mbuf = br_tail_add(h2c->mbuf)) != NULL) |
| 4264 | goto retry; |
Willy Tarreau | b5b7d4a | 2018-09-12 18:51:18 +0200 | [diff] [blame] | 4265 | h1m_init_res(h1m); |
| 4266 | h1m->err_pos = -1; // don't care about errors on the response path |
| 4267 | h2c->flags |= H2_CF_MUX_MFULL; |
| 4268 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4269 | ret = 0; |
| 4270 | goto end; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4271 | } |
| 4272 | |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4273 | /* Try to send a DATA frame matching HTTP/1 response present at offset <ofs> |
| 4274 | * for up to <max> bytes in response buffer <buf>, for stream <h2s>. Returns |
| 4275 | * the number of bytes sent. The caller must check the stream's status to |
| 4276 | * detect any error which might have happened subsequently to a successful send. |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4277 | */ |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 4278 | static size_t h2s_frt_make_resp_data(struct h2s *h2s, const struct buffer *buf, size_t ofs, size_t max) |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4279 | { |
| 4280 | struct h2c *h2c = h2s->h2c; |
Willy Tarreau | a40704a | 2018-09-11 13:52:04 +0200 | [diff] [blame] | 4281 | struct h1m *h1m = &h2s->h1m; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 4282 | struct buffer outbuf; |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4283 | struct buffer *mbuf; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4284 | int ret = 0; |
Willy Tarreau | 1dc41e7 | 2018-06-14 13:21:28 +0200 | [diff] [blame] | 4285 | size_t total = 0; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4286 | int es_now = 0; |
| 4287 | int size = 0; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 4288 | const char *blk1, *blk2; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 4289 | size_t len1, len2; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4290 | |
| 4291 | if (h2c_mux_busy(h2c, h2s)) { |
| 4292 | h2s->flags |= H2_SF_BLK_MBUSY; |
| 4293 | goto end; |
| 4294 | } |
| 4295 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4296 | mbuf = br_tail(h2c->mbuf); |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4297 | retry: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4298 | if (!h2_get_buf(h2c, mbuf)) { |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4299 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 4300 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4301 | goto end; |
| 4302 | } |
| 4303 | |
| 4304 | new_frame: |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4305 | if (!max) |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4306 | goto end; |
| 4307 | |
| 4308 | chunk_reset(&outbuf); |
| 4309 | |
| 4310 | while (1) { |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4311 | outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0); |
| 4312 | if (outbuf.size >= 9 || !b_space_wraps(mbuf)) |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4313 | break; |
| 4314 | realign_again: |
Willy Tarreau | 06ae84a | 2018-12-12 09:17:21 +0100 | [diff] [blame] | 4315 | /* If there are pending data in the output buffer, and we have |
| 4316 | * less than 1/4 of the mbuf's size and everything fits, we'll |
| 4317 | * still perform a copy anyway. Otherwise we'll pretend the mbuf |
| 4318 | * is full and wait, to save some slow realign calls. |
| 4319 | */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4320 | if ((max + 9 > b_room(mbuf) || max >= b_size(mbuf) / 4)) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4321 | if ((mbuf = br_tail_add(h2c->mbuf)) != NULL) |
| 4322 | goto retry; |
Willy Tarreau | 06ae84a | 2018-12-12 09:17:21 +0100 | [diff] [blame] | 4323 | h2c->flags |= H2_CF_MUX_MFULL; |
| 4324 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4325 | goto end; |
| 4326 | } |
| 4327 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4328 | b_slow_realign(mbuf, trash.area, b_data(mbuf)); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4329 | } |
| 4330 | |
| 4331 | if (outbuf.size < 9) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4332 | if ((mbuf = br_tail_add(h2c->mbuf)) != NULL) |
| 4333 | goto retry; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4334 | h2c->flags |= H2_CF_MUX_MFULL; |
| 4335 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4336 | goto end; |
| 4337 | } |
| 4338 | |
| 4339 | /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4340 | memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5); |
| 4341 | write_n32(outbuf.area + 5, h2s->id); // 4 bytes |
| 4342 | outbuf.data = 9; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4343 | |
| 4344 | switch (h1m->flags & (H1_MF_CLEN|H1_MF_CHNK)) { |
| 4345 | case 0: /* no content length, read till SHUTW */ |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4346 | size = max; |
Willy Tarreau | 13e4e94 | 2017-12-14 10:55:21 +0100 | [diff] [blame] | 4347 | h1m->curr_len = size; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4348 | break; |
| 4349 | case H1_MF_CLEN: /* content-length: read only h2m->body_len */ |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4350 | size = max; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4351 | if ((long long)size > h1m->curr_len) |
| 4352 | size = h1m->curr_len; |
| 4353 | break; |
| 4354 | default: /* te:chunked : parse chunks */ |
Willy Tarreau | 801250e | 2018-09-11 11:45:04 +0200 | [diff] [blame] | 4355 | if (h1m->state == H1_MSG_CHUNK_CRLF) { |
Willy Tarreau | c0973c6 | 2018-06-14 15:53:21 +0200 | [diff] [blame] | 4356 | ret = h1_skip_chunk_crlf(buf, ofs, ofs + max); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4357 | if (!ret) |
| 4358 | goto end; |
| 4359 | |
| 4360 | if (ret < 0) { |
| 4361 | /* FIXME: bad contents. how to proceed here when we're in H2 ? */ |
Willy Tarreau | 25173a7 | 2018-09-12 09:05:16 +0200 | [diff] [blame] | 4362 | h1m->err_pos = ofs + max + ret; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4363 | h2s_error(h2s, H2_ERR_INTERNAL_ERROR); |
| 4364 | goto end; |
| 4365 | } |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4366 | max -= ret; |
| 4367 | ofs += ret; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4368 | total += ret; |
Willy Tarreau | 801250e | 2018-09-11 11:45:04 +0200 | [diff] [blame] | 4369 | h1m->state = H1_MSG_CHUNK_SIZE; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4370 | } |
| 4371 | |
Willy Tarreau | 801250e | 2018-09-11 11:45:04 +0200 | [diff] [blame] | 4372 | if (h1m->state == H1_MSG_CHUNK_SIZE) { |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4373 | unsigned int chunk; |
Willy Tarreau | 84d6b7a | 2018-06-14 15:59:05 +0200 | [diff] [blame] | 4374 | ret = h1_parse_chunk_size(buf, ofs, ofs + max, &chunk); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4375 | if (!ret) |
| 4376 | goto end; |
| 4377 | |
| 4378 | if (ret < 0) { |
| 4379 | /* FIXME: bad contents. how to proceed here when we're in H2 ? */ |
Willy Tarreau | 25173a7 | 2018-09-12 09:05:16 +0200 | [diff] [blame] | 4380 | h1m->err_pos = ofs + max + ret; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4381 | h2s_error(h2s, H2_ERR_INTERNAL_ERROR); |
| 4382 | goto end; |
| 4383 | } |
| 4384 | |
| 4385 | size = chunk; |
| 4386 | h1m->curr_len = chunk; |
| 4387 | h1m->body_len += chunk; |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4388 | max -= ret; |
| 4389 | ofs += ret; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4390 | total += ret; |
Willy Tarreau | 801250e | 2018-09-11 11:45:04 +0200 | [diff] [blame] | 4391 | h1m->state = size ? H1_MSG_DATA : H1_MSG_TRAILERS; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4392 | if (!size) |
| 4393 | goto send_empty; |
| 4394 | } |
| 4395 | |
| 4396 | /* in MSG_DATA state, continue below */ |
| 4397 | size = h1m->curr_len; |
| 4398 | break; |
| 4399 | } |
| 4400 | |
| 4401 | /* we have in <size> the exact number of bytes we need to copy from |
| 4402 | * the H1 buffer. We need to check this against the connection's and |
| 4403 | * the stream's send windows, and to ensure that this fits in the max |
| 4404 | * frame size and in the buffer's available space minus 9 bytes (for |
| 4405 | * the frame header). The connection's flow control is applied last so |
| 4406 | * that we can use a separate list of streams which are immediately |
| 4407 | * unblocked on window opening. Note: we don't implement padding. |
| 4408 | */ |
| 4409 | |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4410 | if (size > max) |
| 4411 | size = max; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4412 | |
Willy Tarreau | 5a9c875 | 2019-08-02 07:52:08 +0200 | [diff] [blame] | 4413 | if (size > h2s_mws(h2s)) |
| 4414 | size = h2s_mws(h2s); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4415 | |
| 4416 | if (size <= 0) { |
| 4417 | h2s->flags |= H2_SF_BLK_SFCTL; |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 4418 | if (LIST_ADDED(&h2s->list)) |
Olivier Houchard | bfe2a83 | 2019-05-10 14:02:21 +0200 | [diff] [blame] | 4419 | LIST_DEL_INIT(&h2s->list); |
Willy Tarreau | 55dc084 | 2019-10-22 10:04:39 +0200 | [diff] [blame] | 4420 | LIST_ADDQ(&h2c->blocked_list, &h2s->list); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4421 | goto end; |
| 4422 | } |
| 4423 | |
| 4424 | if (h2c->mfs && size > h2c->mfs) |
| 4425 | size = h2c->mfs; |
| 4426 | |
| 4427 | if (size + 9 > outbuf.size) { |
Willy Tarreau | 455d568 | 2019-05-24 19:42:18 +0200 | [diff] [blame] | 4428 | /* It doesn't fit at once. If it at least fits once split and |
| 4429 | * the amount of data to move is low, let's defragment the |
| 4430 | * buffer now. |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4431 | */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4432 | if (b_space_wraps(mbuf) && |
| 4433 | (size + 9 <= b_room(mbuf)) && |
| 4434 | b_data(mbuf) <= MAX_DATA_REALIGN) |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4435 | goto realign_again; |
| 4436 | size = outbuf.size - 9; |
| 4437 | } |
| 4438 | |
| 4439 | if (size <= 0) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4440 | if ((mbuf = br_tail_add(h2c->mbuf)) != NULL) |
| 4441 | goto retry; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4442 | h2c->flags |= H2_CF_MUX_MFULL; |
| 4443 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4444 | goto end; |
| 4445 | } |
| 4446 | |
| 4447 | if (size > h2c->mws) |
| 4448 | size = h2c->mws; |
| 4449 | |
| 4450 | if (size <= 0) { |
| 4451 | h2s->flags |= H2_SF_BLK_MFCTL; |
| 4452 | goto end; |
| 4453 | } |
| 4454 | |
| 4455 | /* copy whatever we can */ |
| 4456 | blk1 = blk2 = NULL; // silence a maybe-uninitialized warning |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4457 | ret = b_getblk_nc(buf, &blk1, &len1, &blk2, &len2, ofs, max); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4458 | if (ret == 1) |
| 4459 | len2 = 0; |
| 4460 | |
| 4461 | if (!ret || len1 + len2 < size) { |
| 4462 | /* FIXME: must normally never happen */ |
| 4463 | h2s_error(h2s, H2_ERR_INTERNAL_ERROR); |
| 4464 | goto end; |
| 4465 | } |
| 4466 | |
| 4467 | /* limit len1/len2 to size */ |
| 4468 | if (len1 + len2 > size) { |
| 4469 | int sub = len1 + len2 - size; |
| 4470 | |
| 4471 | if (len2 > sub) |
| 4472 | len2 -= sub; |
| 4473 | else { |
| 4474 | sub -= len2; |
| 4475 | len2 = 0; |
| 4476 | len1 -= sub; |
| 4477 | } |
| 4478 | } |
| 4479 | |
| 4480 | /* now let's copy this this into the output buffer */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4481 | memcpy(outbuf.area + 9, blk1, len1); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4482 | if (len2) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4483 | memcpy(outbuf.area + 9 + len1, blk2, len2); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4484 | |
| 4485 | send_empty: |
| 4486 | /* we may need to add END_STREAM */ |
| 4487 | /* FIXME: we should also detect shutdown(w) below, but how ? Maybe we |
| 4488 | * could rely on the MSG_MORE flag as a hint for this ? |
Willy Tarreau | 0061096 | 2018-07-19 10:58:28 +0200 | [diff] [blame] | 4489 | * |
| 4490 | * FIXME: what we do here is not correct because we send end_stream |
| 4491 | * before knowing if we'll have to send a HEADERS frame for the |
| 4492 | * trailers. More importantly we're not consuming the trailing CRLF |
| 4493 | * after the end of trailers, so it will be left to the caller to |
| 4494 | * eat it. The right way to do it would be to measure trailers here |
| 4495 | * and to send ES only if there are no trailers. |
| 4496 | * |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4497 | */ |
| 4498 | if (((h1m->flags & H1_MF_CLEN) && !(h1m->curr_len - size)) || |
Willy Tarreau | 801250e | 2018-09-11 11:45:04 +0200 | [diff] [blame] | 4499 | !h1m->curr_len || h1m->state >= H1_MSG_DONE) |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4500 | es_now = 1; |
| 4501 | |
| 4502 | /* update the frame's size */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4503 | h2_set_frame_size(outbuf.area, size); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4504 | |
| 4505 | if (es_now) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4506 | outbuf.area[4] |= H2_F_DATA_END_STREAM; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4507 | |
| 4508 | /* commit the H2 response */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4509 | b_add(mbuf, size + 9); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4510 | |
| 4511 | /* consume incoming H1 response */ |
| 4512 | if (size > 0) { |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4513 | max -= size; |
| 4514 | ofs += size; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4515 | total += size; |
| 4516 | h1m->curr_len -= size; |
Willy Tarreau | 5a9c875 | 2019-08-02 07:52:08 +0200 | [diff] [blame] | 4517 | h2s->sws -= size; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4518 | h2c->mws -= size; |
| 4519 | |
| 4520 | if (size && !h1m->curr_len && (h1m->flags & H1_MF_CHNK)) { |
Willy Tarreau | 801250e | 2018-09-11 11:45:04 +0200 | [diff] [blame] | 4521 | h1m->state = H1_MSG_CHUNK_CRLF; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4522 | goto new_frame; |
| 4523 | } |
| 4524 | } |
| 4525 | |
| 4526 | if (es_now) { |
| 4527 | if (h2s->st == H2_SS_OPEN) |
| 4528 | h2s->st = H2_SS_HLOC; |
| 4529 | else |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 4530 | h2s_close(h2s); |
Willy Tarreau | 9d89ac8 | 2017-10-31 17:15:59 +0100 | [diff] [blame] | 4531 | |
Willy Tarreau | 35a6270 | 2018-02-27 15:37:25 +0100 | [diff] [blame] | 4532 | if (!(h1m->flags & H1_MF_CHNK)) { |
| 4533 | // trim any possibly pending data (eg: inconsistent content-length) |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4534 | total += max; |
| 4535 | ofs += max; |
| 4536 | max = 0; |
Willy Tarreau | 35a6270 | 2018-02-27 15:37:25 +0100 | [diff] [blame] | 4537 | |
Willy Tarreau | 801250e | 2018-09-11 11:45:04 +0200 | [diff] [blame] | 4538 | h1m->state = H1_MSG_DONE; |
Willy Tarreau | 35a6270 | 2018-02-27 15:37:25 +0100 | [diff] [blame] | 4539 | } |
Willy Tarreau | 9d89ac8 | 2017-10-31 17:15:59 +0100 | [diff] [blame] | 4540 | |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4541 | h2s->flags |= H2_SF_ES_SENT; |
| 4542 | } |
| 4543 | |
| 4544 | end: |
Willy Tarreau | 5a9c875 | 2019-08-02 07:52:08 +0200 | [diff] [blame] | 4545 | trace("[%d] sent simple H2 DATA response (sid=%d) = %d bytes out (%u in, st=%s, ep=%u, es=%s, h2cws=%d h2sws=%d) data=%u", h2c->st0, h2s->id, size+9, (unsigned int)total, h1m_state_str(h1m->state), h1m->err_pos, h1m_state_str(h1m->err_state), h2c->mws, h2s_mws(h2s), (unsigned int)b_data(buf)); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4546 | return total; |
| 4547 | } |
| 4548 | |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4549 | /* Try to send a HEADERS frame matching HTX response present in HTX message |
| 4550 | * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller |
| 4551 | * must check the stream's status to detect any error which might have happened |
| 4552 | * subsequently to a successful send. The htx blocks are automatically removed |
| 4553 | * from the message. The htx message is assumed to be valid since produced from |
| 4554 | * the internal code, hence it contains a start line, an optional series of |
| 4555 | * header blocks and an end of header, otherwise an invalid frame could be |
| 4556 | * emitted and the resulting htx message could be left in an inconsistent state. |
| 4557 | */ |
| 4558 | static size_t h2s_htx_frt_make_resp_headers(struct h2s *h2s, struct htx *htx) |
| 4559 | { |
Christopher Faulet | e4ab11b | 2019-06-11 15:05:37 +0200 | [diff] [blame] | 4560 | struct http_hdr list[global.tune.max_http_hdr]; |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4561 | struct h2c *h2c = h2s->h2c; |
| 4562 | struct htx_blk *blk; |
| 4563 | struct htx_blk *blk_end; |
| 4564 | struct buffer outbuf; |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4565 | struct buffer *mbuf; |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4566 | struct htx_sl *sl; |
| 4567 | enum htx_blk_type type; |
| 4568 | int es_now = 0; |
| 4569 | int ret = 0; |
| 4570 | int hdr; |
| 4571 | int idx; |
| 4572 | |
| 4573 | if (h2c_mux_busy(h2c, h2s)) { |
| 4574 | h2s->flags |= H2_SF_BLK_MBUSY; |
| 4575 | return 0; |
| 4576 | } |
| 4577 | |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4578 | /* determine the first block which must not be deleted, blk_end may |
| 4579 | * be NULL if all blocks have to be deleted. |
| 4580 | */ |
| 4581 | idx = htx_get_head(htx); |
| 4582 | blk_end = NULL; |
| 4583 | while (idx != -1) { |
| 4584 | type = htx_get_blk_type(htx_get_blk(htx, idx)); |
| 4585 | idx = htx_get_next(htx, idx); |
| 4586 | if (type == HTX_BLK_EOH) { |
| 4587 | if (idx != -1) |
| 4588 | blk_end = htx_get_blk(htx, idx); |
| 4589 | break; |
| 4590 | } |
| 4591 | } |
| 4592 | |
| 4593 | /* get the start line, we do have one */ |
Christopher Faulet | b77a1d2 | 2019-05-13 11:55:10 +0200 | [diff] [blame] | 4594 | blk = htx_get_head_blk(htx); |
Christopher Faulet | 43a686d | 2019-11-18 15:50:25 +0100 | [diff] [blame] | 4595 | BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_RES_SL); |
Christopher Faulet | b77a1d2 | 2019-05-13 11:55:10 +0200 | [diff] [blame] | 4596 | ALREADY_CHECKED(blk); |
| 4597 | sl = htx_get_blk_ptr(htx, blk); |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4598 | h2s->status = sl->info.res.status; |
Willy Tarreau | aafdf58 | 2018-12-10 18:06:40 +0100 | [diff] [blame] | 4599 | if (h2s->status < 100 || h2s->status > 999) |
| 4600 | goto fail; |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4601 | |
| 4602 | /* and the rest of the headers, that we dump starting at header 0 */ |
| 4603 | hdr = 0; |
| 4604 | |
Willy Tarreau | 8e162ee | 2018-12-06 14:07:27 +0100 | [diff] [blame] | 4605 | idx = htx_get_head(htx); // returns the SL that we skip |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4606 | while ((idx = htx_get_next(htx, idx)) != -1) { |
| 4607 | blk = htx_get_blk(htx, idx); |
| 4608 | type = htx_get_blk_type(blk); |
| 4609 | |
| 4610 | if (type == HTX_BLK_UNUSED) |
| 4611 | continue; |
| 4612 | |
| 4613 | if (type != HTX_BLK_HDR) |
| 4614 | break; |
| 4615 | |
| 4616 | if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) |
| 4617 | goto fail; |
| 4618 | |
| 4619 | list[hdr].n = htx_get_blk_name(htx, blk); |
| 4620 | list[hdr].v = htx_get_blk_value(htx, blk); |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4621 | hdr++; |
| 4622 | } |
| 4623 | |
| 4624 | /* marker for end of headers */ |
| 4625 | list[hdr].n = ist(""); |
| 4626 | |
| 4627 | if (h2s->status == 204 || h2s->status == 304) { |
| 4628 | /* no contents, claim c-len is present and set to zero */ |
| 4629 | es_now = 1; |
| 4630 | } |
| 4631 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4632 | mbuf = br_tail(h2c->mbuf); |
| 4633 | retry: |
| 4634 | if (!h2_get_buf(h2c, mbuf)) { |
| 4635 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 4636 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4637 | return 0; |
| 4638 | } |
| 4639 | |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4640 | chunk_reset(&outbuf); |
| 4641 | |
| 4642 | while (1) { |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4643 | outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0); |
| 4644 | if (outbuf.size >= 9 || !b_space_wraps(mbuf)) |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4645 | break; |
| 4646 | realign_again: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4647 | b_slow_realign(mbuf, trash.area, b_data(mbuf)); |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4648 | } |
| 4649 | |
| 4650 | if (outbuf.size < 9) |
| 4651 | goto full; |
| 4652 | |
| 4653 | /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */ |
| 4654 | memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5); |
| 4655 | write_n32(outbuf.area + 5, h2s->id); // 4 bytes |
| 4656 | outbuf.data = 9; |
| 4657 | |
| 4658 | /* encode status, which necessarily is the first one */ |
Willy Tarreau | aafdf58 | 2018-12-10 18:06:40 +0100 | [diff] [blame] | 4659 | if (!hpack_encode_int_status(&outbuf, h2s->status)) { |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4660 | if (b_space_wraps(mbuf)) |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4661 | goto realign_again; |
| 4662 | goto full; |
| 4663 | } |
| 4664 | |
| 4665 | /* encode all headers, stop at empty name */ |
| 4666 | for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) { |
| 4667 | /* these ones do not exist in H2 and must be dropped. */ |
| 4668 | if (isteq(list[hdr].n, ist("connection")) || |
| 4669 | isteq(list[hdr].n, ist("proxy-connection")) || |
| 4670 | isteq(list[hdr].n, ist("keep-alive")) || |
| 4671 | isteq(list[hdr].n, ist("upgrade")) || |
| 4672 | isteq(list[hdr].n, ist("transfer-encoding"))) |
| 4673 | continue; |
| 4674 | |
| 4675 | if (isteq(list[hdr].n, ist(""))) |
| 4676 | break; // end |
| 4677 | |
| 4678 | if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) { |
| 4679 | /* output full */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4680 | if (b_space_wraps(mbuf)) |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4681 | goto realign_again; |
| 4682 | goto full; |
| 4683 | } |
| 4684 | } |
| 4685 | |
Christopher Faulet | 0b46548 | 2019-02-19 15:14:23 +0100 | [diff] [blame] | 4686 | /* we may need to add END_STREAM except for 1xx responses. |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4687 | * FIXME: we should also set it when we know for sure that the |
| 4688 | * content-length is zero as well as on 204/304 |
| 4689 | */ |
Christopher Faulet | 0b46548 | 2019-02-19 15:14:23 +0100 | [diff] [blame] | 4690 | if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM && |
| 4691 | (h2s->status >= 200 || h2s->status == 101)) |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4692 | es_now = 1; |
| 4693 | |
Willy Tarreau | 927b88b | 2019-03-04 08:03:25 +0100 | [diff] [blame] | 4694 | if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4695 | es_now = 1; |
| 4696 | |
| 4697 | /* update the frame's size */ |
| 4698 | h2_set_frame_size(outbuf.area, outbuf.data - 9); |
| 4699 | |
| 4700 | if (es_now) |
| 4701 | outbuf.area[4] |= H2_F_HEADERS_END_STREAM; |
| 4702 | |
| 4703 | /* commit the H2 response */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4704 | b_add(mbuf, outbuf.data); |
Christopher Faulet | 0b46548 | 2019-02-19 15:14:23 +0100 | [diff] [blame] | 4705 | |
| 4706 | /* indicates the HEADERS frame was sent, except for 1xx responses. For |
| 4707 | * 1xx responses, another HEADERS frame is expected. |
| 4708 | */ |
| 4709 | if (h2s->status >= 200 || h2s->status == 101) |
| 4710 | h2s->flags |= H2_SF_HEADERS_SENT; |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4711 | |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4712 | if (es_now) { |
| 4713 | h2s->flags |= H2_SF_ES_SENT; |
| 4714 | if (h2s->st == H2_SS_OPEN) |
| 4715 | h2s->st = H2_SS_HLOC; |
| 4716 | else |
| 4717 | h2s_close(h2s); |
| 4718 | } |
| 4719 | |
| 4720 | /* OK we could properly deliver the response */ |
| 4721 | |
| 4722 | /* remove all header blocks including the EOH and compute the |
| 4723 | * corresponding size. |
| 4724 | * |
| 4725 | * FIXME: We should remove everything when es_now is set. |
| 4726 | */ |
| 4727 | ret = 0; |
| 4728 | idx = htx_get_head(htx); |
| 4729 | blk = htx_get_blk(htx, idx); |
| 4730 | while (blk != blk_end) { |
| 4731 | ret += htx_get_blksz(blk); |
| 4732 | blk = htx_remove_blk(htx, blk); |
| 4733 | } |
Willy Tarreau | c5753ae | 2018-12-02 12:28:01 +0100 | [diff] [blame] | 4734 | |
Christopher Faulet | 316934d | 2019-05-15 14:22:48 +0200 | [diff] [blame] | 4735 | if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) { |
| 4736 | ret += htx_get_blksz(blk_end); |
Willy Tarreau | c5753ae | 2018-12-02 12:28:01 +0100 | [diff] [blame] | 4737 | htx_remove_blk(htx, blk_end); |
Christopher Faulet | 316934d | 2019-05-15 14:22:48 +0200 | [diff] [blame] | 4738 | } |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4739 | end: |
| 4740 | return ret; |
| 4741 | full: |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4742 | if ((mbuf = br_tail_add(h2c->mbuf)) != NULL) |
| 4743 | goto retry; |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4744 | h2c->flags |= H2_CF_MUX_MFULL; |
| 4745 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4746 | ret = 0; |
| 4747 | goto end; |
| 4748 | fail: |
| 4749 | /* unparsable HTX messages, too large ones to be produced in the local |
| 4750 | * list etc go here (unrecoverable errors). |
| 4751 | */ |
| 4752 | h2s_error(h2s, H2_ERR_INTERNAL_ERROR); |
| 4753 | ret = 0; |
| 4754 | goto end; |
| 4755 | } |
| 4756 | |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4757 | /* Try to send a HEADERS frame matching HTX request present in HTX message |
| 4758 | * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller |
| 4759 | * must check the stream's status to detect any error which might have happened |
| 4760 | * subsequently to a successful send. The htx blocks are automatically removed |
| 4761 | * from the message. The htx message is assumed to be valid since produced from |
| 4762 | * the internal code, hence it contains a start line, an optional series of |
| 4763 | * header blocks and an end of header, otherwise an invalid frame could be |
| 4764 | * emitted and the resulting htx message could be left in an inconsistent state. |
| 4765 | */ |
| 4766 | static size_t h2s_htx_bck_make_req_headers(struct h2s *h2s, struct htx *htx) |
| 4767 | { |
Christopher Faulet | e4ab11b | 2019-06-11 15:05:37 +0200 | [diff] [blame] | 4768 | struct http_hdr list[global.tune.max_http_hdr]; |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4769 | struct h2c *h2c = h2s->h2c; |
| 4770 | struct htx_blk *blk; |
| 4771 | struct htx_blk *blk_end; |
| 4772 | struct buffer outbuf; |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4773 | struct buffer *mbuf; |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4774 | struct htx_sl *sl; |
Willy Tarreau | 053c157 | 2019-02-01 16:13:59 +0100 | [diff] [blame] | 4775 | struct ist meth, path, auth; |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4776 | enum htx_blk_type type; |
| 4777 | int es_now = 0; |
| 4778 | int ret = 0; |
| 4779 | int hdr; |
| 4780 | int idx; |
| 4781 | |
| 4782 | if (h2c_mux_busy(h2c, h2s)) { |
| 4783 | h2s->flags |= H2_SF_BLK_MBUSY; |
| 4784 | return 0; |
| 4785 | } |
| 4786 | |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4787 | /* determine the first block which must not be deleted, blk_end may |
| 4788 | * be NULL if all blocks have to be deleted. |
| 4789 | */ |
| 4790 | idx = htx_get_head(htx); |
| 4791 | blk_end = NULL; |
| 4792 | while (idx != -1) { |
| 4793 | type = htx_get_blk_type(htx_get_blk(htx, idx)); |
| 4794 | idx = htx_get_next(htx, idx); |
| 4795 | if (type == HTX_BLK_EOH) { |
| 4796 | if (idx != -1) |
| 4797 | blk_end = htx_get_blk(htx, idx); |
| 4798 | break; |
| 4799 | } |
| 4800 | } |
| 4801 | |
| 4802 | /* get the start line, we do have one */ |
Christopher Faulet | b77a1d2 | 2019-05-13 11:55:10 +0200 | [diff] [blame] | 4803 | blk = htx_get_head_blk(htx); |
Christopher Faulet | 43a686d | 2019-11-18 15:50:25 +0100 | [diff] [blame] | 4804 | BUG_ON(!blk || htx_get_blk_type(blk) != HTX_BLK_REQ_SL); |
Christopher Faulet | b77a1d2 | 2019-05-13 11:55:10 +0200 | [diff] [blame] | 4805 | ALREADY_CHECKED(blk); |
| 4806 | sl = htx_get_blk_ptr(htx, blk); |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4807 | meth = htx_sl_req_meth(sl); |
| 4808 | path = htx_sl_req_uri(sl); |
| 4809 | |
| 4810 | /* and the rest of the headers, that we dump starting at header 0 */ |
| 4811 | hdr = 0; |
| 4812 | |
Willy Tarreau | 8e162ee | 2018-12-06 14:07:27 +0100 | [diff] [blame] | 4813 | idx = htx_get_head(htx); // returns the SL that we skip |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4814 | while ((idx = htx_get_next(htx, idx)) != -1) { |
| 4815 | blk = htx_get_blk(htx, idx); |
| 4816 | type = htx_get_blk_type(blk); |
| 4817 | |
| 4818 | if (type == HTX_BLK_UNUSED) |
| 4819 | continue; |
| 4820 | |
| 4821 | if (type != HTX_BLK_HDR) |
| 4822 | break; |
| 4823 | |
| 4824 | if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) |
| 4825 | goto fail; |
| 4826 | |
| 4827 | list[hdr].n = htx_get_blk_name(htx, blk); |
| 4828 | list[hdr].v = htx_get_blk_value(htx, blk); |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4829 | hdr++; |
| 4830 | } |
| 4831 | |
| 4832 | /* marker for end of headers */ |
| 4833 | list[hdr].n = ist(""); |
| 4834 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4835 | mbuf = br_tail(h2c->mbuf); |
| 4836 | retry: |
| 4837 | if (!h2_get_buf(h2c, mbuf)) { |
| 4838 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 4839 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4840 | return 0; |
| 4841 | } |
| 4842 | |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4843 | chunk_reset(&outbuf); |
| 4844 | |
| 4845 | while (1) { |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4846 | outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0); |
| 4847 | if (outbuf.size >= 9 || !b_space_wraps(mbuf)) |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4848 | break; |
| 4849 | realign_again: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4850 | b_slow_realign(mbuf, trash.area, b_data(mbuf)); |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4851 | } |
| 4852 | |
| 4853 | if (outbuf.size < 9) |
| 4854 | goto full; |
| 4855 | |
| 4856 | /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */ |
| 4857 | memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5); |
| 4858 | write_n32(outbuf.area + 5, h2s->id); // 4 bytes |
| 4859 | outbuf.data = 9; |
| 4860 | |
| 4861 | /* encode the method, which necessarily is the first one */ |
Willy Tarreau | bdabc3a | 2018-12-10 18:25:11 +0100 | [diff] [blame] | 4862 | if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) { |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4863 | if (b_space_wraps(mbuf)) |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4864 | goto realign_again; |
| 4865 | goto full; |
| 4866 | } |
| 4867 | |
Willy Tarreau | 5be92ff | 2019-02-01 15:51:59 +0100 | [diff] [blame] | 4868 | /* RFC7540 #8.3: the CONNECT method must have : |
| 4869 | * - :authority set to the URI part (host:port) |
| 4870 | * - :method set to CONNECT |
| 4871 | * - :scheme and :path omitted |
| 4872 | */ |
| 4873 | if (sl->info.req.meth != HTTP_METH_CONNECT) { |
| 4874 | /* encode the scheme which is always "https" (or 0x86 for "http") */ |
Christopher Faulet | 3b44c54 | 2019-06-14 10:46:51 +0200 | [diff] [blame] | 4875 | struct ist scheme; |
| 4876 | |
| 4877 | if ((sl->flags & (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) == (HTX_SL_F_HAS_SCHM|HTX_SL_F_SCHM_HTTP)) |
| 4878 | scheme = ist("http"); |
| 4879 | else |
| 4880 | scheme = ist("https"); |
| 4881 | |
| 4882 | if (!hpack_encode_scheme(&outbuf, scheme)) { |
Willy Tarreau | 5be92ff | 2019-02-01 15:51:59 +0100 | [diff] [blame] | 4883 | /* output full */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4884 | if (b_space_wraps(mbuf)) |
Willy Tarreau | 5be92ff | 2019-02-01 15:51:59 +0100 | [diff] [blame] | 4885 | goto realign_again; |
| 4886 | goto full; |
| 4887 | } |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4888 | |
Willy Tarreau | 5be92ff | 2019-02-01 15:51:59 +0100 | [diff] [blame] | 4889 | /* encode the path, which necessarily is the second one */ |
| 4890 | if (!hpack_encode_path(&outbuf, path)) { |
| 4891 | /* output full */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4892 | if (b_space_wraps(mbuf)) |
Willy Tarreau | 5be92ff | 2019-02-01 15:51:59 +0100 | [diff] [blame] | 4893 | goto realign_again; |
| 4894 | goto full; |
| 4895 | } |
Willy Tarreau | 053c157 | 2019-02-01 16:13:59 +0100 | [diff] [blame] | 4896 | |
| 4897 | /* look for the Host header and place it in :authority */ |
| 4898 | auth = ist2(NULL, 0); |
| 4899 | for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) { |
| 4900 | if (isteq(list[hdr].n, ist(""))) |
| 4901 | break; // end |
| 4902 | |
| 4903 | if (isteq(list[hdr].n, ist("host"))) { |
| 4904 | auth = list[hdr].v; |
| 4905 | break; |
| 4906 | } |
| 4907 | } |
| 4908 | } |
| 4909 | else { |
| 4910 | /* for CONNECT, :authority is taken from the path */ |
| 4911 | auth = path; |
| 4912 | } |
| 4913 | |
| 4914 | if (auth.ptr && !hpack_encode_header(&outbuf, ist(":authority"), auth)) { |
| 4915 | /* output full */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4916 | if (b_space_wraps(mbuf)) |
Willy Tarreau | 053c157 | 2019-02-01 16:13:59 +0100 | [diff] [blame] | 4917 | goto realign_again; |
| 4918 | goto full; |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4919 | } |
| 4920 | |
| 4921 | /* encode all headers, stop at empty name */ |
| 4922 | for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) { |
| 4923 | /* these ones do not exist in H2 and must be dropped. */ |
| 4924 | if (isteq(list[hdr].n, ist("connection")) || |
Willy Tarreau | 053c157 | 2019-02-01 16:13:59 +0100 | [diff] [blame] | 4925 | isteq(list[hdr].n, ist("host")) || |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4926 | isteq(list[hdr].n, ist("proxy-connection")) || |
| 4927 | isteq(list[hdr].n, ist("keep-alive")) || |
| 4928 | isteq(list[hdr].n, ist("upgrade")) || |
| 4929 | isteq(list[hdr].n, ist("transfer-encoding"))) |
| 4930 | continue; |
| 4931 | |
| 4932 | if (isteq(list[hdr].n, ist(""))) |
| 4933 | break; // end |
| 4934 | |
| 4935 | if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) { |
| 4936 | /* output full */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4937 | if (b_space_wraps(mbuf)) |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4938 | goto realign_again; |
| 4939 | goto full; |
| 4940 | } |
| 4941 | } |
| 4942 | |
| 4943 | /* we may need to add END_STREAM if we have no body : |
| 4944 | * - request already closed, or : |
| 4945 | * - no transfer-encoding, and : |
| 4946 | * - no content-length or content-length:0 |
| 4947 | * Fixme: this doesn't take into account CONNECT requests. |
| 4948 | */ |
| 4949 | if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) |
| 4950 | es_now = 1; |
| 4951 | |
| 4952 | if (sl->flags & HTX_SL_F_BODYLESS) |
| 4953 | es_now = 1; |
| 4954 | |
Willy Tarreau | 927b88b | 2019-03-04 08:03:25 +0100 | [diff] [blame] | 4955 | if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4956 | es_now = 1; |
| 4957 | |
| 4958 | /* update the frame's size */ |
| 4959 | h2_set_frame_size(outbuf.area, outbuf.data - 9); |
| 4960 | |
| 4961 | if (es_now) |
| 4962 | outbuf.area[4] |= H2_F_HEADERS_END_STREAM; |
| 4963 | |
| 4964 | /* commit the H2 response */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4965 | b_add(mbuf, outbuf.data); |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4966 | h2s->flags |= H2_SF_HEADERS_SENT; |
| 4967 | h2s->st = H2_SS_OPEN; |
| 4968 | |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4969 | if (es_now) { |
| 4970 | // trim any possibly pending data (eg: inconsistent content-length) |
| 4971 | h2s->flags |= H2_SF_ES_SENT; |
| 4972 | h2s->st = H2_SS_HLOC; |
| 4973 | } |
| 4974 | |
| 4975 | /* remove all header blocks including the EOH and compute the |
| 4976 | * corresponding size. |
| 4977 | * |
| 4978 | * FIXME: We should remove everything when es_now is set. |
| 4979 | */ |
| 4980 | ret = 0; |
| 4981 | idx = htx_get_head(htx); |
| 4982 | blk = htx_get_blk(htx, idx); |
| 4983 | while (blk != blk_end) { |
| 4984 | ret += htx_get_blksz(blk); |
| 4985 | blk = htx_remove_blk(htx, blk); |
| 4986 | } |
| 4987 | |
Christopher Faulet | 316934d | 2019-05-15 14:22:48 +0200 | [diff] [blame] | 4988 | if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) { |
| 4989 | ret += htx_get_blksz(blk_end); |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4990 | htx_remove_blk(htx, blk_end); |
Christopher Faulet | 316934d | 2019-05-15 14:22:48 +0200 | [diff] [blame] | 4991 | } |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4992 | |
| 4993 | end: |
| 4994 | return ret; |
| 4995 | full: |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4996 | if ((mbuf = br_tail_add(h2c->mbuf)) != NULL) |
| 4997 | goto retry; |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4998 | h2c->flags |= H2_CF_MUX_MFULL; |
| 4999 | h2s->flags |= H2_SF_BLK_MROOM; |
| 5000 | ret = 0; |
| 5001 | goto end; |
| 5002 | fail: |
| 5003 | /* unparsable HTX messages, too large ones to be produced in the local |
| 5004 | * list etc go here (unrecoverable errors). |
| 5005 | */ |
| 5006 | h2s_error(h2s, H2_ERR_INTERNAL_ERROR); |
| 5007 | ret = 0; |
| 5008 | goto end; |
| 5009 | } |
| 5010 | |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5011 | /* Try to send a DATA frame matching HTTP response present in HTX structure |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 5012 | * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The |
| 5013 | * caller must check the stream's status to detect any error which might have |
| 5014 | * happened subsequently to a successful send. Returns the number of data bytes |
Christopher Faulet | 54b5e21 | 2019-06-04 10:08:28 +0200 | [diff] [blame] | 5015 | * consumed, or zero if nothing done. Note that EOM count for 1 byte. |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5016 | */ |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 5017 | static size_t h2s_htx_frt_make_resp_data(struct h2s *h2s, struct buffer *buf, size_t count) |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5018 | { |
| 5019 | struct h2c *h2c = h2s->h2c; |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 5020 | struct htx *htx; |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5021 | struct buffer outbuf; |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5022 | struct buffer *mbuf; |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5023 | size_t total = 0; |
| 5024 | int es_now = 0; |
| 5025 | int bsize; /* htx block size */ |
| 5026 | int fsize; /* h2 frame size */ |
| 5027 | struct htx_blk *blk; |
| 5028 | enum htx_blk_type type; |
| 5029 | int idx; |
| 5030 | |
| 5031 | if (h2c_mux_busy(h2c, h2s)) { |
| 5032 | h2s->flags |= H2_SF_BLK_MBUSY; |
| 5033 | goto end; |
| 5034 | } |
| 5035 | |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 5036 | htx = htx_from_buf(buf); |
| 5037 | |
Christopher Faulet | 54b5e21 | 2019-06-04 10:08:28 +0200 | [diff] [blame] | 5038 | /* We only come here with HTX_BLK_DATA blocks. However, while looping, |
| 5039 | * we can meet an HTX_BLK_EOM block that we'll leave to the caller to |
| 5040 | * handle. |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5041 | */ |
| 5042 | |
| 5043 | new_frame: |
Willy Tarreau | ee57376 | 2018-12-04 15:25:57 +0100 | [diff] [blame] | 5044 | if (!count || htx_is_empty(htx)) |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5045 | goto end; |
| 5046 | |
| 5047 | idx = htx_get_head(htx); |
| 5048 | blk = htx_get_blk(htx, idx); |
Christopher Faulet | 54b5e21 | 2019-06-04 10:08:28 +0200 | [diff] [blame] | 5049 | type = htx_get_blk_type(blk); // DATA or EOM |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5050 | bsize = htx_get_blksz(blk); |
| 5051 | fsize = bsize; |
| 5052 | |
Christopher Faulet | 54b5e21 | 2019-06-04 10:08:28 +0200 | [diff] [blame] | 5053 | if (type == HTX_BLK_EOM) { |
Willy Tarreau | 7eeb10a | 2019-01-04 09:28:17 +0100 | [diff] [blame] | 5054 | if (h2s->flags & H2_SF_ES_SENT) { |
| 5055 | /* ES already sent */ |
| 5056 | htx_remove_blk(htx, blk); |
| 5057 | total++; // EOM counts as one byte |
| 5058 | count--; |
| 5059 | goto end; |
| 5060 | } |
| 5061 | } |
| 5062 | else if (type != HTX_BLK_DATA) |
Willy Tarreau | 2fb1d4c | 2018-12-04 15:28:03 +0100 | [diff] [blame] | 5063 | goto end; |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 5064 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 5065 | mbuf = br_tail(h2c->mbuf); |
| 5066 | retry: |
| 5067 | if (!h2_get_buf(h2c, mbuf)) { |
| 5068 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 5069 | h2s->flags |= H2_SF_BLK_MROOM; |
| 5070 | goto end; |
| 5071 | } |
| 5072 | |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 5073 | /* Perform some optimizations to reduce the number of buffer copies. |
| 5074 | * First, if the mux's buffer is empty and the htx area contains |
| 5075 | * exactly one data block of the same size as the requested count, and |
| 5076 | * this count fits within the frame size, the stream's window size, and |
| 5077 | * the connection's window size, then it's possible to simply swap the |
| 5078 | * caller's buffer with the mux's output buffer and adjust offsets and |
| 5079 | * length to match the entire DATA HTX block in the middle. In this |
| 5080 | * case we perform a true zero-copy operation from end-to-end. This is |
| 5081 | * the situation that happens all the time with large files. Second, if |
| 5082 | * this is not possible, but the mux's output buffer is empty, we still |
| 5083 | * have an opportunity to avoid the copy to the intermediary buffer, by |
| 5084 | * making the intermediary buffer's area point to the output buffer's |
| 5085 | * area. In this case we want to skip the HTX header to make sure that |
| 5086 | * copies remain aligned and that this operation remains possible all |
| 5087 | * the time. This goes for headers, data blocks and any data extracted |
| 5088 | * from the HTX blocks. |
| 5089 | */ |
| 5090 | if (unlikely(fsize == count && |
| 5091 | htx->used == 1 && type == HTX_BLK_DATA && |
Willy Tarreau | 5a9c875 | 2019-08-02 07:52:08 +0200 | [diff] [blame] | 5092 | fsize <= h2s_mws(h2s) && fsize <= h2c->mws && fsize <= h2c->mfs)) { |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5093 | void *old_area = mbuf->area; |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 5094 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5095 | if (b_data(mbuf)) { |
Willy Tarreau | 8ab128c | 2019-03-21 17:47:28 +0100 | [diff] [blame] | 5096 | /* Too bad there are data left there. We're willing to memcpy/memmove |
| 5097 | * up to 1/4 of the buffer, which means that it's OK to copy a large |
| 5098 | * frame into a buffer containing few data if it needs to be realigned, |
| 5099 | * and that it's also OK to copy few data without realigning. Otherwise |
| 5100 | * we'll pretend the mbuf is full and wait for it to become empty. |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 5101 | */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5102 | if (fsize + 9 <= b_room(mbuf) && |
| 5103 | (b_data(mbuf) <= b_size(mbuf) / 4 || |
| 5104 | (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 5105 | goto copy; |
Willy Tarreau | 8ab128c | 2019-03-21 17:47:28 +0100 | [diff] [blame] | 5106 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 5107 | if ((mbuf = br_tail_add(h2c->mbuf)) != NULL) |
| 5108 | goto retry; |
| 5109 | |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 5110 | h2c->flags |= H2_CF_MUX_MFULL; |
| 5111 | h2s->flags |= H2_SF_BLK_MROOM; |
| 5112 | goto end; |
| 5113 | } |
| 5114 | |
| 5115 | /* map an H2 frame to the HTX block so that we can put the |
| 5116 | * frame header there. |
| 5117 | */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5118 | *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9); |
| 5119 | outbuf.area = b_head(mbuf); |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 5120 | |
| 5121 | /* prepend an H2 DATA frame header just before the DATA block */ |
| 5122 | memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5); |
| 5123 | write_n32(outbuf.area + 5, h2s->id); // 4 bytes |
| 5124 | h2_set_frame_size(outbuf.area, fsize); |
| 5125 | |
| 5126 | /* update windows */ |
Willy Tarreau | 5a9c875 | 2019-08-02 07:52:08 +0200 | [diff] [blame] | 5127 | h2s->sws -= fsize; |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 5128 | h2c->mws -= fsize; |
| 5129 | |
| 5130 | /* and exchange with our old area */ |
| 5131 | buf->area = old_area; |
| 5132 | buf->data = buf->head = 0; |
| 5133 | total += fsize; |
| 5134 | goto end; |
| 5135 | } |
Willy Tarreau | 2fb1d4c | 2018-12-04 15:28:03 +0100 | [diff] [blame] | 5136 | |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 5137 | copy: |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5138 | /* for DATA and EOM we'll have to emit a frame, even if empty */ |
| 5139 | |
| 5140 | while (1) { |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5141 | outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0); |
| 5142 | if (outbuf.size >= 9 || !b_space_wraps(mbuf)) |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5143 | break; |
| 5144 | realign_again: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5145 | b_slow_realign(mbuf, trash.area, b_data(mbuf)); |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5146 | } |
| 5147 | |
| 5148 | if (outbuf.size < 9) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 5149 | if ((mbuf = br_tail_add(h2c->mbuf)) != NULL) |
| 5150 | goto retry; |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5151 | h2c->flags |= H2_CF_MUX_MFULL; |
| 5152 | h2s->flags |= H2_SF_BLK_MROOM; |
| 5153 | goto end; |
| 5154 | } |
| 5155 | |
| 5156 | /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */ |
| 5157 | memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5); |
| 5158 | write_n32(outbuf.area + 5, h2s->id); // 4 bytes |
| 5159 | outbuf.data = 9; |
| 5160 | |
| 5161 | /* we have in <fsize> the exact number of bytes we need to copy from |
| 5162 | * the HTX buffer. We need to check this against the connection's and |
| 5163 | * the stream's send windows, and to ensure that this fits in the max |
| 5164 | * frame size and in the buffer's available space minus 9 bytes (for |
| 5165 | * the frame header). The connection's flow control is applied last so |
| 5166 | * that we can use a separate list of streams which are immediately |
| 5167 | * unblocked on window opening. Note: we don't implement padding. |
| 5168 | */ |
| 5169 | |
| 5170 | /* EOM is presented with bsize==1 but would lead to the emission of an |
| 5171 | * empty frame, thus we force it to zero here. |
| 5172 | */ |
| 5173 | if (type == HTX_BLK_EOM) |
| 5174 | bsize = fsize = 0; |
| 5175 | |
| 5176 | if (!fsize) |
| 5177 | goto send_empty; |
| 5178 | |
Willy Tarreau | 5a9c875 | 2019-08-02 07:52:08 +0200 | [diff] [blame] | 5179 | if (h2s_mws(h2s) <= 0) { |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5180 | h2s->flags |= H2_SF_BLK_SFCTL; |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 5181 | if (LIST_ADDED(&h2s->list)) |
Olivier Houchard | bfe2a83 | 2019-05-10 14:02:21 +0200 | [diff] [blame] | 5182 | LIST_DEL_INIT(&h2s->list); |
Willy Tarreau | bda92dd | 2019-10-02 10:49:59 +0200 | [diff] [blame] | 5183 | LIST_ADDQ(&h2c->blocked_list, &h2s->list); |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5184 | goto end; |
| 5185 | } |
| 5186 | |
Willy Tarreau | ee57376 | 2018-12-04 15:25:57 +0100 | [diff] [blame] | 5187 | if (fsize > count) |
| 5188 | fsize = count; |
| 5189 | |
Willy Tarreau | 5a9c875 | 2019-08-02 07:52:08 +0200 | [diff] [blame] | 5190 | if (fsize > h2s_mws(h2s)) |
| 5191 | fsize = h2s_mws(h2s); // >0 |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5192 | |
| 5193 | if (h2c->mfs && fsize > h2c->mfs) |
| 5194 | fsize = h2c->mfs; // >0 |
| 5195 | |
| 5196 | if (fsize + 9 > outbuf.size) { |
Willy Tarreau | 455d568 | 2019-05-24 19:42:18 +0200 | [diff] [blame] | 5197 | /* It doesn't fit at once. If it at least fits once split and |
| 5198 | * the amount of data to move is low, let's defragment the |
| 5199 | * buffer now. |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5200 | */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5201 | if (b_space_wraps(mbuf) && |
| 5202 | (fsize + 9 <= b_room(mbuf)) && |
| 5203 | b_data(mbuf) <= MAX_DATA_REALIGN) |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5204 | goto realign_again; |
| 5205 | fsize = outbuf.size - 9; |
| 5206 | |
| 5207 | if (fsize <= 0) { |
| 5208 | /* no need to send an empty frame here */ |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 5209 | if ((mbuf = br_tail_add(h2c->mbuf)) != NULL) |
| 5210 | goto retry; |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5211 | h2c->flags |= H2_CF_MUX_MFULL; |
| 5212 | h2s->flags |= H2_SF_BLK_MROOM; |
| 5213 | goto end; |
| 5214 | } |
| 5215 | } |
| 5216 | |
| 5217 | if (h2c->mws <= 0) { |
| 5218 | h2s->flags |= H2_SF_BLK_MFCTL; |
| 5219 | goto end; |
| 5220 | } |
| 5221 | |
| 5222 | if (fsize > h2c->mws) |
| 5223 | fsize = h2c->mws; |
| 5224 | |
| 5225 | /* now let's copy this this into the output buffer */ |
| 5226 | memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize); |
Willy Tarreau | 5a9c875 | 2019-08-02 07:52:08 +0200 | [diff] [blame] | 5227 | h2s->sws -= fsize; |
Willy Tarreau | 0f799ca | 2018-12-04 15:20:11 +0100 | [diff] [blame] | 5228 | h2c->mws -= fsize; |
Willy Tarreau | ee57376 | 2018-12-04 15:25:57 +0100 | [diff] [blame] | 5229 | count -= fsize; |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5230 | |
| 5231 | send_empty: |
| 5232 | /* update the frame's size */ |
| 5233 | h2_set_frame_size(outbuf.area, fsize); |
| 5234 | |
| 5235 | /* FIXME: for now we only set the ES flag on empty DATA frames, once |
| 5236 | * meeting EOM. We should optimize this later. |
| 5237 | */ |
| 5238 | if (type == HTX_BLK_EOM) { |
Willy Tarreau | ee57376 | 2018-12-04 15:25:57 +0100 | [diff] [blame] | 5239 | total++; // EOM counts as one byte |
| 5240 | count--; |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5241 | es_now = 1; |
| 5242 | } |
| 5243 | |
| 5244 | if (es_now) |
| 5245 | outbuf.area[4] |= H2_F_DATA_END_STREAM; |
| 5246 | |
| 5247 | /* commit the H2 response */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5248 | b_add(mbuf, fsize + 9); |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5249 | |
| 5250 | /* consume incoming HTX block, including EOM */ |
| 5251 | total += fsize; |
| 5252 | if (fsize == bsize) { |
| 5253 | htx_remove_blk(htx, blk); |
| 5254 | if (fsize) |
| 5255 | goto new_frame; |
| 5256 | } else { |
| 5257 | /* we've truncated this block */ |
| 5258 | htx_cut_data_blk(htx, blk, fsize); |
| 5259 | } |
| 5260 | |
| 5261 | if (es_now) { |
| 5262 | if (h2s->st == H2_SS_OPEN) |
| 5263 | h2s->st = H2_SS_HLOC; |
| 5264 | else |
| 5265 | h2s_close(h2s); |
| 5266 | |
| 5267 | h2s->flags |= H2_SF_ES_SENT; |
| 5268 | } |
| 5269 | |
| 5270 | end: |
| 5271 | return total; |
| 5272 | } |
| 5273 | |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5274 | /* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in |
| 5275 | * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes |
| 5276 | * processed. The caller must check the stream's status to detect any error |
| 5277 | * which might have happened subsequently to a successful send. The htx blocks |
| 5278 | * are automatically removed from the message. The htx message is assumed to be |
| 5279 | * valid since produced from the internal code. Processing stops when meeting |
Willy Tarreau | fb07b3f | 2019-05-06 11:23:29 +0200 | [diff] [blame] | 5280 | * the EOM, which is *not* removed. All trailers are processed at once and sent |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5281 | * as a single frame. The ES flag is always set. |
| 5282 | */ |
| 5283 | static size_t h2s_htx_make_trailers(struct h2s *h2s, struct htx *htx) |
| 5284 | { |
Christopher Faulet | e4ab11b | 2019-06-11 15:05:37 +0200 | [diff] [blame] | 5285 | struct http_hdr list[global.tune.max_http_hdr]; |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5286 | struct h2c *h2c = h2s->h2c; |
| 5287 | struct htx_blk *blk; |
| 5288 | struct htx_blk *blk_end; |
| 5289 | struct buffer outbuf; |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5290 | struct buffer *mbuf; |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5291 | enum htx_blk_type type; |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5292 | int ret = 0; |
| 5293 | int hdr; |
| 5294 | int idx; |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5295 | |
| 5296 | if (h2c_mux_busy(h2c, h2s)) { |
| 5297 | h2s->flags |= H2_SF_BLK_MBUSY; |
| 5298 | goto end; |
| 5299 | } |
| 5300 | |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 5301 | /* determine the first block which must not be deleted, blk_end may |
| 5302 | * be NULL if all blocks have to be deleted. also get trailers. |
| 5303 | */ |
| 5304 | idx = htx_get_head(htx); |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5305 | blk_end = NULL; |
| 5306 | |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 5307 | hdr = 0; |
| 5308 | while (idx != -1) { |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5309 | blk = htx_get_blk(htx, idx); |
| 5310 | type = htx_get_blk_type(blk); |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 5311 | idx = htx_get_next(htx, idx); |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5312 | if (type == HTX_BLK_UNUSED) |
| 5313 | continue; |
| 5314 | |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 5315 | if (type == HTX_BLK_EOT) { |
| 5316 | if (idx != -1) |
| 5317 | blk_end = blk; |
| 5318 | break; |
| 5319 | } |
Willy Tarreau | fb07b3f | 2019-05-06 11:23:29 +0200 | [diff] [blame] | 5320 | if (type != HTX_BLK_TLR) |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5321 | break; |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5322 | |
| 5323 | if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) |
| 5324 | goto fail; |
| 5325 | |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 5326 | list[hdr].n = htx_get_blk_name(htx, blk); |
| 5327 | list[hdr].v = htx_get_blk_value(htx, blk); |
| 5328 | hdr++; |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5329 | } |
| 5330 | |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 5331 | /* marker for end of trailers */ |
| 5332 | list[hdr].n = ist(""); |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5333 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 5334 | mbuf = br_tail(h2c->mbuf); |
| 5335 | retry: |
| 5336 | if (!h2_get_buf(h2c, mbuf)) { |
| 5337 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 5338 | h2s->flags |= H2_SF_BLK_MROOM; |
| 5339 | goto end; |
| 5340 | } |
| 5341 | |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5342 | chunk_reset(&outbuf); |
| 5343 | |
| 5344 | while (1) { |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5345 | outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0); |
| 5346 | if (outbuf.size >= 9 || !b_space_wraps(mbuf)) |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5347 | break; |
| 5348 | realign_again: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5349 | b_slow_realign(mbuf, trash.area, b_data(mbuf)); |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5350 | } |
| 5351 | |
| 5352 | if (outbuf.size < 9) |
| 5353 | goto full; |
| 5354 | |
| 5355 | /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */ |
| 5356 | memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5); |
| 5357 | write_n32(outbuf.area + 5, h2s->id); // 4 bytes |
| 5358 | outbuf.data = 9; |
| 5359 | |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5360 | /* encode all headers */ |
| 5361 | for (idx = 0; idx < hdr; idx++) { |
| 5362 | /* these ones do not exist in H2 or must not appear in |
| 5363 | * trailers and must be dropped. |
| 5364 | */ |
| 5365 | if (isteq(list[idx].n, ist("host")) || |
| 5366 | isteq(list[idx].n, ist("content-length")) || |
| 5367 | isteq(list[idx].n, ist("connection")) || |
| 5368 | isteq(list[idx].n, ist("proxy-connection")) || |
| 5369 | isteq(list[idx].n, ist("keep-alive")) || |
| 5370 | isteq(list[idx].n, ist("upgrade")) || |
| 5371 | isteq(list[idx].n, ist("te")) || |
| 5372 | isteq(list[idx].n, ist("transfer-encoding"))) |
| 5373 | continue; |
| 5374 | |
| 5375 | if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) { |
| 5376 | /* output full */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5377 | if (b_space_wraps(mbuf)) |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5378 | goto realign_again; |
| 5379 | goto full; |
| 5380 | } |
| 5381 | } |
| 5382 | |
Willy Tarreau | 5121e5d | 2019-05-06 15:13:41 +0200 | [diff] [blame] | 5383 | if (outbuf.data == 9) { |
| 5384 | /* here we have a problem, we have nothing to emit (either we |
| 5385 | * received an empty trailers block followed or we removed its |
| 5386 | * contents above). Because of this we can't send a HEADERS |
| 5387 | * frame, so we have to cheat and instead send an empty DATA |
| 5388 | * frame conveying the ES flag. |
Willy Tarreau | 67b8cae | 2019-02-21 18:16:35 +0100 | [diff] [blame] | 5389 | */ |
| 5390 | outbuf.area[3] = H2_FT_DATA; |
| 5391 | outbuf.area[4] = H2_F_DATA_END_STREAM; |
| 5392 | } |
| 5393 | |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5394 | /* update the frame's size */ |
| 5395 | h2_set_frame_size(outbuf.area, outbuf.data - 9); |
| 5396 | |
| 5397 | /* commit the H2 response */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5398 | b_add(mbuf, outbuf.data); |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5399 | h2s->flags |= H2_SF_ES_SENT; |
| 5400 | |
| 5401 | if (h2s->st == H2_SS_OPEN) |
| 5402 | h2s->st = H2_SS_HLOC; |
| 5403 | else |
| 5404 | h2s_close(h2s); |
| 5405 | |
| 5406 | /* OK we could properly deliver the response */ |
| 5407 | done: |
Willy Tarreau | fb07b3f | 2019-05-06 11:23:29 +0200 | [diff] [blame] | 5408 | /* remove all header blocks till the end and compute the corresponding size. */ |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5409 | ret = 0; |
| 5410 | idx = htx_get_head(htx); |
| 5411 | blk = htx_get_blk(htx, idx); |
| 5412 | while (blk != blk_end) { |
| 5413 | ret += htx_get_blksz(blk); |
| 5414 | blk = htx_remove_blk(htx, blk); |
| 5415 | } |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 5416 | |
| 5417 | if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) { |
| 5418 | ret += htx_get_blksz(blk_end); |
| 5419 | htx_remove_blk(htx, blk_end); |
| 5420 | } |
| 5421 | |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5422 | end: |
| 5423 | return ret; |
| 5424 | full: |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 5425 | if ((mbuf = br_tail_add(h2c->mbuf)) != NULL) |
| 5426 | goto retry; |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5427 | h2c->flags |= H2_CF_MUX_MFULL; |
| 5428 | h2s->flags |= H2_SF_BLK_MROOM; |
| 5429 | ret = 0; |
| 5430 | goto end; |
| 5431 | fail: |
| 5432 | /* unparsable HTX messages, too large ones to be produced in the local |
| 5433 | * list etc go here (unrecoverable errors). |
| 5434 | */ |
| 5435 | h2s_error(h2s, H2_ERR_INTERNAL_ERROR); |
| 5436 | ret = 0; |
| 5437 | goto end; |
| 5438 | } |
| 5439 | |
Willy Tarreau | 749f5ca | 2019-03-21 19:19:36 +0100 | [diff] [blame] | 5440 | /* Called from the upper layer, to subscribe to events, such as being able to send. |
| 5441 | * The <param> argument here is supposed to be a pointer to a wait_event struct |
| 5442 | * which will be passed to h2s->recv_wait or h2s->send_wait depending on the |
| 5443 | * event_type. The event_type must only be a combination of SUB_RETRY_RECV and |
| 5444 | * SUB_RETRY_SEND, other values will lead to -1 being returned. It always |
| 5445 | * returns 0 except for the error above. |
| 5446 | */ |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 5447 | static int h2_subscribe(struct conn_stream *cs, int event_type, void *param) |
| 5448 | { |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 5449 | struct wait_event *sw; |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 5450 | struct h2s *h2s = cs->ctx; |
Olivier Houchard | 4cf7fb1 | 2018-08-02 19:23:05 +0200 | [diff] [blame] | 5451 | struct h2c *h2c = h2s->h2c; |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 5452 | |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 5453 | if (event_type & SUB_RETRY_RECV) { |
Olivier Houchard | 4cf7fb1 | 2018-08-02 19:23:05 +0200 | [diff] [blame] | 5454 | sw = param; |
Olivier Houchard | f833815 | 2019-05-14 17:50:32 +0200 | [diff] [blame] | 5455 | BUG_ON(h2s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV)); |
| 5456 | sw->events |= SUB_RETRY_RECV; |
| 5457 | h2s->recv_wait = sw; |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 5458 | event_type &= ~SUB_RETRY_RECV; |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 5459 | } |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 5460 | if (event_type & SUB_RETRY_SEND) { |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 5461 | sw = param; |
Olivier Houchard | f833815 | 2019-05-14 17:50:32 +0200 | [diff] [blame] | 5462 | BUG_ON(h2s->send_wait != NULL || (sw->events & SUB_RETRY_SEND)); |
| 5463 | sw->events |= SUB_RETRY_SEND; |
| 5464 | h2s->send_wait = sw; |
| 5465 | if (!(h2s->flags & H2_SF_BLK_SFCTL) && |
| 5466 | !LIST_ADDED(&h2s->list)) { |
| 5467 | if (h2s->flags & H2_SF_BLK_MFCTL) |
| 5468 | LIST_ADDQ(&h2c->fctl_list, &h2s->list); |
| 5469 | else |
| 5470 | LIST_ADDQ(&h2c->send_list, &h2s->list); |
Olivier Houchard | e1c6dbc | 2018-08-01 17:06:43 +0200 | [diff] [blame] | 5471 | } |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 5472 | event_type &= ~SUB_RETRY_SEND; |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 5473 | } |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 5474 | if (event_type != 0) |
| 5475 | return -1; |
| 5476 | return 0; |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 5477 | } |
| 5478 | |
Willy Tarreau | 749f5ca | 2019-03-21 19:19:36 +0100 | [diff] [blame] | 5479 | /* Called from the upper layer, to unsubscribe some events (undo h2_subscribe). |
| 5480 | * The <param> argument here is supposed to be a pointer to the same wait_event |
| 5481 | * struct that was passed to h2_subscribe() otherwise nothing will be changed. |
| 5482 | * It always returns zero. |
| 5483 | */ |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 5484 | static int h2_unsubscribe(struct conn_stream *cs, int event_type, void *param) |
| 5485 | { |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 5486 | struct wait_event *sw; |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 5487 | struct h2s *h2s = cs->ctx; |
| 5488 | |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 5489 | if (event_type & SUB_RETRY_RECV) { |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 5490 | sw = param; |
Olivier Houchard | f833815 | 2019-05-14 17:50:32 +0200 | [diff] [blame] | 5491 | BUG_ON(h2s->recv_wait != sw); |
| 5492 | sw->events &= ~SUB_RETRY_RECV; |
| 5493 | h2s->recv_wait = NULL; |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 5494 | } |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 5495 | if (event_type & SUB_RETRY_SEND) { |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 5496 | sw = param; |
Olivier Houchard | f833815 | 2019-05-14 17:50:32 +0200 | [diff] [blame] | 5497 | BUG_ON(h2s->send_wait != sw); |
| 5498 | LIST_DEL(&h2s->list); |
| 5499 | LIST_INIT(&h2s->list); |
| 5500 | sw->events &= ~SUB_RETRY_SEND; |
| 5501 | /* We were about to send, make sure it does not happen */ |
| 5502 | if (LIST_ADDED(&h2s->sending_list) && |
| 5503 | h2s->send_wait != &h2s->wait_event) { |
Willy Tarreau | 86eded6 | 2019-06-14 14:47:49 +0200 | [diff] [blame] | 5504 | tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet); |
Olivier Houchard | f833815 | 2019-05-14 17:50:32 +0200 | [diff] [blame] | 5505 | LIST_DEL_INIT(&h2s->sending_list); |
Olivier Houchard | d846c26 | 2018-10-19 17:24:29 +0200 | [diff] [blame] | 5506 | } |
Olivier Houchard | f833815 | 2019-05-14 17:50:32 +0200 | [diff] [blame] | 5507 | h2s->send_wait = NULL; |
Olivier Houchard | d846c26 | 2018-10-19 17:24:29 +0200 | [diff] [blame] | 5508 | } |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 5509 | return 0; |
| 5510 | } |
| 5511 | |
| 5512 | |
Olivier Houchard | 511efea | 2018-08-16 15:30:32 +0200 | [diff] [blame] | 5513 | /* Called from the upper layer, to receive data */ |
| 5514 | static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags) |
| 5515 | { |
Olivier Houchard | 638b799 | 2018-08-16 15:41:52 +0200 | [diff] [blame] | 5516 | struct h2s *h2s = cs->ctx; |
Willy Tarreau | 082f559 | 2018-11-25 08:03:32 +0100 | [diff] [blame] | 5517 | struct h2c *h2c = h2s->h2c; |
Willy Tarreau | 86724e2 | 2018-12-01 23:19:43 +0100 | [diff] [blame] | 5518 | struct htx *h2s_htx = NULL; |
| 5519 | struct htx *buf_htx = NULL; |
Olivier Houchard | 511efea | 2018-08-16 15:30:32 +0200 | [diff] [blame] | 5520 | size_t ret = 0; |
| 5521 | |
| 5522 | /* transfer possibly pending data to the upper layer */ |
Willy Tarreau | 86724e2 | 2018-12-01 23:19:43 +0100 | [diff] [blame] | 5523 | if (h2c->proxy->options2 & PR_O2_USE_HTX) { |
Willy Tarreau | 86724e2 | 2018-12-01 23:19:43 +0100 | [diff] [blame] | 5524 | h2s_htx = htx_from_buf(&h2s->rxbuf); |
Olivier Houchard | 56b0348 | 2018-12-10 16:09:53 +0100 | [diff] [blame] | 5525 | if (htx_is_empty(h2s_htx)) { |
Christopher Faulet | 37070b2 | 2019-02-14 15:12:14 +0100 | [diff] [blame] | 5526 | /* Here htx_to_buf() will set buffer data to 0 because |
| 5527 | * the HTX is empty. |
| 5528 | */ |
| 5529 | htx_to_buf(h2s_htx, &h2s->rxbuf); |
Willy Tarreau | 86724e2 | 2018-12-01 23:19:43 +0100 | [diff] [blame] | 5530 | goto end; |
Olivier Houchard | 56b0348 | 2018-12-10 16:09:53 +0100 | [diff] [blame] | 5531 | } |
Willy Tarreau | 86724e2 | 2018-12-01 23:19:43 +0100 | [diff] [blame] | 5532 | |
Christopher Faulet | 156852b | 2019-05-16 11:29:13 +0200 | [diff] [blame] | 5533 | ret = h2s_htx->data; |
Willy Tarreau | 86724e2 | 2018-12-01 23:19:43 +0100 | [diff] [blame] | 5534 | buf_htx = htx_from_buf(buf); |
Willy Tarreau | 86724e2 | 2018-12-01 23:19:43 +0100 | [diff] [blame] | 5535 | |
Christopher Faulet | 2f6edc8 | 2019-05-15 10:07:59 +0200 | [diff] [blame] | 5536 | /* <buf> is empty and the message is small enough, swap the |
| 5537 | * buffers. */ |
| 5538 | if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) { |
| 5539 | htx_to_buf(buf_htx, buf); |
| 5540 | htx_to_buf(h2s_htx, &h2s->rxbuf); |
| 5541 | b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf)); |
| 5542 | goto end; |
| 5543 | } |
| 5544 | |
Christopher Faulet | 156852b | 2019-05-16 11:29:13 +0200 | [diff] [blame] | 5545 | htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_EOM); |
Willy Tarreau | 7196dd6 | 2019-03-05 10:51:11 +0100 | [diff] [blame] | 5546 | |
Christopher Faulet | a61e97b | 2019-05-16 11:30:31 +0200 | [diff] [blame] | 5547 | if (h2s_htx->flags & HTX_FL_PARSING_ERROR) { |
Willy Tarreau | 7196dd6 | 2019-03-05 10:51:11 +0100 | [diff] [blame] | 5548 | buf_htx->flags |= HTX_FL_PARSING_ERROR; |
Christopher Faulet | a61e97b | 2019-05-16 11:30:31 +0200 | [diff] [blame] | 5549 | if (htx_is_empty(buf_htx)) |
| 5550 | cs->flags |= CS_FL_EOI; |
| 5551 | } |
Willy Tarreau | 7196dd6 | 2019-03-05 10:51:11 +0100 | [diff] [blame] | 5552 | |
Christopher Faulet | eaf0d2a | 2019-02-18 16:04:35 +0100 | [diff] [blame] | 5553 | buf_htx->extra = (h2s_htx->extra ? (h2s_htx->data + h2s_htx->extra) : 0); |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 5554 | htx_to_buf(buf_htx, buf); |
| 5555 | htx_to_buf(h2s_htx, &h2s->rxbuf); |
Christopher Faulet | 156852b | 2019-05-16 11:29:13 +0200 | [diff] [blame] | 5556 | ret -= h2s_htx->data; |
Willy Tarreau | 86724e2 | 2018-12-01 23:19:43 +0100 | [diff] [blame] | 5557 | } |
| 5558 | else { |
| 5559 | ret = b_xfer(buf, &h2s->rxbuf, count); |
| 5560 | } |
Olivier Houchard | 511efea | 2018-08-16 15:30:32 +0200 | [diff] [blame] | 5561 | |
Christopher Faulet | 37070b2 | 2019-02-14 15:12:14 +0100 | [diff] [blame] | 5562 | end: |
Olivier Houchard | 638b799 | 2018-08-16 15:41:52 +0200 | [diff] [blame] | 5563 | if (b_data(&h2s->rxbuf)) |
Olivier Houchard | d247be0 | 2018-12-06 16:22:29 +0100 | [diff] [blame] | 5564 | cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM); |
Olivier Houchard | 511efea | 2018-08-16 15:30:32 +0200 | [diff] [blame] | 5565 | else { |
Olivier Houchard | d247be0 | 2018-12-06 16:22:29 +0100 | [diff] [blame] | 5566 | cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM); |
Christopher Faulet | fa922f0 | 2019-05-07 10:55:17 +0200 | [diff] [blame] | 5567 | if (h2s->flags & H2_SF_ES_RCVD) |
| 5568 | cs->flags |= CS_FL_EOI; |
Willy Tarreau | 76c8382 | 2019-06-15 09:55:50 +0200 | [diff] [blame] | 5569 | if (conn_xprt_read0_pending(h2c->conn) || h2s->st == H2_SS_CLOSED) |
Olivier Houchard | 511efea | 2018-08-16 15:30:32 +0200 | [diff] [blame] | 5570 | cs->flags |= CS_FL_EOS; |
Olivier Houchard | 71748cb | 2018-12-17 14:16:46 +0100 | [diff] [blame] | 5571 | if (cs->flags & CS_FL_ERR_PENDING) |
| 5572 | cs->flags |= CS_FL_ERROR; |
Olivier Houchard | 638b799 | 2018-08-16 15:41:52 +0200 | [diff] [blame] | 5573 | if (b_size(&h2s->rxbuf)) { |
| 5574 | b_free(&h2s->rxbuf); |
| 5575 | offer_buffers(NULL, tasks_run_queue); |
| 5576 | } |
Olivier Houchard | 511efea | 2018-08-16 15:30:32 +0200 | [diff] [blame] | 5577 | } |
| 5578 | |
Willy Tarreau | 082f559 | 2018-11-25 08:03:32 +0100 | [diff] [blame] | 5579 | if (ret && h2c->dsi == h2s->id) { |
| 5580 | /* demux is blocking on this stream's buffer */ |
| 5581 | h2c->flags &= ~H2_CF_DEM_SFULL; |
Olivier Houchard | 3ca18bf | 2019-04-05 15:34:34 +0200 | [diff] [blame] | 5582 | h2c_restart_reading(h2c, 1); |
Willy Tarreau | 082f559 | 2018-11-25 08:03:32 +0100 | [diff] [blame] | 5583 | } |
Christopher Faulet | 37070b2 | 2019-02-14 15:12:14 +0100 | [diff] [blame] | 5584 | |
Olivier Houchard | 511efea | 2018-08-16 15:30:32 +0200 | [diff] [blame] | 5585 | return ret; |
| 5586 | } |
| 5587 | |
Willy Tarreau | 749f5ca | 2019-03-21 19:19:36 +0100 | [diff] [blame] | 5588 | /* stops all senders of this connection for example when the mux buffer is full. |
| 5589 | * They are moved from the sending_list to either fctl_list or send_list. |
| 5590 | */ |
Olivier Houchard | d846c26 | 2018-10-19 17:24:29 +0200 | [diff] [blame] | 5591 | static void h2_stop_senders(struct h2c *h2c) |
| 5592 | { |
| 5593 | struct h2s *h2s, *h2s_back; |
| 5594 | |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 5595 | list_for_each_entry_safe(h2s, h2s_back, &h2c->sending_list, sending_list) { |
| 5596 | LIST_DEL_INIT(&h2s->sending_list); |
Willy Tarreau | 86eded6 | 2019-06-14 14:47:49 +0200 | [diff] [blame] | 5597 | tasklet_remove_from_tasklet_list(h2s->send_wait->tasklet); |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 5598 | h2s->send_wait->events |= SUB_RETRY_SEND; |
Olivier Houchard | d846c26 | 2018-10-19 17:24:29 +0200 | [diff] [blame] | 5599 | } |
| 5600 | } |
| 5601 | |
Willy Tarreau | 749f5ca | 2019-03-21 19:19:36 +0100 | [diff] [blame] | 5602 | /* Called from the upper layer, to send data from buffer <buf> for no more than |
| 5603 | * <count> bytes. Returns the number of bytes effectively sent. Some status |
| 5604 | * flags may be updated on the conn_stream. |
| 5605 | */ |
Christopher Faulet | d44a9b3 | 2018-07-27 11:59:41 +0200 | [diff] [blame] | 5606 | static size_t h2_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags) |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5607 | { |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 5608 | struct h2s *h2s = cs->ctx; |
Olivier Houchard | 8122a8d | 2018-12-03 19:13:29 +0100 | [diff] [blame] | 5609 | size_t orig_count = count; |
Willy Tarreau | 1dc41e7 | 2018-06-14 13:21:28 +0200 | [diff] [blame] | 5610 | size_t total = 0; |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 5611 | size_t ret; |
Willy Tarreau | bcd3bb3 | 2018-12-01 18:59:00 +0100 | [diff] [blame] | 5612 | struct htx *htx; |
| 5613 | struct htx_blk *blk; |
| 5614 | enum htx_blk_type btype; |
| 5615 | uint32_t bsize; |
| 5616 | int32_t idx; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 5617 | |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 5618 | /* If we were not just woken because we wanted to send but couldn't, |
| 5619 | * and there's somebody else that is waiting to send, do nothing, |
| 5620 | * we will subscribe later and be put at the end of the list |
| 5621 | */ |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 5622 | if (!LIST_ADDED(&h2s->sending_list) && |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 5623 | (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) |
| 5624 | return 0; |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 5625 | LIST_DEL_INIT(&h2s->sending_list); |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 5626 | |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 5627 | /* We couldn't set it to NULL before, because we needed it in case |
| 5628 | * we had to cancel the tasklet |
| 5629 | */ |
| 5630 | h2s->send_wait = NULL; |
| 5631 | |
Willy Tarreau | 6bf641a | 2018-10-08 09:43:03 +0200 | [diff] [blame] | 5632 | if (h2s->h2c->st0 < H2_CS_FRAME_H) |
| 5633 | return 0; |
| 5634 | |
Willy Tarreau | 902df22 | 2019-10-31 15:48:18 +0100 | [diff] [blame] | 5635 | if (h2s->h2c->st0 >= H2_CS_ERROR) { |
| 5636 | cs->flags |= CS_FL_ERROR; |
| 5637 | return 0; |
| 5638 | } |
| 5639 | |
Willy Tarreau | bcd3bb3 | 2018-12-01 18:59:00 +0100 | [diff] [blame] | 5640 | /* htx will be enough to decide if we're using HTX or legacy */ |
| 5641 | htx = (h2s->h2c->proxy->options2 & PR_O2_USE_HTX) ? htx_from_buf(buf) : NULL; |
| 5642 | |
Willy Tarreau | 0bad043 | 2018-06-14 16:54:01 +0200 | [diff] [blame] | 5643 | if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count) |
Willy Tarreau | c4312d3 | 2017-11-07 12:01:53 +0100 | [diff] [blame] | 5644 | h2s->flags |= H2_SF_OUTGOING_DATA; |
| 5645 | |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 5646 | if (h2s->id == 0) { |
| 5647 | int32_t id = h2c_get_next_sid(h2s->h2c); |
| 5648 | |
| 5649 | if (id < 0) { |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 5650 | cs->flags |= CS_FL_ERROR; |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 5651 | return 0; |
| 5652 | } |
| 5653 | |
| 5654 | eb32_delete(&h2s->by_id); |
| 5655 | h2s->by_id.key = h2s->id = id; |
| 5656 | h2s->h2c->max_id = id; |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 5657 | h2s->h2c->nb_reserved--; |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 5658 | eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id); |
| 5659 | } |
| 5660 | |
Willy Tarreau | bcd3bb3 | 2018-12-01 18:59:00 +0100 | [diff] [blame] | 5661 | if (htx) { |
Willy Tarreau | 2b77848 | 2019-05-06 15:00:22 +0200 | [diff] [blame] | 5662 | while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) && |
Willy Tarreau | c14999b | 2018-12-06 14:09:09 +0100 | [diff] [blame] | 5663 | count && !htx_is_empty(htx)) { |
Willy Tarreau | bcd3bb3 | 2018-12-01 18:59:00 +0100 | [diff] [blame] | 5664 | idx = htx_get_head(htx); |
| 5665 | blk = htx_get_blk(htx, idx); |
| 5666 | btype = htx_get_blk_type(blk); |
| 5667 | bsize = htx_get_blksz(blk); |
| 5668 | |
| 5669 | switch (btype) { |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 5670 | case HTX_BLK_REQ_SL: |
| 5671 | /* start-line before headers */ |
| 5672 | ret = h2s_htx_bck_make_req_headers(h2s, htx); |
| 5673 | if (ret > 0) { |
| 5674 | total += ret; |
| 5675 | count -= ret; |
| 5676 | if (ret < bsize) |
| 5677 | goto done; |
| 5678 | } |
| 5679 | break; |
| 5680 | |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 5681 | case HTX_BLK_RES_SL: |
| 5682 | /* start-line before headers */ |
| 5683 | ret = h2s_htx_frt_make_resp_headers(h2s, htx); |
| 5684 | if (ret > 0) { |
| 5685 | total += ret; |
| 5686 | count -= ret; |
| 5687 | if (ret < bsize) |
| 5688 | goto done; |
| 5689 | } |
| 5690 | break; |
| 5691 | |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5692 | case HTX_BLK_DATA: |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5693 | case HTX_BLK_EOM: |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5694 | /* all these cause the emission of a DATA frame (possibly empty). |
| 5695 | * This EOM necessarily is one before trailers, as the EOM following |
| 5696 | * trailers would have been consumed by the trailers parser. |
| 5697 | */ |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 5698 | ret = h2s_htx_frt_make_resp_data(h2s, buf, count); |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5699 | if (ret > 0) { |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 5700 | htx = htx_from_buf(buf); |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5701 | total += ret; |
| 5702 | count -= ret; |
| 5703 | if (ret < bsize) |
| 5704 | goto done; |
| 5705 | } |
| 5706 | break; |
| 5707 | |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5708 | case HTX_BLK_TLR: |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 5709 | case HTX_BLK_EOT: |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5710 | /* This is the first trailers block, all the subsequent ones AND |
| 5711 | * the EOM will be swallowed by the parser. |
| 5712 | */ |
| 5713 | ret = h2s_htx_make_trailers(h2s, htx); |
| 5714 | if (ret > 0) { |
| 5715 | total += ret; |
| 5716 | count -= ret; |
| 5717 | if (ret < bsize) |
| 5718 | goto done; |
| 5719 | } |
| 5720 | break; |
| 5721 | |
Willy Tarreau | bcd3bb3 | 2018-12-01 18:59:00 +0100 | [diff] [blame] | 5722 | default: |
| 5723 | htx_remove_blk(htx, blk); |
| 5724 | total += bsize; |
| 5725 | count -= bsize; |
| 5726 | break; |
| 5727 | } |
| 5728 | } |
| 5729 | goto done; |
| 5730 | } |
| 5731 | |
| 5732 | /* legacy transfer mode */ |
Willy Tarreau | a40704a | 2018-09-11 13:52:04 +0200 | [diff] [blame] | 5733 | while (h2s->h1m.state < H1_MSG_DONE && count) { |
Willy Tarreau | 001823c | 2018-09-12 17:25:32 +0200 | [diff] [blame] | 5734 | if (h2s->h1m.state <= H1_MSG_LAST_LF) { |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 5735 | if (h2s->h2c->flags & H2_CF_IS_BACK) |
| 5736 | ret = -1; |
| 5737 | else |
| 5738 | ret = h2s_frt_make_resp_headers(h2s, buf, total, count); |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 5739 | } |
Willy Tarreau | a40704a | 2018-09-11 13:52:04 +0200 | [diff] [blame] | 5740 | else if (h2s->h1m.state < H1_MSG_TRAILERS) { |
Willy Tarreau | 0bad043 | 2018-06-14 16:54:01 +0200 | [diff] [blame] | 5741 | ret = h2s_frt_make_resp_data(h2s, buf, total, count); |
Willy Tarreau | 9d89ac8 | 2017-10-31 17:15:59 +0100 | [diff] [blame] | 5742 | } |
Willy Tarreau | a40704a | 2018-09-11 13:52:04 +0200 | [diff] [blame] | 5743 | else if (h2s->h1m.state == H1_MSG_TRAILERS) { |
Willy Tarreau | 9d89ac8 | 2017-10-31 17:15:59 +0100 | [diff] [blame] | 5744 | /* consume the trailers if any (we don't forward them for now) */ |
Willy Tarreau | 0bad043 | 2018-06-14 16:54:01 +0200 | [diff] [blame] | 5745 | ret = h1_measure_trailers(buf, total, count); |
Willy Tarreau | 9d89ac8 | 2017-10-31 17:15:59 +0100 | [diff] [blame] | 5746 | |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 5747 | if (unlikely((int)ret <= 0)) { |
| 5748 | if ((int)ret < 0) |
Willy Tarreau | 9d89ac8 | 2017-10-31 17:15:59 +0100 | [diff] [blame] | 5749 | h2s_error(h2s, H2_ERR_INTERNAL_ERROR); |
| 5750 | break; |
| 5751 | } |
Willy Tarreau | 35a6270 | 2018-02-27 15:37:25 +0100 | [diff] [blame] | 5752 | // trim any possibly pending data (eg: extra CR-LF, ...) |
Willy Tarreau | 0bad043 | 2018-06-14 16:54:01 +0200 | [diff] [blame] | 5753 | total += count; |
| 5754 | count = 0; |
Willy Tarreau | a40704a | 2018-09-11 13:52:04 +0200 | [diff] [blame] | 5755 | h2s->h1m.state = H1_MSG_DONE; |
Willy Tarreau | 9d89ac8 | 2017-10-31 17:15:59 +0100 | [diff] [blame] | 5756 | break; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 5757 | } |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 5758 | else { |
Willy Tarreau | ec988c7 | 2018-12-19 18:00:29 +0100 | [diff] [blame] | 5759 | cs_set_error(cs); |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 5760 | break; |
| 5761 | } |
Willy Tarreau | 0bad043 | 2018-06-14 16:54:01 +0200 | [diff] [blame] | 5762 | |
| 5763 | total += ret; |
| 5764 | count -= ret; |
| 5765 | |
Willy Tarreau | 2b77848 | 2019-05-06 15:00:22 +0200 | [diff] [blame] | 5766 | if (h2s->st >= H2_SS_HLOC) |
Willy Tarreau | 0bad043 | 2018-06-14 16:54:01 +0200 | [diff] [blame] | 5767 | break; |
| 5768 | |
| 5769 | if (h2s->flags & H2_SF_BLK_ANY) |
| 5770 | break; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 5771 | } |
| 5772 | |
Willy Tarreau | bcd3bb3 | 2018-12-01 18:59:00 +0100 | [diff] [blame] | 5773 | done: |
Willy Tarreau | 2b77848 | 2019-05-06 15:00:22 +0200 | [diff] [blame] | 5774 | if (h2s->st >= H2_SS_HLOC) { |
Willy Tarreau | 0061096 | 2018-07-19 10:58:28 +0200 | [diff] [blame] | 5775 | /* trim any possibly pending data after we close (extra CR-LF, |
| 5776 | * unprocessed trailers, abnormal extra data, ...) |
| 5777 | */ |
Willy Tarreau | 0bad043 | 2018-06-14 16:54:01 +0200 | [diff] [blame] | 5778 | total += count; |
| 5779 | count = 0; |
Willy Tarreau | 0061096 | 2018-07-19 10:58:28 +0200 | [diff] [blame] | 5780 | } |
| 5781 | |
Willy Tarreau | c6795ca | 2017-11-07 09:43:06 +0100 | [diff] [blame] | 5782 | /* RST are sent similarly to frame acks */ |
Willy Tarreau | 0249219 | 2017-12-07 15:59:29 +0100 | [diff] [blame] | 5783 | if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) { |
Willy Tarreau | ec988c7 | 2018-12-19 18:00:29 +0100 | [diff] [blame] | 5784 | cs_set_error(cs); |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 5785 | if (h2s_send_rst_stream(h2s->h2c, h2s) > 0) |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 5786 | h2s_close(h2s); |
Willy Tarreau | c6795ca | 2017-11-07 09:43:06 +0100 | [diff] [blame] | 5787 | } |
| 5788 | |
Willy Tarreau | bcd3bb3 | 2018-12-01 18:59:00 +0100 | [diff] [blame] | 5789 | if (htx) { |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 5790 | htx_to_buf(htx, buf); |
Willy Tarreau | bcd3bb3 | 2018-12-01 18:59:00 +0100 | [diff] [blame] | 5791 | } else { |
| 5792 | b_del(buf, total); |
| 5793 | } |
Olivier Houchard | d846c26 | 2018-10-19 17:24:29 +0200 | [diff] [blame] | 5794 | |
| 5795 | /* The mux is full, cancel the pending tasks */ |
| 5796 | if ((h2s->h2c->flags & H2_CF_MUX_BLOCK_ANY) || |
| 5797 | (h2s->flags & H2_SF_BLK_MBUSY)) |
| 5798 | h2_stop_senders(h2s->h2c); |
Willy Tarreau | bcd3bb3 | 2018-12-01 18:59:00 +0100 | [diff] [blame] | 5799 | |
Olivier Houchard | 8122a8d | 2018-12-03 19:13:29 +0100 | [diff] [blame] | 5800 | /* If we're running HTX, and we read the whole buffer, then pretend |
| 5801 | * we read exactly what the caller specified, as with HTX the caller |
| 5802 | * will always give the buffer size, instead of the amount of data |
| 5803 | * available. |
| 5804 | */ |
| 5805 | if (htx && !b_data(buf)) |
| 5806 | total = orig_count; |
| 5807 | |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 5808 | if (total > 0) { |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 5809 | if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5810 | tasklet_wakeup(h2s->h2c->wait_event.tasklet); |
Olivier Houchard | d846c26 | 2018-10-19 17:24:29 +0200 | [diff] [blame] | 5811 | |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 5812 | } |
Olivier Houchard | 6dea2ee | 2018-12-19 18:16:17 +0100 | [diff] [blame] | 5813 | /* If we're waiting for flow control, and we got a shutr on the |
| 5814 | * connection, we will never be unlocked, so add an error on |
| 5815 | * the conn_stream. |
| 5816 | */ |
| 5817 | if (conn_xprt_read0_pending(h2s->h2c->conn) && |
| 5818 | !b_data(&h2s->h2c->dbuf) && |
| 5819 | (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) { |
| 5820 | if (cs->flags & CS_FL_EOS) |
| 5821 | cs->flags |= CS_FL_ERROR; |
| 5822 | else |
| 5823 | cs->flags |= CS_FL_ERR_PENDING; |
| 5824 | } |
Willy Tarreau | bda92dd | 2019-10-02 10:49:59 +0200 | [diff] [blame] | 5825 | |
| 5826 | if (total > 0 && !(h2s->flags & H2_SF_BLK_SFCTL)) { |
| 5827 | /* Ok we managed to send something, leave the send_list if we were still there */ |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 5828 | LIST_DEL_INIT(&h2s->list); |
| 5829 | } |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 5830 | return total; |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5831 | } |
| 5832 | |
Willy Tarreau | e3f36cd | 2018-03-30 14:43:13 +0200 | [diff] [blame] | 5833 | /* for debugging with CLI's "show fd" command */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 5834 | static void h2_show_fd(struct buffer *msg, struct connection *conn) |
Willy Tarreau | e3f36cd | 2018-03-30 14:43:13 +0200 | [diff] [blame] | 5835 | { |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 5836 | struct h2c *h2c = conn->ctx; |
Willy Tarreau | 987c063 | 2018-12-18 10:32:05 +0100 | [diff] [blame] | 5837 | struct h2s *h2s = NULL; |
Willy Tarreau | e3f36cd | 2018-03-30 14:43:13 +0200 | [diff] [blame] | 5838 | struct eb32_node *node; |
| 5839 | int fctl_cnt = 0; |
| 5840 | int send_cnt = 0; |
| 5841 | int tree_cnt = 0; |
| 5842 | int orph_cnt = 0; |
Willy Tarreau | 60f6268 | 2019-05-26 11:32:27 +0200 | [diff] [blame] | 5843 | struct buffer *hmbuf, *tmbuf; |
Willy Tarreau | e3f36cd | 2018-03-30 14:43:13 +0200 | [diff] [blame] | 5844 | |
| 5845 | if (!h2c) |
| 5846 | return; |
| 5847 | |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 5848 | list_for_each_entry(h2s, &h2c->fctl_list, list) |
Willy Tarreau | e3f36cd | 2018-03-30 14:43:13 +0200 | [diff] [blame] | 5849 | fctl_cnt++; |
| 5850 | |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 5851 | list_for_each_entry(h2s, &h2c->send_list, list) |
Willy Tarreau | e3f36cd | 2018-03-30 14:43:13 +0200 | [diff] [blame] | 5852 | send_cnt++; |
| 5853 | |
Willy Tarreau | 3af3771 | 2018-12-18 14:34:41 +0100 | [diff] [blame] | 5854 | h2s = NULL; |
Willy Tarreau | e3f36cd | 2018-03-30 14:43:13 +0200 | [diff] [blame] | 5855 | node = eb32_first(&h2c->streams_by_id); |
| 5856 | while (node) { |
| 5857 | h2s = container_of(node, struct h2s, by_id); |
| 5858 | tree_cnt++; |
| 5859 | if (!h2s->cs) |
| 5860 | orph_cnt++; |
| 5861 | node = eb32_next(node); |
| 5862 | } |
| 5863 | |
Willy Tarreau | 60f6268 | 2019-05-26 11:32:27 +0200 | [diff] [blame] | 5864 | hmbuf = br_head(h2c->mbuf); |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5865 | tmbuf = br_tail(h2c->mbuf); |
Willy Tarreau | 987c063 | 2018-12-18 10:32:05 +0100 | [diff] [blame] | 5866 | chunk_appendf(msg, " h2c.st0=%d .err=%d .maxid=%d .lastid=%d .flg=0x%04x" |
| 5867 | " .nbst=%u .nbcs=%u .fctl_cnt=%d .send_cnt=%d .tree_cnt=%d" |
Willy Tarreau | 60f6268 | 2019-05-26 11:32:27 +0200 | [diff] [blame] | 5868 | " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d" |
| 5869 | " .mbuf=[%u..%u|%u],h=[%u@%p+%u/%u],t=[%u@%p+%u/%u]", |
Willy Tarreau | 616ac81 | 2018-07-24 14:12:42 +0200 | [diff] [blame] | 5870 | h2c->st0, h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags, |
| 5871 | h2c->nb_streams, h2c->nb_cs, fctl_cnt, send_cnt, tree_cnt, orph_cnt, |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 5872 | h2c->wait_event.events, h2c->dsi, |
Willy Tarreau | 987c063 | 2018-12-18 10:32:05 +0100 | [diff] [blame] | 5873 | (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf), |
| 5874 | (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf), |
| 5875 | h2c->msi, |
Willy Tarreau | 60f6268 | 2019-05-26 11:32:27 +0200 | [diff] [blame] | 5876 | br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf), |
| 5877 | (unsigned int)b_data(hmbuf), b_orig(hmbuf), |
| 5878 | (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf), |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5879 | (unsigned int)b_data(tmbuf), b_orig(tmbuf), |
| 5880 | (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf)); |
Willy Tarreau | 987c063 | 2018-12-18 10:32:05 +0100 | [diff] [blame] | 5881 | |
| 5882 | if (h2s) { |
| 5883 | chunk_appendf(msg, " last_h2s=%p .id=%d .flg=0x%04x .rxbuf=%u@%p+%u/%u .cs=%p", |
| 5884 | h2s, h2s->id, h2s->flags, |
| 5885 | (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf), |
| 5886 | (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf), |
| 5887 | h2s->cs); |
| 5888 | if (h2s->cs) |
| 5889 | chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p", |
| 5890 | h2s->cs->flags, h2s->cs->data); |
| 5891 | } |
Willy Tarreau | e3f36cd | 2018-03-30 14:43:13 +0200 | [diff] [blame] | 5892 | } |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5893 | |
| 5894 | /*******************************************************/ |
| 5895 | /* functions below are dedicated to the config parsers */ |
| 5896 | /*******************************************************/ |
| 5897 | |
Willy Tarreau | fe20e5b | 2017-07-27 11:42:14 +0200 | [diff] [blame] | 5898 | /* config parser for global "tune.h2.header-table-size" */ |
| 5899 | static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx, |
| 5900 | struct proxy *defpx, const char *file, int line, |
| 5901 | char **err) |
| 5902 | { |
| 5903 | if (too_many_args(1, args, err, NULL)) |
| 5904 | return -1; |
| 5905 | |
| 5906 | h2_settings_header_table_size = atoi(args[1]); |
| 5907 | if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) { |
| 5908 | memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]); |
| 5909 | return -1; |
| 5910 | } |
| 5911 | return 0; |
| 5912 | } |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5913 | |
Willy Tarreau | e6baec0 | 2017-07-27 11:45:11 +0200 | [diff] [blame] | 5914 | /* config parser for global "tune.h2.initial-window-size" */ |
| 5915 | static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx, |
| 5916 | struct proxy *defpx, const char *file, int line, |
| 5917 | char **err) |
| 5918 | { |
| 5919 | if (too_many_args(1, args, err, NULL)) |
| 5920 | return -1; |
| 5921 | |
| 5922 | h2_settings_initial_window_size = atoi(args[1]); |
| 5923 | if (h2_settings_initial_window_size < 0) { |
| 5924 | memprintf(err, "'%s' expects a positive numeric value.", args[0]); |
| 5925 | return -1; |
| 5926 | } |
| 5927 | return 0; |
| 5928 | } |
| 5929 | |
Willy Tarreau | 5242ef8 | 2017-07-27 11:47:28 +0200 | [diff] [blame] | 5930 | /* config parser for global "tune.h2.max-concurrent-streams" */ |
| 5931 | static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx, |
| 5932 | struct proxy *defpx, const char *file, int line, |
| 5933 | char **err) |
| 5934 | { |
| 5935 | if (too_many_args(1, args, err, NULL)) |
| 5936 | return -1; |
| 5937 | |
| 5938 | h2_settings_max_concurrent_streams = atoi(args[1]); |
Willy Tarreau | 5a490b6 | 2019-01-31 10:39:51 +0100 | [diff] [blame] | 5939 | if ((int)h2_settings_max_concurrent_streams < 0) { |
Willy Tarreau | 5242ef8 | 2017-07-27 11:47:28 +0200 | [diff] [blame] | 5940 | memprintf(err, "'%s' expects a positive numeric value.", args[0]); |
| 5941 | return -1; |
| 5942 | } |
| 5943 | return 0; |
| 5944 | } |
| 5945 | |
Willy Tarreau | a24b35c | 2019-02-21 13:24:36 +0100 | [diff] [blame] | 5946 | /* config parser for global "tune.h2.max-frame-size" */ |
| 5947 | static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx, |
| 5948 | struct proxy *defpx, const char *file, int line, |
| 5949 | char **err) |
| 5950 | { |
| 5951 | if (too_many_args(1, args, err, NULL)) |
| 5952 | return -1; |
| 5953 | |
| 5954 | h2_settings_max_frame_size = atoi(args[1]); |
| 5955 | if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) { |
| 5956 | memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]); |
| 5957 | return -1; |
| 5958 | } |
| 5959 | return 0; |
| 5960 | } |
| 5961 | |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5962 | |
| 5963 | /****************************************/ |
| 5964 | /* MUX initialization and instanciation */ |
| 5965 | /***************************************/ |
| 5966 | |
| 5967 | /* The mux operations */ |
Willy Tarreau | 680b2bd | 2018-11-27 07:30:17 +0100 | [diff] [blame] | 5968 | static const struct mux_ops h2_ops = { |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5969 | .init = h2_init, |
Olivier Houchard | 21df6cc | 2018-09-14 23:21:44 +0200 | [diff] [blame] | 5970 | .wake = h2_wake, |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5971 | .snd_buf = h2_snd_buf, |
Olivier Houchard | 511efea | 2018-08-16 15:30:32 +0200 | [diff] [blame] | 5972 | .rcv_buf = h2_rcv_buf, |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 5973 | .subscribe = h2_subscribe, |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 5974 | .unsubscribe = h2_unsubscribe, |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5975 | .attach = h2_attach, |
Willy Tarreau | fafd398 | 2018-11-18 21:29:20 +0100 | [diff] [blame] | 5976 | .get_first_cs = h2_get_first_cs, |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5977 | .detach = h2_detach, |
Olivier Houchard | 060ed43 | 2018-11-06 16:32:42 +0100 | [diff] [blame] | 5978 | .destroy = h2_destroy, |
Olivier Houchard | d540b36 | 2018-11-05 18:37:53 +0100 | [diff] [blame] | 5979 | .avail_streams = h2_avail_streams, |
Willy Tarreau | 00f18a3 | 2019-01-26 12:19:01 +0100 | [diff] [blame] | 5980 | .used_streams = h2_used_streams, |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5981 | .shutr = h2_shutr, |
| 5982 | .shutw = h2_shutw, |
Olivier Houchard | 198d129 | 2019-10-25 16:19:26 +0200 | [diff] [blame] | 5983 | .ctl = h2_ctl, |
Willy Tarreau | e3f36cd | 2018-03-30 14:43:13 +0200 | [diff] [blame] | 5984 | .show_fd = h2_show_fd, |
Willy Tarreau | 28f1cb9 | 2017-12-20 16:14:44 +0100 | [diff] [blame] | 5985 | .flags = MX_FL_CLEAN_ABRT, |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5986 | .name = "H2", |
| 5987 | }; |
| 5988 | |
Christopher Faulet | 32f61c0 | 2018-04-10 14:33:41 +0200 | [diff] [blame] | 5989 | /* PROTO selection : this mux registers PROTO token "h2" */ |
| 5990 | static struct mux_proto_list mux_proto_h2 = |
Willy Tarreau | f895727 | 2018-10-03 10:25:20 +0200 | [diff] [blame] | 5991 | { .token = IST("h2"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_FE, .mux = &h2_ops }; |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5992 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 5993 | INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2); |
| 5994 | |
Christopher Faulet | 9b57910 | 2019-04-11 22:52:25 +0200 | [diff] [blame] | 5995 | |
| 5996 | /* The mux operations */ |
| 5997 | static const struct mux_ops h2_htx_ops = { |
| 5998 | .init = h2_init, |
| 5999 | .wake = h2_wake, |
| 6000 | .snd_buf = h2_snd_buf, |
| 6001 | .rcv_buf = h2_rcv_buf, |
| 6002 | .subscribe = h2_subscribe, |
| 6003 | .unsubscribe = h2_unsubscribe, |
| 6004 | .attach = h2_attach, |
| 6005 | .get_first_cs = h2_get_first_cs, |
| 6006 | .detach = h2_detach, |
| 6007 | .destroy = h2_destroy, |
| 6008 | .avail_streams = h2_avail_streams, |
| 6009 | .used_streams = h2_used_streams, |
| 6010 | .shutr = h2_shutr, |
| 6011 | .shutw = h2_shutw, |
Olivier Houchard | 198d129 | 2019-10-25 16:19:26 +0200 | [diff] [blame] | 6012 | .ctl = h2_ctl, |
Christopher Faulet | 9b57910 | 2019-04-11 22:52:25 +0200 | [diff] [blame] | 6013 | .show_fd = h2_show_fd, |
Christopher Faulet | 9f38f5a | 2019-04-03 09:53:32 +0200 | [diff] [blame] | 6014 | .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX, |
Christopher Faulet | 9b57910 | 2019-04-11 22:52:25 +0200 | [diff] [blame] | 6015 | .name = "H2", |
| 6016 | }; |
| 6017 | |
Willy Tarreau | f895727 | 2018-10-03 10:25:20 +0200 | [diff] [blame] | 6018 | static struct mux_proto_list mux_proto_h2_htx = |
Christopher Faulet | 9b57910 | 2019-04-11 22:52:25 +0200 | [diff] [blame] | 6019 | { .token = IST("h2"), .mode = PROTO_MODE_HTX, .side = PROTO_SIDE_BOTH, .mux = &h2_htx_ops }; |
Willy Tarreau | f895727 | 2018-10-03 10:25:20 +0200 | [diff] [blame] | 6020 | |
| 6021 | INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2_htx); |
| 6022 | |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 6023 | /* config keyword parsers */ |
| 6024 | static struct cfg_kw_list cfg_kws = {ILH, { |
Willy Tarreau | fe20e5b | 2017-07-27 11:42:14 +0200 | [diff] [blame] | 6025 | { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size }, |
Willy Tarreau | e6baec0 | 2017-07-27 11:45:11 +0200 | [diff] [blame] | 6026 | { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size }, |
Willy Tarreau | 5242ef8 | 2017-07-27 11:47:28 +0200 | [diff] [blame] | 6027 | { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams }, |
Willy Tarreau | a24b35c | 2019-02-21 13:24:36 +0100 | [diff] [blame] | 6028 | { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size }, |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 6029 | { 0, NULL, NULL } |
| 6030 | }}; |
| 6031 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 6032 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |