blob: 03582992a4e57f79e28cc00a4b9ef59a10f597ee [file] [log] [blame]
Willy Tarreauffca7362016-12-13 18:25:15 +01001/*
2 * include/common/h2.h
3 * This file contains types and macros used for the HTTP/2 protocol
4 *
5 * Copyright (C) 2000-2017 Willy Tarreau - w@1wt.eu
6 * Copyright (C) 2017 HAProxy Technologies
7 *
Willy Tarreauf24ea8e2017-11-21 19:55:27 +01008 * Permission is hereby granted, free of charge, to any person obtaining
9 * a copy of this software and associated documentation files (the
10 * "Software"), to deal in the Software without restriction, including
11 * without limitation the rights to use, copy, modify, merge, publish,
12 * distribute, sublicense, and/or sell copies of the Software, and to
13 * permit persons to whom the Software is furnished to do so, subject to
14 * the following conditions:
Willy Tarreauffca7362016-12-13 18:25:15 +010015 *
Willy Tarreauf24ea8e2017-11-21 19:55:27 +010016 * The above copyright notice and this permission notice shall be
17 * included in all copies or substantial portions of the Software.
Willy Tarreauffca7362016-12-13 18:25:15 +010018 *
Willy Tarreauf24ea8e2017-11-21 19:55:27 +010019 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
21 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
23 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
24 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
25 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
26 * OTHER DEALINGS IN THE SOFTWARE.
Willy Tarreauffca7362016-12-13 18:25:15 +010027 */
28
29#ifndef _COMMON_H2_H
30#define _COMMON_H2_H
31
32#include <common/config.h>
Willy Tarreauf24ea8e2017-11-21 19:55:27 +010033#include <common/http-hdr.h>
Willy Tarreaub96b77e2018-12-11 10:22:41 +010034#include <common/htx.h>
Willy Tarreauf24ea8e2017-11-21 19:55:27 +010035#include <common/ist.h>
Willy Tarreauffca7362016-12-13 18:25:15 +010036
37
Willy Tarreauf24ea8e2017-11-21 19:55:27 +010038/* indexes of most important pseudo headers can be simplified to an almost
39 * linear array by dividing the index by 2 for all values from 1 to 9, and
40 * caping to 4 for values up to 14 ; thus it fits in a single 24-bit array
41 * shifted by 3 times the index value/2, or a 32-bit array shifted by 4x.
42 * Don't change these values, they are assumed by hpack_idx_to_phdr(). There
43 * is an entry for the Host header field which is not a pseudo-header but
44 * needs to be tracked as we should only use :authority if it's absent.
45 */
46enum {
47 H2_PHDR_IDX_NONE = 0,
48 H2_PHDR_IDX_AUTH = 1, /* :authority = 1 */
49 H2_PHDR_IDX_METH = 2, /* :method = 2..3 */
50 H2_PHDR_IDX_PATH = 3, /* :path = 4..5 */
51 H2_PHDR_IDX_SCHM = 4, /* :scheme = 6..7 */
52 H2_PHDR_IDX_STAT = 5, /* :status = 8..14 */
53 H2_PHDR_IDX_HOST = 6, /* Host, never returned, just a place-holder */
54 H2_PHDR_NUM_ENTRIES /* must be last */
55};
56
57/* bit fields indicating the pseudo-headers found. It also covers the HOST
58 * header field as well as any non-pseudo-header field (NONE).
59 */
60enum {
61 H2_PHDR_FND_NONE = 1 << H2_PHDR_IDX_NONE, /* found a regular header */
62 H2_PHDR_FND_AUTH = 1 << H2_PHDR_IDX_AUTH,
63 H2_PHDR_FND_METH = 1 << H2_PHDR_IDX_METH,
64 H2_PHDR_FND_PATH = 1 << H2_PHDR_IDX_PATH,
65 H2_PHDR_FND_SCHM = 1 << H2_PHDR_IDX_SCHM,
66 H2_PHDR_FND_STAT = 1 << H2_PHDR_IDX_STAT,
67 H2_PHDR_FND_HOST = 1 << H2_PHDR_IDX_HOST,
68};
69
Willy Tarreauffca7362016-12-13 18:25:15 +010070/* frame types, from the standard */
71enum h2_ft {
72 H2_FT_DATA = 0x00, // RFC7540 #6.1
73 H2_FT_HEADERS = 0x01, // RFC7540 #6.2
74 H2_FT_PRIORITY = 0x02, // RFC7540 #6.3
75 H2_FT_RST_STREAM = 0x03, // RFC7540 #6.4
76 H2_FT_SETTINGS = 0x04, // RFC7540 #6.5
77 H2_FT_PUSH_PROMISE = 0x05, // RFC7540 #6.6
78 H2_FT_PING = 0x06, // RFC7540 #6.7
79 H2_FT_GOAWAY = 0x07, // RFC7540 #6.8
80 H2_FT_WINDOW_UPDATE = 0x08, // RFC7540 #6.9
81 H2_FT_CONTINUATION = 0x09, // RFC7540 #6.10
82 H2_FT_ENTRIES /* must be last */
83} __attribute__((packed));
84
Willy Tarreaudeab2442018-12-21 14:56:57 +010085/* frame types, turned to bits or bit fields */
86enum {
87 /* one bit per frame type */
88 H2_FT_DATA_BIT = 1U << H2_FT_DATA,
89 H2_FT_HEADERS_BIT = 1U << H2_FT_HEADERS,
90 H2_FT_PRIORITY_BIT = 1U << H2_FT_PRIORITY,
91 H2_FT_RST_STREAM_BIT = 1U << H2_FT_RST_STREAM,
92 H2_FT_SETTINGS_BIT = 1U << H2_FT_SETTINGS,
93 H2_FT_PUSH_PROMISE_BIT = 1U << H2_FT_PUSH_PROMISE,
94 H2_FT_PING_BIT = 1U << H2_FT_PING,
95 H2_FT_GOAWAY_BIT = 1U << H2_FT_GOAWAY,
96 H2_FT_WINDOW_UPDATE_BIT = 1U << H2_FT_WINDOW_UPDATE,
97 H2_FT_CONTINUATION_BIT = 1U << H2_FT_CONTINUATION,
98 /* padded frames */
Willy Tarreau71c38112019-01-24 09:31:40 +010099 H2_FT_PADDED_MASK = H2_FT_DATA_BIT | H2_FT_HEADERS_BIT | H2_FT_PUSH_PROMISE_BIT,
Willy Tarreaudeab2442018-12-21 14:56:57 +0100100 /* flow controlled frames */
Willy Tarreau71c38112019-01-24 09:31:40 +0100101 H2_FT_FC_MASK = H2_FT_DATA_BIT,
102 /* header frames */
103 H2_FT_HDR_MASK = H2_FT_HEADERS_BIT | H2_FT_PUSH_PROMISE_BIT | H2_FT_CONTINUATION_BIT,
104 /* frames allowed to arrive late on a stream */
105 H2_FT_LATE_MASK = H2_FT_WINDOW_UPDATE_BIT | H2_FT_RST_STREAM_BIT | H2_FT_PRIORITY_BIT,
Willy Tarreaudeab2442018-12-21 14:56:57 +0100106};
107
108
Willy Tarreauffca7362016-12-13 18:25:15 +0100109/* flags defined for each frame type */
110
111// RFC7540 #6.1
112#define H2_F_DATA_END_STREAM 0x01
113#define H2_F_DATA_PADDED 0x08
114
115// RFC7540 #6.2
116#define H2_F_HEADERS_END_STREAM 0x01
117#define H2_F_HEADERS_END_HEADERS 0x04
118#define H2_F_HEADERS_PADDED 0x08
119#define H2_F_HEADERS_PRIORITY 0x20
120
121// RFC7540 #6.3 : PRIORITY defines no flags
122// RFC7540 #6.4 : RST_STREAM defines no flags
123
124// RFC7540 #6.5
125#define H2_F_SETTINGS_ACK 0x01
126
127// RFC7540 #6.6
128#define H2_F_PUSH_PROMISE_END_HEADERS 0x04
129#define H2_F_PUSH_PROMISE_PADDED 0x08
130
131// RFC7540 #6.7
132#define H2_F_PING_ACK 0x01
133
134// RFC7540 #6.8 : GOAWAY defines no flags
135// RFC7540 #6.9 : WINDOW_UPDATE defines no flags
136
Willy Tarreaudeab2442018-12-21 14:56:57 +0100137// PADDED is the exact same among DATA, HEADERS and PUSH_PROMISE (8)
138#define H2_F_PADDED 0x08
139
Willy Tarreauffca7362016-12-13 18:25:15 +0100140/* HTTP/2 error codes - RFC7540 #7 */
141enum h2_err {
142 H2_ERR_NO_ERROR = 0x0,
143 H2_ERR_PROTOCOL_ERROR = 0x1,
144 H2_ERR_INTERNAL_ERROR = 0x2,
145 H2_ERR_FLOW_CONTROL_ERROR = 0x3,
146 H2_ERR_SETTINGS_TIMEOUT = 0x4,
147 H2_ERR_STREAM_CLOSED = 0x5,
148 H2_ERR_FRAME_SIZE_ERROR = 0x6,
149 H2_ERR_REFUSED_STREAM = 0x7,
150 H2_ERR_CANCEL = 0x8,
151 H2_ERR_COMPRESSION_ERROR = 0x9,
152 H2_ERR_CONNECT_ERROR = 0xa,
153 H2_ERR_ENHANCE_YOUR_CALM = 0xb,
154 H2_ERR_INADEQUATE_SECURITY = 0xc,
155 H2_ERR_HTTP_1_1_REQUIRED = 0xd,
156} __attribute__((packed));
157
158// RFC7540 #11.3 : Settings Registry
159#define H2_SETTINGS_HEADER_TABLE_SIZE 0x0001
160#define H2_SETTINGS_ENABLE_PUSH 0x0002
161#define H2_SETTINGS_MAX_CONCURRENT_STREAMS 0x0003
162#define H2_SETTINGS_INITIAL_WINDOW_SIZE 0x0004
163#define H2_SETTINGS_MAX_FRAME_SIZE 0x0005
164#define H2_SETTINGS_MAX_HEADER_LIST_SIZE 0x0006
165
166
167/* some protocol constants */
168
169// PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n
170#define H2_CONN_PREFACE \
171 "\x50\x52\x49\x20\x2a\x20\x48\x54" \
172 "\x54\x50\x2f\x32\x2e\x30\x0d\x0a" \
173 "\x0d\x0a\x53\x4d\x0d\x0a\x0d\x0a"
174
Willy Tarreauf24ea8e2017-11-21 19:55:27 +0100175
Willy Tarreau174b06a2018-04-25 18:13:58 +0200176/* some flags related to protocol parsing */
177#define H2_MSGF_BODY 0x0001 // a body is present
178#define H2_MSGF_BODY_CL 0x0002 // content-length is present
179#define H2_MSGF_BODY_TUNNEL 0x0004 // a tunnel is in use (CONNECT)
Christopher Faulet0b465482019-02-19 15:14:23 +0100180#define H2_MSGF_RSP_1XX 0x0010 // a 1xx ( != 101) HEADERS frame was received
Willy Tarreau174b06a2018-04-25 18:13:58 +0200181
Willy Tarreau9c84d822019-01-30 15:09:21 +0100182#define H2_MAX_STREAM_ID ((1U << 31) - 1)
183#define H2_MAX_FRAME_LEN ((1U << 24) - 1)
184#define H2_DIR_REQ 1
185#define H2_DIR_RES 2
186#define H2_DIR_BOTH 3
187
188/* constraints imposed by the protocol on each frame type, in terms of stream
189 * ID values, frame sizes, and direction so that most connection-level checks
190 * can be centralized regardless of the frame's acceptance.
191 */
192struct h2_frame_definition {
193 int32_t dir; /* 0=none, 1=request, 2=response, 3=both */
194 int32_t min_id; /* minimum allowed stream ID */
195 int32_t max_id; /* maximum allowed stream ID */
196 int32_t min_len; /* minimum frame length */
197 int32_t max_len; /* maximum frame length */
198};
199
200extern struct h2_frame_definition h2_frame_definition[H2_FT_ENTRIES];
Willy Tarreau174b06a2018-04-25 18:13:58 +0200201
Willy Tarreauf24ea8e2017-11-21 19:55:27 +0100202/* various protocol processing functions */
203
Willy Tarreaubeefaee2018-12-19 13:08:08 +0100204int h2_parse_cont_len_header(unsigned int *msgf, struct ist *value, unsigned long long *body_len);
Willy Tarreau4790f7c2019-01-24 11:33:02 +0100205int h2_make_htx_request(struct http_hdr *list, struct htx *htx, unsigned int *msgf, unsigned long long *body_len);
206int h2_make_htx_response(struct http_hdr *list, struct htx *htx, unsigned int *msgf, unsigned long long *body_len);
Willy Tarreau1e1f27c2019-01-03 18:39:54 +0100207int h2_make_htx_trailers(struct http_hdr *list, struct htx *htx);
Willy Tarreauf24ea8e2017-11-21 19:55:27 +0100208
Willy Tarreauffca7362016-12-13 18:25:15 +0100209/*
210 * Some helpful debugging functions.
211 */
212
Willy Tarreaudeab2442018-12-21 14:56:57 +0100213/* returns a bit corresponding to the frame type */
214static inline unsigned int h2_ft_bit(enum h2_ft ft)
215{
216 return 1U << ft;
217}
218
Willy Tarreauffca7362016-12-13 18:25:15 +0100219/* returns the frame type as a string */
220static inline const char *h2_ft_str(int type)
221{
222 switch (type) {
223 case H2_FT_DATA : return "DATA";
224 case H2_FT_HEADERS : return "HEADERS";
225 case H2_FT_PRIORITY : return "PRIORITY";
226 case H2_FT_RST_STREAM : return "RST_STREAM";
227 case H2_FT_SETTINGS : return "SETTINGS";
228 case H2_FT_PUSH_PROMISE : return "PUSH_PROMISE";
229 case H2_FT_PING : return "PING";
230 case H2_FT_GOAWAY : return "GOAWAY";
231 case H2_FT_WINDOW_UPDATE : return "WINDOW_UPDATE";
232 default : return "_UNKNOWN_";
233 }
234}
235
Willy Tarreauc22d5df2019-11-24 14:56:03 +0100236/* returns the error code as a string */
237static inline const char *h2_err_str(enum h2_err err)
238{
239 switch (err) {
240 case H2_ERR_NO_ERROR : return "NO_ERROR";
241 case H2_ERR_PROTOCOL_ERROR : return "PROTOCOL_ERROR";
242 case H2_ERR_INTERNAL_ERROR : return "INTERNAL_ERROR";
243 case H2_ERR_FLOW_CONTROL_ERROR : return "FLOW_CONTROL_ERROR";
244 case H2_ERR_SETTINGS_TIMEOUT : return "SETTINGS_TIMEOUT";
245 case H2_ERR_STREAM_CLOSED : return "STREAM_CLOSED";
246 case H2_ERR_FRAME_SIZE_ERROR : return "FRAME_SIZE_ERROR";
247 case H2_ERR_REFUSED_STREAM : return "REFUSED_STREAM";
248 case H2_ERR_CANCEL : return "CANCEL";
249 case H2_ERR_COMPRESSION_ERROR : return "COMPRESSION_ERROR";
250 case H2_ERR_CONNECT_ERROR : return "CONNECT_ERROR";
251 case H2_ERR_ENHANCE_YOUR_CALM : return "ENHANCE_YOUR_CALM";
252 case H2_ERR_INADEQUATE_SECURITY : return "INADEQUATE_SECURITY";
253 case H2_ERR_HTTP_1_1_REQUIRED : return "HTTP_1_1_REQUIRED";
254 default : return "_UNKNOWN_";
255 }
256}
257
Willy Tarreau9c84d822019-01-30 15:09:21 +0100258/* Returns an error code if the frame is valid protocol-wise, otherwise 0. <ft>
259 * is the frame type (H2_FT_*), <dir> is the direction (1=req, 2=res), <id> is
260 * the stream ID from the frame header, <len> is the frame length from the
261 * header. The purpose is to be able to quickly return a PROTOCOL_ERROR or
262 * FRAME_SIZE_ERROR connection error even for situations where the frame will
263 * be ignored. <mfs> must be the max frame size currently in place for the
264 * protocol.
265 */
266static inline int h2_frame_check(enum h2_ft ft, int dir, int32_t id, int32_t len, int32_t mfs)
267{
268 struct h2_frame_definition *fd;
269
270 if (ft >= H2_FT_ENTRIES)
271 return H2_ERR_NO_ERROR; // ignore unhandled frame types
272
273 fd = &h2_frame_definition[ft];
274
275 if (!(dir & fd->dir))
276 return H2_ERR_PROTOCOL_ERROR;
277
278 if (id < fd->min_id || id > fd->max_id)
279 return H2_ERR_PROTOCOL_ERROR;
280
281 if (len < fd->min_len || len > fd->max_len)
282 return H2_ERR_FRAME_SIZE_ERROR;
283
284 if (len > mfs)
285 return H2_ERR_FRAME_SIZE_ERROR;
286
287 if (ft == H2_FT_SETTINGS && (len % 6) != 0)
288 return H2_ERR_FRAME_SIZE_ERROR; // RFC7540#6.5
289
290 return H2_ERR_NO_ERROR;
291}
292
Willy Tarreauf24ea8e2017-11-21 19:55:27 +0100293/* returns the pseudo-header <str> corresponds to among H2_PHDR_IDX_*, 0 if not a
294 * pseudo-header, or -1 if not a valid pseudo-header.
295 */
296static inline int h2_str_to_phdr(const struct ist str)
297{
298 if (*str.ptr == ':') {
299 if (isteq(str, ist(":path"))) return H2_PHDR_IDX_PATH;
300 else if (isteq(str, ist(":method"))) return H2_PHDR_IDX_METH;
301 else if (isteq(str, ist(":scheme"))) return H2_PHDR_IDX_SCHM;
302 else if (isteq(str, ist(":status"))) return H2_PHDR_IDX_STAT;
303 else if (isteq(str, ist(":authority"))) return H2_PHDR_IDX_AUTH;
304
305 /* all other names starting with ':' */
306 return -1;
307 }
308
309 /* not a pseudo header */
310 return 0;
311}
312
Willy Tarreau30832762017-12-30 14:39:09 +0100313/* returns the pseudo-header name <num> as a string, or ":UNKNOWN" if unknown */
314static inline const char *h2_phdr_to_str(int phdr)
315{
316 switch (phdr) {
317 case H2_PHDR_IDX_NONE: return ":NONE";
318 case H2_PHDR_IDX_AUTH: return ":authority";
319 case H2_PHDR_IDX_METH: return ":method";
320 case H2_PHDR_IDX_PATH: return ":path";
321 case H2_PHDR_IDX_SCHM: return ":scheme";
322 case H2_PHDR_IDX_STAT: return ":status";
323 case H2_PHDR_IDX_HOST: return "Host";
324 default: return ":UNKNOWN";
325 }
326}
Willy Tarreauf24ea8e2017-11-21 19:55:27 +0100327
Willy Tarreauffca7362016-12-13 18:25:15 +0100328#endif /* _COMMON_H2_H */
329
330/*
331 * Local variables:
332 * c-indent-level: 8
333 * c-basic-offset: 8
334 * End:
335 */