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 */ |
Olivier Houchard | d846c26 | 2018-10-19 17:24:29 +0200 | [diff] [blame] | 133 | struct list sending_list; /* list of h2s scheduled to send data */ |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 134 | struct buffer_wait buf_wait; /* wait list for buffer allocations */ |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 135 | 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] | 136 | }; |
| 137 | |
Willy Tarreau | 1831264 | 2017-10-11 07:57:07 +0200 | [diff] [blame] | 138 | /* H2 stream state, in h2s->st */ |
| 139 | enum h2_ss { |
| 140 | H2_SS_IDLE = 0, // idle |
| 141 | H2_SS_RLOC, // reserved(local) |
| 142 | H2_SS_RREM, // reserved(remote) |
| 143 | H2_SS_OPEN, // open |
| 144 | H2_SS_HREM, // half-closed(remote) |
| 145 | H2_SS_HLOC, // half-closed(local) |
Willy Tarreau | 96060ba | 2017-10-16 18:34:34 +0200 | [diff] [blame] | 146 | H2_SS_ERROR, // an error needs to be sent using RST_STREAM |
Willy Tarreau | 1831264 | 2017-10-11 07:57:07 +0200 | [diff] [blame] | 147 | H2_SS_CLOSED, // closed |
| 148 | H2_SS_ENTRIES // must be last |
| 149 | } __attribute__((packed)); |
| 150 | |
Willy Tarreau | 4c688eb | 2019-05-14 11:44:03 +0200 | [diff] [blame] | 151 | #define H2_SS_MASK(state) (1UL << (state)) |
| 152 | #define H2_SS_IDLE_BIT (1UL << H2_SS_IDLE) |
| 153 | #define H2_SS_RLOC_BIT (1UL << H2_SS_RLOC) |
| 154 | #define H2_SS_RREM_BIT (1UL << H2_SS_RREM) |
| 155 | #define H2_SS_OPEN_BIT (1UL << H2_SS_OPEN) |
| 156 | #define H2_SS_HREM_BIT (1UL << H2_SS_HREM) |
| 157 | #define H2_SS_HLOC_BIT (1UL << H2_SS_HLOC) |
| 158 | #define H2_SS_ERROR_BIT (1UL << H2_SS_ERROR) |
| 159 | #define H2_SS_CLOSED_BIT (1UL << H2_SS_CLOSED) |
| 160 | #define H2_SS_EOS_BITS (H2_SS_CLOSED_BIT|H2_SS_ERROR_BIT|H2_SS_HREM_BIT) |
| 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) |
| 172 | #define H2_SF_BLK_MROOM 0x00000020 // blocked waiting for room in the mux |
| 173 | #define H2_SF_BLK_MFCTL 0x00000040 // blocked due to mux fctl |
| 174 | #define H2_SF_BLK_SFCTL 0x00000080 // blocked due to stream fctl |
| 175 | #define H2_SF_BLK_ANY 0x000000F0 // any of the reasons above |
| 176 | |
Willy 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_* */ |
| 212 | int mws; /* mux window size for this stream */ |
| 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 | |
Olivier Houchard | 7a97743 | 2019-03-21 15:47:13 +0100 | [diff] [blame] | 306 | static __inline int |
| 307 | h2c_is_dead(struct h2c *h2c) |
| 308 | { |
| 309 | if (eb_is_empty(&h2c->streams_by_id) && /* don't close if streams exist */ |
| 310 | ((h2c->conn->flags & CO_FL_ERROR) || /* errors close immediately */ |
| 311 | (h2c->st0 >= H2_CS_ERROR && !h2c->task) || /* a timeout stroke earlier */ |
| 312 | (!(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] | 313 | (!br_data(h2c->mbuf) && /* mux buffer empty, also process clean events below */ |
Olivier Houchard | 7a97743 | 2019-03-21 15:47:13 +0100 | [diff] [blame] | 314 | (conn_xprt_read0_pending(h2c->conn) || |
| 315 | (h2c->last_sid >= 0 && h2c->max_id >= h2c->last_sid))))) |
| 316 | return 1; |
| 317 | |
| 318 | return 0; |
Olivier Houchard | 7a97743 | 2019-03-21 15:47:13 +0100 | [diff] [blame] | 319 | } |
| 320 | |
Willy Tarreau | 35dbd5d | 2017-09-22 09:13:49 +0200 | [diff] [blame] | 321 | /*****************************************************/ |
| 322 | /* functions below are for dynamic buffer management */ |
| 323 | /*****************************************************/ |
| 324 | |
Willy Tarreau | 315d807 | 2017-12-10 22:17:57 +0100 | [diff] [blame] | 325 | /* indicates whether or not the we may call the h2_recv() function to attempt |
| 326 | * to receive data into the buffer and/or demux pending data. The condition is |
| 327 | * a bit complex due to some API limits for now. The rules are the following : |
| 328 | * - if an error or a shutdown was detected on the connection and the buffer |
| 329 | * is empty, we must not attempt to receive |
| 330 | * - if the demux buf failed to be allocated, we must not try to receive and |
| 331 | * we know there is nothing pending |
Willy Tarreau | 6042aeb | 2017-12-12 11:01:44 +0100 | [diff] [blame] | 332 | * - if no flag indicates a blocking condition, we may attempt to receive, |
| 333 | * regardless of whether the demux buffer is full or not, so that only |
| 334 | * de demux part decides whether or not to block. This is needed because |
| 335 | * the connection API indeed prevents us from re-enabling receipt that is |
| 336 | * already enabled in a polled state, so we must always immediately stop |
| 337 | * as soon as the demux can't proceed so as never to hit an end of read |
| 338 | * with data pending in the buffers. |
Willy Tarreau | 315d807 | 2017-12-10 22:17:57 +0100 | [diff] [blame] | 339 | * - otherwise must may not attempt |
| 340 | */ |
| 341 | static inline int h2_recv_allowed(const struct h2c *h2c) |
| 342 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 343 | if (b_data(&h2c->dbuf) == 0 && |
Willy Tarreau | 315d807 | 2017-12-10 22:17:57 +0100 | [diff] [blame] | 344 | (h2c->st0 >= H2_CS_ERROR || |
| 345 | h2c->conn->flags & CO_FL_ERROR || |
| 346 | conn_xprt_read0_pending(h2c->conn))) |
| 347 | return 0; |
| 348 | |
| 349 | if (!(h2c->flags & H2_CF_DEM_DALLOC) && |
Willy Tarreau | 6042aeb | 2017-12-12 11:01:44 +0100 | [diff] [blame] | 350 | !(h2c->flags & H2_CF_DEM_BLOCK_ANY)) |
Willy Tarreau | 315d807 | 2017-12-10 22:17:57 +0100 | [diff] [blame] | 351 | return 1; |
| 352 | |
| 353 | return 0; |
| 354 | } |
| 355 | |
Willy Tarreau | 47b515a | 2018-12-21 16:09:41 +0100 | [diff] [blame] | 356 | /* restarts reading on the connection if it was not enabled */ |
Olivier Houchard | 3ca18bf | 2019-04-05 15:34:34 +0200 | [diff] [blame] | 357 | 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] | 358 | { |
| 359 | if (!h2_recv_allowed(h2c)) |
| 360 | return; |
Olivier Houchard | 3ca18bf | 2019-04-05 15:34:34 +0200 | [diff] [blame] | 361 | if ((!consider_buffer || !b_data(&h2c->dbuf)) |
| 362 | && (h2c->wait_event.events & SUB_RETRY_RECV)) |
Willy Tarreau | 47b515a | 2018-12-21 16:09:41 +0100 | [diff] [blame] | 363 | return; |
| 364 | tasklet_wakeup(h2c->wait_event.task); |
| 365 | } |
| 366 | |
| 367 | |
Willy Tarreau | fa1d357 | 2019-01-31 10:31:51 +0100 | [diff] [blame] | 368 | /* returns true if the front connection has too many conn_streams attached */ |
| 369 | 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] | 370 | { |
Willy Tarreau | a875466 | 2018-12-23 20:43:58 +0100 | [diff] [blame] | 371 | return h2c->nb_cs > h2_settings_max_concurrent_streams; |
Willy Tarreau | f210191 | 2018-07-19 10:11:38 +0200 | [diff] [blame] | 372 | } |
| 373 | |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 374 | /* Tries to grab a buffer and to re-enable processing on mux <target>. The h2c |
| 375 | * flags are used to figure what buffer was requested. It returns 1 if the |
| 376 | * allocation succeeds, in which case the connection is woken up, or 0 if it's |
| 377 | * impossible to wake up and we prefer to be woken up later. |
Willy Tarreau | 35dbd5d | 2017-09-22 09:13:49 +0200 | [diff] [blame] | 378 | */ |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 379 | static int h2_buf_available(void *target) |
Willy Tarreau | 35dbd5d | 2017-09-22 09:13:49 +0200 | [diff] [blame] | 380 | { |
| 381 | struct h2c *h2c = target; |
Willy Tarreau | 0b55907 | 2018-02-26 15:22:17 +0100 | [diff] [blame] | 382 | struct h2s *h2s; |
Willy Tarreau | 35dbd5d | 2017-09-22 09:13:49 +0200 | [diff] [blame] | 383 | |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 384 | 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] | 385 | h2c->flags &= ~H2_CF_DEM_DALLOC; |
Olivier Houchard | 3ca18bf | 2019-04-05 15:34:34 +0200 | [diff] [blame] | 386 | h2c_restart_reading(h2c, 1); |
Willy Tarreau | 35dbd5d | 2017-09-22 09:13:49 +0200 | [diff] [blame] | 387 | return 1; |
| 388 | } |
Willy Tarreau | 35dbd5d | 2017-09-22 09:13:49 +0200 | [diff] [blame] | 389 | |
Willy Tarreau | 5133096 | 2019-05-26 09:38:07 +0200 | [diff] [blame] | 390 | 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] | 391 | h2c->flags &= ~H2_CF_MUX_MALLOC; |
Willy Tarreau | 1b62c5c | 2017-09-25 11:55:01 +0200 | [diff] [blame] | 392 | |
| 393 | if (h2c->flags & H2_CF_DEM_MROOM) { |
| 394 | h2c->flags &= ~H2_CF_DEM_MROOM; |
Olivier Houchard | 3ca18bf | 2019-04-05 15:34:34 +0200 | [diff] [blame] | 395 | h2c_restart_reading(h2c, 1); |
Willy Tarreau | 1b62c5c | 2017-09-25 11:55:01 +0200 | [diff] [blame] | 396 | } |
Willy Tarreau | 1439812 | 2017-09-22 14:26:04 +0200 | [diff] [blame] | 397 | return 1; |
| 398 | } |
Willy Tarreau | 0b55907 | 2018-02-26 15:22:17 +0100 | [diff] [blame] | 399 | |
| 400 | if ((h2c->flags & H2_CF_DEM_SALLOC) && |
| 401 | (h2s = h2c_st_by_id(h2c, h2c->dsi)) && h2s->cs && |
Olivier Houchard | 638b799 | 2018-08-16 15:41:52 +0200 | [diff] [blame] | 402 | b_alloc_margin(&h2s->rxbuf, 0)) { |
Willy Tarreau | 0b55907 | 2018-02-26 15:22:17 +0100 | [diff] [blame] | 403 | h2c->flags &= ~H2_CF_DEM_SALLOC; |
Olivier Houchard | 3ca18bf | 2019-04-05 15:34:34 +0200 | [diff] [blame] | 404 | h2c_restart_reading(h2c, 1); |
Willy Tarreau | 0b55907 | 2018-02-26 15:22:17 +0100 | [diff] [blame] | 405 | return 1; |
| 406 | } |
| 407 | |
Willy Tarreau | 1439812 | 2017-09-22 14:26:04 +0200 | [diff] [blame] | 408 | return 0; |
| 409 | } |
| 410 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 411 | 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] | 412 | { |
| 413 | struct buffer *buf = NULL; |
| 414 | |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 415 | if (likely(!LIST_ADDED(&h2c->buf_wait.list)) && |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 416 | unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) { |
| 417 | h2c->buf_wait.target = h2c; |
| 418 | h2c->buf_wait.wakeup_cb = h2_buf_available; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 419 | HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 420 | LIST_ADDQ(&buffer_wq, &h2c->buf_wait.list); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 421 | HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
Willy Tarreau | 1439812 | 2017-09-22 14:26:04 +0200 | [diff] [blame] | 422 | __conn_xprt_stop_recv(h2c->conn); |
| 423 | } |
| 424 | return buf; |
| 425 | } |
| 426 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 427 | static inline void h2_release_buf(struct h2c *h2c, struct buffer *bptr) |
Willy Tarreau | 1439812 | 2017-09-22 14:26:04 +0200 | [diff] [blame] | 428 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 429 | if (bptr->size) { |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 430 | b_free(bptr); |
Willy Tarreau | 201840a | 2019-05-29 17:50:48 +0200 | [diff] [blame] | 431 | offer_buffers(NULL, tasks_run_queue); |
Willy Tarreau | 1439812 | 2017-09-22 14:26:04 +0200 | [diff] [blame] | 432 | } |
| 433 | } |
| 434 | |
Willy Tarreau | 2e3c000 | 2019-05-26 09:45:23 +0200 | [diff] [blame] | 435 | static inline void h2_release_mbuf(struct h2c *h2c) |
| 436 | { |
| 437 | struct buffer *buf; |
| 438 | unsigned int count = 0; |
| 439 | |
| 440 | while (b_size(buf = br_head_pick(h2c->mbuf))) { |
| 441 | b_free(buf); |
| 442 | count++; |
| 443 | } |
| 444 | if (count) |
Willy Tarreau | 201840a | 2019-05-29 17:50:48 +0200 | [diff] [blame] | 445 | offer_buffers(NULL, tasks_run_queue); |
Willy Tarreau | 2e3c000 | 2019-05-26 09:45:23 +0200 | [diff] [blame] | 446 | } |
| 447 | |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 448 | /* returns the number of allocatable outgoing streams for the connection taking |
| 449 | * the last_sid and the reserved ones into account. |
| 450 | */ |
| 451 | static inline int h2_streams_left(const struct h2c *h2c) |
| 452 | { |
| 453 | int ret; |
| 454 | |
| 455 | /* consider the number of outgoing streams we're allowed to create before |
| 456 | * reaching the last GOAWAY frame seen. max_id is the last assigned id, |
| 457 | * nb_reserved is the number of streams which don't yet have an ID. |
| 458 | */ |
| 459 | ret = (h2c->last_sid >= 0) ? h2c->last_sid : 0x7FFFFFFF; |
| 460 | ret = (unsigned int)(ret - h2c->max_id) / 2 - h2c->nb_reserved - 1; |
| 461 | if (ret < 0) |
| 462 | ret = 0; |
| 463 | return ret; |
| 464 | } |
| 465 | |
Willy Tarreau | 00f18a3 | 2019-01-26 12:19:01 +0100 | [diff] [blame] | 466 | /* returns the number of streams in use on a connection to figure if it's |
| 467 | * idle or not. We check nb_cs and not nb_streams as the caller will want |
| 468 | * to know if it was the last one after a detach(). |
| 469 | */ |
| 470 | static int h2_used_streams(struct connection *conn) |
| 471 | { |
| 472 | struct h2c *h2c = conn->ctx; |
| 473 | |
| 474 | return h2c->nb_cs; |
| 475 | } |
| 476 | |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 477 | /* returns the number of concurrent streams available on the connection */ |
Olivier Houchard | d540b36 | 2018-11-05 18:37:53 +0100 | [diff] [blame] | 478 | static int h2_avail_streams(struct connection *conn) |
| 479 | { |
Willy Tarreau | e9634bd | 2019-01-23 10:25:10 +0100 | [diff] [blame] | 480 | struct server *srv = objt_server(conn->target); |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 481 | struct h2c *h2c = conn->ctx; |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 482 | int ret1, ret2; |
Olivier Houchard | d540b36 | 2018-11-05 18:37:53 +0100 | [diff] [blame] | 483 | |
Willy Tarreau | 6afec46 | 2019-01-28 06:40:19 +0100 | [diff] [blame] | 484 | /* RFC7540#6.8: Receivers of a GOAWAY frame MUST NOT open additional |
| 485 | * streams on the connection. |
| 486 | */ |
| 487 | if (h2c->last_sid >= 0) |
| 488 | return 0; |
| 489 | |
Willy Tarreau | 8694978 | 2019-01-31 10:42:05 +0100 | [diff] [blame] | 490 | /* note: may be negative if a SETTINGS frame changes the limit */ |
| 491 | ret1 = h2c->streams_limit - h2c->nb_streams; |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 492 | |
| 493 | /* we must also consider the limit imposed by stream IDs */ |
| 494 | ret2 = h2_streams_left(h2c); |
Willy Tarreau | e9634bd | 2019-01-23 10:25:10 +0100 | [diff] [blame] | 495 | ret1 = MIN(ret1, ret2); |
Willy Tarreau | 8694978 | 2019-01-31 10:42:05 +0100 | [diff] [blame] | 496 | if (ret1 > 0 && srv && srv->max_reuse >= 0) { |
Willy Tarreau | e9634bd | 2019-01-23 10:25:10 +0100 | [diff] [blame] | 497 | ret2 = h2c->stream_cnt <= srv->max_reuse ? srv->max_reuse - h2c->stream_cnt + 1: 0; |
| 498 | ret1 = MIN(ret1, ret2); |
| 499 | } |
| 500 | return ret1; |
Olivier Houchard | d540b36 | 2018-11-05 18:37:53 +0100 | [diff] [blame] | 501 | } |
| 502 | |
Willy Tarreau | 35dbd5d | 2017-09-22 09:13:49 +0200 | [diff] [blame] | 503 | |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 504 | /*****************************************************************/ |
| 505 | /* functions below are dedicated to the mux setup and management */ |
| 506 | /*****************************************************************/ |
| 507 | |
Willy Tarreau | 7dc24e4 | 2018-10-03 13:52:41 +0200 | [diff] [blame] | 508 | /* Initialize the mux once it's attached. For outgoing connections, the context |
| 509 | * is already initialized before installing the mux, so we detect incoming |
Christopher Faulet | 51f73eb | 2019-04-08 11:22:47 +0200 | [diff] [blame] | 510 | * connections from the fact that the context is still NULL (even during mux |
| 511 | * upgrades). <input> is always used as Input buffer and may contain data. It is |
| 512 | * the caller responsibility to not reuse it anymore. Returns < 0 on error. |
Willy Tarreau | 7dc24e4 | 2018-10-03 13:52:41 +0200 | [diff] [blame] | 513 | */ |
Christopher Faulet | 51f73eb | 2019-04-08 11:22:47 +0200 | [diff] [blame] | 514 | static int h2_init(struct connection *conn, struct proxy *prx, struct session *sess, |
| 515 | struct buffer *input) |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 516 | { |
| 517 | struct h2c *h2c; |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 518 | struct task *t = NULL; |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 519 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 520 | h2c = pool_alloc(pool_head_h2c); |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 521 | if (!h2c) |
mildis | cd2d7de | 2018-10-02 16:44:18 +0200 | [diff] [blame] | 522 | goto fail_no_h2c; |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 523 | |
Christopher Faulet | e9b7072 | 2019-04-08 10:46:02 +0200 | [diff] [blame] | 524 | if (conn_is_back(conn)) { |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 525 | h2c->flags = H2_CF_IS_BACK; |
| 526 | h2c->shut_timeout = h2c->timeout = prx->timeout.server; |
| 527 | if (tick_isset(prx->timeout.serverfin)) |
| 528 | h2c->shut_timeout = prx->timeout.serverfin; |
| 529 | } else { |
| 530 | h2c->flags = H2_CF_NONE; |
| 531 | h2c->shut_timeout = h2c->timeout = prx->timeout.client; |
| 532 | if (tick_isset(prx->timeout.clientfin)) |
| 533 | h2c->shut_timeout = prx->timeout.clientfin; |
| 534 | } |
Willy Tarreau | 3f13357 | 2017-10-31 19:21:06 +0100 | [diff] [blame] | 535 | |
Willy Tarreau | 0b37d65 | 2018-10-03 10:33:02 +0200 | [diff] [blame] | 536 | h2c->proxy = prx; |
Willy Tarreau | 3340029 | 2017-11-05 11:23:40 +0100 | [diff] [blame] | 537 | h2c->task = NULL; |
Willy Tarreau | 3f13357 | 2017-10-31 19:21:06 +0100 | [diff] [blame] | 538 | if (tick_isset(h2c->timeout)) { |
| 539 | t = task_new(tid_bit); |
| 540 | if (!t) |
| 541 | goto fail; |
| 542 | |
| 543 | h2c->task = t; |
| 544 | t->process = h2_timeout_task; |
| 545 | t->context = h2c; |
| 546 | t->expire = tick_add(now_ms, h2c->timeout); |
| 547 | } |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 548 | |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 549 | h2c->wait_event.task = tasklet_new(); |
| 550 | if (!h2c->wait_event.task) |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 551 | goto fail; |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 552 | h2c->wait_event.task->process = h2_io_cb; |
| 553 | h2c->wait_event.task->context = h2c; |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 554 | h2c->wait_event.events = 0; |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 555 | |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 556 | h2c->ddht = hpack_dht_alloc(h2_settings_header_table_size); |
| 557 | if (!h2c->ddht) |
| 558 | goto fail; |
| 559 | |
| 560 | /* Initialise the context. */ |
| 561 | h2c->st0 = H2_CS_PREFACE; |
| 562 | h2c->conn = conn; |
Willy Tarreau | 2e2083a | 2019-01-31 10:34:07 +0100 | [diff] [blame] | 563 | h2c->streams_limit = h2_settings_max_concurrent_streams; |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 564 | h2c->max_id = -1; |
| 565 | h2c->errcode = H2_ERR_NO_ERROR; |
Willy Tarreau | 97aaa67 | 2018-12-23 09:49:04 +0100 | [diff] [blame] | 566 | h2c->rcvd_c = 0; |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 567 | h2c->rcvd_s = 0; |
Willy Tarreau | 4974561 | 2017-12-03 18:56:02 +0100 | [diff] [blame] | 568 | h2c->nb_streams = 0; |
Willy Tarreau | 7ac60e8 | 2018-07-19 09:04:05 +0200 | [diff] [blame] | 569 | h2c->nb_cs = 0; |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 570 | h2c->nb_reserved = 0; |
Willy Tarreau | e9634bd | 2019-01-23 10:25:10 +0100 | [diff] [blame] | 571 | h2c->stream_cnt = 0; |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 572 | |
Christopher Faulet | 51f73eb | 2019-04-08 11:22:47 +0200 | [diff] [blame] | 573 | h2c->dbuf = *input; |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 574 | h2c->dsi = -1; |
| 575 | h2c->msi = -1; |
Willy Tarreau | e9634bd | 2019-01-23 10:25:10 +0100 | [diff] [blame] | 576 | |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 577 | h2c->last_sid = -1; |
| 578 | |
Willy Tarreau | 5133096 | 2019-05-26 09:38:07 +0200 | [diff] [blame] | 579 | br_init(h2c->mbuf, sizeof(h2c->mbuf) / sizeof(h2c->mbuf[0])); |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 580 | h2c->miw = 65535; /* mux initial window size */ |
| 581 | h2c->mws = 65535; /* mux window size */ |
| 582 | h2c->mfs = 16384; /* initial max frame size */ |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 583 | h2c->streams_by_id = EB_ROOT; |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 584 | LIST_INIT(&h2c->send_list); |
| 585 | LIST_INIT(&h2c->fctl_list); |
Olivier Houchard | d846c26 | 2018-10-19 17:24:29 +0200 | [diff] [blame] | 586 | LIST_INIT(&h2c->sending_list); |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 587 | LIST_INIT(&h2c->buf_wait.list); |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 588 | |
Willy Tarreau | 3f13357 | 2017-10-31 19:21:06 +0100 | [diff] [blame] | 589 | if (t) |
| 590 | task_queue(t); |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 591 | |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 592 | if (h2c->flags & H2_CF_IS_BACK) { |
| 593 | /* FIXME: this is temporary, for outgoing connections we need |
| 594 | * to immediately allocate a stream until the code is modified |
| 595 | * so that the caller calls ->attach(). For now the outgoing cs |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 596 | * is stored as conn->ctx by the caller. |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 597 | */ |
| 598 | struct h2s *h2s; |
| 599 | |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 600 | h2s = h2c_bck_stream_new(h2c, conn->ctx, sess); |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 601 | if (!h2s) |
| 602 | goto fail_stream; |
| 603 | } |
| 604 | |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 605 | conn->ctx = h2c; |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 606 | |
Willy Tarreau | 0f38358 | 2018-10-03 14:22:21 +0200 | [diff] [blame] | 607 | /* prepare to read something */ |
Olivier Houchard | 3ca18bf | 2019-04-05 15:34:34 +0200 | [diff] [blame] | 608 | h2c_restart_reading(h2c, 1); |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 609 | return 0; |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 610 | fail_stream: |
| 611 | hpack_dht_free(h2c->ddht); |
mildis | cd2d7de | 2018-10-02 16:44:18 +0200 | [diff] [blame] | 612 | fail: |
Willy Tarreau | f656279 | 2019-05-07 19:05:35 +0200 | [diff] [blame] | 613 | task_destroy(t); |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 614 | if (h2c->wait_event.task) |
| 615 | tasklet_free(h2c->wait_event.task); |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 616 | pool_free(pool_head_h2c, h2c); |
mildis | cd2d7de | 2018-10-02 16:44:18 +0200 | [diff] [blame] | 617 | fail_no_h2c: |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 618 | return -1; |
| 619 | } |
| 620 | |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 621 | /* returns the next allocatable outgoing stream ID for the H2 connection, or |
| 622 | * -1 if no more is allocatable. |
| 623 | */ |
| 624 | static inline int32_t h2c_get_next_sid(const struct h2c *h2c) |
| 625 | { |
| 626 | int32_t id = (h2c->max_id + 1) | 1; |
Willy Tarreau | a80dca8 | 2019-01-24 17:08:28 +0100 | [diff] [blame] | 627 | |
| 628 | if ((id & 0x80000000U) || (h2c->last_sid >= 0 && id > h2c->last_sid)) |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 629 | id = -1; |
| 630 | return id; |
| 631 | } |
| 632 | |
Willy Tarreau | 2373acc | 2017-10-12 17:35:14 +0200 | [diff] [blame] | 633 | /* returns the stream associated with id <id> or NULL if not found */ |
| 634 | static inline struct h2s *h2c_st_by_id(struct h2c *h2c, int id) |
| 635 | { |
| 636 | struct eb32_node *node; |
| 637 | |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 638 | if (id == 0) |
| 639 | return (struct h2s *)h2_closed_stream; |
| 640 | |
Willy Tarreau | 2a85618 | 2017-05-16 15:20:39 +0200 | [diff] [blame] | 641 | if (id > h2c->max_id) |
| 642 | return (struct h2s *)h2_idle_stream; |
| 643 | |
Willy Tarreau | 2373acc | 2017-10-12 17:35:14 +0200 | [diff] [blame] | 644 | node = eb32_lookup(&h2c->streams_by_id, id); |
| 645 | if (!node) |
Willy Tarreau | 2a85618 | 2017-05-16 15:20:39 +0200 | [diff] [blame] | 646 | return (struct h2s *)h2_closed_stream; |
Willy Tarreau | 2373acc | 2017-10-12 17:35:14 +0200 | [diff] [blame] | 647 | |
| 648 | return container_of(node, struct h2s, by_id); |
| 649 | } |
| 650 | |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 651 | /* release function. This one should be called to free all resources allocated |
| 652 | * to the mux. |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 653 | */ |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 654 | static void h2_release(struct h2c *h2c) |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 655 | { |
Christopher Faulet | 61840e7 | 2019-04-15 09:33:32 +0200 | [diff] [blame] | 656 | struct connection *conn = NULL;; |
Christopher Faulet | 39a96ee | 2019-04-08 10:52:21 +0200 | [diff] [blame] | 657 | |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 658 | if (h2c) { |
Christopher Faulet | 61840e7 | 2019-04-15 09:33:32 +0200 | [diff] [blame] | 659 | /* The connection must be aattached to this mux to be released */ |
| 660 | if (h2c->conn && h2c->conn->ctx == h2c) |
| 661 | conn = h2c->conn; |
| 662 | |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 663 | hpack_dht_free(h2c->ddht); |
Willy Tarreau | 1439812 | 2017-09-22 14:26:04 +0200 | [diff] [blame] | 664 | |
Willy Tarreau | 186e96e | 2019-05-28 17:21:18 +0200 | [diff] [blame] | 665 | if (LIST_ADDED(&h2c->buf_wait.list)) { |
| 666 | HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
| 667 | LIST_DEL(&h2c->buf_wait.list); |
| 668 | HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
| 669 | } |
Willy Tarreau | 1439812 | 2017-09-22 14:26:04 +0200 | [diff] [blame] | 670 | |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 671 | h2_release_buf(h2c, &h2c->dbuf); |
Willy Tarreau | 2e3c000 | 2019-05-26 09:45:23 +0200 | [diff] [blame] | 672 | h2_release_mbuf(h2c); |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 673 | |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 674 | if (h2c->task) { |
Willy Tarreau | 0975f11 | 2018-03-29 15:22:59 +0200 | [diff] [blame] | 675 | h2c->task->context = NULL; |
| 676 | task_wakeup(h2c->task, TASK_WOKEN_OTHER); |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 677 | h2c->task = NULL; |
| 678 | } |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 679 | if (h2c->wait_event.task) |
| 680 | tasklet_free(h2c->wait_event.task); |
Olivier Houchard | 0e07937 | 2019-04-15 17:51:16 +0200 | [diff] [blame] | 681 | if (h2c->wait_event.events != 0) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 682 | conn->xprt->unsubscribe(conn, conn->xprt_ctx, h2c->wait_event.events, |
Olivier Houchard | 0e07937 | 2019-04-15 17:51:16 +0200 | [diff] [blame] | 683 | &h2c->wait_event); |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 684 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 685 | pool_free(pool_head_h2c, h2c); |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 686 | } |
| 687 | |
Christopher Faulet | 39a96ee | 2019-04-08 10:52:21 +0200 | [diff] [blame] | 688 | if (conn) { |
| 689 | conn->mux = NULL; |
| 690 | conn->ctx = NULL; |
Willy Tarreau | 32218eb | 2017-09-22 08:07:25 +0200 | [diff] [blame] | 691 | |
Christopher Faulet | 39a96ee | 2019-04-08 10:52:21 +0200 | [diff] [blame] | 692 | conn_stop_tracking(conn); |
| 693 | conn_full_close(conn); |
| 694 | if (conn->destroy_cb) |
| 695 | conn->destroy_cb(conn); |
| 696 | conn_free(conn); |
| 697 | } |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 698 | } |
| 699 | |
| 700 | |
Willy Tarreau | 7168117 | 2017-10-23 14:39:06 +0200 | [diff] [blame] | 701 | /******************************************************/ |
| 702 | /* functions below are for the H2 protocol processing */ |
| 703 | /******************************************************/ |
| 704 | |
| 705 | /* 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] | 706 | static inline __maybe_unused int h2s_id(const struct h2s *h2s) |
Willy Tarreau | 7168117 | 2017-10-23 14:39:06 +0200 | [diff] [blame] | 707 | { |
| 708 | return h2s ? h2s->id : 0; |
| 709 | } |
| 710 | |
Willy Tarreau | 5b5e687 | 2017-09-25 16:17:25 +0200 | [diff] [blame] | 711 | /* 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] | 712 | 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] | 713 | { |
| 714 | if (h2c->msi < 0) |
| 715 | return 0; |
| 716 | |
| 717 | if (h2c->msi == h2s_id(h2s)) |
| 718 | return 0; |
| 719 | |
| 720 | return 1; |
| 721 | } |
| 722 | |
Willy Tarreau | 741d6df | 2017-10-17 08:00:59 +0200 | [diff] [blame] | 723 | /* marks an error on the connection */ |
Willy Tarreau | 1f09467 | 2017-11-20 21:27:45 +0100 | [diff] [blame] | 724 | 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] | 725 | { |
| 726 | h2c->errcode = err; |
| 727 | h2c->st0 = H2_CS_ERROR; |
| 728 | } |
| 729 | |
Willy Tarreau | 175cebb | 2019-01-24 10:02:24 +0100 | [diff] [blame] | 730 | /* marks an error on the stream. It may also update an already closed stream |
| 731 | * (e.g. to report an error after an RST was received). |
| 732 | */ |
Willy Tarreau | 1f09467 | 2017-11-20 21:27:45 +0100 | [diff] [blame] | 733 | 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] | 734 | { |
Willy Tarreau | 175cebb | 2019-01-24 10:02:24 +0100 | [diff] [blame] | 735 | if (h2s->id && h2s->st != H2_SS_ERROR) { |
Willy Tarreau | 2e43f08 | 2017-10-17 08:03:59 +0200 | [diff] [blame] | 736 | h2s->errcode = err; |
Willy Tarreau | 175cebb | 2019-01-24 10:02:24 +0100 | [diff] [blame] | 737 | if (h2s->st < H2_SS_ERROR) |
| 738 | h2s->st = H2_SS_ERROR; |
Willy Tarreau | ec988c7 | 2018-12-19 18:00:29 +0100 | [diff] [blame] | 739 | if (h2s->cs) |
| 740 | cs_set_error(h2s->cs); |
Willy Tarreau | 2e43f08 | 2017-10-17 08:03:59 +0200 | [diff] [blame] | 741 | } |
| 742 | } |
| 743 | |
Willy Tarreau | 7e09445 | 2018-12-19 18:08:52 +0100 | [diff] [blame] | 744 | /* attempt to notify the data layer of recv availability */ |
| 745 | static void __maybe_unused h2s_notify_recv(struct h2s *h2s) |
| 746 | { |
| 747 | struct wait_event *sw; |
| 748 | |
| 749 | if (h2s->recv_wait) { |
| 750 | sw = h2s->recv_wait; |
| 751 | sw->events &= ~SUB_RETRY_RECV; |
| 752 | tasklet_wakeup(sw->task); |
| 753 | h2s->recv_wait = NULL; |
| 754 | } |
| 755 | } |
| 756 | |
| 757 | /* attempt to notify the data layer of send availability */ |
| 758 | static void __maybe_unused h2s_notify_send(struct h2s *h2s) |
| 759 | { |
| 760 | struct wait_event *sw; |
| 761 | |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 762 | if (h2s->send_wait && !LIST_ADDED(&h2s->sending_list)) { |
Willy Tarreau | 7e09445 | 2018-12-19 18:08:52 +0100 | [diff] [blame] | 763 | sw = h2s->send_wait; |
| 764 | sw->events &= ~SUB_RETRY_SEND; |
Olivier Houchard | fd1e96d | 2019-03-25 14:04:25 +0100 | [diff] [blame] | 765 | LIST_ADDQ(&h2s->h2c->sending_list, &h2s->sending_list); |
Willy Tarreau | 7e09445 | 2018-12-19 18:08:52 +0100 | [diff] [blame] | 766 | tasklet_wakeup(sw->task); |
Willy Tarreau | 7e09445 | 2018-12-19 18:08:52 +0100 | [diff] [blame] | 767 | } |
| 768 | } |
| 769 | |
Willy Tarreau | 8b2757c | 2018-12-19 17:36:48 +0100 | [diff] [blame] | 770 | /* alerts the data layer, trying to wake it up by all means, following |
| 771 | * this sequence : |
| 772 | * - if the h2s' data layer is subscribed to recv, then it's woken up for recv |
| 773 | * - if its subscribed to send, then it's woken up for send |
| 774 | * - if it was subscribed to neither, its ->wake() callback is called |
| 775 | * It is safe to call this function with a closed stream which doesn't have a |
| 776 | * conn_stream anymore. |
| 777 | */ |
| 778 | static void __maybe_unused h2s_alert(struct h2s *h2s) |
| 779 | { |
| 780 | if (h2s->recv_wait || h2s->send_wait) { |
| 781 | h2s_notify_recv(h2s); |
| 782 | h2s_notify_send(h2s); |
| 783 | } |
| 784 | else if (h2s->cs && h2s->cs->data_cb->wake != NULL) |
| 785 | h2s->cs->data_cb->wake(h2s->cs); |
| 786 | } |
| 787 | |
Willy Tarreau | e482074 | 2017-07-27 13:37:23 +0200 | [diff] [blame] | 788 | /* writes the 24-bit frame size <len> at address <frame> */ |
Willy Tarreau | 1f09467 | 2017-11-20 21:27:45 +0100 | [diff] [blame] | 789 | 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] | 790 | { |
| 791 | uint8_t *out = frame; |
| 792 | |
| 793 | *out = len >> 16; |
| 794 | write_n16(out + 1, len); |
| 795 | } |
| 796 | |
Willy Tarreau | 54c1506 | 2017-10-10 17:10:03 +0200 | [diff] [blame] | 797 | /* reads <bytes> bytes from buffer <b> starting at relative offset <o> from the |
| 798 | * current pointer, dealing with wrapping, and stores the result in <dst>. It's |
| 799 | * 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] | 800 | * available in the buffer's input prior to calling this function. The buffer |
| 801 | * is assumed not to hold any output data. |
Willy Tarreau | 54c1506 | 2017-10-10 17:10:03 +0200 | [diff] [blame] | 802 | */ |
Willy Tarreau | 1f09467 | 2017-11-20 21:27:45 +0100 | [diff] [blame] | 803 | 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] | 804 | const struct buffer *b, int o) |
| 805 | { |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 806 | 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] | 807 | } |
| 808 | |
Willy Tarreau | 1f09467 | 2017-11-20 21:27:45 +0100 | [diff] [blame] | 809 | 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] | 810 | { |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 811 | 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] | 812 | } |
| 813 | |
Willy Tarreau | 1f09467 | 2017-11-20 21:27:45 +0100 | [diff] [blame] | 814 | 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] | 815 | { |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 816 | 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] | 817 | } |
| 818 | |
Willy Tarreau | 1f09467 | 2017-11-20 21:27:45 +0100 | [diff] [blame] | 819 | 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] | 820 | { |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 821 | 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] | 822 | } |
| 823 | |
| 824 | |
Willy Tarreau | a4428bd | 2018-12-22 18:11:41 +0100 | [diff] [blame] | 825 | /* Peeks an H2 frame header from offset <o> of buffer <b> into descriptor <h>. |
| 826 | * The algorithm is not obvious. It turns out that H2 headers are neither |
| 827 | * aligned nor do they use regular sizes. And to add to the trouble, the buffer |
| 828 | * 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] | 829 | * |
| 830 | * b0 b1 b2 b3 b4 b5..b8 |
| 831 | * +----------+---------+--------+----+----+----------------------+ |
| 832 | * |len[23:16]|len[15:8]|len[7:0]|type|flag|sid[31:0] (big endian)| |
| 833 | * +----------+---------+--------+----+----+----------------------+ |
| 834 | * |
| 835 | * Here we read a big-endian 64 bit word from h[1]. This way in a single read |
| 836 | * we get the sid properly aligned and ordered, and 16 bits of len properly |
| 837 | * ordered as well. The type and flags can be extracted using bit shifts from |
| 838 | * 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] | 839 | * Returns zero if some bytes are missing, otherwise non-zero on success. The |
| 840 | * buffer is assumed not to contain any output data. |
Willy Tarreau | 715d531 | 2017-07-11 15:20:24 +0200 | [diff] [blame] | 841 | */ |
Willy Tarreau | a4428bd | 2018-12-22 18:11:41 +0100 | [diff] [blame] | 842 | 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] | 843 | { |
| 844 | uint64_t w; |
| 845 | |
Willy Tarreau | a4428bd | 2018-12-22 18:11:41 +0100 | [diff] [blame] | 846 | if (b_data(b) < o + 9) |
Willy Tarreau | 715d531 | 2017-07-11 15:20:24 +0200 | [diff] [blame] | 847 | return 0; |
| 848 | |
Willy Tarreau | a4428bd | 2018-12-22 18:11:41 +0100 | [diff] [blame] | 849 | w = h2_get_n64(b, o + 1); |
| 850 | h->len = *(uint8_t*)b_peek(b, o) << 16; |
Willy Tarreau | 715d531 | 2017-07-11 15:20:24 +0200 | [diff] [blame] | 851 | h->sid = w & 0x7FFFFFFF; /* RFC7540#4.1: R bit must be ignored */ |
| 852 | h->ff = w >> 32; |
| 853 | h->ft = w >> 40; |
| 854 | h->len += w >> 48; |
| 855 | return 1; |
| 856 | } |
| 857 | |
| 858 | /* skip the next 9 bytes corresponding to the frame header possibly parsed by |
| 859 | * h2_peek_frame_hdr() above. |
| 860 | */ |
Willy Tarreau | 1f09467 | 2017-11-20 21:27:45 +0100 | [diff] [blame] | 861 | static inline __maybe_unused void h2_skip_frame_hdr(struct buffer *b) |
Willy Tarreau | 715d531 | 2017-07-11 15:20:24 +0200 | [diff] [blame] | 862 | { |
Willy Tarreau | e5f12ce | 2018-06-15 10:28:05 +0200 | [diff] [blame] | 863 | b_del(b, 9); |
Willy Tarreau | 715d531 | 2017-07-11 15:20:24 +0200 | [diff] [blame] | 864 | } |
| 865 | |
| 866 | /* same as above, automatically advances the buffer on success */ |
Willy Tarreau | 1f09467 | 2017-11-20 21:27:45 +0100 | [diff] [blame] | 867 | 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] | 868 | { |
| 869 | int ret; |
| 870 | |
Willy Tarreau | a4428bd | 2018-12-22 18:11:41 +0100 | [diff] [blame] | 871 | ret = h2_peek_frame_hdr(b, 0, h); |
Willy Tarreau | 715d531 | 2017-07-11 15:20:24 +0200 | [diff] [blame] | 872 | if (ret > 0) |
| 873 | h2_skip_frame_hdr(b); |
| 874 | return ret; |
| 875 | } |
| 876 | |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 877 | /* marks stream <h2s> as CLOSED and decrement the number of active streams for |
| 878 | * its connection if the stream was not yet closed. Please use this exclusively |
| 879 | * before closing a stream to ensure stream count is well maintained. |
Willy Tarreau | 91bfdd7 | 2017-12-14 12:00:14 +0100 | [diff] [blame] | 880 | */ |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 881 | static inline void h2s_close(struct h2s *h2s) |
Willy Tarreau | 91bfdd7 | 2017-12-14 12:00:14 +0100 | [diff] [blame] | 882 | { |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 883 | if (h2s->st != H2_SS_CLOSED) { |
Willy Tarreau | 91bfdd7 | 2017-12-14 12:00:14 +0100 | [diff] [blame] | 884 | h2s->h2c->nb_streams--; |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 885 | if (!h2s->id) |
| 886 | h2s->h2c->nb_reserved--; |
Willy Tarreau | a27db38 | 2019-03-25 18:13:16 +0100 | [diff] [blame] | 887 | if (h2s->cs) { |
Willy Tarreau | a27db38 | 2019-03-25 18:13:16 +0100 | [diff] [blame] | 888 | if (!(h2s->cs->flags & CS_FL_EOS) && !b_data(&h2s->rxbuf)) |
| 889 | h2s_notify_recv(h2s); |
| 890 | } |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 891 | } |
Willy Tarreau | 91bfdd7 | 2017-12-14 12:00:14 +0100 | [diff] [blame] | 892 | h2s->st = H2_SS_CLOSED; |
| 893 | } |
| 894 | |
Willy Tarreau | 71049cc | 2018-03-28 13:56:39 +0200 | [diff] [blame] | 895 | /* detaches an H2 stream from its H2C and releases it to the H2S pool. */ |
| 896 | static void h2s_destroy(struct h2s *h2s) |
Willy Tarreau | 0a10de6 | 2018-03-01 16:27:53 +0100 | [diff] [blame] | 897 | { |
| 898 | h2s_close(h2s); |
| 899 | eb32_delete(&h2s->by_id); |
Olivier Houchard | 638b799 | 2018-08-16 15:41:52 +0200 | [diff] [blame] | 900 | if (b_size(&h2s->rxbuf)) { |
| 901 | b_free(&h2s->rxbuf); |
| 902 | offer_buffers(NULL, tasks_run_queue); |
| 903 | } |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 904 | if (h2s->send_wait != NULL) |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 905 | h2s->send_wait->events &= ~SUB_RETRY_SEND; |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 906 | if (h2s->recv_wait != NULL) |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 907 | h2s->recv_wait->events &= ~SUB_RETRY_RECV; |
Joseph Herlant | d77575d | 2018-11-25 10:54:45 -0800 | [diff] [blame] | 908 | /* There's no need to explicitly call unsubscribe here, the only |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 909 | * reference left would be in the h2c send_list/fctl_list, and if |
| 910 | * we're in it, we're getting out anyway |
| 911 | */ |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 912 | LIST_DEL_INIT(&h2s->list); |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 913 | if (LIST_ADDED(&h2s->sending_list)) { |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 914 | task_remove_from_tasklet_list((struct task *)h2s->send_wait->task); |
| 915 | LIST_DEL_INIT(&h2s->sending_list); |
| 916 | } |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 917 | tasklet_free(h2s->wait_event.task); |
Willy Tarreau | 0a10de6 | 2018-03-01 16:27:53 +0100 | [diff] [blame] | 918 | pool_free(pool_head_h2s, h2s); |
| 919 | } |
| 920 | |
Willy Tarreau | a8e4954 | 2018-10-03 18:53:55 +0200 | [diff] [blame] | 921 | /* allocates a new stream <id> for connection <h2c> and adds it into h2c's |
| 922 | * stream tree. In case of error, nothing is added and NULL is returned. The |
| 923 | * causes of errors can be any failed memory allocation. The caller is |
| 924 | * responsible for checking if the connection may support an extra stream |
| 925 | * prior to calling this function. |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 926 | */ |
Willy Tarreau | a8e4954 | 2018-10-03 18:53:55 +0200 | [diff] [blame] | 927 | static struct h2s *h2s_new(struct h2c *h2c, int id) |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 928 | { |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 929 | struct h2s *h2s; |
| 930 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 931 | h2s = pool_alloc(pool_head_h2s); |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 932 | if (!h2s) |
| 933 | goto out; |
| 934 | |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 935 | h2s->wait_event.task = tasklet_new(); |
| 936 | if (!h2s->wait_event.task) { |
| 937 | pool_free(pool_head_h2s, h2s); |
| 938 | goto out; |
| 939 | } |
| 940 | h2s->send_wait = NULL; |
| 941 | h2s->recv_wait = NULL; |
| 942 | h2s->wait_event.task->process = h2_deferred_shut; |
| 943 | h2s->wait_event.task->context = h2s; |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 944 | h2s->wait_event.events = 0; |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 945 | LIST_INIT(&h2s->list); |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 946 | LIST_INIT(&h2s->sending_list); |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 947 | h2s->h2c = h2c; |
Willy Tarreau | a8e4954 | 2018-10-03 18:53:55 +0200 | [diff] [blame] | 948 | h2s->cs = NULL; |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 949 | h2s->mws = h2c->miw; |
| 950 | h2s->flags = H2_SF_NONE; |
| 951 | h2s->errcode = H2_ERR_NO_ERROR; |
| 952 | h2s->st = H2_SS_IDLE; |
Willy Tarreau | 9c5e22e | 2018-09-11 19:22:14 +0200 | [diff] [blame] | 953 | h2s->status = 0; |
Willy Tarreau | 1915ca2 | 2019-01-24 11:49:37 +0100 | [diff] [blame] | 954 | h2s->body_len = 0; |
Olivier Houchard | 638b799 | 2018-08-16 15:41:52 +0200 | [diff] [blame] | 955 | h2s->rxbuf = BUF_NULL; |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 956 | |
| 957 | if (h2c->flags & H2_CF_IS_BACK) { |
| 958 | h1m_init_req(&h2s->h1m); |
| 959 | h2s->h1m.err_pos = -1; // don't care about errors on the request path |
| 960 | h2s->h1m.flags |= H1_MF_TOLOWER; |
| 961 | } else { |
| 962 | h1m_init_res(&h2s->h1m); |
| 963 | h2s->h1m.err_pos = -1; // don't care about errors on the response path |
| 964 | h2s->h1m.flags |= H1_MF_TOLOWER; |
| 965 | } |
| 966 | |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 967 | h2s->by_id.key = h2s->id = id; |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 968 | if (id > 0) |
| 969 | h2c->max_id = id; |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 970 | else |
| 971 | h2c->nb_reserved++; |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 972 | |
| 973 | eb32_insert(&h2c->streams_by_id, &h2s->by_id); |
Willy Tarreau | 4974561 | 2017-12-03 18:56:02 +0100 | [diff] [blame] | 974 | h2c->nb_streams++; |
Willy Tarreau | e9634bd | 2019-01-23 10:25:10 +0100 | [diff] [blame] | 975 | h2c->stream_cnt++; |
Willy Tarreau | a8e4954 | 2018-10-03 18:53:55 +0200 | [diff] [blame] | 976 | |
| 977 | return h2s; |
| 978 | |
| 979 | out_free_h2s: |
| 980 | pool_free(pool_head_h2s, h2s); |
| 981 | out: |
| 982 | return NULL; |
| 983 | } |
| 984 | |
| 985 | /* creates a new stream <id> on the h2c connection and returns it, or NULL in |
| 986 | * case of memory allocation error. |
| 987 | */ |
| 988 | static struct h2s *h2c_frt_stream_new(struct h2c *h2c, int id) |
| 989 | { |
| 990 | struct session *sess = h2c->conn->owner; |
| 991 | struct conn_stream *cs; |
| 992 | struct h2s *h2s; |
| 993 | |
| 994 | if (h2c->nb_streams >= h2_settings_max_concurrent_streams) |
| 995 | goto out; |
| 996 | |
| 997 | h2s = h2s_new(h2c, id); |
| 998 | if (!h2s) |
| 999 | goto out; |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 1000 | |
| 1001 | cs = cs_new(h2c->conn); |
| 1002 | if (!cs) |
| 1003 | goto out_close; |
| 1004 | |
Olivier Houchard | 746fb77 | 2018-12-15 19:42:00 +0100 | [diff] [blame] | 1005 | cs->flags |= CS_FL_NOT_FIRST; |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 1006 | h2s->cs = cs; |
| 1007 | cs->ctx = h2s; |
Willy Tarreau | 7ac60e8 | 2018-07-19 09:04:05 +0200 | [diff] [blame] | 1008 | h2c->nb_cs++; |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 1009 | |
| 1010 | if (stream_create_from_cs(cs) < 0) |
| 1011 | goto out_free_cs; |
| 1012 | |
Willy Tarreau | 590a051 | 2018-09-05 11:56:48 +0200 | [diff] [blame] | 1013 | /* We want the accept date presented to the next stream to be the one |
| 1014 | * we have now, the handshake time to be null (since the next stream |
| 1015 | * is not delayed by a handshake), and the idle time to count since |
| 1016 | * right now. |
| 1017 | */ |
| 1018 | sess->accept_date = date; |
| 1019 | sess->tv_accept = now; |
| 1020 | sess->t_handshake = 0; |
| 1021 | |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 1022 | /* OK done, the stream lives its own life now */ |
Willy Tarreau | fa1d357 | 2019-01-31 10:31:51 +0100 | [diff] [blame] | 1023 | if (h2_frt_has_too_many_cs(h2c)) |
Willy Tarreau | f210191 | 2018-07-19 10:11:38 +0200 | [diff] [blame] | 1024 | h2c->flags |= H2_CF_DEM_TOOMANY; |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 1025 | return h2s; |
| 1026 | |
| 1027 | out_free_cs: |
Willy Tarreau | 7ac60e8 | 2018-07-19 09:04:05 +0200 | [diff] [blame] | 1028 | h2c->nb_cs--; |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 1029 | cs_free(cs); |
Olivier Houchard | 58d87f3 | 2019-05-29 16:44:17 +0200 | [diff] [blame] | 1030 | h2s->cs = NULL; |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 1031 | out_close: |
Willy Tarreau | 71049cc | 2018-03-28 13:56:39 +0200 | [diff] [blame] | 1032 | h2s_destroy(h2s); |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 1033 | out: |
Willy Tarreau | 45efc07 | 2018-10-03 18:27:52 +0200 | [diff] [blame] | 1034 | sess_log(sess); |
| 1035 | return NULL; |
Willy Tarreau | 3ccf4b2 | 2017-10-13 19:07:26 +0200 | [diff] [blame] | 1036 | } |
| 1037 | |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 1038 | /* allocates a new stream associated to conn_stream <cs> on the h2c connection |
| 1039 | * and returns it, or NULL in case of memory allocation error or if the highest |
| 1040 | * possible stream ID was reached. |
| 1041 | */ |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 1042 | 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] | 1043 | { |
| 1044 | struct h2s *h2s = NULL; |
| 1045 | |
Willy Tarreau | 8694978 | 2019-01-31 10:42:05 +0100 | [diff] [blame] | 1046 | if (h2c->nb_streams >= h2c->streams_limit) |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 1047 | goto out; |
| 1048 | |
Willy Tarreau | a80dca8 | 2019-01-24 17:08:28 +0100 | [diff] [blame] | 1049 | if (h2_streams_left(h2c) < 1) |
| 1050 | goto out; |
| 1051 | |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 1052 | /* Defer choosing the ID until we send the first message to create the stream */ |
| 1053 | h2s = h2s_new(h2c, 0); |
| 1054 | if (!h2s) |
| 1055 | goto out; |
| 1056 | |
| 1057 | h2s->cs = cs; |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 1058 | h2s->sess = sess; |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 1059 | cs->ctx = h2s; |
| 1060 | h2c->nb_cs++; |
| 1061 | |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 1062 | out: |
| 1063 | return h2s; |
| 1064 | } |
| 1065 | |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1066 | /* try to send a settings frame on the connection. Returns > 0 on success, 0 if |
| 1067 | * it couldn't do anything. It may return an error in h2c. See RFC7540#11.3 for |
| 1068 | * the various settings codes. |
| 1069 | */ |
Willy Tarreau | 7f0cc49 | 2018-10-08 07:13:08 +0200 | [diff] [blame] | 1070 | static int h2c_send_settings(struct h2c *h2c) |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1071 | { |
| 1072 | struct buffer *res; |
| 1073 | char buf_data[100]; // enough for 15 settings |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1074 | struct buffer buf; |
Willy Tarreau | a24b35c | 2019-02-21 13:24:36 +0100 | [diff] [blame] | 1075 | int mfs; |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1076 | int ret; |
| 1077 | |
| 1078 | if (h2c_mux_busy(h2c, NULL)) { |
| 1079 | h2c->flags |= H2_CF_DEM_MBUSY; |
| 1080 | return 0; |
| 1081 | } |
| 1082 | |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1083 | chunk_init(&buf, buf_data, sizeof(buf_data)); |
| 1084 | chunk_memcpy(&buf, |
| 1085 | "\x00\x00\x00" /* length : 0 for now */ |
| 1086 | "\x04\x00" /* type : 4 (settings), flags : 0 */ |
| 1087 | "\x00\x00\x00\x00", /* stream ID : 0 */ |
| 1088 | 9); |
| 1089 | |
Willy Tarreau | 0bbad6b | 2019-02-26 16:01:52 +0100 | [diff] [blame] | 1090 | if (h2c->flags & H2_CF_IS_BACK) { |
| 1091 | /* send settings_enable_push=0 */ |
| 1092 | chunk_memcat(&buf, "\x00\x02\x00\x00\x00\x00", 6); |
| 1093 | } |
| 1094 | |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1095 | if (h2_settings_header_table_size != 4096) { |
| 1096 | char str[6] = "\x00\x01"; /* header_table_size */ |
| 1097 | |
| 1098 | write_n32(str + 2, h2_settings_header_table_size); |
| 1099 | chunk_memcat(&buf, str, 6); |
| 1100 | } |
| 1101 | |
| 1102 | if (h2_settings_initial_window_size != 65535) { |
| 1103 | char str[6] = "\x00\x04"; /* initial_window_size */ |
| 1104 | |
| 1105 | write_n32(str + 2, h2_settings_initial_window_size); |
| 1106 | chunk_memcat(&buf, str, 6); |
| 1107 | } |
| 1108 | |
| 1109 | if (h2_settings_max_concurrent_streams != 0) { |
| 1110 | char str[6] = "\x00\x03"; /* max_concurrent_streams */ |
| 1111 | |
| 1112 | /* Note: 0 means "unlimited" for haproxy's config but not for |
| 1113 | * the protocol, so never send this value! |
| 1114 | */ |
| 1115 | write_n32(str + 2, h2_settings_max_concurrent_streams); |
| 1116 | chunk_memcat(&buf, str, 6); |
| 1117 | } |
| 1118 | |
Willy Tarreau | a24b35c | 2019-02-21 13:24:36 +0100 | [diff] [blame] | 1119 | mfs = h2_settings_max_frame_size; |
| 1120 | if (mfs > global.tune.bufsize) |
| 1121 | mfs = global.tune.bufsize; |
| 1122 | |
| 1123 | if (!mfs) |
| 1124 | mfs = global.tune.bufsize; |
| 1125 | |
| 1126 | if (mfs != 16384) { |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1127 | char str[6] = "\x00\x05"; /* max_frame_size */ |
| 1128 | |
| 1129 | /* note: similarly we could also emit MAX_HEADER_LIST_SIZE to |
| 1130 | * match bufsize - rewrite size, but at the moment it seems |
| 1131 | * that clients don't take care of it. |
| 1132 | */ |
Willy Tarreau | a24b35c | 2019-02-21 13:24:36 +0100 | [diff] [blame] | 1133 | write_n32(str + 2, mfs); |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1134 | chunk_memcat(&buf, str, 6); |
| 1135 | } |
| 1136 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1137 | h2_set_frame_size(buf.area, buf.data - 9); |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1138 | |
| 1139 | res = br_tail(h2c->mbuf); |
| 1140 | retry: |
| 1141 | if (!h2_get_buf(h2c, res)) { |
| 1142 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 1143 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1144 | return 0; |
| 1145 | } |
| 1146 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1147 | ret = b_istput(res, ist2(buf.area, buf.data)); |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1148 | if (unlikely(ret <= 0)) { |
| 1149 | if (!ret) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1150 | if ((res = br_tail_add(h2c->mbuf)) != NULL) |
| 1151 | goto retry; |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1152 | h2c->flags |= H2_CF_MUX_MFULL; |
| 1153 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1154 | return 0; |
| 1155 | } |
| 1156 | else { |
| 1157 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
| 1158 | return 0; |
| 1159 | } |
| 1160 | } |
| 1161 | return ret; |
| 1162 | } |
| 1163 | |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 1164 | /* Try to receive a connection preface, then upon success try to send our |
| 1165 | * preface which is a SETTINGS frame. Returns > 0 on success or zero on |
| 1166 | * missing data. It may return an error in h2c. |
| 1167 | */ |
| 1168 | static int h2c_frt_recv_preface(struct h2c *h2c) |
| 1169 | { |
| 1170 | int ret1; |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1171 | int ret2; |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 1172 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1173 | 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] | 1174 | |
| 1175 | if (unlikely(ret1 <= 0)) { |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 1176 | if (ret1 < 0) |
| 1177 | sess_log(h2c->conn->owner); |
| 1178 | |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 1179 | if (ret1 < 0 || conn_xprt_read0_pending(h2c->conn)) |
| 1180 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
| 1181 | return 0; |
| 1182 | } |
| 1183 | |
Willy Tarreau | 7f0cc49 | 2018-10-08 07:13:08 +0200 | [diff] [blame] | 1184 | ret2 = h2c_send_settings(h2c); |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1185 | if (ret2 > 0) |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1186 | b_del(&h2c->dbuf, ret1); |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 1187 | |
Willy Tarreau | be5b715 | 2017-09-25 16:25:39 +0200 | [diff] [blame] | 1188 | return ret2; |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 1189 | } |
| 1190 | |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 1191 | /* Try to send a connection preface, then upon success try to send our |
| 1192 | * preface which is a SETTINGS frame. Returns > 0 on success or zero on |
| 1193 | * missing data. It may return an error in h2c. |
| 1194 | */ |
| 1195 | static int h2c_bck_send_preface(struct h2c *h2c) |
| 1196 | { |
| 1197 | struct buffer *res; |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1198 | int ret; |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 1199 | |
| 1200 | if (h2c_mux_busy(h2c, NULL)) { |
| 1201 | h2c->flags |= H2_CF_DEM_MBUSY; |
| 1202 | return 0; |
| 1203 | } |
| 1204 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1205 | res = br_tail(h2c->mbuf); |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1206 | retry: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1207 | if (!h2_get_buf(h2c, res)) { |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 1208 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 1209 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1210 | return 0; |
| 1211 | } |
| 1212 | |
| 1213 | if (!b_data(res)) { |
| 1214 | /* preface not yet sent */ |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1215 | ret = b_istput(res, ist(H2_CONN_PREFACE)); |
| 1216 | if (unlikely(ret <= 0)) { |
| 1217 | if (!ret) { |
| 1218 | if ((res = br_tail_add(h2c->mbuf)) != NULL) |
| 1219 | goto retry; |
| 1220 | h2c->flags |= H2_CF_MUX_MFULL; |
| 1221 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1222 | return 0; |
| 1223 | } |
| 1224 | else { |
| 1225 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
| 1226 | return 0; |
| 1227 | } |
| 1228 | } |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 1229 | } |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 1230 | return h2c_send_settings(h2c); |
| 1231 | } |
| 1232 | |
Willy Tarreau | 081d472 | 2017-05-16 21:51:05 +0200 | [diff] [blame] | 1233 | /* try to send a GOAWAY frame on the connection to report an error or a graceful |
| 1234 | * shutdown, with h2c->errcode as the error code. Returns > 0 on success or zero |
| 1235 | * if nothing was done. It uses h2c->last_sid as the advertised ID, or copies it |
| 1236 | * from h2c->max_id if it's not set yet (<0). In case of lack of room to write |
| 1237 | * the message, it subscribes the requester (either <h2s> or <h2c>) to future |
| 1238 | * notifications. It sets H2_CF_GOAWAY_SENT on success, and H2_CF_GOAWAY_FAILED |
| 1239 | * on unrecoverable failure. It will not attempt to send one again in this last |
| 1240 | * case so that it is safe to use h2c_error() to report such errors. |
| 1241 | */ |
| 1242 | static int h2c_send_goaway_error(struct h2c *h2c, struct h2s *h2s) |
| 1243 | { |
| 1244 | struct buffer *res; |
| 1245 | char str[17]; |
| 1246 | int ret; |
| 1247 | |
| 1248 | if (h2c->flags & H2_CF_GOAWAY_FAILED) |
| 1249 | return 1; // claim that it worked |
| 1250 | |
| 1251 | if (h2c_mux_busy(h2c, h2s)) { |
| 1252 | if (h2s) |
| 1253 | h2s->flags |= H2_SF_BLK_MBUSY; |
| 1254 | else |
| 1255 | h2c->flags |= H2_CF_DEM_MBUSY; |
| 1256 | return 0; |
| 1257 | } |
| 1258 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1259 | /* len: 8, type: 7, flags: none, sid: 0 */ |
| 1260 | memcpy(str, "\x00\x00\x08\x07\x00\x00\x00\x00\x00", 9); |
| 1261 | |
| 1262 | if (h2c->last_sid < 0) |
| 1263 | h2c->last_sid = h2c->max_id; |
| 1264 | |
| 1265 | write_n32(str + 9, h2c->last_sid); |
| 1266 | write_n32(str + 13, h2c->errcode); |
| 1267 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1268 | res = br_tail(h2c->mbuf); |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1269 | retry: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1270 | if (!h2_get_buf(h2c, res)) { |
Willy Tarreau | 081d472 | 2017-05-16 21:51:05 +0200 | [diff] [blame] | 1271 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 1272 | if (h2s) |
| 1273 | h2s->flags |= H2_SF_BLK_MROOM; |
| 1274 | else |
| 1275 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1276 | return 0; |
| 1277 | } |
| 1278 | |
Willy Tarreau | ea1b06d | 2018-07-12 09:02:47 +0200 | [diff] [blame] | 1279 | ret = b_istput(res, ist2(str, 17)); |
Willy Tarreau | 081d472 | 2017-05-16 21:51:05 +0200 | [diff] [blame] | 1280 | if (unlikely(ret <= 0)) { |
| 1281 | if (!ret) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1282 | if ((res = br_tail_add(h2c->mbuf)) != NULL) |
| 1283 | goto retry; |
Willy Tarreau | 081d472 | 2017-05-16 21:51:05 +0200 | [diff] [blame] | 1284 | h2c->flags |= H2_CF_MUX_MFULL; |
| 1285 | if (h2s) |
| 1286 | h2s->flags |= H2_SF_BLK_MROOM; |
| 1287 | else |
| 1288 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1289 | return 0; |
| 1290 | } |
| 1291 | else { |
| 1292 | /* we cannot report this error using GOAWAY, so we mark |
| 1293 | * it and claim a success. |
| 1294 | */ |
| 1295 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
| 1296 | h2c->flags |= H2_CF_GOAWAY_FAILED; |
| 1297 | return 1; |
| 1298 | } |
| 1299 | } |
| 1300 | h2c->flags |= H2_CF_GOAWAY_SENT; |
| 1301 | return ret; |
| 1302 | } |
| 1303 | |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1304 | /* Try to send an RST_STREAM frame on the connection for the indicated stream |
| 1305 | * during mux operations. This stream must be valid and cannot be closed |
| 1306 | * already. h2s->id will be used for the stream ID and h2s->errcode will be |
| 1307 | * used for the error code. h2s->st will be update to H2_SS_CLOSED if it was |
| 1308 | * not yet. |
| 1309 | * |
| 1310 | * Returns > 0 on success or zero if nothing was done. In case of lack of room |
| 1311 | * to write the message, it subscribes the stream to future notifications. |
| 1312 | */ |
| 1313 | static int h2s_send_rst_stream(struct h2c *h2c, struct h2s *h2s) |
| 1314 | { |
| 1315 | struct buffer *res; |
| 1316 | char str[13]; |
| 1317 | int ret; |
| 1318 | |
| 1319 | if (!h2s || h2s->st == H2_SS_CLOSED) |
| 1320 | return 1; |
| 1321 | |
Willy Tarreau | 8adae7c | 2018-03-22 17:37:05 +0100 | [diff] [blame] | 1322 | /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a |
| 1323 | * RST_STREAM in response to a RST_STREAM frame. |
| 1324 | */ |
| 1325 | if (h2c->dft == H2_FT_RST_STREAM) { |
| 1326 | ret = 1; |
| 1327 | goto ignore; |
| 1328 | } |
| 1329 | |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1330 | if (h2c_mux_busy(h2c, h2s)) { |
| 1331 | h2s->flags |= H2_SF_BLK_MBUSY; |
| 1332 | return 0; |
| 1333 | } |
| 1334 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1335 | /* len: 4, type: 3, flags: none */ |
| 1336 | memcpy(str, "\x00\x00\x04\x03\x00", 5); |
| 1337 | write_n32(str + 5, h2s->id); |
| 1338 | write_n32(str + 9, h2s->errcode); |
| 1339 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1340 | res = br_tail(h2c->mbuf); |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1341 | retry: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1342 | if (!h2_get_buf(h2c, res)) { |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1343 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 1344 | h2s->flags |= H2_SF_BLK_MROOM; |
| 1345 | return 0; |
| 1346 | } |
| 1347 | |
Willy Tarreau | ea1b06d | 2018-07-12 09:02:47 +0200 | [diff] [blame] | 1348 | ret = b_istput(res, ist2(str, 13)); |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1349 | if (unlikely(ret <= 0)) { |
| 1350 | if (!ret) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1351 | if ((res = br_tail_add(h2c->mbuf)) != NULL) |
| 1352 | goto retry; |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1353 | h2c->flags |= H2_CF_MUX_MFULL; |
| 1354 | h2s->flags |= H2_SF_BLK_MROOM; |
| 1355 | return 0; |
| 1356 | } |
| 1357 | else { |
| 1358 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
| 1359 | return 0; |
| 1360 | } |
| 1361 | } |
| 1362 | |
Willy Tarreau | 8adae7c | 2018-03-22 17:37:05 +0100 | [diff] [blame] | 1363 | ignore: |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1364 | h2s->flags |= H2_SF_RST_SENT; |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 1365 | h2s_close(h2s); |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1366 | return ret; |
| 1367 | } |
| 1368 | |
| 1369 | /* Try to send an RST_STREAM frame on the connection for the stream being |
| 1370 | * 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] | 1371 | * error code, even if the stream is one of the dummy ones, and will update |
| 1372 | * h2s->st to H2_SS_CLOSED if it was not yet. |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1373 | * |
| 1374 | * Returns > 0 on success or zero if nothing was done. In case of lack of room |
| 1375 | * 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] | 1376 | * 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] | 1377 | * closed stream. |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 1378 | */ |
| 1379 | static int h2c_send_rst_stream(struct h2c *h2c, struct h2s *h2s) |
| 1380 | { |
| 1381 | struct buffer *res; |
| 1382 | char str[13]; |
| 1383 | int ret; |
| 1384 | |
Willy Tarreau | 8adae7c | 2018-03-22 17:37:05 +0100 | [diff] [blame] | 1385 | /* RFC7540#5.4.2: To avoid looping, an endpoint MUST NOT send a |
| 1386 | * RST_STREAM in response to a RST_STREAM frame. |
| 1387 | */ |
| 1388 | if (h2c->dft == H2_FT_RST_STREAM) { |
| 1389 | ret = 1; |
| 1390 | goto ignore; |
| 1391 | } |
| 1392 | |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 1393 | if (h2c_mux_busy(h2c, h2s)) { |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1394 | h2c->flags |= H2_CF_DEM_MBUSY; |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 1395 | return 0; |
| 1396 | } |
| 1397 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1398 | /* len: 4, type: 3, flags: none */ |
| 1399 | memcpy(str, "\x00\x00\x04\x03\x00", 5); |
| 1400 | |
| 1401 | write_n32(str + 5, h2c->dsi); |
| 1402 | write_n32(str + 9, h2s->errcode); |
| 1403 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1404 | res = br_tail(h2c->mbuf); |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1405 | retry: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1406 | if (!h2_get_buf(h2c, res)) { |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 1407 | h2c->flags |= H2_CF_MUX_MALLOC; |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1408 | h2c->flags |= H2_CF_DEM_MROOM; |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 1409 | return 0; |
| 1410 | } |
| 1411 | |
Willy Tarreau | ea1b06d | 2018-07-12 09:02:47 +0200 | [diff] [blame] | 1412 | ret = b_istput(res, ist2(str, 13)); |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 1413 | if (unlikely(ret <= 0)) { |
| 1414 | if (!ret) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1415 | if ((res = br_tail_add(h2c->mbuf)) != NULL) |
| 1416 | goto retry; |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 1417 | h2c->flags |= H2_CF_MUX_MFULL; |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1418 | h2c->flags |= H2_CF_DEM_MROOM; |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 1419 | return 0; |
| 1420 | } |
| 1421 | else { |
| 1422 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
| 1423 | return 0; |
| 1424 | } |
| 1425 | } |
| 1426 | |
Willy Tarreau | 8adae7c | 2018-03-22 17:37:05 +0100 | [diff] [blame] | 1427 | ignore: |
Willy Tarreau | ab0e1da | 2018-10-05 10:16:37 +0200 | [diff] [blame] | 1428 | if (h2s->id) { |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 1429 | h2s->flags |= H2_SF_RST_SENT; |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 1430 | h2s_close(h2s); |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 1431 | } |
| 1432 | |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 1433 | return ret; |
| 1434 | } |
| 1435 | |
Willy Tarreau | c7576ea | 2017-10-29 22:00:09 +0100 | [diff] [blame] | 1436 | /* try to send an empty DATA frame with the ES flag set to notify about the |
| 1437 | * end of stream and match a shutdown(write). If an ES was already sent as |
| 1438 | * indicated by HLOC/ERROR/RESET/CLOSED states, nothing is done. Returns > 0 |
| 1439 | * on success or zero if nothing was done. In case of lack of room to write the |
| 1440 | * message, it subscribes the requesting stream to future notifications. |
| 1441 | */ |
| 1442 | static int h2_send_empty_data_es(struct h2s *h2s) |
| 1443 | { |
| 1444 | struct h2c *h2c = h2s->h2c; |
| 1445 | struct buffer *res; |
| 1446 | char str[9]; |
| 1447 | int ret; |
| 1448 | |
Willy Tarreau | 721c974 | 2017-11-07 11:05:42 +0100 | [diff] [blame] | 1449 | 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] | 1450 | return 1; |
| 1451 | |
| 1452 | if (h2c_mux_busy(h2c, h2s)) { |
| 1453 | h2s->flags |= H2_SF_BLK_MBUSY; |
| 1454 | return 0; |
| 1455 | } |
| 1456 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1457 | /* len: 0x000000, type: 0(DATA), flags: ES=1 */ |
| 1458 | memcpy(str, "\x00\x00\x00\x00\x01", 5); |
| 1459 | write_n32(str + 5, h2s->id); |
| 1460 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1461 | res = br_tail(h2c->mbuf); |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1462 | retry: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1463 | if (!h2_get_buf(h2c, res)) { |
Willy Tarreau | c7576ea | 2017-10-29 22:00:09 +0100 | [diff] [blame] | 1464 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 1465 | h2s->flags |= H2_SF_BLK_MROOM; |
| 1466 | return 0; |
| 1467 | } |
| 1468 | |
Willy Tarreau | ea1b06d | 2018-07-12 09:02:47 +0200 | [diff] [blame] | 1469 | ret = b_istput(res, ist2(str, 9)); |
Willy Tarreau | 6d8b682 | 2017-11-07 14:39:09 +0100 | [diff] [blame] | 1470 | if (likely(ret > 0)) { |
| 1471 | h2s->flags |= H2_SF_ES_SENT; |
| 1472 | } |
| 1473 | else if (!ret) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1474 | if ((res = br_tail_add(h2c->mbuf)) != NULL) |
| 1475 | goto retry; |
Willy Tarreau | 6d8b682 | 2017-11-07 14:39:09 +0100 | [diff] [blame] | 1476 | h2c->flags |= H2_CF_MUX_MFULL; |
| 1477 | h2s->flags |= H2_SF_BLK_MROOM; |
| 1478 | return 0; |
| 1479 | } |
| 1480 | else { |
| 1481 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
| 1482 | return 0; |
Willy Tarreau | c7576ea | 2017-10-29 22:00:09 +0100 | [diff] [blame] | 1483 | } |
| 1484 | return ret; |
| 1485 | } |
| 1486 | |
Willy Tarreau | 13b6c2e | 2019-05-07 17:26:05 +0200 | [diff] [blame] | 1487 | /* 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] | 1488 | * 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] | 1489 | * is automatically updated accordingly. If the stream is orphaned, it is |
| 1490 | * destroyed. |
Christopher Faulet | f02ca00 | 2019-03-07 16:21:34 +0100 | [diff] [blame] | 1491 | */ |
Willy Tarreau | 13b6c2e | 2019-05-07 17:26:05 +0200 | [diff] [blame] | 1492 | static void h2s_wake_one_stream(struct h2s *h2s) |
Christopher Faulet | f02ca00 | 2019-03-07 16:21:34 +0100 | [diff] [blame] | 1493 | { |
| 1494 | if (!h2s->cs) { |
| 1495 | /* this stream was already orphaned */ |
| 1496 | h2s_destroy(h2s); |
| 1497 | return; |
| 1498 | } |
| 1499 | |
Willy Tarreau | aebbe5e | 2019-05-07 17:48:59 +0200 | [diff] [blame] | 1500 | if (conn_xprt_read0_pending(h2s->h2c->conn)) { |
Willy Tarreau | aebbe5e | 2019-05-07 17:48:59 +0200 | [diff] [blame] | 1501 | if (h2s->st == H2_SS_OPEN) |
| 1502 | h2s->st = H2_SS_HREM; |
| 1503 | else if (h2s->st == H2_SS_HLOC) |
| 1504 | h2s_close(h2s); |
| 1505 | } |
Willy Tarreau | 13b6c2e | 2019-05-07 17:26:05 +0200 | [diff] [blame] | 1506 | |
Willy Tarreau | aebbe5e | 2019-05-07 17:48:59 +0200 | [diff] [blame] | 1507 | if ((h2s->h2c->st0 >= H2_CS_ERROR || h2s->h2c->conn->flags & CO_FL_ERROR) || |
| 1508 | (h2s->h2c->last_sid > 0 && (!h2s->id || h2s->id > h2s->h2c->last_sid))) { |
| 1509 | h2s->cs->flags |= CS_FL_ERR_PENDING; |
| 1510 | if (h2s->cs->flags & CS_FL_EOS) |
| 1511 | h2s->cs->flags |= CS_FL_ERROR; |
Willy Tarreau | 2348291 | 2019-05-07 15:23:14 +0200 | [diff] [blame] | 1512 | |
Willy Tarreau | aebbe5e | 2019-05-07 17:48:59 +0200 | [diff] [blame] | 1513 | if (h2s->st < H2_SS_ERROR) |
| 1514 | h2s->st = H2_SS_ERROR; |
| 1515 | } |
Christopher Faulet | f02ca00 | 2019-03-07 16:21:34 +0100 | [diff] [blame] | 1516 | |
| 1517 | h2s_alert(h2s); |
Christopher Faulet | f02ca00 | 2019-03-07 16:21:34 +0100 | [diff] [blame] | 1518 | } |
| 1519 | |
| 1520 | /* wake the streams attached to the connection, whose id is greater than <last> |
| 1521 | * or unassigned. |
Willy Tarreau | 23b92aa | 2017-10-30 00:26:54 +0100 | [diff] [blame] | 1522 | */ |
Willy Tarreau | 2348291 | 2019-05-07 15:23:14 +0200 | [diff] [blame] | 1523 | static void h2_wake_some_streams(struct h2c *h2c, int last) |
Willy Tarreau | 23b92aa | 2017-10-30 00:26:54 +0100 | [diff] [blame] | 1524 | { |
| 1525 | struct eb32_node *node; |
| 1526 | struct h2s *h2s; |
Willy Tarreau | 23b92aa | 2017-10-30 00:26:54 +0100 | [diff] [blame] | 1527 | |
Christopher Faulet | f02ca00 | 2019-03-07 16:21:34 +0100 | [diff] [blame] | 1528 | /* Wake all streams with ID > last */ |
Willy Tarreau | 23b92aa | 2017-10-30 00:26:54 +0100 | [diff] [blame] | 1529 | node = eb32_lookup_ge(&h2c->streams_by_id, last + 1); |
| 1530 | while (node) { |
| 1531 | h2s = container_of(node, struct h2s, by_id); |
Willy Tarreau | 23b92aa | 2017-10-30 00:26:54 +0100 | [diff] [blame] | 1532 | node = eb32_next(node); |
Willy Tarreau | 13b6c2e | 2019-05-07 17:26:05 +0200 | [diff] [blame] | 1533 | h2s_wake_one_stream(h2s); |
Christopher Faulet | f02ca00 | 2019-03-07 16:21:34 +0100 | [diff] [blame] | 1534 | } |
Willy Tarreau | 22cf59b | 2017-11-10 11:42:33 +0100 | [diff] [blame] | 1535 | |
Christopher Faulet | f02ca00 | 2019-03-07 16:21:34 +0100 | [diff] [blame] | 1536 | /* Wake all streams with unassigned ID (ID == 0) */ |
| 1537 | node = eb32_lookup(&h2c->streams_by_id, 0); |
| 1538 | while (node) { |
| 1539 | h2s = container_of(node, struct h2s, by_id); |
| 1540 | if (h2s->id > 0) |
| 1541 | break; |
| 1542 | node = eb32_next(node); |
Willy Tarreau | 13b6c2e | 2019-05-07 17:26:05 +0200 | [diff] [blame] | 1543 | h2s_wake_one_stream(h2s); |
Willy Tarreau | 23b92aa | 2017-10-30 00:26:54 +0100 | [diff] [blame] | 1544 | } |
| 1545 | } |
| 1546 | |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1547 | /* Increase all streams' outgoing window size by the difference passed in |
| 1548 | * argument. This is needed upon receipt of the settings frame if the initial |
| 1549 | * window size is different. The difference may be negative and the resulting |
| 1550 | * window size as well, for the time it takes to receive some window updates. |
| 1551 | */ |
| 1552 | static void h2c_update_all_ws(struct h2c *h2c, int diff) |
| 1553 | { |
| 1554 | struct h2s *h2s; |
| 1555 | struct eb32_node *node; |
| 1556 | |
| 1557 | if (!diff) |
| 1558 | return; |
| 1559 | |
| 1560 | node = eb32_first(&h2c->streams_by_id); |
| 1561 | while (node) { |
| 1562 | h2s = container_of(node, struct h2s, by_id); |
| 1563 | h2s->mws += diff; |
Willy Tarreau | b1c9edc | 2019-01-30 16:11:20 +0100 | [diff] [blame] | 1564 | |
| 1565 | if (h2s->mws > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) { |
| 1566 | h2s->flags &= ~H2_SF_BLK_SFCTL; |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 1567 | if (h2s->send_wait && !LIST_ADDED(&h2s->list)) |
Willy Tarreau | b1c9edc | 2019-01-30 16:11:20 +0100 | [diff] [blame] | 1568 | LIST_ADDQ(&h2c->send_list, &h2s->list); |
Willy Tarreau | b1c9edc | 2019-01-30 16:11:20 +0100 | [diff] [blame] | 1569 | } |
| 1570 | |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1571 | node = eb32_next(node); |
| 1572 | } |
| 1573 | } |
| 1574 | |
| 1575 | /* processes a SETTINGS frame whose payload is <payload> for <plen> bytes, and |
| 1576 | * 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] | 1577 | * return an error in h2c. The caller must have already verified frame length |
| 1578 | * and stream ID validity. Described in RFC7540#6.5. |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1579 | */ |
| 1580 | static int h2c_handle_settings(struct h2c *h2c) |
| 1581 | { |
| 1582 | unsigned int offset; |
| 1583 | int error; |
| 1584 | |
| 1585 | if (h2c->dff & H2_F_SETTINGS_ACK) { |
| 1586 | if (h2c->dfl) { |
| 1587 | error = H2_ERR_FRAME_SIZE_ERROR; |
| 1588 | goto fail; |
| 1589 | } |
| 1590 | return 1; |
| 1591 | } |
| 1592 | |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1593 | /* process full frame only */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1594 | if (b_data(&h2c->dbuf) < h2c->dfl) |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1595 | return 0; |
| 1596 | |
| 1597 | /* parse the frame */ |
| 1598 | for (offset = 0; offset < h2c->dfl; offset += 6) { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1599 | uint16_t type = h2_get_n16(&h2c->dbuf, offset); |
| 1600 | int32_t arg = h2_get_n32(&h2c->dbuf, offset + 2); |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1601 | |
| 1602 | switch (type) { |
| 1603 | case H2_SETTINGS_INITIAL_WINDOW_SIZE: |
| 1604 | /* we need to update all existing streams with the |
| 1605 | * difference from the previous iws. |
| 1606 | */ |
| 1607 | if (arg < 0) { // RFC7540#6.5.2 |
| 1608 | error = H2_ERR_FLOW_CONTROL_ERROR; |
| 1609 | goto fail; |
| 1610 | } |
| 1611 | h2c_update_all_ws(h2c, arg - h2c->miw); |
| 1612 | h2c->miw = arg; |
| 1613 | break; |
| 1614 | case H2_SETTINGS_MAX_FRAME_SIZE: |
| 1615 | if (arg < 16384 || arg > 16777215) { // RFC7540#6.5.2 |
| 1616 | error = H2_ERR_PROTOCOL_ERROR; |
| 1617 | goto fail; |
| 1618 | } |
| 1619 | h2c->mfs = arg; |
| 1620 | break; |
Willy Tarreau | 1b38b46 | 2017-12-03 19:02:28 +0100 | [diff] [blame] | 1621 | case H2_SETTINGS_ENABLE_PUSH: |
| 1622 | if (arg < 0 || arg > 1) { // RFC7540#6.5.2 |
| 1623 | error = H2_ERR_PROTOCOL_ERROR; |
| 1624 | goto fail; |
| 1625 | } |
| 1626 | break; |
Willy Tarreau | 2e2083a | 2019-01-31 10:34:07 +0100 | [diff] [blame] | 1627 | case H2_SETTINGS_MAX_CONCURRENT_STREAMS: |
| 1628 | if (h2c->flags & H2_CF_IS_BACK) { |
| 1629 | /* the limit is only for the backend; for the frontend it is our limit */ |
| 1630 | if ((unsigned int)arg > h2_settings_max_concurrent_streams) |
| 1631 | arg = h2_settings_max_concurrent_streams; |
| 1632 | h2c->streams_limit = arg; |
| 1633 | } |
| 1634 | break; |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1635 | } |
| 1636 | } |
| 1637 | |
| 1638 | /* need to ACK this frame now */ |
| 1639 | h2c->st0 = H2_CS_FRAME_A; |
| 1640 | return 1; |
| 1641 | fail: |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 1642 | sess_log(h2c->conn->owner); |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1643 | h2c_error(h2c, error); |
| 1644 | return 0; |
| 1645 | } |
| 1646 | |
| 1647 | /* try to send an ACK for a settings frame on the connection. Returns > 0 on |
| 1648 | * success or one of the h2_status values. |
| 1649 | */ |
| 1650 | static int h2c_ack_settings(struct h2c *h2c) |
| 1651 | { |
| 1652 | struct buffer *res; |
| 1653 | char str[9]; |
| 1654 | int ret = -1; |
| 1655 | |
| 1656 | if (h2c_mux_busy(h2c, NULL)) { |
| 1657 | h2c->flags |= H2_CF_DEM_MBUSY; |
| 1658 | return 0; |
| 1659 | } |
| 1660 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1661 | memcpy(str, |
| 1662 | "\x00\x00\x00" /* length : 0 (no data) */ |
| 1663 | "\x04" "\x01" /* type : 4, flags : ACK */ |
| 1664 | "\x00\x00\x00\x00" /* stream ID */, 9); |
| 1665 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1666 | res = br_tail(h2c->mbuf); |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1667 | retry: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1668 | if (!h2_get_buf(h2c, res)) { |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1669 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 1670 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1671 | return 0; |
| 1672 | } |
| 1673 | |
Willy Tarreau | ea1b06d | 2018-07-12 09:02:47 +0200 | [diff] [blame] | 1674 | ret = b_istput(res, ist2(str, 9)); |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1675 | if (unlikely(ret <= 0)) { |
| 1676 | if (!ret) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1677 | if ((res = br_tail_add(h2c->mbuf)) != NULL) |
| 1678 | goto retry; |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 1679 | h2c->flags |= H2_CF_MUX_MFULL; |
| 1680 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1681 | return 0; |
| 1682 | } |
| 1683 | else { |
| 1684 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
| 1685 | return 0; |
| 1686 | } |
| 1687 | } |
| 1688 | return ret; |
| 1689 | } |
| 1690 | |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 1691 | /* processes a PING frame and schedules an ACK if needed. The caller must pass |
| 1692 | * 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] | 1693 | * missing data. The caller must have already verified frame length |
| 1694 | * and stream ID validity. |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 1695 | */ |
| 1696 | static int h2c_handle_ping(struct h2c *h2c) |
| 1697 | { |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 1698 | /* schedule a response */ |
Willy Tarreau | 68ed641 | 2017-12-03 18:15:56 +0100 | [diff] [blame] | 1699 | if (!(h2c->dff & H2_F_PING_ACK)) |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 1700 | h2c->st0 = H2_CS_FRAME_A; |
| 1701 | return 1; |
| 1702 | } |
| 1703 | |
Willy Tarreau | cc0b8c3 | 2017-10-26 16:55:59 +0200 | [diff] [blame] | 1704 | /* Try to send a window update for stream id <sid> and value <increment>. |
| 1705 | * Returns > 0 on success or zero on missing room or failure. It may return an |
| 1706 | * error in h2c. |
| 1707 | */ |
| 1708 | static int h2c_send_window_update(struct h2c *h2c, int sid, uint32_t increment) |
| 1709 | { |
| 1710 | struct buffer *res; |
| 1711 | char str[13]; |
| 1712 | int ret = -1; |
| 1713 | |
| 1714 | if (h2c_mux_busy(h2c, NULL)) { |
| 1715 | h2c->flags |= H2_CF_DEM_MBUSY; |
| 1716 | return 0; |
| 1717 | } |
| 1718 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1719 | /* length: 4, type: 8, flags: none */ |
| 1720 | memcpy(str, "\x00\x00\x04\x08\x00", 5); |
| 1721 | write_n32(str + 5, sid); |
| 1722 | write_n32(str + 9, increment); |
| 1723 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1724 | res = br_tail(h2c->mbuf); |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1725 | retry: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 1726 | if (!h2_get_buf(h2c, res)) { |
Willy Tarreau | cc0b8c3 | 2017-10-26 16:55:59 +0200 | [diff] [blame] | 1727 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 1728 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1729 | return 0; |
| 1730 | } |
| 1731 | |
Willy Tarreau | ea1b06d | 2018-07-12 09:02:47 +0200 | [diff] [blame] | 1732 | ret = b_istput(res, ist2(str, 13)); |
Willy Tarreau | cc0b8c3 | 2017-10-26 16:55:59 +0200 | [diff] [blame] | 1733 | if (unlikely(ret <= 0)) { |
| 1734 | if (!ret) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1735 | if ((res = br_tail_add(h2c->mbuf)) != NULL) |
| 1736 | goto retry; |
Willy Tarreau | cc0b8c3 | 2017-10-26 16:55:59 +0200 | [diff] [blame] | 1737 | h2c->flags |= H2_CF_MUX_MFULL; |
| 1738 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1739 | return 0; |
| 1740 | } |
| 1741 | else { |
| 1742 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
| 1743 | return 0; |
| 1744 | } |
| 1745 | } |
| 1746 | return ret; |
| 1747 | } |
| 1748 | |
| 1749 | /* try to send pending window update for the connection. It's safe to call it |
| 1750 | * with no pending updates. Returns > 0 on success or zero on missing room or |
| 1751 | * failure. It may return an error in h2c. |
| 1752 | */ |
| 1753 | static int h2c_send_conn_wu(struct h2c *h2c) |
| 1754 | { |
| 1755 | int ret = 1; |
| 1756 | |
| 1757 | if (h2c->rcvd_c <= 0) |
| 1758 | return 1; |
| 1759 | |
Willy Tarreau | 97aaa67 | 2018-12-23 09:49:04 +0100 | [diff] [blame] | 1760 | if (!(h2c->flags & H2_CF_WINDOW_OPENED)) { |
| 1761 | /* increase the advertised connection window to 2G on |
| 1762 | * first update. |
| 1763 | */ |
| 1764 | h2c->flags |= H2_CF_WINDOW_OPENED; |
| 1765 | h2c->rcvd_c += H2_INITIAL_WINDOW_INCREMENT; |
| 1766 | } |
| 1767 | |
Willy Tarreau | cc0b8c3 | 2017-10-26 16:55:59 +0200 | [diff] [blame] | 1768 | /* send WU for the connection */ |
| 1769 | ret = h2c_send_window_update(h2c, 0, h2c->rcvd_c); |
| 1770 | if (ret > 0) |
| 1771 | h2c->rcvd_c = 0; |
| 1772 | |
| 1773 | return ret; |
| 1774 | } |
| 1775 | |
| 1776 | /* try to send pending window update for the current dmux stream. It's safe to |
| 1777 | * call it with no pending updates. Returns > 0 on success or zero on missing |
| 1778 | * room or failure. It may return an error in h2c. |
| 1779 | */ |
| 1780 | static int h2c_send_strm_wu(struct h2c *h2c) |
| 1781 | { |
| 1782 | int ret = 1; |
| 1783 | |
| 1784 | if (h2c->rcvd_s <= 0) |
| 1785 | return 1; |
| 1786 | |
| 1787 | /* send WU for the stream */ |
| 1788 | ret = h2c_send_window_update(h2c, h2c->dsi, h2c->rcvd_s); |
| 1789 | if (ret > 0) |
| 1790 | h2c->rcvd_s = 0; |
| 1791 | |
| 1792 | return ret; |
| 1793 | } |
| 1794 | |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 1795 | /* try to send an ACK for a ping frame on the connection. Returns > 0 on |
| 1796 | * success, 0 on missing data or one of the h2_status values. |
| 1797 | */ |
| 1798 | static int h2c_ack_ping(struct h2c *h2c) |
| 1799 | { |
| 1800 | struct buffer *res; |
| 1801 | char str[17]; |
| 1802 | int ret = -1; |
| 1803 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1804 | if (b_data(&h2c->dbuf) < 8) |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 1805 | return 0; |
| 1806 | |
| 1807 | if (h2c_mux_busy(h2c, NULL)) { |
| 1808 | h2c->flags |= H2_CF_DEM_MBUSY; |
| 1809 | return 0; |
| 1810 | } |
| 1811 | |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 1812 | memcpy(str, |
| 1813 | "\x00\x00\x08" /* length : 8 (same payload) */ |
| 1814 | "\x06" "\x01" /* type : 6, flags : ACK */ |
| 1815 | "\x00\x00\x00\x00" /* stream ID */, 9); |
| 1816 | |
| 1817 | /* copy the original payload */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1818 | h2_get_buf_bytes(str + 9, 8, &h2c->dbuf, 0); |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 1819 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1820 | res = br_tail(h2c->mbuf); |
| 1821 | retry: |
| 1822 | if (!h2_get_buf(h2c, res)) { |
| 1823 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 1824 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1825 | return 0; |
| 1826 | } |
| 1827 | |
Willy Tarreau | ea1b06d | 2018-07-12 09:02:47 +0200 | [diff] [blame] | 1828 | ret = b_istput(res, ist2(str, 17)); |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 1829 | if (unlikely(ret <= 0)) { |
| 1830 | if (!ret) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 1831 | if ((res = br_tail_add(h2c->mbuf)) != NULL) |
| 1832 | goto retry; |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 1833 | h2c->flags |= H2_CF_MUX_MFULL; |
| 1834 | h2c->flags |= H2_CF_DEM_MROOM; |
| 1835 | return 0; |
| 1836 | } |
| 1837 | else { |
| 1838 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
| 1839 | return 0; |
| 1840 | } |
| 1841 | } |
| 1842 | return ret; |
| 1843 | } |
| 1844 | |
Willy Tarreau | 26f9595 | 2017-07-27 17:18:30 +0200 | [diff] [blame] | 1845 | /* processes a WINDOW_UPDATE frame whose payload is <payload> for <plen> bytes. |
| 1846 | * 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] | 1847 | * h2c or h2s. The caller must have already verified frame length and stream ID |
| 1848 | * validity. Described in RFC7540#6.9. |
Willy Tarreau | 26f9595 | 2017-07-27 17:18:30 +0200 | [diff] [blame] | 1849 | */ |
| 1850 | static int h2c_handle_window_update(struct h2c *h2c, struct h2s *h2s) |
| 1851 | { |
| 1852 | int32_t inc; |
| 1853 | int error; |
| 1854 | |
Willy Tarreau | 26f9595 | 2017-07-27 17:18:30 +0200 | [diff] [blame] | 1855 | /* process full frame only */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1856 | if (b_data(&h2c->dbuf) < h2c->dfl) |
Willy Tarreau | 26f9595 | 2017-07-27 17:18:30 +0200 | [diff] [blame] | 1857 | return 0; |
| 1858 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1859 | inc = h2_get_n32(&h2c->dbuf, 0); |
Willy Tarreau | 26f9595 | 2017-07-27 17:18:30 +0200 | [diff] [blame] | 1860 | |
| 1861 | if (h2c->dsi != 0) { |
| 1862 | /* stream window update */ |
Willy Tarreau | 26f9595 | 2017-07-27 17:18:30 +0200 | [diff] [blame] | 1863 | |
| 1864 | /* it's not an error to receive WU on a closed stream */ |
| 1865 | if (h2s->st == H2_SS_CLOSED) |
| 1866 | return 1; |
| 1867 | |
| 1868 | if (!inc) { |
| 1869 | error = H2_ERR_PROTOCOL_ERROR; |
| 1870 | goto strm_err; |
| 1871 | } |
| 1872 | |
| 1873 | if (h2s->mws >= 0 && h2s->mws + inc < 0) { |
| 1874 | error = H2_ERR_FLOW_CONTROL_ERROR; |
| 1875 | goto strm_err; |
| 1876 | } |
| 1877 | |
| 1878 | h2s->mws += inc; |
| 1879 | if (h2s->mws > 0 && (h2s->flags & H2_SF_BLK_SFCTL)) { |
| 1880 | h2s->flags &= ~H2_SF_BLK_SFCTL; |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 1881 | if (h2s->send_wait && !LIST_ADDED(&h2s->list)) |
Olivier Houchard | dddfe31 | 2018-10-10 18:51:00 +0200 | [diff] [blame] | 1882 | LIST_ADDQ(&h2c->send_list, &h2s->list); |
Willy Tarreau | 26f9595 | 2017-07-27 17:18:30 +0200 | [diff] [blame] | 1883 | } |
| 1884 | } |
| 1885 | else { |
| 1886 | /* connection window update */ |
| 1887 | if (!inc) { |
| 1888 | error = H2_ERR_PROTOCOL_ERROR; |
| 1889 | goto conn_err; |
| 1890 | } |
| 1891 | |
| 1892 | if (h2c->mws >= 0 && h2c->mws + inc < 0) { |
| 1893 | error = H2_ERR_FLOW_CONTROL_ERROR; |
| 1894 | goto conn_err; |
| 1895 | } |
| 1896 | |
| 1897 | h2c->mws += inc; |
| 1898 | } |
| 1899 | |
| 1900 | return 1; |
| 1901 | |
| 1902 | conn_err: |
| 1903 | h2c_error(h2c, error); |
| 1904 | return 0; |
| 1905 | |
| 1906 | strm_err: |
Willy Tarreau | 6432dc8 | 2019-01-30 15:42:44 +0100 | [diff] [blame] | 1907 | h2s_error(h2s, error); |
| 1908 | h2c->st0 = H2_CS_FRAME_E; |
Willy Tarreau | 26f9595 | 2017-07-27 17:18:30 +0200 | [diff] [blame] | 1909 | return 0; |
| 1910 | } |
| 1911 | |
Willy Tarreau | e96b092 | 2017-10-30 00:28:29 +0100 | [diff] [blame] | 1912 | /* 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] | 1913 | * the last ID. Returns > 0 on success or zero on missing data. The caller must |
| 1914 | * have already verified frame length and stream ID validity. Described in |
| 1915 | * RFC7540#6.8. |
Willy Tarreau | e96b092 | 2017-10-30 00:28:29 +0100 | [diff] [blame] | 1916 | */ |
| 1917 | static int h2c_handle_goaway(struct h2c *h2c) |
| 1918 | { |
Willy Tarreau | e96b092 | 2017-10-30 00:28:29 +0100 | [diff] [blame] | 1919 | int last; |
| 1920 | |
Willy Tarreau | e96b092 | 2017-10-30 00:28:29 +0100 | [diff] [blame] | 1921 | /* process full frame only */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1922 | if (b_data(&h2c->dbuf) < h2c->dfl) |
Willy Tarreau | e96b092 | 2017-10-30 00:28:29 +0100 | [diff] [blame] | 1923 | return 0; |
| 1924 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1925 | last = h2_get_n32(&h2c->dbuf, 0); |
| 1926 | h2c->errcode = h2_get_n32(&h2c->dbuf, 4); |
Willy Tarreau | 11cc2d6 | 2017-12-03 10:27:47 +0100 | [diff] [blame] | 1927 | if (h2c->last_sid < 0) |
| 1928 | h2c->last_sid = last; |
Willy Tarreau | 2348291 | 2019-05-07 15:23:14 +0200 | [diff] [blame] | 1929 | h2_wake_some_streams(h2c, last); |
Willy Tarreau | e96b092 | 2017-10-30 00:28:29 +0100 | [diff] [blame] | 1930 | return 1; |
Willy Tarreau | e96b092 | 2017-10-30 00:28:29 +0100 | [diff] [blame] | 1931 | } |
| 1932 | |
Willy Tarreau | 92153fc | 2017-12-03 19:46:19 +0100 | [diff] [blame] | 1933 | /* 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] | 1934 | * invalid. Returns > 0 on success or zero on missing data. It may return an |
| 1935 | * error in h2c. The caller must have already verified frame length and stream |
| 1936 | * ID validity. Described in RFC7540#6.3. |
Willy Tarreau | 92153fc | 2017-12-03 19:46:19 +0100 | [diff] [blame] | 1937 | */ |
| 1938 | static int h2c_handle_priority(struct h2c *h2c) |
| 1939 | { |
Willy Tarreau | 92153fc | 2017-12-03 19:46:19 +0100 | [diff] [blame] | 1940 | /* process full frame only */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1941 | if (b_data(&h2c->dbuf) < h2c->dfl) |
Willy Tarreau | 92153fc | 2017-12-03 19:46:19 +0100 | [diff] [blame] | 1942 | return 0; |
| 1943 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1944 | if (h2_get_n32(&h2c->dbuf, 0) == h2c->dsi) { |
Willy Tarreau | 92153fc | 2017-12-03 19:46:19 +0100 | [diff] [blame] | 1945 | /* 7540#5.3 : can't depend on itself */ |
Willy Tarreau | b860c73 | 2019-01-30 15:39:55 +0100 | [diff] [blame] | 1946 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
| 1947 | return 0; |
Willy Tarreau | 92153fc | 2017-12-03 19:46:19 +0100 | [diff] [blame] | 1948 | } |
| 1949 | return 1; |
Willy Tarreau | 92153fc | 2017-12-03 19:46:19 +0100 | [diff] [blame] | 1950 | } |
| 1951 | |
Willy Tarreau | cd234e9 | 2017-08-18 10:59:39 +0200 | [diff] [blame] | 1952 | /* 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] | 1953 | * Returns > 0 on success or zero on missing data. The caller must have already |
| 1954 | * verified frame length and stream ID validity. Described in RFC7540#6.4. |
Willy Tarreau | cd234e9 | 2017-08-18 10:59:39 +0200 | [diff] [blame] | 1955 | */ |
| 1956 | static int h2c_handle_rst_stream(struct h2c *h2c, struct h2s *h2s) |
| 1957 | { |
Willy Tarreau | cd234e9 | 2017-08-18 10:59:39 +0200 | [diff] [blame] | 1958 | /* process full frame only */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1959 | if (b_data(&h2c->dbuf) < h2c->dfl) |
Willy Tarreau | cd234e9 | 2017-08-18 10:59:39 +0200 | [diff] [blame] | 1960 | return 0; |
| 1961 | |
| 1962 | /* late RST, already handled */ |
| 1963 | if (h2s->st == H2_SS_CLOSED) |
| 1964 | return 1; |
| 1965 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1966 | h2s->errcode = h2_get_n32(&h2c->dbuf, 0); |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 1967 | h2s_close(h2s); |
Willy Tarreau | cd234e9 | 2017-08-18 10:59:39 +0200 | [diff] [blame] | 1968 | |
| 1969 | if (h2s->cs) { |
Willy Tarreau | ec988c7 | 2018-12-19 18:00:29 +0100 | [diff] [blame] | 1970 | cs_set_error(h2s->cs); |
Willy Tarreau | f830f01 | 2018-12-19 17:44:55 +0100 | [diff] [blame] | 1971 | h2s_alert(h2s); |
Willy Tarreau | cd234e9 | 2017-08-18 10:59:39 +0200 | [diff] [blame] | 1972 | } |
| 1973 | |
| 1974 | h2s->flags |= H2_SF_RST_RCVD; |
| 1975 | return 1; |
Willy Tarreau | cd234e9 | 2017-08-18 10:59:39 +0200 | [diff] [blame] | 1976 | } |
| 1977 | |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 1978 | /* processes a HEADERS frame. Returns h2s on success or NULL on missing data. |
| 1979 | * It may return an error in h2c or h2s. The caller must consider that the |
| 1980 | * return value is the new h2s in case one was allocated (most common case). |
| 1981 | * Described in RFC7540#6.2. Most of the |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 1982 | * errors here are reported as connection errors since it's impossible to |
| 1983 | * recover from such errors after the compression context has been altered. |
| 1984 | */ |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 1985 | 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] | 1986 | { |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 1987 | struct buffer rxbuf = BUF_NULL; |
Willy Tarreau | 4790f7c | 2019-01-24 11:33:02 +0100 | [diff] [blame] | 1988 | unsigned long long body_len = 0; |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 1989 | uint32_t flags = 0; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 1990 | int error; |
| 1991 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1992 | if (!b_size(&h2c->dbuf)) |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 1993 | return NULL; // empty buffer |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 1994 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1995 | if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 1996 | return NULL; // incomplete frame |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 1997 | |
| 1998 | /* now either the frame is complete or the buffer is complete */ |
| 1999 | if (h2s->st != H2_SS_IDLE) { |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 2000 | /* The stream exists/existed, this must be a trailers frame */ |
| 2001 | if (h2s->st != H2_SS_CLOSED) { |
Willy Tarreau | aab1a60 | 2019-05-06 11:12:18 +0200 | [diff] [blame] | 2002 | error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &body_len); |
| 2003 | /* unrecoverable error ? */ |
| 2004 | if (h2c->st0 >= H2_CS_ERROR) |
| 2005 | goto out; |
| 2006 | |
| 2007 | if (error == 0) |
| 2008 | goto out; // missing data |
| 2009 | |
| 2010 | if (error < 0) { |
| 2011 | /* Failed to decode this frame (e.g. too large request) |
| 2012 | * but the HPACK decompressor is still synchronized. |
| 2013 | */ |
| 2014 | h2s_error(h2s, H2_ERR_INTERNAL_ERROR); |
| 2015 | h2c->st0 = H2_CS_FRAME_E; |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 2016 | goto out; |
Willy Tarreau | aab1a60 | 2019-05-06 11:12:18 +0200 | [diff] [blame] | 2017 | } |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 2018 | goto done; |
| 2019 | } |
Willy Tarreau | 1f03550 | 2019-01-30 11:44:07 +0100 | [diff] [blame] | 2020 | /* the connection was already killed by an RST, let's consume |
| 2021 | * the data and send another RST. |
| 2022 | */ |
| 2023 | error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len); |
| 2024 | h2s = (struct h2s*)h2_error_stream; |
| 2025 | goto send_rst; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2026 | } |
| 2027 | else if (h2c->dsi <= h2c->max_id || !(h2c->dsi & 1)) { |
| 2028 | /* RFC7540#5.1.1 stream id > prev ones, and must be odd here */ |
| 2029 | error = H2_ERR_PROTOCOL_ERROR; |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 2030 | sess_log(h2c->conn->owner); |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2031 | goto conn_err; |
| 2032 | } |
Willy Tarreau | 415b1ee | 2019-01-02 13:59:43 +0100 | [diff] [blame] | 2033 | else if (h2c->flags & H2_CF_DEM_TOOMANY) |
| 2034 | goto out; // IDLE but too many cs still present |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2035 | |
Willy Tarreau | 4790f7c | 2019-01-24 11:33:02 +0100 | [diff] [blame] | 2036 | error = h2c_decode_headers(h2c, &rxbuf, &flags, &body_len); |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 2037 | |
Willy Tarreau | 2591923 | 2019-01-03 14:48:18 +0100 | [diff] [blame] | 2038 | /* unrecoverable error ? */ |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 2039 | if (h2c->st0 >= H2_CS_ERROR) |
| 2040 | goto out; |
| 2041 | |
Willy Tarreau | 2591923 | 2019-01-03 14:48:18 +0100 | [diff] [blame] | 2042 | if (error <= 0) { |
| 2043 | if (error == 0) |
| 2044 | goto out; // missing data |
| 2045 | |
| 2046 | /* Failed to decode this stream (e.g. too large request) |
| 2047 | * but the HPACK decompressor is still synchronized. |
| 2048 | */ |
| 2049 | h2s = (struct h2s*)h2_error_stream; |
| 2050 | goto send_rst; |
| 2051 | } |
| 2052 | |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 2053 | /* 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] | 2054 | * positively from h2c_frt_stream_new(), the stream will report the error, |
| 2055 | * 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] | 2056 | */ |
Willy Tarreau | a8e4954 | 2018-10-03 18:53:55 +0200 | [diff] [blame] | 2057 | h2s = h2c_frt_stream_new(h2c, h2c->dsi); |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2058 | if (!h2s) { |
Willy Tarreau | 96a10c2 | 2018-12-23 18:30:44 +0100 | [diff] [blame] | 2059 | h2s = (struct h2s*)h2_refused_stream; |
| 2060 | goto send_rst; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2061 | } |
| 2062 | |
| 2063 | h2s->st = H2_SS_OPEN; |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 2064 | h2s->rxbuf = rxbuf; |
| 2065 | h2s->flags |= flags; |
Willy Tarreau | 1915ca2 | 2019-01-24 11:49:37 +0100 | [diff] [blame] | 2066 | h2s->body_len = body_len; |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 2067 | |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 2068 | done: |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 2069 | if (h2c->dff & H2_F_HEADERS_END_STREAM) |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2070 | h2s->flags |= H2_SF_ES_RCVD; |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 2071 | |
| 2072 | if (h2s->flags & H2_SF_ES_RCVD) { |
Willy Tarreau | fc10f59 | 2019-01-30 19:28:32 +0100 | [diff] [blame] | 2073 | if (h2s->st == H2_SS_OPEN) |
| 2074 | h2s->st = H2_SS_HREM; |
| 2075 | else |
| 2076 | h2s_close(h2s); |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2077 | } |
| 2078 | |
Willy Tarreau | 3a429f0 | 2019-01-03 11:41:50 +0100 | [diff] [blame] | 2079 | /* update the max stream ID if the request is being processed */ |
| 2080 | if (h2s->id > h2c->max_id) |
| 2081 | h2c->max_id = h2s->id; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2082 | |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2083 | return h2s; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2084 | |
| 2085 | conn_err: |
| 2086 | h2c_error(h2c, error); |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 2087 | goto out; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2088 | |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 2089 | out: |
| 2090 | h2_release_buf(h2c, &rxbuf); |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2091 | return NULL; |
Willy Tarreau | 96a10c2 | 2018-12-23 18:30:44 +0100 | [diff] [blame] | 2092 | |
| 2093 | send_rst: |
| 2094 | /* make the demux send an RST for the current stream. We may only |
| 2095 | * do this if we're certain that the HEADERS frame was properly |
| 2096 | * decompressed so that the HPACK decoder is still kept up to date. |
| 2097 | */ |
| 2098 | h2_release_buf(h2c, &rxbuf); |
| 2099 | h2c->st0 = H2_CS_FRAME_E; |
| 2100 | return h2s; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2101 | } |
| 2102 | |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2103 | /* processes a HEADERS frame. Returns h2s on success or NULL on missing data. |
| 2104 | * It may return an error in h2c or h2s. Described in RFC7540#6.2. Most of the |
| 2105 | * errors here are reported as connection errors since it's impossible to |
| 2106 | * recover from such errors after the compression context has been altered. |
| 2107 | */ |
| 2108 | static struct h2s *h2c_bck_handle_headers(struct h2c *h2c, struct h2s *h2s) |
| 2109 | { |
| 2110 | int error; |
| 2111 | |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2112 | if (!b_size(&h2c->dbuf)) |
| 2113 | return NULL; // empty buffer |
| 2114 | |
| 2115 | if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) |
| 2116 | return NULL; // incomplete frame |
| 2117 | |
Willy Tarreau | 1915ca2 | 2019-01-24 11:49:37 +0100 | [diff] [blame] | 2118 | error = h2c_decode_headers(h2c, &h2s->rxbuf, &h2s->flags, &h2s->body_len); |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2119 | |
Willy Tarreau | 2591923 | 2019-01-03 14:48:18 +0100 | [diff] [blame] | 2120 | /* unrecoverable error ? */ |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2121 | if (h2c->st0 >= H2_CS_ERROR) |
| 2122 | return NULL; |
| 2123 | |
Willy Tarreau | 08bb1d6 | 2019-01-30 16:55:48 +0100 | [diff] [blame] | 2124 | if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) { |
| 2125 | /* RFC7540#5.1 */ |
| 2126 | h2s_error(h2s, H2_ERR_STREAM_CLOSED); |
| 2127 | h2c->st0 = H2_CS_FRAME_E; |
| 2128 | return NULL; |
| 2129 | } |
| 2130 | |
Willy Tarreau | 2591923 | 2019-01-03 14:48:18 +0100 | [diff] [blame] | 2131 | if (error <= 0) { |
| 2132 | if (error == 0) |
| 2133 | return NULL; // missing data |
| 2134 | |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2135 | /* stream error : send RST_STREAM */ |
Willy Tarreau | 2591923 | 2019-01-03 14:48:18 +0100 | [diff] [blame] | 2136 | h2s_error(h2s, H2_ERR_PROTOCOL_ERROR); |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2137 | h2c->st0 = H2_CS_FRAME_E; |
Willy Tarreau | 2591923 | 2019-01-03 14:48:18 +0100 | [diff] [blame] | 2138 | return NULL; |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2139 | } |
| 2140 | |
Christopher Faulet | fa922f0 | 2019-05-07 10:55:17 +0200 | [diff] [blame] | 2141 | if (h2c->dff & H2_F_HEADERS_END_STREAM) |
Willy Tarreau | 45ffc0c | 2019-01-03 09:32:20 +0100 | [diff] [blame] | 2142 | h2s->flags |= H2_SF_ES_RCVD; |
Willy Tarreau | 45ffc0c | 2019-01-03 09:32:20 +0100 | [diff] [blame] | 2143 | |
Willy Tarreau | 927b88b | 2019-03-04 08:03:25 +0100 | [diff] [blame] | 2144 | 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] | 2145 | h2s->st = H2_SS_ERROR; |
Christopher Faulet | fa922f0 | 2019-05-07 10:55:17 +0200 | [diff] [blame] | 2146 | else if (h2s->flags & H2_SF_ES_RCVD) { |
| 2147 | if (h2s->st == H2_SS_OPEN) |
| 2148 | h2s->st = H2_SS_HREM; |
| 2149 | else if (h2s->st == H2_SS_HLOC) |
| 2150 | h2s_close(h2s); |
| 2151 | } |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2152 | |
| 2153 | return h2s; |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2154 | } |
| 2155 | |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2156 | /* processes a DATA frame. Returns > 0 on success or zero on missing data. |
| 2157 | * It may return an error in h2c or h2s. Described in RFC7540#6.1. |
| 2158 | */ |
| 2159 | static int h2c_frt_handle_data(struct h2c *h2c, struct h2s *h2s) |
| 2160 | { |
| 2161 | int error; |
| 2162 | |
| 2163 | /* note that empty DATA frames are perfectly valid and sometimes used |
| 2164 | * to signal an end of stream (with the ES flag). |
| 2165 | */ |
| 2166 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2167 | if (!b_size(&h2c->dbuf) && h2c->dfl) |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2168 | return 0; // empty buffer |
| 2169 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2170 | if (b_data(&h2c->dbuf) < h2c->dfl && !b_full(&h2c->dbuf)) |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2171 | return 0; // incomplete frame |
| 2172 | |
| 2173 | /* now either the frame is complete or the buffer is complete */ |
| 2174 | |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2175 | if (h2s->st != H2_SS_OPEN && h2s->st != H2_SS_HLOC) { |
| 2176 | /* RFC7540#6.1 */ |
| 2177 | error = H2_ERR_STREAM_CLOSED; |
| 2178 | goto strm_err; |
| 2179 | } |
| 2180 | |
Willy Tarreau | 1915ca2 | 2019-01-24 11:49:37 +0100 | [diff] [blame] | 2181 | if ((h2s->flags & H2_SF_DATA_CLEN) && h2c->dfl > h2s->body_len) { |
| 2182 | /* RFC7540#8.1.2 */ |
| 2183 | error = H2_ERR_PROTOCOL_ERROR; |
| 2184 | goto strm_err; |
| 2185 | } |
| 2186 | |
Willy Tarreau | a56a6de | 2018-02-26 15:59:07 +0100 | [diff] [blame] | 2187 | if (!h2_frt_transfer_data(h2s)) |
| 2188 | return 0; |
| 2189 | |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2190 | /* call the upper layers to process the frame, then let the upper layer |
| 2191 | * notify the stream about any change. |
| 2192 | */ |
| 2193 | if (!h2s->cs) { |
| 2194 | error = H2_ERR_STREAM_CLOSED; |
| 2195 | goto strm_err; |
| 2196 | } |
| 2197 | |
Willy Tarreau | 8f650c3 | 2017-11-21 19:36:21 +0100 | [diff] [blame] | 2198 | if (h2c->st0 >= H2_CS_ERROR) |
| 2199 | return 0; |
| 2200 | |
Willy Tarreau | 721c974 | 2017-11-07 11:05:42 +0100 | [diff] [blame] | 2201 | if (h2s->st >= H2_SS_ERROR) { |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2202 | /* stream error : send RST_STREAM */ |
Willy Tarreau | a20a519 | 2017-12-27 11:02:06 +0100 | [diff] [blame] | 2203 | h2c->st0 = H2_CS_FRAME_E; |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2204 | } |
| 2205 | |
| 2206 | /* check for completion : the callee will change this to FRAME_A or |
| 2207 | * FRAME_H once done. |
| 2208 | */ |
| 2209 | if (h2c->st0 == H2_CS_FRAME_P) |
| 2210 | return 0; |
| 2211 | |
Willy Tarreau | c4134ba | 2017-12-11 18:45:08 +0100 | [diff] [blame] | 2212 | /* last frame */ |
| 2213 | if (h2c->dff & H2_F_DATA_END_STREAM) { |
Christopher Faulet | fa922f0 | 2019-05-07 10:55:17 +0200 | [diff] [blame] | 2214 | h2s->flags |= H2_SF_ES_RCVD; |
Willy Tarreau | fc10f59 | 2019-01-30 19:28:32 +0100 | [diff] [blame] | 2215 | if (h2s->st == H2_SS_OPEN) |
| 2216 | h2s->st = H2_SS_HREM; |
| 2217 | else |
| 2218 | h2s_close(h2s); |
| 2219 | |
Willy Tarreau | 1915ca2 | 2019-01-24 11:49:37 +0100 | [diff] [blame] | 2220 | if (h2s->flags & H2_SF_DATA_CLEN && h2s->body_len) { |
| 2221 | /* RFC7540#8.1.2 */ |
| 2222 | error = H2_ERR_PROTOCOL_ERROR; |
| 2223 | goto strm_err; |
| 2224 | } |
Willy Tarreau | c4134ba | 2017-12-11 18:45:08 +0100 | [diff] [blame] | 2225 | } |
| 2226 | |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2227 | return 1; |
| 2228 | |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2229 | strm_err: |
Willy Tarreau | 6432dc8 | 2019-01-30 15:42:44 +0100 | [diff] [blame] | 2230 | h2s_error(h2s, error); |
| 2231 | h2c->st0 = H2_CS_FRAME_E; |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2232 | return 0; |
| 2233 | } |
| 2234 | |
Willy Tarreau | bc93393 | 2017-10-09 16:21:43 +0200 | [diff] [blame] | 2235 | /* process Rx frames to be demultiplexed */ |
| 2236 | static void h2_process_demux(struct h2c *h2c) |
| 2237 | { |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2238 | struct h2s *h2s = NULL, *tmp_h2s; |
Willy Tarreau | 54f46e5 | 2019-01-30 15:11:03 +0100 | [diff] [blame] | 2239 | struct h2_fh hdr; |
| 2240 | unsigned int padlen = 0; |
Willy Tarreau | f3ee069 | 2017-10-17 08:18:25 +0200 | [diff] [blame] | 2241 | |
Willy Tarreau | 081d472 | 2017-05-16 21:51:05 +0200 | [diff] [blame] | 2242 | if (h2c->st0 >= H2_CS_ERROR) |
| 2243 | return; |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 2244 | |
| 2245 | if (unlikely(h2c->st0 < H2_CS_FRAME_H)) { |
| 2246 | if (h2c->st0 == H2_CS_PREFACE) { |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 2247 | if (h2c->flags & H2_CF_IS_BACK) |
| 2248 | return; |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 2249 | if (unlikely(h2c_frt_recv_preface(h2c) <= 0)) { |
| 2250 | /* RFC7540#3.5: a GOAWAY frame MAY be omitted */ |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 2251 | if (h2c->st0 == H2_CS_ERROR) { |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 2252 | h2c->st0 = H2_CS_ERROR2; |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 2253 | sess_log(h2c->conn->owner); |
| 2254 | } |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 2255 | goto fail; |
| 2256 | } |
| 2257 | |
| 2258 | h2c->max_id = 0; |
| 2259 | h2c->st0 = H2_CS_SETTINGS1; |
| 2260 | } |
Willy Tarreau | 4c3690b | 2017-10-10 15:16:55 +0200 | [diff] [blame] | 2261 | |
| 2262 | if (h2c->st0 == H2_CS_SETTINGS1) { |
Willy Tarreau | 4c3690b | 2017-10-10 15:16:55 +0200 | [diff] [blame] | 2263 | /* ensure that what is pending is a valid SETTINGS frame |
| 2264 | * without an ACK. |
| 2265 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2266 | if (!h2_get_frame_hdr(&h2c->dbuf, &hdr)) { |
Willy Tarreau | 4c3690b | 2017-10-10 15:16:55 +0200 | [diff] [blame] | 2267 | /* RFC7540#3.5: a GOAWAY frame MAY be omitted */ |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 2268 | if (h2c->st0 == H2_CS_ERROR) { |
Willy Tarreau | 4c3690b | 2017-10-10 15:16:55 +0200 | [diff] [blame] | 2269 | h2c->st0 = H2_CS_ERROR2; |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 2270 | sess_log(h2c->conn->owner); |
| 2271 | } |
Willy Tarreau | 4c3690b | 2017-10-10 15:16:55 +0200 | [diff] [blame] | 2272 | goto fail; |
| 2273 | } |
| 2274 | |
| 2275 | if (hdr.sid || hdr.ft != H2_FT_SETTINGS || hdr.ff & H2_F_SETTINGS_ACK) { |
| 2276 | /* RFC7540#3.5: a GOAWAY frame MAY be omitted */ |
| 2277 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
| 2278 | h2c->st0 = H2_CS_ERROR2; |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 2279 | sess_log(h2c->conn->owner); |
Willy Tarreau | 4c3690b | 2017-10-10 15:16:55 +0200 | [diff] [blame] | 2280 | goto fail; |
| 2281 | } |
| 2282 | |
Willy Tarreau | 3f0e1ec | 2018-04-17 10:28:27 +0200 | [diff] [blame] | 2283 | if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) { |
Willy Tarreau | 4c3690b | 2017-10-10 15:16:55 +0200 | [diff] [blame] | 2284 | /* RFC7540#3.5: a GOAWAY frame MAY be omitted */ |
| 2285 | h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR); |
| 2286 | h2c->st0 = H2_CS_ERROR2; |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 2287 | sess_log(h2c->conn->owner); |
Willy Tarreau | 4c3690b | 2017-10-10 15:16:55 +0200 | [diff] [blame] | 2288 | goto fail; |
| 2289 | } |
| 2290 | |
Willy Tarreau | 3bf6918 | 2018-12-21 15:34:50 +0100 | [diff] [blame] | 2291 | /* that's OK, switch to FRAME_P to process it. This is |
| 2292 | * a SETTINGS frame whose header has already been |
| 2293 | * deleted above. |
| 2294 | */ |
Willy Tarreau | 54f46e5 | 2019-01-30 15:11:03 +0100 | [diff] [blame] | 2295 | padlen = 0; |
| 2296 | goto new_frame; |
Willy Tarreau | 4c3690b | 2017-10-10 15:16:55 +0200 | [diff] [blame] | 2297 | } |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 2298 | } |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2299 | |
| 2300 | /* process as many incoming frames as possible below */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2301 | while (b_data(&h2c->dbuf)) { |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2302 | int ret = 0; |
| 2303 | |
| 2304 | if (h2c->st0 >= H2_CS_ERROR) |
| 2305 | break; |
| 2306 | |
| 2307 | if (h2c->st0 == H2_CS_FRAME_H) { |
Willy Tarreau | a4428bd | 2018-12-22 18:11:41 +0100 | [diff] [blame] | 2308 | if (!h2_peek_frame_hdr(&h2c->dbuf, 0, &hdr)) |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2309 | break; |
| 2310 | |
Willy Tarreau | 3f0e1ec | 2018-04-17 10:28:27 +0200 | [diff] [blame] | 2311 | if ((int)hdr.len < 0 || (int)hdr.len > global.tune.bufsize) { |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2312 | h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR); |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 2313 | if (!h2c->nb_streams) { |
| 2314 | /* only log if no other stream can report the error */ |
| 2315 | sess_log(h2c->conn->owner); |
| 2316 | } |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2317 | break; |
| 2318 | } |
| 2319 | |
Willy Tarreau | 3bf6918 | 2018-12-21 15:34:50 +0100 | [diff] [blame] | 2320 | if (h2_ft_bit(hdr.ft) & H2_FT_PADDED_MASK && hdr.ff & H2_F_PADDED) { |
| 2321 | /* If the frame is padded (HEADERS, PUSH_PROMISE or DATA), |
| 2322 | * we read the pad length and drop it from the remaining |
| 2323 | * payload (one byte + the 9 remaining ones = 10 total |
| 2324 | * removed), so we have a frame payload starting after the |
| 2325 | * pad len. Flow controlled frames (DATA) also count the |
| 2326 | * padlen in the flow control, so it must be adjusted. |
| 2327 | */ |
| 2328 | if (hdr.len < 1) { |
| 2329 | h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR); |
| 2330 | sess_log(h2c->conn->owner); |
| 2331 | goto fail; |
| 2332 | } |
| 2333 | hdr.len--; |
| 2334 | |
| 2335 | if (b_data(&h2c->dbuf) < 10) |
| 2336 | break; // missing padlen |
| 2337 | |
| 2338 | padlen = *(uint8_t *)b_peek(&h2c->dbuf, 9); |
| 2339 | |
| 2340 | if (padlen > hdr.len) { |
| 2341 | /* RFC7540#6.1 : pad length = length of |
| 2342 | * frame payload or greater => error. |
| 2343 | */ |
| 2344 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
| 2345 | sess_log(h2c->conn->owner); |
| 2346 | goto fail; |
| 2347 | } |
| 2348 | |
| 2349 | if (h2_ft_bit(hdr.ft) & H2_FT_FC_MASK) { |
| 2350 | h2c->rcvd_c++; |
| 2351 | h2c->rcvd_s++; |
| 2352 | } |
| 2353 | b_del(&h2c->dbuf, 1); |
| 2354 | } |
| 2355 | h2_skip_frame_hdr(&h2c->dbuf); |
Willy Tarreau | 54f46e5 | 2019-01-30 15:11:03 +0100 | [diff] [blame] | 2356 | |
| 2357 | new_frame: |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2358 | h2c->dfl = hdr.len; |
| 2359 | h2c->dsi = hdr.sid; |
| 2360 | h2c->dft = hdr.ft; |
| 2361 | h2c->dff = hdr.ff; |
Willy Tarreau | 3bf6918 | 2018-12-21 15:34:50 +0100 | [diff] [blame] | 2362 | h2c->dpl = padlen; |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2363 | h2c->st0 = H2_CS_FRAME_P; |
Willy Tarreau | 54f46e5 | 2019-01-30 15:11:03 +0100 | [diff] [blame] | 2364 | |
| 2365 | /* check for minimum basic frame format validity */ |
| 2366 | ret = h2_frame_check(h2c->dft, 1, h2c->dsi, h2c->dfl, global.tune.bufsize); |
| 2367 | if (ret != H2_ERR_NO_ERROR) { |
| 2368 | h2c_error(h2c, ret); |
| 2369 | sess_log(h2c->conn->owner); |
| 2370 | goto fail; |
| 2371 | } |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2372 | } |
| 2373 | |
| 2374 | /* Only H2_CS_FRAME_P and H2_CS_FRAME_A here */ |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2375 | tmp_h2s = h2c_st_by_id(h2c, h2c->dsi); |
| 2376 | |
Willy Tarreau | 567beb8 | 2018-12-18 16:52:44 +0100 | [diff] [blame] | 2377 | if (tmp_h2s != h2s && h2s && h2s->cs && |
| 2378 | (b_data(&h2s->rxbuf) || |
Willy Tarreau | 99ad1b3 | 2019-05-14 11:46:28 +0200 | [diff] [blame] | 2379 | (H2_SS_MASK(h2s->st) & H2_SS_EOS_BITS) || |
Christopher Faulet | fa922f0 | 2019-05-07 10:55:17 +0200 | [diff] [blame] | 2380 | (h2s->flags & H2_SF_ES_RCVD) || |
| 2381 | (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] | 2382 | /* we may have to signal the upper layers */ |
| 2383 | h2s->cs->flags |= CS_FL_RCV_MORE; |
Willy Tarreau | 7e09445 | 2018-12-19 18:08:52 +0100 | [diff] [blame] | 2384 | h2s_notify_recv(h2s); |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2385 | } |
| 2386 | h2s = tmp_h2s; |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2387 | |
Willy Tarreau | d790143 | 2017-12-29 11:34:40 +0100 | [diff] [blame] | 2388 | if (h2c->st0 == H2_CS_FRAME_E) |
| 2389 | goto strm_err; |
| 2390 | |
Willy Tarreau | f65b80d | 2017-10-30 11:46:49 +0100 | [diff] [blame] | 2391 | if (h2s->st == H2_SS_IDLE && |
| 2392 | h2c->dft != H2_FT_HEADERS && h2c->dft != H2_FT_PRIORITY) { |
| 2393 | /* RFC7540#5.1: any frame other than HEADERS or PRIORITY in |
| 2394 | * this state MUST be treated as a connection error |
| 2395 | */ |
| 2396 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
Willy Tarreau | 22de8d3 | 2018-09-05 19:55:58 +0200 | [diff] [blame] | 2397 | if (!h2c->nb_streams) { |
| 2398 | /* only log if no other stream can report the error */ |
| 2399 | sess_log(h2c->conn->owner); |
| 2400 | } |
Willy Tarreau | f65b80d | 2017-10-30 11:46:49 +0100 | [diff] [blame] | 2401 | break; |
| 2402 | } |
| 2403 | |
Willy Tarreau | f182a9a | 2017-10-30 12:03:50 +0100 | [diff] [blame] | 2404 | if (h2s->st == H2_SS_HREM && h2c->dft != H2_FT_WINDOW_UPDATE && |
| 2405 | h2c->dft != H2_FT_RST_STREAM && h2c->dft != H2_FT_PRIORITY) { |
| 2406 | /* RFC7540#5.1: any frame other than WU/PRIO/RST in |
Willy Tarreau | 5b4eae3 | 2019-01-24 09:43:32 +0100 | [diff] [blame] | 2407 | * this state MUST be treated as a stream error. |
| 2408 | * 6.2, 6.6 and 6.10 further mandate that HEADERS/ |
| 2409 | * PUSH_PROMISE/CONTINUATION cause connection errors. |
Willy Tarreau | f182a9a | 2017-10-30 12:03:50 +0100 | [diff] [blame] | 2410 | */ |
Willy Tarreau | 5b4eae3 | 2019-01-24 09:43:32 +0100 | [diff] [blame] | 2411 | if (h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) |
| 2412 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
| 2413 | else |
| 2414 | h2s_error(h2s, H2_ERR_STREAM_CLOSED); |
Willy Tarreau | f182a9a | 2017-10-30 12:03:50 +0100 | [diff] [blame] | 2415 | goto strm_err; |
| 2416 | } |
| 2417 | |
Willy Tarreau | ab83750 | 2017-12-27 15:07:30 +0100 | [diff] [blame] | 2418 | /* Below the management of frames received in closed state is a |
| 2419 | * bit hackish because the spec makes strong differences between |
| 2420 | * streams closed by receiving RST, sending RST, and seeing ES |
| 2421 | * in both directions. In addition to this, the creation of a |
| 2422 | * new stream reusing the identifier of a closed one will be |
| 2423 | * detected here. Given that we cannot keep track of all closed |
| 2424 | * streams forever, we consider that unknown closed streams were |
| 2425 | * closed on RST received, which allows us to respond with an |
| 2426 | * RST without breaking the connection (eg: to abort a transfer). |
| 2427 | * Some frames have to be silently ignored as well. |
| 2428 | */ |
| 2429 | if (h2s->st == H2_SS_CLOSED && h2c->dsi) { |
Willy Tarreau | 3ad5d31 | 2019-01-29 18:33:26 +0100 | [diff] [blame] | 2430 | 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] | 2431 | /* #5.1.1: The identifier of a newly |
| 2432 | * established stream MUST be numerically |
| 2433 | * greater than all streams that the initiating |
| 2434 | * endpoint has opened or reserved. This |
| 2435 | * governs streams that are opened using a |
| 2436 | * HEADERS frame and streams that are reserved |
| 2437 | * using PUSH_PROMISE. An endpoint that |
| 2438 | * receives an unexpected stream identifier |
| 2439 | * MUST respond with a connection error. |
| 2440 | */ |
| 2441 | h2c_error(h2c, H2_ERR_STREAM_CLOSED); |
| 2442 | goto strm_err; |
| 2443 | } |
| 2444 | |
Willy Tarreau | 8d9ac3e | 2019-01-30 16:58:30 +0100 | [diff] [blame] | 2445 | if (h2s->flags & H2_SF_RST_RCVD && h2_ft_bit(h2c->dft) & H2_FT_HDR_MASK) { |
Willy Tarreau | ab83750 | 2017-12-27 15:07:30 +0100 | [diff] [blame] | 2446 | /* RFC7540#5.1:closed: an endpoint that |
| 2447 | * receives any frame other than PRIORITY after |
| 2448 | * receiving a RST_STREAM MUST treat that as a |
| 2449 | * stream error of type STREAM_CLOSED. |
| 2450 | * |
| 2451 | * Note that old streams fall into this category |
| 2452 | * and will lead to an RST being sent. |
Willy Tarreau | 8d9ac3e | 2019-01-30 16:58:30 +0100 | [diff] [blame] | 2453 | * |
| 2454 | * However, we cannot generalize this to all frame types. Those |
| 2455 | * carrying compression state must still be processed before |
| 2456 | * being dropped or we'll desynchronize the decoder. This can |
| 2457 | * happen with request trailers received after sending an |
| 2458 | * RST_STREAM, or with header/trailers responses received after |
| 2459 | * sending RST_STREAM (aborted stream). |
Willy Tarreau | ab83750 | 2017-12-27 15:07:30 +0100 | [diff] [blame] | 2460 | */ |
| 2461 | h2s_error(h2s, H2_ERR_STREAM_CLOSED); |
| 2462 | h2c->st0 = H2_CS_FRAME_E; |
| 2463 | goto strm_err; |
| 2464 | } |
| 2465 | |
| 2466 | /* RFC7540#5.1:closed: if this state is reached as a |
| 2467 | * result of sending a RST_STREAM frame, the peer that |
| 2468 | * receives the RST_STREAM might have already sent |
| 2469 | * frames on the stream that cannot be withdrawn. An |
| 2470 | * endpoint MUST ignore frames that it receives on |
| 2471 | * closed streams after it has sent a RST_STREAM |
| 2472 | * frame. An endpoint MAY choose to limit the period |
| 2473 | * over which it ignores frames and treat frames that |
| 2474 | * arrive after this time as being in error. |
| 2475 | */ |
Willy Tarreau | 24ff1f8 | 2019-01-30 19:20:09 +0100 | [diff] [blame] | 2476 | if (h2s->id && !(h2s->flags & H2_SF_RST_SENT)) { |
Willy Tarreau | ab83750 | 2017-12-27 15:07:30 +0100 | [diff] [blame] | 2477 | /* RFC7540#5.1:closed: any frame other than |
| 2478 | * PRIO/WU/RST in this state MUST be treated as |
| 2479 | * a connection error |
| 2480 | */ |
| 2481 | if (h2c->dft != H2_FT_RST_STREAM && |
| 2482 | h2c->dft != H2_FT_PRIORITY && |
| 2483 | h2c->dft != H2_FT_WINDOW_UPDATE) { |
| 2484 | h2c_error(h2c, H2_ERR_STREAM_CLOSED); |
| 2485 | goto strm_err; |
| 2486 | } |
| 2487 | } |
| 2488 | } |
| 2489 | |
Willy Tarreau | c0da196 | 2017-10-30 18:38:00 +0100 | [diff] [blame] | 2490 | #if 0 |
| 2491 | // problem below: it is not possible to completely ignore such |
| 2492 | // streams as we need to maintain the compression state as well |
| 2493 | // and for this we need to completely process these frames (eg: |
| 2494 | // HEADERS frames) as well as counting DATA frames to emit |
| 2495 | // proper WINDOW UPDATES and ensure the connection doesn't stall. |
| 2496 | // This is a typical case of layer violation where the |
| 2497 | // transported contents are critical to the connection's |
| 2498 | // validity and must be ignored at the same time :-( |
| 2499 | |
| 2500 | /* graceful shutdown, ignore streams whose ID is higher than |
| 2501 | * the one advertised in GOAWAY. RFC7540#6.8. |
| 2502 | */ |
| 2503 | if (unlikely(h2c->last_sid >= 0) && h2c->dsi > h2c->last_sid) { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2504 | ret = MIN(b_data(&h2c->dbuf), h2c->dfl); |
| 2505 | b_del(&h2c->dbuf, ret); |
Willy Tarreau | c0da196 | 2017-10-30 18:38:00 +0100 | [diff] [blame] | 2506 | h2c->dfl -= ret; |
| 2507 | ret = h2c->dfl == 0; |
| 2508 | goto strm_err; |
| 2509 | } |
| 2510 | #endif |
| 2511 | |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2512 | switch (h2c->dft) { |
Willy Tarreau | 3421aba | 2017-07-27 15:41:03 +0200 | [diff] [blame] | 2513 | case H2_FT_SETTINGS: |
| 2514 | if (h2c->st0 == H2_CS_FRAME_P) |
| 2515 | ret = h2c_handle_settings(h2c); |
| 2516 | |
| 2517 | if (h2c->st0 == H2_CS_FRAME_A) |
| 2518 | ret = h2c_ack_settings(h2c); |
| 2519 | break; |
| 2520 | |
Willy Tarreau | cf68c78 | 2017-10-10 17:11:41 +0200 | [diff] [blame] | 2521 | case H2_FT_PING: |
| 2522 | if (h2c->st0 == H2_CS_FRAME_P) |
| 2523 | ret = h2c_handle_ping(h2c); |
| 2524 | |
| 2525 | if (h2c->st0 == H2_CS_FRAME_A) |
| 2526 | ret = h2c_ack_ping(h2c); |
| 2527 | break; |
| 2528 | |
Willy Tarreau | 26f9595 | 2017-07-27 17:18:30 +0200 | [diff] [blame] | 2529 | case H2_FT_WINDOW_UPDATE: |
| 2530 | if (h2c->st0 == H2_CS_FRAME_P) |
| 2531 | ret = h2c_handle_window_update(h2c, h2s); |
| 2532 | break; |
| 2533 | |
Willy Tarreau | 61290ec | 2017-10-17 08:19:21 +0200 | [diff] [blame] | 2534 | case H2_FT_CONTINUATION: |
Willy Tarreau | ea18f86 | 2018-12-22 20:19:26 +0100 | [diff] [blame] | 2535 | /* RFC7540#6.10: CONTINUATION may only be preceeded by |
| 2536 | * a HEADERS/PUSH_PROMISE/CONTINUATION frame. These |
| 2537 | * frames' parsers consume all following CONTINUATION |
| 2538 | * frames so this one is out of sequence. |
Willy Tarreau | 61290ec | 2017-10-17 08:19:21 +0200 | [diff] [blame] | 2539 | */ |
Willy Tarreau | ea18f86 | 2018-12-22 20:19:26 +0100 | [diff] [blame] | 2540 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
| 2541 | sess_log(h2c->conn->owner); |
| 2542 | goto fail; |
Willy Tarreau | 61290ec | 2017-10-17 08:19:21 +0200 | [diff] [blame] | 2543 | |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2544 | case H2_FT_HEADERS: |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2545 | if (h2c->st0 == H2_CS_FRAME_P) { |
Willy Tarreau | c12f38f | 2018-10-08 14:53:27 +0200 | [diff] [blame] | 2546 | if (h2c->flags & H2_CF_IS_BACK) |
| 2547 | tmp_h2s = h2c_bck_handle_headers(h2c, h2s); |
| 2548 | else |
| 2549 | tmp_h2s = h2c_frt_handle_headers(h2c, h2s); |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2550 | if (tmp_h2s) { |
| 2551 | h2s = tmp_h2s; |
| 2552 | ret = 1; |
| 2553 | } |
| 2554 | } |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 2555 | break; |
| 2556 | |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 2557 | case H2_FT_DATA: |
| 2558 | if (h2c->st0 == H2_CS_FRAME_P) |
| 2559 | ret = h2c_frt_handle_data(h2c, h2s); |
| 2560 | |
| 2561 | if (h2c->st0 == H2_CS_FRAME_A) |
| 2562 | ret = h2c_send_strm_wu(h2c); |
| 2563 | break; |
Willy Tarreau | cd234e9 | 2017-08-18 10:59:39 +0200 | [diff] [blame] | 2564 | |
Willy Tarreau | 92153fc | 2017-12-03 19:46:19 +0100 | [diff] [blame] | 2565 | case H2_FT_PRIORITY: |
| 2566 | if (h2c->st0 == H2_CS_FRAME_P) |
| 2567 | ret = h2c_handle_priority(h2c); |
| 2568 | break; |
| 2569 | |
Willy Tarreau | cd234e9 | 2017-08-18 10:59:39 +0200 | [diff] [blame] | 2570 | case H2_FT_RST_STREAM: |
| 2571 | if (h2c->st0 == H2_CS_FRAME_P) |
| 2572 | ret = h2c_handle_rst_stream(h2c, h2s); |
| 2573 | break; |
| 2574 | |
Willy Tarreau | e96b092 | 2017-10-30 00:28:29 +0100 | [diff] [blame] | 2575 | case H2_FT_GOAWAY: |
| 2576 | if (h2c->st0 == H2_CS_FRAME_P) |
| 2577 | ret = h2c_handle_goaway(h2c); |
| 2578 | break; |
| 2579 | |
Willy Tarreau | 1c66198 | 2017-10-30 13:52:01 +0100 | [diff] [blame] | 2580 | /* implement all extra frame types here */ |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2581 | default: |
| 2582 | /* drop frames that we ignore. They may be larger than |
| 2583 | * the buffer so we drain all of their contents until |
| 2584 | * we reach the end. |
| 2585 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2586 | ret = MIN(b_data(&h2c->dbuf), h2c->dfl); |
| 2587 | b_del(&h2c->dbuf, ret); |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2588 | h2c->dfl -= ret; |
| 2589 | ret = h2c->dfl == 0; |
| 2590 | } |
| 2591 | |
Willy Tarreau | f182a9a | 2017-10-30 12:03:50 +0100 | [diff] [blame] | 2592 | strm_err: |
Willy Tarreau | a20a519 | 2017-12-27 11:02:06 +0100 | [diff] [blame] | 2593 | /* We may have to send an RST if not done yet */ |
| 2594 | if (h2s->st == H2_SS_ERROR) |
| 2595 | h2c->st0 = H2_CS_FRAME_E; |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 2596 | |
Willy Tarreau | a20a519 | 2017-12-27 11:02:06 +0100 | [diff] [blame] | 2597 | if (h2c->st0 == H2_CS_FRAME_E) |
| 2598 | ret = h2c_send_rst_stream(h2c, h2s); |
Willy Tarreau | 27a84c9 | 2017-10-17 08:10:17 +0200 | [diff] [blame] | 2599 | |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2600 | /* error or missing data condition met above ? */ |
Willy Tarreau | 1ed87b7 | 2018-11-25 08:45:16 +0100 | [diff] [blame] | 2601 | if (ret <= 0) |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2602 | break; |
| 2603 | |
| 2604 | if (h2c->st0 != H2_CS_FRAME_H) { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2605 | b_del(&h2c->dbuf, h2c->dfl); |
Willy Tarreau | 7e98c05 | 2017-10-10 15:56:59 +0200 | [diff] [blame] | 2606 | h2c->st0 = H2_CS_FRAME_H; |
| 2607 | } |
| 2608 | } |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 2609 | |
Willy Tarreau | cc0b8c3 | 2017-10-26 16:55:59 +0200 | [diff] [blame] | 2610 | if (h2c->rcvd_c > 0 && |
| 2611 | !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM))) |
| 2612 | h2c_send_conn_wu(h2c); |
| 2613 | |
Willy Tarreau | 52eed75 | 2017-09-22 15:05:09 +0200 | [diff] [blame] | 2614 | fail: |
| 2615 | /* we can go here on missing data, blocked response or error */ |
Willy Tarreau | 567beb8 | 2018-12-18 16:52:44 +0100 | [diff] [blame] | 2616 | if (h2s && h2s->cs && |
| 2617 | (b_data(&h2s->rxbuf) || |
Willy Tarreau | 99ad1b3 | 2019-05-14 11:46:28 +0200 | [diff] [blame] | 2618 | (H2_SS_MASK(h2s->st) & H2_SS_EOS_BITS) || |
Christopher Faulet | fa922f0 | 2019-05-07 10:55:17 +0200 | [diff] [blame] | 2619 | (h2s->flags & H2_SF_ES_RCVD) || |
| 2620 | (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] | 2621 | /* we may have to signal the upper layers */ |
| 2622 | h2s->cs->flags |= CS_FL_RCV_MORE; |
Willy Tarreau | 7e09445 | 2018-12-19 18:08:52 +0100 | [diff] [blame] | 2623 | h2s_notify_recv(h2s); |
Willy Tarreau | 2a761dc | 2018-02-26 18:50:57 +0100 | [diff] [blame] | 2624 | } |
Willy Tarreau | 1ed87b7 | 2018-11-25 08:45:16 +0100 | [diff] [blame] | 2625 | |
Olivier Houchard | 3ca18bf | 2019-04-05 15:34:34 +0200 | [diff] [blame] | 2626 | h2c_restart_reading(h2c, 0); |
Willy Tarreau | bc93393 | 2017-10-09 16:21:43 +0200 | [diff] [blame] | 2627 | } |
| 2628 | |
| 2629 | /* process Tx frames from streams to be multiplexed. Returns > 0 if it reached |
| 2630 | * the end. |
| 2631 | */ |
| 2632 | static int h2_process_mux(struct h2c *h2c) |
| 2633 | { |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 2634 | struct h2s *h2s, *h2s_back; |
Willy Tarreau | bacdf5a | 2017-10-17 10:57:04 +0200 | [diff] [blame] | 2635 | |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 2636 | if (unlikely(h2c->st0 < H2_CS_FRAME_H)) { |
| 2637 | if (unlikely(h2c->st0 == H2_CS_PREFACE && (h2c->flags & H2_CF_IS_BACK))) { |
| 2638 | if (unlikely(h2c_bck_send_preface(h2c) <= 0)) { |
| 2639 | /* RFC7540#3.5: a GOAWAY frame MAY be omitted */ |
| 2640 | if (h2c->st0 == H2_CS_ERROR) { |
| 2641 | h2c->st0 = H2_CS_ERROR2; |
| 2642 | sess_log(h2c->conn->owner); |
| 2643 | } |
| 2644 | goto fail; |
| 2645 | } |
| 2646 | h2c->st0 = H2_CS_SETTINGS1; |
| 2647 | } |
| 2648 | /* need to wait for the other side */ |
Willy Tarreau | 75a930a | 2018-12-12 08:03:58 +0100 | [diff] [blame] | 2649 | if (h2c->st0 < H2_CS_FRAME_H) |
Willy Tarreau | 01b4482 | 2018-10-03 14:26:37 +0200 | [diff] [blame] | 2650 | return 1; |
| 2651 | } |
| 2652 | |
Willy Tarreau | cc0b8c3 | 2017-10-26 16:55:59 +0200 | [diff] [blame] | 2653 | /* start by sending possibly pending window updates */ |
| 2654 | if (h2c->rcvd_c > 0 && |
| 2655 | !(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_MUX_MALLOC)) && |
| 2656 | h2c_send_conn_wu(h2c) < 0) |
| 2657 | goto fail; |
| 2658 | |
Willy Tarreau | bacdf5a | 2017-10-17 10:57:04 +0200 | [diff] [blame] | 2659 | /* First we always process the flow control list because the streams |
| 2660 | * waiting there were already elected for immediate emission but were |
| 2661 | * blocked just on this. |
| 2662 | */ |
| 2663 | |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 2664 | list_for_each_entry_safe(h2s, h2s_back, &h2c->fctl_list, list) { |
Willy Tarreau | bacdf5a | 2017-10-17 10:57:04 +0200 | [diff] [blame] | 2665 | if (h2c->mws <= 0 || h2c->flags & H2_CF_MUX_BLOCK_ANY || |
| 2666 | h2c->st0 >= H2_CS_ERROR) |
| 2667 | break; |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 2668 | |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 2669 | if (LIST_ADDED(&h2s->sending_list)) |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 2670 | continue; |
Willy Tarreau | bacdf5a | 2017-10-17 10:57:04 +0200 | [diff] [blame] | 2671 | |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 2672 | h2s->flags &= ~H2_SF_BLK_ANY; |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 2673 | /* For some reason, the upper layer failed to subsribe again, |
| 2674 | * so remove it from the send_list |
| 2675 | */ |
| 2676 | if (!h2s->send_wait) { |
| 2677 | LIST_DEL_INIT(&h2s->list); |
| 2678 | continue; |
| 2679 | } |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2680 | h2s->send_wait->events &= ~SUB_RETRY_SEND; |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 2681 | LIST_ADDQ(&h2c->sending_list, &h2s->sending_list); |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 2682 | tasklet_wakeup(h2s->send_wait->task); |
Willy Tarreau | bacdf5a | 2017-10-17 10:57:04 +0200 | [diff] [blame] | 2683 | } |
| 2684 | |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 2685 | list_for_each_entry_safe(h2s, h2s_back, &h2c->send_list, list) { |
Willy Tarreau | bacdf5a | 2017-10-17 10:57:04 +0200 | [diff] [blame] | 2686 | if (h2c->st0 >= H2_CS_ERROR || h2c->flags & H2_CF_MUX_BLOCK_ANY) |
| 2687 | break; |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 2688 | |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 2689 | if (LIST_ADDED(&h2s->sending_list)) |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 2690 | continue; |
Willy Tarreau | bacdf5a | 2017-10-17 10:57:04 +0200 | [diff] [blame] | 2691 | |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 2692 | /* For some reason, the upper layer failed to subsribe again, |
| 2693 | * so remove it from the send_list |
| 2694 | */ |
| 2695 | if (!h2s->send_wait) { |
| 2696 | LIST_DEL_INIT(&h2s->list); |
| 2697 | continue; |
| 2698 | } |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 2699 | h2s->flags &= ~H2_SF_BLK_ANY; |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2700 | h2s->send_wait->events &= ~SUB_RETRY_SEND; |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 2701 | LIST_ADDQ(&h2c->sending_list, &h2s->sending_list); |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 2702 | tasklet_wakeup(h2s->send_wait->task); |
Willy Tarreau | bacdf5a | 2017-10-17 10:57:04 +0200 | [diff] [blame] | 2703 | } |
| 2704 | |
Willy Tarreau | cc0b8c3 | 2017-10-26 16:55:59 +0200 | [diff] [blame] | 2705 | fail: |
Willy Tarreau | 3eabe9b | 2017-11-07 11:03:01 +0100 | [diff] [blame] | 2706 | if (unlikely(h2c->st0 >= H2_CS_ERROR)) { |
Willy Tarreau | 081d472 | 2017-05-16 21:51:05 +0200 | [diff] [blame] | 2707 | if (h2c->st0 == H2_CS_ERROR) { |
| 2708 | if (h2c->max_id >= 0) { |
| 2709 | h2c_send_goaway_error(h2c, NULL); |
| 2710 | if (h2c->flags & H2_CF_MUX_BLOCK_ANY) |
| 2711 | return 0; |
| 2712 | } |
| 2713 | |
| 2714 | h2c->st0 = H2_CS_ERROR2; // sent (or failed hard) ! |
| 2715 | } |
| 2716 | return 1; |
| 2717 | } |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 2718 | return (1); |
Willy Tarreau | bc93393 | 2017-10-09 16:21:43 +0200 | [diff] [blame] | 2719 | } |
| 2720 | |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 2721 | |
Willy Tarreau | 479998a | 2018-11-18 06:30:59 +0100 | [diff] [blame] | 2722 | /* Attempt to read data, and subscribe if none available. |
| 2723 | * The function returns 1 if data has been received, otherwise zero. |
| 2724 | */ |
Olivier Houchard | d4dd22d | 2018-08-17 18:39:46 +0200 | [diff] [blame] | 2725 | static int h2_recv(struct h2c *h2c) |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 2726 | { |
Olivier Houchard | af4021e | 2018-08-09 13:06:55 +0200 | [diff] [blame] | 2727 | struct connection *conn = h2c->conn; |
Willy Tarreau | 35dbd5d | 2017-09-22 09:13:49 +0200 | [diff] [blame] | 2728 | struct buffer *buf; |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2729 | int max; |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 2730 | size_t ret; |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2731 | |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2732 | if (h2c->wait_event.events & SUB_RETRY_RECV) |
Olivier Houchard | 81a15af | 2018-10-19 17:26:49 +0200 | [diff] [blame] | 2733 | return (b_data(&h2c->dbuf)); |
Olivier Houchard | af4021e | 2018-08-09 13:06:55 +0200 | [diff] [blame] | 2734 | |
Willy Tarreau | 315d807 | 2017-12-10 22:17:57 +0100 | [diff] [blame] | 2735 | if (!h2_recv_allowed(h2c)) |
Olivier Houchard | 81a15af | 2018-10-19 17:26:49 +0200 | [diff] [blame] | 2736 | return 1; |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2737 | |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 2738 | buf = h2_get_buf(h2c, &h2c->dbuf); |
Willy Tarreau | 1b62c5c | 2017-09-25 11:55:01 +0200 | [diff] [blame] | 2739 | if (!buf) { |
| 2740 | h2c->flags |= H2_CF_DEM_DALLOC; |
Olivier Houchard | d4dd22d | 2018-08-17 18:39:46 +0200 | [diff] [blame] | 2741 | return 0; |
Willy Tarreau | 1b62c5c | 2017-09-25 11:55:01 +0200 | [diff] [blame] | 2742 | } |
Willy Tarreau | 35dbd5d | 2017-09-22 09:13:49 +0200 | [diff] [blame] | 2743 | |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 2744 | do { |
Willy Tarreau | e0f24ee | 2018-12-14 10:51:23 +0100 | [diff] [blame] | 2745 | b_realign_if_empty(buf); |
Willy Tarreau | 2a59e87 | 2018-12-12 08:23:47 +0100 | [diff] [blame] | 2746 | if (!b_data(buf) && (h2c->proxy->options2 & PR_O2_USE_HTX)) { |
| 2747 | /* HTX in use : try to pre-align the buffer like the |
| 2748 | * rxbufs will be to optimize memory copies. We'll make |
| 2749 | * sure that the frame header lands at the end of the |
| 2750 | * HTX block to alias it upon recv. We cannot use the |
| 2751 | * head because rcv_buf() will realign the buffer if |
| 2752 | * it's empty. Thus we cheat and pretend we already |
| 2753 | * have a few bytes there. |
| 2754 | */ |
| 2755 | max = buf_room_for_htx_data(buf) + 9; |
Willy Tarreau | c0960d1 | 2018-12-14 10:59:15 +0100 | [diff] [blame] | 2756 | buf->head = sizeof(struct htx) - 9; |
Willy Tarreau | 2a59e87 | 2018-12-12 08:23:47 +0100 | [diff] [blame] | 2757 | } |
| 2758 | else |
| 2759 | max = b_room(buf); |
| 2760 | |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 2761 | if (max) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 2762 | ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, buf, max, 0); |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 2763 | else |
| 2764 | ret = 0; |
| 2765 | } while (ret > 0); |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2766 | |
Olivier Houchard | 53216e7 | 2018-10-10 15:46:36 +0200 | [diff] [blame] | 2767 | if (h2_recv_allowed(h2c) && (b_data(buf) < buf->size)) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 2768 | 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] | 2769 | |
Olivier Houchard | a1411e6 | 2018-08-17 18:42:48 +0200 | [diff] [blame] | 2770 | if (!b_data(buf)) { |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 2771 | h2_release_buf(h2c, &h2c->dbuf); |
Olivier Houchard | 4667773 | 2018-11-29 17:06:17 +0100 | [diff] [blame] | 2772 | return (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn)); |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2773 | } |
| 2774 | |
Willy Tarreau | b7b5fe1 | 2018-06-18 13:33:09 +0200 | [diff] [blame] | 2775 | if (b_data(buf) == buf->size) |
Willy Tarreau | fbe3b4f | 2017-10-09 15:14:19 +0200 | [diff] [blame] | 2776 | h2c->flags |= H2_CF_DEM_DFULL; |
Olivier Houchard | d4dd22d | 2018-08-17 18:39:46 +0200 | [diff] [blame] | 2777 | return 1; |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 2778 | } |
| 2779 | |
Willy Tarreau | 479998a | 2018-11-18 06:30:59 +0100 | [diff] [blame] | 2780 | /* Try to send data if possible. |
| 2781 | * The function returns 1 if data have been sent, otherwise zero. |
| 2782 | */ |
Olivier Houchard | d4dd22d | 2018-08-17 18:39:46 +0200 | [diff] [blame] | 2783 | static int h2_send(struct h2c *h2c) |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 2784 | { |
Olivier Houchard | 29fb89d | 2018-08-02 18:56:36 +0200 | [diff] [blame] | 2785 | struct connection *conn = h2c->conn; |
Willy Tarreau | bc93393 | 2017-10-09 16:21:43 +0200 | [diff] [blame] | 2786 | int done; |
Olivier Houchard | d4dd22d | 2018-08-17 18:39:46 +0200 | [diff] [blame] | 2787 | int sent = 0; |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2788 | |
| 2789 | if (conn->flags & CO_FL_ERROR) |
Olivier Houchard | 7c6f8b1 | 2018-11-13 16:48:36 +0100 | [diff] [blame] | 2790 | return 1; |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2791 | |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 2792 | |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2793 | if (conn->flags & (CO_FL_HANDSHAKE|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) { |
| 2794 | /* a handshake was requested */ |
Olivier Houchard | d4dd22d | 2018-08-17 18:39:46 +0200 | [diff] [blame] | 2795 | goto schedule; |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2796 | } |
| 2797 | |
Willy Tarreau | bc93393 | 2017-10-09 16:21:43 +0200 | [diff] [blame] | 2798 | /* This loop is quite simple : it tries to fill as much as it can from |
| 2799 | * pending streams into the existing buffer until it's reportedly full |
| 2800 | * or the end of send requests is reached. Then it tries to send this |
| 2801 | * buffer's contents out, marks it not full if at least one byte could |
| 2802 | * be sent, and tries again. |
| 2803 | * |
| 2804 | * The snd_buf() function normally takes a "flags" argument which may |
| 2805 | * be made of a combination of CO_SFL_MSG_MORE to indicate that more |
| 2806 | * data immediately comes and CO_SFL_STREAMER to indicate that the |
| 2807 | * connection is streaming lots of data (used to increase TLS record |
| 2808 | * size at the expense of latency). The former can be sent any time |
| 2809 | * there's a buffer full flag, as it indicates at least one stream |
| 2810 | * attempted to send and failed so there are pending data. An |
| 2811 | * alternative would be to set it as long as there's an active stream |
| 2812 | * but that would be problematic for ACKs until we have an absolute |
| 2813 | * guarantee that all waiters have at least one byte to send. The |
| 2814 | * latter should possibly not be set for now. |
| 2815 | */ |
| 2816 | |
| 2817 | done = 0; |
| 2818 | while (!done) { |
| 2819 | unsigned int flags = 0; |
Willy Tarreau | 41c4d6a | 2019-05-26 09:49:17 +0200 | [diff] [blame] | 2820 | unsigned int released = 0; |
| 2821 | struct buffer *buf; |
Willy Tarreau | bc93393 | 2017-10-09 16:21:43 +0200 | [diff] [blame] | 2822 | |
| 2823 | /* fill as much as we can into the current buffer */ |
| 2824 | while (((h2c->flags & (H2_CF_MUX_MFULL|H2_CF_MUX_MALLOC)) == 0) && !done) |
| 2825 | done = h2_process_mux(h2c); |
| 2826 | |
Olivier Houchard | 2b09443 | 2019-01-29 18:28:36 +0100 | [diff] [blame] | 2827 | if (h2c->flags & H2_CF_MUX_MALLOC) |
Willy Tarreau | 7f1265a | 2019-05-29 17:36:37 +0200 | [diff] [blame] | 2828 | done = 1; // we won't go further without extra buffers |
Olivier Houchard | 2b09443 | 2019-01-29 18:28:36 +0100 | [diff] [blame] | 2829 | |
Willy Tarreau | bc93393 | 2017-10-09 16:21:43 +0200 | [diff] [blame] | 2830 | if (conn->flags & CO_FL_ERROR) |
| 2831 | break; |
| 2832 | |
| 2833 | if (h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MBUSY | H2_CF_DEM_MROOM)) |
| 2834 | flags |= CO_SFL_MSG_MORE; |
| 2835 | |
Willy Tarreau | 41c4d6a | 2019-05-26 09:49:17 +0200 | [diff] [blame] | 2836 | for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) { |
| 2837 | if (b_data(buf)) { |
| 2838 | 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] | 2839 | if (!ret) { |
| 2840 | done = 1; |
Willy Tarreau | 41c4d6a | 2019-05-26 09:49:17 +0200 | [diff] [blame] | 2841 | break; |
Willy Tarreau | 7f1265a | 2019-05-29 17:36:37 +0200 | [diff] [blame] | 2842 | } |
Willy Tarreau | 41c4d6a | 2019-05-26 09:49:17 +0200 | [diff] [blame] | 2843 | sent = 1; |
| 2844 | b_del(buf, ret); |
Willy Tarreau | 7f1265a | 2019-05-29 17:36:37 +0200 | [diff] [blame] | 2845 | if (b_data(buf)) { |
| 2846 | done = 1; |
Willy Tarreau | 41c4d6a | 2019-05-26 09:49:17 +0200 | [diff] [blame] | 2847 | break; |
Willy Tarreau | 7f1265a | 2019-05-29 17:36:37 +0200 | [diff] [blame] | 2848 | } |
Willy Tarreau | 41c4d6a | 2019-05-26 09:49:17 +0200 | [diff] [blame] | 2849 | } |
| 2850 | b_free(buf); |
| 2851 | released++; |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 2852 | } |
Willy Tarreau | bc93393 | 2017-10-09 16:21:43 +0200 | [diff] [blame] | 2853 | |
Willy Tarreau | 41c4d6a | 2019-05-26 09:49:17 +0200 | [diff] [blame] | 2854 | if (released) |
Willy Tarreau | 201840a | 2019-05-29 17:50:48 +0200 | [diff] [blame] | 2855 | offer_buffers(NULL, tasks_run_queue); |
Willy Tarreau | 41c4d6a | 2019-05-26 09:49:17 +0200 | [diff] [blame] | 2856 | |
Willy Tarreau | bc93393 | 2017-10-09 16:21:43 +0200 | [diff] [blame] | 2857 | /* wrote at least one byte, the buffer is not full anymore */ |
| 2858 | h2c->flags &= ~(H2_CF_MUX_MFULL | H2_CF_DEM_MROOM); |
| 2859 | } |
| 2860 | |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2861 | if (conn->flags & CO_FL_SOCK_WR_SH) { |
| 2862 | /* output closed, nothing to send, clear the buffer to release it */ |
Willy Tarreau | 5133096 | 2019-05-26 09:38:07 +0200 | [diff] [blame] | 2863 | b_reset(br_tail(h2c->mbuf)); |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2864 | } |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 2865 | /* We're not full anymore, so we can wake any task that are waiting |
| 2866 | * for us. |
| 2867 | */ |
| 2868 | if (!(h2c->flags & (H2_CF_MUX_MFULL | H2_CF_DEM_MROOM))) { |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 2869 | struct h2s *h2s; |
| 2870 | |
| 2871 | list_for_each_entry(h2s, &h2c->send_list, list) { |
| 2872 | if (h2c->st0 >= H2_CS_ERROR || h2c->flags & H2_CF_MUX_BLOCK_ANY) |
| 2873 | break; |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 2874 | |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 2875 | if (LIST_ADDED(&h2s->sending_list)) |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 2876 | continue; |
| 2877 | |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 2878 | /* For some reason, the upper layer failed to subsribe again, |
| 2879 | * so remove it from the send_list |
| 2880 | */ |
| 2881 | if (!h2s->send_wait) { |
| 2882 | LIST_DEL_INIT(&h2s->list); |
| 2883 | continue; |
| 2884 | } |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 2885 | h2s->flags &= ~H2_SF_BLK_ANY; |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2886 | h2s->send_wait->events &= ~SUB_RETRY_SEND; |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 2887 | tasklet_wakeup(h2s->send_wait->task); |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 2888 | LIST_ADDQ(&h2c->sending_list, &h2s->sending_list); |
Olivier Houchard | 4cf7fb1 | 2018-08-02 19:23:05 +0200 | [diff] [blame] | 2889 | } |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 2890 | } |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 2891 | /* We're done, no more to send */ |
Willy Tarreau | 662fafc | 2019-05-26 09:43:07 +0200 | [diff] [blame] | 2892 | if (!br_data(h2c->mbuf)) |
Olivier Houchard | d4dd22d | 2018-08-17 18:39:46 +0200 | [diff] [blame] | 2893 | return sent; |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 2894 | schedule: |
Willy Tarreau | 7f1265a | 2019-05-29 17:36:37 +0200 | [diff] [blame] | 2895 | 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] | 2896 | 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] | 2897 | |
Olivier Houchard | d4dd22d | 2018-08-17 18:39:46 +0200 | [diff] [blame] | 2898 | return sent; |
Olivier Houchard | 29fb89d | 2018-08-02 18:56:36 +0200 | [diff] [blame] | 2899 | } |
| 2900 | |
Willy Tarreau | 749f5ca | 2019-03-21 19:19:36 +0100 | [diff] [blame] | 2901 | /* this is the tasklet referenced in h2c->wait_event.task */ |
Olivier Houchard | 29fb89d | 2018-08-02 18:56:36 +0200 | [diff] [blame] | 2902 | static struct task *h2_io_cb(struct task *t, void *ctx, unsigned short status) |
| 2903 | { |
| 2904 | struct h2c *h2c = ctx; |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 2905 | int ret = 0; |
Olivier Houchard | 29fb89d | 2018-08-02 18:56:36 +0200 | [diff] [blame] | 2906 | |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2907 | if (!(h2c->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 2908 | ret = h2_send(h2c); |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2909 | if (!(h2c->wait_event.events & SUB_RETRY_RECV)) |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 2910 | ret |= h2_recv(h2c); |
Willy Tarreau | cef5c8e | 2018-12-18 10:29:54 +0100 | [diff] [blame] | 2911 | if (ret || b_data(&h2c->dbuf)) |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 2912 | h2_process(h2c); |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 2913 | return NULL; |
Willy Tarreau | fbe3b4f | 2017-10-09 15:14:19 +0200 | [diff] [blame] | 2914 | } |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2915 | |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 2916 | /* callback called on any event by the connection handler. |
| 2917 | * It applies changes and returns zero, or < 0 if it wants immediate |
| 2918 | * destruction of the connection (which normally doesn not happen in h2). |
| 2919 | */ |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 2920 | static int h2_process(struct h2c *h2c) |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 2921 | { |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 2922 | struct connection *conn = h2c->conn; |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2923 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2924 | if (b_data(&h2c->dbuf) && !(h2c->flags & H2_CF_DEM_BLOCK_ANY)) { |
Willy Tarreau | d13bf27 | 2017-12-14 10:34:52 +0100 | [diff] [blame] | 2925 | h2_process_demux(h2c); |
| 2926 | |
| 2927 | if (h2c->st0 >= H2_CS_ERROR || conn->flags & CO_FL_ERROR) |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2928 | b_reset(&h2c->dbuf); |
Willy Tarreau | d13bf27 | 2017-12-14 10:34:52 +0100 | [diff] [blame] | 2929 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2930 | if (!b_full(&h2c->dbuf)) |
Willy Tarreau | d13bf27 | 2017-12-14 10:34:52 +0100 | [diff] [blame] | 2931 | h2c->flags &= ~H2_CF_DEM_DFULL; |
| 2932 | } |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 2933 | h2_send(h2c); |
Willy Tarreau | d13bf27 | 2017-12-14 10:34:52 +0100 | [diff] [blame] | 2934 | |
Willy Tarreau | 0b37d65 | 2018-10-03 10:33:02 +0200 | [diff] [blame] | 2935 | if (unlikely(h2c->proxy->state == PR_STSTOPPED)) { |
Willy Tarreau | 8ec1406 | 2017-12-30 18:08:13 +0100 | [diff] [blame] | 2936 | /* frontend is stopping, reload likely in progress, let's try |
| 2937 | * to announce a graceful shutdown if not yet done. We don't |
| 2938 | * care if it fails, it will be tried again later. |
| 2939 | */ |
| 2940 | if (!(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) { |
| 2941 | if (h2c->last_sid < 0) |
| 2942 | h2c->last_sid = (1U << 31) - 1; |
| 2943 | h2c_send_goaway_error(h2c, NULL); |
| 2944 | } |
| 2945 | } |
| 2946 | |
Olivier Houchard | 7fc96d5 | 2017-11-23 18:25:47 +0100 | [diff] [blame] | 2947 | /* |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 2948 | * If we received early data, and the handshake is done, wake |
| 2949 | * any stream that was waiting for it. |
Olivier Houchard | 7fc96d5 | 2017-11-23 18:25:47 +0100 | [diff] [blame] | 2950 | */ |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 2951 | if (!(h2c->flags & H2_CF_WAIT_FOR_HS) && |
| 2952 | (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_HANDSHAKE | CO_FL_EARLY_DATA)) == CO_FL_EARLY_DATA) { |
| 2953 | struct eb32_node *node; |
| 2954 | struct h2s *h2s; |
| 2955 | |
| 2956 | h2c->flags |= H2_CF_WAIT_FOR_HS; |
| 2957 | node = eb32_lookup_ge(&h2c->streams_by_id, 1); |
| 2958 | |
| 2959 | while (node) { |
| 2960 | h2s = container_of(node, struct h2s, by_id); |
Willy Tarreau | fde287c | 2018-12-19 18:33:16 +0100 | [diff] [blame] | 2961 | if (h2s->cs && h2s->cs->flags & CS_FL_WAIT_FOR_HS) |
Willy Tarreau | 7e09445 | 2018-12-19 18:08:52 +0100 | [diff] [blame] | 2962 | h2s_notify_recv(h2s); |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 2963 | node = eb32_next(node); |
| 2964 | } |
Olivier Houchard | 7fc96d5 | 2017-11-23 18:25:47 +0100 | [diff] [blame] | 2965 | } |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 2966 | |
Willy Tarreau | 26bd761 | 2017-10-09 16:47:04 +0200 | [diff] [blame] | 2967 | if (conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(conn) || |
Willy Tarreau | 29a9824 | 2017-10-31 06:59:15 +0100 | [diff] [blame] | 2968 | h2c->st0 == H2_CS_ERROR2 || h2c->flags & H2_CF_GOAWAY_FAILED || |
| 2969 | (eb_is_empty(&h2c->streams_by_id) && h2c->last_sid >= 0 && |
| 2970 | h2c->max_id >= h2c->last_sid)) { |
Willy Tarreau | 2348291 | 2019-05-07 15:23:14 +0200 | [diff] [blame] | 2971 | h2_wake_some_streams(h2c, 0); |
Willy Tarreau | fbe3b4f | 2017-10-09 15:14:19 +0200 | [diff] [blame] | 2972 | |
| 2973 | if (eb_is_empty(&h2c->streams_by_id)) { |
| 2974 | /* no more stream, kill the connection now */ |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 2975 | h2_release(h2c); |
Willy Tarreau | fbe3b4f | 2017-10-09 15:14:19 +0200 | [diff] [blame] | 2976 | return -1; |
| 2977 | } |
Willy Tarreau | fbe3b4f | 2017-10-09 15:14:19 +0200 | [diff] [blame] | 2978 | } |
| 2979 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 2980 | if (!b_data(&h2c->dbuf)) |
Willy Tarreau | 44e973f | 2018-03-01 17:49:30 +0100 | [diff] [blame] | 2981 | h2_release_buf(h2c, &h2c->dbuf); |
Willy Tarreau | fbe3b4f | 2017-10-09 15:14:19 +0200 | [diff] [blame] | 2982 | |
Olivier Houchard | 53216e7 | 2018-10-10 15:46:36 +0200 | [diff] [blame] | 2983 | if ((conn->flags & CO_FL_SOCK_WR_SH) || |
| 2984 | h2c->st0 == H2_CS_ERROR2 || (h2c->flags & H2_CF_GOAWAY_FAILED) || |
| 2985 | (h2c->st0 != H2_CS_ERROR && |
Willy Tarreau | 662fafc | 2019-05-26 09:43:07 +0200 | [diff] [blame] | 2986 | !br_data(h2c->mbuf) && |
Olivier Houchard | 53216e7 | 2018-10-10 15:46:36 +0200 | [diff] [blame] | 2987 | (h2c->mws <= 0 || LIST_ISEMPTY(&h2c->fctl_list)) && |
| 2988 | ((h2c->flags & H2_CF_MUX_BLOCK_ANY) || LIST_ISEMPTY(&h2c->send_list)))) |
Willy Tarreau | 2e3c000 | 2019-05-26 09:45:23 +0200 | [diff] [blame] | 2989 | h2_release_mbuf(h2c); |
Willy Tarreau | a2af512 | 2017-10-09 11:56:46 +0200 | [diff] [blame] | 2990 | |
Willy Tarreau | 3f13357 | 2017-10-31 19:21:06 +0100 | [diff] [blame] | 2991 | if (h2c->task) { |
Willy Tarreau | 662fafc | 2019-05-26 09:43:07 +0200 | [diff] [blame] | 2992 | if (eb_is_empty(&h2c->streams_by_id) || br_data(h2c->mbuf)) { |
Willy Tarreau | 599391a | 2017-11-24 10:16:00 +0100 | [diff] [blame] | 2993 | h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout); |
Willy Tarreau | 3f13357 | 2017-10-31 19:21:06 +0100 | [diff] [blame] | 2994 | task_queue(h2c->task); |
| 2995 | } |
| 2996 | else |
| 2997 | h2c->task->expire = TICK_ETERNITY; |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 2998 | } |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 2999 | |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 3000 | h2_send(h2c); |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3001 | return 0; |
| 3002 | } |
| 3003 | |
Willy Tarreau | 749f5ca | 2019-03-21 19:19:36 +0100 | [diff] [blame] | 3004 | /* wake-up function called by the connection layer (mux_ops.wake) */ |
Olivier Houchard | 21df6cc | 2018-09-14 23:21:44 +0200 | [diff] [blame] | 3005 | static int h2_wake(struct connection *conn) |
| 3006 | { |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 3007 | struct h2c *h2c = conn->ctx; |
Olivier Houchard | 21df6cc | 2018-09-14 23:21:44 +0200 | [diff] [blame] | 3008 | |
| 3009 | return (h2_process(h2c)); |
| 3010 | } |
| 3011 | |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3012 | /* Connection timeout management. The principle is that if there's no receipt |
| 3013 | * nor sending for a certain amount of time, the connection is closed. If the |
| 3014 | * MUX buffer still has lying data or is not allocatable, the connection is |
| 3015 | * immediately killed. If it's allocatable and empty, we attempt to send a |
| 3016 | * GOAWAY frame. |
| 3017 | */ |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 3018 | 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] | 3019 | { |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 3020 | struct h2c *h2c = context; |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3021 | int expired = tick_is_expired(t->expire, now_ms); |
| 3022 | |
Willy Tarreau | 0975f11 | 2018-03-29 15:22:59 +0200 | [diff] [blame] | 3023 | if (!expired && h2c) |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3024 | return t; |
| 3025 | |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 3026 | task_destroy(t); |
Willy Tarreau | 0975f11 | 2018-03-29 15:22:59 +0200 | [diff] [blame] | 3027 | |
| 3028 | if (!h2c) { |
| 3029 | /* resources were already deleted */ |
| 3030 | return NULL; |
| 3031 | } |
| 3032 | |
| 3033 | h2c->task = NULL; |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3034 | h2c_error(h2c, H2_ERR_NO_ERROR); |
Willy Tarreau | 2348291 | 2019-05-07 15:23:14 +0200 | [diff] [blame] | 3035 | h2_wake_some_streams(h2c, 0); |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3036 | |
Willy Tarreau | 662fafc | 2019-05-26 09:43:07 +0200 | [diff] [blame] | 3037 | if (br_data(h2c->mbuf)) { |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3038 | /* don't even try to send a GOAWAY, the buffer is stuck */ |
| 3039 | h2c->flags |= H2_CF_GOAWAY_FAILED; |
| 3040 | } |
| 3041 | |
| 3042 | /* try to send but no need to insist */ |
Willy Tarreau | 599391a | 2017-11-24 10:16:00 +0100 | [diff] [blame] | 3043 | h2c->last_sid = h2c->max_id; |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3044 | if (h2c_send_goaway_error(h2c, NULL) <= 0) |
| 3045 | h2c->flags |= H2_CF_GOAWAY_FAILED; |
| 3046 | |
Willy Tarreau | 662fafc | 2019-05-26 09:43:07 +0200 | [diff] [blame] | 3047 | 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] | 3048 | unsigned int released = 0; |
| 3049 | struct buffer *buf; |
| 3050 | |
| 3051 | for (buf = br_head(h2c->mbuf); b_size(buf); buf = br_del_head(h2c->mbuf)) { |
| 3052 | if (b_data(buf)) { |
| 3053 | int ret = h2c->conn->xprt->snd_buf(h2c->conn, h2c->conn->xprt_ctx, buf, b_data(buf), 0); |
| 3054 | if (!ret) |
| 3055 | break; |
| 3056 | b_del(buf, ret); |
| 3057 | if (b_data(buf)) |
| 3058 | break; |
| 3059 | b_free(buf); |
| 3060 | released++; |
| 3061 | } |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 3062 | } |
Willy Tarreau | 41c4d6a | 2019-05-26 09:49:17 +0200 | [diff] [blame] | 3063 | |
| 3064 | if (released) |
Willy Tarreau | 201840a | 2019-05-29 17:50:48 +0200 | [diff] [blame] | 3065 | offer_buffers(NULL, tasks_run_queue); |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 3066 | } |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3067 | |
Willy Tarreau | 0975f11 | 2018-03-29 15:22:59 +0200 | [diff] [blame] | 3068 | /* either we can release everything now or it will be done later once |
| 3069 | * the last stream closes. |
| 3070 | */ |
| 3071 | if (eb_is_empty(&h2c->streams_by_id)) |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 3072 | h2_release(h2c); |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3073 | |
Willy Tarreau | ea39282 | 2017-10-31 10:02:25 +0100 | [diff] [blame] | 3074 | return NULL; |
| 3075 | } |
| 3076 | |
| 3077 | |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3078 | /*******************************************/ |
| 3079 | /* functions below are used by the streams */ |
| 3080 | /*******************************************/ |
| 3081 | |
| 3082 | /* |
| 3083 | * Attach a new stream to a connection |
| 3084 | * (Used for outgoing connections) |
| 3085 | */ |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 3086 | static struct conn_stream *h2_attach(struct connection *conn, struct session *sess) |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3087 | { |
Olivier Houchard | 7a57e8a | 2018-11-27 17:36:33 +0100 | [diff] [blame] | 3088 | struct conn_stream *cs; |
| 3089 | struct h2s *h2s; |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 3090 | struct h2c *h2c = conn->ctx; |
Olivier Houchard | 7a57e8a | 2018-11-27 17:36:33 +0100 | [diff] [blame] | 3091 | |
| 3092 | cs = cs_new(conn); |
| 3093 | if (!cs) |
| 3094 | return NULL; |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 3095 | h2s = h2c_bck_stream_new(h2c, cs, sess); |
Olivier Houchard | 7a57e8a | 2018-11-27 17:36:33 +0100 | [diff] [blame] | 3096 | if (!h2s) { |
| 3097 | cs_free(cs); |
| 3098 | return NULL; |
| 3099 | } |
| 3100 | return cs; |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3101 | } |
| 3102 | |
Willy Tarreau | fafd398 | 2018-11-18 21:29:20 +0100 | [diff] [blame] | 3103 | /* Retrieves the first valid conn_stream from this connection, or returns NULL. |
| 3104 | * We have to scan because we may have some orphan streams. It might be |
| 3105 | * beneficial to scan backwards from the end to reduce the likeliness to find |
| 3106 | * orphans. |
| 3107 | */ |
| 3108 | static const struct conn_stream *h2_get_first_cs(const struct connection *conn) |
| 3109 | { |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 3110 | struct h2c *h2c = conn->ctx; |
Willy Tarreau | fafd398 | 2018-11-18 21:29:20 +0100 | [diff] [blame] | 3111 | struct h2s *h2s; |
| 3112 | struct eb32_node *node; |
| 3113 | |
| 3114 | node = eb32_first(&h2c->streams_by_id); |
| 3115 | while (node) { |
| 3116 | h2s = container_of(node, struct h2s, by_id); |
| 3117 | if (h2s->cs) |
| 3118 | return h2s->cs; |
| 3119 | node = eb32_next(node); |
| 3120 | } |
| 3121 | return NULL; |
| 3122 | } |
| 3123 | |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3124 | /* |
Olivier Houchard | 060ed43 | 2018-11-06 16:32:42 +0100 | [diff] [blame] | 3125 | * Destroy the mux and the associated connection, if it is no longer used |
| 3126 | */ |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 3127 | static void h2_destroy(void *ctx) |
Olivier Houchard | 060ed43 | 2018-11-06 16:32:42 +0100 | [diff] [blame] | 3128 | { |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 3129 | struct h2c *h2c = ctx; |
Olivier Houchard | 060ed43 | 2018-11-06 16:32:42 +0100 | [diff] [blame] | 3130 | |
Christopher Faulet | 39a96ee | 2019-04-08 10:52:21 +0200 | [diff] [blame] | 3131 | 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] | 3132 | h2_release(h2c); |
Olivier Houchard | 060ed43 | 2018-11-06 16:32:42 +0100 | [diff] [blame] | 3133 | } |
| 3134 | |
| 3135 | /* |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3136 | * Detach the stream from the connection and possibly release the connection. |
| 3137 | */ |
| 3138 | static void h2_detach(struct conn_stream *cs) |
| 3139 | { |
Willy Tarreau | 6093514 | 2017-10-16 18:11:19 +0200 | [diff] [blame] | 3140 | struct h2s *h2s = cs->ctx; |
| 3141 | struct h2c *h2c; |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 3142 | struct session *sess; |
Willy Tarreau | 6093514 | 2017-10-16 18:11:19 +0200 | [diff] [blame] | 3143 | |
| 3144 | cs->ctx = NULL; |
| 3145 | if (!h2s) |
| 3146 | return; |
| 3147 | |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 3148 | /* 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] | 3149 | if (LIST_ADDED(&h2s->sending_list) && |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 3150 | h2s->send_wait != &h2s->wait_event) { |
| 3151 | task_remove_from_tasklet_list((struct task *)h2s->send_wait->task); |
| 3152 | LIST_DEL_INIT(&h2s->sending_list); |
Olivier Houchard | d9986ed | 2019-05-09 13:24:08 +0200 | [diff] [blame] | 3153 | /* |
| 3154 | * At this point, the stream_interface is supposed to have called |
| 3155 | * h2_unsubscribe(), so the only way there's still a |
| 3156 | * subscription that came from the stream_interface (as we |
| 3157 | * can subscribe ourself, in h2_do_shutw() and h2_do_shutr(), |
| 3158 | * without the stream_interface involved) is that we subscribed |
| 3159 | * for sending, we woke the tasklet up and removed the |
| 3160 | * SUB_RETRY_SEND flag, so the stream_interface would not |
| 3161 | * know it has to unsubscribe for send, but the tasklet hasn't |
| 3162 | * run yet. Make sure to handle that by explicitely setting |
| 3163 | * send_wait to NULL, as nothing else will do it for us. |
| 3164 | */ |
| 3165 | h2s->send_wait = NULL; |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 3166 | } |
| 3167 | |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 3168 | sess = h2s->sess; |
Willy Tarreau | 6093514 | 2017-10-16 18:11:19 +0200 | [diff] [blame] | 3169 | h2c = h2s->h2c; |
| 3170 | h2s->cs = NULL; |
Willy Tarreau | 7ac60e8 | 2018-07-19 09:04:05 +0200 | [diff] [blame] | 3171 | h2c->nb_cs--; |
Willy Tarreau | fa1d357 | 2019-01-31 10:31:51 +0100 | [diff] [blame] | 3172 | if ((h2c->flags & (H2_CF_IS_BACK|H2_CF_DEM_TOOMANY)) == H2_CF_DEM_TOOMANY && |
| 3173 | !h2_frt_has_too_many_cs(h2c)) { |
| 3174 | /* frontend connection was blocking new streams creation */ |
Willy Tarreau | f210191 | 2018-07-19 10:11:38 +0200 | [diff] [blame] | 3175 | h2c->flags &= ~H2_CF_DEM_TOOMANY; |
Olivier Houchard | 3ca18bf | 2019-04-05 15:34:34 +0200 | [diff] [blame] | 3176 | h2c_restart_reading(h2c, 1); |
Willy Tarreau | f210191 | 2018-07-19 10:11:38 +0200 | [diff] [blame] | 3177 | } |
Willy Tarreau | 6093514 | 2017-10-16 18:11:19 +0200 | [diff] [blame] | 3178 | |
Willy Tarreau | 22cf59b | 2017-11-10 11:42:33 +0100 | [diff] [blame] | 3179 | /* this stream may be blocked waiting for some data to leave (possibly |
| 3180 | * an ES or RST frame), so orphan it in this case. |
| 3181 | */ |
Willy Tarreau | 3041fcc | 2018-03-29 15:41:32 +0200 | [diff] [blame] | 3182 | if (!(cs->conn->flags & CO_FL_ERROR) && |
Willy Tarreau | a2b5181 | 2018-07-27 09:55:14 +0200 | [diff] [blame] | 3183 | (h2c->st0 < H2_CS_ERROR) && |
Olivier Houchard | 16ff261 | 2019-03-21 15:48:46 +0100 | [diff] [blame] | 3184 | (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] | 3185 | return; |
| 3186 | |
Willy Tarreau | 45f752e | 2017-10-30 15:44:59 +0100 | [diff] [blame] | 3187 | if ((h2c->flags & H2_CF_DEM_BLOCK_ANY && h2s->id == h2c->dsi) || |
| 3188 | (h2c->flags & H2_CF_MUX_BLOCK_ANY && h2s->id == h2c->msi)) { |
| 3189 | /* unblock the connection if it was blocked on this |
| 3190 | * stream. |
| 3191 | */ |
| 3192 | h2c->flags &= ~H2_CF_DEM_BLOCK_ANY; |
| 3193 | h2c->flags &= ~H2_CF_MUX_BLOCK_ANY; |
Olivier Houchard | 3ca18bf | 2019-04-05 15:34:34 +0200 | [diff] [blame] | 3194 | h2c_restart_reading(h2c, 1); |
Willy Tarreau | 45f752e | 2017-10-30 15:44:59 +0100 | [diff] [blame] | 3195 | } |
| 3196 | |
Willy Tarreau | 71049cc | 2018-03-28 13:56:39 +0200 | [diff] [blame] | 3197 | h2s_destroy(h2s); |
Willy Tarreau | 6093514 | 2017-10-16 18:11:19 +0200 | [diff] [blame] | 3198 | |
Olivier Houchard | 8a78690 | 2018-12-15 16:05:40 +0100 | [diff] [blame] | 3199 | if (h2c->flags & H2_CF_IS_BACK && |
| 3200 | (h2c->proxy->options2 & PR_O2_USE_HTX)) { |
Olivier Houchard | 8a78690 | 2018-12-15 16:05:40 +0100 | [diff] [blame] | 3201 | if (!(h2c->conn->flags & |
| 3202 | (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) { |
| 3203 | if (!h2c->conn->owner) { |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 3204 | h2c->conn->owner = sess; |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 3205 | if (!session_add_conn(sess, h2c->conn, h2c->conn->target)) { |
| 3206 | h2c->conn->owner = NULL; |
| 3207 | if (eb_is_empty(&h2c->streams_by_id)) { |
| 3208 | if (!srv_add_to_idle_list(objt_server(h2c->conn->target), h2c->conn)) |
| 3209 | /* The server doesn't want it, let's kill the connection right away */ |
| 3210 | h2c->conn->mux->destroy(h2c->conn); |
| 3211 | return; |
| 3212 | } |
| 3213 | } |
Olivier Houchard | 8a78690 | 2018-12-15 16:05:40 +0100 | [diff] [blame] | 3214 | } |
Olivier Houchard | a4d4fdf | 2018-12-14 19:27:06 +0100 | [diff] [blame] | 3215 | if (eb_is_empty(&h2c->streams_by_id)) { |
| 3216 | if (session_check_idle_conn(h2c->conn->owner, h2c->conn) != 0) |
| 3217 | /* At this point either the connection is destroyed, or it's been added to the server idle list, just stop */ |
| 3218 | return; |
| 3219 | } |
Olivier Houchard | 8a78690 | 2018-12-15 16:05:40 +0100 | [diff] [blame] | 3220 | /* Never ever allow to reuse a connection from a non-reuse backend */ |
| 3221 | if ((h2c->proxy->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR) |
| 3222 | h2c->conn->flags |= CO_FL_PRIVATE; |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 3223 | if (!LIST_ADDED(&h2c->conn->list) && h2c->nb_streams < h2c->streams_limit) { |
Olivier Houchard | 8a78690 | 2018-12-15 16:05:40 +0100 | [diff] [blame] | 3224 | struct server *srv = objt_server(h2c->conn->target); |
| 3225 | |
| 3226 | if (srv) { |
| 3227 | if (h2c->conn->flags & CO_FL_PRIVATE) |
| 3228 | LIST_ADD(&srv->priv_conns[tid], &h2c->conn->list); |
| 3229 | else |
| 3230 | LIST_ADD(&srv->idle_conns[tid], &h2c->conn->list); |
| 3231 | } |
| 3232 | |
| 3233 | } |
| 3234 | } |
| 3235 | } |
| 3236 | |
Willy Tarreau | e323f34 | 2018-03-28 13:51:45 +0200 | [diff] [blame] | 3237 | /* We don't want to close right now unless we're removing the |
| 3238 | * last stream, and either the connection is in error, or it |
| 3239 | * reached the ID already specified in a GOAWAY frame received |
| 3240 | * or sent (as seen by last_sid >= 0). |
| 3241 | */ |
Olivier Houchard | 7a97743 | 2019-03-21 15:47:13 +0100 | [diff] [blame] | 3242 | if (h2c_is_dead(h2c)) { |
Willy Tarreau | e323f34 | 2018-03-28 13:51:45 +0200 | [diff] [blame] | 3243 | /* no more stream will come, kill it now */ |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 3244 | h2_release(h2c); |
Willy Tarreau | e323f34 | 2018-03-28 13:51:45 +0200 | [diff] [blame] | 3245 | } |
| 3246 | else if (h2c->task) { |
Willy Tarreau | 662fafc | 2019-05-26 09:43:07 +0200 | [diff] [blame] | 3247 | if (eb_is_empty(&h2c->streams_by_id) || br_data(h2c->mbuf)) { |
Willy Tarreau | e323f34 | 2018-03-28 13:51:45 +0200 | [diff] [blame] | 3248 | h2c->task->expire = tick_add(now_ms, h2c->last_sid < 0 ? h2c->timeout : h2c->shut_timeout); |
| 3249 | task_queue(h2c->task); |
Willy Tarreau | e6ae77f | 2017-11-07 11:59:51 +0100 | [diff] [blame] | 3250 | } |
Willy Tarreau | e323f34 | 2018-03-28 13:51:45 +0200 | [diff] [blame] | 3251 | else |
| 3252 | h2c->task->expire = TICK_ETERNITY; |
Willy Tarreau | 6093514 | 2017-10-16 18:11:19 +0200 | [diff] [blame] | 3253 | } |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3254 | } |
| 3255 | |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3256 | /* Performs a synchronous or asynchronous shutr(). */ |
| 3257 | static void h2_do_shutr(struct h2s *h2s) |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3258 | { |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3259 | struct h2c *h2c = h2s->h2c; |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 3260 | struct wait_event *sw = &h2s->wait_event; |
Willy Tarreau | c7576ea | 2017-10-29 22:00:09 +0100 | [diff] [blame] | 3261 | |
Willy Tarreau | f983d00 | 2019-05-14 10:40:21 +0200 | [diff] [blame] | 3262 | if (h2s->st == H2_SS_CLOSED) |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3263 | goto done; |
Willy Tarreau | c7576ea | 2017-10-29 22:00:09 +0100 | [diff] [blame] | 3264 | |
Willy Tarreau | 1805904 | 2019-01-31 19:12:48 +0100 | [diff] [blame] | 3265 | /* a connstream may require us to immediately kill the whole connection |
| 3266 | * for example because of a "tcp-request content reject" rule that is |
| 3267 | * normally used to limit abuse. In this case we schedule a goaway to |
| 3268 | * close the connection. |
Willy Tarreau | 926fa4c | 2017-11-07 14:42:12 +0100 | [diff] [blame] | 3269 | */ |
Willy Tarreau | 3cf69fe | 2019-05-14 10:44:40 +0200 | [diff] [blame] | 3270 | if ((h2s->flags & H2_SF_KILL_CONN) && |
Willy Tarreau | 1805904 | 2019-01-31 19:12:48 +0100 | [diff] [blame] | 3271 | !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) { |
| 3272 | h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM); |
| 3273 | h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM); |
| 3274 | } |
Christopher Faulet | 35757d3 | 2019-03-07 15:51:33 +0100 | [diff] [blame] | 3275 | else if (!(h2s->flags & H2_SF_HEADERS_SENT)) { |
| 3276 | /* Nothing was never sent for this stream, so reset with |
| 3277 | * REFUSED_STREAM error to let the client retry the |
| 3278 | * request. |
| 3279 | */ |
| 3280 | h2s_error(h2s, H2_ERR_REFUSED_STREAM); |
| 3281 | } |
Willy Tarreau | 1805904 | 2019-01-31 19:12:48 +0100 | [diff] [blame] | 3282 | |
Willy Tarreau | 90c3232 | 2017-11-24 08:00:30 +0100 | [diff] [blame] | 3283 | if (!(h2s->flags & H2_SF_RST_SENT) && |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3284 | h2s_send_rst_stream(h2c, h2s) <= 0) |
Willy Tarreau | b2e290a | 2018-03-30 17:35:38 +0200 | [diff] [blame] | 3285 | goto add_to_list; |
Willy Tarreau | 90c3232 | 2017-11-24 08:00:30 +0100 | [diff] [blame] | 3286 | |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 3287 | if (!(h2c->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | 435ce2d | 2018-12-03 18:43:16 +0100 | [diff] [blame] | 3288 | tasklet_wakeup(h2c->wait_event.task); |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 3289 | h2s_close(h2s); |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3290 | done: |
| 3291 | h2s->flags &= ~H2_SF_WANT_SHUTR; |
| 3292 | return; |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3293 | add_to_list: |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 3294 | if (!LIST_ADDED(&h2s->list)) { |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 3295 | sw->events |= SUB_RETRY_SEND; |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 3296 | if (h2s->flags & H2_SF_BLK_MFCTL) { |
| 3297 | LIST_ADDQ(&h2c->fctl_list, &h2s->list); |
| 3298 | h2s->send_wait = sw; |
| 3299 | } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) { |
| 3300 | h2s->send_wait = sw; |
| 3301 | LIST_ADDQ(&h2c->send_list, &h2s->list); |
| 3302 | } |
Willy Tarreau | b2e290a | 2018-03-30 17:35:38 +0200 | [diff] [blame] | 3303 | } |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3304 | /* Let the handler know we want shutr */ |
Willy Tarreau | 2c249eb | 2019-05-13 18:06:17 +0200 | [diff] [blame] | 3305 | h2s->flags |= H2_SF_WANT_SHUTR; |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3306 | return; |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3307 | } |
| 3308 | |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3309 | /* Performs a synchronous or asynchronous shutw(). */ |
| 3310 | static void h2_do_shutw(struct h2s *h2s) |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3311 | { |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3312 | struct h2c *h2c = h2s->h2c; |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 3313 | struct wait_event *sw = &h2s->wait_event; |
Willy Tarreau | c7576ea | 2017-10-29 22:00:09 +0100 | [diff] [blame] | 3314 | |
Willy Tarreau | f983d00 | 2019-05-14 10:40:21 +0200 | [diff] [blame] | 3315 | if (h2s->st == H2_SS_CLOSED) |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3316 | goto done; |
Willy Tarreau | c7576ea | 2017-10-29 22:00:09 +0100 | [diff] [blame] | 3317 | |
Willy Tarreau | f983d00 | 2019-05-14 10:40:21 +0200 | [diff] [blame] | 3318 | if (h2s->st != H2_SS_HLOC && h2s->st != H2_SS_ERROR && |
| 3319 | (h2s->flags & H2_SF_HEADERS_SENT)) { |
Willy Tarreau | 58e3208 | 2017-11-07 14:41:09 +0100 | [diff] [blame] | 3320 | /* we can cleanly close using an empty data frame only after headers */ |
| 3321 | |
| 3322 | if (!(h2s->flags & (H2_SF_ES_SENT|H2_SF_RST_SENT)) && |
| 3323 | h2_send_empty_data_es(h2s) <= 0) |
Willy Tarreau | b2e290a | 2018-03-30 17:35:38 +0200 | [diff] [blame] | 3324 | goto add_to_list; |
Willy Tarreau | 58e3208 | 2017-11-07 14:41:09 +0100 | [diff] [blame] | 3325 | |
| 3326 | if (h2s->st == H2_SS_HREM) |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 3327 | h2s_close(h2s); |
Willy Tarreau | 58e3208 | 2017-11-07 14:41:09 +0100 | [diff] [blame] | 3328 | else |
| 3329 | h2s->st = H2_SS_HLOC; |
Willy Tarreau | c7576ea | 2017-10-29 22:00:09 +0100 | [diff] [blame] | 3330 | } else { |
Willy Tarreau | 1805904 | 2019-01-31 19:12:48 +0100 | [diff] [blame] | 3331 | /* a connstream may require us to immediately kill the whole connection |
| 3332 | * for example because of a "tcp-request content reject" rule that is |
| 3333 | * normally used to limit abuse. In this case we schedule a goaway to |
| 3334 | * close the connection. |
Willy Tarreau | a1349f0 | 2017-10-31 07:41:55 +0100 | [diff] [blame] | 3335 | */ |
Willy Tarreau | 3cf69fe | 2019-05-14 10:44:40 +0200 | [diff] [blame] | 3336 | if ((h2s->flags & H2_SF_KILL_CONN) && |
Willy Tarreau | 1805904 | 2019-01-31 19:12:48 +0100 | [diff] [blame] | 3337 | !(h2c->flags & (H2_CF_GOAWAY_SENT|H2_CF_GOAWAY_FAILED))) { |
| 3338 | h2c_error(h2c, H2_ERR_ENHANCE_YOUR_CALM); |
| 3339 | h2s_error(h2s, H2_ERR_ENHANCE_YOUR_CALM); |
| 3340 | } |
Christopher Faulet | 35757d3 | 2019-03-07 15:51:33 +0100 | [diff] [blame] | 3341 | else { |
| 3342 | /* Nothing was never sent for this stream, so reset with |
| 3343 | * REFUSED_STREAM error to let the client retry the |
| 3344 | * request. |
| 3345 | */ |
| 3346 | h2s_error(h2s, H2_ERR_REFUSED_STREAM); |
| 3347 | } |
Willy Tarreau | 1805904 | 2019-01-31 19:12:48 +0100 | [diff] [blame] | 3348 | |
Willy Tarreau | 90c3232 | 2017-11-24 08:00:30 +0100 | [diff] [blame] | 3349 | if (!(h2s->flags & H2_SF_RST_SENT) && |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3350 | h2s_send_rst_stream(h2c, h2s) <= 0) |
Willy Tarreau | b2e290a | 2018-03-30 17:35:38 +0200 | [diff] [blame] | 3351 | goto add_to_list; |
Willy Tarreau | 90c3232 | 2017-11-24 08:00:30 +0100 | [diff] [blame] | 3352 | |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 3353 | h2s_close(h2s); |
Willy Tarreau | c7576ea | 2017-10-29 22:00:09 +0100 | [diff] [blame] | 3354 | } |
| 3355 | |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 3356 | if (!(h2c->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | 435ce2d | 2018-12-03 18:43:16 +0100 | [diff] [blame] | 3357 | tasklet_wakeup(h2c->wait_event.task); |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3358 | done: |
| 3359 | h2s->flags &= ~H2_SF_WANT_SHUTW; |
| 3360 | return; |
Willy Tarreau | b2e290a | 2018-03-30 17:35:38 +0200 | [diff] [blame] | 3361 | |
| 3362 | add_to_list: |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 3363 | if (!LIST_ADDED(&h2s->list)) { |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 3364 | sw->events |= SUB_RETRY_SEND; |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 3365 | if (h2s->flags & H2_SF_BLK_MFCTL) { |
| 3366 | LIST_ADDQ(&h2c->fctl_list, &h2s->list); |
| 3367 | h2s->send_wait = sw; |
| 3368 | } else if (h2s->flags & (H2_SF_BLK_MBUSY|H2_SF_BLK_MROOM)) { |
| 3369 | h2s->send_wait = sw; |
| 3370 | LIST_ADDQ(&h2c->send_list, &h2s->list); |
| 3371 | } |
Willy Tarreau | b2e290a | 2018-03-30 17:35:38 +0200 | [diff] [blame] | 3372 | } |
Willy Tarreau | 2c249eb | 2019-05-13 18:06:17 +0200 | [diff] [blame] | 3373 | /* let the handler know we want to shutw */ |
| 3374 | h2s->flags |= H2_SF_WANT_SHUTW; |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3375 | return; |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3376 | } |
| 3377 | |
Willy Tarreau | 749f5ca | 2019-03-21 19:19:36 +0100 | [diff] [blame] | 3378 | /* This is the tasklet referenced in h2s->wait_event.task, it is used for |
| 3379 | * deferred shutdowns when the h2_detach() was done but the mux buffer was full |
| 3380 | * and prevented the last frame from being emitted. |
| 3381 | */ |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3382 | static struct task *h2_deferred_shut(struct task *t, void *ctx, unsigned short state) |
| 3383 | { |
| 3384 | struct h2s *h2s = ctx; |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3385 | struct h2c *h2c = h2s->h2c; |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3386 | |
Olivier Houchard | afc7cb8 | 2019-03-25 14:08:01 +0100 | [diff] [blame] | 3387 | LIST_DEL_INIT(&h2s->sending_list); |
Willy Tarreau | 2c249eb | 2019-05-13 18:06:17 +0200 | [diff] [blame] | 3388 | if (h2s->flags & H2_SF_WANT_SHUTW) |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3389 | h2_do_shutw(h2s); |
| 3390 | |
Willy Tarreau | 2c249eb | 2019-05-13 18:06:17 +0200 | [diff] [blame] | 3391 | if (h2s->flags & H2_SF_WANT_SHUTR) |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3392 | h2_do_shutr(h2s); |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3393 | |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3394 | if (!(h2s->flags & (H2_SF_WANT_SHUTR|H2_SF_WANT_SHUTW))) { |
Olivier Houchard | afc7cb8 | 2019-03-25 14:08:01 +0100 | [diff] [blame] | 3395 | /* We're done trying to send, remove ourself from the send_list */ |
Olivier Houchard | afc7cb8 | 2019-03-25 14:08:01 +0100 | [diff] [blame] | 3396 | LIST_DEL_INIT(&h2s->list); |
Olivier Houchard | 7a97743 | 2019-03-21 15:47:13 +0100 | [diff] [blame] | 3397 | |
Willy Tarreau | 88bdba3 | 2019-05-13 18:17:53 +0200 | [diff] [blame] | 3398 | if (!h2s->cs) { |
| 3399 | h2s_destroy(h2s); |
| 3400 | if (h2c_is_dead(h2c)) |
| 3401 | h2_release(h2c); |
| 3402 | } |
Olivier Houchard | 7a97743 | 2019-03-21 15:47:13 +0100 | [diff] [blame] | 3403 | } |
| 3404 | |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3405 | return NULL; |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 3406 | } |
| 3407 | |
Willy Tarreau | 749f5ca | 2019-03-21 19:19:36 +0100 | [diff] [blame] | 3408 | /* shutr() called by the conn_stream (mux_ops.shutr) */ |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3409 | static void h2_shutr(struct conn_stream *cs, enum cs_shr_mode mode) |
| 3410 | { |
| 3411 | struct h2s *h2s = cs->ctx; |
| 3412 | |
Willy Tarreau | 3cf69fe | 2019-05-14 10:44:40 +0200 | [diff] [blame] | 3413 | if (cs->flags & CS_FL_KILL_CONN) |
| 3414 | h2s->flags |= H2_SF_KILL_CONN; |
| 3415 | |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3416 | if (!mode) |
| 3417 | return; |
| 3418 | |
| 3419 | h2_do_shutr(h2s); |
| 3420 | } |
| 3421 | |
Willy Tarreau | 749f5ca | 2019-03-21 19:19:36 +0100 | [diff] [blame] | 3422 | /* shutw() called by the conn_stream (mux_ops.shutw) */ |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3423 | static void h2_shutw(struct conn_stream *cs, enum cs_shw_mode mode) |
| 3424 | { |
| 3425 | struct h2s *h2s = cs->ctx; |
| 3426 | |
Willy Tarreau | 3cf69fe | 2019-05-14 10:44:40 +0200 | [diff] [blame] | 3427 | if (cs->flags & CS_FL_KILL_CONN) |
| 3428 | h2s->flags |= H2_SF_KILL_CONN; |
| 3429 | |
Olivier Houchard | 8ae735d | 2018-09-11 18:24:28 +0200 | [diff] [blame] | 3430 | h2_do_shutw(h2s); |
| 3431 | } |
| 3432 | |
Willy Tarreau | bd4a6b6 | 2018-11-27 09:29:36 +0100 | [diff] [blame] | 3433 | /* 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] | 3434 | * HTX request or response depending on the connection's side. Returns a |
| 3435 | * positive value on success, a negative value on failure, or 0 if it couldn't |
| 3436 | * proceed. May report connection errors in h2c->errcode if the frame is |
| 3437 | * non-decodable and the connection unrecoverable. In absence of connection |
| 3438 | * 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] | 3439 | * |
| 3440 | * The function may fold CONTINUATION frames into the initial HEADERS frame |
| 3441 | * by removing padding and next frame header, then moving the CONTINUATION |
| 3442 | * frame's payload and adjusting h2c->dfl to match the new aggregated frame, |
| 3443 | * leaving a hole between the main frame and the beginning of the next one. |
| 3444 | * The possibly remaining incomplete or next frame at the end may be moved |
| 3445 | * if the aggregated frame is not deleted, in order to fill the hole. Wrapped |
| 3446 | * HEADERS frames are unwrapped into a temporary buffer before decoding. |
| 3447 | * |
| 3448 | * A buffer at the beginning of processing may look like this : |
| 3449 | * |
| 3450 | * ,---.---------.-----.--------------.--------------.------.---. |
| 3451 | * |///| HEADERS | PAD | CONTINUATION | CONTINUATION | DATA |///| |
| 3452 | * `---^---------^-----^--------------^--------------^------^---' |
| 3453 | * | | <-----> | | |
| 3454 | * area | dpl | wrap |
| 3455 | * |<--------------> | |
| 3456 | * | dfl | |
| 3457 | * |<-------------------------------------------------->| |
| 3458 | * head data |
| 3459 | * |
| 3460 | * Padding is automatically overwritten when folding, participating to the |
| 3461 | * hole size after dfl : |
| 3462 | * |
| 3463 | * ,---.------------------------.-----.--------------.------.---. |
| 3464 | * |///| HEADERS : CONTINUATION |/////| CONTINUATION | DATA |///| |
| 3465 | * `---^------------------------^-----^--------------^------^---' |
| 3466 | * | | <-----> | | |
| 3467 | * area | hole | wrap |
| 3468 | * |<-----------------------> | |
| 3469 | * | dfl | |
| 3470 | * |<-------------------------------------------------->| |
| 3471 | * head data |
| 3472 | * |
| 3473 | * Please note that the HEADERS frame is always deprived from its PADLEN byte |
| 3474 | * however it may start with the 5 stream-dep+weight bytes in case of PRIORITY |
| 3475 | * bit. |
Willy Tarreau | 6cc85a5 | 2019-01-02 15:49:20 +0100 | [diff] [blame] | 3476 | * |
| 3477 | * The <flags> field must point to either the stream's flags or to a copy of it |
| 3478 | * so that the function can update the following flags : |
| 3479 | * - H2_SF_DATA_CLEN when content-length is seen |
| 3480 | * - H2_SF_DATA_CHNK when chunking should be used for the H1 conversion |
| 3481 | * - H2_SF_HEADERS_RCVD once the frame is successfully decoded |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 3482 | * |
| 3483 | * The H2_SF_HEADERS_RCVD flag is also looked at in the <flags> field prior to |
| 3484 | * decoding, in order to detect if we're dealing with a headers or a trailers |
| 3485 | * block (the trailers block appears after H2_SF_HEADERS_RCVD was seen). |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3486 | */ |
Willy Tarreau | 4790f7c | 2019-01-24 11:33:02 +0100 | [diff] [blame] | 3487 | 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] | 3488 | { |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3489 | const uint8_t *hdrs = (uint8_t *)b_head(&h2c->dbuf); |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 3490 | struct buffer *tmp = get_trash_chunk(); |
Willy Tarreau | 59a10fb | 2017-11-21 20:03:02 +0100 | [diff] [blame] | 3491 | struct http_hdr list[MAX_HTTP_HDR * 2]; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 3492 | struct buffer *copy = NULL; |
Willy Tarreau | 174b06a | 2018-04-25 18:13:58 +0200 | [diff] [blame] | 3493 | unsigned int msgf; |
Willy Tarreau | bd4a6b6 | 2018-11-27 09:29:36 +0100 | [diff] [blame] | 3494 | struct htx *htx = NULL; |
Willy Tarreau | ea18f86 | 2018-12-22 20:19:26 +0100 | [diff] [blame] | 3495 | int flen; // header frame len |
| 3496 | int hole = 0; |
Willy Tarreau | 86277d4 | 2019-01-02 15:36:11 +0100 | [diff] [blame] | 3497 | int ret = 0; |
| 3498 | int outlen; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3499 | int wrap; |
Willy Tarreau | bd4a6b6 | 2018-11-27 09:29:36 +0100 | [diff] [blame] | 3500 | int try = 0; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3501 | |
Willy Tarreau | ea18f86 | 2018-12-22 20:19:26 +0100 | [diff] [blame] | 3502 | next_frame: |
| 3503 | if (b_data(&h2c->dbuf) - hole < h2c->dfl) |
| 3504 | goto leave; // incomplete input frame |
| 3505 | |
| 3506 | /* No END_HEADERS means there's one or more CONTINUATION frames. In |
| 3507 | * this case, we'll try to paste it immediately after the initial |
| 3508 | * HEADERS frame payload and kill any possible padding. The initial |
| 3509 | * frame's length will be increased to represent the concatenation |
| 3510 | * of the two frames. The next frame is read from position <tlen> |
| 3511 | * and written at position <flen> (minus padding if some is present). |
| 3512 | */ |
| 3513 | if (unlikely(!(h2c->dff & H2_F_HEADERS_END_HEADERS))) { |
| 3514 | struct h2_fh hdr; |
| 3515 | int clen; // CONTINUATION frame's payload length |
| 3516 | |
| 3517 | if (!h2_peek_frame_hdr(&h2c->dbuf, h2c->dfl + hole, &hdr)) { |
| 3518 | /* no more data, the buffer may be full, either due to |
| 3519 | * too large a frame or because of too large a hole that |
| 3520 | * we're going to compact at the end. |
| 3521 | */ |
| 3522 | goto leave; |
| 3523 | } |
| 3524 | |
| 3525 | if (hdr.ft != H2_FT_CONTINUATION) { |
| 3526 | /* RFC7540#6.10: frame of unexpected type */ |
| 3527 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
| 3528 | goto fail; |
| 3529 | } |
| 3530 | |
| 3531 | if (hdr.sid != h2c->dsi) { |
| 3532 | /* RFC7540#6.10: frame of different stream */ |
| 3533 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
| 3534 | goto fail; |
| 3535 | } |
| 3536 | |
| 3537 | if ((unsigned)hdr.len > (unsigned)global.tune.bufsize) { |
| 3538 | /* RFC7540#4.2: invalid frame length */ |
| 3539 | h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR); |
| 3540 | goto fail; |
| 3541 | } |
| 3542 | |
| 3543 | /* detect when we must stop aggragating frames */ |
| 3544 | h2c->dff |= hdr.ff & H2_F_HEADERS_END_HEADERS; |
| 3545 | |
| 3546 | /* Take as much as we can of the CONTINUATION frame's payload */ |
| 3547 | clen = b_data(&h2c->dbuf) - (h2c->dfl + hole + 9); |
| 3548 | if (clen > hdr.len) |
| 3549 | clen = hdr.len; |
| 3550 | |
| 3551 | /* Move the frame's payload over the padding, hole and frame |
| 3552 | * header. At least one of hole or dpl is null (see diagrams |
| 3553 | * above). The hole moves after the new aggragated frame. |
| 3554 | */ |
| 3555 | b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole + 9), clen, -(h2c->dpl + hole + 9)); |
| 3556 | h2c->dfl += clen - h2c->dpl; |
| 3557 | hole += h2c->dpl + 9; |
| 3558 | h2c->dpl = 0; |
| 3559 | goto next_frame; |
| 3560 | } |
| 3561 | |
| 3562 | flen = h2c->dfl - h2c->dpl; |
Willy Tarreau | 6847262 | 2017-12-11 18:36:37 +0100 | [diff] [blame] | 3563 | |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3564 | /* if the input buffer wraps, take a temporary copy of it (rare) */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3565 | wrap = b_wrap(&h2c->dbuf) - b_head(&h2c->dbuf); |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3566 | if (wrap < h2c->dfl) { |
Willy Tarreau | 68dd985 | 2017-07-03 14:44:26 +0200 | [diff] [blame] | 3567 | copy = alloc_trash_chunk(); |
| 3568 | if (!copy) { |
| 3569 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
| 3570 | goto fail; |
| 3571 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3572 | memcpy(copy->area, b_head(&h2c->dbuf), wrap); |
| 3573 | memcpy(copy->area + wrap, b_orig(&h2c->dbuf), h2c->dfl - wrap); |
| 3574 | hdrs = (uint8_t *) copy->area; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3575 | } |
| 3576 | |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3577 | /* Skip StreamDep and weight for now (we don't support PRIORITY) */ |
| 3578 | if (h2c->dff & H2_F_HEADERS_PRIORITY) { |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 3579 | if (read_n32(hdrs) == h2c->dsi) { |
Willy Tarreau | 18b86cd | 2017-12-03 19:24:50 +0100 | [diff] [blame] | 3580 | /* RFC7540#5.3.1 : stream dep may not depend on itself */ |
| 3581 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
Willy Tarreau | a0d11b6 | 2018-09-05 18:30:05 +0200 | [diff] [blame] | 3582 | goto fail; |
Willy Tarreau | 18b86cd | 2017-12-03 19:24:50 +0100 | [diff] [blame] | 3583 | } |
| 3584 | |
Willy Tarreau | a01f45e | 2018-12-31 07:41:24 +0100 | [diff] [blame] | 3585 | if (flen < 5) { |
| 3586 | h2c_error(h2c, H2_ERR_FRAME_SIZE_ERROR); |
| 3587 | goto fail; |
| 3588 | } |
| 3589 | |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3590 | hdrs += 5; // stream dep = 4, weight = 1 |
| 3591 | flen -= 5; |
| 3592 | } |
| 3593 | |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 3594 | if (!h2_get_buf(h2c, rxbuf)) { |
Willy Tarreau | 937f760 | 2018-02-26 15:22:17 +0100 | [diff] [blame] | 3595 | h2c->flags |= H2_CF_DEM_SALLOC; |
Willy Tarreau | 86277d4 | 2019-01-02 15:36:11 +0100 | [diff] [blame] | 3596 | goto leave; |
Willy Tarreau | 59a10fb | 2017-11-21 20:03:02 +0100 | [diff] [blame] | 3597 | } |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3598 | |
Willy Tarreau | 937f760 | 2018-02-26 15:22:17 +0100 | [diff] [blame] | 3599 | /* we can't retry a failed decompression operation so we must be very |
| 3600 | * careful not to take any risks. In practice the output buffer is |
| 3601 | * always empty except maybe for trailers, in which case we simply have |
| 3602 | * to wait for the upper layer to finish consuming what is available. |
| 3603 | */ |
Willy Tarreau | bd4a6b6 | 2018-11-27 09:29:36 +0100 | [diff] [blame] | 3604 | |
| 3605 | if (h2c->proxy->options2 & PR_O2_USE_HTX) { |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 3606 | htx = htx_from_buf(rxbuf); |
Willy Tarreau | 8dbb170 | 2019-01-03 08:52:09 +0100 | [diff] [blame] | 3607 | if (!htx_is_empty(htx)) { |
| 3608 | h2c->flags |= H2_CF_DEM_SFULL; |
Willy Tarreau | 86277d4 | 2019-01-02 15:36:11 +0100 | [diff] [blame] | 3609 | goto leave; |
Willy Tarreau | 8dbb170 | 2019-01-03 08:52:09 +0100 | [diff] [blame] | 3610 | } |
Willy Tarreau | bd4a6b6 | 2018-11-27 09:29:36 +0100 | [diff] [blame] | 3611 | } else { |
Willy Tarreau | 8dbb170 | 2019-01-03 08:52:09 +0100 | [diff] [blame] | 3612 | if (b_data(rxbuf)) { |
| 3613 | h2c->flags |= H2_CF_DEM_SFULL; |
Willy Tarreau | 86277d4 | 2019-01-02 15:36:11 +0100 | [diff] [blame] | 3614 | goto leave; |
Willy Tarreau | 8dbb170 | 2019-01-03 08:52:09 +0100 | [diff] [blame] | 3615 | } |
Willy Tarreau | 59a10fb | 2017-11-21 20:03:02 +0100 | [diff] [blame] | 3616 | |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 3617 | rxbuf->head = 0; |
| 3618 | try = b_size(rxbuf); |
Willy Tarreau | bd4a6b6 | 2018-11-27 09:29:36 +0100 | [diff] [blame] | 3619 | } |
Willy Tarreau | 59a10fb | 2017-11-21 20:03:02 +0100 | [diff] [blame] | 3620 | |
Willy Tarreau | 2591923 | 2019-01-03 14:48:18 +0100 | [diff] [blame] | 3621 | /* past this point we cannot roll back in case of error */ |
Willy Tarreau | 59a10fb | 2017-11-21 20:03:02 +0100 | [diff] [blame] | 3622 | outlen = hpack_decode_frame(h2c->ddht, hdrs, flen, list, |
| 3623 | sizeof(list)/sizeof(list[0]), tmp); |
| 3624 | if (outlen < 0) { |
| 3625 | h2c_error(h2c, H2_ERR_COMPRESSION_ERROR); |
| 3626 | goto fail; |
| 3627 | } |
| 3628 | |
Willy Tarreau | 2591923 | 2019-01-03 14:48:18 +0100 | [diff] [blame] | 3629 | /* The PACK decompressor was updated, let's update the input buffer and |
| 3630 | * the parser's state to commit these changes and allow us to later |
| 3631 | * fail solely on the stream if needed. |
| 3632 | */ |
| 3633 | b_del(&h2c->dbuf, h2c->dfl + hole); |
| 3634 | h2c->dfl = hole = 0; |
| 3635 | h2c->st0 = H2_CS_FRAME_H; |
| 3636 | |
Willy Tarreau | 59a10fb | 2017-11-21 20:03:02 +0100 | [diff] [blame] | 3637 | /* OK now we have our header list in <list> */ |
Willy Tarreau | 880f580 | 2019-01-03 08:10:14 +0100 | [diff] [blame] | 3638 | msgf = (h2c->dff & H2_F_HEADERS_END_STREAM) ? 0 : H2_MSGF_BODY; |
Willy Tarreau | bd4a6b6 | 2018-11-27 09:29:36 +0100 | [diff] [blame] | 3639 | |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 3640 | if (*flags & H2_SF_HEADERS_RCVD) |
| 3641 | goto trailers; |
| 3642 | |
| 3643 | /* This is the first HEADERS frame so it's a headers block */ |
Willy Tarreau | c3e18f3 | 2018-10-08 14:51:56 +0200 | [diff] [blame] | 3644 | if (htx) { |
| 3645 | /* HTX mode */ |
| 3646 | if (h2c->flags & H2_CF_IS_BACK) |
Willy Tarreau | 4790f7c | 2019-01-24 11:33:02 +0100 | [diff] [blame] | 3647 | outlen = h2_make_htx_response(list, htx, &msgf, body_len); |
Willy Tarreau | c3e18f3 | 2018-10-08 14:51:56 +0200 | [diff] [blame] | 3648 | else |
Willy Tarreau | 4790f7c | 2019-01-24 11:33:02 +0100 | [diff] [blame] | 3649 | outlen = h2_make_htx_request(list, htx, &msgf, body_len); |
Willy Tarreau | c3e18f3 | 2018-10-08 14:51:56 +0200 | [diff] [blame] | 3650 | } else { |
| 3651 | /* HTTP/1 mode */ |
Willy Tarreau | 4790f7c | 2019-01-24 11:33:02 +0100 | [diff] [blame] | 3652 | 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] | 3653 | if (outlen > 0) |
| 3654 | b_add(rxbuf, outlen); |
Willy Tarreau | c3e18f3 | 2018-10-08 14:51:56 +0200 | [diff] [blame] | 3655 | } |
Willy Tarreau | 59a10fb | 2017-11-21 20:03:02 +0100 | [diff] [blame] | 3656 | |
| 3657 | if (outlen < 0) { |
Willy Tarreau | 2591923 | 2019-01-03 14:48:18 +0100 | [diff] [blame] | 3658 | /* too large headers? this is a stream error only */ |
Willy Tarreau | 59a10fb | 2017-11-21 20:03:02 +0100 | [diff] [blame] | 3659 | goto fail; |
| 3660 | } |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3661 | |
Willy Tarreau | 174b06a | 2018-04-25 18:13:58 +0200 | [diff] [blame] | 3662 | if (msgf & H2_MSGF_BODY) { |
| 3663 | /* a payload is present */ |
Christopher Faulet | eaf0d2a | 2019-02-18 16:04:35 +0100 | [diff] [blame] | 3664 | if (msgf & H2_MSGF_BODY_CL) { |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 3665 | *flags |= H2_SF_DATA_CLEN; |
Christopher Faulet | eaf0d2a | 2019-02-18 16:04:35 +0100 | [diff] [blame] | 3666 | if (htx) |
| 3667 | htx->extra = *body_len; |
| 3668 | } |
Olivier Houchard | 50d660c | 2018-12-08 00:18:31 +0100 | [diff] [blame] | 3669 | else if (!(msgf & H2_MSGF_BODY_TUNNEL) && !htx) |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 3670 | *flags |= H2_SF_DATA_CHNK; |
Willy Tarreau | 174b06a | 2018-04-25 18:13:58 +0200 | [diff] [blame] | 3671 | } |
| 3672 | |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 3673 | done: |
Christopher Faulet | 0b46548 | 2019-02-19 15:14:23 +0100 | [diff] [blame] | 3674 | /* indicate that a HEADERS frame was received for this stream, except |
| 3675 | * for 1xx responses. For 1xx responses, another HEADERS frame is |
| 3676 | * expected. |
| 3677 | */ |
| 3678 | if (!(msgf & H2_MSGF_RSP_1XX)) |
| 3679 | *flags |= H2_SF_HEADERS_RCVD; |
Willy Tarreau | 6cc85a5 | 2019-01-02 15:49:20 +0100 | [diff] [blame] | 3680 | |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 3681 | if ((h2c->dff & H2_F_HEADERS_END_STREAM)) { |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 3682 | /* Mark the end of message, either using EOM in HTX or with the |
| 3683 | * trailing CRLF after the end of trailers. Note that DATA_CHNK |
Willy Tarreau | 2135f91 | 2019-05-07 11:17:32 +0200 | [diff] [blame] | 3684 | * is not set during headers with END_STREAM. For HTX trailers, |
| 3685 | * we must not leave an HTX trailers block not followed by an |
| 3686 | * EOM block, the two must be atomic. Thus if we fail to emit |
| 3687 | * 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] | 3688 | */ |
| 3689 | if (htx) { |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 3690 | if (!htx_add_endof(htx, HTX_BLK_EOM)) |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 3691 | goto fail; |
| 3692 | } |
| 3693 | else if (*flags & H2_SF_DATA_CHNK) { |
| 3694 | if (!b_putblk(rxbuf, "\r\n", 2)) |
| 3695 | goto fail; |
| 3696 | } |
| 3697 | } |
Willy Tarreau | 937f760 | 2018-02-26 15:22:17 +0100 | [diff] [blame] | 3698 | |
Willy Tarreau | 86277d4 | 2019-01-02 15:36:11 +0100 | [diff] [blame] | 3699 | /* success */ |
| 3700 | ret = 1; |
| 3701 | |
Willy Tarreau | 68dd985 | 2017-07-03 14:44:26 +0200 | [diff] [blame] | 3702 | leave: |
Willy Tarreau | 86277d4 | 2019-01-02 15:36:11 +0100 | [diff] [blame] | 3703 | /* 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] | 3704 | * move the remaining data over it. |
| 3705 | */ |
| 3706 | if (hole) { |
| 3707 | if (b_data(&h2c->dbuf) > h2c->dfl + hole) |
| 3708 | b_move(&h2c->dbuf, b_peek_ofs(&h2c->dbuf, h2c->dfl + hole), |
| 3709 | b_data(&h2c->dbuf) - (h2c->dfl + hole), -hole); |
| 3710 | b_sub(&h2c->dbuf, hole); |
| 3711 | } |
| 3712 | |
Willy Tarreau | 97215ca | 2019-04-29 10:20:21 +0200 | [diff] [blame] | 3713 | if (b_full(&h2c->dbuf) && h2c->dfl >= b_data(&h2c->dbuf)) { |
Willy Tarreau | ea18f86 | 2018-12-22 20:19:26 +0100 | [diff] [blame] | 3714 | /* too large frames */ |
| 3715 | h2c_error(h2c, H2_ERR_INTERNAL_ERROR); |
Willy Tarreau | 86277d4 | 2019-01-02 15:36:11 +0100 | [diff] [blame] | 3716 | ret = -1; |
Willy Tarreau | ea18f86 | 2018-12-22 20:19:26 +0100 | [diff] [blame] | 3717 | } |
| 3718 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 3719 | if (htx) |
Willy Tarreau | 5c8cafa | 2018-12-23 11:30:42 +0100 | [diff] [blame] | 3720 | htx_to_buf(htx, rxbuf); |
Willy Tarreau | 68dd985 | 2017-07-03 14:44:26 +0200 | [diff] [blame] | 3721 | free_trash_chunk(copy); |
Willy Tarreau | 86277d4 | 2019-01-02 15:36:11 +0100 | [diff] [blame] | 3722 | return ret; |
| 3723 | |
Willy Tarreau | 68dd985 | 2017-07-03 14:44:26 +0200 | [diff] [blame] | 3724 | fail: |
Willy Tarreau | 86277d4 | 2019-01-02 15:36:11 +0100 | [diff] [blame] | 3725 | ret = -1; |
Willy Tarreau | 68dd985 | 2017-07-03 14:44:26 +0200 | [diff] [blame] | 3726 | goto leave; |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 3727 | |
| 3728 | trailers: |
| 3729 | /* This is the last HEADERS frame hence a trailer */ |
| 3730 | |
| 3731 | if (!(h2c->dff & H2_F_HEADERS_END_STREAM)) { |
| 3732 | /* It's a trailer but it's missing ES flag */ |
| 3733 | h2c_error(h2c, H2_ERR_PROTOCOL_ERROR); |
| 3734 | goto fail; |
| 3735 | } |
| 3736 | |
Christopher Faulet | 54b5e21 | 2019-06-04 10:08:28 +0200 | [diff] [blame] | 3737 | /* Trailers terminate a DATA sequence. In HTX we always handle them. In |
| 3738 | * legacy, when using chunks, we have to emit the 0 CRLF marker first |
| 3739 | * and then handle the trailers. For other modes, the trailers are |
| 3740 | * silently dropped. |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 3741 | */ |
| 3742 | if (htx) { |
Willy Tarreau | 5255f28 | 2019-01-03 18:41:05 +0100 | [diff] [blame] | 3743 | if (h2_make_htx_trailers(list, htx) <= 0) |
| 3744 | goto fail; |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 3745 | } |
| 3746 | else if (*flags & H2_SF_DATA_CHNK) { |
| 3747 | /* Legacy mode with chunked encoding : we must finalize the |
| 3748 | * data block message emit the trailing CRLF */ |
| 3749 | if (!b_putblk(rxbuf, "0\r\n", 3)) |
| 3750 | goto fail; |
Willy Tarreau | e2b05cc | 2019-01-03 16:18:34 +0100 | [diff] [blame] | 3751 | |
| 3752 | outlen = h2_make_h1_trailers(list, b_tail(rxbuf), try); |
| 3753 | if (outlen > 0) |
| 3754 | b_add(rxbuf, outlen); |
| 3755 | else |
| 3756 | goto fail; |
Willy Tarreau | 88d138e | 2019-01-02 19:38:14 +0100 | [diff] [blame] | 3757 | } |
| 3758 | |
| 3759 | goto done; |
Willy Tarreau | 13278b4 | 2017-10-13 19:23:14 +0200 | [diff] [blame] | 3760 | } |
| 3761 | |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 3762 | /* Transfer the payload of a DATA frame to the HTTP/1 side. When content-length |
| 3763 | * or a tunnel is used, the contents are copied as-is. When chunked encoding is |
| 3764 | * in use, a new chunk is emitted for each frame. This is supposed to fit |
| 3765 | * because the smallest chunk takes 1 byte for the size, 2 for CRLF, X for the |
| 3766 | * data, 2 for the extra CRLF, so that's 5+X, while on the H2 side the smallest |
| 3767 | * 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] | 3768 | * parser state is automatically updated. Returns > 0 if it could completely |
| 3769 | * send the current frame, 0 if it couldn't complete, in which case |
| 3770 | * CS_FL_RCV_MORE must be checked to know if some data remain pending (an empty |
| 3771 | * DATA frame can return 0 as a valid result). Stream errors are reported in |
| 3772 | * h2s->errcode and connection errors in h2c->errcode. The caller must already |
| 3773 | * have checked the frame header and ensured that the frame was complete or the |
| 3774 | * buffer full. It changes the frame state to FRAME_A once done. |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 3775 | */ |
Willy Tarreau | 454b57b | 2018-02-26 15:50:05 +0100 | [diff] [blame] | 3776 | static int h2_frt_transfer_data(struct h2s *h2s) |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 3777 | { |
| 3778 | struct h2c *h2c = h2s->h2c; |
| 3779 | int block1, block2; |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3780 | unsigned int flen = 0; |
Willy Tarreau | eba10f2 | 2018-04-25 20:44:22 +0200 | [diff] [blame] | 3781 | unsigned int chklen = 0; |
Willy Tarreau | 61ea7dc | 2018-12-01 23:23:04 +0100 | [diff] [blame] | 3782 | struct htx *htx = NULL; |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3783 | struct buffer *csbuf; |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 3784 | |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 3785 | h2c->flags &= ~H2_CF_DEM_SFULL; |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 3786 | |
Olivier Houchard | 638b799 | 2018-08-16 15:41:52 +0200 | [diff] [blame] | 3787 | csbuf = h2_get_buf(h2c, &h2s->rxbuf); |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3788 | if (!csbuf) { |
| 3789 | h2c->flags |= H2_CF_DEM_SALLOC; |
Willy Tarreau | 454b57b | 2018-02-26 15:50:05 +0100 | [diff] [blame] | 3790 | goto fail; |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3791 | } |
| 3792 | |
Willy Tarreau | 61ea7dc | 2018-12-01 23:23:04 +0100 | [diff] [blame] | 3793 | try_again: |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 3794 | flen = h2c->dfl - h2c->dpl; |
Olivier Houchard | 2f30883 | 2018-12-19 15:53:53 +0100 | [diff] [blame] | 3795 | if (h2c->proxy->options2 & PR_O2_USE_HTX) |
| 3796 | htx = htx_from_buf(csbuf); |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 3797 | if (!flen) |
Willy Tarreau | 4a28da1 | 2018-01-04 14:41:00 +0100 | [diff] [blame] | 3798 | goto end_transfer; |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 3799 | |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3800 | if (flen > b_data(&h2c->dbuf)) { |
| 3801 | flen = b_data(&h2c->dbuf); |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 3802 | if (!flen) |
Willy Tarreau | 454b57b | 2018-02-26 15:50:05 +0100 | [diff] [blame] | 3803 | goto fail; |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3804 | } |
| 3805 | |
Willy Tarreau | a9b7796 | 2019-01-31 07:23:00 +0100 | [diff] [blame] | 3806 | if (htx) { |
Willy Tarreau | 0a7ef02 | 2019-05-28 10:30:11 +0200 | [diff] [blame] | 3807 | unsigned int sent; |
| 3808 | |
Willy Tarreau | 61ea7dc | 2018-12-01 23:23:04 +0100 | [diff] [blame] | 3809 | block1 = htx_free_data_space(htx); |
| 3810 | if (!block1) { |
| 3811 | h2c->flags |= H2_CF_DEM_SFULL; |
| 3812 | goto fail; |
| 3813 | } |
| 3814 | if (flen > block1) |
| 3815 | flen = block1; |
| 3816 | |
| 3817 | /* here, flen is the max we can copy into the output buffer */ |
| 3818 | block1 = b_contig_data(&h2c->dbuf, 0); |
| 3819 | if (flen > block1) |
| 3820 | flen = block1; |
| 3821 | |
Willy Tarreau | 0a7ef02 | 2019-05-28 10:30:11 +0200 | [diff] [blame] | 3822 | sent = htx_add_data(htx, ist2(b_head(&h2c->dbuf), flen)); |
Willy Tarreau | 61ea7dc | 2018-12-01 23:23:04 +0100 | [diff] [blame] | 3823 | |
| 3824 | b_del(&h2c->dbuf, flen); |
| 3825 | h2c->dfl -= flen; |
| 3826 | h2c->rcvd_c += flen; |
| 3827 | h2c->rcvd_s += flen; // warning, this can also affect the closed streams! |
Willy Tarreau | 1915ca2 | 2019-01-24 11:49:37 +0100 | [diff] [blame] | 3828 | |
Christopher Faulet | eaf0d2a | 2019-02-18 16:04:35 +0100 | [diff] [blame] | 3829 | if (h2s->flags & H2_SF_DATA_CLEN) { |
Willy Tarreau | 1915ca2 | 2019-01-24 11:49:37 +0100 | [diff] [blame] | 3830 | h2s->body_len -= flen; |
Christopher Faulet | eaf0d2a | 2019-02-18 16:04:35 +0100 | [diff] [blame] | 3831 | htx->extra = h2s->body_len; |
| 3832 | } |
Willy Tarreau | 0a7ef02 | 2019-05-28 10:30:11 +0200 | [diff] [blame] | 3833 | |
| 3834 | if (sent < flen) { |
| 3835 | h2c->flags |= H2_CF_DEM_SFULL; |
| 3836 | goto fail; |
| 3837 | } |
| 3838 | |
Willy Tarreau | 61ea7dc | 2018-12-01 23:23:04 +0100 | [diff] [blame] | 3839 | goto try_again; |
| 3840 | } |
Willy Tarreau | 455d568 | 2019-05-24 19:42:18 +0200 | [diff] [blame] | 3841 | else if (unlikely(b_space_wraps(csbuf) && |
| 3842 | flen + chklen <= b_room(csbuf) && |
| 3843 | b_data(csbuf) <= MAX_DATA_REALIGN)) { |
| 3844 | /* it doesn't fit in a single block and the buffer is fragmented, if there are |
| 3845 | * not too many data in the buffer, let's defragment it and try |
| 3846 | * again. |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3847 | */ |
| 3848 | b_slow_realign(csbuf, trash.area, 0); |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 3849 | } |
| 3850 | |
Willy Tarreau | eba10f2 | 2018-04-25 20:44:22 +0200 | [diff] [blame] | 3851 | /* chunked-encoding requires more room */ |
| 3852 | if (h2s->flags & H2_SF_DATA_CHNK) { |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3853 | chklen = MIN(flen, b_room(csbuf)); |
Willy Tarreau | eba10f2 | 2018-04-25 20:44:22 +0200 | [diff] [blame] | 3854 | chklen = (chklen < 16) ? 1 : (chklen < 256) ? 2 : |
| 3855 | (chklen < 4096) ? 3 : (chklen < 65536) ? 4 : |
| 3856 | (chklen < 1048576) ? 4 : 8; |
| 3857 | chklen += 4; // CRLF, CRLF |
| 3858 | } |
| 3859 | |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 3860 | /* does it fit in output buffer or should we wait ? */ |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3861 | if (flen + chklen > b_room(csbuf)) { |
| 3862 | if (chklen >= b_room(csbuf)) { |
| 3863 | h2c->flags |= H2_CF_DEM_SFULL; |
Willy Tarreau | 454b57b | 2018-02-26 15:50:05 +0100 | [diff] [blame] | 3864 | goto fail; |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3865 | } |
| 3866 | flen = b_room(csbuf) - chklen; |
Willy Tarreau | eba10f2 | 2018-04-25 20:44:22 +0200 | [diff] [blame] | 3867 | } |
| 3868 | |
| 3869 | if (h2s->flags & H2_SF_DATA_CHNK) { |
| 3870 | /* emit the chunk size */ |
| 3871 | unsigned int chksz = flen; |
| 3872 | char str[10]; |
| 3873 | char *beg; |
| 3874 | |
| 3875 | beg = str + sizeof(str); |
| 3876 | *--beg = '\n'; |
| 3877 | *--beg = '\r'; |
| 3878 | do { |
| 3879 | *--beg = hextab[chksz & 0xF]; |
| 3880 | } while (chksz >>= 4); |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3881 | b_putblk(csbuf, beg, str + sizeof(str) - beg); |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 3882 | } |
| 3883 | |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 3884 | /* Block1 is the length of the first block before the buffer wraps, |
| 3885 | * block2 is the optional second block to reach the end of the frame. |
| 3886 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3887 | block1 = b_contig_data(&h2c->dbuf, 0); |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 3888 | if (block1 > flen) |
| 3889 | block1 = flen; |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 3890 | block2 = flen - block1; |
| 3891 | |
| 3892 | if (block1) |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3893 | b_putblk(csbuf, b_head(&h2c->dbuf), block1); |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 3894 | |
| 3895 | if (block2) |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3896 | b_putblk(csbuf, b_peek(&h2c->dbuf, block1), block2); |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 3897 | |
Willy Tarreau | eba10f2 | 2018-04-25 20:44:22 +0200 | [diff] [blame] | 3898 | if (h2s->flags & H2_SF_DATA_CHNK) { |
| 3899 | /* emit the CRLF */ |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3900 | b_putblk(csbuf, "\r\n", 2); |
Willy Tarreau | eba10f2 | 2018-04-25 20:44:22 +0200 | [diff] [blame] | 3901 | } |
| 3902 | |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 3903 | /* now mark the input data as consumed (will be deleted from the buffer |
| 3904 | * by the caller when seeing FRAME_A after sending the window update). |
| 3905 | */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 3906 | b_del(&h2c->dbuf, flen); |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 3907 | h2c->dfl -= flen; |
| 3908 | h2c->rcvd_c += flen; |
| 3909 | h2c->rcvd_s += flen; // warning, this can also affect the closed streams! |
| 3910 | |
Willy Tarreau | 1915ca2 | 2019-01-24 11:49:37 +0100 | [diff] [blame] | 3911 | if (h2s->flags & H2_SF_DATA_CLEN) |
| 3912 | h2s->body_len -= flen; |
| 3913 | |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 3914 | if (h2c->dfl > h2c->dpl) { |
| 3915 | /* more data available, transfer stalled on stream full */ |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3916 | h2c->flags |= H2_CF_DEM_SFULL; |
Willy Tarreau | 454b57b | 2018-02-26 15:50:05 +0100 | [diff] [blame] | 3917 | goto fail; |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 3918 | } |
| 3919 | |
Willy Tarreau | 4a28da1 | 2018-01-04 14:41:00 +0100 | [diff] [blame] | 3920 | end_transfer: |
Willy Tarreau | 8fc016d | 2017-12-11 18:27:15 +0100 | [diff] [blame] | 3921 | /* here we're done with the frame, all the payload (except padding) was |
| 3922 | * transferred. |
| 3923 | */ |
Willy Tarreau | eba10f2 | 2018-04-25 20:44:22 +0200 | [diff] [blame] | 3924 | |
Willy Tarreau | 61ea7dc | 2018-12-01 23:23:04 +0100 | [diff] [blame] | 3925 | if (h2c->dff & H2_F_DATA_END_STREAM) { |
| 3926 | if (htx) { |
| 3927 | if (!htx_add_endof(htx, HTX_BLK_EOM)) { |
| 3928 | h2c->flags |= H2_CF_DEM_SFULL; |
| 3929 | goto fail; |
| 3930 | } |
Willy Tarreau | d755ea6 | 2018-02-26 15:44:54 +0100 | [diff] [blame] | 3931 | } |
Willy Tarreau | 61ea7dc | 2018-12-01 23:23:04 +0100 | [diff] [blame] | 3932 | else if (h2s->flags & H2_SF_DATA_CHNK) { |
| 3933 | /* emit the trailing 0 CRLF CRLF */ |
| 3934 | if (b_room(csbuf) < 5) { |
| 3935 | h2c->flags |= H2_CF_DEM_SFULL; |
| 3936 | goto fail; |
| 3937 | } |
| 3938 | chklen += 5; |
| 3939 | b_putblk(csbuf, "0\r\n\r\n", 5); |
| 3940 | } |
Willy Tarreau | eba10f2 | 2018-04-25 20:44:22 +0200 | [diff] [blame] | 3941 | } |
| 3942 | |
Willy Tarreau | d1023bb | 2018-03-22 16:53:12 +0100 | [diff] [blame] | 3943 | h2c->rcvd_c += h2c->dpl; |
| 3944 | h2c->rcvd_s += h2c->dpl; |
| 3945 | h2c->dpl = 0; |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 3946 | h2c->st0 = H2_CS_FRAME_A; // send the corresponding window update |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 3947 | if (htx) |
| 3948 | htx_to_buf(htx, csbuf); |
Willy Tarreau | 61ea7dc | 2018-12-01 23:23:04 +0100 | [diff] [blame] | 3949 | return 1; |
Willy Tarreau | 454b57b | 2018-02-26 15:50:05 +0100 | [diff] [blame] | 3950 | fail: |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 3951 | if (htx) |
| 3952 | htx_to_buf(htx, csbuf); |
Willy Tarreau | 454b57b | 2018-02-26 15:50:05 +0100 | [diff] [blame] | 3953 | return 0; |
Willy Tarreau | 454f905 | 2017-10-26 19:40:35 +0200 | [diff] [blame] | 3954 | } |
| 3955 | |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 3956 | /* Try to send a HEADERS frame matching HTTP/1 response present at offset <ofs> |
| 3957 | * and for <max> bytes in buffer <buf> for the H2 stream <h2s>. Returns the |
| 3958 | * number of bytes sent. The caller must check the stream's status to detect |
| 3959 | * any error which might have happened subsequently to a successful send. |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 3960 | */ |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 3961 | 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] | 3962 | { |
| 3963 | struct http_hdr list[MAX_HTTP_HDR]; |
| 3964 | struct h2c *h2c = h2s->h2c; |
Willy Tarreau | a40704a | 2018-09-11 13:52:04 +0200 | [diff] [blame] | 3965 | struct h1m *h1m = &h2s->h1m; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 3966 | struct buffer outbuf; |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 3967 | struct buffer *mbuf; |
Willy Tarreau | 9c5e22e | 2018-09-11 19:22:14 +0200 | [diff] [blame] | 3968 | union h1_sl sl; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 3969 | int es_now = 0; |
| 3970 | int ret = 0; |
| 3971 | int hdr; |
| 3972 | |
| 3973 | if (h2c_mux_busy(h2c, h2s)) { |
| 3974 | h2s->flags |= H2_SF_BLK_MBUSY; |
| 3975 | return 0; |
| 3976 | } |
| 3977 | |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 3978 | /* First, try to parse the H1 response and index it into <list>. |
| 3979 | * NOTE! Since it comes from haproxy, we *know* that a response header |
| 3980 | * block does not wrap and we can safely read it this way without |
| 3981 | * having to realign the buffer. |
| 3982 | */ |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 3983 | 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] | 3984 | list, sizeof(list)/sizeof(list[0]), h1m, &sl); |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 3985 | if (ret <= 0) { |
Willy Tarreau | f13ef96 | 2017-11-02 15:14:19 +0100 | [diff] [blame] | 3986 | /* incomplete or invalid response, this is abnormal coming from |
| 3987 | * haproxy and may only result in a bad errorfile or bad Lua code |
| 3988 | * so that won't be fixed, raise an error now. |
| 3989 | * |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 3990 | * FIXME: we should instead add the ability to only return a |
| 3991 | * 502 bad gateway. But in theory this is not supposed to |
| 3992 | * happen. |
| 3993 | */ |
| 3994 | h2s_error(h2s, H2_ERR_INTERNAL_ERROR); |
| 3995 | ret = 0; |
| 3996 | goto end; |
| 3997 | } |
| 3998 | |
Willy Tarreau | 9c5e22e | 2018-09-11 19:22:14 +0200 | [diff] [blame] | 3999 | h2s->status = sl.st.status; |
Willy Tarreau | db72da0 | 2018-09-13 11:52:20 +0200 | [diff] [blame] | 4000 | |
| 4001 | /* certain statuses have no body or an empty one, regardless of |
| 4002 | * what the headers say. |
| 4003 | */ |
| 4004 | if (sl.st.status >= 100 && sl.st.status < 200) { |
| 4005 | h1m->flags &= ~(H1_MF_CLEN | H1_MF_CHNK); |
| 4006 | h1m->curr_len = h1m->body_len = 0; |
| 4007 | } |
| 4008 | else if (sl.st.status == 204 || sl.st.status == 304) { |
| 4009 | /* no contents, claim c-len is present and set to zero */ |
| 4010 | h1m->flags &= ~H1_MF_CHNK; |
| 4011 | h1m->flags |= H1_MF_CLEN; |
| 4012 | h1m->curr_len = h1m->body_len = 0; |
| 4013 | } |
| 4014 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4015 | mbuf = br_tail(h2c->mbuf); |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4016 | retry: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4017 | if (!h2_get_buf(h2c, mbuf)) { |
| 4018 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 4019 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4020 | return 0; |
| 4021 | } |
| 4022 | |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4023 | chunk_reset(&outbuf); |
| 4024 | |
| 4025 | while (1) { |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4026 | outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0); |
| 4027 | if (outbuf.size >= 9 || !b_space_wraps(mbuf)) |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4028 | break; |
| 4029 | realign_again: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4030 | b_slow_realign(mbuf, trash.area, b_data(mbuf)); |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4031 | } |
| 4032 | |
Willy Tarreau | b5b7d4a | 2018-09-12 18:51:18 +0200 | [diff] [blame] | 4033 | if (outbuf.size < 9) |
| 4034 | goto full; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4035 | |
| 4036 | /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4037 | memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5); |
| 4038 | write_n32(outbuf.area + 5, h2s->id); // 4 bytes |
| 4039 | outbuf.data = 9; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4040 | |
| 4041 | /* encode status, which necessarily is the first one */ |
Willy Tarreau | aafdf58 | 2018-12-10 18:06:40 +0100 | [diff] [blame] | 4042 | if (unlikely(list[0].v.len != 3)) { |
Willy Tarreau | a87f202 | 2017-11-09 11:23:00 +0100 | [diff] [blame] | 4043 | /* this is an unparsable response */ |
| 4044 | h2s_error(h2s, H2_ERR_INTERNAL_ERROR); |
| 4045 | ret = 0; |
| 4046 | goto end; |
| 4047 | } |
Willy Tarreau | aafdf58 | 2018-12-10 18:06:40 +0100 | [diff] [blame] | 4048 | |
| 4049 | if (!hpack_encode_str_status(&outbuf, h2s->status, list[0].v)) { |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4050 | if (b_space_wraps(mbuf)) |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4051 | goto realign_again; |
Willy Tarreau | b5b7d4a | 2018-09-12 18:51:18 +0200 | [diff] [blame] | 4052 | goto full; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4053 | } |
| 4054 | |
| 4055 | /* encode all headers, stop at empty name */ |
| 4056 | for (hdr = 1; hdr < sizeof(list)/sizeof(list[0]); hdr++) { |
Willy Tarreau | a76e4c2 | 2017-11-24 08:17:28 +0100 | [diff] [blame] | 4057 | /* these ones do not exist in H2 and must be dropped. */ |
| 4058 | if (isteq(list[hdr].n, ist("connection")) || |
| 4059 | isteq(list[hdr].n, ist("proxy-connection")) || |
| 4060 | isteq(list[hdr].n, ist("keep-alive")) || |
| 4061 | isteq(list[hdr].n, ist("upgrade")) || |
| 4062 | isteq(list[hdr].n, ist("transfer-encoding"))) |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4063 | continue; |
| 4064 | |
| 4065 | if (isteq(list[hdr].n, ist(""))) |
| 4066 | break; // end |
| 4067 | |
| 4068 | if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) { |
| 4069 | /* output full */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4070 | if (b_space_wraps(mbuf)) |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4071 | goto realign_again; |
Willy Tarreau | b5b7d4a | 2018-09-12 18:51:18 +0200 | [diff] [blame] | 4072 | goto full; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4073 | } |
| 4074 | } |
| 4075 | |
| 4076 | /* we may need to add END_STREAM */ |
Willy Tarreau | 927b88b | 2019-03-04 08:03:25 +0100 | [diff] [blame] | 4077 | 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] | 4078 | es_now = 1; |
| 4079 | |
| 4080 | /* update the frame's size */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4081 | h2_set_frame_size(outbuf.area, outbuf.data - 9); |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4082 | |
| 4083 | if (es_now) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4084 | outbuf.area[4] |= H2_F_HEADERS_END_STREAM; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4085 | |
| 4086 | /* consume incoming H1 response */ |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4087 | max -= ret; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4088 | |
| 4089 | /* commit the H2 response */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4090 | b_add(mbuf, outbuf.data); |
Willy Tarreau | 6743420 | 2017-11-06 20:20:51 +0100 | [diff] [blame] | 4091 | h2s->flags |= H2_SF_HEADERS_SENT; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4092 | |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4093 | if (es_now) { |
Willy Tarreau | 35a6270 | 2018-02-27 15:37:25 +0100 | [diff] [blame] | 4094 | // trim any possibly pending data (eg: inconsistent content-length) |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4095 | ret += max; |
Willy Tarreau | 35a6270 | 2018-02-27 15:37:25 +0100 | [diff] [blame] | 4096 | |
Willy Tarreau | 801250e | 2018-09-11 11:45:04 +0200 | [diff] [blame] | 4097 | h1m->state = H1_MSG_DONE; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4098 | h2s->flags |= H2_SF_ES_SENT; |
| 4099 | if (h2s->st == H2_SS_OPEN) |
| 4100 | h2s->st = H2_SS_HLOC; |
| 4101 | else |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 4102 | h2s_close(h2s); |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4103 | } |
Willy Tarreau | 9c5e22e | 2018-09-11 19:22:14 +0200 | [diff] [blame] | 4104 | else if (h2s->status >= 100 && h2s->status < 200) { |
Willy Tarreau | 8728559 | 2017-11-29 15:41:32 +0100 | [diff] [blame] | 4105 | /* 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] | 4106 | h1m_init_res(h1m); |
Willy Tarreau | 9b8cd1f | 2018-09-12 09:24:38 +0200 | [diff] [blame] | 4107 | 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] | 4108 | h2s->h1m.flags |= H1_MF_TOLOWER; |
Willy Tarreau | 8728559 | 2017-11-29 15:41:32 +0100 | [diff] [blame] | 4109 | goto end; |
Willy Tarreau | c199faf | 2017-10-31 08:35:27 +0100 | [diff] [blame] | 4110 | } |
Willy Tarreau | 001823c | 2018-09-12 17:25:32 +0200 | [diff] [blame] | 4111 | |
| 4112 | /* 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] | 4113 | |
| 4114 | end: |
Dirkjan Bussink | c26c72d | 2018-09-14 14:30:25 +0200 | [diff] [blame] | 4115 | //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] | 4116 | return ret; |
Willy Tarreau | b5b7d4a | 2018-09-12 18:51:18 +0200 | [diff] [blame] | 4117 | full: |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4118 | if ((mbuf = br_tail_add(h2c->mbuf)) != NULL) |
| 4119 | goto retry; |
Willy Tarreau | b5b7d4a | 2018-09-12 18:51:18 +0200 | [diff] [blame] | 4120 | h1m_init_res(h1m); |
| 4121 | h1m->err_pos = -1; // don't care about errors on the response path |
| 4122 | h2c->flags |= H2_CF_MUX_MFULL; |
| 4123 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4124 | ret = 0; |
| 4125 | goto end; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 4126 | } |
| 4127 | |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4128 | /* Try to send a DATA frame matching HTTP/1 response present at offset <ofs> |
| 4129 | * for up to <max> bytes in response buffer <buf>, for stream <h2s>. Returns |
| 4130 | * the number of bytes sent. The caller must check the stream's status to |
| 4131 | * detect any error which might have happened subsequently to a successful send. |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4132 | */ |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 4133 | 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] | 4134 | { |
| 4135 | struct h2c *h2c = h2s->h2c; |
Willy Tarreau | a40704a | 2018-09-11 13:52:04 +0200 | [diff] [blame] | 4136 | struct h1m *h1m = &h2s->h1m; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 4137 | struct buffer outbuf; |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4138 | struct buffer *mbuf; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4139 | int ret = 0; |
Willy Tarreau | 1dc41e7 | 2018-06-14 13:21:28 +0200 | [diff] [blame] | 4140 | size_t total = 0; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4141 | int es_now = 0; |
| 4142 | int size = 0; |
Willy Tarreau | 206ba83 | 2018-06-14 15:27:31 +0200 | [diff] [blame] | 4143 | const char *blk1, *blk2; |
Willy Tarreau | 55f3ce1 | 2018-07-18 11:49:27 +0200 | [diff] [blame] | 4144 | size_t len1, len2; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4145 | |
| 4146 | if (h2c_mux_busy(h2c, h2s)) { |
| 4147 | h2s->flags |= H2_SF_BLK_MBUSY; |
| 4148 | goto end; |
| 4149 | } |
| 4150 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4151 | mbuf = br_tail(h2c->mbuf); |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4152 | retry: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4153 | if (!h2_get_buf(h2c, mbuf)) { |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4154 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 4155 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4156 | goto end; |
| 4157 | } |
| 4158 | |
| 4159 | new_frame: |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4160 | if (!max) |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4161 | goto end; |
| 4162 | |
| 4163 | chunk_reset(&outbuf); |
| 4164 | |
| 4165 | while (1) { |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4166 | outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0); |
| 4167 | if (outbuf.size >= 9 || !b_space_wraps(mbuf)) |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4168 | break; |
| 4169 | realign_again: |
Willy Tarreau | 06ae84a | 2018-12-12 09:17:21 +0100 | [diff] [blame] | 4170 | /* If there are pending data in the output buffer, and we have |
| 4171 | * less than 1/4 of the mbuf's size and everything fits, we'll |
| 4172 | * still perform a copy anyway. Otherwise we'll pretend the mbuf |
| 4173 | * is full and wait, to save some slow realign calls. |
| 4174 | */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4175 | if ((max + 9 > b_room(mbuf) || max >= b_size(mbuf) / 4)) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4176 | if ((mbuf = br_tail_add(h2c->mbuf)) != NULL) |
| 4177 | goto retry; |
Willy Tarreau | 06ae84a | 2018-12-12 09:17:21 +0100 | [diff] [blame] | 4178 | h2c->flags |= H2_CF_MUX_MFULL; |
| 4179 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4180 | goto end; |
| 4181 | } |
| 4182 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4183 | b_slow_realign(mbuf, trash.area, b_data(mbuf)); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4184 | } |
| 4185 | |
| 4186 | if (outbuf.size < 9) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4187 | if ((mbuf = br_tail_add(h2c->mbuf)) != NULL) |
| 4188 | goto retry; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4189 | h2c->flags |= H2_CF_MUX_MFULL; |
| 4190 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4191 | goto end; |
| 4192 | } |
| 4193 | |
| 4194 | /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4195 | memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5); |
| 4196 | write_n32(outbuf.area + 5, h2s->id); // 4 bytes |
| 4197 | outbuf.data = 9; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4198 | |
| 4199 | switch (h1m->flags & (H1_MF_CLEN|H1_MF_CHNK)) { |
| 4200 | case 0: /* no content length, read till SHUTW */ |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4201 | size = max; |
Willy Tarreau | 13e4e94 | 2017-12-14 10:55:21 +0100 | [diff] [blame] | 4202 | h1m->curr_len = size; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4203 | break; |
| 4204 | case H1_MF_CLEN: /* content-length: read only h2m->body_len */ |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4205 | size = max; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4206 | if ((long long)size > h1m->curr_len) |
| 4207 | size = h1m->curr_len; |
| 4208 | break; |
| 4209 | default: /* te:chunked : parse chunks */ |
Willy Tarreau | 801250e | 2018-09-11 11:45:04 +0200 | [diff] [blame] | 4210 | if (h1m->state == H1_MSG_CHUNK_CRLF) { |
Willy Tarreau | c0973c6 | 2018-06-14 15:53:21 +0200 | [diff] [blame] | 4211 | ret = h1_skip_chunk_crlf(buf, ofs, ofs + max); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4212 | if (!ret) |
| 4213 | goto end; |
| 4214 | |
| 4215 | if (ret < 0) { |
| 4216 | /* FIXME: bad contents. how to proceed here when we're in H2 ? */ |
Willy Tarreau | 25173a7 | 2018-09-12 09:05:16 +0200 | [diff] [blame] | 4217 | h1m->err_pos = ofs + max + ret; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4218 | h2s_error(h2s, H2_ERR_INTERNAL_ERROR); |
| 4219 | goto end; |
| 4220 | } |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4221 | max -= ret; |
| 4222 | ofs += ret; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4223 | total += ret; |
Willy Tarreau | 801250e | 2018-09-11 11:45:04 +0200 | [diff] [blame] | 4224 | h1m->state = H1_MSG_CHUNK_SIZE; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4225 | } |
| 4226 | |
Willy Tarreau | 801250e | 2018-09-11 11:45:04 +0200 | [diff] [blame] | 4227 | if (h1m->state == H1_MSG_CHUNK_SIZE) { |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4228 | unsigned int chunk; |
Willy Tarreau | 84d6b7a | 2018-06-14 15:59:05 +0200 | [diff] [blame] | 4229 | ret = h1_parse_chunk_size(buf, ofs, ofs + max, &chunk); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4230 | if (!ret) |
| 4231 | goto end; |
| 4232 | |
| 4233 | if (ret < 0) { |
| 4234 | /* FIXME: bad contents. how to proceed here when we're in H2 ? */ |
Willy Tarreau | 25173a7 | 2018-09-12 09:05:16 +0200 | [diff] [blame] | 4235 | h1m->err_pos = ofs + max + ret; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4236 | h2s_error(h2s, H2_ERR_INTERNAL_ERROR); |
| 4237 | goto end; |
| 4238 | } |
| 4239 | |
| 4240 | size = chunk; |
| 4241 | h1m->curr_len = chunk; |
| 4242 | h1m->body_len += chunk; |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4243 | max -= ret; |
| 4244 | ofs += ret; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4245 | total += ret; |
Willy Tarreau | 801250e | 2018-09-11 11:45:04 +0200 | [diff] [blame] | 4246 | h1m->state = size ? H1_MSG_DATA : H1_MSG_TRAILERS; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4247 | if (!size) |
| 4248 | goto send_empty; |
| 4249 | } |
| 4250 | |
| 4251 | /* in MSG_DATA state, continue below */ |
| 4252 | size = h1m->curr_len; |
| 4253 | break; |
| 4254 | } |
| 4255 | |
| 4256 | /* we have in <size> the exact number of bytes we need to copy from |
| 4257 | * the H1 buffer. We need to check this against the connection's and |
| 4258 | * the stream's send windows, and to ensure that this fits in the max |
| 4259 | * frame size and in the buffer's available space minus 9 bytes (for |
| 4260 | * the frame header). The connection's flow control is applied last so |
| 4261 | * that we can use a separate list of streams which are immediately |
| 4262 | * unblocked on window opening. Note: we don't implement padding. |
| 4263 | */ |
| 4264 | |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4265 | if (size > max) |
| 4266 | size = max; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4267 | |
| 4268 | if (size > h2s->mws) |
| 4269 | size = h2s->mws; |
| 4270 | |
| 4271 | if (size <= 0) { |
| 4272 | h2s->flags |= H2_SF_BLK_SFCTL; |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 4273 | if (LIST_ADDED(&h2s->list)) |
Olivier Houchard | bfe2a83 | 2019-05-10 14:02:21 +0200 | [diff] [blame] | 4274 | LIST_DEL_INIT(&h2s->list); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4275 | goto end; |
| 4276 | } |
| 4277 | |
| 4278 | if (h2c->mfs && size > h2c->mfs) |
| 4279 | size = h2c->mfs; |
| 4280 | |
| 4281 | if (size + 9 > outbuf.size) { |
Willy Tarreau | 455d568 | 2019-05-24 19:42:18 +0200 | [diff] [blame] | 4282 | /* It doesn't fit at once. If it at least fits once split and |
| 4283 | * the amount of data to move is low, let's defragment the |
| 4284 | * buffer now. |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4285 | */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4286 | if (b_space_wraps(mbuf) && |
| 4287 | (size + 9 <= b_room(mbuf)) && |
| 4288 | b_data(mbuf) <= MAX_DATA_REALIGN) |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4289 | goto realign_again; |
| 4290 | size = outbuf.size - 9; |
| 4291 | } |
| 4292 | |
| 4293 | if (size <= 0) { |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4294 | if ((mbuf = br_tail_add(h2c->mbuf)) != NULL) |
| 4295 | goto retry; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4296 | h2c->flags |= H2_CF_MUX_MFULL; |
| 4297 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4298 | goto end; |
| 4299 | } |
| 4300 | |
| 4301 | if (size > h2c->mws) |
| 4302 | size = h2c->mws; |
| 4303 | |
| 4304 | if (size <= 0) { |
| 4305 | h2s->flags |= H2_SF_BLK_MFCTL; |
| 4306 | goto end; |
| 4307 | } |
| 4308 | |
| 4309 | /* copy whatever we can */ |
| 4310 | blk1 = blk2 = NULL; // silence a maybe-uninitialized warning |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4311 | ret = b_getblk_nc(buf, &blk1, &len1, &blk2, &len2, ofs, max); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4312 | if (ret == 1) |
| 4313 | len2 = 0; |
| 4314 | |
| 4315 | if (!ret || len1 + len2 < size) { |
| 4316 | /* FIXME: must normally never happen */ |
| 4317 | h2s_error(h2s, H2_ERR_INTERNAL_ERROR); |
| 4318 | goto end; |
| 4319 | } |
| 4320 | |
| 4321 | /* limit len1/len2 to size */ |
| 4322 | if (len1 + len2 > size) { |
| 4323 | int sub = len1 + len2 - size; |
| 4324 | |
| 4325 | if (len2 > sub) |
| 4326 | len2 -= sub; |
| 4327 | else { |
| 4328 | sub -= len2; |
| 4329 | len2 = 0; |
| 4330 | len1 -= sub; |
| 4331 | } |
| 4332 | } |
| 4333 | |
| 4334 | /* now let's copy this this into the output buffer */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4335 | memcpy(outbuf.area + 9, blk1, len1); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4336 | if (len2) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4337 | memcpy(outbuf.area + 9 + len1, blk2, len2); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4338 | |
| 4339 | send_empty: |
| 4340 | /* we may need to add END_STREAM */ |
| 4341 | /* FIXME: we should also detect shutdown(w) below, but how ? Maybe we |
| 4342 | * could rely on the MSG_MORE flag as a hint for this ? |
Willy Tarreau | 0061096 | 2018-07-19 10:58:28 +0200 | [diff] [blame] | 4343 | * |
| 4344 | * FIXME: what we do here is not correct because we send end_stream |
| 4345 | * before knowing if we'll have to send a HEADERS frame for the |
| 4346 | * trailers. More importantly we're not consuming the trailing CRLF |
| 4347 | * after the end of trailers, so it will be left to the caller to |
| 4348 | * eat it. The right way to do it would be to measure trailers here |
| 4349 | * and to send ES only if there are no trailers. |
| 4350 | * |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4351 | */ |
| 4352 | if (((h1m->flags & H1_MF_CLEN) && !(h1m->curr_len - size)) || |
Willy Tarreau | 801250e | 2018-09-11 11:45:04 +0200 | [diff] [blame] | 4353 | !h1m->curr_len || h1m->state >= H1_MSG_DONE) |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4354 | es_now = 1; |
| 4355 | |
| 4356 | /* update the frame's size */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4357 | h2_set_frame_size(outbuf.area, size); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4358 | |
| 4359 | if (es_now) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 4360 | outbuf.area[4] |= H2_F_DATA_END_STREAM; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4361 | |
| 4362 | /* commit the H2 response */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4363 | b_add(mbuf, size + 9); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4364 | |
| 4365 | /* consume incoming H1 response */ |
| 4366 | if (size > 0) { |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4367 | max -= size; |
| 4368 | ofs += size; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4369 | total += size; |
| 4370 | h1m->curr_len -= size; |
| 4371 | h2s->mws -= size; |
| 4372 | h2c->mws -= size; |
| 4373 | |
| 4374 | if (size && !h1m->curr_len && (h1m->flags & H1_MF_CHNK)) { |
Willy Tarreau | 801250e | 2018-09-11 11:45:04 +0200 | [diff] [blame] | 4375 | h1m->state = H1_MSG_CHUNK_CRLF; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4376 | goto new_frame; |
| 4377 | } |
| 4378 | } |
| 4379 | |
| 4380 | if (es_now) { |
| 4381 | if (h2s->st == H2_SS_OPEN) |
| 4382 | h2s->st = H2_SS_HLOC; |
| 4383 | else |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 4384 | h2s_close(h2s); |
Willy Tarreau | 9d89ac8 | 2017-10-31 17:15:59 +0100 | [diff] [blame] | 4385 | |
Willy Tarreau | 35a6270 | 2018-02-27 15:37:25 +0100 | [diff] [blame] | 4386 | if (!(h1m->flags & H1_MF_CHNK)) { |
| 4387 | // trim any possibly pending data (eg: inconsistent content-length) |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 4388 | total += max; |
| 4389 | ofs += max; |
| 4390 | max = 0; |
Willy Tarreau | 35a6270 | 2018-02-27 15:37:25 +0100 | [diff] [blame] | 4391 | |
Willy Tarreau | 801250e | 2018-09-11 11:45:04 +0200 | [diff] [blame] | 4392 | h1m->state = H1_MSG_DONE; |
Willy Tarreau | 35a6270 | 2018-02-27 15:37:25 +0100 | [diff] [blame] | 4393 | } |
Willy Tarreau | 9d89ac8 | 2017-10-31 17:15:59 +0100 | [diff] [blame] | 4394 | |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4395 | h2s->flags |= H2_SF_ES_SENT; |
| 4396 | } |
| 4397 | |
| 4398 | end: |
Dirkjan Bussink | c26c72d | 2018-09-14 14:30:25 +0200 | [diff] [blame] | 4399 | 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, (unsigned int)b_data(buf)); |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 4400 | return total; |
| 4401 | } |
| 4402 | |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4403 | /* Try to send a HEADERS frame matching HTX response present in HTX message |
| 4404 | * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller |
| 4405 | * must check the stream's status to detect any error which might have happened |
| 4406 | * subsequently to a successful send. The htx blocks are automatically removed |
| 4407 | * from the message. The htx message is assumed to be valid since produced from |
| 4408 | * the internal code, hence it contains a start line, an optional series of |
| 4409 | * header blocks and an end of header, otherwise an invalid frame could be |
| 4410 | * emitted and the resulting htx message could be left in an inconsistent state. |
| 4411 | */ |
| 4412 | static size_t h2s_htx_frt_make_resp_headers(struct h2s *h2s, struct htx *htx) |
| 4413 | { |
| 4414 | struct http_hdr list[MAX_HTTP_HDR]; |
| 4415 | struct h2c *h2c = h2s->h2c; |
| 4416 | struct htx_blk *blk; |
| 4417 | struct htx_blk *blk_end; |
| 4418 | struct buffer outbuf; |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4419 | struct buffer *mbuf; |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4420 | struct htx_sl *sl; |
| 4421 | enum htx_blk_type type; |
| 4422 | int es_now = 0; |
| 4423 | int ret = 0; |
| 4424 | int hdr; |
| 4425 | int idx; |
| 4426 | |
| 4427 | if (h2c_mux_busy(h2c, h2s)) { |
| 4428 | h2s->flags |= H2_SF_BLK_MBUSY; |
| 4429 | return 0; |
| 4430 | } |
| 4431 | |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4432 | /* determine the first block which must not be deleted, blk_end may |
| 4433 | * be NULL if all blocks have to be deleted. |
| 4434 | */ |
| 4435 | idx = htx_get_head(htx); |
| 4436 | blk_end = NULL; |
| 4437 | while (idx != -1) { |
| 4438 | type = htx_get_blk_type(htx_get_blk(htx, idx)); |
| 4439 | idx = htx_get_next(htx, idx); |
| 4440 | if (type == HTX_BLK_EOH) { |
| 4441 | if (idx != -1) |
| 4442 | blk_end = htx_get_blk(htx, idx); |
| 4443 | break; |
| 4444 | } |
| 4445 | } |
| 4446 | |
| 4447 | /* get the start line, we do have one */ |
Christopher Faulet | b77a1d2 | 2019-05-13 11:55:10 +0200 | [diff] [blame] | 4448 | blk = htx_get_head_blk(htx); |
| 4449 | BUG_ON(htx_get_blk_type(blk) != HTX_BLK_RES_SL); |
| 4450 | ALREADY_CHECKED(blk); |
| 4451 | sl = htx_get_blk_ptr(htx, blk); |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4452 | h2s->status = sl->info.res.status; |
Willy Tarreau | aafdf58 | 2018-12-10 18:06:40 +0100 | [diff] [blame] | 4453 | if (h2s->status < 100 || h2s->status > 999) |
| 4454 | goto fail; |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4455 | |
| 4456 | /* and the rest of the headers, that we dump starting at header 0 */ |
| 4457 | hdr = 0; |
| 4458 | |
Willy Tarreau | 8e162ee | 2018-12-06 14:07:27 +0100 | [diff] [blame] | 4459 | idx = htx_get_head(htx); // returns the SL that we skip |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4460 | while ((idx = htx_get_next(htx, idx)) != -1) { |
| 4461 | blk = htx_get_blk(htx, idx); |
| 4462 | type = htx_get_blk_type(blk); |
| 4463 | |
| 4464 | if (type == HTX_BLK_UNUSED) |
| 4465 | continue; |
| 4466 | |
| 4467 | if (type != HTX_BLK_HDR) |
| 4468 | break; |
| 4469 | |
| 4470 | if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) |
| 4471 | goto fail; |
| 4472 | |
| 4473 | list[hdr].n = htx_get_blk_name(htx, blk); |
| 4474 | list[hdr].v = htx_get_blk_value(htx, blk); |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4475 | hdr++; |
| 4476 | } |
| 4477 | |
| 4478 | /* marker for end of headers */ |
| 4479 | list[hdr].n = ist(""); |
| 4480 | |
| 4481 | if (h2s->status == 204 || h2s->status == 304) { |
| 4482 | /* no contents, claim c-len is present and set to zero */ |
| 4483 | es_now = 1; |
| 4484 | } |
| 4485 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4486 | mbuf = br_tail(h2c->mbuf); |
| 4487 | retry: |
| 4488 | if (!h2_get_buf(h2c, mbuf)) { |
| 4489 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 4490 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4491 | return 0; |
| 4492 | } |
| 4493 | |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4494 | chunk_reset(&outbuf); |
| 4495 | |
| 4496 | while (1) { |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4497 | outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0); |
| 4498 | if (outbuf.size >= 9 || !b_space_wraps(mbuf)) |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4499 | break; |
| 4500 | realign_again: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4501 | b_slow_realign(mbuf, trash.area, b_data(mbuf)); |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4502 | } |
| 4503 | |
| 4504 | if (outbuf.size < 9) |
| 4505 | goto full; |
| 4506 | |
| 4507 | /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */ |
| 4508 | memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5); |
| 4509 | write_n32(outbuf.area + 5, h2s->id); // 4 bytes |
| 4510 | outbuf.data = 9; |
| 4511 | |
| 4512 | /* encode status, which necessarily is the first one */ |
Willy Tarreau | aafdf58 | 2018-12-10 18:06:40 +0100 | [diff] [blame] | 4513 | if (!hpack_encode_int_status(&outbuf, h2s->status)) { |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4514 | if (b_space_wraps(mbuf)) |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4515 | goto realign_again; |
| 4516 | goto full; |
| 4517 | } |
| 4518 | |
| 4519 | /* encode all headers, stop at empty name */ |
| 4520 | for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) { |
| 4521 | /* these ones do not exist in H2 and must be dropped. */ |
| 4522 | if (isteq(list[hdr].n, ist("connection")) || |
| 4523 | isteq(list[hdr].n, ist("proxy-connection")) || |
| 4524 | isteq(list[hdr].n, ist("keep-alive")) || |
| 4525 | isteq(list[hdr].n, ist("upgrade")) || |
| 4526 | isteq(list[hdr].n, ist("transfer-encoding"))) |
| 4527 | continue; |
| 4528 | |
| 4529 | if (isteq(list[hdr].n, ist(""))) |
| 4530 | break; // end |
| 4531 | |
| 4532 | if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) { |
| 4533 | /* output full */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4534 | if (b_space_wraps(mbuf)) |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4535 | goto realign_again; |
| 4536 | goto full; |
| 4537 | } |
| 4538 | } |
| 4539 | |
Christopher Faulet | 0b46548 | 2019-02-19 15:14:23 +0100 | [diff] [blame] | 4540 | /* we may need to add END_STREAM except for 1xx responses. |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4541 | * FIXME: we should also set it when we know for sure that the |
| 4542 | * content-length is zero as well as on 204/304 |
| 4543 | */ |
Christopher Faulet | 0b46548 | 2019-02-19 15:14:23 +0100 | [diff] [blame] | 4544 | if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM && |
| 4545 | (h2s->status >= 200 || h2s->status == 101)) |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4546 | es_now = 1; |
| 4547 | |
Willy Tarreau | 927b88b | 2019-03-04 08:03:25 +0100 | [diff] [blame] | 4548 | if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4549 | es_now = 1; |
| 4550 | |
| 4551 | /* update the frame's size */ |
| 4552 | h2_set_frame_size(outbuf.area, outbuf.data - 9); |
| 4553 | |
| 4554 | if (es_now) |
| 4555 | outbuf.area[4] |= H2_F_HEADERS_END_STREAM; |
| 4556 | |
| 4557 | /* commit the H2 response */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4558 | b_add(mbuf, outbuf.data); |
Christopher Faulet | 0b46548 | 2019-02-19 15:14:23 +0100 | [diff] [blame] | 4559 | |
| 4560 | /* indicates the HEADERS frame was sent, except for 1xx responses. For |
| 4561 | * 1xx responses, another HEADERS frame is expected. |
| 4562 | */ |
| 4563 | if (h2s->status >= 200 || h2s->status == 101) |
| 4564 | h2s->flags |= H2_SF_HEADERS_SENT; |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4565 | |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4566 | if (es_now) { |
| 4567 | h2s->flags |= H2_SF_ES_SENT; |
| 4568 | if (h2s->st == H2_SS_OPEN) |
| 4569 | h2s->st = H2_SS_HLOC; |
| 4570 | else |
| 4571 | h2s_close(h2s); |
| 4572 | } |
| 4573 | |
| 4574 | /* OK we could properly deliver the response */ |
| 4575 | |
| 4576 | /* remove all header blocks including the EOH and compute the |
| 4577 | * corresponding size. |
| 4578 | * |
| 4579 | * FIXME: We should remove everything when es_now is set. |
| 4580 | */ |
| 4581 | ret = 0; |
| 4582 | idx = htx_get_head(htx); |
| 4583 | blk = htx_get_blk(htx, idx); |
| 4584 | while (blk != blk_end) { |
| 4585 | ret += htx_get_blksz(blk); |
| 4586 | blk = htx_remove_blk(htx, blk); |
| 4587 | } |
Willy Tarreau | c5753ae | 2018-12-02 12:28:01 +0100 | [diff] [blame] | 4588 | |
Christopher Faulet | 316934d | 2019-05-15 14:22:48 +0200 | [diff] [blame] | 4589 | if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) { |
| 4590 | ret += htx_get_blksz(blk_end); |
Willy Tarreau | c5753ae | 2018-12-02 12:28:01 +0100 | [diff] [blame] | 4591 | htx_remove_blk(htx, blk_end); |
Christopher Faulet | 316934d | 2019-05-15 14:22:48 +0200 | [diff] [blame] | 4592 | } |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4593 | end: |
| 4594 | return ret; |
| 4595 | full: |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4596 | if ((mbuf = br_tail_add(h2c->mbuf)) != NULL) |
| 4597 | goto retry; |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 4598 | h2c->flags |= H2_CF_MUX_MFULL; |
| 4599 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4600 | ret = 0; |
| 4601 | goto end; |
| 4602 | fail: |
| 4603 | /* unparsable HTX messages, too large ones to be produced in the local |
| 4604 | * list etc go here (unrecoverable errors). |
| 4605 | */ |
| 4606 | h2s_error(h2s, H2_ERR_INTERNAL_ERROR); |
| 4607 | ret = 0; |
| 4608 | goto end; |
| 4609 | } |
| 4610 | |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4611 | /* Try to send a HEADERS frame matching HTX request present in HTX message |
| 4612 | * <htx> for the H2 stream <h2s>. Returns the number of bytes sent. The caller |
| 4613 | * must check the stream's status to detect any error which might have happened |
| 4614 | * subsequently to a successful send. The htx blocks are automatically removed |
| 4615 | * from the message. The htx message is assumed to be valid since produced from |
| 4616 | * the internal code, hence it contains a start line, an optional series of |
| 4617 | * header blocks and an end of header, otherwise an invalid frame could be |
| 4618 | * emitted and the resulting htx message could be left in an inconsistent state. |
| 4619 | */ |
| 4620 | static size_t h2s_htx_bck_make_req_headers(struct h2s *h2s, struct htx *htx) |
| 4621 | { |
| 4622 | struct http_hdr list[MAX_HTTP_HDR]; |
| 4623 | struct h2c *h2c = h2s->h2c; |
| 4624 | struct htx_blk *blk; |
| 4625 | struct htx_blk *blk_end; |
| 4626 | struct buffer outbuf; |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4627 | struct buffer *mbuf; |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4628 | struct htx_sl *sl; |
Willy Tarreau | 053c157 | 2019-02-01 16:13:59 +0100 | [diff] [blame] | 4629 | struct ist meth, path, auth; |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4630 | enum htx_blk_type type; |
| 4631 | int es_now = 0; |
| 4632 | int ret = 0; |
| 4633 | int hdr; |
| 4634 | int idx; |
| 4635 | |
| 4636 | if (h2c_mux_busy(h2c, h2s)) { |
| 4637 | h2s->flags |= H2_SF_BLK_MBUSY; |
| 4638 | return 0; |
| 4639 | } |
| 4640 | |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4641 | /* determine the first block which must not be deleted, blk_end may |
| 4642 | * be NULL if all blocks have to be deleted. |
| 4643 | */ |
| 4644 | idx = htx_get_head(htx); |
| 4645 | blk_end = NULL; |
| 4646 | while (idx != -1) { |
| 4647 | type = htx_get_blk_type(htx_get_blk(htx, idx)); |
| 4648 | idx = htx_get_next(htx, idx); |
| 4649 | if (type == HTX_BLK_EOH) { |
| 4650 | if (idx != -1) |
| 4651 | blk_end = htx_get_blk(htx, idx); |
| 4652 | break; |
| 4653 | } |
| 4654 | } |
| 4655 | |
| 4656 | /* get the start line, we do have one */ |
Christopher Faulet | b77a1d2 | 2019-05-13 11:55:10 +0200 | [diff] [blame] | 4657 | blk = htx_get_head_blk(htx); |
| 4658 | BUG_ON(htx_get_blk_type(blk) != HTX_BLK_REQ_SL); |
| 4659 | ALREADY_CHECKED(blk); |
| 4660 | sl = htx_get_blk_ptr(htx, blk); |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4661 | meth = htx_sl_req_meth(sl); |
| 4662 | path = htx_sl_req_uri(sl); |
| 4663 | |
| 4664 | /* and the rest of the headers, that we dump starting at header 0 */ |
| 4665 | hdr = 0; |
| 4666 | |
Willy Tarreau | 8e162ee | 2018-12-06 14:07:27 +0100 | [diff] [blame] | 4667 | idx = htx_get_head(htx); // returns the SL that we skip |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4668 | while ((idx = htx_get_next(htx, idx)) != -1) { |
| 4669 | blk = htx_get_blk(htx, idx); |
| 4670 | type = htx_get_blk_type(blk); |
| 4671 | |
| 4672 | if (type == HTX_BLK_UNUSED) |
| 4673 | continue; |
| 4674 | |
| 4675 | if (type != HTX_BLK_HDR) |
| 4676 | break; |
| 4677 | |
| 4678 | if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) |
| 4679 | goto fail; |
| 4680 | |
| 4681 | list[hdr].n = htx_get_blk_name(htx, blk); |
| 4682 | list[hdr].v = htx_get_blk_value(htx, blk); |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4683 | hdr++; |
| 4684 | } |
| 4685 | |
| 4686 | /* marker for end of headers */ |
| 4687 | list[hdr].n = ist(""); |
| 4688 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4689 | mbuf = br_tail(h2c->mbuf); |
| 4690 | retry: |
| 4691 | if (!h2_get_buf(h2c, mbuf)) { |
| 4692 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 4693 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4694 | return 0; |
| 4695 | } |
| 4696 | |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4697 | chunk_reset(&outbuf); |
| 4698 | |
| 4699 | while (1) { |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4700 | outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0); |
| 4701 | if (outbuf.size >= 9 || !b_space_wraps(mbuf)) |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4702 | break; |
| 4703 | realign_again: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4704 | b_slow_realign(mbuf, trash.area, b_data(mbuf)); |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4705 | } |
| 4706 | |
| 4707 | if (outbuf.size < 9) |
| 4708 | goto full; |
| 4709 | |
| 4710 | /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4 */ |
| 4711 | memcpy(outbuf.area, "\x00\x00\x00\x01\x04", 5); |
| 4712 | write_n32(outbuf.area + 5, h2s->id); // 4 bytes |
| 4713 | outbuf.data = 9; |
| 4714 | |
| 4715 | /* encode the method, which necessarily is the first one */ |
Willy Tarreau | bdabc3a | 2018-12-10 18:25:11 +0100 | [diff] [blame] | 4716 | if (!hpack_encode_method(&outbuf, sl->info.req.meth, meth)) { |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4717 | if (b_space_wraps(mbuf)) |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4718 | goto realign_again; |
| 4719 | goto full; |
| 4720 | } |
| 4721 | |
Willy Tarreau | 5be92ff | 2019-02-01 15:51:59 +0100 | [diff] [blame] | 4722 | /* RFC7540 #8.3: the CONNECT method must have : |
| 4723 | * - :authority set to the URI part (host:port) |
| 4724 | * - :method set to CONNECT |
| 4725 | * - :scheme and :path omitted |
| 4726 | */ |
| 4727 | if (sl->info.req.meth != HTTP_METH_CONNECT) { |
| 4728 | /* encode the scheme which is always "https" (or 0x86 for "http") */ |
| 4729 | if (!hpack_encode_scheme(&outbuf, ist("https"))) { |
| 4730 | /* output full */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4731 | if (b_space_wraps(mbuf)) |
Willy Tarreau | 5be92ff | 2019-02-01 15:51:59 +0100 | [diff] [blame] | 4732 | goto realign_again; |
| 4733 | goto full; |
| 4734 | } |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4735 | |
Willy Tarreau | 5be92ff | 2019-02-01 15:51:59 +0100 | [diff] [blame] | 4736 | /* encode the path, which necessarily is the second one */ |
| 4737 | if (!hpack_encode_path(&outbuf, path)) { |
| 4738 | /* output full */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4739 | if (b_space_wraps(mbuf)) |
Willy Tarreau | 5be92ff | 2019-02-01 15:51:59 +0100 | [diff] [blame] | 4740 | goto realign_again; |
| 4741 | goto full; |
| 4742 | } |
Willy Tarreau | 053c157 | 2019-02-01 16:13:59 +0100 | [diff] [blame] | 4743 | |
| 4744 | /* look for the Host header and place it in :authority */ |
| 4745 | auth = ist2(NULL, 0); |
| 4746 | for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) { |
| 4747 | if (isteq(list[hdr].n, ist(""))) |
| 4748 | break; // end |
| 4749 | |
| 4750 | if (isteq(list[hdr].n, ist("host"))) { |
| 4751 | auth = list[hdr].v; |
| 4752 | break; |
| 4753 | } |
| 4754 | } |
| 4755 | } |
| 4756 | else { |
| 4757 | /* for CONNECT, :authority is taken from the path */ |
| 4758 | auth = path; |
| 4759 | } |
| 4760 | |
| 4761 | if (auth.ptr && !hpack_encode_header(&outbuf, ist(":authority"), auth)) { |
| 4762 | /* output full */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4763 | if (b_space_wraps(mbuf)) |
Willy Tarreau | 053c157 | 2019-02-01 16:13:59 +0100 | [diff] [blame] | 4764 | goto realign_again; |
| 4765 | goto full; |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4766 | } |
| 4767 | |
| 4768 | /* encode all headers, stop at empty name */ |
| 4769 | for (hdr = 0; hdr < sizeof(list)/sizeof(list[0]); hdr++) { |
| 4770 | /* these ones do not exist in H2 and must be dropped. */ |
| 4771 | if (isteq(list[hdr].n, ist("connection")) || |
Willy Tarreau | 053c157 | 2019-02-01 16:13:59 +0100 | [diff] [blame] | 4772 | isteq(list[hdr].n, ist("host")) || |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4773 | isteq(list[hdr].n, ist("proxy-connection")) || |
| 4774 | isteq(list[hdr].n, ist("keep-alive")) || |
| 4775 | isteq(list[hdr].n, ist("upgrade")) || |
| 4776 | isteq(list[hdr].n, ist("transfer-encoding"))) |
| 4777 | continue; |
| 4778 | |
| 4779 | if (isteq(list[hdr].n, ist(""))) |
| 4780 | break; // end |
| 4781 | |
| 4782 | if (!hpack_encode_header(&outbuf, list[hdr].n, list[hdr].v)) { |
| 4783 | /* output full */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4784 | if (b_space_wraps(mbuf)) |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4785 | goto realign_again; |
| 4786 | goto full; |
| 4787 | } |
| 4788 | } |
| 4789 | |
| 4790 | /* we may need to add END_STREAM if we have no body : |
| 4791 | * - request already closed, or : |
| 4792 | * - no transfer-encoding, and : |
| 4793 | * - no content-length or content-length:0 |
| 4794 | * Fixme: this doesn't take into account CONNECT requests. |
| 4795 | */ |
| 4796 | if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) |
| 4797 | es_now = 1; |
| 4798 | |
| 4799 | if (sl->flags & HTX_SL_F_BODYLESS) |
| 4800 | es_now = 1; |
| 4801 | |
Willy Tarreau | 927b88b | 2019-03-04 08:03:25 +0100 | [diff] [blame] | 4802 | if (!h2s->cs || h2s->cs->flags & CS_FL_SHW) |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4803 | es_now = 1; |
| 4804 | |
| 4805 | /* update the frame's size */ |
| 4806 | h2_set_frame_size(outbuf.area, outbuf.data - 9); |
| 4807 | |
| 4808 | if (es_now) |
| 4809 | outbuf.area[4] |= H2_F_HEADERS_END_STREAM; |
| 4810 | |
| 4811 | /* commit the H2 response */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4812 | b_add(mbuf, outbuf.data); |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4813 | h2s->flags |= H2_SF_HEADERS_SENT; |
| 4814 | h2s->st = H2_SS_OPEN; |
| 4815 | |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4816 | if (es_now) { |
| 4817 | // trim any possibly pending data (eg: inconsistent content-length) |
| 4818 | h2s->flags |= H2_SF_ES_SENT; |
| 4819 | h2s->st = H2_SS_HLOC; |
| 4820 | } |
| 4821 | |
| 4822 | /* remove all header blocks including the EOH and compute the |
| 4823 | * corresponding size. |
| 4824 | * |
| 4825 | * FIXME: We should remove everything when es_now is set. |
| 4826 | */ |
| 4827 | ret = 0; |
| 4828 | idx = htx_get_head(htx); |
| 4829 | blk = htx_get_blk(htx, idx); |
| 4830 | while (blk != blk_end) { |
| 4831 | ret += htx_get_blksz(blk); |
| 4832 | blk = htx_remove_blk(htx, blk); |
| 4833 | } |
| 4834 | |
Christopher Faulet | 316934d | 2019-05-15 14:22:48 +0200 | [diff] [blame] | 4835 | if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) { |
| 4836 | ret += htx_get_blksz(blk_end); |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4837 | htx_remove_blk(htx, blk_end); |
Christopher Faulet | 316934d | 2019-05-15 14:22:48 +0200 | [diff] [blame] | 4838 | } |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4839 | |
| 4840 | end: |
| 4841 | return ret; |
| 4842 | full: |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4843 | if ((mbuf = br_tail_add(h2c->mbuf)) != NULL) |
| 4844 | goto retry; |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 4845 | h2c->flags |= H2_CF_MUX_MFULL; |
| 4846 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4847 | ret = 0; |
| 4848 | goto end; |
| 4849 | fail: |
| 4850 | /* unparsable HTX messages, too large ones to be produced in the local |
| 4851 | * list etc go here (unrecoverable errors). |
| 4852 | */ |
| 4853 | h2s_error(h2s, H2_ERR_INTERNAL_ERROR); |
| 4854 | ret = 0; |
| 4855 | goto end; |
| 4856 | } |
| 4857 | |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 4858 | /* 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] | 4859 | * present in <buf>, for stream <h2s>. Returns the number of bytes sent. The |
| 4860 | * caller must check the stream's status to detect any error which might have |
| 4861 | * happened subsequently to a successful send. Returns the number of data bytes |
Christopher Faulet | 54b5e21 | 2019-06-04 10:08:28 +0200 | [diff] [blame] | 4862 | * 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] | 4863 | */ |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 4864 | 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] | 4865 | { |
| 4866 | struct h2c *h2c = h2s->h2c; |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 4867 | struct htx *htx; |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 4868 | struct buffer outbuf; |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4869 | struct buffer *mbuf; |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 4870 | size_t total = 0; |
| 4871 | int es_now = 0; |
| 4872 | int bsize; /* htx block size */ |
| 4873 | int fsize; /* h2 frame size */ |
| 4874 | struct htx_blk *blk; |
| 4875 | enum htx_blk_type type; |
| 4876 | int idx; |
| 4877 | |
| 4878 | if (h2c_mux_busy(h2c, h2s)) { |
| 4879 | h2s->flags |= H2_SF_BLK_MBUSY; |
| 4880 | goto end; |
| 4881 | } |
| 4882 | |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 4883 | htx = htx_from_buf(buf); |
| 4884 | |
Christopher Faulet | 54b5e21 | 2019-06-04 10:08:28 +0200 | [diff] [blame] | 4885 | /* We only come here with HTX_BLK_DATA blocks. However, while looping, |
| 4886 | * we can meet an HTX_BLK_EOM block that we'll leave to the caller to |
| 4887 | * handle. |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 4888 | */ |
| 4889 | |
| 4890 | new_frame: |
Willy Tarreau | ee57376 | 2018-12-04 15:25:57 +0100 | [diff] [blame] | 4891 | if (!count || htx_is_empty(htx)) |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 4892 | goto end; |
| 4893 | |
| 4894 | idx = htx_get_head(htx); |
| 4895 | blk = htx_get_blk(htx, idx); |
Christopher Faulet | 54b5e21 | 2019-06-04 10:08:28 +0200 | [diff] [blame] | 4896 | type = htx_get_blk_type(blk); // DATA or EOM |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 4897 | bsize = htx_get_blksz(blk); |
| 4898 | fsize = bsize; |
| 4899 | |
Christopher Faulet | 54b5e21 | 2019-06-04 10:08:28 +0200 | [diff] [blame] | 4900 | if (type == HTX_BLK_EOM) { |
Willy Tarreau | 7eeb10a | 2019-01-04 09:28:17 +0100 | [diff] [blame] | 4901 | if (h2s->flags & H2_SF_ES_SENT) { |
| 4902 | /* ES already sent */ |
| 4903 | htx_remove_blk(htx, blk); |
| 4904 | total++; // EOM counts as one byte |
| 4905 | count--; |
| 4906 | goto end; |
| 4907 | } |
| 4908 | } |
| 4909 | else if (type != HTX_BLK_DATA) |
Willy Tarreau | 2fb1d4c | 2018-12-04 15:28:03 +0100 | [diff] [blame] | 4910 | goto end; |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 4911 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4912 | mbuf = br_tail(h2c->mbuf); |
| 4913 | retry: |
| 4914 | if (!h2_get_buf(h2c, mbuf)) { |
| 4915 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 4916 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4917 | goto end; |
| 4918 | } |
| 4919 | |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 4920 | /* Perform some optimizations to reduce the number of buffer copies. |
| 4921 | * First, if the mux's buffer is empty and the htx area contains |
| 4922 | * exactly one data block of the same size as the requested count, and |
| 4923 | * this count fits within the frame size, the stream's window size, and |
| 4924 | * the connection's window size, then it's possible to simply swap the |
| 4925 | * caller's buffer with the mux's output buffer and adjust offsets and |
| 4926 | * length to match the entire DATA HTX block in the middle. In this |
| 4927 | * case we perform a true zero-copy operation from end-to-end. This is |
| 4928 | * the situation that happens all the time with large files. Second, if |
| 4929 | * this is not possible, but the mux's output buffer is empty, we still |
| 4930 | * have an opportunity to avoid the copy to the intermediary buffer, by |
| 4931 | * making the intermediary buffer's area point to the output buffer's |
| 4932 | * area. In this case we want to skip the HTX header to make sure that |
| 4933 | * copies remain aligned and that this operation remains possible all |
| 4934 | * the time. This goes for headers, data blocks and any data extracted |
| 4935 | * from the HTX blocks. |
| 4936 | */ |
| 4937 | if (unlikely(fsize == count && |
| 4938 | htx->used == 1 && type == HTX_BLK_DATA && |
| 4939 | fsize <= h2s->mws && fsize <= h2c->mws && fsize <= h2c->mfs)) { |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4940 | void *old_area = mbuf->area; |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 4941 | |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4942 | if (b_data(mbuf)) { |
Willy Tarreau | 8ab128c | 2019-03-21 17:47:28 +0100 | [diff] [blame] | 4943 | /* Too bad there are data left there. We're willing to memcpy/memmove |
| 4944 | * up to 1/4 of the buffer, which means that it's OK to copy a large |
| 4945 | * frame into a buffer containing few data if it needs to be realigned, |
| 4946 | * and that it's also OK to copy few data without realigning. Otherwise |
| 4947 | * 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] | 4948 | */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4949 | if (fsize + 9 <= b_room(mbuf) && |
| 4950 | (b_data(mbuf) <= b_size(mbuf) / 4 || |
| 4951 | (fsize <= b_size(mbuf) / 4 && fsize + 9 <= b_contig_space(mbuf)))) |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 4952 | goto copy; |
Willy Tarreau | 8ab128c | 2019-03-21 17:47:28 +0100 | [diff] [blame] | 4953 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 4954 | if ((mbuf = br_tail_add(h2c->mbuf)) != NULL) |
| 4955 | goto retry; |
| 4956 | |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 4957 | h2c->flags |= H2_CF_MUX_MFULL; |
| 4958 | h2s->flags |= H2_SF_BLK_MROOM; |
| 4959 | goto end; |
| 4960 | } |
| 4961 | |
| 4962 | /* map an H2 frame to the HTX block so that we can put the |
| 4963 | * frame header there. |
| 4964 | */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4965 | *mbuf = b_make(buf->area, buf->size, sizeof(struct htx) + blk->addr - 9, fsize + 9); |
| 4966 | outbuf.area = b_head(mbuf); |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 4967 | |
| 4968 | /* prepend an H2 DATA frame header just before the DATA block */ |
| 4969 | memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5); |
| 4970 | write_n32(outbuf.area + 5, h2s->id); // 4 bytes |
| 4971 | h2_set_frame_size(outbuf.area, fsize); |
| 4972 | |
| 4973 | /* update windows */ |
| 4974 | h2s->mws -= fsize; |
| 4975 | h2c->mws -= fsize; |
| 4976 | |
| 4977 | /* and exchange with our old area */ |
| 4978 | buf->area = old_area; |
| 4979 | buf->data = buf->head = 0; |
| 4980 | total += fsize; |
| 4981 | goto end; |
| 4982 | } |
Willy Tarreau | 2fb1d4c | 2018-12-04 15:28:03 +0100 | [diff] [blame] | 4983 | |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 4984 | copy: |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 4985 | /* for DATA and EOM we'll have to emit a frame, even if empty */ |
| 4986 | |
| 4987 | while (1) { |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4988 | outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0); |
| 4989 | if (outbuf.size >= 9 || !b_space_wraps(mbuf)) |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 4990 | break; |
| 4991 | realign_again: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 4992 | b_slow_realign(mbuf, trash.area, b_data(mbuf)); |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 4993 | } |
| 4994 | |
| 4995 | if (outbuf.size < 9) { |
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 | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 4998 | h2c->flags |= H2_CF_MUX_MFULL; |
| 4999 | h2s->flags |= H2_SF_BLK_MROOM; |
| 5000 | goto end; |
| 5001 | } |
| 5002 | |
| 5003 | /* len: 0x000000 (fill later), type: 0(DATA), flags: none=0 */ |
| 5004 | memcpy(outbuf.area, "\x00\x00\x00\x00\x00", 5); |
| 5005 | write_n32(outbuf.area + 5, h2s->id); // 4 bytes |
| 5006 | outbuf.data = 9; |
| 5007 | |
| 5008 | /* we have in <fsize> the exact number of bytes we need to copy from |
| 5009 | * the HTX buffer. We need to check this against the connection's and |
| 5010 | * the stream's send windows, and to ensure that this fits in the max |
| 5011 | * frame size and in the buffer's available space minus 9 bytes (for |
| 5012 | * the frame header). The connection's flow control is applied last so |
| 5013 | * that we can use a separate list of streams which are immediately |
| 5014 | * unblocked on window opening. Note: we don't implement padding. |
| 5015 | */ |
| 5016 | |
| 5017 | /* EOM is presented with bsize==1 but would lead to the emission of an |
| 5018 | * empty frame, thus we force it to zero here. |
| 5019 | */ |
| 5020 | if (type == HTX_BLK_EOM) |
| 5021 | bsize = fsize = 0; |
| 5022 | |
| 5023 | if (!fsize) |
| 5024 | goto send_empty; |
| 5025 | |
| 5026 | if (h2s->mws <= 0) { |
| 5027 | h2s->flags |= H2_SF_BLK_SFCTL; |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 5028 | if (LIST_ADDED(&h2s->list)) |
Olivier Houchard | bfe2a83 | 2019-05-10 14:02:21 +0200 | [diff] [blame] | 5029 | LIST_DEL_INIT(&h2s->list); |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5030 | goto end; |
| 5031 | } |
| 5032 | |
Willy Tarreau | ee57376 | 2018-12-04 15:25:57 +0100 | [diff] [blame] | 5033 | if (fsize > count) |
| 5034 | fsize = count; |
| 5035 | |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5036 | if (fsize > h2s->mws) |
| 5037 | fsize = h2s->mws; // >0 |
| 5038 | |
| 5039 | if (h2c->mfs && fsize > h2c->mfs) |
| 5040 | fsize = h2c->mfs; // >0 |
| 5041 | |
| 5042 | if (fsize + 9 > outbuf.size) { |
Willy Tarreau | 455d568 | 2019-05-24 19:42:18 +0200 | [diff] [blame] | 5043 | /* It doesn't fit at once. If it at least fits once split and |
| 5044 | * the amount of data to move is low, let's defragment the |
| 5045 | * buffer now. |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5046 | */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5047 | if (b_space_wraps(mbuf) && |
| 5048 | (fsize + 9 <= b_room(mbuf)) && |
| 5049 | b_data(mbuf) <= MAX_DATA_REALIGN) |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5050 | goto realign_again; |
| 5051 | fsize = outbuf.size - 9; |
| 5052 | |
| 5053 | if (fsize <= 0) { |
| 5054 | /* no need to send an empty frame here */ |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 5055 | if ((mbuf = br_tail_add(h2c->mbuf)) != NULL) |
| 5056 | goto retry; |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5057 | h2c->flags |= H2_CF_MUX_MFULL; |
| 5058 | h2s->flags |= H2_SF_BLK_MROOM; |
| 5059 | goto end; |
| 5060 | } |
| 5061 | } |
| 5062 | |
| 5063 | if (h2c->mws <= 0) { |
| 5064 | h2s->flags |= H2_SF_BLK_MFCTL; |
| 5065 | goto end; |
| 5066 | } |
| 5067 | |
| 5068 | if (fsize > h2c->mws) |
| 5069 | fsize = h2c->mws; |
| 5070 | |
| 5071 | /* now let's copy this this into the output buffer */ |
| 5072 | memcpy(outbuf.area + 9, htx_get_blk_ptr(htx, blk), fsize); |
Willy Tarreau | 0f799ca | 2018-12-04 15:20:11 +0100 | [diff] [blame] | 5073 | h2s->mws -= fsize; |
| 5074 | h2c->mws -= fsize; |
Willy Tarreau | ee57376 | 2018-12-04 15:25:57 +0100 | [diff] [blame] | 5075 | count -= fsize; |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5076 | |
| 5077 | send_empty: |
| 5078 | /* update the frame's size */ |
| 5079 | h2_set_frame_size(outbuf.area, fsize); |
| 5080 | |
| 5081 | /* FIXME: for now we only set the ES flag on empty DATA frames, once |
| 5082 | * meeting EOM. We should optimize this later. |
| 5083 | */ |
| 5084 | if (type == HTX_BLK_EOM) { |
Willy Tarreau | ee57376 | 2018-12-04 15:25:57 +0100 | [diff] [blame] | 5085 | total++; // EOM counts as one byte |
| 5086 | count--; |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5087 | es_now = 1; |
| 5088 | } |
| 5089 | |
| 5090 | if (es_now) |
| 5091 | outbuf.area[4] |= H2_F_DATA_END_STREAM; |
| 5092 | |
| 5093 | /* commit the H2 response */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5094 | b_add(mbuf, fsize + 9); |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5095 | |
| 5096 | /* consume incoming HTX block, including EOM */ |
| 5097 | total += fsize; |
| 5098 | if (fsize == bsize) { |
| 5099 | htx_remove_blk(htx, blk); |
| 5100 | if (fsize) |
| 5101 | goto new_frame; |
| 5102 | } else { |
| 5103 | /* we've truncated this block */ |
| 5104 | htx_cut_data_blk(htx, blk, fsize); |
| 5105 | } |
| 5106 | |
| 5107 | if (es_now) { |
| 5108 | if (h2s->st == H2_SS_OPEN) |
| 5109 | h2s->st = H2_SS_HLOC; |
| 5110 | else |
| 5111 | h2s_close(h2s); |
| 5112 | |
| 5113 | h2s->flags |= H2_SF_ES_SENT; |
| 5114 | } |
| 5115 | |
| 5116 | end: |
| 5117 | return total; |
| 5118 | } |
| 5119 | |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5120 | /* Try to send a HEADERS frame matching HTX_BLK_TLR series of blocks present in |
| 5121 | * HTX message <htx> for the H2 stream <h2s>. Returns the number of bytes |
| 5122 | * processed. The caller must check the stream's status to detect any error |
| 5123 | * which might have happened subsequently to a successful send. The htx blocks |
| 5124 | * are automatically removed from the message. The htx message is assumed to be |
| 5125 | * valid since produced from the internal code. Processing stops when meeting |
Willy Tarreau | fb07b3f | 2019-05-06 11:23:29 +0200 | [diff] [blame] | 5126 | * 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] | 5127 | * as a single frame. The ES flag is always set. |
| 5128 | */ |
| 5129 | static size_t h2s_htx_make_trailers(struct h2s *h2s, struct htx *htx) |
| 5130 | { |
| 5131 | struct http_hdr list[MAX_HTTP_HDR]; |
| 5132 | struct h2c *h2c = h2s->h2c; |
| 5133 | struct htx_blk *blk; |
| 5134 | struct htx_blk *blk_end; |
| 5135 | struct buffer outbuf; |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5136 | struct buffer *mbuf; |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5137 | enum htx_blk_type type; |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5138 | int ret = 0; |
| 5139 | int hdr; |
| 5140 | int idx; |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5141 | |
| 5142 | if (h2c_mux_busy(h2c, h2s)) { |
| 5143 | h2s->flags |= H2_SF_BLK_MBUSY; |
| 5144 | goto end; |
| 5145 | } |
| 5146 | |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 5147 | /* determine the first block which must not be deleted, blk_end may |
| 5148 | * be NULL if all blocks have to be deleted. also get trailers. |
| 5149 | */ |
| 5150 | idx = htx_get_head(htx); |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5151 | blk_end = NULL; |
| 5152 | |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 5153 | hdr = 0; |
| 5154 | while (idx != -1) { |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5155 | blk = htx_get_blk(htx, idx); |
| 5156 | type = htx_get_blk_type(blk); |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 5157 | idx = htx_get_next(htx, idx); |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5158 | if (type == HTX_BLK_UNUSED) |
| 5159 | continue; |
| 5160 | |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 5161 | if (type == HTX_BLK_EOT) { |
| 5162 | if (idx != -1) |
| 5163 | blk_end = blk; |
| 5164 | break; |
| 5165 | } |
Willy Tarreau | fb07b3f | 2019-05-06 11:23:29 +0200 | [diff] [blame] | 5166 | if (type != HTX_BLK_TLR) |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5167 | break; |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5168 | |
| 5169 | if (unlikely(hdr >= sizeof(list)/sizeof(list[0]) - 1)) |
| 5170 | goto fail; |
| 5171 | |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 5172 | list[hdr].n = htx_get_blk_name(htx, blk); |
| 5173 | list[hdr].v = htx_get_blk_value(htx, blk); |
| 5174 | hdr++; |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5175 | } |
| 5176 | |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 5177 | /* marker for end of trailers */ |
| 5178 | list[hdr].n = ist(""); |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5179 | |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 5180 | mbuf = br_tail(h2c->mbuf); |
| 5181 | retry: |
| 5182 | if (!h2_get_buf(h2c, mbuf)) { |
| 5183 | h2c->flags |= H2_CF_MUX_MALLOC; |
| 5184 | h2s->flags |= H2_SF_BLK_MROOM; |
| 5185 | goto end; |
| 5186 | } |
| 5187 | |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5188 | chunk_reset(&outbuf); |
| 5189 | |
| 5190 | while (1) { |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5191 | outbuf = b_make(b_tail(mbuf), b_contig_space(mbuf), 0, 0); |
| 5192 | if (outbuf.size >= 9 || !b_space_wraps(mbuf)) |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5193 | break; |
| 5194 | realign_again: |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5195 | b_slow_realign(mbuf, trash.area, b_data(mbuf)); |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5196 | } |
| 5197 | |
| 5198 | if (outbuf.size < 9) |
| 5199 | goto full; |
| 5200 | |
| 5201 | /* len: 0x000000 (fill later), type: 1(HEADERS), flags: ENDH=4,ES=1 */ |
| 5202 | memcpy(outbuf.area, "\x00\x00\x00\x01\x05", 5); |
| 5203 | write_n32(outbuf.area + 5, h2s->id); // 4 bytes |
| 5204 | outbuf.data = 9; |
| 5205 | |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5206 | /* encode all headers */ |
| 5207 | for (idx = 0; idx < hdr; idx++) { |
| 5208 | /* these ones do not exist in H2 or must not appear in |
| 5209 | * trailers and must be dropped. |
| 5210 | */ |
| 5211 | if (isteq(list[idx].n, ist("host")) || |
| 5212 | isteq(list[idx].n, ist("content-length")) || |
| 5213 | isteq(list[idx].n, ist("connection")) || |
| 5214 | isteq(list[idx].n, ist("proxy-connection")) || |
| 5215 | isteq(list[idx].n, ist("keep-alive")) || |
| 5216 | isteq(list[idx].n, ist("upgrade")) || |
| 5217 | isteq(list[idx].n, ist("te")) || |
| 5218 | isteq(list[idx].n, ist("transfer-encoding"))) |
| 5219 | continue; |
| 5220 | |
| 5221 | if (!hpack_encode_header(&outbuf, list[idx].n, list[idx].v)) { |
| 5222 | /* output full */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5223 | if (b_space_wraps(mbuf)) |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5224 | goto realign_again; |
| 5225 | goto full; |
| 5226 | } |
| 5227 | } |
| 5228 | |
Willy Tarreau | 5121e5d | 2019-05-06 15:13:41 +0200 | [diff] [blame] | 5229 | if (outbuf.data == 9) { |
| 5230 | /* here we have a problem, we have nothing to emit (either we |
| 5231 | * received an empty trailers block followed or we removed its |
| 5232 | * contents above). Because of this we can't send a HEADERS |
| 5233 | * frame, so we have to cheat and instead send an empty DATA |
| 5234 | * frame conveying the ES flag. |
Willy Tarreau | 67b8cae | 2019-02-21 18:16:35 +0100 | [diff] [blame] | 5235 | */ |
| 5236 | outbuf.area[3] = H2_FT_DATA; |
| 5237 | outbuf.area[4] = H2_F_DATA_END_STREAM; |
| 5238 | } |
| 5239 | |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5240 | /* update the frame's size */ |
| 5241 | h2_set_frame_size(outbuf.area, outbuf.data - 9); |
| 5242 | |
| 5243 | /* commit the H2 response */ |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5244 | b_add(mbuf, outbuf.data); |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5245 | h2s->flags |= H2_SF_ES_SENT; |
| 5246 | |
| 5247 | if (h2s->st == H2_SS_OPEN) |
| 5248 | h2s->st = H2_SS_HLOC; |
| 5249 | else |
| 5250 | h2s_close(h2s); |
| 5251 | |
| 5252 | /* OK we could properly deliver the response */ |
| 5253 | done: |
Willy Tarreau | fb07b3f | 2019-05-06 11:23:29 +0200 | [diff] [blame] | 5254 | /* remove all header blocks till the end and compute the corresponding size. */ |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5255 | ret = 0; |
| 5256 | idx = htx_get_head(htx); |
| 5257 | blk = htx_get_blk(htx, idx); |
| 5258 | while (blk != blk_end) { |
| 5259 | ret += htx_get_blksz(blk); |
| 5260 | blk = htx_remove_blk(htx, blk); |
| 5261 | } |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 5262 | |
| 5263 | if (blk_end && htx_get_blk_type(blk_end) == HTX_BLK_EOM) { |
| 5264 | ret += htx_get_blksz(blk_end); |
| 5265 | htx_remove_blk(htx, blk_end); |
| 5266 | } |
| 5267 | |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5268 | end: |
| 5269 | return ret; |
| 5270 | full: |
Willy Tarreau | 9c218e7 | 2019-05-26 10:08:28 +0200 | [diff] [blame] | 5271 | if ((mbuf = br_tail_add(h2c->mbuf)) != NULL) |
| 5272 | goto retry; |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5273 | h2c->flags |= H2_CF_MUX_MFULL; |
| 5274 | h2s->flags |= H2_SF_BLK_MROOM; |
| 5275 | ret = 0; |
| 5276 | goto end; |
| 5277 | fail: |
| 5278 | /* unparsable HTX messages, too large ones to be produced in the local |
| 5279 | * list etc go here (unrecoverable errors). |
| 5280 | */ |
| 5281 | h2s_error(h2s, H2_ERR_INTERNAL_ERROR); |
| 5282 | ret = 0; |
| 5283 | goto end; |
| 5284 | } |
| 5285 | |
Willy Tarreau | 749f5ca | 2019-03-21 19:19:36 +0100 | [diff] [blame] | 5286 | /* Called from the upper layer, to subscribe to events, such as being able to send. |
| 5287 | * The <param> argument here is supposed to be a pointer to a wait_event struct |
| 5288 | * which will be passed to h2s->recv_wait or h2s->send_wait depending on the |
| 5289 | * event_type. The event_type must only be a combination of SUB_RETRY_RECV and |
| 5290 | * SUB_RETRY_SEND, other values will lead to -1 being returned. It always |
| 5291 | * returns 0 except for the error above. |
| 5292 | */ |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 5293 | static int h2_subscribe(struct conn_stream *cs, int event_type, void *param) |
| 5294 | { |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 5295 | struct wait_event *sw; |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 5296 | struct h2s *h2s = cs->ctx; |
Olivier Houchard | 4cf7fb1 | 2018-08-02 19:23:05 +0200 | [diff] [blame] | 5297 | struct h2c *h2c = h2s->h2c; |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 5298 | |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 5299 | if (event_type & SUB_RETRY_RECV) { |
Olivier Houchard | 4cf7fb1 | 2018-08-02 19:23:05 +0200 | [diff] [blame] | 5300 | sw = param; |
Olivier Houchard | f833815 | 2019-05-14 17:50:32 +0200 | [diff] [blame] | 5301 | BUG_ON(h2s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV)); |
| 5302 | sw->events |= SUB_RETRY_RECV; |
| 5303 | h2s->recv_wait = sw; |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 5304 | event_type &= ~SUB_RETRY_RECV; |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 5305 | } |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 5306 | if (event_type & SUB_RETRY_SEND) { |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 5307 | sw = param; |
Olivier Houchard | f833815 | 2019-05-14 17:50:32 +0200 | [diff] [blame] | 5308 | BUG_ON(h2s->send_wait != NULL || (sw->events & SUB_RETRY_SEND)); |
| 5309 | sw->events |= SUB_RETRY_SEND; |
| 5310 | h2s->send_wait = sw; |
| 5311 | if (!(h2s->flags & H2_SF_BLK_SFCTL) && |
| 5312 | !LIST_ADDED(&h2s->list)) { |
| 5313 | if (h2s->flags & H2_SF_BLK_MFCTL) |
| 5314 | LIST_ADDQ(&h2c->fctl_list, &h2s->list); |
| 5315 | else |
| 5316 | LIST_ADDQ(&h2c->send_list, &h2s->list); |
Olivier Houchard | e1c6dbc | 2018-08-01 17:06:43 +0200 | [diff] [blame] | 5317 | } |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 5318 | event_type &= ~SUB_RETRY_SEND; |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 5319 | } |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 5320 | if (event_type != 0) |
| 5321 | return -1; |
| 5322 | return 0; |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 5323 | } |
| 5324 | |
Willy Tarreau | 749f5ca | 2019-03-21 19:19:36 +0100 | [diff] [blame] | 5325 | /* Called from the upper layer, to unsubscribe some events (undo h2_subscribe). |
| 5326 | * The <param> argument here is supposed to be a pointer to the same wait_event |
| 5327 | * struct that was passed to h2_subscribe() otherwise nothing will be changed. |
| 5328 | * It always returns zero. |
| 5329 | */ |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 5330 | static int h2_unsubscribe(struct conn_stream *cs, int event_type, void *param) |
| 5331 | { |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 5332 | struct wait_event *sw; |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 5333 | struct h2s *h2s = cs->ctx; |
| 5334 | |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 5335 | if (event_type & SUB_RETRY_RECV) { |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 5336 | sw = param; |
Olivier Houchard | f833815 | 2019-05-14 17:50:32 +0200 | [diff] [blame] | 5337 | BUG_ON(h2s->recv_wait != sw); |
| 5338 | sw->events &= ~SUB_RETRY_RECV; |
| 5339 | h2s->recv_wait = NULL; |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 5340 | } |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 5341 | if (event_type & SUB_RETRY_SEND) { |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 5342 | sw = param; |
Olivier Houchard | f833815 | 2019-05-14 17:50:32 +0200 | [diff] [blame] | 5343 | BUG_ON(h2s->send_wait != sw); |
| 5344 | LIST_DEL(&h2s->list); |
| 5345 | LIST_INIT(&h2s->list); |
| 5346 | sw->events &= ~SUB_RETRY_SEND; |
| 5347 | /* We were about to send, make sure it does not happen */ |
| 5348 | if (LIST_ADDED(&h2s->sending_list) && |
| 5349 | h2s->send_wait != &h2s->wait_event) { |
| 5350 | task_remove_from_tasklet_list((struct task *)h2s->send_wait->task); |
| 5351 | LIST_DEL_INIT(&h2s->sending_list); |
Olivier Houchard | d846c26 | 2018-10-19 17:24:29 +0200 | [diff] [blame] | 5352 | } |
Olivier Houchard | f833815 | 2019-05-14 17:50:32 +0200 | [diff] [blame] | 5353 | h2s->send_wait = NULL; |
Olivier Houchard | d846c26 | 2018-10-19 17:24:29 +0200 | [diff] [blame] | 5354 | } |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 5355 | return 0; |
| 5356 | } |
| 5357 | |
| 5358 | |
Olivier Houchard | 511efea | 2018-08-16 15:30:32 +0200 | [diff] [blame] | 5359 | /* Called from the upper layer, to receive data */ |
| 5360 | static size_t h2_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags) |
| 5361 | { |
Olivier Houchard | 638b799 | 2018-08-16 15:41:52 +0200 | [diff] [blame] | 5362 | struct h2s *h2s = cs->ctx; |
Willy Tarreau | 082f559 | 2018-11-25 08:03:32 +0100 | [diff] [blame] | 5363 | struct h2c *h2c = h2s->h2c; |
Willy Tarreau | 86724e2 | 2018-12-01 23:19:43 +0100 | [diff] [blame] | 5364 | struct htx *h2s_htx = NULL; |
| 5365 | struct htx *buf_htx = NULL; |
Olivier Houchard | 511efea | 2018-08-16 15:30:32 +0200 | [diff] [blame] | 5366 | size_t ret = 0; |
| 5367 | |
| 5368 | /* transfer possibly pending data to the upper layer */ |
Willy Tarreau | 86724e2 | 2018-12-01 23:19:43 +0100 | [diff] [blame] | 5369 | if (h2c->proxy->options2 & PR_O2_USE_HTX) { |
Willy Tarreau | 86724e2 | 2018-12-01 23:19:43 +0100 | [diff] [blame] | 5370 | h2s_htx = htx_from_buf(&h2s->rxbuf); |
Olivier Houchard | 56b0348 | 2018-12-10 16:09:53 +0100 | [diff] [blame] | 5371 | if (htx_is_empty(h2s_htx)) { |
Christopher Faulet | 37070b2 | 2019-02-14 15:12:14 +0100 | [diff] [blame] | 5372 | /* Here htx_to_buf() will set buffer data to 0 because |
| 5373 | * the HTX is empty. |
| 5374 | */ |
| 5375 | htx_to_buf(h2s_htx, &h2s->rxbuf); |
Willy Tarreau | 86724e2 | 2018-12-01 23:19:43 +0100 | [diff] [blame] | 5376 | goto end; |
Olivier Houchard | 56b0348 | 2018-12-10 16:09:53 +0100 | [diff] [blame] | 5377 | } |
Willy Tarreau | 86724e2 | 2018-12-01 23:19:43 +0100 | [diff] [blame] | 5378 | |
Christopher Faulet | 156852b | 2019-05-16 11:29:13 +0200 | [diff] [blame] | 5379 | ret = h2s_htx->data; |
Willy Tarreau | 86724e2 | 2018-12-01 23:19:43 +0100 | [diff] [blame] | 5380 | buf_htx = htx_from_buf(buf); |
Willy Tarreau | 86724e2 | 2018-12-01 23:19:43 +0100 | [diff] [blame] | 5381 | |
Christopher Faulet | 2f6edc8 | 2019-05-15 10:07:59 +0200 | [diff] [blame] | 5382 | /* <buf> is empty and the message is small enough, swap the |
| 5383 | * buffers. */ |
| 5384 | if (htx_is_empty(buf_htx) && htx_used_space(h2s_htx) <= count) { |
| 5385 | htx_to_buf(buf_htx, buf); |
| 5386 | htx_to_buf(h2s_htx, &h2s->rxbuf); |
| 5387 | b_xfer(buf, &h2s->rxbuf, b_data(&h2s->rxbuf)); |
| 5388 | goto end; |
| 5389 | } |
| 5390 | |
Christopher Faulet | 156852b | 2019-05-16 11:29:13 +0200 | [diff] [blame] | 5391 | htx_xfer_blks(buf_htx, h2s_htx, count, HTX_BLK_EOM); |
Willy Tarreau | 7196dd6 | 2019-03-05 10:51:11 +0100 | [diff] [blame] | 5392 | |
Christopher Faulet | a61e97b | 2019-05-16 11:30:31 +0200 | [diff] [blame] | 5393 | if (h2s_htx->flags & HTX_FL_PARSING_ERROR) { |
Willy Tarreau | 7196dd6 | 2019-03-05 10:51:11 +0100 | [diff] [blame] | 5394 | buf_htx->flags |= HTX_FL_PARSING_ERROR; |
Christopher Faulet | a61e97b | 2019-05-16 11:30:31 +0200 | [diff] [blame] | 5395 | if (htx_is_empty(buf_htx)) |
| 5396 | cs->flags |= CS_FL_EOI; |
| 5397 | } |
Willy Tarreau | 7196dd6 | 2019-03-05 10:51:11 +0100 | [diff] [blame] | 5398 | |
Christopher Faulet | eaf0d2a | 2019-02-18 16:04:35 +0100 | [diff] [blame] | 5399 | 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] | 5400 | htx_to_buf(buf_htx, buf); |
| 5401 | htx_to_buf(h2s_htx, &h2s->rxbuf); |
Christopher Faulet | 156852b | 2019-05-16 11:29:13 +0200 | [diff] [blame] | 5402 | ret -= h2s_htx->data; |
Willy Tarreau | 86724e2 | 2018-12-01 23:19:43 +0100 | [diff] [blame] | 5403 | } |
| 5404 | else { |
| 5405 | ret = b_xfer(buf, &h2s->rxbuf, count); |
| 5406 | } |
Olivier Houchard | 511efea | 2018-08-16 15:30:32 +0200 | [diff] [blame] | 5407 | |
Christopher Faulet | 37070b2 | 2019-02-14 15:12:14 +0100 | [diff] [blame] | 5408 | end: |
Olivier Houchard | 638b799 | 2018-08-16 15:41:52 +0200 | [diff] [blame] | 5409 | if (b_data(&h2s->rxbuf)) |
Olivier Houchard | d247be0 | 2018-12-06 16:22:29 +0100 | [diff] [blame] | 5410 | cs->flags |= (CS_FL_RCV_MORE | CS_FL_WANT_ROOM); |
Olivier Houchard | 511efea | 2018-08-16 15:30:32 +0200 | [diff] [blame] | 5411 | else { |
Olivier Houchard | d247be0 | 2018-12-06 16:22:29 +0100 | [diff] [blame] | 5412 | cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM); |
Christopher Faulet | fa922f0 | 2019-05-07 10:55:17 +0200 | [diff] [blame] | 5413 | if (h2s->flags & H2_SF_ES_RCVD) |
| 5414 | cs->flags |= CS_FL_EOI; |
Willy Tarreau | 99ad1b3 | 2019-05-14 11:46:28 +0200 | [diff] [blame] | 5415 | if (H2_SS_MASK(h2s->st) & H2_SS_EOS_BITS) |
Olivier Houchard | 511efea | 2018-08-16 15:30:32 +0200 | [diff] [blame] | 5416 | cs->flags |= CS_FL_EOS; |
Olivier Houchard | 71748cb | 2018-12-17 14:16:46 +0100 | [diff] [blame] | 5417 | if (cs->flags & CS_FL_ERR_PENDING) |
| 5418 | cs->flags |= CS_FL_ERROR; |
Olivier Houchard | 638b799 | 2018-08-16 15:41:52 +0200 | [diff] [blame] | 5419 | if (b_size(&h2s->rxbuf)) { |
| 5420 | b_free(&h2s->rxbuf); |
| 5421 | offer_buffers(NULL, tasks_run_queue); |
| 5422 | } |
Olivier Houchard | 511efea | 2018-08-16 15:30:32 +0200 | [diff] [blame] | 5423 | } |
| 5424 | |
Willy Tarreau | 082f559 | 2018-11-25 08:03:32 +0100 | [diff] [blame] | 5425 | if (ret && h2c->dsi == h2s->id) { |
| 5426 | /* demux is blocking on this stream's buffer */ |
| 5427 | h2c->flags &= ~H2_CF_DEM_SFULL; |
Olivier Houchard | 3ca18bf | 2019-04-05 15:34:34 +0200 | [diff] [blame] | 5428 | h2c_restart_reading(h2c, 1); |
Willy Tarreau | 082f559 | 2018-11-25 08:03:32 +0100 | [diff] [blame] | 5429 | } |
Christopher Faulet | 37070b2 | 2019-02-14 15:12:14 +0100 | [diff] [blame] | 5430 | |
Olivier Houchard | 511efea | 2018-08-16 15:30:32 +0200 | [diff] [blame] | 5431 | return ret; |
| 5432 | } |
| 5433 | |
Willy Tarreau | 749f5ca | 2019-03-21 19:19:36 +0100 | [diff] [blame] | 5434 | /* stops all senders of this connection for example when the mux buffer is full. |
| 5435 | * They are moved from the sending_list to either fctl_list or send_list. |
| 5436 | */ |
Olivier Houchard | d846c26 | 2018-10-19 17:24:29 +0200 | [diff] [blame] | 5437 | static void h2_stop_senders(struct h2c *h2c) |
| 5438 | { |
| 5439 | struct h2s *h2s, *h2s_back; |
| 5440 | |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 5441 | list_for_each_entry_safe(h2s, h2s_back, &h2c->sending_list, sending_list) { |
| 5442 | LIST_DEL_INIT(&h2s->sending_list); |
Willy Tarreau | e73256f | 2019-03-25 18:02:54 +0100 | [diff] [blame] | 5443 | task_remove_from_tasklet_list((struct task *)h2s->send_wait->task); |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 5444 | h2s->send_wait->events |= SUB_RETRY_SEND; |
Olivier Houchard | d846c26 | 2018-10-19 17:24:29 +0200 | [diff] [blame] | 5445 | } |
| 5446 | } |
| 5447 | |
Willy Tarreau | 749f5ca | 2019-03-21 19:19:36 +0100 | [diff] [blame] | 5448 | /* Called from the upper layer, to send data from buffer <buf> for no more than |
| 5449 | * <count> bytes. Returns the number of bytes effectively sent. Some status |
| 5450 | * flags may be updated on the conn_stream. |
| 5451 | */ |
Christopher Faulet | d44a9b3 | 2018-07-27 11:59:41 +0200 | [diff] [blame] | 5452 | 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] | 5453 | { |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 5454 | struct h2s *h2s = cs->ctx; |
Olivier Houchard | 8122a8d | 2018-12-03 19:13:29 +0100 | [diff] [blame] | 5455 | size_t orig_count = count; |
Willy Tarreau | 1dc41e7 | 2018-06-14 13:21:28 +0200 | [diff] [blame] | 5456 | size_t total = 0; |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 5457 | size_t ret; |
Willy Tarreau | bcd3bb3 | 2018-12-01 18:59:00 +0100 | [diff] [blame] | 5458 | struct htx *htx; |
| 5459 | struct htx_blk *blk; |
| 5460 | enum htx_blk_type btype; |
| 5461 | uint32_t bsize; |
| 5462 | int32_t idx; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 5463 | |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 5464 | /* If we were not just woken because we wanted to send but couldn't, |
| 5465 | * and there's somebody else that is waiting to send, do nothing, |
| 5466 | * we will subscribe later and be put at the end of the list |
| 5467 | */ |
Willy Tarreau | c234ae3 | 2019-05-13 17:56:11 +0200 | [diff] [blame] | 5468 | if (!LIST_ADDED(&h2s->sending_list) && |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 5469 | (!LIST_ISEMPTY(&h2s->h2c->send_list) || !LIST_ISEMPTY(&h2s->h2c->fctl_list))) |
| 5470 | return 0; |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 5471 | LIST_DEL_INIT(&h2s->sending_list); |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 5472 | |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 5473 | /* We couldn't set it to NULL before, because we needed it in case |
| 5474 | * we had to cancel the tasklet |
| 5475 | */ |
| 5476 | h2s->send_wait = NULL; |
| 5477 | |
Willy Tarreau | 6bf641a | 2018-10-08 09:43:03 +0200 | [diff] [blame] | 5478 | if (h2s->h2c->st0 < H2_CS_FRAME_H) |
| 5479 | return 0; |
| 5480 | |
Willy Tarreau | bcd3bb3 | 2018-12-01 18:59:00 +0100 | [diff] [blame] | 5481 | /* htx will be enough to decide if we're using HTX or legacy */ |
| 5482 | htx = (h2s->h2c->proxy->options2 & PR_O2_USE_HTX) ? htx_from_buf(buf) : NULL; |
| 5483 | |
Willy Tarreau | 0bad043 | 2018-06-14 16:54:01 +0200 | [diff] [blame] | 5484 | if (!(h2s->flags & H2_SF_OUTGOING_DATA) && count) |
Willy Tarreau | c4312d3 | 2017-11-07 12:01:53 +0100 | [diff] [blame] | 5485 | h2s->flags |= H2_SF_OUTGOING_DATA; |
| 5486 | |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 5487 | if (h2s->id == 0) { |
| 5488 | int32_t id = h2c_get_next_sid(h2s->h2c); |
| 5489 | |
| 5490 | if (id < 0) { |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 5491 | cs->flags |= CS_FL_ERROR; |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 5492 | return 0; |
| 5493 | } |
| 5494 | |
| 5495 | eb32_delete(&h2s->by_id); |
| 5496 | h2s->by_id.key = h2s->id = id; |
| 5497 | h2s->h2c->max_id = id; |
Willy Tarreau | d64a3eb | 2019-01-23 10:22:21 +0100 | [diff] [blame] | 5498 | h2s->h2c->nb_reserved--; |
Willy Tarreau | 751f2d0 | 2018-10-05 09:35:00 +0200 | [diff] [blame] | 5499 | eb32_insert(&h2s->h2c->streams_by_id, &h2s->by_id); |
| 5500 | } |
| 5501 | |
Willy Tarreau | bcd3bb3 | 2018-12-01 18:59:00 +0100 | [diff] [blame] | 5502 | if (htx) { |
Willy Tarreau | 2b77848 | 2019-05-06 15:00:22 +0200 | [diff] [blame] | 5503 | while (h2s->st < H2_SS_HLOC && !(h2s->flags & H2_SF_BLK_ANY) && |
Willy Tarreau | c14999b | 2018-12-06 14:09:09 +0100 | [diff] [blame] | 5504 | count && !htx_is_empty(htx)) { |
Willy Tarreau | bcd3bb3 | 2018-12-01 18:59:00 +0100 | [diff] [blame] | 5505 | idx = htx_get_head(htx); |
| 5506 | blk = htx_get_blk(htx, idx); |
| 5507 | btype = htx_get_blk_type(blk); |
| 5508 | bsize = htx_get_blksz(blk); |
| 5509 | |
| 5510 | switch (btype) { |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 5511 | case HTX_BLK_REQ_SL: |
| 5512 | /* start-line before headers */ |
| 5513 | ret = h2s_htx_bck_make_req_headers(h2s, htx); |
| 5514 | if (ret > 0) { |
| 5515 | total += ret; |
| 5516 | count -= ret; |
| 5517 | if (ret < bsize) |
| 5518 | goto done; |
| 5519 | } |
| 5520 | break; |
| 5521 | |
Willy Tarreau | 115e83b | 2018-12-01 19:17:53 +0100 | [diff] [blame] | 5522 | case HTX_BLK_RES_SL: |
| 5523 | /* start-line before headers */ |
| 5524 | ret = h2s_htx_frt_make_resp_headers(h2s, htx); |
| 5525 | if (ret > 0) { |
| 5526 | total += ret; |
| 5527 | count -= ret; |
| 5528 | if (ret < bsize) |
| 5529 | goto done; |
| 5530 | } |
| 5531 | break; |
| 5532 | |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5533 | case HTX_BLK_DATA: |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5534 | case HTX_BLK_EOM: |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5535 | /* all these cause the emission of a DATA frame (possibly empty). |
| 5536 | * This EOM necessarily is one before trailers, as the EOM following |
| 5537 | * trailers would have been consumed by the trailers parser. |
| 5538 | */ |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 5539 | ret = h2s_htx_frt_make_resp_data(h2s, buf, count); |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5540 | if (ret > 0) { |
Willy Tarreau | 98de12a | 2018-12-12 07:03:00 +0100 | [diff] [blame] | 5541 | htx = htx_from_buf(buf); |
Willy Tarreau | 0c535fd | 2018-12-01 19:25:56 +0100 | [diff] [blame] | 5542 | total += ret; |
| 5543 | count -= ret; |
| 5544 | if (ret < bsize) |
| 5545 | goto done; |
| 5546 | } |
| 5547 | break; |
| 5548 | |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5549 | case HTX_BLK_TLR: |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 5550 | case HTX_BLK_EOT: |
Willy Tarreau | 1bb812f | 2019-01-04 10:56:26 +0100 | [diff] [blame] | 5551 | /* This is the first trailers block, all the subsequent ones AND |
| 5552 | * the EOM will be swallowed by the parser. |
| 5553 | */ |
| 5554 | ret = h2s_htx_make_trailers(h2s, htx); |
| 5555 | if (ret > 0) { |
| 5556 | total += ret; |
| 5557 | count -= ret; |
| 5558 | if (ret < bsize) |
| 5559 | goto done; |
| 5560 | } |
| 5561 | break; |
| 5562 | |
Willy Tarreau | bcd3bb3 | 2018-12-01 18:59:00 +0100 | [diff] [blame] | 5563 | default: |
| 5564 | htx_remove_blk(htx, blk); |
| 5565 | total += bsize; |
| 5566 | count -= bsize; |
| 5567 | break; |
| 5568 | } |
| 5569 | } |
| 5570 | goto done; |
| 5571 | } |
| 5572 | |
| 5573 | /* legacy transfer mode */ |
Willy Tarreau | a40704a | 2018-09-11 13:52:04 +0200 | [diff] [blame] | 5574 | while (h2s->h1m.state < H1_MSG_DONE && count) { |
Willy Tarreau | 001823c | 2018-09-12 17:25:32 +0200 | [diff] [blame] | 5575 | if (h2s->h1m.state <= H1_MSG_LAST_LF) { |
Willy Tarreau | 8073969 | 2018-10-05 11:35:57 +0200 | [diff] [blame] | 5576 | if (h2s->h2c->flags & H2_CF_IS_BACK) |
| 5577 | ret = -1; |
| 5578 | else |
| 5579 | ret = h2s_frt_make_resp_headers(h2s, buf, total, count); |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 5580 | } |
Willy Tarreau | a40704a | 2018-09-11 13:52:04 +0200 | [diff] [blame] | 5581 | else if (h2s->h1m.state < H1_MSG_TRAILERS) { |
Willy Tarreau | 0bad043 | 2018-06-14 16:54:01 +0200 | [diff] [blame] | 5582 | ret = h2s_frt_make_resp_data(h2s, buf, total, count); |
Willy Tarreau | 9d89ac8 | 2017-10-31 17:15:59 +0100 | [diff] [blame] | 5583 | } |
Willy Tarreau | a40704a | 2018-09-11 13:52:04 +0200 | [diff] [blame] | 5584 | else if (h2s->h1m.state == H1_MSG_TRAILERS) { |
Willy Tarreau | 9d89ac8 | 2017-10-31 17:15:59 +0100 | [diff] [blame] | 5585 | /* consume the trailers if any (we don't forward them for now) */ |
Willy Tarreau | 0bad043 | 2018-06-14 16:54:01 +0200 | [diff] [blame] | 5586 | ret = h1_measure_trailers(buf, total, count); |
Willy Tarreau | 9d89ac8 | 2017-10-31 17:15:59 +0100 | [diff] [blame] | 5587 | |
Willy Tarreau | 5dd1735 | 2018-06-14 13:33:30 +0200 | [diff] [blame] | 5588 | if (unlikely((int)ret <= 0)) { |
| 5589 | if ((int)ret < 0) |
Willy Tarreau | 9d89ac8 | 2017-10-31 17:15:59 +0100 | [diff] [blame] | 5590 | h2s_error(h2s, H2_ERR_INTERNAL_ERROR); |
| 5591 | break; |
| 5592 | } |
Willy Tarreau | 35a6270 | 2018-02-27 15:37:25 +0100 | [diff] [blame] | 5593 | // trim any possibly pending data (eg: extra CR-LF, ...) |
Willy Tarreau | 0bad043 | 2018-06-14 16:54:01 +0200 | [diff] [blame] | 5594 | total += count; |
| 5595 | count = 0; |
Willy Tarreau | a40704a | 2018-09-11 13:52:04 +0200 | [diff] [blame] | 5596 | h2s->h1m.state = H1_MSG_DONE; |
Willy Tarreau | 9d89ac8 | 2017-10-31 17:15:59 +0100 | [diff] [blame] | 5597 | break; |
Willy Tarreau | c652dbd | 2017-10-19 11:16:37 +0200 | [diff] [blame] | 5598 | } |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 5599 | else { |
Willy Tarreau | ec988c7 | 2018-12-19 18:00:29 +0100 | [diff] [blame] | 5600 | cs_set_error(cs); |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 5601 | break; |
| 5602 | } |
Willy Tarreau | 0bad043 | 2018-06-14 16:54:01 +0200 | [diff] [blame] | 5603 | |
| 5604 | total += ret; |
| 5605 | count -= ret; |
| 5606 | |
Willy Tarreau | 2b77848 | 2019-05-06 15:00:22 +0200 | [diff] [blame] | 5607 | if (h2s->st >= H2_SS_HLOC) |
Willy Tarreau | 0bad043 | 2018-06-14 16:54:01 +0200 | [diff] [blame] | 5608 | break; |
| 5609 | |
| 5610 | if (h2s->flags & H2_SF_BLK_ANY) |
| 5611 | break; |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 5612 | } |
| 5613 | |
Willy Tarreau | bcd3bb3 | 2018-12-01 18:59:00 +0100 | [diff] [blame] | 5614 | done: |
Willy Tarreau | 2b77848 | 2019-05-06 15:00:22 +0200 | [diff] [blame] | 5615 | if (h2s->st >= H2_SS_HLOC) { |
Willy Tarreau | 0061096 | 2018-07-19 10:58:28 +0200 | [diff] [blame] | 5616 | /* trim any possibly pending data after we close (extra CR-LF, |
| 5617 | * unprocessed trailers, abnormal extra data, ...) |
| 5618 | */ |
Willy Tarreau | 0bad043 | 2018-06-14 16:54:01 +0200 | [diff] [blame] | 5619 | total += count; |
| 5620 | count = 0; |
Willy Tarreau | 0061096 | 2018-07-19 10:58:28 +0200 | [diff] [blame] | 5621 | } |
| 5622 | |
Willy Tarreau | c6795ca | 2017-11-07 09:43:06 +0100 | [diff] [blame] | 5623 | /* RST are sent similarly to frame acks */ |
Willy Tarreau | 0249219 | 2017-12-07 15:59:29 +0100 | [diff] [blame] | 5624 | if (h2s->st == H2_SS_ERROR || h2s->flags & H2_SF_RST_RCVD) { |
Willy Tarreau | ec988c7 | 2018-12-19 18:00:29 +0100 | [diff] [blame] | 5625 | cs_set_error(cs); |
Willy Tarreau | 8c0ea7d | 2017-11-10 10:05:24 +0100 | [diff] [blame] | 5626 | if (h2s_send_rst_stream(h2s->h2c, h2s) > 0) |
Willy Tarreau | 00dd078 | 2018-03-01 16:31:34 +0100 | [diff] [blame] | 5627 | h2s_close(h2s); |
Willy Tarreau | c6795ca | 2017-11-07 09:43:06 +0100 | [diff] [blame] | 5628 | } |
| 5629 | |
Willy Tarreau | bcd3bb3 | 2018-12-01 18:59:00 +0100 | [diff] [blame] | 5630 | if (htx) { |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 5631 | htx_to_buf(htx, buf); |
Willy Tarreau | bcd3bb3 | 2018-12-01 18:59:00 +0100 | [diff] [blame] | 5632 | } else { |
| 5633 | b_del(buf, total); |
| 5634 | } |
Olivier Houchard | d846c26 | 2018-10-19 17:24:29 +0200 | [diff] [blame] | 5635 | |
| 5636 | /* The mux is full, cancel the pending tasks */ |
| 5637 | if ((h2s->h2c->flags & H2_CF_MUX_BLOCK_ANY) || |
| 5638 | (h2s->flags & H2_SF_BLK_MBUSY)) |
| 5639 | h2_stop_senders(h2s->h2c); |
Willy Tarreau | bcd3bb3 | 2018-12-01 18:59:00 +0100 | [diff] [blame] | 5640 | |
Olivier Houchard | 8122a8d | 2018-12-03 19:13:29 +0100 | [diff] [blame] | 5641 | /* If we're running HTX, and we read the whole buffer, then pretend |
| 5642 | * we read exactly what the caller specified, as with HTX the caller |
| 5643 | * will always give the buffer size, instead of the amount of data |
| 5644 | * available. |
| 5645 | */ |
| 5646 | if (htx && !b_data(buf)) |
| 5647 | total = orig_count; |
| 5648 | |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 5649 | if (total > 0) { |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 5650 | if (!(h2s->h2c->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 5651 | tasklet_wakeup(h2s->h2c->wait_event.task); |
Olivier Houchard | d846c26 | 2018-10-19 17:24:29 +0200 | [diff] [blame] | 5652 | |
Olivier Houchard | 7505f94 | 2018-08-21 18:10:44 +0200 | [diff] [blame] | 5653 | } |
Olivier Houchard | 6dea2ee | 2018-12-19 18:16:17 +0100 | [diff] [blame] | 5654 | /* If we're waiting for flow control, and we got a shutr on the |
| 5655 | * connection, we will never be unlocked, so add an error on |
| 5656 | * the conn_stream. |
| 5657 | */ |
| 5658 | if (conn_xprt_read0_pending(h2s->h2c->conn) && |
| 5659 | !b_data(&h2s->h2c->dbuf) && |
| 5660 | (h2s->flags & (H2_SF_BLK_SFCTL | H2_SF_BLK_MFCTL))) { |
| 5661 | if (cs->flags & CS_FL_EOS) |
| 5662 | cs->flags |= CS_FL_ERROR; |
| 5663 | else |
| 5664 | cs->flags |= CS_FL_ERR_PENDING; |
| 5665 | } |
Olivier Houchard | 998410a | 2019-04-15 19:23:37 +0200 | [diff] [blame] | 5666 | if (total > 0) { |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 5667 | /* Ok we managed to send something, leave the send_list */ |
Olivier Houchard | d360ac6 | 2019-03-22 17:37:16 +0100 | [diff] [blame] | 5668 | LIST_DEL_INIT(&h2s->list); |
| 5669 | } |
Willy Tarreau | 9e5ae1d | 2017-10-17 19:58:20 +0200 | [diff] [blame] | 5670 | return total; |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5671 | } |
| 5672 | |
Willy Tarreau | e3f36cd | 2018-03-30 14:43:13 +0200 | [diff] [blame] | 5673 | /* for debugging with CLI's "show fd" command */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 5674 | static void h2_show_fd(struct buffer *msg, struct connection *conn) |
Willy Tarreau | e3f36cd | 2018-03-30 14:43:13 +0200 | [diff] [blame] | 5675 | { |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 5676 | struct h2c *h2c = conn->ctx; |
Willy Tarreau | 987c063 | 2018-12-18 10:32:05 +0100 | [diff] [blame] | 5677 | struct h2s *h2s = NULL; |
Willy Tarreau | e3f36cd | 2018-03-30 14:43:13 +0200 | [diff] [blame] | 5678 | struct eb32_node *node; |
| 5679 | int fctl_cnt = 0; |
| 5680 | int send_cnt = 0; |
| 5681 | int tree_cnt = 0; |
| 5682 | int orph_cnt = 0; |
Willy Tarreau | 60f6268 | 2019-05-26 11:32:27 +0200 | [diff] [blame] | 5683 | struct buffer *hmbuf, *tmbuf; |
Willy Tarreau | e3f36cd | 2018-03-30 14:43:13 +0200 | [diff] [blame] | 5684 | |
| 5685 | if (!h2c) |
| 5686 | return; |
| 5687 | |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 5688 | list_for_each_entry(h2s, &h2c->fctl_list, list) |
Willy Tarreau | e3f36cd | 2018-03-30 14:43:13 +0200 | [diff] [blame] | 5689 | fctl_cnt++; |
| 5690 | |
Olivier Houchard | fa8aa86 | 2018-10-10 18:25:41 +0200 | [diff] [blame] | 5691 | list_for_each_entry(h2s, &h2c->send_list, list) |
Willy Tarreau | e3f36cd | 2018-03-30 14:43:13 +0200 | [diff] [blame] | 5692 | send_cnt++; |
| 5693 | |
Willy Tarreau | 3af3771 | 2018-12-18 14:34:41 +0100 | [diff] [blame] | 5694 | h2s = NULL; |
Willy Tarreau | e3f36cd | 2018-03-30 14:43:13 +0200 | [diff] [blame] | 5695 | node = eb32_first(&h2c->streams_by_id); |
| 5696 | while (node) { |
| 5697 | h2s = container_of(node, struct h2s, by_id); |
| 5698 | tree_cnt++; |
| 5699 | if (!h2s->cs) |
| 5700 | orph_cnt++; |
| 5701 | node = eb32_next(node); |
| 5702 | } |
| 5703 | |
Willy Tarreau | 60f6268 | 2019-05-26 11:32:27 +0200 | [diff] [blame] | 5704 | hmbuf = br_head(h2c->mbuf); |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5705 | tmbuf = br_tail(h2c->mbuf); |
Willy Tarreau | 987c063 | 2018-12-18 10:32:05 +0100 | [diff] [blame] | 5706 | chunk_appendf(msg, " h2c.st0=%d .err=%d .maxid=%d .lastid=%d .flg=0x%04x" |
| 5707 | " .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] | 5708 | " .orph_cnt=%d .sub=%d .dsi=%d .dbuf=%u@%p+%u/%u .msi=%d" |
| 5709 | " .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] | 5710 | h2c->st0, h2c->errcode, h2c->max_id, h2c->last_sid, h2c->flags, |
| 5711 | 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] | 5712 | h2c->wait_event.events, h2c->dsi, |
Willy Tarreau | 987c063 | 2018-12-18 10:32:05 +0100 | [diff] [blame] | 5713 | (unsigned int)b_data(&h2c->dbuf), b_orig(&h2c->dbuf), |
| 5714 | (unsigned int)b_head_ofs(&h2c->dbuf), (unsigned int)b_size(&h2c->dbuf), |
| 5715 | h2c->msi, |
Willy Tarreau | 60f6268 | 2019-05-26 11:32:27 +0200 | [diff] [blame] | 5716 | br_head_idx(h2c->mbuf), br_tail_idx(h2c->mbuf), br_size(h2c->mbuf), |
| 5717 | (unsigned int)b_data(hmbuf), b_orig(hmbuf), |
| 5718 | (unsigned int)b_head_ofs(hmbuf), (unsigned int)b_size(hmbuf), |
Willy Tarreau | bcc4595 | 2019-05-26 10:05:50 +0200 | [diff] [blame] | 5719 | (unsigned int)b_data(tmbuf), b_orig(tmbuf), |
| 5720 | (unsigned int)b_head_ofs(tmbuf), (unsigned int)b_size(tmbuf)); |
Willy Tarreau | 987c063 | 2018-12-18 10:32:05 +0100 | [diff] [blame] | 5721 | |
| 5722 | if (h2s) { |
| 5723 | chunk_appendf(msg, " last_h2s=%p .id=%d .flg=0x%04x .rxbuf=%u@%p+%u/%u .cs=%p", |
| 5724 | h2s, h2s->id, h2s->flags, |
| 5725 | (unsigned int)b_data(&h2s->rxbuf), b_orig(&h2s->rxbuf), |
| 5726 | (unsigned int)b_head_ofs(&h2s->rxbuf), (unsigned int)b_size(&h2s->rxbuf), |
| 5727 | h2s->cs); |
| 5728 | if (h2s->cs) |
| 5729 | chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p", |
| 5730 | h2s->cs->flags, h2s->cs->data); |
| 5731 | } |
Willy Tarreau | e3f36cd | 2018-03-30 14:43:13 +0200 | [diff] [blame] | 5732 | } |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5733 | |
| 5734 | /*******************************************************/ |
| 5735 | /* functions below are dedicated to the config parsers */ |
| 5736 | /*******************************************************/ |
| 5737 | |
Willy Tarreau | fe20e5b | 2017-07-27 11:42:14 +0200 | [diff] [blame] | 5738 | /* config parser for global "tune.h2.header-table-size" */ |
| 5739 | static int h2_parse_header_table_size(char **args, int section_type, struct proxy *curpx, |
| 5740 | struct proxy *defpx, const char *file, int line, |
| 5741 | char **err) |
| 5742 | { |
| 5743 | if (too_many_args(1, args, err, NULL)) |
| 5744 | return -1; |
| 5745 | |
| 5746 | h2_settings_header_table_size = atoi(args[1]); |
| 5747 | if (h2_settings_header_table_size < 4096 || h2_settings_header_table_size > 65536) { |
| 5748 | memprintf(err, "'%s' expects a numeric value between 4096 and 65536.", args[0]); |
| 5749 | return -1; |
| 5750 | } |
| 5751 | return 0; |
| 5752 | } |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5753 | |
Willy Tarreau | e6baec0 | 2017-07-27 11:45:11 +0200 | [diff] [blame] | 5754 | /* config parser for global "tune.h2.initial-window-size" */ |
| 5755 | static int h2_parse_initial_window_size(char **args, int section_type, struct proxy *curpx, |
| 5756 | struct proxy *defpx, const char *file, int line, |
| 5757 | char **err) |
| 5758 | { |
| 5759 | if (too_many_args(1, args, err, NULL)) |
| 5760 | return -1; |
| 5761 | |
| 5762 | h2_settings_initial_window_size = atoi(args[1]); |
| 5763 | if (h2_settings_initial_window_size < 0) { |
| 5764 | memprintf(err, "'%s' expects a positive numeric value.", args[0]); |
| 5765 | return -1; |
| 5766 | } |
| 5767 | return 0; |
| 5768 | } |
| 5769 | |
Willy Tarreau | 5242ef8 | 2017-07-27 11:47:28 +0200 | [diff] [blame] | 5770 | /* config parser for global "tune.h2.max-concurrent-streams" */ |
| 5771 | static int h2_parse_max_concurrent_streams(char **args, int section_type, struct proxy *curpx, |
| 5772 | struct proxy *defpx, const char *file, int line, |
| 5773 | char **err) |
| 5774 | { |
| 5775 | if (too_many_args(1, args, err, NULL)) |
| 5776 | return -1; |
| 5777 | |
| 5778 | h2_settings_max_concurrent_streams = atoi(args[1]); |
Willy Tarreau | 5a490b6 | 2019-01-31 10:39:51 +0100 | [diff] [blame] | 5779 | if ((int)h2_settings_max_concurrent_streams < 0) { |
Willy Tarreau | 5242ef8 | 2017-07-27 11:47:28 +0200 | [diff] [blame] | 5780 | memprintf(err, "'%s' expects a positive numeric value.", args[0]); |
| 5781 | return -1; |
| 5782 | } |
| 5783 | return 0; |
| 5784 | } |
| 5785 | |
Willy Tarreau | a24b35c | 2019-02-21 13:24:36 +0100 | [diff] [blame] | 5786 | /* config parser for global "tune.h2.max-frame-size" */ |
| 5787 | static int h2_parse_max_frame_size(char **args, int section_type, struct proxy *curpx, |
| 5788 | struct proxy *defpx, const char *file, int line, |
| 5789 | char **err) |
| 5790 | { |
| 5791 | if (too_many_args(1, args, err, NULL)) |
| 5792 | return -1; |
| 5793 | |
| 5794 | h2_settings_max_frame_size = atoi(args[1]); |
| 5795 | if (h2_settings_max_frame_size < 16384 || h2_settings_max_frame_size > 16777215) { |
| 5796 | memprintf(err, "'%s' expects a numeric value between 16384 and 16777215.", args[0]); |
| 5797 | return -1; |
| 5798 | } |
| 5799 | return 0; |
| 5800 | } |
| 5801 | |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5802 | |
| 5803 | /****************************************/ |
| 5804 | /* MUX initialization and instanciation */ |
| 5805 | /***************************************/ |
| 5806 | |
| 5807 | /* The mux operations */ |
Willy Tarreau | 680b2bd | 2018-11-27 07:30:17 +0100 | [diff] [blame] | 5808 | static const struct mux_ops h2_ops = { |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5809 | .init = h2_init, |
Olivier Houchard | 21df6cc | 2018-09-14 23:21:44 +0200 | [diff] [blame] | 5810 | .wake = h2_wake, |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5811 | .snd_buf = h2_snd_buf, |
Olivier Houchard | 511efea | 2018-08-16 15:30:32 +0200 | [diff] [blame] | 5812 | .rcv_buf = h2_rcv_buf, |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 5813 | .subscribe = h2_subscribe, |
Olivier Houchard | 83a0cd8 | 2018-09-28 17:57:58 +0200 | [diff] [blame] | 5814 | .unsubscribe = h2_unsubscribe, |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5815 | .attach = h2_attach, |
Willy Tarreau | fafd398 | 2018-11-18 21:29:20 +0100 | [diff] [blame] | 5816 | .get_first_cs = h2_get_first_cs, |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5817 | .detach = h2_detach, |
Olivier Houchard | 060ed43 | 2018-11-06 16:32:42 +0100 | [diff] [blame] | 5818 | .destroy = h2_destroy, |
Olivier Houchard | d540b36 | 2018-11-05 18:37:53 +0100 | [diff] [blame] | 5819 | .avail_streams = h2_avail_streams, |
Willy Tarreau | 00f18a3 | 2019-01-26 12:19:01 +0100 | [diff] [blame] | 5820 | .used_streams = h2_used_streams, |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5821 | .shutr = h2_shutr, |
| 5822 | .shutw = h2_shutw, |
Willy Tarreau | e3f36cd | 2018-03-30 14:43:13 +0200 | [diff] [blame] | 5823 | .show_fd = h2_show_fd, |
Willy Tarreau | 28f1cb9 | 2017-12-20 16:14:44 +0100 | [diff] [blame] | 5824 | .flags = MX_FL_CLEAN_ABRT, |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5825 | .name = "H2", |
| 5826 | }; |
| 5827 | |
Christopher Faulet | 32f61c0 | 2018-04-10 14:33:41 +0200 | [diff] [blame] | 5828 | /* PROTO selection : this mux registers PROTO token "h2" */ |
| 5829 | static struct mux_proto_list mux_proto_h2 = |
Willy Tarreau | f895727 | 2018-10-03 10:25:20 +0200 | [diff] [blame] | 5830 | { .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] | 5831 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 5832 | INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2); |
| 5833 | |
Christopher Faulet | 9b57910 | 2019-04-11 22:52:25 +0200 | [diff] [blame] | 5834 | |
| 5835 | /* The mux operations */ |
| 5836 | static const struct mux_ops h2_htx_ops = { |
| 5837 | .init = h2_init, |
| 5838 | .wake = h2_wake, |
| 5839 | .snd_buf = h2_snd_buf, |
| 5840 | .rcv_buf = h2_rcv_buf, |
| 5841 | .subscribe = h2_subscribe, |
| 5842 | .unsubscribe = h2_unsubscribe, |
| 5843 | .attach = h2_attach, |
| 5844 | .get_first_cs = h2_get_first_cs, |
| 5845 | .detach = h2_detach, |
| 5846 | .destroy = h2_destroy, |
| 5847 | .avail_streams = h2_avail_streams, |
| 5848 | .used_streams = h2_used_streams, |
| 5849 | .shutr = h2_shutr, |
| 5850 | .shutw = h2_shutw, |
| 5851 | .show_fd = h2_show_fd, |
Christopher Faulet | 9f38f5a | 2019-04-03 09:53:32 +0200 | [diff] [blame] | 5852 | .flags = MX_FL_CLEAN_ABRT|MX_FL_HTX, |
Christopher Faulet | 9b57910 | 2019-04-11 22:52:25 +0200 | [diff] [blame] | 5853 | .name = "H2", |
| 5854 | }; |
| 5855 | |
Willy Tarreau | f895727 | 2018-10-03 10:25:20 +0200 | [diff] [blame] | 5856 | static struct mux_proto_list mux_proto_h2_htx = |
Christopher Faulet | 9b57910 | 2019-04-11 22:52:25 +0200 | [diff] [blame] | 5857 | { .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] | 5858 | |
| 5859 | INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h2_htx); |
| 5860 | |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5861 | /* config keyword parsers */ |
| 5862 | static struct cfg_kw_list cfg_kws = {ILH, { |
Willy Tarreau | fe20e5b | 2017-07-27 11:42:14 +0200 | [diff] [blame] | 5863 | { CFG_GLOBAL, "tune.h2.header-table-size", h2_parse_header_table_size }, |
Willy Tarreau | e6baec0 | 2017-07-27 11:45:11 +0200 | [diff] [blame] | 5864 | { CFG_GLOBAL, "tune.h2.initial-window-size", h2_parse_initial_window_size }, |
Willy Tarreau | 5242ef8 | 2017-07-27 11:47:28 +0200 | [diff] [blame] | 5865 | { CFG_GLOBAL, "tune.h2.max-concurrent-streams", h2_parse_max_concurrent_streams }, |
Willy Tarreau | a24b35c | 2019-02-21 13:24:36 +0100 | [diff] [blame] | 5866 | { CFG_GLOBAL, "tune.h2.max-frame-size", h2_parse_max_frame_size }, |
Willy Tarreau | 62f5269 | 2017-10-08 23:01:42 +0200 | [diff] [blame] | 5867 | { 0, NULL, NULL } |
| 5868 | }}; |
| 5869 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 5870 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |