blob: acc80c017d4c2c6cf5f326bfeb123ccd1b5423c4 [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
85/* flags defined for each frame type */
86
87// RFC7540 #6.1
88#define H2_F_DATA_END_STREAM 0x01
89#define H2_F_DATA_PADDED 0x08
90
91// RFC7540 #6.2
92#define H2_F_HEADERS_END_STREAM 0x01
93#define H2_F_HEADERS_END_HEADERS 0x04
94#define H2_F_HEADERS_PADDED 0x08
95#define H2_F_HEADERS_PRIORITY 0x20
96
97// RFC7540 #6.3 : PRIORITY defines no flags
98// RFC7540 #6.4 : RST_STREAM defines no flags
99
100// RFC7540 #6.5
101#define H2_F_SETTINGS_ACK 0x01
102
103// RFC7540 #6.6
104#define H2_F_PUSH_PROMISE_END_HEADERS 0x04
105#define H2_F_PUSH_PROMISE_PADDED 0x08
106
107// RFC7540 #6.7
108#define H2_F_PING_ACK 0x01
109
110// RFC7540 #6.8 : GOAWAY defines no flags
111// RFC7540 #6.9 : WINDOW_UPDATE defines no flags
112
113/* HTTP/2 error codes - RFC7540 #7 */
114enum h2_err {
115 H2_ERR_NO_ERROR = 0x0,
116 H2_ERR_PROTOCOL_ERROR = 0x1,
117 H2_ERR_INTERNAL_ERROR = 0x2,
118 H2_ERR_FLOW_CONTROL_ERROR = 0x3,
119 H2_ERR_SETTINGS_TIMEOUT = 0x4,
120 H2_ERR_STREAM_CLOSED = 0x5,
121 H2_ERR_FRAME_SIZE_ERROR = 0x6,
122 H2_ERR_REFUSED_STREAM = 0x7,
123 H2_ERR_CANCEL = 0x8,
124 H2_ERR_COMPRESSION_ERROR = 0x9,
125 H2_ERR_CONNECT_ERROR = 0xa,
126 H2_ERR_ENHANCE_YOUR_CALM = 0xb,
127 H2_ERR_INADEQUATE_SECURITY = 0xc,
128 H2_ERR_HTTP_1_1_REQUIRED = 0xd,
129} __attribute__((packed));
130
131// RFC7540 #11.3 : Settings Registry
132#define H2_SETTINGS_HEADER_TABLE_SIZE 0x0001
133#define H2_SETTINGS_ENABLE_PUSH 0x0002
134#define H2_SETTINGS_MAX_CONCURRENT_STREAMS 0x0003
135#define H2_SETTINGS_INITIAL_WINDOW_SIZE 0x0004
136#define H2_SETTINGS_MAX_FRAME_SIZE 0x0005
137#define H2_SETTINGS_MAX_HEADER_LIST_SIZE 0x0006
138
139
140/* some protocol constants */
141
142// PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n
143#define H2_CONN_PREFACE \
144 "\x50\x52\x49\x20\x2a\x20\x48\x54" \
145 "\x54\x50\x2f\x32\x2e\x30\x0d\x0a" \
146 "\x0d\x0a\x53\x4d\x0d\x0a\x0d\x0a"
147
Willy Tarreauf24ea8e2017-11-21 19:55:27 +0100148
Willy Tarreau174b06a2018-04-25 18:13:58 +0200149/* some flags related to protocol parsing */
150#define H2_MSGF_BODY 0x0001 // a body is present
151#define H2_MSGF_BODY_CL 0x0002 // content-length is present
152#define H2_MSGF_BODY_TUNNEL 0x0004 // a tunnel is in use (CONNECT)
153
154
Willy Tarreauf24ea8e2017-11-21 19:55:27 +0100155/* various protocol processing functions */
156
Willy Tarreau174b06a2018-04-25 18:13:58 +0200157int h2_make_h1_request(struct http_hdr *list, char *out, int osize, unsigned int *msgf);
Willy Tarreaubeefaee2018-12-19 13:08:08 +0100158int h2_parse_cont_len_header(unsigned int *msgf, struct ist *value, unsigned long long *body_len);
Willy Tarreau6deb4122018-11-27 15:34:18 +0100159int h2_make_htx_request(struct http_hdr *list, struct htx *htx, unsigned int *msgf);
Willy Tarreau1329b5b2018-10-08 14:49:20 +0200160int h2_make_htx_response(struct http_hdr *list, struct htx *htx, unsigned int *msgf);
Willy Tarreauf24ea8e2017-11-21 19:55:27 +0100161
Willy Tarreauffca7362016-12-13 18:25:15 +0100162/*
163 * Some helpful debugging functions.
164 */
165
166/* returns the frame type as a string */
167static inline const char *h2_ft_str(int type)
168{
169 switch (type) {
170 case H2_FT_DATA : return "DATA";
171 case H2_FT_HEADERS : return "HEADERS";
172 case H2_FT_PRIORITY : return "PRIORITY";
173 case H2_FT_RST_STREAM : return "RST_STREAM";
174 case H2_FT_SETTINGS : return "SETTINGS";
175 case H2_FT_PUSH_PROMISE : return "PUSH_PROMISE";
176 case H2_FT_PING : return "PING";
177 case H2_FT_GOAWAY : return "GOAWAY";
178 case H2_FT_WINDOW_UPDATE : return "WINDOW_UPDATE";
179 default : return "_UNKNOWN_";
180 }
181}
182
Willy Tarreauf24ea8e2017-11-21 19:55:27 +0100183/* returns the pseudo-header <str> corresponds to among H2_PHDR_IDX_*, 0 if not a
184 * pseudo-header, or -1 if not a valid pseudo-header.
185 */
186static inline int h2_str_to_phdr(const struct ist str)
187{
188 if (*str.ptr == ':') {
189 if (isteq(str, ist(":path"))) return H2_PHDR_IDX_PATH;
190 else if (isteq(str, ist(":method"))) return H2_PHDR_IDX_METH;
191 else if (isteq(str, ist(":scheme"))) return H2_PHDR_IDX_SCHM;
192 else if (isteq(str, ist(":status"))) return H2_PHDR_IDX_STAT;
193 else if (isteq(str, ist(":authority"))) return H2_PHDR_IDX_AUTH;
194
195 /* all other names starting with ':' */
196 return -1;
197 }
198
199 /* not a pseudo header */
200 return 0;
201}
202
Willy Tarreau30832762017-12-30 14:39:09 +0100203/* returns the pseudo-header name <num> as a string, or ":UNKNOWN" if unknown */
204static inline const char *h2_phdr_to_str(int phdr)
205{
206 switch (phdr) {
207 case H2_PHDR_IDX_NONE: return ":NONE";
208 case H2_PHDR_IDX_AUTH: return ":authority";
209 case H2_PHDR_IDX_METH: return ":method";
210 case H2_PHDR_IDX_PATH: return ":path";
211 case H2_PHDR_IDX_SCHM: return ":scheme";
212 case H2_PHDR_IDX_STAT: return ":status";
213 case H2_PHDR_IDX_HOST: return "Host";
214 default: return ":UNKNOWN";
215 }
216}
Willy Tarreauf24ea8e2017-11-21 19:55:27 +0100217
Willy Tarreauffca7362016-12-13 18:25:15 +0100218#endif /* _COMMON_H2_H */
219
220/*
221 * Local variables:
222 * c-indent-level: 8
223 * c-basic-offset: 8
224 * End:
225 */