blob: 48bb8cf3eff211cd33f7eaf37591524ebb4840c1 [file] [log] [blame]
Frédéric Lécailleccac11f2021-03-03 16:09:02 +01001/*
2 * HTTP/3 protocol processing
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation, version 2.1
7 * exclusively.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19#include <haproxy/buf.h>
Amaury Denoyelle99043552021-08-24 15:36:02 +020020#include <haproxy/connection.h>
Frédéric Lécailleccac11f2021-03-03 16:09:02 +010021#include <haproxy/dynbuf.h>
22#include <haproxy/h3.h>
Amaury Denoyelleb49fa1a2021-08-24 15:30:12 +020023#include <haproxy/http.h>
24#include <haproxy/htx.h>
Frédéric Lécailleccac11f2021-03-03 16:09:02 +010025#include <haproxy/istbuf.h>
Amaury Denoyelledeed7772021-12-03 11:36:46 +010026#include <haproxy/mux_quic-t.h>
Frédéric Lécailleccac11f2021-03-03 16:09:02 +010027#include <haproxy/pool.h>
28#include <haproxy/qpack-dec.h>
Amaury Denoyelle15b09612021-08-24 16:20:27 +020029#include <haproxy/qpack-enc.h>
30#include <haproxy/quic_enc.h>
Amaury Denoyelle99043552021-08-24 15:36:02 +020031#include <haproxy/stream.h>
Frédéric Lécailleccac11f2021-03-03 16:09:02 +010032#include <haproxy/tools.h>
33#include <haproxy/xprt_quic.h>
34
35#define DEBUG_H3
36
37#if defined(DEBUG_H3)
38#define h3_debug_printf fprintf
39#define h3_debug_hexdump debug_hexdump
40#else
41#define h3_debug_printf(...) do { } while (0)
42#define h3_debug_hexdump(...) do { } while (0)
43#endif
44
45#define H3_CF_SETTINGS_SENT 0x00000001
46
47/* Default settings */
Amaury Denoyelle33949392021-08-24 15:16:58 +020048static uint64_t h3_settings_qpack_max_table_capacity = 0;
49static uint64_t h3_settings_qpack_blocked_streams = 4096;
50static uint64_t h3_settings_max_field_section_size = QUIC_VARINT_8_BYTE_MAX; /* Unlimited */
Frédéric Lécailleccac11f2021-03-03 16:09:02 +010051
52struct h3 {
53 struct qcc *qcc;
54 enum h3_err err;
55 uint32_t flags;
56 /* Locally initiated uni-streams */
57 struct h3_uqs lqpack_enc;
58 struct h3_uqs lqpack_dec;
59 struct h3_uqs lctrl;
60 /* Remotely initiated uni-streams */
61 struct h3_uqs rqpack_enc;
62 struct h3_uqs rqpack_dec;
63 struct h3_uqs rctrl;
64 /* Settings */
65 uint64_t qpack_max_table_capacity;
66 uint64_t qpack_blocked_streams;
67 uint64_t max_field_section_size;
68 struct buffer_wait buf_wait; /* wait list for buffer allocations */
69};
70
71DECLARE_STATIC_POOL(pool_head_h3, "h3", sizeof(struct h3));
72
73/* Simple function to duplicate a buffer */
74static inline struct buffer h3_b_dup(struct buffer *b)
75{
76 return b_make(b->area, b->size, b->head, b->data);
77}
78
Frédéric Lécailleccac11f2021-03-03 16:09:02 +010079/* Decode a h3 frame header made of two QUIC varints from <b> buffer.
80 * Returns the number of bytes consumed if there was enough data in <b>, 0 if not.
81 * Note that this function update <b> buffer to reflect the number of bytes consumed
82 * to decode the h3 frame header.
83 */
84static inline size_t h3_decode_frm_header(uint64_t *ftype, uint64_t *flen,
85 struct buffer *b)
86{
87 size_t hlen;
88
89 hlen = 0;
90 if (!b_quic_dec_int(ftype, b, &hlen) || !b_quic_dec_int(flen, b, &hlen))
91 return 0;
92
93 return hlen;
94}
95
Amaury Denoyelle7b0f1222022-02-14 17:13:55 +010096/* Parse from buffer <buf> a H3 HEADERS frame of length <len>. Data are copied
97 * in a local HTX buffer and transfer to the conn-stream layer. <fin> must be
98 * set if this is the last data to transfer from this stream.
99 *
100 * Returns 0 on success else non-zero.
Amaury Denoyelleb9ce14e2021-11-08 09:13:42 +0100101 */
Amaury Denoyelle7b0f1222022-02-14 17:13:55 +0100102static int h3_headers_to_htx(struct qcs *qcs, struct buffer *buf, uint64_t len,
103 char fin)
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100104{
Amaury Denoyelle7b0f1222022-02-14 17:13:55 +0100105 struct buffer htx_buf = BUF_NULL;
106 struct buffer *tmp = get_trash_chunk();
Amaury Denoyelle7059ebc2021-12-08 15:51:04 +0100107 struct htx *htx = NULL;
Amaury Denoyelleb49fa1a2021-08-24 15:30:12 +0200108 struct htx_sl *sl;
Amaury Denoyellefd7cdc32021-08-24 15:13:20 +0200109 struct http_hdr list[global.tune.max_http_hdr];
Amaury Denoyelle7b0f1222022-02-14 17:13:55 +0100110 struct conn_stream *cs;
Amaury Denoyelleb49fa1a2021-08-24 15:30:12 +0200111 unsigned int flags = HTX_SL_F_NONE;
Amaury Denoyelle7b0f1222022-02-14 17:13:55 +0100112 struct ist meth = IST_NULL, path = IST_NULL;
113 //struct ist scheme = IST_NULL, authority = IST_NULL;
114 struct ist authority = IST_NULL;
Amaury Denoyellefd7cdc32021-08-24 15:13:20 +0200115 int hdr_idx;
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100116
Amaury Denoyelle7b0f1222022-02-14 17:13:55 +0100117 if (qpack_decode_fs((const unsigned char *)b_head(buf), len, tmp, list) < 0)
118 return 1;
119
120 qc_get_buf(qcs, &htx_buf);
121 BUG_ON(!b_size(&htx_buf));
122 htx = htx_from_buf(&htx_buf);
123
124 /* first treat pseudo-header to build the start line */
125 hdr_idx = 0;
126 while (1) {
127 if (isteq(list[hdr_idx].n, ist("")))
128 break;
129
130 if (istmatch(list[hdr_idx].n, ist(":"))) {
131 /* pseudo-header */
132 if (isteq(list[hdr_idx].n, ist(":method")))
133 meth = list[hdr_idx].v;
134 else if (isteq(list[hdr_idx].n, ist(":path")))
135 path = list[hdr_idx].v;
136 //else if (isteq(list[hdr_idx].n, ist(":scheme")))
137 // scheme = list[hdr_idx].v;
138 else if (isteq(list[hdr_idx].n, ist(":authority")))
139 authority = list[hdr_idx].v;
140 }
141
142 ++hdr_idx;
143 }
144
145 flags |= HTX_SL_F_VER_11;
146
147 sl = htx_add_stline(htx, HTX_BLK_REQ_SL, flags, meth, path, ist("HTTP/3.0"));
148 if (!sl)
149 return 1;
150
151 if (fin)
152 sl->flags |= HTX_SL_F_BODYLESS;
153
154 sl->info.req.meth = find_http_meth(meth.ptr, meth.len);
155 BUG_ON(sl->info.req.meth == HTTP_METH_OTHER);
156
157 if (isttest(authority))
158 htx_add_header(htx, ist("host"), authority);
159
160 /* now treat standard headers */
161 hdr_idx = 0;
162 while (1) {
163 if (isteq(list[hdr_idx].n, ist("")))
164 break;
165
166 if (!istmatch(list[hdr_idx].n, ist(":")))
167 htx_add_header(htx, list[hdr_idx].n, list[hdr_idx].v);
168
169 ++hdr_idx;
170 }
171
172 htx_add_endof(htx, HTX_BLK_EOH);
173 htx_to_buf(htx, &htx_buf);
174
175 if (fin)
176 htx->flags |= HTX_FL_EOM;
177
178 cs = cs_new(qcs->qcc->conn, qcs->qcc->conn->target);
179 cs->flags |= CS_FL_NOT_FIRST;
180 cs->ctx = qcs;
181 stream_create_from_cs(cs, &htx_buf);
182
183 /* buffer is transferred to conn_stream and set to NULL
184 * except on stream creation error.
185 */
186 b_free(&htx_buf);
187 offer_buffers(NULL, 1);
188
189 return 0;
190}
191
Amaury Denoyelle91379f72022-02-14 17:14:59 +0100192/* Copy from buffer <buf> a H3 DATA frame of length <len> in QUIC stream <qcs>
193 * HTX buffer. <fin> must be set if this is the last data to transfer from this
194 * stream.
195 *
196 * Returns 0 on success else non-zero
197 */
198static int h3_data_to_htx(struct qcs *qcs, struct buffer *buf, uint64_t len,
199 char fin)
200{
201 struct buffer *appbuf;
202 struct htx *htx = NULL;
203 size_t htx_sent;
204 int htx_space;
205
206 appbuf = qc_get_buf(qcs, &qcs->rx.app_buf);
207 BUG_ON(!appbuf);
208 htx = htx_from_buf(appbuf);
209
210 htx_space = htx_free_data_space(htx);
211 BUG_ON(!htx_space || htx_space < len);
212
213 htx_sent = htx_add_data(htx, ist2(b_head(buf), len));
214 /* TODO handle full appbuf */
215 BUG_ON(htx_sent < len);
216
217 if (fin)
218 htx->flags |= HTX_FL_EOM;
219 htx_to_buf(htx, appbuf);
220
221 return 0;
222}
223
Amaury Denoyelle7b0f1222022-02-14 17:13:55 +0100224/* Decode <qcs> remotely initiated bidi-stream. <fin> must be set to indicate
225 * that we received the last data of the stream.
226 * Returns <0 on error else 0.
227 */
228static int h3_decode_qcs(struct qcs *qcs, int fin, void *ctx)
229{
230 struct buffer *rxbuf = &qcs->rx.buf;
231
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100232 h3_debug_printf(stderr, "%s: STREAM ID: %llu\n", __func__, qcs->by_id.key);
233 if (!b_data(rxbuf))
234 return 0;
235
236 while (b_data(rxbuf)) {
237 size_t hlen;
238 uint64_t ftype, flen;
239 struct buffer b;
Amaury Denoyelle95b93a32022-02-14 15:49:53 +0100240 char last_stream_frame = 0;
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100241
242 /* Work on a copy of <rxbuf> */
243 b = h3_b_dup(rxbuf);
244 hlen = h3_decode_frm_header(&ftype, &flen, &b);
245 if (!hlen)
246 break;
247
248 h3_debug_printf(stderr, "%s: ftype: %llu, flen: %llu\n", __func__,
249 (unsigned long long)ftype, (unsigned long long)flen);
Amaury Denoyelle0484f922022-02-15 16:59:39 +0100250 if (flen > b_data(&b) && !b_full(rxbuf))
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100251 break;
252
Amaury Denoyelle0484f922022-02-15 16:59:39 +0100253 /* TODO handle full rxbuf */
254 BUG_ON(flen > b_size(rxbuf));
255
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100256 b_del(rxbuf, hlen);
Amaury Denoyelle95b93a32022-02-14 15:49:53 +0100257 last_stream_frame = (fin && flen == b_data(rxbuf));
258
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100259 switch (ftype) {
260 case H3_FT_DATA:
Amaury Denoyelle91379f72022-02-14 17:14:59 +0100261 h3_data_to_htx(qcs, rxbuf, flen, last_stream_frame);
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100262 break;
263 case H3_FT_HEADERS:
Amaury Denoyelle7b0f1222022-02-14 17:13:55 +0100264 h3_headers_to_htx(qcs, rxbuf, flen, last_stream_frame);
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100265 break;
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100266 case H3_FT_PUSH_PROMISE:
267 /* Not supported */
268 break;
269 default:
Amaury Denoyelled1acaf92021-11-15 15:52:55 +0100270 /* draft-ietf-quic-http34 9. Extensions to HTTP/3
271 * unknown frame types MUST be ignored
272 */
273 h3_debug_printf(stderr, "ignore unknown frame type 0x%lx\n", ftype);
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100274 }
275 b_del(rxbuf, flen);
276 }
277
Amaury Denoyelleb9ce14e2021-11-08 09:13:42 +0100278 return 0;
279
280 fail:
281 return -1;
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100282}
283
284/* Parse a SETTINGS frame which must not be truncated with <flen> as length from
285 * <rxbuf> buffer. This function does not update this buffer.
286 * Returns 0 if something wrong happened, 1 if not.
287 */
288static int h3_parse_settings_frm(struct h3 *h3, const struct buffer *rxbuf, size_t flen)
289{
290 uint64_t id, value;
291 const unsigned char *buf, *end;
292
293 buf = (const unsigned char *)b_head(rxbuf);
294 end = buf + flen;
295
296 while (buf <= end) {
297 if (!quic_dec_int(&id, &buf, end) || !quic_dec_int(&value, &buf, end))
298 return 0;
299
300 h3_debug_printf(stderr, "%s id: %llu value: %llu\n",
301 __func__, (unsigned long long)id, (unsigned long long)value);
302 switch (id) {
303 case H3_SETTINGS_QPACK_MAX_TABLE_CAPACITY:
304 h3->qpack_max_table_capacity = value;
305 break;
306 case H3_SETTINGS_MAX_FIELD_SECTION_SIZE:
307 h3->max_field_section_size = value;
308 break;
309 case H3_SETTINGS_QPACK_BLOCKED_STREAMS:
310 h3->qpack_blocked_streams = value;
311 break;
312 case H3_SETTINGS_RESERVED_2 ... H3_SETTINGS_RESERVED_5:
313 h3->err = H3_SETTINGS_ERROR;
314 return 0;
315 default:
316 /* MUST be ignored */
317 break;
318 }
319 }
320
321 return 1;
322}
323
324/* Decode <qcs> remotely initiated uni-stream. We stop parsing a frame as soon as
325 * there is not enough received data.
326 * Returns 0 if something wrong happened, 1 if not.
327 */
328static int h3_control_recv(struct h3_uqs *h3_uqs, void *ctx)
329{
330 struct buffer *rxbuf = &h3_uqs->qcs->rx.buf;
331 struct h3 *h3 = ctx;
332
333 h3_debug_printf(stderr, "%s STREAM ID: %llu\n", __func__, h3_uqs->qcs->by_id.key);
334 if (!b_data(rxbuf))
335 return 1;
336
337 while (b_data(rxbuf)) {
338 size_t hlen;
339 uint64_t ftype, flen;
340 struct buffer b;
341
342 /* Work on a copy of <rxbuf> */
343 b = h3_b_dup(rxbuf);
344 hlen = h3_decode_frm_header(&ftype, &flen, &b);
345 if (!hlen)
346 break;
347
348 h3_debug_printf(stderr, "%s: ftype: %llu, flen: %llu\n", __func__,
349 (unsigned long long)ftype, (unsigned long long)flen);
350 if (flen > b_data(&b))
351 break;
352
353 b_del(rxbuf, hlen);
354 /* From here, a frame must not be truncated */
355 switch (ftype) {
356 case H3_FT_CANCEL_PUSH:
Amaury Denoyellee1f3ff02021-12-06 14:26:52 +0100357 /* XXX TODO XXX */
358 ABORT_NOW();
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100359 break;
360 case H3_FT_SETTINGS:
361 if (!h3_parse_settings_frm(h3, rxbuf, flen))
362 return 0;
363 break;
364 case H3_FT_GOAWAY:
Amaury Denoyellee1f3ff02021-12-06 14:26:52 +0100365 /* XXX TODO XXX */
366 ABORT_NOW();
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100367 break;
368 case H3_FT_MAX_PUSH_ID:
Amaury Denoyellee1f3ff02021-12-06 14:26:52 +0100369 /* XXX TODO XXX */
370 ABORT_NOW();
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100371 break;
372 default:
373 /* Error */
374 h3->err = H3_FRAME_UNEXPECTED;
375 return 0;
376 }
377 b_del(rxbuf, flen);
378 }
379
Amaury Denoyellea3f222d2021-12-06 11:24:00 +0100380 /* Handle the case where remaining data are present in the buffer. This
381 * can happen if there is an incomplete frame. In this case, subscribe
382 * on the lower layer to restart receive operation.
Amaury Denoyelledeed7772021-12-03 11:36:46 +0100383 */
Amaury Denoyellea3f222d2021-12-06 11:24:00 +0100384 if (b_data(rxbuf))
385 qcs_subscribe(h3_uqs->qcs, SUB_RETRY_RECV, &h3_uqs->wait_event);
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100386
387 return 1;
388}
389
Amaury Denoyellea5871362021-10-07 16:26:12 +0200390/* Returns buffer for data sending.
391 * May be NULL if the allocation failed.
392 */
393static struct buffer *mux_get_buf(struct qcs *qcs)
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100394{
Amaury Denoyellea5871362021-10-07 16:26:12 +0200395 if (!b_size(&qcs->tx.buf))
396 b_alloc(&qcs->tx.buf);
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100397
Amaury Denoyellea5871362021-10-07 16:26:12 +0200398 return &qcs->tx.buf;
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100399}
400
401/* Function used to emit stream data from <h3_uqs> control uni-stream */
402static int h3_control_send(struct h3_uqs *h3_uqs, void *ctx)
403{
404 int ret;
405 struct h3 *h3 = ctx;
406 unsigned char data[(2 + 3) * 2 * QUIC_VARINT_MAX_SIZE]; /* enough for 3 settings */
Amaury Denoyellea5871362021-10-07 16:26:12 +0200407 struct buffer pos, *res;
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100408
409 ret = 0;
Amaury Denoyellea5871362021-10-07 16:26:12 +0200410 pos = b_make((char *)data, sizeof(data), 0, 0);
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100411 if (!(h3->flags & H3_CF_SETTINGS_SENT)) {
412 struct qcs *qcs = h3_uqs->qcs;
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100413 size_t frm_len;
414
415 frm_len = quic_int_getsize(H3_SETTINGS_QPACK_MAX_TABLE_CAPACITY) +
416 quic_int_getsize(h3_settings_qpack_max_table_capacity) +
417 quic_int_getsize(H3_SETTINGS_QPACK_BLOCKED_STREAMS) +
418 quic_int_getsize(h3_settings_qpack_blocked_streams);
419 if (h3_settings_max_field_section_size) {
420 frm_len += quic_int_getsize(H3_SETTINGS_MAX_FIELD_SECTION_SIZE) +
421 quic_int_getsize(h3_settings_max_field_section_size);
422 }
423
Amaury Denoyellea5871362021-10-07 16:26:12 +0200424 b_quic_enc_int(&pos, H3_UNI_STRM_TP_CONTROL_STREAM);
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100425 /* Build a SETTINGS frame */
Amaury Denoyellea5871362021-10-07 16:26:12 +0200426 b_quic_enc_int(&pos, H3_FT_SETTINGS);
427 b_quic_enc_int(&pos, frm_len);
428 b_quic_enc_int(&pos, H3_SETTINGS_QPACK_MAX_TABLE_CAPACITY);
429 b_quic_enc_int(&pos, h3_settings_qpack_max_table_capacity);
430 b_quic_enc_int(&pos, H3_SETTINGS_QPACK_BLOCKED_STREAMS);
431 b_quic_enc_int(&pos, h3_settings_qpack_blocked_streams);
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100432 if (h3_settings_max_field_section_size) {
Amaury Denoyellea5871362021-10-07 16:26:12 +0200433 b_quic_enc_int(&pos, H3_SETTINGS_MAX_FIELD_SECTION_SIZE);
434 b_quic_enc_int(&pos, h3_settings_max_field_section_size);
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100435 }
Amaury Denoyellea5871362021-10-07 16:26:12 +0200436
437 res = mux_get_buf(qcs);
438 if (b_room(res) < b_data(&pos)) {
439 // TODO the mux should be put in blocked state, with
440 // the stream in state waiting for settings to be sent
441 ABORT_NOW();
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100442 }
443
Amaury Denoyellea5871362021-10-07 16:26:12 +0200444 ret = b_force_xfer(res, &pos, b_data(&pos));
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100445 if (ret > 0) {
446 h3->flags |= H3_CF_SETTINGS_SENT;
Amaury Denoyellea5871362021-10-07 16:26:12 +0200447 if (!(qcs->qcc->wait_event.events & SUB_RETRY_SEND))
448 tasklet_wakeup(qcs->qcc->wait_event.tasklet);
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100449 }
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100450 }
451
452 return ret;
453}
454
Amaury Denoyelle15b09612021-08-24 16:20:27 +0200455static int h3_resp_headers_send(struct qcs *qcs, struct htx *htx)
456{
457 struct buffer outbuf;
458 struct buffer headers_buf = BUF_NULL;
459 struct buffer *res;
460 struct http_hdr list[global.tune.max_http_hdr];
461 struct htx_sl *sl;
462 struct htx_blk *blk;
463 enum htx_blk_type type;
464 int frame_length_size; /* size in bytes of frame length varint field */
465 int ret = 0;
466 int hdr;
467 int status = 0;
468
469 sl = NULL;
470 hdr = 0;
471 for (blk = htx_get_head_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
472 type = htx_get_blk_type(blk);
473
474 if (type == HTX_BLK_UNUSED)
475 continue;
476
477 if (type == HTX_BLK_EOH)
478 break;
479
480 if (type == HTX_BLK_RES_SL) {
481 /* start-line -> HEADERS h3 frame */
482 BUG_ON(sl);
483 sl = htx_get_blk_ptr(htx, blk);
484 /* TODO should be on h3 layer */
485 status = sl->info.res.status;
486 }
487 else if (type == HTX_BLK_HDR) {
488 list[hdr].n = htx_get_blk_name(htx, blk);
489 list[hdr].v = htx_get_blk_value(htx, blk);
490 hdr++;
491 }
492 else {
493 ABORT_NOW();
494 goto err;
495 }
496 }
497
498 BUG_ON(!sl);
499
500 list[hdr].n = ist("");
501
Amaury Denoyelled3d97c62021-10-05 11:45:58 +0200502 res = mux_get_buf(qcs);
Amaury Denoyelle15b09612021-08-24 16:20:27 +0200503
504 /* At least 5 bytes to store frame type + length as a varint max size */
505 if (b_room(res) < 5)
506 ABORT_NOW();
507
508 b_reset(&outbuf);
509 outbuf = b_make(b_tail(res), b_contig_space(res), 0, 0);
510 /* Start the headers after frame type + length */
511 headers_buf = b_make(b_head(res) + 5, b_size(res) - 5, 0, 0);
512
513 if (qpack_encode_field_section_line(&headers_buf))
514 ABORT_NOW();
515 if (qpack_encode_int_status(&headers_buf, status))
516 ABORT_NOW();
517
518 for (hdr = 0; hdr < sizeof(list) / sizeof(list[0]); ++hdr) {
519 if (isteq(list[hdr].n, ist("")))
520 break;
521
Amaury Denoyelleffafb3d2022-02-15 16:10:42 +0100522 /* draft-ietf-quic-http34 4.1. HTTP Message Exchanges
523 * Transfer codings (see Section 6.1 of [HTTP11]) are not
524 * defined for HTTP/3; the Transfer-Encoding header field MUST
525 * NOT be used.
526 */
527 if (isteq(list[hdr].n, ist("transfer-encoding")))
528 continue;
529
Amaury Denoyelle15b09612021-08-24 16:20:27 +0200530 if (qpack_encode_header(&headers_buf, list[hdr].n, list[hdr].v))
531 ABORT_NOW();
532 }
533
534 /* Now that all headers are encoded, we are certain that res buffer is
535 * big enough
536 */
537 frame_length_size = quic_int_getsize(b_data(&headers_buf));
538 res->head += 4 - frame_length_size;
539 b_putchr(res, 0x01); /* h3 HEADERS frame type */
540 if (!b_quic_enc_int(res, b_data(&headers_buf)))
541 ABORT_NOW();
542 b_add(res, b_data(&headers_buf));
543
544 ret = 0;
545 blk = htx_get_head_blk(htx);
546 while (blk) {
547 type = htx_get_blk_type(blk);
548 ret += htx_get_blksz(blk);
549 blk = htx_remove_blk(htx, blk);
550 if (type == HTX_BLK_EOH)
551 break;
552 }
553
554 return ret;
555
556 err:
557 return 0;
558}
559
Amaury Denoyelle8e2a9982021-08-24 16:24:37 +0200560/* Returns the total of bytes sent. */
561static int h3_resp_data_send(struct qcs *qcs, struct buffer *buf, size_t count)
562{
563 struct buffer outbuf;
564 struct buffer *res;
565 size_t total = 0;
566 struct htx *htx;
Amaury Denoyellea543eb12021-10-06 14:53:13 +0200567 int bsize, fsize, hsize;
Amaury Denoyelle8e2a9982021-08-24 16:24:37 +0200568 struct htx_blk *blk;
569 enum htx_blk_type type;
570
571 htx = htx_from_buf(buf);
572
573 new_frame:
574 if (!count || htx_is_empty(htx))
575 goto end;
576
577 blk = htx_get_head_blk(htx);
578 type = htx_get_blk_type(blk);
579 fsize = bsize = htx_get_blksz(blk);
580
581 if (type != HTX_BLK_DATA)
582 goto end;
583
Amaury Denoyelled3d97c62021-10-05 11:45:58 +0200584 res = mux_get_buf(qcs);
Amaury Denoyelle8e2a9982021-08-24 16:24:37 +0200585
586 if (fsize > count)
587 fsize = count;
588
Amaury Denoyellea543eb12021-10-06 14:53:13 +0200589 /* h3 DATA headers : 1-byte frame type + varint frame length */
590 hsize = 1 + QUIC_VARINT_MAX_SIZE;
Amaury Denoyelle8e2a9982021-08-24 16:24:37 +0200591
Amaury Denoyellea543eb12021-10-06 14:53:13 +0200592 while (1) {
593 b_reset(&outbuf);
594 outbuf = b_make(b_tail(res), b_contig_space(res), 0, 0);
595 if (b_size(&outbuf) > hsize || !b_space_wraps(res))
596 break;
597 b_slow_realign(res, trash.area, b_data(res));
598 }
Amaury Denoyelle8e2a9982021-08-24 16:24:37 +0200599
Amaury Denoyelle84ea8dc2021-12-03 14:40:01 +0100600 /* Not enough room for headers and at least one data byte, block the
601 * stream. It is expected that the conn-stream layer will subscribe on
602 * SEND.
Amaury Denoyellea543eb12021-10-06 14:53:13 +0200603 */
Amaury Denoyelle84ea8dc2021-12-03 14:40:01 +0100604 if (b_size(&outbuf) <= hsize) {
605 qcs->flags |= QC_SF_BLK_MROOM;
606 goto end;
607 }
Amaury Denoyelle8e2a9982021-08-24 16:24:37 +0200608
Amaury Denoyellea543eb12021-10-06 14:53:13 +0200609 if (b_size(&outbuf) < hsize + fsize)
610 fsize = b_size(&outbuf) - hsize;
611 BUG_ON(fsize <= 0);
Amaury Denoyelle8e2a9982021-08-24 16:24:37 +0200612
Amaury Denoyellea543eb12021-10-06 14:53:13 +0200613 b_putchr(&outbuf, 0x00); /* h3 frame type = DATA */
614 b_quic_enc_int(&outbuf, fsize); /* h3 frame length */
615
Amaury Denoyelle8e2a9982021-08-24 16:24:37 +0200616 b_putblk(&outbuf, htx_get_blk_ptr(htx, blk), fsize);
Amaury Denoyellea543eb12021-10-06 14:53:13 +0200617 total += fsize;
Amaury Denoyelle8e2a9982021-08-24 16:24:37 +0200618 count -= fsize;
619
620 if (fsize == bsize)
621 htx_remove_blk(htx, blk);
622 else
623 htx_cut_data_blk(htx, blk, fsize);
624
Amaury Denoyellea543eb12021-10-06 14:53:13 +0200625 /* commit the buffer */
Amaury Denoyelle8e2a9982021-08-24 16:24:37 +0200626 b_add(res, b_data(&outbuf));
627 goto new_frame;
628
629 end:
630 return total;
631}
632
Amaury Denoyelle26dfd902021-08-24 16:33:53 +0200633size_t h3_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
634{
635 size_t total = 0;
636 struct qcs *qcs = cs->ctx;
637 struct htx *htx;
638 enum htx_blk_type btype;
639 struct htx_blk *blk;
640 uint32_t bsize;
641 int32_t idx;
642 int ret;
643
Amaury Denoyelledeed7772021-12-03 11:36:46 +0100644 fprintf(stderr, "%s\n", __func__);
645
Amaury Denoyelle26dfd902021-08-24 16:33:53 +0200646 htx = htx_from_buf(buf);
647
Amaury Denoyelle84ea8dc2021-12-03 14:40:01 +0100648 while (count && !htx_is_empty(htx) && !(qcs->flags & QC_SF_BLK_MROOM)) {
Amaury Denoyelle26dfd902021-08-24 16:33:53 +0200649 idx = htx_get_head(htx);
650 blk = htx_get_blk(htx, idx);
651 btype = htx_get_blk_type(blk);
652 bsize = htx_get_blksz(blk);
653
654 /* Not implemented : QUIC on backend side */
655 BUG_ON(btype == HTX_BLK_REQ_SL);
656
657 switch (btype) {
658 case HTX_BLK_RES_SL:
Amaury Denoyelle15b09612021-08-24 16:20:27 +0200659 /* start-line -> HEADERS h3 frame */
660 ret = h3_resp_headers_send(qcs, htx);
661 if (ret > 0) {
662 total += ret;
663 count -= ret;
664 if (ret < bsize)
665 goto out;
666 }
667 break;
Amaury Denoyelle26dfd902021-08-24 16:33:53 +0200668
669 case HTX_BLK_DATA:
Amaury Denoyelle8e2a9982021-08-24 16:24:37 +0200670 ret = h3_resp_data_send(qcs, buf, count);
671 if (ret > 0) {
672 htx = htx_from_buf(buf);
673 total += ret;
674 count -= ret;
675 if (ret < bsize)
676 goto out;
677 }
678 break;
Amaury Denoyelle26dfd902021-08-24 16:33:53 +0200679
680 case HTX_BLK_TLR:
681 case HTX_BLK_EOT:
682 /* TODO trailers */
683
684 default:
685 htx_remove_blk(htx, blk);
686 total += bsize;
687 count -= bsize;
688 break;
689 }
690 }
691
Amaury Denoyellec2025c12021-12-03 15:03:36 +0100692 if ((htx->flags & HTX_FL_EOM) && htx_is_empty(htx))
693 qcs->flags |= QC_SF_FIN_STREAM;
694
Amaury Denoyelle26dfd902021-08-24 16:33:53 +0200695 out:
Amaury Denoyellea543eb12021-10-06 14:53:13 +0200696 if (total) {
697 if (!(qcs->qcc->wait_event.events & SUB_RETRY_SEND))
698 tasklet_wakeup(qcs->qcc->wait_event.tasklet);
699 }
700
Amaury Denoyelle26dfd902021-08-24 16:33:53 +0200701 return total;
Amaury Denoyellef52151d2021-08-24 16:11:18 +0200702}
703
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100704/* Finalize the initialization of remotely initiated uni-stream <qcs>.
705 * Return 1 if succeeded, 0 if not. In this latter case, set the ->err h3 error
706 * to inform the QUIC mux layer of the encountered error.
707 */
708static int h3_attach_ruqs(struct qcs *qcs, void *ctx)
709{
710 uint64_t strm_type;
711 struct h3 *h3 = ctx;
712 struct buffer *rxbuf = &qcs->rx.buf;
713
714 /* First octets: the uni-stream type */
715 if (!b_quic_dec_int(&strm_type, rxbuf, NULL) || strm_type > H3_UNI_STRM_TP_MAX)
716 return 0;
717
718 /* Note that for all the uni-streams below, this is an error to receive two times the
719 * same type of uni-stream (even for Push stream which is not supported at this time.
720 */
721 switch (strm_type) {
722 case H3_UNI_STRM_TP_CONTROL_STREAM:
723 if (h3->rctrl.qcs) {
724 h3->err = H3_STREAM_CREATION_ERROR;
725 return 0;
726 }
727
728 h3->rctrl.qcs = qcs;
729 h3->rctrl.cb = h3_control_recv;
Amaury Denoyellea3f222d2021-12-06 11:24:00 +0100730 qcs_subscribe(qcs, SUB_RETRY_RECV, &h3->rctrl.wait_event);
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100731 break;
732 case H3_UNI_STRM_TP_PUSH_STREAM:
733 /* NOT SUPPORTED */
734 break;
735 case H3_UNI_STRM_TP_QPACK_ENCODER:
736 if (h3->rqpack_enc.qcs) {
737 h3->err = H3_STREAM_CREATION_ERROR;
738 return 0;
739 }
740
741 h3->rqpack_enc.qcs = qcs;
742 h3->rqpack_enc.cb = qpack_decode_enc;
Amaury Denoyellea3f222d2021-12-06 11:24:00 +0100743 qcs_subscribe(qcs, SUB_RETRY_RECV, &h3->rqpack_enc.wait_event);
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100744 break;
745 case H3_UNI_STRM_TP_QPACK_DECODER:
746 if (h3->rqpack_dec.qcs) {
747 h3->err = H3_STREAM_CREATION_ERROR;
748 return 0;
749 }
750
751 h3->rqpack_dec.qcs = qcs;
752 h3->rqpack_dec.cb = qpack_decode_dec;
Amaury Denoyellea3f222d2021-12-06 11:24:00 +0100753 qcs_subscribe(qcs, SUB_RETRY_RECV, &h3->rqpack_dec.wait_event);
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100754 break;
755 default:
756 /* Error */
757 h3->err = H3_STREAM_CREATION_ERROR;
758 return 0;
759 }
760
761 return 1;
762}
763
764static int h3_finalize(void *ctx)
765{
766 struct h3 *h3 = ctx;
767
Amaury Denoyelleb7880542022-02-09 10:28:53 +0100768 h3->lctrl.qcs = qcs_new(h3->qcc, 0x3, QCS_SRV_UNI);
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100769 if (!h3->lctrl.qcs)
770 return 0;
771
772 /* Wakeup ->lctrl uni-stream */
Frédéric Lécaillee16f0bd2021-08-23 09:50:29 +0200773 h3_control_send(&h3->lctrl, h3);
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100774
775 return 1;
776}
777
778/* Tasklet dedicated to h3 incoming uni-streams */
779static struct task *h3_uqs_task(struct task *t, void *ctx, unsigned int state)
780{
781 struct h3_uqs *h3_uqs = ctx;
782 struct h3 *h3 = h3_uqs->qcs->qcc->ctx;
783
784 h3_uqs->cb(h3_uqs, h3);
785 return NULL;
786}
787
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100788/* Release all the tasklet attached to <h3_uqs> uni-stream */
789static inline void h3_uqs_tasklet_release(struct h3_uqs *h3_uqs)
790{
791 struct tasklet *t = h3_uqs->wait_event.tasklet;
792
793 if (t)
794 tasklet_free(t);
795}
796
797/* Release all the tasklet attached to <h3> uni-streams */
798static void h3_uqs_tasklets_release(struct h3 *h3)
799{
800 h3_uqs_tasklet_release(&h3->rqpack_enc);
801 h3_uqs_tasklet_release(&h3->rqpack_dec);
802 h3_uqs_tasklet_release(&h3->rctrl);
803}
804
805/* Tasklet dedicated to h3 outgoing uni-streams */
806__maybe_unused
807static struct task *h3_uqs_send_task(struct task *t, void *ctx, unsigned int state)
808{
809 struct h3_uqs *h3_uqs = ctx;
810 struct h3 *h3 = h3_uqs->qcs->qcc->ctx;
811
812 h3_uqs->cb(h3_uqs, h3);
813 return NULL;
814}
815
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +0500816/* Initialize <h3_uqs> uni-stream with <t> as tasklet */
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100817static int h3_uqs_init(struct h3_uqs *h3_uqs, struct h3 *h3,
818 int (*cb)(struct h3_uqs *h3_uqs, void *ctx),
819 struct task *(*t)(struct task *, void *, unsigned int))
820{
821 h3_uqs->qcs = NULL;
822 h3_uqs->cb = cb;
823 h3_uqs->wait_event.tasklet = tasklet_new();
824 if (!h3_uqs->wait_event.tasklet)
825 return 0;
826
827 h3_uqs->wait_event.tasklet->process = t;
828 h3_uqs->wait_event.tasklet->context = h3_uqs;
829 return 1;
830
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100831 tasklet_free(h3_uqs->wait_event.tasklet);
832 return 0;
833}
834
835static inline void h3_uqs_release(struct h3_uqs *h3_uqs)
836{
837 if (h3_uqs->qcs)
Amaury Denoyelledeed7772021-12-03 11:36:46 +0100838 uni_qcs_free(h3_uqs->qcs);
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100839}
840
841static inline void h3_uqs_release_all(struct h3 *h3)
842{
843 h3_uqs_tasklet_release(&h3->lctrl);
844 h3_uqs_release(&h3->lctrl);
845 h3_uqs_tasklet_release(&h3->lqpack_enc);
846 h3_uqs_release(&h3->lqpack_enc);
847 h3_uqs_tasklet_release(&h3->lqpack_dec);
848 h3_uqs_release(&h3->lqpack_dec);
849}
850
851/* Initialize the HTTP/3 context for <qcc> mux.
852 * Return 1 if succeeded, 0 if not.
853 */
854static int h3_init(struct qcc *qcc)
855{
856 struct h3 *h3;
857
858 h3 = pool_alloc(pool_head_h3);
859 if (!h3)
860 goto fail_no_h3;
861
862 h3->qcc = qcc;
863 h3->err = H3_NO_ERROR;
864 h3->flags = 0;
865
866 if (!h3_uqs_init(&h3->rqpack_enc, h3, NULL, h3_uqs_task) ||
867 !h3_uqs_init(&h3->rqpack_dec, h3, NULL, h3_uqs_task) ||
868 !h3_uqs_init(&h3->rctrl, h3, h3_control_recv, h3_uqs_task))
869 goto fail_no_h3_ruqs;
870
871 if (!h3_uqs_init(&h3->lctrl, h3, h3_control_send, h3_uqs_task) ||
872 !h3_uqs_init(&h3->lqpack_enc, h3, NULL, h3_uqs_task) ||
873 !h3_uqs_init(&h3->lqpack_dec, h3, NULL, h3_uqs_task))
874 goto fail_no_h3_luqs;
875
876 qcc->ctx = h3;
877 LIST_INIT(&h3->buf_wait.list);
878
879 return 1;
880
881 fail_no_h3_ruqs:
882 h3_uqs_release_all(h3);
883 fail_no_h3_luqs:
884 h3_uqs_tasklets_release(h3);
885 pool_free(pool_head_h3, h3);
886 fail_no_h3:
887 return 0;
888}
889
890/* HTTP/3 application layer operations */
891const struct qcc_app_ops h3_ops = {
892 .init = h3_init,
893 .attach_ruqs = h3_attach_ruqs,
894 .decode_qcs = h3_decode_qcs,
Amaury Denoyelleabbe91e2021-11-12 16:09:29 +0100895 .snd_buf = h3_snd_buf,
Frédéric Lécailleccac11f2021-03-03 16:09:02 +0100896 .finalize = h3_finalize,
897};