blob: eec3b5cd00652659c080ffd6a758ac6b0ce8bf89 [file] [log] [blame]
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001/*
2 * QUIC transport layer over SOCK_DGRAM sockets.
3 *
4 * Copyright 2020 HAProxy Technologies, Frédéric Lécaille <flecaille@haproxy.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#define _GNU_SOURCE
14#include <errno.h>
15#include <fcntl.h>
16#include <stdio.h>
17#include <stdlib.h>
18
19#include <sys/socket.h>
20#include <sys/stat.h>
21#include <sys/types.h>
22
23#include <netinet/tcp.h>
24
25#include <haproxy/buf-t.h>
26#include <haproxy/compat.h>
27#include <haproxy/api.h>
28#include <haproxy/debug.h>
29#include <haproxy/tools.h>
30#include <haproxy/ticks.h>
31#include <haproxy/time.h>
32
33#include <haproxy/connection.h>
34#include <haproxy/fd.h>
35#include <haproxy/freq_ctr.h>
36#include <haproxy/global.h>
Frédéric Lécailledfbae762021-02-18 09:59:01 +010037#include <haproxy/h3.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010038#include <haproxy/log.h>
Frédéric Lécailledfbae762021-02-18 09:59:01 +010039#include <haproxy/mux_quic.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010040#include <haproxy/pipe.h>
41#include <haproxy/proxy.h>
42#include <haproxy/quic_cc.h>
43#include <haproxy/quic_frame.h>
44#include <haproxy/quic_loss.h>
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +020045#include <haproxy/cbuf.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010046#include <haproxy/quic_tls.h>
47#include <haproxy/ssl_sock.h>
48#include <haproxy/stream_interface.h>
49#include <haproxy/task.h>
50#include <haproxy/trace.h>
51#include <haproxy/xprt_quic.h>
52
53struct quic_transport_params quic_dflt_transport_params = {
Frédéric Lécaille785c9c92021-05-17 16:42:21 +020054 .max_udp_payload_size = QUIC_DFLT_MAX_UDP_PAYLOAD_SIZE,
55 .ack_delay_exponent = QUIC_DFLT_ACK_DELAY_COMPONENT,
56 .max_ack_delay = QUIC_DFLT_MAX_ACK_DELAY,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010057};
58
59/* trace source and events */
60static void quic_trace(enum trace_level level, uint64_t mask, \
61 const struct trace_source *src,
62 const struct ist where, const struct ist func,
63 const void *a1, const void *a2, const void *a3, const void *a4);
64
65static const struct trace_event quic_trace_events[] = {
66 { .mask = QUIC_EV_CONN_NEW, .name = "new_conn", .desc = "new QUIC connection" },
67 { .mask = QUIC_EV_CONN_INIT, .name = "new_conn_init", .desc = "new QUIC connection initialization" },
68 { .mask = QUIC_EV_CONN_ISEC, .name = "init_secs", .desc = "initial secrets derivation" },
69 { .mask = QUIC_EV_CONN_RSEC, .name = "read_secs", .desc = "read secrets derivation" },
70 { .mask = QUIC_EV_CONN_WSEC, .name = "write_secs", .desc = "write secrets derivation" },
71 { .mask = QUIC_EV_CONN_LPKT, .name = "lstnr_packet", .desc = "new listener received packet" },
72 { .mask = QUIC_EV_CONN_SPKT, .name = "srv_packet", .desc = "new server received packet" },
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +050073 { .mask = QUIC_EV_CONN_ENCPKT, .name = "enc_hdshk_pkt", .desc = "handhshake packet encryption" },
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010074 { .mask = QUIC_EV_CONN_HPKT, .name = "hdshk_pkt", .desc = "handhshake packet building" },
75 { .mask = QUIC_EV_CONN_PAPKT, .name = "phdshk_apkt", .desc = "post handhshake application packet preparation" },
76 { .mask = QUIC_EV_CONN_PAPKTS, .name = "phdshk_apkts", .desc = "post handhshake application packets preparation" },
77 { .mask = QUIC_EV_CONN_HDSHK, .name = "hdshk", .desc = "SSL handhshake processing" },
78 { .mask = QUIC_EV_CONN_RMHP, .name = "rm_hp", .desc = "Remove header protection" },
79 { .mask = QUIC_EV_CONN_PRSHPKT, .name = "parse_hpkt", .desc = "parse handshake packet" },
80 { .mask = QUIC_EV_CONN_PRSAPKT, .name = "parse_apkt", .desc = "parse application packet" },
81 { .mask = QUIC_EV_CONN_PRSFRM, .name = "parse_frm", .desc = "parse frame" },
82 { .mask = QUIC_EV_CONN_PRSAFRM, .name = "parse_ack_frm", .desc = "parse ACK frame" },
83 { .mask = QUIC_EV_CONN_BFRM, .name = "build_frm", .desc = "build frame" },
84 { .mask = QUIC_EV_CONN_PHPKTS, .name = "phdshk_pkts", .desc = "handhshake packets preparation" },
85 { .mask = QUIC_EV_CONN_TRMHP, .name = "rm_hp_try", .desc = "header protection removing try" },
86 { .mask = QUIC_EV_CONN_ELRMHP, .name = "el_rm_hp", .desc = "handshake enc. level header protection removing" },
87 { .mask = QUIC_EV_CONN_ELRXPKTS, .name = "el_treat_rx_pkts", .desc = "handshake enc. level rx packets treatment" },
88 { .mask = QUIC_EV_CONN_SSLDATA, .name = "ssl_provide_data", .desc = "CRYPTO data provision to TLS stack" },
89 { .mask = QUIC_EV_CONN_RXCDATA, .name = "el_treat_rx_cfrms",.desc = "enc. level RX CRYPTO frames processing"},
90 { .mask = QUIC_EV_CONN_ADDDATA, .name = "add_hdshk_data", .desc = "TLS stack ->add_handshake_data() call"},
91 { .mask = QUIC_EV_CONN_FFLIGHT, .name = "flush_flight", .desc = "TLS stack ->flush_flight() call"},
92 { .mask = QUIC_EV_CONN_SSLALERT, .name = "send_alert", .desc = "TLS stack ->send_alert() call"},
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010093 { .mask = QUIC_EV_CONN_RTTUPDT, .name = "rtt_updt", .desc = "RTT sampling" },
94 { .mask = QUIC_EV_CONN_SPPKTS, .name = "sppkts", .desc = "send prepared packets" },
95 { .mask = QUIC_EV_CONN_PKTLOSS, .name = "pktloss", .desc = "detect packet loss" },
96 { .mask = QUIC_EV_CONN_STIMER, .name = "stimer", .desc = "set timer" },
97 { .mask = QUIC_EV_CONN_PTIMER, .name = "ptimer", .desc = "process timer" },
98 { .mask = QUIC_EV_CONN_SPTO, .name = "spto", .desc = "set PTO" },
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +010099 { .mask = QUIC_EV_CONN_BCFRMS, .name = "bcfrms", .desc = "build CRYPTO data frames" },
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100100 { /* end */ }
101};
102
103static const struct name_desc quic_trace_lockon_args[4] = {
104 /* arg1 */ { /* already used by the connection */ },
105 /* arg2 */ { .name="quic", .desc="QUIC transport" },
106 /* arg3 */ { },
107 /* arg4 */ { }
108};
109
110static const struct name_desc quic_trace_decoding[] = {
111#define QUIC_VERB_CLEAN 1
112 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
113 { /* end */ }
114};
115
116
117struct trace_source trace_quic = {
118 .name = IST("quic"),
119 .desc = "QUIC xprt",
120 .arg_def = TRC_ARG1_CONN, /* TRACE()'s first argument is always a connection */
121 .default_cb = quic_trace,
122 .known_events = quic_trace_events,
123 .lockon_args = quic_trace_lockon_args,
124 .decoding = quic_trace_decoding,
125 .report_events = ~0, /* report everything by default */
126};
127
128#define TRACE_SOURCE &trace_quic
129INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
130
131static BIO_METHOD *ha_quic_meth;
132
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100133DECLARE_STATIC_POOL(pool_head_quic_conn_ctx,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +0200134 "quic_conn_ctx_pool", sizeof(struct ssl_sock_ctx));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100135
136DECLARE_STATIC_POOL(pool_head_quic_conn, "quic_conn", sizeof(struct quic_conn));
137
138DECLARE_POOL(pool_head_quic_connection_id,
139 "quic_connnection_id_pool", sizeof(struct quic_connection_id));
140
141DECLARE_POOL(pool_head_quic_rx_packet, "quic_rx_packet_pool", sizeof(struct quic_rx_packet));
142
143DECLARE_POOL(pool_head_quic_tx_packet, "quic_tx_packet_pool", sizeof(struct quic_tx_packet));
144
145DECLARE_STATIC_POOL(pool_head_quic_rx_crypto_frm, "quic_rx_crypto_frm_pool", sizeof(struct quic_rx_crypto_frm));
146
Frédéric Lécailledfbae762021-02-18 09:59:01 +0100147DECLARE_POOL(pool_head_quic_rx_strm_frm, "quic_rx_strm_frm", sizeof(struct quic_rx_strm_frm));
148
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100149DECLARE_POOL(pool_head_quic_tx_frm, "quic_tx_frm_pool", sizeof(struct quic_tx_frm));
150
151DECLARE_STATIC_POOL(pool_head_quic_crypto_buf, "quic_crypto_buf_pool", sizeof(struct quic_crypto_buf));
152
153DECLARE_STATIC_POOL(pool_head_quic_frame, "quic_frame_pool", sizeof(struct quic_frame));
154
Frédéric Lécaille8090b512020-11-30 16:19:22 +0100155DECLARE_STATIC_POOL(pool_head_quic_arng, "quic_arng_pool", sizeof(struct quic_arng_node));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100156
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +0200157static struct quic_tx_packet *qc_build_hdshk_pkt(unsigned char **pos, const unsigned char *buf_end,
158 struct quic_conn *qc, int pkt_type,
159 struct quic_enc_level *qel, int *err);
160int qc_prep_phdshk_pkts(struct qring *qr, struct quic_conn *qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100161
162/* Add traces to <buf> depending on <frm> TX frame type. */
163static inline void chunk_tx_frm_appendf(struct buffer *buf,
164 const struct quic_tx_frm *frm)
165{
166 switch (frm->type) {
167 case QUIC_FT_CRYPTO:
168 chunk_appendf(buf, " cfoff=%llu cflen=%llu",
169 (unsigned long long)frm->crypto.offset,
170 (unsigned long long)frm->crypto.len);
171 break;
172 default:
173 chunk_appendf(buf, " %s", quic_frame_type_string(frm->type));
174 }
175}
176
Frédéric Lécaillef63921f2020-12-18 09:48:20 +0100177/* Only for debug purpose */
178struct enc_debug_info {
179 unsigned char *payload;
180 size_t payload_len;
181 unsigned char *aad;
182 size_t aad_len;
183 uint64_t pn;
184};
185
186/* Initializes a enc_debug_info struct (only for debug purpose) */
187static inline void enc_debug_info_init(struct enc_debug_info *edi,
188 unsigned char *payload, size_t payload_len,
189 unsigned char *aad, size_t aad_len, uint64_t pn)
190{
191 edi->payload = payload;
192 edi->payload_len = payload_len;
193 edi->aad = aad;
194 edi->aad_len = aad_len;
195 edi->pn = pn;
196}
197
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100198/* Trace callback for QUIC.
199 * These traces always expect that arg1, if non-null, is of type connection.
200 */
201static void quic_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
202 const struct ist where, const struct ist func,
203 const void *a1, const void *a2, const void *a3, const void *a4)
204{
205 const struct connection *conn = a1;
206
207 if (conn) {
208 struct quic_tls_secrets *secs;
209 struct quic_conn *qc;
210
211 qc = conn->qc;
212 chunk_appendf(&trace_buf, " : conn@%p", conn);
213 if ((mask & QUIC_EV_CONN_INIT) && qc) {
214 chunk_appendf(&trace_buf, "\n odcid");
215 quic_cid_dump(&trace_buf, &qc->odcid);
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100216 chunk_appendf(&trace_buf, "\n dcid");
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100217 quic_cid_dump(&trace_buf, &qc->dcid);
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100218 chunk_appendf(&trace_buf, "\n scid");
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100219 quic_cid_dump(&trace_buf, &qc->scid);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100220 }
221
222 if (mask & QUIC_EV_CONN_ADDDATA) {
223 const enum ssl_encryption_level_t *level = a2;
224 const size_t *len = a3;
225
226 if (level) {
227 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
228
229 chunk_appendf(&trace_buf, " el=%c(%d)", quic_enc_level_char(lvl), lvl);
230 }
231 if (len)
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100232 chunk_appendf(&trace_buf, " len=%llu", (unsigned long long)*len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100233 }
234 if ((mask & QUIC_EV_CONN_ISEC) && qc) {
235 /* Initial read & write secrets. */
236 enum quic_tls_enc_level level = QUIC_TLS_ENC_LEVEL_INITIAL;
237 const unsigned char *rx_sec = a2;
238 const unsigned char *tx_sec = a3;
239
240 secs = &qc->els[level].tls_ctx.rx;
241 if (secs->flags & QUIC_FL_TLS_SECRETS_SET) {
242 chunk_appendf(&trace_buf, "\n RX el=%c", quic_enc_level_char(level));
243 if (rx_sec)
244 quic_tls_secret_hexdump(&trace_buf, rx_sec, 32);
245 quic_tls_keys_hexdump(&trace_buf, secs);
246 }
247 secs = &qc->els[level].tls_ctx.tx;
248 if (secs->flags & QUIC_FL_TLS_SECRETS_SET) {
249 chunk_appendf(&trace_buf, "\n TX el=%c", quic_enc_level_char(level));
250 if (tx_sec)
251 quic_tls_secret_hexdump(&trace_buf, tx_sec, 32);
252 quic_tls_keys_hexdump(&trace_buf, secs);
253 }
254 }
255 if (mask & (QUIC_EV_CONN_RSEC|QUIC_EV_CONN_RWSEC)) {
256 const enum ssl_encryption_level_t *level = a2;
257 const unsigned char *secret = a3;
258 const size_t *secret_len = a4;
259
260 if (level) {
261 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
262
263 chunk_appendf(&trace_buf, "\n RX el=%c", quic_enc_level_char(lvl));
264 if (secret && secret_len)
265 quic_tls_secret_hexdump(&trace_buf, secret, *secret_len);
266 secs = &qc->els[lvl].tls_ctx.rx;
267 if (secs->flags & QUIC_FL_TLS_SECRETS_SET)
268 quic_tls_keys_hexdump(&trace_buf, secs);
269 }
270 }
271
272 if (mask & (QUIC_EV_CONN_WSEC|QUIC_EV_CONN_RWSEC)) {
273 const enum ssl_encryption_level_t *level = a2;
274 const unsigned char *secret = a3;
275 const size_t *secret_len = a4;
276
277 if (level) {
278 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
279
280 chunk_appendf(&trace_buf, "\n TX el=%c", quic_enc_level_char(lvl));
281 if (secret && secret_len)
282 quic_tls_secret_hexdump(&trace_buf, secret, *secret_len);
283 secs = &qc->els[lvl].tls_ctx.tx;
284 if (secs->flags & QUIC_FL_TLS_SECRETS_SET)
285 quic_tls_keys_hexdump(&trace_buf, secs);
286 }
287
288 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100289
Frédéric Lécaille133e8a72020-12-18 09:33:27 +0100290 if (mask & (QUIC_EV_CONN_HPKT|QUIC_EV_CONN_PAPKT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100291 const struct quic_tx_packet *pkt = a2;
292 const struct quic_enc_level *qel = a3;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100293 const ssize_t *room = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100294
295 if (qel) {
296 struct quic_pktns *pktns;
297
298 pktns = qc->pktns;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100299 chunk_appendf(&trace_buf, " qel=%c cwnd=%llu ppif=%lld pif=%llu "
300 "if=%llu pp=%u pdg=%d",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100301 quic_enc_level_char_from_qel(qel, qc),
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100302 (unsigned long long)qc->path->cwnd,
303 (unsigned long long)qc->path->prep_in_flight,
304 (unsigned long long)qc->path->in_flight,
305 (unsigned long long)pktns->tx.in_flight,
306 pktns->tx.pto_probe, qc->tx.nb_pto_dgrams);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100307 }
308 if (pkt) {
309 const struct quic_tx_frm *frm;
310 chunk_appendf(&trace_buf, " pn=%llu cdlen=%u",
311 (unsigned long long)pkt->pn_node.key, pkt->cdata_len);
312 list_for_each_entry(frm, &pkt->frms, list)
313 chunk_tx_frm_appendf(&trace_buf, frm);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100314 chunk_appendf(&trace_buf, " tx.bytes=%llu", (unsigned long long)qc->tx.bytes);
315 }
316
317 if (room) {
318 chunk_appendf(&trace_buf, " room=%lld", (long long)*room);
319 chunk_appendf(&trace_buf, " dcid.len=%llu scid.len=%llu",
320 (unsigned long long)qc->dcid.len, (unsigned long long)qc->scid.len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100321 }
322 }
323
324 if (mask & QUIC_EV_CONN_HDSHK) {
325 const enum quic_handshake_state *state = a2;
326 const int *err = a3;
327
328 if (state)
329 chunk_appendf(&trace_buf, " state=%s", quic_hdshk_state_str(*state));
330 if (err)
331 chunk_appendf(&trace_buf, " err=%s", ssl_error_str(*err));
332 }
333
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +0100334 if (mask & (QUIC_EV_CONN_TRMHP|QUIC_EV_CONN_ELRMHP|QUIC_EV_CONN_SPKT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100335 const struct quic_rx_packet *pkt = a2;
336 const unsigned long *pktlen = a3;
337 const SSL *ssl = a4;
338
339 if (pkt) {
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100340 chunk_appendf(&trace_buf, " pkt@%p el=%c",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100341 pkt, quic_packet_type_enc_level_char(pkt->type));
342 if (pkt->pnl)
343 chunk_appendf(&trace_buf, " pnl=%u pn=%llu", pkt->pnl,
344 (unsigned long long)pkt->pn);
345 if (pkt->token_len)
346 chunk_appendf(&trace_buf, " toklen=%llu",
347 (unsigned long long)pkt->token_len);
348 if (pkt->aad_len)
349 chunk_appendf(&trace_buf, " aadlen=%llu",
350 (unsigned long long)pkt->aad_len);
351 chunk_appendf(&trace_buf, " flags=0x%x len=%llu",
352 pkt->flags, (unsigned long long)pkt->len);
353 }
354 if (pktlen)
355 chunk_appendf(&trace_buf, " (%ld)", *pktlen);
356 if (ssl) {
357 enum ssl_encryption_level_t level = SSL_quic_read_level(ssl);
358 chunk_appendf(&trace_buf, " el=%c",
359 quic_enc_level_char(ssl_to_quic_enc_level(level)));
360 }
361 }
362
363 if (mask & (QUIC_EV_CONN_ELRXPKTS|QUIC_EV_CONN_PRSHPKT|QUIC_EV_CONN_SSLDATA)) {
364 const struct quic_rx_packet *pkt = a2;
365 const struct quic_rx_crypto_frm *cf = a3;
366 const SSL *ssl = a4;
367
368 if (pkt)
369 chunk_appendf(&trace_buf, " pkt@%p el=%c pn=%llu", pkt,
370 quic_packet_type_enc_level_char(pkt->type),
371 (unsigned long long)pkt->pn);
372 if (cf)
373 chunk_appendf(&trace_buf, " cfoff=%llu cflen=%llu",
374 (unsigned long long)cf->offset_node.key,
375 (unsigned long long)cf->len);
376 if (ssl) {
377 enum ssl_encryption_level_t level = SSL_quic_read_level(ssl);
378 chunk_appendf(&trace_buf, " el=%c",
379 quic_enc_level_char(ssl_to_quic_enc_level(level)));
380 }
381 }
382
383 if (mask & (QUIC_EV_CONN_PRSFRM|QUIC_EV_CONN_BFRM)) {
384 const struct quic_frame *frm = a2;
385
386 if (frm)
387 chunk_appendf(&trace_buf, " %s", quic_frame_type_string(frm->type));
388 }
389
390 if (mask & QUIC_EV_CONN_PHPKTS) {
391 const struct quic_enc_level *qel = a2;
392
393 if (qel) {
394 struct quic_pktns *pktns;
395
396 pktns = qc->pktns;
397 chunk_appendf(&trace_buf,
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100398 " qel=%c ack?%d cwnd=%llu ppif=%lld pif=%llu if=%llu pp=%u pdg=%llu",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100399 quic_enc_level_char_from_qel(qel, qc),
400 !!(pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED),
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100401 (unsigned long long)qc->path->cwnd,
402 (unsigned long long)qc->path->prep_in_flight,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100403 (unsigned long long)qc->path->in_flight,
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100404 (unsigned long long)pktns->tx.in_flight, pktns->tx.pto_probe,
405 (unsigned long long)qc->tx.nb_pto_dgrams);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100406 }
407 }
408
Frédéric Lécaillef63921f2020-12-18 09:48:20 +0100409 if (mask & QUIC_EV_CONN_ENCPKT) {
410 const struct enc_debug_info *edi = a2;
411
412 if (edi)
413 chunk_appendf(&trace_buf,
414 " payload=@%p payload_len=%llu"
415 " aad=@%p aad_len=%llu pn=%llu",
416 edi->payload, (unsigned long long)edi->payload_len,
417 edi->aad, (unsigned long long)edi->aad_len,
418 (unsigned long long)edi->pn);
419 }
420
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100421 if (mask & QUIC_EV_CONN_RMHP) {
422 const struct quic_rx_packet *pkt = a2;
423
424 if (pkt) {
425 const int *ret = a3;
426
427 chunk_appendf(&trace_buf, " pkt@%p", pkt);
428 if (ret && *ret)
429 chunk_appendf(&trace_buf, " pnl=%u pn=%llu",
430 pkt->pnl, (unsigned long long)pkt->pn);
431 }
432 }
433
434 if (mask & QUIC_EV_CONN_PRSAFRM) {
435 const struct quic_tx_frm *frm = a2;
436 const unsigned long *val1 = a3;
437 const unsigned long *val2 = a4;
438
439 if (frm)
440 chunk_tx_frm_appendf(&trace_buf, frm);
441 if (val1)
442 chunk_appendf(&trace_buf, " %lu", *val1);
443 if (val2)
444 chunk_appendf(&trace_buf, "..%lu", *val2);
445 }
446
447 if (mask & QUIC_EV_CONN_RTTUPDT) {
448 const unsigned int *rtt_sample = a2;
449 const unsigned int *ack_delay = a3;
450 const struct quic_loss *ql = a4;
451
452 if (rtt_sample)
453 chunk_appendf(&trace_buf, " rtt_sample=%ums", *rtt_sample);
454 if (ack_delay)
455 chunk_appendf(&trace_buf, " ack_delay=%ums", *ack_delay);
456 if (ql)
457 chunk_appendf(&trace_buf,
458 " srtt=%ums rttvar=%ums min_rtt=%ums",
459 ql->srtt >> 3, ql->rtt_var >> 2, ql->rtt_min);
460 }
461 if (mask & QUIC_EV_CONN_CC) {
462 const struct quic_cc_event *ev = a2;
463 const struct quic_cc *cc = a3;
464
465 if (a2)
466 quic_cc_event_trace(&trace_buf, ev);
467 if (a3)
468 quic_cc_state_trace(&trace_buf, cc);
469 }
470
471 if (mask & QUIC_EV_CONN_PKTLOSS) {
472 const struct quic_pktns *pktns = a2;
473 const struct list *lost_pkts = a3;
474 struct quic_conn *qc = conn->qc;
475
476 if (pktns) {
477 chunk_appendf(&trace_buf, " pktns=%s",
478 pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
479 pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H");
480 if (pktns->tx.loss_time)
481 chunk_appendf(&trace_buf, " loss_time=%dms",
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100482 TICKS_TO_MS(tick_remain(now_ms, pktns->tx.loss_time)));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100483 }
484 if (lost_pkts && !LIST_ISEMPTY(lost_pkts)) {
485 struct quic_tx_packet *pkt;
486
487 chunk_appendf(&trace_buf, " lost_pkts:");
488 list_for_each_entry(pkt, lost_pkts, list)
489 chunk_appendf(&trace_buf, " %lu", (unsigned long)pkt->pn_node.key);
490 }
491 }
492
493 if (mask & (QUIC_EV_CONN_STIMER|QUIC_EV_CONN_PTIMER|QUIC_EV_CONN_SPTO)) {
494 struct quic_conn *qc = conn->qc;
495 const struct quic_pktns *pktns = a2;
496 const int *duration = a3;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100497 const uint64_t *ifae_pkts = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100498
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100499 if (ifae_pkts)
500 chunk_appendf(&trace_buf, " ifae_pkts=%llu",
501 (unsigned long long)*ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100502 if (pktns) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100503 chunk_appendf(&trace_buf, " pktns=%s pp=%d",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100504 pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100505 pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H",
506 pktns->tx.pto_probe);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100507 if (mask & QUIC_EV_CONN_STIMER) {
508 if (pktns->tx.loss_time)
509 chunk_appendf(&trace_buf, " loss_time=%dms",
510 TICKS_TO_MS(pktns->tx.loss_time - now_ms));
511 }
512 if (mask & QUIC_EV_CONN_SPTO) {
513 if (pktns->tx.time_of_last_eliciting)
514 chunk_appendf(&trace_buf, " tole=%dms",
515 TICKS_TO_MS(pktns->tx.time_of_last_eliciting - now_ms));
516 if (duration)
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100517 chunk_appendf(&trace_buf, " dur=%dms", TICKS_TO_MS(*duration));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100518 }
519 }
520
521 if (!(mask & QUIC_EV_CONN_SPTO) && qc->timer_task) {
522 chunk_appendf(&trace_buf,
523 " expire=%dms", TICKS_TO_MS(qc->timer - now_ms));
524 }
525 }
526
527 if (mask & QUIC_EV_CONN_SPPKTS) {
528 const struct quic_tx_packet *pkt = a2;
529
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100530 chunk_appendf(&trace_buf, " cwnd=%llu ppif=%llu pif=%llu",
531 (unsigned long long)qc->path->cwnd,
532 (unsigned long long)qc->path->prep_in_flight,
533 (unsigned long long)qc->path->in_flight);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100534 if (pkt) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100535 chunk_appendf(&trace_buf, " pn=%lu(%s) iflen=%llu cdlen=%llu",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100536 (unsigned long)pkt->pn_node.key,
537 pkt->pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
538 pkt->pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H",
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100539 (unsigned long long)pkt->in_flight_len,
540 (unsigned long long)pkt->cdata_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100541 }
542 }
Frédéric Lécaille47c433f2020-12-10 17:03:11 +0100543
544 if (mask & QUIC_EV_CONN_SSLALERT) {
545 const uint8_t *alert = a2;
546 const enum ssl_encryption_level_t *level = a3;
547
548 if (alert)
549 chunk_appendf(&trace_buf, " alert=0x%02x", *alert);
550 if (level)
551 chunk_appendf(&trace_buf, " el=%c",
552 quic_enc_level_char(ssl_to_quic_enc_level(*level)));
553 }
Frédéric Lécailleea604992020-12-24 13:01:37 +0100554
555 if (mask & QUIC_EV_CONN_BCFRMS) {
556 const size_t *sz1 = a2;
557 const size_t *sz2 = a3;
558 const size_t *sz3 = a4;
559
560 if (sz1)
561 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz1);
562 if (sz2)
563 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz2);
564 if (sz3)
565 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz3);
566 }
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100567
568 if (mask & QUIC_EV_CONN_PSTRM) {
569 const struct quic_frame *frm = a2;
Frédéric Lécaille577fe482021-01-11 15:10:06 +0100570
571 if (a2) {
572 const struct quic_stream *s = &frm->stream;
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100573
Frédéric Lécaille577fe482021-01-11 15:10:06 +0100574 chunk_appendf(&trace_buf, " uni=%d fin=%d id=%llu off=%llu len=%llu",
575 !!(s->id & QUIC_STREAM_FRAME_ID_DIR_BIT),
576 !!(frm->type & QUIC_STREAM_FRAME_TYPE_FIN_BIT),
577 (unsigned long long)s->id,
578 (unsigned long long)s->offset,
579 (unsigned long long)s->len);
580 }
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100581 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100582 }
583 if (mask & QUIC_EV_CONN_LPKT) {
584 const struct quic_rx_packet *pkt = a2;
585
586 if (conn)
Frédéric Lécaille2e7ffc92021-06-10 08:18:45 +0200587 chunk_appendf(&trace_buf, " xprt_ctx@%p qc@%p", conn->xprt_ctx, conn->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100588 if (pkt)
Frédéric Lécaille2e7ffc92021-06-10 08:18:45 +0200589 chunk_appendf(&trace_buf, " pkt@%p type=0x%02x %s pkt->qc@%p",
590 pkt, pkt->type, qc_pkt_long(pkt) ? "long" : "short", pkt->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100591 }
592
593}
594
595/* Returns 1 if the peer has validated <qc> QUIC connection address, 0 if not. */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +0200596static inline int quic_peer_validated_addr(struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100597{
598 struct quic_conn *qc;
599
600 qc = ctx->conn->qc;
601 if (objt_server(qc->conn->target))
602 return 1;
603
604 if ((qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns->flags & QUIC_FL_PKTNS_ACK_RECEIVED) ||
605 (qc->els[QUIC_TLS_ENC_LEVEL_APP].pktns->flags & QUIC_FL_PKTNS_ACK_RECEIVED) ||
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +0200606 (qc->state & QUIC_HS_ST_COMPLETE))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100607 return 1;
608
609 return 0;
610}
611
612/* Set the timer attached to the QUIC connection with <ctx> as I/O handler and used for
613 * both loss detection and PTO and schedule the task assiated to this timer if needed.
614 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +0200615static inline void qc_set_timer(struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100616{
617 struct quic_conn *qc;
618 struct quic_pktns *pktns;
619 unsigned int pto;
620
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100621 TRACE_ENTER(QUIC_EV_CONN_STIMER, ctx->conn,
622 NULL, NULL, &ctx->conn->qc->path->ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100623 qc = ctx->conn->qc;
624 pktns = quic_loss_pktns(qc);
625 if (tick_isset(pktns->tx.loss_time)) {
626 qc->timer = pktns->tx.loss_time;
627 goto out;
628 }
629
630 /* XXX TODO: anti-amplification: the timer must be
631 * cancelled for a server which reached the anti-amplification limit.
632 */
633
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100634 if (!qc->path->ifae_pkts && quic_peer_validated_addr(ctx)) {
635 TRACE_PROTO("timer cancellation", QUIC_EV_CONN_STIMER, ctx->conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100636 /* Timer cancellation. */
637 qc->timer = TICK_ETERNITY;
638 goto out;
639 }
640
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +0200641 pktns = quic_pto_pktns(qc, qc->state & QUIC_HS_ST_COMPLETE, &pto);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100642 if (tick_isset(pto))
643 qc->timer = pto;
644 out:
645 task_schedule(qc->timer_task, qc->timer);
646 TRACE_LEAVE(QUIC_EV_CONN_STIMER, ctx->conn, pktns);
647}
648
649#ifndef OPENSSL_IS_BORINGSSL
650int ha_quic_set_encryption_secrets(SSL *ssl, enum ssl_encryption_level_t level,
651 const uint8_t *read_secret,
652 const uint8_t *write_secret, size_t secret_len)
653{
654 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
655 struct quic_tls_ctx *tls_ctx =
656 &conn->qc->els[ssl_to_quic_enc_level(level)].tls_ctx;
657 const SSL_CIPHER *cipher = SSL_get_current_cipher(ssl);
658
659 TRACE_ENTER(QUIC_EV_CONN_RWSEC, conn);
660 tls_ctx->rx.aead = tls_ctx->tx.aead = tls_aead(cipher);
661 tls_ctx->rx.md = tls_ctx->tx.md = tls_md(cipher);
662 tls_ctx->rx.hp = tls_ctx->tx.hp = tls_hp(cipher);
663
664 if (!quic_tls_derive_keys(tls_ctx->rx.aead, tls_ctx->rx.hp, tls_ctx->rx.md,
665 tls_ctx->rx.key, sizeof tls_ctx->rx.key,
666 tls_ctx->rx.iv, sizeof tls_ctx->rx.iv,
667 tls_ctx->rx.hp_key, sizeof tls_ctx->rx.hp_key,
668 read_secret, secret_len)) {
669 TRACE_DEVEL("RX key derivation failed", QUIC_EV_CONN_RWSEC, conn);
670 return 0;
671 }
672
673 tls_ctx->rx.flags |= QUIC_FL_TLS_SECRETS_SET;
674 if (!quic_tls_derive_keys(tls_ctx->tx.aead, tls_ctx->tx.hp, tls_ctx->tx.md,
675 tls_ctx->tx.key, sizeof tls_ctx->tx.key,
676 tls_ctx->tx.iv, sizeof tls_ctx->tx.iv,
677 tls_ctx->tx.hp_key, sizeof tls_ctx->tx.hp_key,
678 write_secret, secret_len)) {
679 TRACE_DEVEL("TX key derivation failed", QUIC_EV_CONN_RWSEC, conn);
680 return 0;
681 }
682
683 tls_ctx->tx.flags |= QUIC_FL_TLS_SECRETS_SET;
684 if (objt_server(conn->target) && level == ssl_encryption_application) {
685 const unsigned char *buf;
686 size_t buflen;
687
688 SSL_get_peer_quic_transport_params(ssl, &buf, &buflen);
689 if (!buflen)
690 return 0;
691
692 if (!quic_transport_params_store(conn->qc, 1, buf, buf + buflen))
693 return 0;
694 }
695 TRACE_LEAVE(QUIC_EV_CONN_RWSEC, conn, &level);
696
697 return 1;
698}
699#else
700/* ->set_read_secret callback to derive the RX secrets at <level> encryption
701 * level.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +0500702 * Returns 1 if succeeded, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100703 */
704int ha_set_rsec(SSL *ssl, enum ssl_encryption_level_t level,
705 const SSL_CIPHER *cipher,
706 const uint8_t *secret, size_t secret_len)
707{
708 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
709 struct quic_tls_ctx *tls_ctx =
710 &conn->qc->els[ssl_to_quic_enc_level(level)].tls_ctx;
711
712 TRACE_ENTER(QUIC_EV_CONN_RSEC, conn);
713 tls_ctx->rx.aead = tls_aead(cipher);
714 tls_ctx->rx.md = tls_md(cipher);
715 tls_ctx->rx.hp = tls_hp(cipher);
716
717 if (!quic_tls_derive_keys(tls_ctx->rx.aead, tls_ctx->rx.hp, tls_ctx->rx.md,
718 tls_ctx->rx.key, sizeof tls_ctx->rx.key,
719 tls_ctx->rx.iv, sizeof tls_ctx->rx.iv,
720 tls_ctx->rx.hp_key, sizeof tls_ctx->rx.hp_key,
721 secret, secret_len)) {
722 TRACE_DEVEL("RX key derivation failed", QUIC_EV_CONN_RSEC, conn);
723 goto err;
724 }
725
726 if (objt_server(conn->target) && level == ssl_encryption_application) {
727 const unsigned char *buf;
728 size_t buflen;
729
730 SSL_get_peer_quic_transport_params(ssl, &buf, &buflen);
731 if (!buflen)
732 goto err;
733
734 if (!quic_transport_params_store(conn->qc, 1, buf, buf + buflen))
735 goto err;
736 }
737
738 tls_ctx->rx.flags |= QUIC_FL_TLS_SECRETS_SET;
739 TRACE_LEAVE(QUIC_EV_CONN_RSEC, conn, &level, secret, &secret_len);
740
741 return 1;
742
743 err:
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +0100744 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RSEC, conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100745 return 0;
746}
747
748/* ->set_write_secret callback to derive the TX secrets at <level>
749 * encryption level.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +0500750 * Returns 1 if succeeded, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100751 */
752int ha_set_wsec(SSL *ssl, enum ssl_encryption_level_t level,
753 const SSL_CIPHER *cipher,
754 const uint8_t *secret, size_t secret_len)
755{
756 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
757 struct quic_tls_ctx *tls_ctx =
758 &conn->qc->els[ssl_to_quic_enc_level(level)].tls_ctx;
759
760 TRACE_ENTER(QUIC_EV_CONN_WSEC, conn);
761 tls_ctx->tx.aead = tls_aead(cipher);
762 tls_ctx->tx.md = tls_md(cipher);
763 tls_ctx->tx.hp = tls_hp(cipher);
764
765 if (!quic_tls_derive_keys(tls_ctx->tx.aead, tls_ctx->tx.hp, tls_ctx->tx.md,
766 tls_ctx->tx.key, sizeof tls_ctx->tx.key,
767 tls_ctx->tx.iv, sizeof tls_ctx->tx.iv,
768 tls_ctx->tx.hp_key, sizeof tls_ctx->tx.hp_key,
769 secret, secret_len)) {
770 TRACE_DEVEL("TX key derivation failed", QUIC_EV_CONN_WSEC, conn);
771 goto err;
772 }
773
774 tls_ctx->tx.flags |= QUIC_FL_TLS_SECRETS_SET;
775 TRACE_LEAVE(QUIC_EV_CONN_WSEC, conn, &level, secret, &secret_len);
776
777 return 1;
778
779 err:
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +0100780 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_WSEC, conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100781 return 0;
782}
783#endif
784
785/* This function copies the CRYPTO data provided by the TLS stack found at <data>
786 * with <len> as size in CRYPTO buffers dedicated to store the information about
787 * outgoing CRYPTO frames so that to be able to replay the CRYPTO data streams.
788 * It fails only if it could not managed to allocate enough CRYPTO buffers to
789 * store all the data.
790 * Note that CRYPTO data may exist at any encryption level except at 0-RTT.
791 */
792static int quic_crypto_data_cpy(struct quic_enc_level *qel,
793 const unsigned char *data, size_t len)
794{
795 struct quic_crypto_buf **qcb;
796 /* The remaining byte to store in CRYPTO buffers. */
797 size_t cf_offset, cf_len, *nb_buf;
798 unsigned char *pos;
799
800 nb_buf = &qel->tx.crypto.nb_buf;
801 qcb = &qel->tx.crypto.bufs[*nb_buf - 1];
802 cf_offset = (*nb_buf - 1) * QUIC_CRYPTO_BUF_SZ + (*qcb)->sz;
803 cf_len = len;
804
805 while (len) {
806 size_t to_copy, room;
807
808 pos = (*qcb)->data + (*qcb)->sz;
809 room = QUIC_CRYPTO_BUF_SZ - (*qcb)->sz;
810 to_copy = len > room ? room : len;
811 if (to_copy) {
812 memcpy(pos, data, to_copy);
813 /* Increment the total size of this CRYPTO buffers by <to_copy>. */
814 qel->tx.crypto.sz += to_copy;
815 (*qcb)->sz += to_copy;
816 pos += to_copy;
817 len -= to_copy;
818 data += to_copy;
819 }
820 else {
821 struct quic_crypto_buf **tmp;
822
823 tmp = realloc(qel->tx.crypto.bufs,
824 (*nb_buf + 1) * sizeof *qel->tx.crypto.bufs);
825 if (tmp) {
826 qel->tx.crypto.bufs = tmp;
827 qcb = &qel->tx.crypto.bufs[*nb_buf];
828 *qcb = pool_alloc(pool_head_quic_crypto_buf);
829 if (!*qcb)
830 return 0;
831
832 (*qcb)->sz = 0;
833 ++*nb_buf;
834 }
835 else {
836 break;
837 }
838 }
839 }
840
841 /* Allocate a TX CRYPTO frame only if all the CRYPTO data
842 * have been buffered.
843 */
844 if (!len) {
845 struct quic_tx_frm *frm;
846
847 frm = pool_alloc(pool_head_quic_tx_frm);
848 if (!frm)
849 return 0;
850
851 frm->type = QUIC_FT_CRYPTO;
852 frm->crypto.offset = cf_offset;
853 frm->crypto.len = cf_len;
Willy Tarreau2b718102021-04-21 07:32:39 +0200854 LIST_APPEND(&qel->pktns->tx.frms, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100855 }
856
857 return len == 0;
858}
859
860
861/* ->add_handshake_data QUIC TLS callback used by the QUIC TLS stack when it
862 * wants to provide the QUIC layer with CRYPTO data.
863 * Returns 1 if succeeded, 0 if not.
864 */
865int ha_quic_add_handshake_data(SSL *ssl, enum ssl_encryption_level_t level,
866 const uint8_t *data, size_t len)
867{
868 struct connection *conn;
869 enum quic_tls_enc_level tel;
870 struct quic_enc_level *qel;
871
872 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
873 TRACE_ENTER(QUIC_EV_CONN_ADDDATA, conn);
874 tel = ssl_to_quic_enc_level(level);
875 qel = &conn->qc->els[tel];
876
877 if (tel == -1) {
878 TRACE_PROTO("Wrong encryption level", QUIC_EV_CONN_ADDDATA, conn);
879 goto err;
880 }
881
882 if (!quic_crypto_data_cpy(qel, data, len)) {
883 TRACE_PROTO("Could not bufferize", QUIC_EV_CONN_ADDDATA, conn);
884 goto err;
885 }
886
887 TRACE_PROTO("CRYPTO data buffered", QUIC_EV_CONN_ADDDATA,
888 conn, &level, &len);
889
890 TRACE_LEAVE(QUIC_EV_CONN_ADDDATA, conn);
891 return 1;
892
893 err:
894 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ADDDATA, conn);
895 return 0;
896}
897
898int ha_quic_flush_flight(SSL *ssl)
899{
900 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
901
902 TRACE_ENTER(QUIC_EV_CONN_FFLIGHT, conn);
903 TRACE_LEAVE(QUIC_EV_CONN_FFLIGHT, conn);
904
905 return 1;
906}
907
908int ha_quic_send_alert(SSL *ssl, enum ssl_encryption_level_t level, uint8_t alert)
909{
910 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
911
Frédéric Lécaille47c433f2020-12-10 17:03:11 +0100912 TRACE_DEVEL("SSL alert", QUIC_EV_CONN_SSLALERT, conn, &alert, &level);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100913 return 1;
914}
915
916/* QUIC TLS methods */
917static SSL_QUIC_METHOD ha_quic_method = {
918#ifdef OPENSSL_IS_BORINGSSL
919 .set_read_secret = ha_set_rsec,
920 .set_write_secret = ha_set_wsec,
921#else
922 .set_encryption_secrets = ha_quic_set_encryption_secrets,
923#endif
924 .add_handshake_data = ha_quic_add_handshake_data,
925 .flush_flight = ha_quic_flush_flight,
926 .send_alert = ha_quic_send_alert,
927};
928
929/* Initialize the TLS context of a listener with <bind_conf> as configuration.
930 * Returns an error count.
931 */
932int ssl_quic_initial_ctx(struct bind_conf *bind_conf)
933{
934 struct proxy *curproxy = bind_conf->frontend;
935 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
936 int cfgerr = 0;
937
938#if 0
939 /* XXX Did not manage to use this. */
940 const char *ciphers =
941 "TLS_AES_128_GCM_SHA256:"
942 "TLS_AES_256_GCM_SHA384:"
943 "TLS_CHACHA20_POLY1305_SHA256:"
944 "TLS_AES_128_CCM_SHA256";
945#endif
Frédéric Lécaille4b1fddc2021-07-01 17:09:05 +0200946 const char *groups = "X25519:P-256:P-384:P-521";
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100947 long options =
948 (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) |
949 SSL_OP_SINGLE_ECDH_USE |
950 SSL_OP_CIPHER_SERVER_PREFERENCE;
951 SSL_CTX *ctx;
952
953 ctx = SSL_CTX_new(TLS_server_method());
954 bind_conf->initial_ctx = ctx;
955
956 SSL_CTX_set_options(ctx, options);
957#if 0
958 if (SSL_CTX_set_cipher_list(ctx, ciphers) != 1) {
959 ha_alert("Proxy '%s': unable to set TLS 1.3 cipher list to '%s' "
960 "for bind '%s' at [%s:%d].\n",
961 curproxy->id, ciphers,
962 bind_conf->arg, bind_conf->file, bind_conf->line);
963 cfgerr++;
964 }
965#endif
966
967 if (SSL_CTX_set1_curves_list(ctx, groups) != 1) {
968 ha_alert("Proxy '%s': unable to set TLS 1.3 curves list to '%s' "
969 "for bind '%s' at [%s:%d].\n",
970 curproxy->id, groups,
971 bind_conf->arg, bind_conf->file, bind_conf->line);
972 cfgerr++;
973 }
974
975 SSL_CTX_set_mode(ctx, SSL_MODE_RELEASE_BUFFERS);
976 SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
977 SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION);
978 SSL_CTX_set_default_verify_paths(ctx);
979
980#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
981#ifdef OPENSSL_IS_BORINGSSL
982 SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk);
983 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
984#elif (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
985 if (bind_conf->ssl_conf.early_data) {
986 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
987 SSL_CTX_set_max_early_data(ctx, global.tune.bufsize - global.tune.maxrewrite);
988 }
989 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
990 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
991#else
992 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
993#endif
994 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
995#endif
996 SSL_CTX_set_quic_method(ctx, &ha_quic_method);
997
998 return cfgerr;
999}
1000
1001/* Decode an expected packet number from <truncated_on> its truncated value,
1002 * depending on <largest_pn> the largest received packet number, and <pn_nbits>
1003 * the number of bits used to encode this packet number (its length in bytes * 8).
1004 * See https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#packet-encoding
1005 */
1006static uint64_t decode_packet_number(uint64_t largest_pn,
1007 uint32_t truncated_pn, unsigned int pn_nbits)
1008{
1009 uint64_t expected_pn = largest_pn + 1;
1010 uint64_t pn_win = (uint64_t)1 << pn_nbits;
1011 uint64_t pn_hwin = pn_win / 2;
1012 uint64_t pn_mask = pn_win - 1;
1013 uint64_t candidate_pn;
1014
1015
1016 candidate_pn = (expected_pn & ~pn_mask) | truncated_pn;
1017 /* Note that <pn_win> > <pn_hwin>. */
1018 if (candidate_pn < QUIC_MAX_PACKET_NUM - pn_win &&
1019 candidate_pn + pn_hwin <= expected_pn)
1020 return candidate_pn + pn_win;
1021
1022 if (candidate_pn > expected_pn + pn_hwin && candidate_pn >= pn_win)
1023 return candidate_pn - pn_win;
1024
1025 return candidate_pn;
1026}
1027
1028/* Remove the header protection of <pkt> QUIC packet using <tls_ctx> as QUIC TLS
1029 * cryptographic context.
1030 * <largest_pn> is the largest received packet number and <pn> the address of
1031 * the packet number field for this packet with <byte0> address of its first byte.
1032 * <end> points to one byte past the end of this packet.
1033 * Returns 1 if succeeded, 0 if not.
1034 */
1035static int qc_do_rm_hp(struct quic_rx_packet *pkt, struct quic_tls_ctx *tls_ctx,
1036 int64_t largest_pn, unsigned char *pn,
1037 unsigned char *byte0, const unsigned char *end,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001038 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001039{
1040 int ret, outlen, i, pnlen;
1041 uint64_t packet_number;
1042 uint32_t truncated_pn = 0;
1043 unsigned char mask[5] = {0};
1044 unsigned char *sample;
1045 EVP_CIPHER_CTX *cctx;
1046 unsigned char *hp_key;
1047
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001048 /* Check there is enough data in this packet. */
1049 if (end - pn < QUIC_PACKET_PN_MAXLEN + sizeof mask) {
1050 TRACE_DEVEL("too short packet", QUIC_EV_CONN_RMHP, ctx->conn, pkt);
1051 return 0;
1052 }
1053
1054 cctx = EVP_CIPHER_CTX_new();
1055 if (!cctx) {
1056 TRACE_DEVEL("memory allocation failed", QUIC_EV_CONN_RMHP, ctx->conn, pkt);
1057 return 0;
1058 }
1059
1060 ret = 0;
1061 sample = pn + QUIC_PACKET_PN_MAXLEN;
1062
1063 hp_key = tls_ctx->rx.hp_key;
1064 if (!EVP_DecryptInit_ex(cctx, tls_ctx->rx.hp, NULL, hp_key, sample) ||
1065 !EVP_DecryptUpdate(cctx, mask, &outlen, mask, sizeof mask) ||
1066 !EVP_DecryptFinal_ex(cctx, mask, &outlen)) {
1067 TRACE_DEVEL("decryption failed", QUIC_EV_CONN_RMHP, ctx->conn, pkt);
1068 goto out;
1069 }
1070
1071 *byte0 ^= mask[0] & (*byte0 & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f);
1072 pnlen = (*byte0 & QUIC_PACKET_PNL_BITMASK) + 1;
1073 for (i = 0; i < pnlen; i++) {
1074 pn[i] ^= mask[i + 1];
1075 truncated_pn = (truncated_pn << 8) | pn[i];
1076 }
1077
1078 packet_number = decode_packet_number(largest_pn, truncated_pn, pnlen * 8);
1079 /* Store remaining information for this unprotected header */
1080 pkt->pn = packet_number;
1081 pkt->pnl = pnlen;
1082
1083 ret = 1;
1084
1085 out:
1086 EVP_CIPHER_CTX_free(cctx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001087
1088 return ret;
1089}
1090
1091/* Encrypt the payload of a QUIC packet with <pn> as number found at <payload>
1092 * address, with <payload_len> as payload length, <aad> as address of
1093 * the ADD and <aad_len> as AAD length depending on the <tls_ctx> QUIC TLS
1094 * context.
1095 * Returns 1 if succeeded, 0 if not.
1096 */
1097static int quic_packet_encrypt(unsigned char *payload, size_t payload_len,
1098 unsigned char *aad, size_t aad_len, uint64_t pn,
1099 struct quic_tls_ctx *tls_ctx, struct connection *conn)
1100{
1101 unsigned char iv[12];
1102 unsigned char *tx_iv = tls_ctx->tx.iv;
1103 size_t tx_iv_sz = sizeof tls_ctx->tx.iv;
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001104 struct enc_debug_info edi;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001105
1106 if (!quic_aead_iv_build(iv, sizeof iv, tx_iv, tx_iv_sz, pn)) {
1107 TRACE_DEVEL("AEAD IV building for encryption failed", QUIC_EV_CONN_HPKT, conn);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001108 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001109 }
1110
1111 if (!quic_tls_encrypt(payload, payload_len, aad, aad_len,
1112 tls_ctx->tx.aead, tls_ctx->tx.key, iv)) {
1113 TRACE_DEVEL("QUIC packet encryption failed", QUIC_EV_CONN_HPKT, conn);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001114 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001115 }
1116
1117 return 1;
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001118
1119 err:
1120 enc_debug_info_init(&edi, payload, payload_len, aad, aad_len, pn);
1121 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ENCPKT, conn, &edi);
1122 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001123}
1124
1125/* Decrypt <pkt> QUIC packet with <tls_ctx> as QUIC TLS cryptographic context.
1126 * Returns 1 if succeeded, 0 if not.
1127 */
1128static int qc_pkt_decrypt(struct quic_rx_packet *pkt, struct quic_tls_ctx *tls_ctx)
1129{
1130 int ret;
1131 unsigned char iv[12];
1132 unsigned char *rx_iv = tls_ctx->rx.iv;
1133 size_t rx_iv_sz = sizeof tls_ctx->rx.iv;
1134
1135 if (!quic_aead_iv_build(iv, sizeof iv, rx_iv, rx_iv_sz, pkt->pn))
1136 return 0;
1137
1138 ret = quic_tls_decrypt(pkt->data + pkt->aad_len, pkt->len - pkt->aad_len,
1139 pkt->data, pkt->aad_len,
1140 tls_ctx->rx.aead, tls_ctx->rx.key, iv);
1141 if (!ret)
1142 return 0;
1143
1144 /* Update the packet length (required to parse the frames). */
1145 pkt->len = pkt->aad_len + ret;
1146
1147 return 1;
1148}
1149
1150/* Treat <frm> frame whose packet it is attached to has just been acknowledged. */
1151static inline void qc_treat_acked_tx_frm(struct quic_tx_frm *frm,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001152 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001153{
1154 TRACE_PROTO("Removing frame", QUIC_EV_CONN_PRSAFRM, ctx->conn, frm);
Willy Tarreau2b718102021-04-21 07:32:39 +02001155 LIST_DELETE(&frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001156 pool_free(pool_head_quic_tx_frm, frm);
1157}
1158
1159/* Remove <largest> down to <smallest> node entries from <pkts> tree of TX packet,
1160 * deallocating them, and their TX frames.
1161 * Returns the last node reached to be used for the next range.
1162 * May be NULL if <largest> node could not be found.
1163 */
1164static inline struct eb64_node *qc_ackrng_pkts(struct eb_root *pkts, unsigned int *pkt_flags,
1165 struct list *newly_acked_pkts,
1166 struct eb64_node *largest_node,
1167 uint64_t largest, uint64_t smallest,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001168 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001169{
1170 struct eb64_node *node;
1171 struct quic_tx_packet *pkt;
1172
1173 if (largest_node)
1174 node = largest_node;
1175 else {
1176 node = eb64_lookup(pkts, largest);
1177 while (!node && largest > smallest) {
1178 node = eb64_lookup(pkts, --largest);
1179 }
1180 }
1181
1182 while (node && node->key >= smallest) {
1183 struct quic_tx_frm *frm, *frmbak;
1184
1185 pkt = eb64_entry(&node->node, struct quic_tx_packet, pn_node);
1186 *pkt_flags |= pkt->flags;
Willy Tarreau2b718102021-04-21 07:32:39 +02001187 LIST_INSERT(newly_acked_pkts, &pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001188 TRACE_PROTO("Removing packet #", QUIC_EV_CONN_PRSAFRM, ctx->conn,, &pkt->pn_node.key);
1189 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list)
1190 qc_treat_acked_tx_frm(frm, ctx);
1191 node = eb64_prev(node);
1192 eb64_delete(&pkt->pn_node);
1193 }
1194
1195 return node;
1196}
1197
1198/* Treat <frm> frame whose packet it is attached to has just been detected as non
1199 * acknowledged.
1200 */
1201static inline void qc_treat_nacked_tx_frm(struct quic_tx_frm *frm,
1202 struct quic_pktns *pktns,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001203 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001204{
1205 TRACE_PROTO("to resend frame", QUIC_EV_CONN_PRSAFRM, ctx->conn, frm);
Willy Tarreau2b718102021-04-21 07:32:39 +02001206 LIST_DELETE(&frm->list);
1207 LIST_INSERT(&pktns->tx.frms, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001208}
1209
1210
1211/* Free the TX packets of <pkts> list */
1212static inline void free_quic_tx_pkts(struct list *pkts)
1213{
1214 struct quic_tx_packet *pkt, *tmp;
1215
1216 list_for_each_entry_safe(pkt, tmp, pkts, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001217 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001218 eb64_delete(&pkt->pn_node);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001219 quic_tx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001220 }
1221}
1222
1223/* Send a packet loss event nofification to the congestion controller
1224 * attached to <qc> connection with <lost_bytes> the number of lost bytes,
1225 * <oldest_lost>, <newest_lost> the oldest lost packet and newest lost packet
1226 * at <now_us> current time.
1227 * Always succeeds.
1228 */
1229static inline void qc_cc_loss_event(struct quic_conn *qc,
1230 unsigned int lost_bytes,
1231 unsigned int newest_time_sent,
1232 unsigned int period,
1233 unsigned int now_us)
1234{
1235 struct quic_cc_event ev = {
1236 .type = QUIC_CC_EVT_LOSS,
1237 .loss.now_ms = now_ms,
1238 .loss.max_ack_delay = qc->max_ack_delay,
1239 .loss.lost_bytes = lost_bytes,
1240 .loss.newest_time_sent = newest_time_sent,
1241 .loss.period = period,
1242 };
1243
1244 quic_cc_event(&qc->path->cc, &ev);
1245}
1246
1247/* Send a packet ack event nofication for each newly acked packet of
1248 * <newly_acked_pkts> list and free them.
1249 * Always succeeds.
1250 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001251static inline void qc_treat_newly_acked_pkts(struct ssl_sock_ctx *ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001252 struct list *newly_acked_pkts)
1253{
1254 struct quic_conn *qc = ctx->conn->qc;
1255 struct quic_tx_packet *pkt, *tmp;
1256 struct quic_cc_event ev = { .type = QUIC_CC_EVT_ACK, };
1257
1258 list_for_each_entry_safe(pkt, tmp, newly_acked_pkts, list) {
1259 pkt->pktns->tx.in_flight -= pkt->in_flight_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01001260 qc->path->prep_in_flight -= pkt->in_flight_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001261 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01001262 qc->path->ifae_pkts--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001263 ev.ack.acked = pkt->in_flight_len;
1264 ev.ack.time_sent = pkt->time_sent;
1265 quic_cc_event(&qc->path->cc, &ev);
Willy Tarreau2b718102021-04-21 07:32:39 +02001266 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001267 eb64_delete(&pkt->pn_node);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001268 quic_tx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001269 }
1270
1271}
1272
1273/* Handle <pkts> list of lost packets detected at <now_us> handling
1274 * their TX frames.
1275 * Send a packet loss event to the congestion controller if
1276 * in flight packet have been lost.
1277 * Also frees the packet in <pkts> list.
1278 * Never fails.
1279 */
1280static inline void qc_release_lost_pkts(struct quic_pktns *pktns,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001281 struct ssl_sock_ctx *ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001282 struct list *pkts,
1283 uint64_t now_us)
1284{
1285 struct quic_conn *qc = ctx->conn->qc;
1286 struct quic_tx_packet *pkt, *tmp, *oldest_lost, *newest_lost;
1287 struct quic_tx_frm *frm, *frmbak;
1288 uint64_t lost_bytes;
1289
1290 lost_bytes = 0;
1291 oldest_lost = newest_lost = NULL;
1292 list_for_each_entry_safe(pkt, tmp, pkts, list) {
1293 lost_bytes += pkt->in_flight_len;
1294 pkt->pktns->tx.in_flight -= pkt->in_flight_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01001295 qc->path->prep_in_flight -= pkt->in_flight_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001296 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01001297 qc->path->ifae_pkts--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001298 /* Treat the frames of this lost packet. */
1299 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list)
1300 qc_treat_nacked_tx_frm(frm, pktns, ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02001301 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001302 if (!oldest_lost) {
1303 oldest_lost = newest_lost = pkt;
1304 }
1305 else {
1306 if (newest_lost != oldest_lost)
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001307 quic_tx_packet_refdec(newest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001308 newest_lost = pkt;
1309 }
1310 }
1311
1312 if (lost_bytes) {
1313 /* Sent a packet loss event to the congestion controller. */
1314 qc_cc_loss_event(ctx->conn->qc, lost_bytes, newest_lost->time_sent,
1315 newest_lost->time_sent - oldest_lost->time_sent, now_us);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001316 quic_tx_packet_refdec(oldest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001317 if (newest_lost != oldest_lost)
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001318 quic_tx_packet_refdec(newest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001319 }
1320}
1321
1322/* Look for packet loss from sent packets for <qel> encryption level of a
1323 * connection with <ctx> as I/O handler context. If remove is true, remove them from
1324 * their tree if deemed as lost or set the <loss_time> value the packet number
1325 * space if any not deemed lost.
1326 * Should be called after having received an ACK frame with newly acknowledged
1327 * packets or when the the loss detection timer has expired.
1328 * Always succeeds.
1329 */
1330static void qc_packet_loss_lookup(struct quic_pktns *pktns,
1331 struct quic_conn *qc,
1332 struct list *lost_pkts)
1333{
1334 struct eb_root *pkts;
1335 struct eb64_node *node;
1336 struct quic_loss *ql;
1337 unsigned int loss_delay;
1338
1339 TRACE_ENTER(QUIC_EV_CONN_PKTLOSS, qc->conn, pktns);
1340 pkts = &pktns->tx.pkts;
1341 pktns->tx.loss_time = TICK_ETERNITY;
1342 if (eb_is_empty(pkts))
1343 goto out;
1344
1345 ql = &qc->path->loss;
1346 loss_delay = QUIC_MAX(ql->latest_rtt, ql->srtt >> 3);
1347 loss_delay += loss_delay >> 3;
1348 loss_delay = QUIC_MAX(loss_delay, MS_TO_TICKS(QUIC_TIMER_GRANULARITY));
1349
1350 node = eb64_first(pkts);
1351 while (node) {
1352 struct quic_tx_packet *pkt;
1353 int64_t largest_acked_pn;
1354 unsigned int loss_time_limit, time_sent;
1355
1356 pkt = eb64_entry(&node->node, struct quic_tx_packet, pn_node);
1357 largest_acked_pn = pktns->tx.largest_acked_pn;
1358 node = eb64_next(node);
1359 if ((int64_t)pkt->pn_node.key > largest_acked_pn)
1360 break;
1361
1362 time_sent = pkt->time_sent;
1363 loss_time_limit = tick_add(time_sent, loss_delay);
1364 if (tick_is_le(time_sent, now_ms) ||
1365 (int64_t)largest_acked_pn >= pkt->pn_node.key + QUIC_LOSS_PACKET_THRESHOLD) {
1366 eb64_delete(&pkt->pn_node);
Willy Tarreau2b718102021-04-21 07:32:39 +02001367 LIST_APPEND(lost_pkts, &pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001368 }
1369 else {
1370 pktns->tx.loss_time = tick_first(pktns->tx.loss_time, loss_time_limit);
1371 }
1372 }
1373
1374 out:
1375 TRACE_LEAVE(QUIC_EV_CONN_PKTLOSS, qc->conn, pktns, lost_pkts);
1376}
1377
1378/* Parse ACK frame into <frm> from a buffer at <buf> address with <end> being at
1379 * one byte past the end of this buffer. Also update <rtt_sample> if needed, i.e.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05001380 * if the largest acked packet was newly acked and if there was at least one newly
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001381 * acked ack-eliciting packet.
1382 * Return 1, if succeeded, 0 if not.
1383 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001384static inline int qc_parse_ack_frm(struct quic_frame *frm, struct ssl_sock_ctx *ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001385 struct quic_enc_level *qel,
1386 unsigned int *rtt_sample,
1387 const unsigned char **pos, const unsigned char *end)
1388{
1389 struct quic_ack *ack = &frm->ack;
1390 uint64_t smallest, largest;
1391 struct eb_root *pkts;
1392 struct eb64_node *largest_node;
1393 unsigned int time_sent, pkt_flags;
1394 struct list newly_acked_pkts = LIST_HEAD_INIT(newly_acked_pkts);
1395 struct list lost_pkts = LIST_HEAD_INIT(lost_pkts);
1396
1397 if (ack->largest_ack > qel->pktns->tx.next_pn) {
1398 TRACE_DEVEL("ACK for not sent packet", QUIC_EV_CONN_PRSAFRM,
1399 ctx->conn,, &ack->largest_ack);
1400 goto err;
1401 }
1402
1403 if (ack->first_ack_range > ack->largest_ack) {
1404 TRACE_DEVEL("too big first ACK range", QUIC_EV_CONN_PRSAFRM,
1405 ctx->conn,, &ack->first_ack_range);
1406 goto err;
1407 }
1408
1409 largest = ack->largest_ack;
1410 smallest = largest - ack->first_ack_range;
1411 pkts = &qel->pktns->tx.pkts;
1412 pkt_flags = 0;
1413 largest_node = NULL;
1414 time_sent = 0;
1415
1416 if ((int64_t)ack->largest_ack > qel->pktns->tx.largest_acked_pn) {
1417 largest_node = eb64_lookup(pkts, largest);
1418 if (!largest_node) {
1419 TRACE_DEVEL("Largest acked packet not found",
1420 QUIC_EV_CONN_PRSAFRM, ctx->conn);
1421 goto err;
1422 }
1423
1424 time_sent = eb64_entry(&largest_node->node,
1425 struct quic_tx_packet, pn_node)->time_sent;
1426 }
1427
1428 TRACE_PROTO("ack range", QUIC_EV_CONN_PRSAFRM,
1429 ctx->conn,, &largest, &smallest);
1430 do {
1431 uint64_t gap, ack_range;
1432
1433 qc_ackrng_pkts(pkts, &pkt_flags, &newly_acked_pkts,
1434 largest_node, largest, smallest, ctx);
1435 if (!ack->ack_range_num--)
1436 break;
1437
1438 if (!quic_dec_int(&gap, pos, end))
1439 goto err;
1440
1441 if (smallest < gap + 2) {
1442 TRACE_DEVEL("wrong gap value", QUIC_EV_CONN_PRSAFRM,
1443 ctx->conn,, &gap, &smallest);
1444 goto err;
1445 }
1446
1447 largest = smallest - gap - 2;
1448 if (!quic_dec_int(&ack_range, pos, end))
1449 goto err;
1450
1451 if (largest < ack_range) {
1452 TRACE_DEVEL("wrong ack range value", QUIC_EV_CONN_PRSAFRM,
1453 ctx->conn,, &largest, &ack_range);
1454 goto err;
1455 }
1456
1457 /* Do not use this node anymore. */
1458 largest_node = NULL;
1459 /* Next range */
1460 smallest = largest - ack_range;
1461
1462 TRACE_PROTO("ack range", QUIC_EV_CONN_PRSAFRM,
1463 ctx->conn,, &largest, &smallest);
1464 } while (1);
1465
1466 /* Flag this packet number space as having received an ACK. */
1467 qel->pktns->flags |= QUIC_FL_PKTNS_ACK_RECEIVED;
1468
1469 if (time_sent && (pkt_flags & QUIC_FL_TX_PACKET_ACK_ELICITING)) {
1470 *rtt_sample = tick_remain(time_sent, now_ms);
1471 qel->pktns->tx.largest_acked_pn = ack->largest_ack;
1472 }
1473
1474 if (!LIST_ISEMPTY(&newly_acked_pkts)) {
1475 if (!eb_is_empty(&qel->pktns->tx.pkts)) {
1476 qc_packet_loss_lookup(qel->pktns, ctx->conn->qc, &lost_pkts);
1477 if (!LIST_ISEMPTY(&lost_pkts))
1478 qc_release_lost_pkts(qel->pktns, ctx, &lost_pkts, now_ms);
1479 }
1480 qc_treat_newly_acked_pkts(ctx, &newly_acked_pkts);
1481 if (quic_peer_validated_addr(ctx))
1482 ctx->conn->qc->path->loss.pto_count = 0;
1483 qc_set_timer(ctx);
1484 }
1485
1486
1487 return 1;
1488
1489 err:
1490 free_quic_tx_pkts(&newly_acked_pkts);
1491 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PRSAFRM, ctx->conn);
1492 return 0;
1493}
1494
1495/* Provide CRYPTO data to the TLS stack found at <data> with <len> as length
1496 * from <qel> encryption level with <ctx> as QUIC connection context.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05001497 * Remaining parameter are there for debugging purposes.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001498 * Return 1 if succeeded, 0 if not.
1499 */
1500static inline int qc_provide_cdata(struct quic_enc_level *el,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001501 struct ssl_sock_ctx *ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001502 const unsigned char *data, size_t len,
1503 struct quic_rx_packet *pkt,
1504 struct quic_rx_crypto_frm *cf)
1505{
1506 int ssl_err;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001507 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001508
1509 TRACE_ENTER(QUIC_EV_CONN_SSLDATA, ctx->conn);
1510 ssl_err = SSL_ERROR_NONE;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001511 qc = ctx->conn->qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001512 if (SSL_provide_quic_data(ctx->ssl, el->level, data, len) != 1) {
1513 TRACE_PROTO("SSL_provide_quic_data() error",
1514 QUIC_EV_CONN_SSLDATA, ctx->conn, pkt, cf, ctx->ssl);
1515 goto err;
1516 }
1517
1518 el->rx.crypto.offset += len;
1519 TRACE_PROTO("in order CRYPTO data",
1520 QUIC_EV_CONN_SSLDATA, ctx->conn,, cf, ctx->ssl);
1521
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001522 if (qc->state < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001523 ssl_err = SSL_do_handshake(ctx->ssl);
1524 if (ssl_err != 1) {
1525 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
1526 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
1527 TRACE_PROTO("SSL handshake",
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001528 QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001529 goto out;
1530 }
1531
1532 TRACE_DEVEL("SSL handshake error",
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001533 QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001534 goto err;
1535 }
1536
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001537 TRACE_PROTO("SSL handshake OK", QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001538 if (objt_listener(ctx->conn->target))
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001539 qc->state = QUIC_HS_ST_CONFIRMED;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001540 else
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001541 qc->state = QUIC_HS_ST_COMPLETE;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001542 } else {
1543 ssl_err = SSL_process_quic_post_handshake(ctx->ssl);
1544 if (ssl_err != 1) {
1545 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
1546 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
1547 TRACE_DEVEL("SSL post handshake",
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001548 QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001549 goto out;
1550 }
1551
1552 TRACE_DEVEL("SSL post handshake error",
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001553 QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001554 goto err;
1555 }
1556
1557 TRACE_PROTO("SSL post handshake succeeded",
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001558 QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001559 }
1560
1561 out:
1562 TRACE_LEAVE(QUIC_EV_CONN_SSLDATA, ctx->conn);
1563 return 1;
1564
1565 err:
1566 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_SSLDATA, ctx->conn);
1567 return 0;
1568}
1569
Frédéric Lécailledfbae762021-02-18 09:59:01 +01001570/* Allocate a new STREAM RX frame from <stream_fm> STREAM frame attached to
1571 * <pkt> RX packet.
1572 * Return it if succeeded, NULL if not.
1573 */
1574static inline
1575struct quic_rx_strm_frm *new_quic_rx_strm_frm(struct quic_stream *stream_frm,
1576 struct quic_rx_packet *pkt)
1577{
1578 struct quic_rx_strm_frm *frm;
1579
1580 frm = pool_alloc(pool_head_quic_rx_strm_frm);
1581 if (frm) {
1582 frm->offset_node.key = stream_frm->offset;
1583 frm->len = stream_frm->len;
1584 frm->data = stream_frm->data;
1585 frm->pkt = pkt;
1586 }
1587
1588 return frm;
1589}
1590
1591/* Retrieve as an ebtree node the stream with <id> as ID, possibly allocates
1592 * several streams, depending on the already open onces.
1593 * Return this node if succeeded, NULL if not.
1594 */
1595static struct eb64_node *qcc_get_qcs(struct qcc *qcc, uint64_t id)
1596{
1597 unsigned int strm_type;
1598 int64_t sub_id;
1599 struct eb64_node *strm_node;
1600
1601 TRACE_ENTER(QUIC_EV_CONN_PSTRM, qcc->conn);
1602
1603 strm_type = id & QCS_ID_TYPE_MASK;
1604 sub_id = id >> QCS_ID_TYPE_SHIFT;
1605 strm_node = NULL;
1606 if (qc_local_stream_id(qcc, id)) {
1607 /* Local streams: this stream must be already opened. */
1608 strm_node = eb64_lookup(&qcc->streams_by_id, id);
1609 if (!strm_node) {
1610 TRACE_PROTO("Unknown stream ID", QUIC_EV_CONN_PSTRM, qcc->conn);
1611 goto out;
1612 }
1613 }
1614 else {
1615 /* Remote streams. */
1616 struct eb_root *strms;
1617 uint64_t largest_id;
1618 enum qcs_type qcs_type;
1619
1620 strms = &qcc->streams_by_id;
1621 qcs_type = qcs_id_type(id);
1622 if (sub_id + 1 > qcc->strms[qcs_type].max_streams) {
1623 TRACE_PROTO("Streams limit reached", QUIC_EV_CONN_PSTRM, qcc->conn);
1624 goto out;
1625 }
1626
1627 /* Note: ->largest_id was initialized with (uint64_t)-1 as value, 0 being a
1628 * correct value.
1629 */
1630 largest_id = qcc->strms[qcs_type].largest_id;
1631 if (sub_id > (int64_t)largest_id) {
1632 /* RFC: "A stream ID that is used out of order results in all streams
1633 * of that type with lower-numbered stream IDs also being opened".
1634 * So, let's "open" these streams.
1635 */
1636 int64_t i;
1637 struct qcs *qcs;
1638
1639 qcs = NULL;
1640 for (i = largest_id + 1; i <= sub_id; i++) {
1641 qcs = qcs_new(qcc, (i << QCS_ID_TYPE_SHIFT) | strm_type);
1642 if (!qcs) {
1643 TRACE_PROTO("Could not allocate a new stream",
1644 QUIC_EV_CONN_PSTRM, qcc->conn);
1645 goto out;
1646 }
1647
1648 qcc->strms[qcs_type].largest_id = i;
1649 }
1650 if (qcs)
1651 strm_node = &qcs->by_id;
1652 }
1653 else {
1654 strm_node = eb64_lookup(strms, id);
1655 }
1656 }
1657
1658 TRACE_LEAVE(QUIC_EV_CONN_PSTRM, qcc->conn);
1659 return strm_node;
1660
1661 out:
1662 TRACE_LEAVE(QUIC_EV_CONN_PSTRM, qcc->conn);
1663 return NULL;
1664}
1665
1666/* Copy as most as possible STREAM data from <strm_frm> into <strm> stream.
1667 * Returns the number of bytes copied or -1 if failed. Also update <strm_frm> frame
1668 * to reflect the data which have been consumed.
1669 */
1670static size_t qc_strm_cpy(struct buffer *buf, struct quic_stream *strm_frm)
1671{
1672 size_t ret;
1673
1674 ret = 0;
1675 while (strm_frm->len) {
1676 size_t try;
1677
1678 try = b_contig_space(buf);
1679 if (!try)
1680 break;
1681
1682 if (try > strm_frm->len)
1683 try = strm_frm->len;
1684 memcpy(b_tail(buf), strm_frm->data, try);
1685 strm_frm->len -= try;
1686 strm_frm->offset += try;
1687 b_add(buf, try);
1688 ret += try;
1689 }
1690
1691 return ret;
1692}
1693
1694/* Handle <strm_frm> bidirectional STREAM frame. Depending on its ID, several
1695 * streams may be open. The data are copied to the stream RX buffer if possible.
1696 * If not, the STREAM frame is stored to be treated again later.
1697 * We rely on the flow control so that not to store too much STREAM frames.
1698 * Return 1 if succeeded, 0 if not.
1699 */
1700static int qc_handle_bidi_strm_frm(struct quic_rx_packet *pkt,
1701 struct quic_stream *strm_frm,
1702 struct quic_conn *qc)
1703{
1704 struct qcs *strm;
1705 struct eb64_node *strm_node, *frm_node;
1706 struct quic_rx_strm_frm *frm;
1707
1708 strm_node = qcc_get_qcs(qc->qcc, strm_frm->id);
1709 if (!strm_node) {
1710 TRACE_PROTO("Stream not found", QUIC_EV_CONN_PSTRM, qc->conn);
1711 return 0;
1712 }
1713
1714 strm = eb64_entry(&strm_node->node, struct qcs, by_id);
1715 frm_node = eb64_lookup(&strm->frms, strm_frm->offset);
1716 /* FIXME: handle the case where this frame overlap others */
1717 if (frm_node) {
1718 TRACE_PROTO("Already existing stream data",
1719 QUIC_EV_CONN_PSTRM, qc->conn);
1720 goto out;
1721 }
1722
1723 if (strm_frm->offset == strm->rx.offset) {
1724 int ret;
1725
1726 if (!qc_get_buf(qc->qcc, &strm->rx.buf))
1727 goto store_frm;
1728
1729 ret = qc_strm_cpy(&strm->rx.buf, strm_frm);
1730 if (ret && qc->qcc->app_ops->decode_qcs(strm, qc->qcc->ctx) == -1) {
1731 TRACE_PROTO("Decoding error", QUIC_EV_CONN_PSTRM);
1732 return 0;
1733 }
1734
1735 strm->rx.offset += ret;
1736 }
1737
1738 if (!strm_frm->len)
1739 goto out;
1740
1741 store_frm:
1742 frm = new_quic_rx_strm_frm(strm_frm, pkt);
1743 if (!frm) {
1744 TRACE_PROTO("Could not alloc RX STREAM frame",
1745 QUIC_EV_CONN_PSTRM, qc->conn);
1746 return 0;
1747 }
1748
1749 eb64_insert(&strm->frms, &frm->offset_node);
1750 quic_rx_packet_refinc(pkt);
1751
1752 out:
1753 return 1;
1754}
1755
1756/* Handle <strm_frm> unidirectional STREAM frame. Depending on its ID, several
1757 * streams may be open. The data are copied to the stream RX buffer if possible.
1758 * If not, the STREAM frame is stored to be treated again later.
1759 * We rely on the flow control so that not to store too much STREAM frames.
1760 * Return 1 if succeeded, 0 if not.
1761 */
1762static int qc_handle_uni_strm_frm(struct quic_rx_packet *pkt,
1763 struct quic_stream *strm_frm,
1764 struct quic_conn *qc)
1765{
1766 struct qcs *strm;
1767 struct eb64_node *strm_node, *frm_node;
1768 struct quic_rx_strm_frm *frm;
1769 size_t strm_frm_len;
1770
1771 strm_node = qcc_get_qcs(qc->qcc, strm_frm->id);
1772 if (!strm_node) {
1773 TRACE_PROTO("Stream not found", QUIC_EV_CONN_PSTRM, qc->conn);
1774 return 0;
1775 }
1776
1777 strm = eb64_entry(&strm_node->node, struct qcs, by_id);
1778 frm_node = eb64_lookup(&strm->frms, strm_frm->offset);
1779 /* FIXME: handle the case where this frame overlap others */
1780 if (frm_node) {
1781 TRACE_PROTO("Already existing stream data",
1782 QUIC_EV_CONN_PSTRM, qc->conn);
1783 goto out;
1784 }
1785
1786 strm_frm_len = strm_frm->len;
1787 if (strm_frm->offset == strm->rx.offset) {
1788 int ret;
1789
1790 if (!qc_get_buf(qc->qcc, &strm->rx.buf))
1791 goto store_frm;
1792
1793 /* qc_strm_cpy() will modify the offset, depending on the number
1794 * of bytes copied.
1795 */
1796 ret = qc_strm_cpy(&strm->rx.buf, strm_frm);
1797 /* Inform the application of the arrival of this new stream */
1798 if (!strm->rx.offset && !qc->qcc->app_ops->attach_ruqs(strm, qc->qcc->ctx)) {
1799 TRACE_PROTO("Could not set an uni-stream", QUIC_EV_CONN_PSTRM, qc->conn);
1800 return 0;
1801 }
1802
1803 if (ret)
1804 ruqs_notify_recv(strm);
1805
1806 strm_frm->offset += ret;
1807 }
1808 /* Take this frame into an account for the stream flow control */
1809 strm->rx.offset += strm_frm_len;
1810 /* It all the data were provided to the application, there is no need to
1811 * store any more inforamtion for it.
1812 */
1813 if (!strm_frm->len)
1814 goto out;
1815
1816 store_frm:
1817 frm = new_quic_rx_strm_frm(strm_frm, pkt);
1818 if (!frm) {
1819 TRACE_PROTO("Could not alloc RX STREAM frame",
1820 QUIC_EV_CONN_PSTRM, qc->conn);
1821 return 0;
1822 }
1823
1824 eb64_insert(&strm->frms, &frm->offset_node);
1825 quic_rx_packet_refinc(pkt);
1826
1827 out:
1828 return 1;
1829}
1830
1831static inline int qc_handle_strm_frm(struct quic_rx_packet *pkt,
1832 struct quic_stream *strm_frm,
1833 struct quic_conn *qc)
1834{
1835 if (strm_frm->id & QCS_ID_DIR_BIT)
1836 return qc_handle_uni_strm_frm(pkt, strm_frm, qc);
1837 else
1838 return qc_handle_bidi_strm_frm(pkt, strm_frm, qc);
1839}
1840
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001841/* Parse all the frames of <pkt> QUIC packet for QUIC connection with <ctx>
1842 * as I/O handler context and <qel> as encryption level.
1843 * Returns 1 if succeeded, 0 if failed.
1844 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001845static int qc_parse_pkt_frms(struct quic_rx_packet *pkt, struct ssl_sock_ctx *ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001846 struct quic_enc_level *qel)
1847{
1848 struct quic_frame frm;
1849 const unsigned char *pos, *end;
1850 struct quic_conn *conn = ctx->conn->qc;
1851
1852 TRACE_ENTER(QUIC_EV_CONN_PRSHPKT, ctx->conn);
1853 /* Skip the AAD */
1854 pos = pkt->data + pkt->aad_len;
1855 end = pkt->data + pkt->len;
1856
1857 while (pos < end) {
1858 if (!qc_parse_frm(&frm, pkt, &pos, end, conn))
1859 goto err;
1860
1861 switch (frm.type) {
Frédéric Lécaille0c140202020-12-09 15:56:48 +01001862 case QUIC_FT_PADDING:
1863 if (pos != end) {
1864 TRACE_DEVEL("wrong frame", QUIC_EV_CONN_PRSHPKT, ctx->conn, pkt);
1865 goto err;
1866 }
1867 break;
1868 case QUIC_FT_PING:
1869 break;
1870 case QUIC_FT_ACK:
1871 {
1872 unsigned int rtt_sample;
1873
1874 rtt_sample = 0;
1875 if (!qc_parse_ack_frm(&frm, ctx, qel, &rtt_sample, &pos, end))
1876 goto err;
1877
1878 if (rtt_sample) {
1879 unsigned int ack_delay;
1880
1881 ack_delay = !quic_application_pktns(qel->pktns, conn) ? 0 :
1882 MS_TO_TICKS(QUIC_MIN(quic_ack_delay_ms(&frm.ack, conn), conn->max_ack_delay));
1883 quic_loss_srtt_update(&conn->path->loss, rtt_sample, ack_delay, conn);
1884 }
Frédéric Lécaille0c140202020-12-09 15:56:48 +01001885 break;
1886 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001887 case QUIC_FT_CRYPTO:
1888 if (frm.crypto.offset != qel->rx.crypto.offset) {
1889 struct quic_rx_crypto_frm *cf;
1890
1891 cf = pool_alloc(pool_head_quic_rx_crypto_frm);
1892 if (!cf) {
1893 TRACE_DEVEL("CRYPTO frame allocation failed",
1894 QUIC_EV_CONN_PRSHPKT, ctx->conn);
1895 goto err;
1896 }
1897
1898 cf->offset_node.key = frm.crypto.offset;
1899 cf->len = frm.crypto.len;
1900 cf->data = frm.crypto.data;
1901 cf->pkt = pkt;
1902 eb64_insert(&qel->rx.crypto.frms, &cf->offset_node);
1903 quic_rx_packet_refinc(pkt);
1904 }
1905 else {
1906 /* XXX TO DO: <cf> is used only for the traces. */
1907 struct quic_rx_crypto_frm cf = { };
1908
1909 cf.offset_node.key = frm.crypto.offset;
1910 cf.len = frm.crypto.len;
1911 if (!qc_provide_cdata(qel, ctx,
1912 frm.crypto.data, frm.crypto.len,
1913 pkt, &cf))
1914 goto err;
1915 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001916 break;
Frédéric Lécaille0c140202020-12-09 15:56:48 +01001917 case QUIC_FT_STREAM_8:
1918 case QUIC_FT_STREAM_9:
1919 case QUIC_FT_STREAM_A:
1920 case QUIC_FT_STREAM_B:
1921 case QUIC_FT_STREAM_C:
1922 case QUIC_FT_STREAM_D:
1923 case QUIC_FT_STREAM_E:
1924 case QUIC_FT_STREAM_F:
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01001925 {
1926 struct quic_stream *stream = &frm.stream;
1927
1928 TRACE_PROTO("STREAM frame", QUIC_EV_CONN_PSTRM, ctx->conn, &frm);
1929 if (objt_listener(ctx->conn->target)) {
1930 if (stream->id & QUIC_STREAM_FRAME_ID_INITIATOR_BIT)
1931 goto err;
1932 } else if (!(stream->id & QUIC_STREAM_FRAME_ID_INITIATOR_BIT))
1933 goto err;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01001934
1935 if (!qc_handle_strm_frm(pkt, stream, ctx->conn->qc))
1936 goto err;
1937
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01001938 break;
1939 }
Frédéric Lécaille0c140202020-12-09 15:56:48 +01001940 case QUIC_FT_NEW_CONNECTION_ID:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001941 break;
1942 case QUIC_FT_CONNECTION_CLOSE:
1943 case QUIC_FT_CONNECTION_CLOSE_APP:
1944 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001945 case QUIC_FT_HANDSHAKE_DONE:
1946 if (objt_listener(ctx->conn->target))
1947 goto err;
1948
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001949 conn->state = QUIC_HS_ST_CONFIRMED;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001950 break;
1951 default:
1952 goto err;
1953 }
1954 }
1955
1956 /* The server must switch from INITIAL to HANDSHAKE handshake state when it
1957 * has successfully parse a Handshake packet. The Initial encryption must also
1958 * be discarded.
1959 */
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001960 if (conn->state == QUIC_HS_ST_SERVER_INITIAL &&
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001961 pkt->type == QUIC_PACKET_TYPE_HANDSHAKE) {
1962 quic_tls_discard_keys(&conn->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
1963 quic_pktns_discard(conn->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, conn);
1964 qc_set_timer(ctx);
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001965 conn->state = QUIC_HS_ST_SERVER_HANDSHAKE;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001966 }
1967
1968 TRACE_LEAVE(QUIC_EV_CONN_PRSHPKT, ctx->conn);
1969 return 1;
1970
1971 err:
1972 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PRSHPKT, ctx->conn);
1973 return 0;
1974}
1975
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001976/* Write <dglen> datagram length and <pkt> first packet address into <cbuf> ring
1977 * buffer. This is the responsability of the caller to check there is enough
1978 * room in <cbuf>. Also increase the <cbuf> write index consequently.
1979 * This function must be called only after having built a correct datagram.
1980 * Always succeeds.
1981 */
1982static inline void qc_set_dg(struct cbuf *cbuf,
1983 uint16_t dglen, struct quic_tx_packet *pkt)
1984{
1985 write_u16(cb_wr(cbuf), dglen);
1986 write_ptr(cb_wr(cbuf) + sizeof dglen, pkt);
1987 cb_add(cbuf, dglen + sizeof dglen + sizeof pkt);
1988}
1989
1990/* Prepare as much as possible handshake packets into <qr> ring buffer for
1991 * the QUIC connection with <ctx> as I/O handler context, possibly concatenating
1992 * several packets in the same datagram. A header made of two fields is added
1993 * to each datagram: the datagram length followed by the address of the first
1994 * packet in this datagram.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001995 * Returns 1 if succeeded, or 0 if something wrong happened.
1996 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001997static int qc_prep_hdshk_pkts(struct qring *qr, struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001998{
1999 struct quic_conn *qc;
2000 enum quic_tls_enc_level tel, next_tel;
2001 struct quic_enc_level *qel;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002002 struct cbuf *cbuf;
2003 unsigned char *end_buf, *end, *pos, *spos;
2004 struct quic_tx_packet *first_pkt, *cur_pkt, *prv_pkt;
2005 /* length of datagrams */
2006 uint16_t dglen;
2007 size_t total;
2008 /* Each datagram is prepended with its length followed by the
2009 * address of the first packet in the datagram.
2010 */
2011 size_t dg_headlen = sizeof dglen + sizeof first_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002012
2013 TRACE_ENTER(QUIC_EV_CONN_PHPKTS, ctx->conn);
2014 qc = ctx->conn->qc;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002015 if (!quic_get_tls_enc_levels(&tel, &next_tel, qc->state)) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002016 TRACE_DEVEL("unknown enc. levels", QUIC_EV_CONN_PHPKTS, ctx->conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002017 goto err;
2018 }
2019
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002020 start:
2021 total = 0;
2022 dglen = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002023 qel = &qc->els[tel];
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002024 cbuf = qr->cbuf;
2025 spos = pos = cb_wr(cbuf);
2026 /* Leave at least <dglen> bytes at the end of this buffer
2027 * to ensure there is enough room to mark the end of prepared
2028 * contiguous data with a zero length.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002029 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002030 end_buf = pos + cb_contig_space(cbuf) - sizeof dglen;
2031 first_pkt = prv_pkt = NULL;
2032 while (end_buf - pos >= (int)qc->path->mtu + dg_headlen || prv_pkt) {
2033 int err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002034 enum quic_pkt_type pkt_type;
2035
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +01002036 TRACE_POINT(QUIC_EV_CONN_PHPKTS, ctx->conn, qel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002037 /* Do not build any more packet if the TX secrets are not available or
2038 * if there is nothing to send, i.e. if no ACK are required
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002039 * and if there is no more packets to send upon PTO expiration
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01002040 * and if there is no more CRYPTO data available or in flight
2041 * congestion control limit is reached for prepared data
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002042 */
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01002043 if (!(qel->tls_ctx.tx.flags & QUIC_FL_TLS_SECRETS_SET) ||
2044 (!(qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) &&
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002045 !qc->tx.nb_pto_dgrams &&
2046 (LIST_ISEMPTY(&qel->pktns->tx.frms) ||
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01002047 qc->path->prep_in_flight >= qc->path->cwnd))) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002048 TRACE_DEVEL("nothing more to do", QUIC_EV_CONN_PHPKTS, ctx->conn);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002049 /* Set the current datagram as prepared into <cbuf> if
2050 * the was already a correct packet which was previously written.
2051 */
2052 if (prv_pkt)
2053 qc_set_dg(cbuf, dglen, first_pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002054 break;
2055 }
2056
2057 pkt_type = quic_tls_level_pkt_type(tel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002058 if (!prv_pkt) {
2059 /* Leave room for the datagram header */
2060 pos += dg_headlen;
2061 end = pos + qc->path->mtu;
2062 }
2063
2064 cur_pkt = qc_build_hdshk_pkt(&pos, end, qc, pkt_type, qel, &err);
2065 switch (err) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002066 case -2:
2067 goto err;
2068 case -1:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002069 /* If there was already a correct packet present, set the
2070 * current datagram as prepared into <cbuf>.
2071 */
2072 if (prv_pkt) {
2073 qc_set_dg(cbuf, dglen, first_pkt);
2074 goto stop_build;
2075 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002076 goto out;
2077 default:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002078 total += cur_pkt->len;
2079 /* keep trace of the first packet in the datagram */
2080 if (!first_pkt)
2081 first_pkt = cur_pkt;
2082 /* Attach the current one to the previous one */
2083 if (prv_pkt)
2084 prv_pkt->next = cur_pkt;
2085 /* Let's say we have to build a new dgram */
2086 prv_pkt = NULL;
2087 dglen += cur_pkt->len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002088 /* Discard the Initial encryption keys as soon as
2089 * a handshake packet could be built.
2090 */
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002091 if (qc->state == QUIC_HS_ST_CLIENT_INITIAL &&
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002092 pkt_type == QUIC_PACKET_TYPE_HANDSHAKE) {
2093 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
2094 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, qc);
2095 qc_set_timer(ctx);
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002096 qc->state = QUIC_HS_ST_CLIENT_HANDSHAKE;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002097 }
2098 /* Special case for Initial packets: when they have all
2099 * been sent, select the next level.
2100 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002101 if (tel == QUIC_TLS_ENC_LEVEL_INITIAL &&
2102 (LIST_ISEMPTY(&qel->pktns->tx.frms) || qc->els[next_tel].pktns->tx.in_flight)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002103 tel = next_tel;
2104 qel = &qc->els[tel];
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002105 if (!LIST_ISEMPTY(&qel->pktns->tx.frms)) {
2106 /* If there is data for the next level, do not
2107 * consume a datagram. This is the case for a client
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002108 * which sends only one Initial packet, then wait
2109 * for additional CRYPTO data from the server to enter the
2110 * next level.
2111 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002112 prv_pkt = cur_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002113 }
2114 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002115 }
2116
2117 /* If we have to build a new datagram, set the current datagram as
2118 * prepared into <cbuf>.
2119 */
2120 if (!prv_pkt) {
2121 qc_set_dg(cbuf, dglen, first_pkt);
2122 first_pkt = NULL;
2123 dglen = 0;
2124 }
2125 }
2126
2127 stop_build:
2128 /* Reset <wr> writer index if in front of <rd> index */
2129 if (end_buf - pos < (int)qc->path->mtu + dg_headlen) {
2130 int rd = HA_ATOMIC_LOAD(&cbuf->rd);
2131
2132 TRACE_DEVEL("buffer full", QUIC_EV_CONN_PHPKTS, ctx->conn);
2133 if (cb_contig_space(cbuf) >= sizeof(uint16_t)) {
2134 if ((pos != spos && cbuf->wr > rd) || (pos == spos && rd <= cbuf->wr)) {
2135 /* Mark the end of contiguous data for the reader */
2136 write_u16(cb_wr(cbuf), 0);
2137 cb_add(cbuf, sizeof(uint16_t));
2138 }
2139 }
2140
2141 if (rd && rd <= cbuf->wr) {
2142 cb_wr_reset(cbuf);
2143 if (pos == spos) {
2144 /* Reuse the same buffer if nothing was built. */
2145 goto start;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002146 }
2147 }
2148 }
2149
2150 out:
2151 TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, ctx->conn);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002152 return total;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002153
2154 err:
2155 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PHPKTS, ctx->conn);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002156 return -1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002157}
2158
2159/* Send the QUIC packets which have been prepared for QUIC connections
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002160 * from <qr> ring buffer with <ctx> as I/O handler context.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002161 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002162int qc_send_ppkts(struct qring *qr, struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002163{
2164 struct quic_conn *qc;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002165 struct cbuf *cbuf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002166
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002167 qc = ctx->conn->qc;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002168 cbuf = qr->cbuf;
2169 while (cb_contig_data(cbuf)) {
2170 unsigned char *pos;
2171 struct buffer tmpbuf = { };
2172 struct quic_tx_packet *first_pkt, *pkt, *next_pkt;
2173 uint16_t dglen;
2174 size_t headlen = sizeof dglen + sizeof first_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002175 unsigned int time_sent;
2176
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002177 pos = cb_rd(cbuf);
2178 dglen = read_u16(pos);
2179 /* End of prepared datagrams.
2180 * Reset the reader index only if in front of the writer index.
2181 */
2182 if (!dglen) {
2183 int wr = HA_ATOMIC_LOAD(&cbuf->wr);
2184
2185 if (wr && wr < cbuf->rd) {
2186 cb_rd_reset(cbuf);
2187 continue;
2188 }
2189 break;
2190 }
2191
2192 pos += sizeof dglen;
2193 first_pkt = read_ptr(pos);
2194 pos += sizeof first_pkt;
2195 tmpbuf.area = (char *)pos;
2196 tmpbuf.size = tmpbuf.data = dglen;
2197
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01002198 TRACE_PROTO("to send", QUIC_EV_CONN_SPPKTS, ctx->conn);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002199 for (pkt = first_pkt; pkt; pkt = pkt->next)
2200 quic_tx_packet_refinc(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002201 if (ctx->xprt->snd_buf(qc->conn, qc->conn->xprt_ctx,
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002202 &tmpbuf, tmpbuf.data, 0) <= 0) {
2203 for (pkt = first_pkt; pkt; pkt = pkt->next)
2204 quic_tx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002205 break;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002206 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002207
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002208 cb_del(cbuf, dglen + headlen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002209 qc->tx.bytes += tmpbuf.data;
2210 time_sent = now_ms;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002211
2212 for (pkt = first_pkt; pkt; pkt = next_pkt) {
2213 pkt->time_sent = time_sent;
2214 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING) {
2215 pkt->pktns->tx.time_of_last_eliciting = time_sent;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01002216 qc->path->ifae_pkts++;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002217 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002218 qc->path->in_flight += pkt->in_flight_len;
2219 pkt->pktns->tx.in_flight += pkt->in_flight_len;
2220 if (pkt->in_flight_len)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002221 qc_set_timer(ctx);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002222 TRACE_PROTO("sent pkt", QUIC_EV_CONN_SPPKTS, ctx->conn, pkt);
2223 next_pkt = pkt->next;
Frédéric Lécaille0eb60c52021-07-19 14:48:36 +02002224 eb64_insert(&pkt->pktns->tx.pkts, &pkt->pn_node);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002225 quic_tx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002226 }
2227 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002228
2229 return 1;
2230}
2231
2232/* Build all the frames which must be sent just after the handshake have succeeded.
2233 * This is essentially NEW_CONNECTION_ID frames. A QUIC server must also send
2234 * a HANDSHAKE_DONE frame.
2235 * Return 1 if succeeded, 0 if not.
2236 */
2237static int quic_build_post_handshake_frames(struct quic_conn *conn)
2238{
2239 int i;
2240 struct quic_frame *frm;
2241
2242 /* Only servers must send a HANDSHAKE_DONE frame. */
2243 if (!objt_server(conn->conn->target)) {
2244 frm = pool_alloc(pool_head_quic_frame);
Frédéric Lécaille153d4a82021-01-06 12:12:39 +01002245 if (!frm)
2246 return 0;
2247
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002248 frm->type = QUIC_FT_HANDSHAKE_DONE;
Willy Tarreau2b718102021-04-21 07:32:39 +02002249 LIST_APPEND(&conn->tx.frms_to_send, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002250 }
2251
Frédéric Lécaille5aa41432021-01-28 16:22:52 +01002252 for (i = 1; i < conn->tx.params.active_connection_id_limit; i++) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002253 struct quic_connection_id *cid;
2254
2255 frm = pool_alloc(pool_head_quic_frame);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002256 cid = new_quic_cid(&conn->cids, i);
2257 if (!frm || !cid)
2258 goto err;
2259
2260 quic_connection_id_to_frm_cpy(frm, cid);
Willy Tarreau2b718102021-04-21 07:32:39 +02002261 LIST_APPEND(&conn->tx.frms_to_send, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002262 }
2263
2264 return 1;
2265
2266 err:
2267 free_quic_conn_cids(conn);
2268 return 0;
2269}
2270
2271/* Deallocate <l> list of ACK ranges. */
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002272void free_quic_arngs(struct quic_arngs *arngs)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002273{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002274 struct eb64_node *n;
2275 struct quic_arng_node *ar;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002276
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002277 n = eb64_first(&arngs->root);
2278 while (n) {
2279 struct eb64_node *next;
2280
2281 ar = eb64_entry(&n->node, struct quic_arng_node, first);
2282 next = eb64_next(n);
2283 eb64_delete(n);
2284 free(ar);
2285 n = next;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002286 }
2287}
2288
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002289/* Return the gap value between <p> and <q> ACK ranges where <q> follows <p> in
2290 * descending order.
2291 */
2292static inline size_t sack_gap(struct quic_arng_node *p,
2293 struct quic_arng_node *q)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002294{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002295 return p->first.key - q->last - 2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002296}
2297
2298
2299/* Remove the last elements of <ack_ranges> list of ack range updating its
2300 * encoded size until it goes below <limit>.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05002301 * Returns 1 if succeeded, 0 if not (no more element to remove).
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002302 */
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002303static int quic_rm_last_ack_ranges(struct quic_arngs *arngs, size_t limit)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002304{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002305 struct eb64_node *last, *prev;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002306
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002307 last = eb64_last(&arngs->root);
2308 while (last && arngs->enc_sz > limit) {
2309 struct quic_arng_node *last_node, *prev_node;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002310
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002311 prev = eb64_prev(last);
2312 if (!prev)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002313 return 0;
2314
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002315 last_node = eb64_entry(&last->node, struct quic_arng_node, first);
2316 prev_node = eb64_entry(&prev->node, struct quic_arng_node, first);
2317 arngs->enc_sz -= quic_int_getsize(last_node->last - last_node->first.key);
2318 arngs->enc_sz -= quic_int_getsize(sack_gap(prev_node, last_node));
2319 arngs->enc_sz -= quic_decint_size_diff(arngs->sz);
2320 --arngs->sz;
2321 eb64_delete(last);
2322 pool_free(pool_head_quic_arng, last);
2323 last = prev;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002324 }
2325
2326 return 1;
2327}
2328
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002329/* Set the encoded size of <arngs> QUIC ack ranges. */
2330static void quic_arngs_set_enc_sz(struct quic_arngs *arngs)
2331{
2332 struct eb64_node *node, *next;
2333 struct quic_arng_node *ar, *ar_next;
2334
2335 node = eb64_last(&arngs->root);
2336 if (!node)
2337 return;
2338
2339 ar = eb64_entry(&node->node, struct quic_arng_node, first);
2340 arngs->enc_sz = quic_int_getsize(ar->last) +
2341 quic_int_getsize(ar->last - ar->first.key) + quic_int_getsize(arngs->sz - 1);
2342
2343 while ((next = eb64_prev(node))) {
2344 ar_next = eb64_entry(&next->node, struct quic_arng_node, first);
2345 arngs->enc_sz += quic_int_getsize(sack_gap(ar, ar_next)) +
2346 quic_int_getsize(ar_next->last - ar_next->first.key);
2347 node = next;
2348 ar = eb64_entry(&node->node, struct quic_arng_node, first);
2349 }
2350}
2351
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002352/* Insert <ar> ack range into <argns> tree of ack ranges.
2353 * Returns the ack range node which has been inserted if succeeded, NULL if not.
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002354 */
2355static inline
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002356struct quic_arng_node *quic_insert_new_range(struct quic_arngs *arngs,
2357 struct quic_arng *ar)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002358{
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002359 struct quic_arng_node *new_ar;
2360
2361 new_ar = pool_alloc(pool_head_quic_arng);
2362 if (new_ar) {
2363 new_ar->first.key = ar->first;
2364 new_ar->last = ar->last;
2365 eb64_insert(&arngs->root, &new_ar->first);
2366 arngs->sz++;
2367 }
2368
2369 return new_ar;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002370}
2371
2372/* Update <arngs> tree of ACK ranges with <ar> as new ACK range value.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002373 * Note that this function computes the number of bytes required to encode
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002374 * this tree of ACK ranges in descending order.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002375 *
2376 * Descending order
2377 * ------------->
2378 * range1 range2
2379 * ..........|--------|..............|--------|
2380 * ^ ^ ^ ^
2381 * | | | |
2382 * last1 first1 last2 first2
2383 * ..........+--------+--------------+--------+......
2384 * diff1 gap12 diff2
2385 *
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002386 * To encode the previous list of ranges we must encode integers as follows in
2387 * descending order:
2388 * enc(last2),enc(diff2),enc(gap12),enc(diff1)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002389 * with diff1 = last1 - first1
2390 * diff2 = last2 - first2
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002391 * gap12 = first1 - last2 - 2 (>= 0)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002392 *
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002393 */
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002394int quic_update_ack_ranges_list(struct quic_arngs *arngs,
2395 struct quic_arng *ar)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002396{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002397 struct eb64_node *le;
2398 struct quic_arng_node *new_node;
2399 struct eb64_node *new;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002400
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002401 new = NULL;
2402 if (eb_is_empty(&arngs->root)) {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002403 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002404 if (!new_node)
2405 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002406
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002407 goto out;
2408 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002409
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002410 le = eb64_lookup_le(&arngs->root, ar->first);
2411 if (!le) {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002412 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002413 if (!new_node)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002414 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002415 }
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002416 else {
2417 struct quic_arng_node *le_ar =
2418 eb64_entry(&le->node, struct quic_arng_node, first);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002419
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002420 /* Already existing range */
Frédéric Lécailled3f4dd82021-06-02 15:36:12 +02002421 if (le_ar->last >= ar->last)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002422 return 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002423
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002424 if (le_ar->last + 1 >= ar->first) {
2425 le_ar->last = ar->last;
2426 new = le;
2427 new_node = le_ar;
2428 }
2429 else {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002430 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002431 if (!new_node)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002432 return 0;
Frédéric Lécaille8ba42762021-06-02 17:40:09 +02002433
2434 new = &new_node->first;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002435 }
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002436 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002437
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002438 /* Verify that the new inserted node does not overlap the nodes
2439 * which follow it.
2440 */
2441 if (new) {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002442 struct eb64_node *next;
2443 struct quic_arng_node *next_node;
2444
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002445 while ((next = eb64_next(new))) {
2446 next_node =
2447 eb64_entry(&next->node, struct quic_arng_node, first);
Frédéric Lécaillec825eba2021-06-02 17:38:13 +02002448 if (new_node->last + 1 < next_node->first.key)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002449 break;
2450
2451 if (next_node->last > new_node->last)
2452 new_node->last = next_node->last;
2453 eb64_delete(next);
Frédéric Lécaillebaea2842021-06-02 15:04:03 +02002454 pool_free(pool_head_quic_arng, next_node);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002455 /* Decrement the size of these ranges. */
2456 arngs->sz--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002457 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002458 }
2459
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002460 quic_arngs_set_enc_sz(arngs);
2461
2462 out:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002463 return 1;
2464}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002465/* Remove the header protection of packets at <el> encryption level.
2466 * Always succeeds.
2467 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002468static inline void qc_rm_hp_pkts(struct quic_enc_level *el, struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002469{
2470 struct quic_tls_ctx *tls_ctx;
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02002471 struct quic_rx_packet *pqpkt;
2472 struct mt_list *pkttmp1, pkttmp2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002473 struct quic_enc_level *app_qel;
2474
2475 TRACE_ENTER(QUIC_EV_CONN_ELRMHP, ctx->conn);
2476 app_qel = &ctx->conn->qc->els[QUIC_TLS_ENC_LEVEL_APP];
2477 /* A server must not process incoming 1-RTT packets before the handshake is complete. */
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002478 if (el == app_qel && objt_listener(ctx->conn->target) &&
2479 ctx->conn->qc->state < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002480 TRACE_PROTO("hp not removed (handshake not completed)",
2481 QUIC_EV_CONN_ELRMHP, ctx->conn);
2482 goto out;
2483 }
2484 tls_ctx = &el->tls_ctx;
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02002485 mt_list_for_each_entry_safe(pqpkt, &el->rx.pqpkts, list, pkttmp1, pkttmp2) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002486 if (!qc_do_rm_hp(pqpkt, tls_ctx, el->pktns->rx.largest_pn,
2487 pqpkt->data + pqpkt->pn_offset,
2488 pqpkt->data, pqpkt->data + pqpkt->len, ctx)) {
2489 TRACE_PROTO("hp removing error", QUIC_EV_CONN_ELRMHP, ctx->conn);
2490 /* XXX TO DO XXX */
2491 }
2492 else {
2493 /* The AAD includes the packet number field */
2494 pqpkt->aad_len = pqpkt->pn_offset + pqpkt->pnl;
2495 /* Store the packet into the tree of packets to decrypt. */
2496 pqpkt->pn_node.key = pqpkt->pn;
Frédéric Lécaille9fccace2021-06-04 10:33:32 +02002497 HA_RWLOCK_WRLOCK(QUIC_LOCK, &el->rx.rwlock);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002498 quic_rx_packet_eb64_insert(&el->rx.pkts, &pqpkt->pn_node);
Frédéric Lécaille9fccace2021-06-04 10:33:32 +02002499 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &el->rx.rwlock);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002500 TRACE_PROTO("hp removed", QUIC_EV_CONN_ELRMHP, ctx->conn, pqpkt);
2501 }
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02002502 MT_LIST_DELETE_SAFE(pkttmp1);
2503 quic_rx_packet_refdec(pqpkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002504 }
2505
2506 out:
2507 TRACE_LEAVE(QUIC_EV_CONN_ELRMHP, ctx->conn);
2508}
2509
2510/* Process all the CRYPTO frame at <el> encryption level.
2511 * Return 1 if succeeded, 0 if not.
2512 */
2513static inline int qc_treat_rx_crypto_frms(struct quic_enc_level *el,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002514 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002515{
2516 struct eb64_node *node;
2517
2518 TRACE_ENTER(QUIC_EV_CONN_RXCDATA, ctx->conn);
2519 node = eb64_first(&el->rx.crypto.frms);
2520 while (node) {
2521 struct quic_rx_crypto_frm *cf;
2522
2523 cf = eb64_entry(&node->node, struct quic_rx_crypto_frm, offset_node);
2524 if (cf->offset_node.key != el->rx.crypto.offset)
2525 break;
2526
2527 if (!qc_provide_cdata(el, ctx, cf->data, cf->len, cf->pkt, cf))
2528 goto err;
2529
2530 node = eb64_next(node);
2531 quic_rx_packet_refdec(cf->pkt);
2532 eb64_delete(&cf->offset_node);
2533 pool_free(pool_head_quic_rx_crypto_frm, cf);
2534 }
2535
2536 TRACE_LEAVE(QUIC_EV_CONN_RXCDATA, ctx->conn);
2537 return 1;
2538
2539 err:
2540 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RXCDATA, ctx->conn);
2541 return 0;
2542}
2543
2544/* Process all the packets at <el> encryption level.
2545 * Return 1 if succeeded, 0 if not.
2546 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002547int qc_treat_rx_pkts(struct quic_enc_level *el, struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002548{
2549 struct quic_tls_ctx *tls_ctx;
2550 struct eb64_node *node;
2551
2552 TRACE_ENTER(QUIC_EV_CONN_ELRXPKTS, ctx->conn);
2553 tls_ctx = &el->tls_ctx;
Frédéric Lécaille9fccace2021-06-04 10:33:32 +02002554 HA_RWLOCK_WRLOCK(QUIC_LOCK, &el->rx.rwlock);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002555 node = eb64_first(&el->rx.pkts);
2556 while (node) {
2557 struct quic_rx_packet *pkt;
2558
2559 pkt = eb64_entry(&node->node, struct quic_rx_packet, pn_node);
2560 if (!qc_pkt_decrypt(pkt, tls_ctx)) {
2561 /* Drop the packet */
2562 TRACE_PROTO("packet decryption failed -> dropped",
2563 QUIC_EV_CONN_ELRXPKTS, ctx->conn, pkt);
2564 }
2565 else {
Frédéric Lécaillec4b93ea2021-06-04 10:12:43 +02002566 if (!qc_parse_pkt_frms(pkt, ctx, el)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002567 /* Drop the packet */
2568 TRACE_PROTO("packet parsing failed -> dropped",
2569 QUIC_EV_CONN_ELRXPKTS, ctx->conn, pkt);
2570 }
2571 else {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002572 struct quic_arng ar = { .first = pkt->pn, .last = pkt->pn };
2573
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002574 if (pkt->flags & QUIC_FL_RX_PACKET_ACK_ELICITING) {
2575 el->pktns->rx.nb_ack_eliciting++;
2576 if (!(el->pktns->rx.nb_ack_eliciting & 1))
2577 el->pktns->flags |= QUIC_FL_PKTNS_ACK_REQUIRED;
2578 }
2579
2580 /* Update the largest packet number. */
2581 if (pkt->pn > el->pktns->rx.largest_pn)
2582 el->pktns->rx.largest_pn = pkt->pn;
2583
2584 /* Update the list of ranges to acknowledge. */
Frédéric Lécaille654c6912021-06-04 10:27:23 +02002585 if (!quic_update_ack_ranges_list(&el->pktns->rx.arngs, &ar))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002586 TRACE_DEVEL("Could not update ack range list",
2587 QUIC_EV_CONN_ELRXPKTS, ctx->conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002588 }
2589 }
2590 node = eb64_next(node);
2591 quic_rx_packet_eb64_delete(&pkt->pn_node);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002592 }
Frédéric Lécaille9fccace2021-06-04 10:33:32 +02002593 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &el->rx.rwlock);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002594
2595 if (!qc_treat_rx_crypto_frms(el, ctx))
2596 goto err;
2597
2598 TRACE_LEAVE(QUIC_EV_CONN_ELRXPKTS, ctx->conn);
2599 return 1;
2600
2601 err:
2602 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ELRXPKTS, ctx->conn);
2603 return 0;
2604}
2605
2606/* Called during handshakes to parse and build Initial and Handshake packets for QUIC
2607 * connections with <ctx> as I/O handler context.
2608 * Returns 1 if succeeded, 0 if not.
2609 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002610int qc_do_hdshk(struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002611{
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002612 int ret, ssl_err;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002613 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002614 enum quic_tls_enc_level tel, next_tel;
2615 struct quic_enc_level *qel, *next_qel;
2616 struct quic_tls_ctx *tls_ctx;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002617 struct qring *qr; // Tx ring
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002618
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002619 qc = ctx->conn->qc;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002620 qr = NULL;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002621 TRACE_ENTER(QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002622 ssl_err = SSL_ERROR_NONE;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002623 if (!quic_get_tls_enc_levels(&tel, &next_tel, qc->state))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002624 goto err;
2625
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002626 qel = &qc->els[tel];
2627 next_qel = &qc->els[next_tel];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002628
2629 next_level:
2630 tls_ctx = &qel->tls_ctx;
2631
2632 /* If the header protection key for this level has been derived,
2633 * remove the packet header protections.
2634 */
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02002635 if (!MT_LIST_ISEMPTY(&qel->rx.pqpkts) &&
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002636 (tls_ctx->rx.flags & QUIC_FL_TLS_SECRETS_SET))
2637 qc_rm_hp_pkts(qel, ctx);
2638
2639 if (!eb_is_empty(&qel->rx.pkts) &&
2640 !qc_treat_rx_pkts(qel, ctx))
2641 goto err;
2642
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002643 if (!qr)
2644 qr = MT_LIST_POP(qc->tx.qring_list, typeof(qr), mt_list);
2645 ret = qc_prep_hdshk_pkts(qr, ctx);
2646 if (ret == -1)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002647 goto err;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002648 else if (ret == 0)
2649 goto skip_send;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002650
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002651 if (!qc_send_ppkts(qr, ctx))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002652 goto err;
2653
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002654 skip_send:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002655 /* Check if there is something to do for the next level.
2656 */
2657 if ((next_qel->tls_ctx.rx.flags & QUIC_FL_TLS_SECRETS_SET) &&
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02002658 (!MT_LIST_ISEMPTY(&next_qel->rx.pqpkts) || !eb_is_empty(&next_qel->rx.pkts))) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002659 qel = next_qel;
2660 goto next_level;
2661 }
2662
2663 /* If the handshake has not been completed -> out! */
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002664 if (qc->state < QUIC_HS_ST_COMPLETE)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002665 goto out;
2666
2667 /* Discard the Handshake keys. */
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002668 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
2669 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002670 qc_set_timer(ctx);
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002671 if (!quic_build_post_handshake_frames(qc) ||
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002672 !qc_prep_phdshk_pkts(qr, qc) ||
2673 !qc_send_ppkts(qr, ctx))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002674 goto err;
2675
2676 out:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002677 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002678 TRACE_LEAVE(QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002679 return 1;
2680
2681 err:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002682 if (qr)
2683 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002684 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002685 return 0;
2686}
2687
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05002688/* Uninitialize <qel> QUIC encryption level. Never fails. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002689static void quic_conn_enc_level_uninit(struct quic_enc_level *qel)
2690{
2691 int i;
2692
2693 for (i = 0; i < qel->tx.crypto.nb_buf; i++) {
2694 if (qel->tx.crypto.bufs[i]) {
2695 pool_free(pool_head_quic_crypto_buf, qel->tx.crypto.bufs[i]);
2696 qel->tx.crypto.bufs[i] = NULL;
2697 }
2698 }
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002699 ha_free(&qel->tx.crypto.bufs);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002700}
2701
2702/* Initialize QUIC TLS encryption level with <level<> as level for <qc> QUIC
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05002703 * connection allocating everything needed.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002704 * Returns 1 if succeeded, 0 if not.
2705 */
2706static int quic_conn_enc_level_init(struct quic_conn *qc,
2707 enum quic_tls_enc_level level)
2708{
2709 struct quic_enc_level *qel;
2710
2711 qel = &qc->els[level];
2712 qel->level = quic_to_ssl_enc_level(level);
2713 qel->tls_ctx.rx.aead = qel->tls_ctx.tx.aead = NULL;
2714 qel->tls_ctx.rx.md = qel->tls_ctx.tx.md = NULL;
2715 qel->tls_ctx.rx.hp = qel->tls_ctx.tx.hp = NULL;
2716 qel->tls_ctx.rx.flags = 0;
2717 qel->tls_ctx.tx.flags = 0;
2718
2719 qel->rx.pkts = EB_ROOT;
Frédéric Lécaille9fccace2021-06-04 10:33:32 +02002720 HA_RWLOCK_INIT(&qel->rx.rwlock);
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02002721 MT_LIST_INIT(&qel->rx.pqpkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002722
2723 /* Allocate only one buffer. */
2724 qel->tx.crypto.bufs = malloc(sizeof *qel->tx.crypto.bufs);
2725 if (!qel->tx.crypto.bufs)
2726 goto err;
2727
2728 qel->tx.crypto.bufs[0] = pool_alloc(pool_head_quic_crypto_buf);
2729 if (!qel->tx.crypto.bufs[0])
2730 goto err;
2731
2732 qel->tx.crypto.bufs[0]->sz = 0;
2733 qel->tx.crypto.nb_buf = 1;
2734
2735 qel->tx.crypto.sz = 0;
2736 qel->tx.crypto.offset = 0;
2737
2738 return 1;
2739
2740 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002741 ha_free(&qel->tx.crypto.bufs);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002742 return 0;
2743}
2744
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002745/* Release all the memory allocated for <conn> QUIC connection. */
2746static void quic_conn_free(struct quic_conn *conn)
2747{
2748 int i;
2749
Frédéric Lécaille6de72872021-06-11 15:44:24 +02002750 if (!conn)
2751 return;
2752
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002753 free_quic_conn_cids(conn);
2754 for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++)
2755 quic_conn_enc_level_uninit(&conn->els[i]);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002756 if (conn->timer_task)
2757 task_destroy(conn->timer_task);
2758 pool_free(pool_head_quic_conn, conn);
2759}
2760
2761/* Callback called upon loss detection and PTO timer expirations. */
Willy Tarreau144f84a2021-03-02 16:09:26 +01002762static struct task *process_timer(struct task *task, void *ctx, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002763{
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002764 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002765 struct quic_conn *qc;
2766 struct quic_pktns *pktns;
2767
2768
2769 conn_ctx = task->context;
2770 qc = conn_ctx->conn->qc;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01002771 TRACE_ENTER(QUIC_EV_CONN_PTIMER, conn_ctx->conn,
2772 NULL, NULL, &qc->path->ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002773 task->expire = TICK_ETERNITY;
2774 pktns = quic_loss_pktns(qc);
2775 if (tick_isset(pktns->tx.loss_time)) {
2776 struct list lost_pkts = LIST_HEAD_INIT(lost_pkts);
2777
2778 qc_packet_loss_lookup(pktns, qc, &lost_pkts);
2779 if (!LIST_ISEMPTY(&lost_pkts))
2780 qc_release_lost_pkts(pktns, ctx, &lost_pkts, now_ms);
2781 qc_set_timer(conn_ctx);
2782 goto out;
2783 }
2784
2785 if (qc->path->in_flight) {
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002786 pktns = quic_pto_pktns(qc, qc->state >= QUIC_HS_ST_COMPLETE, NULL);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002787 pktns->tx.pto_probe = 1;
2788 }
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002789 else if (objt_server(qc->conn->target) && qc->state <= QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002790 struct quic_enc_level *iel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
2791 struct quic_enc_level *hel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
2792
2793 if (hel->tls_ctx.rx.flags == QUIC_FL_TLS_SECRETS_SET)
2794 hel->pktns->tx.pto_probe = 1;
2795 if (iel->tls_ctx.rx.flags == QUIC_FL_TLS_SECRETS_SET)
2796 iel->pktns->tx.pto_probe = 1;
2797 }
2798 qc->tx.nb_pto_dgrams = QUIC_MAX_NB_PTO_DGRAMS;
2799 tasklet_wakeup(conn_ctx->wait_event.tasklet);
2800 qc->path->loss.pto_count++;
2801
2802 out:
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01002803 TRACE_LEAVE(QUIC_EV_CONN_PTIMER, conn_ctx->conn, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002804
2805 return task;
2806}
2807
2808/* Initialize <conn> QUIC connection with <quic_initial_clients> as root of QUIC
2809 * connections used to identify the first Initial packets of client connecting
2810 * to listeners. This parameter must be NULL for QUIC connections attached
2811 * to listeners. <dcid> is the destination connection ID with <dcid_len> as length.
2812 * <scid> is the source connection ID with <scid_len> as length.
2813 * Returns 1 if succeeded, 0 if not.
2814 */
Frédéric Lécaille6de72872021-06-11 15:44:24 +02002815static struct quic_conn *qc_new_conn(unsigned int version, int ipv4,
2816 unsigned char *dcid, size_t dcid_len,
Frédéric Lécaille6b197642021-07-06 16:25:08 +02002817 unsigned char *scid, size_t scid_len, int server, void *owner)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002818{
2819 int i;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02002820 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002821 /* Initial CID. */
2822 struct quic_connection_id *icid;
2823
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02002824 TRACE_ENTER(QUIC_EV_CONN_INIT);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02002825 qc = pool_zalloc(pool_head_quic_conn);
2826 if (!qc) {
2827 TRACE_PROTO("Could not allocate a new connection", QUIC_EV_CONN_INIT);
2828 goto err;
2829 }
2830
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002831 qc->cids = EB_ROOT;
2832 /* QUIC Server (or listener). */
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02002833 if (server) {
Frédéric Lécaille6b197642021-07-06 16:25:08 +02002834 struct listener *l = owner;
2835
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002836 qc->state = QUIC_HS_ST_SERVER_INITIAL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002837 /* Copy the initial DCID. */
2838 qc->odcid.len = dcid_len;
2839 if (qc->odcid.len)
2840 memcpy(qc->odcid.data, dcid, dcid_len);
2841
2842 /* Copy the SCID as our DCID for this connection. */
2843 if (scid_len)
2844 memcpy(qc->dcid.data, scid, scid_len);
2845 qc->dcid.len = scid_len;
Frédéric Lécaille6b197642021-07-06 16:25:08 +02002846 qc->tx.qring_list = &l->rx.tx_qrings;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002847 }
2848 /* QUIC Client (outgoing connection to servers) */
2849 else {
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002850 qc->state = QUIC_HS_ST_CLIENT_INITIAL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002851 if (dcid_len)
2852 memcpy(qc->dcid.data, dcid, dcid_len);
2853 qc->dcid.len = dcid_len;
2854 }
2855
2856 /* Initialize the output buffer */
2857 qc->obuf.pos = qc->obuf.data;
2858
2859 icid = new_quic_cid(&qc->cids, 0);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02002860 if (!icid) {
2861 TRACE_PROTO("Could not allocate a new connection ID", QUIC_EV_CONN_INIT);
2862 goto err;
2863 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002864
2865 /* Select our SCID which is the first CID with 0 as sequence number. */
2866 qc->scid = icid->cid;
2867
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002868 /* Packet number spaces initialization. */
2869 for (i = 0; i < QUIC_TLS_PKTNS_MAX; i++)
2870 quic_pktns_init(&qc->pktns[i]);
2871 /* QUIC encryption level context initialization. */
2872 for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++) {
Frédéric Lécaille6de72872021-06-11 15:44:24 +02002873 if (!quic_conn_enc_level_init(qc, i)) {
2874 TRACE_PROTO("Could not initialize an encryption level", QUIC_EV_CONN_INIT);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002875 goto err;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02002876 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002877 /* Initialize the packet number space. */
2878 qc->els[i].pktns = &qc->pktns[quic_tls_pktns(i)];
2879 }
2880
Frédéric Lécaillec8d3f872021-07-06 17:19:44 +02002881 qc->version = version;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002882 /* TX part. */
2883 LIST_INIT(&qc->tx.frms_to_send);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002884 qc->tx.nb_buf = QUIC_CONN_TX_BUFS_NB;
2885 qc->tx.wbuf = qc->tx.rbuf = 0;
2886 qc->tx.bytes = 0;
2887 qc->tx.nb_pto_dgrams = 0;
2888 /* RX part. */
2889 qc->rx.bytes = 0;
2890
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002891 /* XXX TO DO: Only one path at this time. */
2892 qc->path = &qc->paths[0];
2893 quic_path_init(qc->path, ipv4, default_quic_cc_algo, qc);
2894
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02002895 TRACE_LEAVE(QUIC_EV_CONN_INIT);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002896
Frédéric Lécaille6de72872021-06-11 15:44:24 +02002897 return qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002898
2899 err:
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02002900 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_INIT);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002901 quic_conn_free(qc);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02002902 return NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002903}
2904
2905/* Initialize the timer task of <qc> QUIC connection.
2906 * Returns 1 if succeeded, 0 if not.
2907 */
2908static int quic_conn_init_timer(struct quic_conn *qc)
2909{
2910 qc->timer_task = task_new(MAX_THREADS_MASK);
2911 if (!qc->timer_task)
2912 return 0;
2913
2914 qc->timer = TICK_ETERNITY;
2915 qc->timer_task->process = process_timer;
2916 qc->timer_task->context = qc->conn->xprt_ctx;
2917
2918 return 1;
2919}
2920
2921/* Parse into <pkt> a long header located at <*buf> buffer, <end> begin a pointer to the end
2922 * past one byte of this buffer.
2923 */
2924static inline int quic_packet_read_long_header(unsigned char **buf, const unsigned char *end,
2925 struct quic_rx_packet *pkt)
2926{
2927 unsigned char dcid_len, scid_len;
2928
2929 /* Version */
2930 if (!quic_read_uint32(&pkt->version, (const unsigned char **)buf, end))
2931 return 0;
2932
2933 if (!pkt->version) { /* XXX TO DO XXX Version negotiation packet */ };
2934
2935 /* Destination Connection ID Length */
2936 dcid_len = *(*buf)++;
2937 /* We want to be sure we can read <dcid_len> bytes and one more for <scid_len> value */
2938 if (dcid_len > QUIC_CID_MAXLEN || end - *buf < dcid_len + 1)
2939 /* XXX MUST BE DROPPED */
2940 return 0;
2941
2942 if (dcid_len) {
2943 /* Check that the length of this received DCID matches the CID lengths
2944 * of our implementation for non Initials packets only.
2945 */
2946 if (pkt->type != QUIC_PACKET_TYPE_INITIAL && dcid_len != QUIC_CID_LEN)
2947 return 0;
2948
2949 memcpy(pkt->dcid.data, *buf, dcid_len);
2950 }
2951
2952 pkt->dcid.len = dcid_len;
2953 *buf += dcid_len;
2954
2955 /* Source Connection ID Length */
2956 scid_len = *(*buf)++;
2957 if (scid_len > QUIC_CID_MAXLEN || end - *buf < scid_len)
2958 /* XXX MUST BE DROPPED */
2959 return 0;
2960
2961 if (scid_len)
2962 memcpy(pkt->scid.data, *buf, scid_len);
2963 pkt->scid.len = scid_len;
2964 *buf += scid_len;
2965
2966 return 1;
2967}
2968
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02002969/* If the header protection of <pkt> packet attached to <qc> connection with <ctx>
2970 * as context may be removed, return 1, 0 if not. Also set <*qel> to the associated
2971 * encryption level matching with the packet type. <*qel> may be null if not found.
2972 * Note that <ctx> may be null (for Initial packets).
2973 */
2974static int qc_pkt_may_rm_hp(struct quic_rx_packet *pkt,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002975 struct quic_conn *qc, struct ssl_sock_ctx *ctx,
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02002976 struct quic_enc_level **qel)
2977{
2978 enum quic_tls_enc_level tel;
2979
2980 /* Special case without connection context (firt Initial packets) */
2981 if (!ctx) {
2982 *qel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
2983 return 1;
2984 }
2985
2986 tel = quic_packet_type_enc_level(pkt->type);
2987 if (tel == QUIC_TLS_ENC_LEVEL_NONE) {
2988 *qel = NULL;
2989 return 0;
2990 }
2991
2992 *qel = &qc->els[tel];
2993 if ((*qel)->tls_ctx.rx.flags & QUIC_FL_TLS_SECRETS_DCD) {
2994 TRACE_DEVEL("Discarded keys", QUIC_EV_CONN_TRMHP, ctx->conn);
2995 return 0;
2996 }
2997
2998 if (((*qel)->tls_ctx.rx.flags & QUIC_FL_TLS_SECRETS_SET) &&
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002999 (tel != QUIC_TLS_ENC_LEVEL_APP || ctx->conn->qc->state >= QUIC_HS_ST_COMPLETE))
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003000 return 1;
3001
3002 return 0;
3003}
3004
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003005/* Try to remove the header protecttion of <pkt> QUIC packet attached to <conn>
3006 * QUIC connection with <buf> as packet number field address, <end> a pointer to one
3007 * byte past the end of the buffer containing this packet and <beg> the address of
3008 * the packet first byte.
3009 * If succeeded, this function updates <*buf> to point to the next packet in the buffer.
3010 * Returns 1 if succeeded, 0 if not.
3011 */
3012static inline int qc_try_rm_hp(struct quic_rx_packet *pkt,
3013 unsigned char **buf, unsigned char *beg,
3014 const unsigned char *end,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02003015 struct quic_conn *qc, struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003016{
3017 unsigned char *pn = NULL; /* Packet number field */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003018 struct quic_enc_level *qel;
3019 /* Only for traces. */
3020 struct quic_rx_packet *qpkt_trace;
3021
3022 qpkt_trace = NULL;
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003023 TRACE_ENTER(QUIC_EV_CONN_TRMHP, ctx ? ctx->conn : NULL);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003024 /* The packet number is here. This is also the start minus
3025 * QUIC_PACKET_PN_MAXLEN of the sample used to add/remove the header
3026 * protection.
3027 */
3028 pn = *buf;
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003029 if (qc_pkt_may_rm_hp(pkt, qc, ctx, &qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003030 /* Note that the following function enables us to unprotect the packet
3031 * number and its length subsequently used to decrypt the entire
3032 * packets.
3033 */
3034 if (!qc_do_rm_hp(pkt, &qel->tls_ctx,
3035 qel->pktns->rx.largest_pn, pn, beg, end, ctx)) {
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003036 TRACE_PROTO("hp error", QUIC_EV_CONN_TRMHP, ctx ? ctx->conn : NULL);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003037 goto err;
3038 }
3039
3040 /* The AAD includes the packet number field found at <pn>. */
3041 pkt->aad_len = pn - beg + pkt->pnl;
3042 qpkt_trace = pkt;
3043 /* Store the packet */
3044 pkt->pn_node.key = pkt->pn;
Frédéric Lécaille9fccace2021-06-04 10:33:32 +02003045 HA_RWLOCK_WRLOCK(QUIC_LOCK, &qel->rx.rwlock);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003046 quic_rx_packet_eb64_insert(&qel->rx.pkts, &pkt->pn_node);
Frédéric Lécaille9fccace2021-06-04 10:33:32 +02003047 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qel->rx.rwlock);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003048 }
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003049 else if (qel) {
3050 TRACE_PROTO("hp not removed", QUIC_EV_CONN_TRMHP, ctx ? ctx->conn : NULL, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003051 pkt->pn_offset = pn - beg;
3052 quic_rx_packet_list_addq(&qel->rx.pqpkts, pkt);
3053 }
3054
3055 memcpy(pkt->data, beg, pkt->len);
3056 /* Updtate the offset of <*buf> for the next QUIC packet. */
3057 *buf = beg + pkt->len;
3058
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003059 TRACE_LEAVE(QUIC_EV_CONN_TRMHP, ctx ? ctx->conn : NULL, qpkt_trace);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003060 return 1;
3061
3062 err:
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003063 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_TRMHP, ctx ? ctx->conn : NULL, qpkt_trace);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003064 return 0;
3065}
3066
3067/* Parse the header form from <byte0> first byte of <pkt> pacekt to set type.
3068 * Also set <*long_header> to 1 if this form is long, 0 if not.
3069 */
3070static inline void qc_parse_hd_form(struct quic_rx_packet *pkt,
3071 unsigned char byte0, int *long_header)
3072{
3073 if (byte0 & QUIC_PACKET_LONG_HEADER_BIT) {
3074 pkt->type =
3075 (byte0 >> QUIC_PACKET_TYPE_SHIFT) & QUIC_PACKET_TYPE_BITMASK;
3076 *long_header = 1;
3077 }
3078 else {
3079 pkt->type = QUIC_PACKET_TYPE_SHORT;
3080 *long_header = 0;
3081 }
3082}
3083
3084static ssize_t qc_srv_pkt_rcv(unsigned char **buf, const unsigned char *end,
3085 struct quic_rx_packet *pkt,
3086 struct quic_dgram_ctx *dgram_ctx,
3087 struct sockaddr_storage *saddr)
3088{
3089 unsigned char *beg;
3090 uint64_t len;
3091 struct quic_conn *qc;
3092 struct eb_root *cids;
3093 struct ebmb_node *node;
3094 struct connection *srv_conn;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02003095 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003096 int long_header;
3097
3098 qc = NULL;
3099 TRACE_ENTER(QUIC_EV_CONN_SPKT);
3100 if (end <= *buf)
3101 goto err;
3102
3103 /* Fixed bit */
3104 if (!(**buf & QUIC_PACKET_FIXED_BIT))
3105 /* XXX TO BE DISCARDED */
3106 goto err;
3107
3108 srv_conn = dgram_ctx->owner;
3109 beg = *buf;
3110 /* Header form */
3111 qc_parse_hd_form(pkt, *(*buf)++, &long_header);
3112 if (long_header) {
3113 size_t cid_lookup_len;
3114
3115 if (!quic_packet_read_long_header(buf, end, pkt))
3116 goto err;
3117
3118 /* For Initial packets, and for servers (QUIC clients connections),
3119 * there is no Initial connection IDs storage.
3120 */
3121 if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {
3122 cids = &((struct server *)__objt_server(srv_conn->target))->cids;
3123 cid_lookup_len = pkt->dcid.len;
3124 }
3125 else {
3126 cids = &((struct server *)__objt_server(srv_conn->target))->cids;
3127 cid_lookup_len = QUIC_CID_LEN;
3128 }
3129
3130 node = ebmb_lookup(cids, pkt->dcid.data, cid_lookup_len);
3131 if (!node)
3132 goto err;
3133
3134 qc = ebmb_entry(node, struct quic_conn, scid_node);
3135
3136 if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {
3137 qc->dcid.len = pkt->scid.len;
3138 if (pkt->scid.len)
3139 memcpy(qc->dcid.data, pkt->scid.data, pkt->scid.len);
3140 }
3141
3142 if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {
3143 uint64_t token_len;
3144
3145 if (!quic_dec_int(&token_len, (const unsigned char **)buf, end) || end - *buf < token_len)
3146 goto err;
3147
3148 /* XXX TO DO XXX 0 value means "the token is not present".
3149 * A server which sends an Initial packet must not set the token.
3150 * So, a client which receives an Initial packet with a token
3151 * MUST discard the packet or generate a connection error with
3152 * PROTOCOL_VIOLATION as type.
3153 * The token must be provided in a Retry packet or NEW_TOKEN frame.
3154 */
3155 pkt->token_len = token_len;
3156 }
3157 }
3158 else {
3159 /* XXX TO DO: Short header XXX */
3160 if (end - *buf < QUIC_CID_LEN)
3161 goto err;
3162
3163 cids = &((struct server *)__objt_server(srv_conn->target))->cids;
3164 node = ebmb_lookup(cids, *buf, QUIC_CID_LEN);
3165 if (!node)
3166 goto err;
3167
3168 qc = ebmb_entry(node, struct quic_conn, scid_node);
3169 *buf += QUIC_CID_LEN;
3170 }
3171 /* Store the DCID used for this packet to check the packet which
3172 * come in this UDP datagram match with it.
3173 */
3174 if (!dgram_ctx->dcid_node)
3175 dgram_ctx->dcid_node = node;
3176 /* Only packets packets with long headers and not RETRY or VERSION as type
3177 * have a length field.
3178 */
3179 if (long_header && pkt->type != QUIC_PACKET_TYPE_RETRY && pkt->version) {
3180 if (!quic_dec_int(&len, (const unsigned char **)buf, end) || end - *buf < len)
3181 goto err;
3182
3183 pkt->len = len;
3184 }
3185 else if (!long_header) {
3186 /* A short packet is the last one of an UDP datagram. */
3187 pkt->len = end - *buf;
3188 }
3189
3190 conn_ctx = qc->conn->xprt_ctx;
3191
3192 /* Increase the total length of this packet by the header length. */
3193 pkt->len += *buf - beg;
3194 /* Do not check the DCID node before the length. */
3195 if (dgram_ctx->dcid_node != node) {
3196 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_SPKT, qc->conn);
3197 goto err;
3198 }
3199
3200 if (pkt->len > sizeof pkt->data) {
3201 TRACE_PROTO("Too big packet", QUIC_EV_CONN_SPKT, qc->conn, pkt, &pkt->len);
3202 goto err;
3203 }
3204
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003205 if (!qc_try_rm_hp(pkt, buf, beg, end, qc, conn_ctx))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003206 goto err;
3207
3208 /* Wake the tasklet of the QUIC connection packet handler. */
3209 if (conn_ctx)
3210 tasklet_wakeup(conn_ctx->wait_event.tasklet);
3211
3212 TRACE_LEAVE(QUIC_EV_CONN_SPKT, qc->conn);
3213
3214 return pkt->len;
3215
3216 err:
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +01003217 TRACE_DEVEL("Leaing in error", QUIC_EV_CONN_SPKT, qc ? qc->conn : NULL);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003218 return -1;
3219}
3220
3221static ssize_t qc_lstnr_pkt_rcv(unsigned char **buf, const unsigned char *end,
3222 struct quic_rx_packet *pkt,
3223 struct quic_dgram_ctx *dgram_ctx,
3224 struct sockaddr_storage *saddr)
3225{
3226 unsigned char *beg;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003227 struct quic_conn *qc;
3228 struct eb_root *cids;
3229 struct ebmb_node *node;
3230 struct listener *l;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02003231 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003232 int long_header = 0;
3233
3234 qc = NULL;
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02003235 conn_ctx = NULL;
Frédéric Lécaille2e7ffc92021-06-10 08:18:45 +02003236 TRACE_ENTER(QUIC_EV_CONN_LPKT, NULL, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003237 if (end <= *buf)
3238 goto err;
3239
3240 /* Fixed bit */
3241 if (!(**buf & QUIC_PACKET_FIXED_BIT)) {
3242 /* XXX TO BE DISCARDED */
3243 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
3244 goto err;
3245 }
3246
3247 l = dgram_ctx->owner;
3248 beg = *buf;
3249 /* Header form */
3250 qc_parse_hd_form(pkt, *(*buf)++, &long_header);
3251 if (long_header) {
3252 unsigned char dcid_len;
3253
3254 if (!quic_packet_read_long_header(buf, end, pkt)) {
3255 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
3256 goto err;
3257 }
3258
3259 dcid_len = pkt->dcid.len;
3260 /* For Initial packets, and for servers (QUIC clients connections),
3261 * there is no Initial connection IDs storage.
3262 */
3263 if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02003264 uint64_t token_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003265 /* DCIDs of first packets coming from clients may have the same values.
3266 * Let's distinguish them concatenating the socket addresses to the DCIDs.
3267 */
3268 quic_cid_saddr_cat(&pkt->dcid, saddr);
3269 cids = &l->rx.odcids;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02003270
3271 if (!quic_dec_int(&token_len, (const unsigned char **)buf, end) ||
3272 end - *buf < token_len) {
3273 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
3274 goto err;
3275 }
3276
3277 /* XXX TO DO XXX 0 value means "the token is not present".
3278 * A server which sends an Initial packet must not set the token.
3279 * So, a client which receives an Initial packet with a token
3280 * MUST discard the packet or generate a connection error with
3281 * PROTOCOL_VIOLATION as type.
3282 * The token must be provided in a Retry packet or NEW_TOKEN frame.
3283 */
3284 pkt->token_len = token_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003285 }
3286 else {
3287 if (pkt->dcid.len != QUIC_CID_LEN) {
3288 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
3289 goto err;
3290 }
3291
3292 cids = &l->rx.cids;
3293 }
3294
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02003295 /* Only packets packets with long headers and not RETRY or VERSION as type
3296 * have a length field.
3297 */
3298 if (pkt->type != QUIC_PACKET_TYPE_RETRY && pkt->version) {
3299 uint64_t len;
3300
3301 if (!quic_dec_int(&len, (const unsigned char **)buf, end) ||
3302 end - *buf < len) {
3303 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
3304 goto err;
3305 }
3306
3307 pkt->len = len;
3308 }
3309
3310
3311 HA_RWLOCK_RDLOCK(OTHER_LOCK, &l->rx.cids_lock);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003312 node = ebmb_lookup(cids, pkt->dcid.data, pkt->dcid.len);
3313 if (!node && pkt->type == QUIC_PACKET_TYPE_INITIAL && dcid_len == QUIC_CID_LEN &&
3314 cids == &l->rx.odcids) {
3315 /* Switch to the definitive tree ->cids containing the final CIDs. */
3316 node = ebmb_lookup(&l->rx.cids, pkt->dcid.data, dcid_len);
3317 if (node) {
3318 /* If found, signal this with NULL as special value for <cids>. */
3319 pkt->dcid.len = dcid_len;
3320 cids = NULL;
3321 }
3322 }
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02003323 HA_RWLOCK_RDUNLOCK(OTHER_LOCK, &l->rx.cids_lock);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003324
3325 if (!node) {
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02003326 int ipv4;
3327 struct quic_cid *odcid;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02003328 struct ebmb_node *n = NULL;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02003329
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003330 if (pkt->type != QUIC_PACKET_TYPE_INITIAL) {
3331 TRACE_PROTO("Non Initiial packet", QUIC_EV_CONN_LPKT);
3332 goto err;
3333 }
3334
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003335 pkt->saddr = *saddr;
3336 /* Note that here, odcid_len equals to pkt->dcid.len minus the length
3337 * of <saddr>.
3338 */
3339 pkt->odcid_len = dcid_len;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02003340 ipv4 = saddr->ss_family == AF_INET;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003341 qc = qc_new_conn(pkt->version, ipv4, pkt->dcid.data, pkt->dcid.len,
Frédéric Lécaille6b197642021-07-06 16:25:08 +02003342 pkt->scid.data, pkt->scid.len, 1, l);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003343 if (qc == NULL)
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02003344 goto err;
3345
3346 odcid = &qc->rx.params.original_destination_connection_id;
3347 /* Copy the transport parameters. */
3348 qc->rx.params = l->bind_conf->quic_params;
3349 /* Copy original_destination_connection_id transport parameter. */
3350 memcpy(odcid->data, &pkt->dcid, pkt->odcid_len);
3351 odcid->len = pkt->odcid_len;
3352 /* Copy the initial source connection ID. */
3353 quic_cid_cpy(&qc->rx.params.initial_source_connection_id, &qc->scid);
3354 qc->enc_params_len =
3355 quic_transport_params_encode(qc->enc_params,
3356 qc->enc_params + sizeof qc->enc_params,
3357 &qc->rx.params, 1);
3358 if (!qc->enc_params_len)
3359 goto err;
3360
Frédéric Lécaille497fa782021-05-31 15:16:13 +02003361 /* NOTE: the socket address has been concatenated to the destination ID
3362 * chosen by the client for Initial packets.
3363 */
3364 if (!qc_new_isecs(qc, pkt->dcid.data, pkt->odcid_len, 1)) {
3365 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc->conn);
3366 goto err;
3367 }
3368
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02003369 pkt->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003370 /* This is the DCID node sent in this packet by the client. */
3371 node = &qc->odcid_node;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02003372 /* Enqueue this packet. */
3373 MT_LIST_APPEND(&l->rx.pkts, &pkt->rx_list);
3374 /* Try to accept a new connection. */
3375 listener_accept(l);
3376
3377 HA_RWLOCK_WRLOCK(OTHER_LOCK, &l->rx.cids_lock);
3378 /* Insert the DCID the QUIC client has chosen (only for listeners) */
3379 ebmb_insert(&l->rx.odcids, &qc->odcid_node, qc->odcid.len);
3380 /* Insert our SCID, the connection ID for the QUIC client. */
3381 n = ebmb_insert(&l->rx.cids, &qc->scid_node, qc->scid.len);
3382 HA_RWLOCK_WRUNLOCK(OTHER_LOCK, &l->rx.cids_lock);
3383 if (n != &qc->scid_node) {
3384 quic_conn_free(qc);
3385 qc = ebmb_entry(n, struct quic_conn, scid_node);
3386 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003387 }
3388 else {
3389 if (pkt->type == QUIC_PACKET_TYPE_INITIAL && cids == &l->rx.odcids)
3390 qc = ebmb_entry(node, struct quic_conn, odcid_node);
3391 else
3392 qc = ebmb_entry(node, struct quic_conn, scid_node);
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02003393 conn_ctx = qc->conn->xprt_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003394 }
3395 }
3396 else {
3397 if (end - *buf < QUIC_CID_LEN) {
3398 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
3399 goto err;
3400 }
3401
3402 cids = &l->rx.cids;
3403 node = ebmb_lookup(cids, *buf, QUIC_CID_LEN);
3404 if (!node) {
3405 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
3406 goto err;
3407 }
3408
3409 qc = ebmb_entry(node, struct quic_conn, scid_node);
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02003410 conn_ctx = qc->conn->xprt_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003411 *buf += QUIC_CID_LEN;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02003412 /* A short packet is the last one of an UDP datagram. */
3413 pkt->len = end - *buf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003414 }
3415
3416 /* Store the DCID used for this packet to check the packet which
3417 * come in this UDP datagram match with it.
3418 */
3419 if (!dgram_ctx->dcid_node) {
3420 dgram_ctx->dcid_node = node;
3421 dgram_ctx->qc = qc;
3422 }
3423
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003424 /* Increase the total length of this packet by the header length. */
3425 pkt->len += *buf - beg;
3426 /* Do not check the DCID node before the length. */
3427 if (dgram_ctx->dcid_node != node) {
3428 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc->conn);
3429 goto err;
3430 }
3431
3432 if (pkt->len > sizeof pkt->data) {
3433 TRACE_PROTO("Too big packet", QUIC_EV_CONN_LPKT, qc->conn, pkt, &pkt->len);
3434 goto err;
3435 }
3436
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003437 if (!qc_try_rm_hp(pkt, buf, beg, end, qc, conn_ctx)) {
3438 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc->conn);
3439 goto err;
3440 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003441
Frédéric Lécaille2e7ffc92021-06-10 08:18:45 +02003442
3443 TRACE_PROTO("New packet", QUIC_EV_CONN_LPKT, qc->conn, pkt);
Frédéric Lécaille01abc462021-07-21 09:34:27 +02003444 /* Wake up the connection packet handler task from here only if all
3445 * the contexts have been initialized, especially the mux context
3446 * conn_ctx->conn->ctx. Note that this is ->start xprt callback which
3447 * will start it if these contexts for the connection are not already
3448 * initialized.
3449 */
3450 if (conn_ctx && HA_ATOMIC_LOAD(&conn_ctx->conn->ctx))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003451 tasklet_wakeup(conn_ctx->wait_event.tasklet);
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02003452
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003453 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc->conn, pkt);
3454
3455 return pkt->len;
3456
3457 err:
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +01003458 TRACE_DEVEL("Leaving in error", QUIC_EV_CONN_LPKT,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003459 qc ? qc->conn : NULL, pkt);
3460 return -1;
3461}
3462
3463/* This function builds into <buf> buffer a QUIC long packet header whose size may be computed
3464 * in advance. This is the reponsability of the caller to check there is enough room in this
3465 * buffer to build a long header.
3466 * Returns 0 if <type> QUIC packet type is not supported by long header, or 1 if succeeded.
3467 */
3468static int quic_build_packet_long_header(unsigned char **buf, const unsigned char *end,
3469 int type, size_t pn_len, struct quic_conn *conn)
3470{
3471 if (type > QUIC_PACKET_TYPE_RETRY)
3472 return 0;
3473
3474 /* #0 byte flags */
3475 *(*buf)++ = QUIC_PACKET_FIXED_BIT | QUIC_PACKET_LONG_HEADER_BIT |
3476 (type << QUIC_PACKET_TYPE_SHIFT) | (pn_len - 1);
3477 /* Version */
3478 quic_write_uint32(buf, end, conn->version);
3479 *(*buf)++ = conn->dcid.len;
3480 /* Destination connection ID */
3481 if (conn->dcid.len) {
3482 memcpy(*buf, conn->dcid.data, conn->dcid.len);
3483 *buf += conn->dcid.len;
3484 }
3485 /* Source connection ID */
3486 *(*buf)++ = conn->scid.len;
3487 if (conn->scid.len) {
3488 memcpy(*buf, conn->scid.data, conn->scid.len);
3489 *buf += conn->scid.len;
3490 }
3491
3492 return 1;
3493}
3494
3495/* This function builds into <buf> buffer a QUIC long packet header whose size may be computed
3496 * in advance. This is the reponsability of the caller to check there is enough room in this
3497 * buffer to build a long header.
3498 * Returns 0 if <type> QUIC packet type is not supported by long header, or 1 if succeeded.
3499 */
3500static int quic_build_packet_short_header(unsigned char **buf, const unsigned char *end,
3501 size_t pn_len, struct quic_conn *conn)
3502{
3503 /* #0 byte flags */
3504 *(*buf)++ = QUIC_PACKET_FIXED_BIT | (pn_len - 1);
3505 /* Destination connection ID */
3506 if (conn->dcid.len) {
3507 memcpy(*buf, conn->dcid.data, conn->dcid.len);
3508 *buf += conn->dcid.len;
3509 }
3510
3511 return 1;
3512}
3513
3514/* Apply QUIC header protection to the packet with <buf> as first byte address,
3515 * <pn> as address of the Packet number field, <pnlen> being this field length
3516 * with <aead> as AEAD cipher and <key> as secret key.
3517 * Returns 1 if succeeded or 0 if failed.
3518 */
3519static int quic_apply_header_protection(unsigned char *buf, unsigned char *pn, size_t pnlen,
3520 const EVP_CIPHER *aead, const unsigned char *key)
3521{
3522 int i, ret, outlen;
3523 EVP_CIPHER_CTX *ctx;
3524 /* We need an IV of at least 5 bytes: one byte for bytes #0
3525 * and at most 4 bytes for the packet number
3526 */
3527 unsigned char mask[5] = {0};
3528
3529 ret = 0;
3530 ctx = EVP_CIPHER_CTX_new();
3531 if (!ctx)
3532 return 0;
3533
3534 if (!EVP_EncryptInit_ex(ctx, aead, NULL, key, pn + QUIC_PACKET_PN_MAXLEN) ||
3535 !EVP_EncryptUpdate(ctx, mask, &outlen, mask, sizeof mask) ||
3536 !EVP_EncryptFinal_ex(ctx, mask, &outlen))
3537 goto out;
3538
3539 *buf ^= mask[0] & (*buf & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f);
3540 for (i = 0; i < pnlen; i++)
3541 pn[i] ^= mask[i + 1];
3542
3543 ret = 1;
3544
3545 out:
3546 EVP_CIPHER_CTX_free(ctx);
3547
3548 return ret;
3549}
3550
3551/* Reduce the encoded size of <ack_frm> ACK frame removing the last
3552 * ACK ranges if needed to a value below <limit> in bytes.
3553 * Return 1 if succeeded, 0 if not.
3554 */
3555static int quic_ack_frm_reduce_sz(struct quic_frame *ack_frm, size_t limit)
3556{
3557 size_t room, ack_delay_sz;
3558
3559 ack_delay_sz = quic_int_getsize(ack_frm->tx_ack.ack_delay);
3560 /* A frame is made of 1 byte for the frame type. */
3561 room = limit - ack_delay_sz - 1;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003562 if (!quic_rm_last_ack_ranges(ack_frm->tx_ack.arngs, room))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003563 return 0;
3564
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003565 return 1 + ack_delay_sz + ack_frm->tx_ack.arngs->enc_sz;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003566}
3567
3568/* Prepare as most as possible CRYPTO frames from prebuilt CRYPTO frames for <qel>
3569 * encryption level to be encoded in a buffer with <room> as available room,
Frédéric Lécailleea604992020-12-24 13:01:37 +01003570 * and <*len> the packet Length field initialized with the number of bytes already present
3571 * in this buffer which must be taken into an account for the Length packet field value.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003572 * <headlen> is the number of bytes already present in this packet before building
Frédéric Lécailleea604992020-12-24 13:01:37 +01003573 * CRYPTO frames.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003574 * This is the responsibility of the caller to check that <*len> < <room> as this is
3575 * the responsibility to check that <headlen> < quic_path_prep_data(conn->path).
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003576 * Update consequently <*len> to reflect the size of these CRYPTO frames built
3577 * by this function. Also attach these CRYPTO frames to <pkt> QUIC packet.
3578 * Return 1 if succeeded, 0 if not.
3579 */
3580static inline int qc_build_cfrms(struct quic_tx_packet *pkt,
Frédéric Lécailleea604992020-12-24 13:01:37 +01003581 size_t room, size_t *len, size_t headlen,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003582 struct quic_enc_level *qel,
3583 struct quic_conn *conn)
3584{
Frédéric Lécailleea604992020-12-24 13:01:37 +01003585 int ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003586 struct quic_tx_frm *cf, *cfbak;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003587
Frédéric Lécailleea604992020-12-24 13:01:37 +01003588 ret = 0;
3589 /* If we are not probing we must take into an account the congestion
3590 * control window.
3591 */
3592 if (!conn->tx.nb_pto_dgrams)
3593 room = QUIC_MIN(room, quic_path_prep_data(conn->path) - headlen);
3594 TRACE_PROTO("************** CRYPTO frames build (headlen)",
3595 QUIC_EV_CONN_BCFRMS, conn->conn, &headlen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003596 list_for_each_entry_safe(cf, cfbak, &qel->pktns->tx.frms, list) {
3597 /* header length, data length, frame length. */
3598 size_t hlen, dlen, cflen;
3599
Frédéric Lécailleea604992020-12-24 13:01:37 +01003600 TRACE_PROTO(" New CRYPTO frame build (room, len)",
3601 QUIC_EV_CONN_BCFRMS, conn->conn, &room, len);
3602 if (!room)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003603 break;
3604
3605 /* Compute the length of this CRYPTO frame header */
3606 hlen = 1 + quic_int_getsize(cf->crypto.offset);
3607 /* Compute the data length of this CRyPTO frame. */
3608 dlen = max_stream_data_size(room, *len + hlen, cf->crypto.len);
Frédéric Lécailleea604992020-12-24 13:01:37 +01003609 TRACE_PROTO(" CRYPTO data length (hlen, crypto.len, dlen)",
3610 QUIC_EV_CONN_BCFRMS, conn->conn, &hlen, &cf->crypto.len, &dlen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003611 if (!dlen)
3612 break;
3613
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003614 pkt->cdata_len += dlen;
3615 /* CRYPTO frame length. */
3616 cflen = hlen + quic_int_getsize(dlen) + dlen;
Frédéric Lécailleea604992020-12-24 13:01:37 +01003617 TRACE_PROTO(" CRYPTO frame length (cflen)",
3618 QUIC_EV_CONN_BCFRMS, conn->conn, &cflen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003619 /* Add the CRYPTO data length and its encoded length to the packet
3620 * length and the length of this length.
3621 */
3622 *len += cflen;
Frédéric Lécailleea604992020-12-24 13:01:37 +01003623 room -= cflen;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003624 if (dlen == cf->crypto.len) {
3625 /* <cf> CRYPTO data have been consumed. */
Willy Tarreau2b718102021-04-21 07:32:39 +02003626 LIST_DELETE(&cf->list);
3627 LIST_APPEND(&pkt->frms, &cf->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003628 }
3629 else {
3630 struct quic_tx_frm *new_cf;
3631
3632 new_cf = pool_alloc(pool_head_quic_tx_frm);
3633 if (!new_cf) {
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +01003634 TRACE_PROTO("No memory for new crypto frame", QUIC_EV_CONN_BCFRMS, conn->conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003635 return 0;
3636 }
3637
3638 new_cf->type = QUIC_FT_CRYPTO;
3639 new_cf->crypto.len = dlen;
3640 new_cf->crypto.offset = cf->crypto.offset;
Willy Tarreau2b718102021-04-21 07:32:39 +02003641 LIST_APPEND(&pkt->frms, &new_cf->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003642 /* Consume <dlen> bytes of the current frame. */
3643 cf->crypto.len -= dlen;
3644 cf->crypto.offset += dlen;
3645 }
Frédéric Lécailleea604992020-12-24 13:01:37 +01003646 ret = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003647 }
3648
Frédéric Lécailleea604992020-12-24 13:01:37 +01003649 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003650}
3651
3652/* This function builds a clear handshake packet used during a QUIC TLS handshakes
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003653 * into a buffer with <pos> as position pointer and <qel> as QUIC TLS encryption level
3654 * for <conn> QUIC connection and <qel> as QUIC TLS encryption level, filling the buffer
3655 * with as much as CRYPTO.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003656 * The trailing QUIC_TLS_TAG_LEN bytes of this packet are not built. But they are
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003657 * reserved so that to ensure there is enough room to build this AEAD TAG after
3658 * having successfully returned from this function and to ensure the position
3659 * pointer <pos> may be safely incremented by QUIC_TLS_TAG_LEN.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003660 * This function also update the value of <buf_pn> pointer to point to the packet
3661 * number field in this packet. <pn_len> will also have the packet number
3662 * length as value.
3663 *
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003664 * Return 1 packet if succeeded or 0 if failed (not enough room in the buffer to build
3665 * this packet, QUIC_TLS_TAG_LEN bytes for the encryption TAG included).
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003666 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003667static int qc_do_build_hdshk_pkt(unsigned char *pos, const unsigned char *end,
3668 struct quic_tx_packet *pkt, int pkt_type,
3669 int64_t pn, size_t *pn_len,
3670 unsigned char **buf_pn,
3671 struct quic_enc_level *qel,
3672 struct quic_conn *conn)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003673{
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003674 unsigned char *beg;
Frédéric Lécailleea604992020-12-24 13:01:37 +01003675 size_t len, len_frms, token_fields_len, padding_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003676 struct quic_frame frm = { .type = QUIC_FT_CRYPTO, };
3677 struct quic_frame ack_frm = { .type = QUIC_FT_ACK, };
3678 struct quic_crypto *crypto = &frm.crypto;
3679 size_t ack_frm_len;
3680 int64_t largest_acked_pn;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003681 int add_ping_frm;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003682
Frédéric Lécailleea604992020-12-24 13:01:37 +01003683 /* Length field value with CRYPTO frames if present. */
3684 len_frms = 0;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003685 beg = pos;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003686 /* When not probing and not acking, reduce the size of this buffer to respect
3687 * the congestion controller window.
3688 */
3689 if (!conn->tx.nb_pto_dgrams && !(qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED)) {
3690 size_t path_room;
3691
3692 path_room = quic_path_prep_data(conn->path);
3693 if (end - beg > path_room)
3694 end = beg + path_room;
3695 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003696
3697 /* For a server, the token field of an Initial packet is empty. */
3698 token_fields_len = pkt_type == QUIC_PACKET_TYPE_INITIAL ? 1 : 0;
3699
3700 /* Check there is enough room to build the header followed by a token. */
3701 if (end - pos < QUIC_LONG_PACKET_MINLEN + conn->dcid.len +
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003702 conn->scid.len + token_fields_len + QUIC_TLS_TAG_LEN) {
3703 ssize_t room = end - pos;
3704 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
3705 conn->conn, NULL, NULL, &room);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003706 goto err;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003707 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003708
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003709 largest_acked_pn = qel->pktns->tx.largest_acked_pn;
3710 /* packet number length */
3711 *pn_len = quic_packet_number_length(pn, largest_acked_pn);
3712
3713 quic_build_packet_long_header(&pos, end, pkt_type, *pn_len, conn);
3714
3715 /* Encode the token length (0) for an Initial packet. */
3716 if (pkt_type == QUIC_PACKET_TYPE_INITIAL)
3717 *pos++ = 0;
3718
3719 /* Build an ACK frame if required. */
3720 ack_frm_len = 0;
3721 if ((qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) &&
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003722 !eb_is_empty(&qel->pktns->rx.arngs.root)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003723 ack_frm.tx_ack.ack_delay = 0;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003724 ack_frm.tx_ack.arngs = &qel->pktns->rx.arngs;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003725 ack_frm_len = quic_ack_frm_reduce_sz(&ack_frm, end - pos);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003726 if (!ack_frm_len) {
3727 ssize_t room = end - pos;
3728 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
3729 conn->conn, NULL, NULL, &room);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003730 goto err;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003731 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003732
3733 qel->pktns->flags &= ~QUIC_FL_PKTNS_ACK_REQUIRED;
3734 }
3735
3736 /* Length field value without the CRYPTO frames data length. */
3737 len = ack_frm_len + *pn_len;
Frédéric Lécailleea604992020-12-24 13:01:37 +01003738 if (!LIST_ISEMPTY(&qel->pktns->tx.frms)) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003739 ssize_t room = end - pos;
Frédéric Lécailleea604992020-12-24 13:01:37 +01003740
3741 len_frms = len + QUIC_TLS_TAG_LEN;
3742 if (!qc_build_cfrms(pkt, end - pos, &len_frms, pos - beg, qel, conn)) {
3743 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
3744 conn->conn, NULL, NULL, &room);
3745 goto err;
3746 }
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003747 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003748
3749 add_ping_frm = 0;
3750 padding_len = 0;
3751 if (objt_server(conn->conn->target) &&
3752 pkt_type == QUIC_PACKET_TYPE_INITIAL &&
3753 len < QUIC_INITIAL_PACKET_MINLEN) {
3754 len += padding_len = QUIC_INITIAL_PACKET_MINLEN - len;
3755 }
3756 else if (LIST_ISEMPTY(&pkt->frms)) {
3757 if (qel->pktns->tx.pto_probe) {
3758 /* If we cannot send a CRYPTO frame, we send a PING frame. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003759 add_ping_frm = 1;
3760 len += 1;
3761 }
3762 /* If there is no frame at all to follow, add at least a PADDING frame. */
3763 if (!ack_frm_len)
3764 len += padding_len = QUIC_PACKET_PN_MAXLEN - *pn_len;
3765 }
3766
3767 /* Length (of the remaining data). Must not fail because, the buffer size
3768 * has been checked above. Note that we have reserved QUIC_TLS_TAG_LEN bytes
3769 * for the encryption TAG. It must be taken into an account for the length
3770 * of this packet.
3771 */
Frédéric Lécailleea604992020-12-24 13:01:37 +01003772 if (len_frms)
3773 len = len_frms;
3774 else
3775 len += QUIC_TLS_TAG_LEN;
3776 quic_enc_int(&pos, end, len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003777
3778 /* Packet number field address. */
3779 *buf_pn = pos;
3780
3781 /* Packet number encoding. */
3782 quic_packet_number_encode(&pos, end, pn, *pn_len);
3783
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01003784 if (ack_frm_len && !qc_build_frm(&pos, end, &ack_frm, pkt, conn)) {
3785 ssize_t room = end - pos;
3786 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
3787 conn->conn, NULL, NULL, &room);
3788 goto err;
3789 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003790
3791 /* Crypto frame */
3792 if (!LIST_ISEMPTY(&pkt->frms)) {
3793 struct quic_tx_frm *cf;
3794
3795 list_for_each_entry(cf, &pkt->frms, list) {
3796 crypto->offset = cf->crypto.offset;
3797 crypto->len = cf->crypto.len;
3798 crypto->qel = qel;
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01003799 if (!qc_build_frm(&pos, end, &frm, pkt, conn)) {
3800 ssize_t room = end - pos;
3801 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
3802 conn->conn, NULL, NULL, &room);
3803 goto err;
3804 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003805 }
3806 }
3807
3808 /* Build a PING frame if needed. */
3809 if (add_ping_frm) {
3810 frm.type = QUIC_FT_PING;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003811 if (!qc_build_frm(&pos, end, &frm, pkt, conn)) {
3812 ssize_t room = end - pos;
3813 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
3814 conn->conn, NULL, NULL, &room);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003815 goto err;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003816 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003817 }
3818
3819 /* Build a PADDING frame if needed. */
3820 if (padding_len) {
3821 frm.type = QUIC_FT_PADDING;
3822 frm.padding.len = padding_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003823 if (!qc_build_frm(&pos, end, &frm, pkt, conn)) {
3824 ssize_t room = end - pos;
3825 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
3826 conn->conn, NULL, NULL, &room);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003827 goto err;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003828 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003829 }
3830
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003831 /* Always reset this variable as this function has no idea
3832 * if it was set. It is handle by the loss detection timer.
3833 */
3834 qel->pktns->tx.pto_probe = 0;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003835 pkt->len = pos - beg;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003836
3837 out:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003838 return 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003839
3840 err:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003841 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003842}
3843
3844static inline void quic_tx_packet_init(struct quic_tx_packet *pkt)
3845{
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003846 pkt->len = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003847 pkt->cdata_len = 0;
3848 pkt->in_flight_len = 0;
3849 LIST_INIT(&pkt->frms);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003850 pkt->next = NULL;
3851 pkt->refcnt = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003852}
3853
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003854/* Free <pkt> TX packet which has not already attached to any tree. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003855static inline void free_quic_tx_packet(struct quic_tx_packet *pkt)
3856{
3857 struct quic_tx_frm *frm, *frmbak;
3858
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003859 if (!pkt)
3860 return;
3861
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003862 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02003863 LIST_DELETE(&frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003864 pool_free(pool_head_quic_tx_frm, frm);
3865 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003866 quic_tx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003867}
3868
3869/* Build a handshake packet into <buf> packet buffer with <pkt_type> as packet
3870 * type for <qc> QUIC connection from CRYPTO data stream at <*offset> offset to
3871 * be encrypted at <qel> encryption level.
3872 * Return -2 if the packet could not be encrypted for any reason, -1 if there was
3873 * not enough room in <buf> to build the packet, or the size of the built packet
3874 * if succeeded (may be zero if there is too much crypto data in flight to build the packet).
3875 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003876static struct quic_tx_packet *qc_build_hdshk_pkt(unsigned char **pos,
3877 const unsigned char *buf_end,
3878 struct quic_conn *qc, int pkt_type,
3879 struct quic_enc_level *qel, int *err)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003880{
3881 /* The pointer to the packet number field. */
3882 unsigned char *buf_pn;
3883 unsigned char *beg, *end, *payload;
3884 int64_t pn;
3885 size_t pn_len, payload_len, aad_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003886 struct quic_tls_ctx *tls_ctx;
3887 struct quic_tx_packet *pkt;
3888
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01003889 TRACE_ENTER(QUIC_EV_CONN_HPKT, qc->conn, NULL, qel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003890 *err = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003891 pkt = pool_alloc(pool_head_quic_tx_packet);
3892 if (!pkt) {
3893 TRACE_DEVEL("Not enough memory for a new packet", QUIC_EV_CONN_HPKT, qc->conn);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003894 *err = -2;
3895 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003896 }
3897
3898 quic_tx_packet_init(pkt);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003899 beg = *pos;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003900 pn_len = 0;
3901 buf_pn = NULL;
3902 pn = qel->pktns->tx.next_pn + 1;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003903 if (!qc_do_build_hdshk_pkt(*pos, buf_end, pkt, pkt_type, pn, &pn_len, &buf_pn, qel, qc)) {
3904 *err = -1;
3905 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003906 }
3907
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003908 end = beg + pkt->len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003909 payload = buf_pn + pn_len;
3910 payload_len = end - payload;
3911 aad_len = payload - beg;
3912
3913 tls_ctx = &qel->tls_ctx;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003914 if (!quic_packet_encrypt(payload, payload_len, beg, aad_len, pn, tls_ctx, qc->conn)) {
3915 *err = -2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003916 goto err;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003917 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003918
3919 end += QUIC_TLS_TAG_LEN;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003920 pkt->len += QUIC_TLS_TAG_LEN;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003921 if (!quic_apply_header_protection(beg, buf_pn, pn_len,
3922 tls_ctx->tx.hp, tls_ctx->tx.hp_key)) {
3923 TRACE_DEVEL("Could not apply the header protection", QUIC_EV_CONN_HPKT, qc->conn);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003924 *err = -2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003925 goto err;
3926 }
3927
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003928 /* Now that a correct packet is built, let us consume <*pos> buffer. */
3929 *pos = end;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003930 /* Consume a packet number. */
3931 ++qel->pktns->tx.next_pn;
3932 /* Attach the built packet to its tree. */
3933 pkt->pn_node.key = qel->pktns->tx.next_pn;
3934 /* Set the packet in fligth length for in flight packet only. */
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003935 if (pkt->flags & QUIC_FL_TX_PACKET_IN_FLIGHT) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003936 pkt->in_flight_len = pkt->len;
3937 qc->path->prep_in_flight += pkt->len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003938 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003939 pkt->pktns = qel->pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003940 TRACE_LEAVE(QUIC_EV_CONN_HPKT, qc->conn, pkt);
3941
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003942 return pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003943
3944 err:
3945 free_quic_tx_packet(pkt);
3946 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_HPKT, qc->conn);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003947 return NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003948}
3949
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003950/* Prepare a clear post handhskake packet for <conn> QUIC connection.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003951 * Return the length of this packet if succeeded, -1 <wbuf> was full.
3952 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003953static int qc_do_build_phdshk_apkt(unsigned char *pos, const unsigned char *end,
3954 struct quic_tx_packet *pkt,
3955 int64_t pn, size_t *pn_len,
3956 unsigned char **buf_pn,
3957 struct quic_enc_level *qel,
3958 struct quic_conn *conn)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003959{
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003960 const unsigned char *beg;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003961 struct quic_frame *frm, *sfrm;
3962 struct quic_frame ack_frm = { .type = QUIC_FT_ACK, };
3963 size_t fake_len, ack_frm_len;
3964 int64_t largest_acked_pn;
3965
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01003966 TRACE_ENTER(QUIC_EV_CONN_PAPKT, conn->conn);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003967 beg = pos;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003968 /* When not probing and not acking, reduce the size of this buffer to respect
3969 * the congestion controller window.
3970 */
3971 if (!conn->tx.nb_pto_dgrams && !(qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED)) {
3972 size_t path_room;
3973
3974 path_room = quic_path_prep_data(conn->path);
3975 if (end - beg > path_room)
3976 end = beg + path_room;
3977 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003978 largest_acked_pn = qel->pktns->tx.largest_acked_pn;
3979 /* Packet number length */
3980 *pn_len = quic_packet_number_length(pn, largest_acked_pn);
3981 /* Check there is enough room to build this packet (without payload). */
3982 if (end - pos < QUIC_SHORT_PACKET_MINLEN + sizeof_quic_cid(&conn->dcid) +
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01003983 *pn_len + QUIC_TLS_TAG_LEN) {
3984 ssize_t room = end - pos;
3985 TRACE_PROTO("Not enough room", QUIC_EV_CONN_PAPKT,
3986 conn->conn, NULL, NULL, &room);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003987 goto err;
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01003988 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003989
3990 /* Reserve enough room at the end of the packet for the AEAD TAG. */
3991 end -= QUIC_TLS_TAG_LEN;
3992 quic_build_packet_short_header(&pos, end, *pn_len, conn);
3993 /* Packet number field. */
3994 *buf_pn = pos;
3995 /* Packet number encoding. */
3996 quic_packet_number_encode(&pos, end, pn, *pn_len);
3997
3998 /* Build an ACK frame if required. */
3999 ack_frm_len = 0;
4000 if ((qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) &&
Frédéric Lécaille8090b512020-11-30 16:19:22 +01004001 !eb_is_empty(&qel->pktns->rx.arngs.root)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004002 ack_frm.tx_ack.ack_delay = 0;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01004003 ack_frm.tx_ack.arngs = &qel->pktns->rx.arngs;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004004 ack_frm_len = quic_ack_frm_reduce_sz(&ack_frm, end - pos);
4005 if (!ack_frm_len)
4006 goto err;
4007
4008 qel->pktns->flags &= ~QUIC_FL_PKTNS_ACK_REQUIRED;
4009 }
4010
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01004011 if (ack_frm_len && !qc_build_frm(&pos, end, &ack_frm, pkt, conn)) {
4012 ssize_t room = end - pos;
4013 TRACE_PROTO("Not enough room", QUIC_EV_CONN_PAPKT,
4014 conn->conn, NULL, NULL, &room);
4015 goto err;
4016 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004017
4018 fake_len = ack_frm_len;
4019 if (!LIST_ISEMPTY(&qel->pktns->tx.frms) &&
Frédéric Lécailleea604992020-12-24 13:01:37 +01004020 !qc_build_cfrms(pkt, end - pos, &fake_len, pos - beg, qel, conn)) {
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01004021 ssize_t room = end - pos;
4022 TRACE_PROTO("some CRYPTO frames could not be built",
4023 QUIC_EV_CONN_PAPKT, conn->conn, NULL, NULL, &room);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004024 goto err;
4025 }
4026
4027 /* Crypto frame */
4028 if (!LIST_ISEMPTY(&pkt->frms)) {
4029 struct quic_frame frm = { .type = QUIC_FT_CRYPTO, };
4030 struct quic_crypto *crypto = &frm.crypto;
4031 struct quic_tx_frm *cf;
4032
4033 list_for_each_entry(cf, &pkt->frms, list) {
4034 crypto->offset = cf->crypto.offset;
4035 crypto->len = cf->crypto.len;
4036 crypto->qel = qel;
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01004037 if (!qc_build_frm(&pos, end, &frm, pkt, conn)) {
4038 ssize_t room = end - pos;
4039 TRACE_PROTO("Not enough room", QUIC_EV_CONN_PAPKT,
4040 conn->conn, NULL, NULL, &room);
4041 goto err;
4042 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004043 }
4044 }
4045
4046 /* Encode a maximum of frames. */
4047 list_for_each_entry_safe(frm, sfrm, &conn->tx.frms_to_send, list) {
4048 unsigned char *ppos;
4049
4050 ppos = pos;
4051 if (!qc_build_frm(&ppos, end, frm, pkt, conn)) {
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01004052 TRACE_DEVEL("Frames not built", QUIC_EV_CONN_PAPKT, conn->conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004053 break;
4054 }
4055
Willy Tarreau2b718102021-04-21 07:32:39 +02004056 LIST_DELETE(&frm->list);
4057 LIST_APPEND(&pkt->frms, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004058 pos = ppos;
4059 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004060 pkt->len = pos - beg;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004061
4062 out:
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01004063 TRACE_LEAVE(QUIC_EV_CONN_PAPKT, conn->conn);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004064 return 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004065
4066 err:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004067 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004068}
4069
4070/* Prepare a post handhskake packet at Application encryption level for <conn>
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05004071 * QUIC connection.
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004072 * Return the length if succeeded, -1 if <wbuf> was full, -2 in case of major error
4073 * (allocation or encryption failures).
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004074 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004075static struct quic_tx_packet *qc_build_phdshk_apkt(unsigned char **pos,
4076 const unsigned char *buf_end,
4077 struct quic_conn *qc, int *err)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004078{
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05004079 /* A pointer to the packet number field in <buf> */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004080 unsigned char *buf_pn;
4081 unsigned char *beg, *end, *payload;
4082 int64_t pn;
4083 size_t pn_len, aad_len, payload_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004084 struct quic_tls_ctx *tls_ctx;
4085 struct quic_enc_level *qel;
4086 struct quic_tx_packet *pkt;
4087
4088 TRACE_ENTER(QUIC_EV_CONN_PAPKT, qc->conn);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004089 *err = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004090 pkt = pool_alloc(pool_head_quic_tx_packet);
4091 if (!pkt) {
4092 TRACE_DEVEL("Not enough memory for a new packet", QUIC_EV_CONN_PAPKT, qc->conn);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004093 *err = -2;
4094 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004095 }
4096
4097 quic_tx_packet_init(pkt);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004098 beg = *pos;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004099 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
4100 pn_len = 0;
4101 buf_pn = NULL;
4102 pn = qel->pktns->tx.next_pn + 1;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004103 if (!qc_do_build_phdshk_apkt(*pos, buf_end, pkt, pn, &pn_len, &buf_pn, qel, qc)) {
4104 *err = -1;
4105 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004106 }
4107
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004108 end = beg + pkt->len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004109 payload = buf_pn + pn_len;
4110 payload_len = end - payload;
4111 aad_len = payload - beg;
4112
4113 tls_ctx = &qel->tls_ctx;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004114 if (!quic_packet_encrypt(payload, payload_len, beg, aad_len, pn, tls_ctx, qc->conn)) {
4115 *err = -2;
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01004116 goto err;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004117 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004118
4119 end += QUIC_TLS_TAG_LEN;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004120 pkt->len += QUIC_TLS_TAG_LEN;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004121 if (!quic_apply_header_protection(beg, buf_pn, pn_len,
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004122 tls_ctx->tx.hp, tls_ctx->tx.hp_key)) {
4123 TRACE_DEVEL("Could not apply the header protection", QUIC_EV_CONN_PAPKT, qc->conn);
4124 *err = -2;
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01004125 goto err;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004126 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004127
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004128 /* Now that a correct packet is built, let us consume <*pos> buffer. */
4129 *pos = end;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004130 /* Consume a packet number. */
4131 ++qel->pktns->tx.next_pn;
4132 /* Attach the built packet to its tree. */
4133 pkt->pn_node.key = qel->pktns->tx.next_pn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004134 /* Set the packet in fligth length for in flight packet only. */
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004135 if (pkt->flags & QUIC_FL_TX_PACKET_IN_FLIGHT) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004136 pkt->in_flight_len = pkt->len;
4137 qc->path->prep_in_flight += pkt->len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004138 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004139 pkt->pktns = qel->pktns;
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01004140 TRACE_LEAVE(QUIC_EV_CONN_PAPKT, qc->conn, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004141
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004142 return pkt;
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01004143
4144 err:
4145 free_quic_tx_packet(pkt);
4146 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PAPKT, qc->conn);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004147 return NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004148}
4149
4150/* Prepare a maximum of QUIC Application level packets from <ctx> QUIC
4151 * connection I/O handler context.
4152 * Returns 1 if succeeded, 0 if not.
4153 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004154int qc_prep_phdshk_pkts(struct qring *qr, struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004155{
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004156 struct cbuf *cbuf;
4157 unsigned char *end_buf, *end, *pos;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004158 struct quic_enc_level *qel;
4159
4160 TRACE_ENTER(QUIC_EV_CONN_PAPKTS, qc->conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004161 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004162 cbuf = qr->cbuf;
4163 pos = cb_wr(cbuf);
4164 end = end_buf = pos + cb_contig_space(cbuf);
4165 while (pos < end_buf) {
4166 int err;
4167 uint16_t dglen;
4168 struct quic_tx_packet *pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004169
4170 if (!(qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) &&
4171 (LIST_ISEMPTY(&qel->pktns->tx.frms) ||
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004172 qc->path->prep_in_flight >= qc->path->cwnd)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004173 TRACE_DEVEL("nothing more to do",
4174 QUIC_EV_CONN_PAPKTS, qc->conn);
4175 break;
4176 }
4177
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004178 /* Leave room for the datagram header */
4179 pos += sizeof dglen + sizeof pkt;
4180 if (end - pos > qc->path->mtu)
4181 end = pos + qc->path->mtu;
4182 pkt = qc_build_phdshk_apkt(&pos, end, qc, &err);
4183 switch (err) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004184 case -1:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004185 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004186 case -2:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004187 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004188 default:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004189 dglen = pkt->len;
4190 qc_set_dg(cbuf, dglen, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004191 }
4192 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004193 out:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004194 TRACE_LEAVE(QUIC_EV_CONN_PAPKTS, qc->conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004195 return 1;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004196
4197 err:
4198 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PAPKTS, qc->conn);
4199 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004200}
4201
4202/* QUIC connection packet handler task. */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004203struct task *quic_conn_io_cb(struct task *t, void *context, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004204{
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02004205 struct ssl_sock_ctx *ctx = context;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004206
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004207 if (ctx->conn->qc->state < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004208 qc_do_hdshk(ctx);
4209 }
4210 else {
4211 struct quic_conn *qc = ctx->conn->qc;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004212 struct qring *qr;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004213
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004214 qr = MT_LIST_POP(qc->tx.qring_list, typeof(qr), mt_list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004215 /* XXX TO DO: may fail!!! XXX */
4216 qc_treat_rx_pkts(&qc->els[QUIC_TLS_ENC_LEVEL_APP], ctx);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004217 qc_prep_phdshk_pkts(qr, qc);
4218 qc_send_ppkts(qr, ctx);
4219 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004220 }
4221
Willy Tarreau74163142021-03-13 11:30:19 +01004222 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004223}
4224
Frédéric Lécaillefbe3b772021-03-03 16:23:44 +01004225/* Copy up to <count> bytes from connection <conn> internal stream storage into buffer <buf>.
4226 * Return the number of bytes which have been copied.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004227 */
Frédéric Lécaillefbe3b772021-03-03 16:23:44 +01004228static size_t quic_conn_to_buf(struct connection *conn, void *xprt_ctx,
4229 struct buffer *buf, size_t count, int flags)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004230{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004231 size_t try, done = 0;
4232
4233 if (!conn_ctrl_ready(conn))
4234 return 0;
4235
4236 if (!fd_recv_ready(conn->handle.fd))
4237 return 0;
4238
4239 conn->flags &= ~CO_FL_WAIT_ROOM;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004240
4241 /* read the largest possible block. For this, we perform only one call
4242 * to recv() unless the buffer wraps and we exactly fill the first hunk,
Frédéric Lécaillefbe3b772021-03-03 16:23:44 +01004243 * in which case we accept to do it once again.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004244 */
4245 while (count > 0) {
4246 try = b_contig_space(buf);
4247 if (!try)
4248 break;
4249
4250 if (try > count)
4251 try = count;
4252
Frédéric Lécaillefbe3b772021-03-03 16:23:44 +01004253 b_add(buf, try);
4254 done += try;
4255 count -= try;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004256 }
4257
4258 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN) && done)
4259 conn->flags &= ~CO_FL_WAIT_L4_CONN;
4260
4261 leave:
4262 return done;
4263
4264 read0:
4265 conn_sock_read0(conn);
4266 conn->flags &= ~CO_FL_WAIT_L4_CONN;
4267
4268 /* Now a final check for a possible asynchronous low-level error
4269 * report. This can happen when a connection receives a reset
4270 * after a shutdown, both POLL_HUP and POLL_ERR are queued, and
4271 * we might have come from there by just checking POLL_HUP instead
4272 * of recv()'s return value 0, so we have no way to tell there was
4273 * an error without checking.
4274 */
Willy Tarreauf5090652021-04-06 17:23:40 +02004275 if (unlikely(fdtab[conn->handle.fd].state & FD_POLL_ERR))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004276 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
4277 goto leave;
4278}
4279
4280
4281/* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s
4282 * socket. <flags> may contain some CO_SFL_* flags to hint the system about
4283 * other pending data for example, but this flag is ignored at the moment.
4284 * Only one call to send() is performed, unless the buffer wraps, in which case
4285 * a second call may be performed. The connection's flags are updated with
4286 * whatever special event is detected (error, empty). The caller is responsible
4287 * for taking care of those events and avoiding the call if inappropriate. The
4288 * function does not call the connection's polling update function, so the caller
4289 * is responsible for this. It's up to the caller to update the buffer's contents
4290 * based on the return value.
4291 */
4292static size_t quic_conn_from_buf(struct connection *conn, void *xprt_ctx, const struct buffer *buf, size_t count, int flags)
4293{
4294 ssize_t ret;
4295 size_t try, done;
4296 int send_flag;
4297
4298 if (!conn_ctrl_ready(conn))
4299 return 0;
4300
4301 if (!fd_send_ready(conn->handle.fd))
4302 return 0;
4303
4304 done = 0;
4305 /* send the largest possible block. For this we perform only one call
4306 * to send() unless the buffer wraps and we exactly fill the first hunk,
4307 * in which case we accept to do it once again.
4308 */
4309 while (count) {
4310 try = b_contig_data(buf, done);
4311 if (try > count)
4312 try = count;
4313
4314 send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
4315 if (try < count || flags & CO_SFL_MSG_MORE)
4316 send_flag |= MSG_MORE;
4317
4318 ret = sendto(conn->handle.fd, b_peek(buf, done), try, send_flag,
4319 (struct sockaddr *)conn->dst, get_addr_len(conn->dst));
4320 if (ret > 0) {
4321 count -= ret;
4322 done += ret;
4323
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05004324 /* A send succeeded, so we can consider ourself connected */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004325 conn->flags |= CO_FL_WAIT_L4L6;
4326 /* if the system buffer is full, don't insist */
4327 if (ret < try)
4328 break;
4329 }
4330 else if (ret == 0 || errno == EAGAIN || errno == ENOTCONN || errno == EINPROGRESS) {
4331 /* nothing written, we need to poll for write first */
4332 fd_cant_send(conn->handle.fd);
4333 break;
4334 }
4335 else if (errno != EINTR) {
4336 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
4337 break;
4338 }
4339 }
4340 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN) && done)
4341 conn->flags &= ~CO_FL_WAIT_L4_CONN;
4342
4343 if (done > 0) {
4344 /* we count the total bytes sent, and the send rate for 32-byte
4345 * blocks. The reason for the latter is that freq_ctr are
4346 * limited to 4GB and that it's not enough per second.
4347 */
4348 _HA_ATOMIC_ADD(&global.out_bytes, done);
4349 update_freq_ctr(&global.out_32bps, (done + 16) / 32);
4350 }
4351 return done;
4352}
4353
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01004354/* Called from the upper layer, to subscribe <es> to events <event_type>. The
4355 * event subscriber <es> is not allowed to change from a previous call as long
4356 * as at least one event is still subscribed. The <event_type> must only be a
4357 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
4358 */
4359static int quic_conn_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
4360{
4361 return conn_subscribe(conn, xprt_ctx, event_type, es);
4362}
4363
4364/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
4365 * The <es> pointer is not allowed to differ from the one passed to the
4366 * subscribe() call. It always returns zero.
4367 */
4368static int quic_conn_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
4369{
4370 return conn_unsubscribe(conn, xprt_ctx, event_type, es);
4371}
4372
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004373/* Initialize a QUIC connection (quic_conn struct) to be attached to <conn>
4374 * connection with <xprt_ctx> as address of the xprt context.
4375 * Returns 1 if succeeded, 0 if not.
4376 */
4377static int qc_conn_init(struct connection *conn, void **xprt_ctx)
4378{
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02004379 struct ssl_sock_ctx *ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004380
4381 TRACE_ENTER(QUIC_EV_CONN_NEW, conn);
4382
4383 if (*xprt_ctx)
4384 goto out;
4385
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004386 ctx = pool_alloc(pool_head_quic_conn_ctx);
4387 if (!ctx) {
4388 conn->err_code = CO_ER_SYS_MEMLIM;
4389 goto err;
4390 }
4391
4392 ctx->wait_event.tasklet = tasklet_new();
4393 if (!ctx->wait_event.tasklet) {
4394 conn->err_code = CO_ER_SYS_MEMLIM;
4395 goto err;
4396 }
4397
4398 ctx->wait_event.tasklet->process = quic_conn_io_cb;
4399 ctx->wait_event.tasklet->context = ctx;
4400 ctx->wait_event.events = 0;
4401 ctx->conn = conn;
4402 ctx->subs = NULL;
4403 ctx->xprt_ctx = NULL;
4404
4405 ctx->xprt = xprt_get(XPRT_QUIC);
4406 if (objt_server(conn->target)) {
4407 /* Server */
4408 struct server *srv = __objt_server(conn->target);
4409 unsigned char dcid[QUIC_CID_LEN];
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004410 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004411 int ssl_err, ipv4;
4412
4413 ssl_err = SSL_ERROR_NONE;
4414 if (RAND_bytes(dcid, sizeof dcid) != 1)
4415 goto err;
4416
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004417 ipv4 = conn->dst->ss_family == AF_INET;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004418 qc = qc_new_conn(QUIC_PROTOCOL_VERSION_DRAFT_28, ipv4,
Frédéric Lécaille6b197642021-07-06 16:25:08 +02004419 dcid, sizeof dcid, NULL, 0, 0, srv);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004420 if (qc == NULL)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004421 goto err;
4422
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004423 /* Insert our SCID, the connection ID for the QUIC client. */
4424 ebmb_insert(&srv->cids, &qc->scid_node, qc->scid.len);
4425
4426 conn->qc = qc;
4427 qc->conn = conn;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004428 if (!qc_new_isecs(qc, dcid, sizeof dcid, 0))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004429 goto err;
4430
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004431 if (ssl_bio_and_sess_init(conn, srv->ssl_ctx.ctx,
4432 &ctx->ssl, &ctx->bio, ha_quic_meth, ctx) == -1)
4433 goto err;
4434
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004435 qc->rx.params = srv->quic_params;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004436 /* Copy the initial source connection ID. */
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004437 quic_cid_cpy(&qc->rx.params.initial_source_connection_id, &qc->scid);
4438 qc->enc_params_len =
4439 quic_transport_params_encode(qc->enc_params, qc->enc_params + sizeof qc->enc_params,
4440 &qc->rx.params, 0);
4441 if (!qc->enc_params_len)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004442 goto err;
4443
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004444 SSL_set_quic_transport_params(ctx->ssl, qc->enc_params, qc->enc_params_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004445 SSL_set_connect_state(ctx->ssl);
4446 ssl_err = SSL_do_handshake(ctx->ssl);
4447 if (ssl_err != 1) {
4448 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
4449 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
4450 TRACE_PROTO("SSL handshake",
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004451 QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004452 }
4453 else {
4454 TRACE_DEVEL("SSL handshake error",
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004455 QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004456 goto err;
4457 }
4458 }
4459 }
4460 else if (objt_listener(conn->target)) {
4461 /* Listener */
4462 struct bind_conf *bc = __objt_listener(conn->target)->bind_conf;
Frédéric Lécaille1e1aad42021-05-27 14:57:09 +02004463 struct quic_conn *qc = ctx->conn->qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004464
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004465 if (ssl_bio_and_sess_init(conn, bc->initial_ctx,
4466 &ctx->ssl, &ctx->bio, ha_quic_meth, ctx) == -1)
4467 goto err;
4468
Frédéric Lécaille1e1aad42021-05-27 14:57:09 +02004469 SSL_set_quic_transport_params(ctx->ssl, qc->enc_params, qc->enc_params_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004470 SSL_set_accept_state(ctx->ssl);
4471 }
4472
4473 *xprt_ctx = ctx;
4474
4475 /* Leave init state and start handshake */
4476 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004477
4478 out:
4479 TRACE_LEAVE(QUIC_EV_CONN_NEW, conn);
4480
4481 return 0;
4482
4483 err:
Willy Tarreau7deb28c2021-05-10 07:40:27 +02004484 if (ctx && ctx->wait_event.tasklet)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004485 tasklet_free(ctx->wait_event.tasklet);
4486 pool_free(pool_head_quic_conn_ctx, ctx);
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +01004487 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_NEW, conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004488 return -1;
4489}
4490
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004491/* Start the QUIC transport layer */
4492static int qc_xprt_start(struct connection *conn, void *ctx)
4493{
4494 struct quic_conn *qc;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02004495 struct ssl_sock_ctx *qctx = ctx;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004496
4497 qc = conn->qc;
4498 if (!quic_conn_init_timer(qc)) {
4499 TRACE_PROTO("Non initialized timer", QUIC_EV_CONN_LPKT, conn);
4500 return 0;
4501 }
4502
4503 tasklet_wakeup(qctx->wait_event.tasklet);
4504 return 1;
4505}
4506
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004507/* transport-layer operations for QUIC connections. */
4508static struct xprt_ops ssl_quic = {
4509 .snd_buf = quic_conn_from_buf,
4510 .rcv_buf = quic_conn_to_buf,
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01004511 .subscribe = quic_conn_subscribe,
4512 .unsubscribe = quic_conn_unsubscribe,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004513 .init = qc_conn_init,
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004514 .start = qc_xprt_start,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004515 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
4516 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
4517 .name = "QUIC",
4518};
4519
4520__attribute__((constructor))
4521static void __quic_conn_init(void)
4522{
4523 ha_quic_meth = BIO_meth_new(0x666, "ha QUIC methods");
4524 xprt_register(XPRT_QUIC, &ssl_quic);
4525}
4526
4527__attribute__((destructor))
4528static void __quic_conn_deinit(void)
4529{
4530 BIO_meth_free(ha_quic_meth);
4531}
4532
4533/* Read all the QUIC packets found in <buf> with <len> as length (typically a UDP
4534 * datagram), <ctx> being the QUIC I/O handler context, from QUIC connections,
4535 * calling <func> function;
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05004536 * Return the number of bytes read if succeeded, -1 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004537 */
4538static ssize_t quic_dgram_read(char *buf, size_t len, void *owner,
4539 struct sockaddr_storage *saddr, qpkt_read_func *func)
4540{
4541 unsigned char *pos;
4542 const unsigned char *end;
4543 struct quic_dgram_ctx dgram_ctx = {
4544 .dcid_node = NULL,
4545 .owner = owner,
4546 };
4547
4548 pos = (unsigned char *)buf;
4549 end = pos + len;
4550
4551 do {
4552 int ret;
4553 struct quic_rx_packet *pkt;
4554
Willy Tarreaue4498932021-03-22 21:13:05 +01004555 pkt = pool_zalloc(pool_head_quic_rx_packet);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004556 if (!pkt)
4557 goto err;
4558
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004559 quic_rx_packet_refinc(pkt);
4560 ret = func(&pos, end, pkt, &dgram_ctx, saddr);
4561 if (ret == -1) {
4562 size_t pkt_len;
4563
4564 pkt_len = pkt->len;
4565 free_quic_rx_packet(pkt);
4566 /* If the packet length could not be found, we cannot continue. */
4567 if (!pkt_len)
4568 break;
4569 }
4570 } while (pos < end);
4571
4572 /* Increasing the received bytes counter by the UDP datagram length
4573 * if this datagram could be associated to a connection.
4574 */
4575 if (dgram_ctx.qc)
4576 dgram_ctx.qc->rx.bytes += len;
4577
4578 return pos - (unsigned char *)buf;
4579
4580 err:
4581 return -1;
4582}
4583
4584ssize_t quic_lstnr_dgram_read(char *buf, size_t len, void *owner,
4585 struct sockaddr_storage *saddr)
4586{
4587 return quic_dgram_read(buf, len, owner, saddr, qc_lstnr_pkt_rcv);
4588}
4589
4590ssize_t quic_srv_dgram_read(char *buf, size_t len, void *owner,
4591 struct sockaddr_storage *saddr)
4592{
4593 return quic_dgram_read(buf, len, owner, saddr, qc_srv_pkt_rcv);
4594}
4595
4596/* QUIC I/O handler for connection to local listeners or remove servers
4597 * depending on <listener> boolean value, with <fd> as socket file
4598 * descriptor and <ctx> as context.
4599 */
4600static size_t quic_conn_handler(int fd, void *ctx, qpkt_read_func *func)
4601{
4602 ssize_t ret;
4603 size_t done = 0;
4604 struct buffer *buf = get_trash_chunk();
4605 /* Source address */
4606 struct sockaddr_storage saddr = {0};
4607 socklen_t saddrlen = sizeof saddr;
4608
4609 if (!fd_recv_ready(fd))
4610 return 0;
4611
4612 do {
4613 ret = recvfrom(fd, buf->area, buf->size, 0,
4614 (struct sockaddr *)&saddr, &saddrlen);
4615 if (ret < 0) {
4616 if (errno == EINTR)
4617 continue;
4618 if (errno == EAGAIN)
4619 fd_cant_recv(fd);
4620 goto out;
4621 }
4622 } while (0);
4623
4624 done = buf->data = ret;
4625 quic_dgram_read(buf->area, buf->data, ctx, &saddr, func);
4626
4627 out:
4628 return done;
4629}
4630
4631/* QUIC I/O handler for connections to local listeners with <fd> as socket
4632 * file descriptor.
4633 */
4634void quic_fd_handler(int fd)
4635{
Willy Tarreauf5090652021-04-06 17:23:40 +02004636 if (fdtab[fd].state & FD_POLL_IN)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004637 quic_conn_handler(fd, fdtab[fd].owner, &qc_lstnr_pkt_rcv);
4638}
4639
4640/* QUIC I/O handler for connections to remote servers with <fd> as socket
4641 * file descriptor.
4642 */
4643void quic_conn_fd_handler(int fd)
4644{
Willy Tarreauf5090652021-04-06 17:23:40 +02004645 if (fdtab[fd].state & FD_POLL_IN)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004646 quic_conn_handler(fd, fdtab[fd].owner, &qc_srv_pkt_rcv);
4647}
4648
4649/*
4650 * Local variables:
4651 * c-indent-level: 8
4652 * c-basic-offset: 8
4653 * End:
4654 */