blob: 71be8ce78568b09f32bbdf3f3c2dcd0be1d81a50 [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)
180
181
Willy Tarreauf24ea8e2017-11-21 19:55:27 +0100182/* various protocol processing functions */
183
Willy Tarreau4790f7c2019-01-24 11:33:02 +0100184int h2_make_h1_request(struct http_hdr *list, char *out, int osize, unsigned int *msgf, unsigned long long *body_len);
Willy Tarreau9d953e72019-01-03 16:18:14 +0100185int h2_make_h1_trailers(struct http_hdr *list, char *out, int osize);
Willy Tarreaubeefaee2018-12-19 13:08:08 +0100186int h2_parse_cont_len_header(unsigned int *msgf, struct ist *value, unsigned long long *body_len);
Willy Tarreau4790f7c2019-01-24 11:33:02 +0100187int h2_make_htx_request(struct http_hdr *list, struct htx *htx, unsigned int *msgf, unsigned long long *body_len);
188int 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 +0100189int h2_make_htx_trailers(struct http_hdr *list, struct htx *htx);
Willy Tarreauf24ea8e2017-11-21 19:55:27 +0100190
Willy Tarreauffca7362016-12-13 18:25:15 +0100191/*
192 * Some helpful debugging functions.
193 */
194
Willy Tarreaudeab2442018-12-21 14:56:57 +0100195/* returns a bit corresponding to the frame type */
196static inline unsigned int h2_ft_bit(enum h2_ft ft)
197{
198 return 1U << ft;
199}
200
Willy Tarreauffca7362016-12-13 18:25:15 +0100201/* returns the frame type as a string */
202static inline const char *h2_ft_str(int type)
203{
204 switch (type) {
205 case H2_FT_DATA : return "DATA";
206 case H2_FT_HEADERS : return "HEADERS";
207 case H2_FT_PRIORITY : return "PRIORITY";
208 case H2_FT_RST_STREAM : return "RST_STREAM";
209 case H2_FT_SETTINGS : return "SETTINGS";
210 case H2_FT_PUSH_PROMISE : return "PUSH_PROMISE";
211 case H2_FT_PING : return "PING";
212 case H2_FT_GOAWAY : return "GOAWAY";
213 case H2_FT_WINDOW_UPDATE : return "WINDOW_UPDATE";
214 default : return "_UNKNOWN_";
215 }
216}
217
Willy Tarreauf24ea8e2017-11-21 19:55:27 +0100218/* returns the pseudo-header <str> corresponds to among H2_PHDR_IDX_*, 0 if not a
219 * pseudo-header, or -1 if not a valid pseudo-header.
220 */
221static inline int h2_str_to_phdr(const struct ist str)
222{
223 if (*str.ptr == ':') {
224 if (isteq(str, ist(":path"))) return H2_PHDR_IDX_PATH;
225 else if (isteq(str, ist(":method"))) return H2_PHDR_IDX_METH;
226 else if (isteq(str, ist(":scheme"))) return H2_PHDR_IDX_SCHM;
227 else if (isteq(str, ist(":status"))) return H2_PHDR_IDX_STAT;
228 else if (isteq(str, ist(":authority"))) return H2_PHDR_IDX_AUTH;
229
230 /* all other names starting with ':' */
231 return -1;
232 }
233
234 /* not a pseudo header */
235 return 0;
236}
237
Willy Tarreau30832762017-12-30 14:39:09 +0100238/* returns the pseudo-header name <num> as a string, or ":UNKNOWN" if unknown */
239static inline const char *h2_phdr_to_str(int phdr)
240{
241 switch (phdr) {
242 case H2_PHDR_IDX_NONE: return ":NONE";
243 case H2_PHDR_IDX_AUTH: return ":authority";
244 case H2_PHDR_IDX_METH: return ":method";
245 case H2_PHDR_IDX_PATH: return ":path";
246 case H2_PHDR_IDX_SCHM: return ":scheme";
247 case H2_PHDR_IDX_STAT: return ":status";
248 case H2_PHDR_IDX_HOST: return "Host";
249 default: return ":UNKNOWN";
250 }
251}
Willy Tarreauf24ea8e2017-11-21 19:55:27 +0100252
Willy Tarreauffca7362016-12-13 18:25:15 +0100253#endif /* _COMMON_H2_H */
254
255/*
256 * Local variables:
257 * c-indent-level: 8
258 * c-basic-offset: 8
259 * End:
260 */