blob: 81d5767f180ae68aeeb791da4e59d374c33082d2 [file] [log] [blame]
Willy Tarreauce040942017-05-30 18:46:58 +02001/*
2 * HPACK header table management (RFC7541) - type definitions and prototypes
3 *
4 * Copyright (C) 2014-2017 Willy Tarreau <willy@haproxy.org>
5 * Copyright (C) 2017 HAProxy Technologies
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining
8 * a copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sublicense, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be
16 * included in all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
20 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
22 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
25 * OTHER DEALINGS IN THE SOFTWARE.
26 */
27#ifndef _COMMON_HPACK_TBL_H
28#define _COMMON_HPACK_TBL_H
29
Willy Tarreaua1bd1fa2019-03-29 17:26:33 +010030#include <inttypes.h>
Willy Tarreauce040942017-05-30 18:46:58 +020031#include <stdlib.h>
32#include <common/config.h>
33#include <common/http-hdr.h>
34#include <common/ist.h>
35
36/* Dynamic Headers Table, usable for tables up to 4GB long and values of 64kB-1.
37 * The model can be improved by using offsets relative to the table entry's end
38 * or to the end of the area, or by moving the descriptors at the end of the
39 * table and the data at the beginning. This entry is 8 bytes long, which is 1/4
40 * of the bookkeeping planned by the HPACK spec. Thus it saves 24 bytes per
41 * header field, meaning that even with a single header, 24 extra bytes can be
42 * stored (ie one such descriptor). At 29.2 average bytes per header field as
43 * found in the hpack test case, that's slightly more than 1.5kB of space saved
44 * from a 4kB block, resulting in contiguous space almost always being
45 * available.
46 *
47 * Principle: the table is stored in a contiguous array containing both the
48 * descriptors and the contents. Descriptors are stored at the beginning of the
49 * array while contents are stored starting from the end. Most of the time there
50 * is enough room left in the table to insert a new header field, thanks to the
51 * savings on the descriptor size. Thus by inserting headers from the end it's
52 * possible to maximize the delay before a collision of DTEs and data. In order
53 * to always insert from the right, we need to keep a reference to the latest
54 * inserted element and look before it. The last inserted cell's address defines
55 * the lowest konwn address still in use, unless the area wraps in which case
56 * the available space lies between the end of the tail and the beginning of the
57 * head.
58 *
59 * In order to detect collisions between data blocks and DTEs, we also maintain
60 * an index to the lowest element facing the DTE table, called "front". This one
61 * is updated each time an element is inserted before it. Once the buffer wraps,
62 * this element doesn't have to be updated anymore until it is released, in
63 * which case the buffer doesn't wrap anymore and the front element becomes the
64 * head again.
65 *
66 * Various heuristics are possible concerning the opportunity to wrap the
67 * entries to limit the risk of collisions with the DTE, but experimentation
68 * shows that thanks to the important savings made on the descriptors, the
69 * likeliness of finding a large amount of free space at the end of the area is
70 * much higher than the risk of colliding, so in the end the most naive
71 * algorithms work pretty fine. Typical ratios of 1 collision per 2000 requests
72 * have been observed.
73 *
74 * The defragmentation should be rare ; a study on live data shows on average
75 * 29.2 bytes used per header field. This plus the 32 bytes overhead fix an
76 * average of 66.9 header fields per 4kB table. This brings a 1606 bytes saving
77 * using the current storage description, ensuring that oldest headers are
78 * linearly removed by the sender before fragmentation occurs. This means that
79 * for all smaller header fields there will not be any requirement to defragment
80 * the area and most of the time it will even be possible to copy the old values
81 * directly within the buffer after creating a new entry. On average within the
82 * available space there will be enough room to store 1606/(29.2+8)=43 extra
83 * header fields without switching to another place.
84 *
85 * The table header fits in the table itself, it only takes 16 bytes, so in the
86 * worst case (1 single header) it's possible to store 4096 - 16 - 8 = 4072
87 * data bytes, which is larger than the 4064 the protocol requires (4096 - 32).
88 */
89
Christian Rupperta3107852020-11-09 09:15:21 +010090/*
91 * Gcc before 3.0 needs [0] to declare a variable-size array
92 */
93#ifndef VAR_ARRAY
94#if defined(__GNUC__) && (__GNUC__ < 3)
95#define VAR_ARRAY 0
96#else
97#define VAR_ARRAY
98#endif
99#endif
100
Willy Tarreauce040942017-05-30 18:46:58 +0200101/* One dynamic table entry descriptor */
102struct hpack_dte {
103 uint32_t addr; /* storage address, relative to the dte address */
104 uint16_t nlen; /* header name length */
105 uint16_t vlen; /* header value length */
106};
107
108/* Note: the table's head plus a struct hpack_dte must be smaller than or equal to 32
109 * bytes so that a single large header can always fit. Here that's 16 bytes for
110 * the header, plus 8 bytes per slot.
111 * Note that when <used> == 0, front, head, and wrap are undefined.
112 */
113struct hpack_dht {
114 uint32_t size; /* allocated table size in bytes */
115 uint32_t total; /* sum of nlen + vlen in bytes */
116 uint16_t front; /* slot number of the first node after the idx table */
117 uint16_t wrap; /* number of allocated slots, wraps here */
118 uint16_t head; /* last inserted slot number */
119 uint16_t used; /* number of slots in use */
120 struct hpack_dte dte[0]; /* dynamic table entries */
121};
122
123/* supported hpack encoding/decoding errors */
124enum {
125 HPACK_ERR_NONE = 0, /* no error */
126 HPACK_ERR_ALLOC_FAIL, /* memory allocation error */
127 HPACK_ERR_UNKNOWN_OPCODE, /* invalid first byte */
128 HPACK_ERR_TRUNCATED, /* truncated stream */
129 HPACK_ERR_HUFFMAN, /* huffman decoding error */
130 HPACK_ERR_INVALID_PHDR, /* invalid pseudo header field name */
131 HPACK_ERR_MISPLACED_PHDR, /* pseudo header field after a regular header field */
132 HPACK_ERR_DUPLICATE_PHDR, /* duplicate pseudo header field */
133 HPACK_ERR_DHT_INSERT_FAIL, /* failed to insert into DHT */
134 HPACK_ERR_TOO_LARGE, /* decoded request/response is too large */
135 HPACK_ERR_MISSING_METHOD, /* :method is missing */
136 HPACK_ERR_MISSING_SCHEME, /* :scheme is missing */
137 HPACK_ERR_MISSING_PATH, /* :path is missing */
138 HPACK_ERR_MISSING_AUTHORITY, /* :authority is missing with CONNECT */
139 HPACK_ERR_SCHEME_NOT_ALLOWED, /* :scheme not allowed with CONNECT */
140 HPACK_ERR_PATH_NOT_ALLOWED, /* :path not allowed with CONNECT */
Willy Tarreau1e7d4442019-01-24 10:47:10 +0100141 HPACK_ERR_INVALID_ARGUMENT, /* an invalid argument was passed */
Willy Tarreauce040942017-05-30 18:46:58 +0200142};
143
144/* static header table as in RFC7541 Appendix A. [0] unused. */
145#define HPACK_SHT_SIZE 62
146extern const struct http_hdr hpack_sht[HPACK_SHT_SIZE];
147
148extern int __hpack_dht_make_room(struct hpack_dht *dht, unsigned int needed);
149extern int hpack_dht_insert(struct hpack_dht *dht, struct ist name, struct ist value);
150
151/* return a pointer to the entry designated by index <idx> (starting at 1) or
152 * NULL if this index is not there.
153 */
154static inline const struct hpack_dte *hpack_get_dte(const struct hpack_dht *dht, uint16_t idx)
155{
156 idx--;
157
158 if (idx >= dht->used)
159 return NULL;
160
161 if (idx <= dht->head)
162 idx = dht->head - idx;
163 else
164 idx = dht->head - idx + dht->wrap;
165
166 return &dht->dte[idx];
167}
168
Willy Tarreaud85ba4e2017-12-03 12:12:17 +0100169/* returns non-zero if <idx> is valid for table <dht> */
Willy Tarreau7f2a44d2018-09-17 14:07:33 +0200170static inline int hpack_valid_idx(const struct hpack_dht *dht, uint32_t idx)
Willy Tarreaud85ba4e2017-12-03 12:12:17 +0100171{
172 return idx < dht->used + HPACK_SHT_SIZE;
173}
174
Willy Tarreauce040942017-05-30 18:46:58 +0200175/* return a pointer to the header name for entry <dte>. */
176static inline struct ist hpack_get_name(const struct hpack_dht *dht, const struct hpack_dte *dte)
177{
178 struct ist ret = {
179 .ptr = (void *)dht + dte->addr,
180 .len = dte->nlen,
181 };
182 return ret;
183}
184
185/* return a pointer to the header value for entry <dte>. */
186static inline struct ist hpack_get_value(const struct hpack_dht *dht, const struct hpack_dte *dte)
187{
188 struct ist ret = {
189 .ptr = (void *)dht + dte->addr + dte->nlen,
190 .len = dte->vlen,
191 };
192 return ret;
193}
194
195/* takes an idx, returns the associated name */
Willy Tarreau7f2a44d2018-09-17 14:07:33 +0200196static inline struct ist hpack_idx_to_name(const struct hpack_dht *dht, uint32_t idx)
Willy Tarreauce040942017-05-30 18:46:58 +0200197{
198 const struct hpack_dte *dte;
199
200 if (idx < HPACK_SHT_SIZE)
201 return hpack_sht[idx].n;
202
203 dte = hpack_get_dte(dht, idx - HPACK_SHT_SIZE + 1);
204 if (!dte)
205 return ist("### ERR ###"); // error
206
207 return hpack_get_name(dht, dte);
208}
209
210/* takes an idx, returns the associated value */
Willy Tarreau7f2a44d2018-09-17 14:07:33 +0200211static inline struct ist hpack_idx_to_value(const struct hpack_dht *dht, uint32_t idx)
Willy Tarreauce040942017-05-30 18:46:58 +0200212{
213 const struct hpack_dte *dte;
214
215 if (idx < HPACK_SHT_SIZE)
216 return hpack_sht[idx].v;
217
218 dte = hpack_get_dte(dht, idx - HPACK_SHT_SIZE + 1);
219 if (!dte)
220 return ist("### ERR ###"); // error
221
222 return hpack_get_value(dht, dte);
223}
224
225/* Purges table dht until a header field of <needed> bytes fits according to
226 * the protocol (adding 32 bytes overhead). Returns non-zero on success, zero
227 * on failure (ie: table empty but still not sufficient).
228 */
229static inline int hpack_dht_make_room(struct hpack_dht *dht, unsigned int needed)
230{
Willy Tarreau6c71e462017-12-04 17:58:37 +0100231 if (dht->used * 32 + dht->total + needed + 32 <= dht->size)
Willy Tarreauce040942017-05-30 18:46:58 +0200232 return 1;
Willy Tarreau6c71e462017-12-04 17:58:37 +0100233 else if (!dht->used)
234 return 0;
Willy Tarreauce040942017-05-30 18:46:58 +0200235
236 return __hpack_dht_make_room(dht, needed);
237}
238
239/* allocate a dynamic headers table of <size> bytes and return it initialized */
240static inline void hpack_dht_init(struct hpack_dht *dht, uint32_t size)
241{
242 dht->size = size;
243 dht->total = 0;
244 dht->used = 0;
245}
246
247/* allocate a dynamic headers table of <size> bytes and return it initialized */
248static inline struct hpack_dht *hpack_dht_alloc(uint32_t size)
249{
250 struct hpack_dht *dht;
251
252 dht = malloc(size);
253 if (!dht)
254 return dht;
255
256 hpack_dht_init(dht, size);
257 return dht;
258}
259
260/* free a dynamic headers table */
261static inline void hpack_dht_free(struct hpack_dht *dht)
262{
263 free(dht);
264}
265
266#endif /* _COMMON_HPACK_TBL_H */