blob: 0048f7b1325f016751f44e2f119c34ffdfdf7432 [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
Amaury Denoyelleeb01f592021-10-07 16:44:05 +020025#include <import/ebmbtree.h>
26
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010027#include <haproxy/buf-t.h>
28#include <haproxy/compat.h>
29#include <haproxy/api.h>
30#include <haproxy/debug.h>
31#include <haproxy/tools.h>
32#include <haproxy/ticks.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010033
34#include <haproxy/connection.h>
35#include <haproxy/fd.h>
36#include <haproxy/freq_ctr.h>
37#include <haproxy/global.h>
Frédéric Lécailledfbae762021-02-18 09:59:01 +010038#include <haproxy/h3.h>
Amaury Denoyelle154bc7f2021-11-12 16:09:54 +010039#include <haproxy/hq_interop.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010040#include <haproxy/log.h>
Frédéric Lécailledfbae762021-02-18 09:59:01 +010041#include <haproxy/mux_quic.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010042#include <haproxy/pipe.h>
43#include <haproxy/proxy.h>
44#include <haproxy/quic_cc.h>
45#include <haproxy/quic_frame.h>
46#include <haproxy/quic_loss.h>
Amaury Denoyellecfa2d562022-01-19 16:01:05 +010047#include <haproxy/quic_sock.h>
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +020048#include <haproxy/cbuf.h>
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +010049#include <haproxy/proto_quic.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010050#include <haproxy/quic_tls.h>
Amaury Denoyelle118b2cb2021-11-25 16:05:16 +010051#include <haproxy/sink.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010052#include <haproxy/ssl_sock.h>
53#include <haproxy/stream_interface.h>
54#include <haproxy/task.h>
55#include <haproxy/trace.h>
56#include <haproxy/xprt_quic.h>
57
Amaury Denoyellea22d8602021-11-10 15:17:56 +010058/* list of supported QUIC versions by this implementation */
59static int quic_supported_version[] = {
60 0x00000001,
Frédéric Lécaille56d3e1b2021-11-19 14:32:52 +010061 0xff00001d, /* draft-29 */
Amaury Denoyellea22d8602021-11-10 15:17:56 +010062
63 /* placeholder, do not add entry after this */
64 0x0
65};
66
Frédéric Lécaille48fc74a2021-09-03 16:42:19 +020067/* This is the values of some QUIC transport parameters when absent.
68 * Should be used to initialize any transport parameters (local or remote)
69 * before updating them with customized values.
70 */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010071struct quic_transport_params quic_dflt_transport_params = {
Frédéric Lécaille46be7e92021-10-22 15:04:27 +020072 .max_udp_payload_size = QUIC_PACKET_MAXLEN,
Frédéric Lécaille785c9c92021-05-17 16:42:21 +020073 .ack_delay_exponent = QUIC_DFLT_ACK_DELAY_COMPONENT,
74 .max_ack_delay = QUIC_DFLT_MAX_ACK_DELAY,
Frédéric Lécaille48fc74a2021-09-03 16:42:19 +020075 .active_connection_id_limit = QUIC_ACTIVE_CONNECTION_ID_LIMIT,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010076};
77
78/* trace source and events */
79static void quic_trace(enum trace_level level, uint64_t mask, \
80 const struct trace_source *src,
81 const struct ist where, const struct ist func,
82 const void *a1, const void *a2, const void *a3, const void *a4);
83
84static const struct trace_event quic_trace_events[] = {
85 { .mask = QUIC_EV_CONN_NEW, .name = "new_conn", .desc = "new QUIC connection" },
86 { .mask = QUIC_EV_CONN_INIT, .name = "new_conn_init", .desc = "new QUIC connection initialization" },
87 { .mask = QUIC_EV_CONN_ISEC, .name = "init_secs", .desc = "initial secrets derivation" },
88 { .mask = QUIC_EV_CONN_RSEC, .name = "read_secs", .desc = "read secrets derivation" },
89 { .mask = QUIC_EV_CONN_WSEC, .name = "write_secs", .desc = "write secrets derivation" },
90 { .mask = QUIC_EV_CONN_LPKT, .name = "lstnr_packet", .desc = "new listener received packet" },
91 { .mask = QUIC_EV_CONN_SPKT, .name = "srv_packet", .desc = "new server received packet" },
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +050092 { .mask = QUIC_EV_CONN_ENCPKT, .name = "enc_hdshk_pkt", .desc = "handhshake packet encryption" },
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010093 { .mask = QUIC_EV_CONN_HPKT, .name = "hdshk_pkt", .desc = "handhshake packet building" },
94 { .mask = QUIC_EV_CONN_PAPKT, .name = "phdshk_apkt", .desc = "post handhshake application packet preparation" },
95 { .mask = QUIC_EV_CONN_PAPKTS, .name = "phdshk_apkts", .desc = "post handhshake application packets preparation" },
96 { .mask = QUIC_EV_CONN_HDSHK, .name = "hdshk", .desc = "SSL handhshake processing" },
97 { .mask = QUIC_EV_CONN_RMHP, .name = "rm_hp", .desc = "Remove header protection" },
98 { .mask = QUIC_EV_CONN_PRSHPKT, .name = "parse_hpkt", .desc = "parse handshake packet" },
99 { .mask = QUIC_EV_CONN_PRSAPKT, .name = "parse_apkt", .desc = "parse application packet" },
100 { .mask = QUIC_EV_CONN_PRSFRM, .name = "parse_frm", .desc = "parse frame" },
101 { .mask = QUIC_EV_CONN_PRSAFRM, .name = "parse_ack_frm", .desc = "parse ACK frame" },
102 { .mask = QUIC_EV_CONN_BFRM, .name = "build_frm", .desc = "build frame" },
103 { .mask = QUIC_EV_CONN_PHPKTS, .name = "phdshk_pkts", .desc = "handhshake packets preparation" },
104 { .mask = QUIC_EV_CONN_TRMHP, .name = "rm_hp_try", .desc = "header protection removing try" },
105 { .mask = QUIC_EV_CONN_ELRMHP, .name = "el_rm_hp", .desc = "handshake enc. level header protection removing" },
106 { .mask = QUIC_EV_CONN_ELRXPKTS, .name = "el_treat_rx_pkts", .desc = "handshake enc. level rx packets treatment" },
107 { .mask = QUIC_EV_CONN_SSLDATA, .name = "ssl_provide_data", .desc = "CRYPTO data provision to TLS stack" },
108 { .mask = QUIC_EV_CONN_RXCDATA, .name = "el_treat_rx_cfrms",.desc = "enc. level RX CRYPTO frames processing"},
109 { .mask = QUIC_EV_CONN_ADDDATA, .name = "add_hdshk_data", .desc = "TLS stack ->add_handshake_data() call"},
110 { .mask = QUIC_EV_CONN_FFLIGHT, .name = "flush_flight", .desc = "TLS stack ->flush_flight() call"},
111 { .mask = QUIC_EV_CONN_SSLALERT, .name = "send_alert", .desc = "TLS stack ->send_alert() call"},
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100112 { .mask = QUIC_EV_CONN_RTTUPDT, .name = "rtt_updt", .desc = "RTT sampling" },
113 { .mask = QUIC_EV_CONN_SPPKTS, .name = "sppkts", .desc = "send prepared packets" },
114 { .mask = QUIC_EV_CONN_PKTLOSS, .name = "pktloss", .desc = "detect packet loss" },
115 { .mask = QUIC_EV_CONN_STIMER, .name = "stimer", .desc = "set timer" },
116 { .mask = QUIC_EV_CONN_PTIMER, .name = "ptimer", .desc = "process timer" },
117 { .mask = QUIC_EV_CONN_SPTO, .name = "spto", .desc = "set PTO" },
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +0100118 { .mask = QUIC_EV_CONN_BCFRMS, .name = "bcfrms", .desc = "build CRYPTO data frames" },
Frédéric Lécaille513b4f22021-09-20 15:23:17 +0200119 { .mask = QUIC_EV_CONN_XPRTSEND, .name = "xprt_send", .desc = "sending XRPT subscription" },
120 { .mask = QUIC_EV_CONN_XPRTRECV, .name = "xprt_recv", .desc = "receiving XRPT subscription" },
Frédéric Lécailleba85acd2022-01-11 14:43:50 +0100121 { .mask = QUIC_EV_CONN_FREED, .name = "conn_freed", .desc = "releasing conn. memory" },
122 { .mask = QUIC_EV_CONN_CLOSE, .name = "conn_close", .desc = "closing conn." },
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100123 { /* end */ }
124};
125
126static const struct name_desc quic_trace_lockon_args[4] = {
127 /* arg1 */ { /* already used by the connection */ },
128 /* arg2 */ { .name="quic", .desc="QUIC transport" },
129 /* arg3 */ { },
130 /* arg4 */ { }
131};
132
133static const struct name_desc quic_trace_decoding[] = {
134#define QUIC_VERB_CLEAN 1
135 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
136 { /* end */ }
137};
138
139
140struct trace_source trace_quic = {
141 .name = IST("quic"),
142 .desc = "QUIC xprt",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100143 .arg_def = TRC_ARG1_QCON, /* TRACE()'s first argument is always a quic_conn */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100144 .default_cb = quic_trace,
145 .known_events = quic_trace_events,
146 .lockon_args = quic_trace_lockon_args,
147 .decoding = quic_trace_decoding,
148 .report_events = ~0, /* report everything by default */
149};
150
151#define TRACE_SOURCE &trace_quic
152INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
153
154static BIO_METHOD *ha_quic_meth;
155
Frédéric Lécailledbe25af2021-08-04 15:27:37 +0200156DECLARE_POOL(pool_head_quic_tx_ring, "quic_tx_ring_pool", QUIC_TX_RING_BUFSZ);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +0100157DECLARE_POOL(pool_head_quic_conn_rxbuf, "quic_conn_rxbuf", QUIC_CONN_RX_BUFSZ);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100158DECLARE_STATIC_POOL(pool_head_quic_conn_ctx,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +0200159 "quic_conn_ctx_pool", sizeof(struct ssl_sock_ctx));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100160DECLARE_STATIC_POOL(pool_head_quic_conn, "quic_conn", sizeof(struct quic_conn));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100161DECLARE_POOL(pool_head_quic_connection_id,
162 "quic_connnection_id_pool", sizeof(struct quic_connection_id));
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +0100163DECLARE_POOL(pool_head_quic_dgram, "quic_dgram", sizeof(struct quic_dgram));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100164DECLARE_POOL(pool_head_quic_rx_packet, "quic_rx_packet_pool", sizeof(struct quic_rx_packet));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100165DECLARE_POOL(pool_head_quic_tx_packet, "quic_tx_packet_pool", sizeof(struct quic_tx_packet));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100166DECLARE_STATIC_POOL(pool_head_quic_rx_crypto_frm, "quic_rx_crypto_frm_pool", sizeof(struct quic_rx_crypto_frm));
Frédéric Lécailledfbae762021-02-18 09:59:01 +0100167DECLARE_POOL(pool_head_quic_rx_strm_frm, "quic_rx_strm_frm", sizeof(struct quic_rx_strm_frm));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100168DECLARE_STATIC_POOL(pool_head_quic_crypto_buf, "quic_crypto_buf_pool", sizeof(struct quic_crypto_buf));
Frédéric Lécaille0ad04582021-07-27 14:51:54 +0200169DECLARE_POOL(pool_head_quic_frame, "quic_frame_pool", sizeof(struct quic_frame));
Frédéric Lécaille8090b512020-11-30 16:19:22 +0100170DECLARE_STATIC_POOL(pool_head_quic_arng, "quic_arng_pool", sizeof(struct quic_arng_node));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100171
Frédéric Lécaille9445abc2021-08-04 10:49:51 +0200172static struct quic_tx_packet *qc_build_pkt(unsigned char **pos, const unsigned char *buf_end,
Frédéric Lécaille4436cb62021-08-16 12:06:46 +0200173 struct quic_enc_level *qel,
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +0100174 struct quic_conn *qc, size_t dglen, int pkt_type,
Frédéric Lécaillece6602d2022-01-17 11:06:10 +0100175 int padding, int ack, int probe, int cc, int *err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100176
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{
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100205 const struct quic_conn *qc = a1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100206
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100207 if (qc) {
208 const struct quic_tls_secrets *secs;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100209
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100210 chunk_appendf(&trace_buf, " : qc@%p", qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100211 if ((mask & QUIC_EV_CONN_INIT) && qc) {
212 chunk_appendf(&trace_buf, "\n odcid");
213 quic_cid_dump(&trace_buf, &qc->odcid);
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100214 chunk_appendf(&trace_buf, "\n dcid");
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100215 quic_cid_dump(&trace_buf, &qc->dcid);
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100216 chunk_appendf(&trace_buf, "\n scid");
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100217 quic_cid_dump(&trace_buf, &qc->scid);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100218 }
219
220 if (mask & QUIC_EV_CONN_ADDDATA) {
221 const enum ssl_encryption_level_t *level = a2;
222 const size_t *len = a3;
223
224 if (level) {
225 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
226
227 chunk_appendf(&trace_buf, " el=%c(%d)", quic_enc_level_char(lvl), lvl);
228 }
229 if (len)
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100230 chunk_appendf(&trace_buf, " len=%llu", (unsigned long long)*len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100231 }
232 if ((mask & QUIC_EV_CONN_ISEC) && qc) {
233 /* Initial read & write secrets. */
234 enum quic_tls_enc_level level = QUIC_TLS_ENC_LEVEL_INITIAL;
235 const unsigned char *rx_sec = a2;
236 const unsigned char *tx_sec = a3;
237
238 secs = &qc->els[level].tls_ctx.rx;
239 if (secs->flags & QUIC_FL_TLS_SECRETS_SET) {
240 chunk_appendf(&trace_buf, "\n RX el=%c", quic_enc_level_char(level));
241 if (rx_sec)
242 quic_tls_secret_hexdump(&trace_buf, rx_sec, 32);
243 quic_tls_keys_hexdump(&trace_buf, secs);
244 }
245 secs = &qc->els[level].tls_ctx.tx;
246 if (secs->flags & QUIC_FL_TLS_SECRETS_SET) {
247 chunk_appendf(&trace_buf, "\n TX el=%c", quic_enc_level_char(level));
248 if (tx_sec)
249 quic_tls_secret_hexdump(&trace_buf, tx_sec, 32);
250 quic_tls_keys_hexdump(&trace_buf, secs);
251 }
252 }
253 if (mask & (QUIC_EV_CONN_RSEC|QUIC_EV_CONN_RWSEC)) {
254 const enum ssl_encryption_level_t *level = a2;
255 const unsigned char *secret = a3;
256 const size_t *secret_len = a4;
257
258 if (level) {
259 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
260
261 chunk_appendf(&trace_buf, "\n RX el=%c", quic_enc_level_char(lvl));
262 if (secret && secret_len)
263 quic_tls_secret_hexdump(&trace_buf, secret, *secret_len);
264 secs = &qc->els[lvl].tls_ctx.rx;
265 if (secs->flags & QUIC_FL_TLS_SECRETS_SET)
266 quic_tls_keys_hexdump(&trace_buf, secs);
267 }
268 }
269
270 if (mask & (QUIC_EV_CONN_WSEC|QUIC_EV_CONN_RWSEC)) {
271 const enum ssl_encryption_level_t *level = a2;
272 const unsigned char *secret = a3;
273 const size_t *secret_len = a4;
274
275 if (level) {
276 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
277
278 chunk_appendf(&trace_buf, "\n TX el=%c", quic_enc_level_char(lvl));
279 if (secret && secret_len)
280 quic_tls_secret_hexdump(&trace_buf, secret, *secret_len);
281 secs = &qc->els[lvl].tls_ctx.tx;
282 if (secs->flags & QUIC_FL_TLS_SECRETS_SET)
283 quic_tls_keys_hexdump(&trace_buf, secs);
284 }
285
286 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100287
Frédéric Lécaille133e8a72020-12-18 09:33:27 +0100288 if (mask & (QUIC_EV_CONN_HPKT|QUIC_EV_CONN_PAPKT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100289 const struct quic_tx_packet *pkt = a2;
290 const struct quic_enc_level *qel = a3;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100291 const ssize_t *room = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100292
293 if (qel) {
Amaury Denoyelle4fd53d72021-12-21 14:28:26 +0100294 const struct quic_pktns *pktns = qc->pktns;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100295 chunk_appendf(&trace_buf, " qel=%c cwnd=%llu ppif=%lld pif=%llu "
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100296 "if=%llu pp=%u",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100297 quic_enc_level_char_from_qel(qel, qc),
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100298 (unsigned long long)qc->path->cwnd,
299 (unsigned long long)qc->path->prep_in_flight,
300 (unsigned long long)qc->path->in_flight,
301 (unsigned long long)pktns->tx.in_flight,
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100302 pktns->tx.pto_probe);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100303 }
304 if (pkt) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +0200305 const struct quic_frame *frm;
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100306 if (pkt->pn_node.key != (uint64_t)-1)
307 chunk_appendf(&trace_buf, " pn=%llu",(ull)pkt->pn_node.key);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100308 list_for_each_entry(frm, &pkt->frms, list)
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100309 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaille8b6ea172022-01-17 10:51:43 +0100310 chunk_appendf(&trace_buf, " rx.bytes=%llu tx.bytes=%llu",
311 (unsigned long long)qc->rx.bytes,
312 (unsigned long long)qc->tx.bytes);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100313 }
314
315 if (room) {
316 chunk_appendf(&trace_buf, " room=%lld", (long long)*room);
317 chunk_appendf(&trace_buf, " dcid.len=%llu scid.len=%llu",
318 (unsigned long long)qc->dcid.len, (unsigned long long)qc->scid.len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100319 }
320 }
321
322 if (mask & QUIC_EV_CONN_HDSHK) {
323 const enum quic_handshake_state *state = a2;
324 const int *err = a3;
325
326 if (state)
327 chunk_appendf(&trace_buf, " state=%s", quic_hdshk_state_str(*state));
328 if (err)
329 chunk_appendf(&trace_buf, " err=%s", ssl_error_str(*err));
330 }
331
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +0100332 if (mask & (QUIC_EV_CONN_TRMHP|QUIC_EV_CONN_ELRMHP|QUIC_EV_CONN_SPKT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100333 const struct quic_rx_packet *pkt = a2;
334 const unsigned long *pktlen = a3;
335 const SSL *ssl = a4;
336
337 if (pkt) {
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100338 chunk_appendf(&trace_buf, " pkt@%p el=%c",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100339 pkt, quic_packet_type_enc_level_char(pkt->type));
340 if (pkt->pnl)
341 chunk_appendf(&trace_buf, " pnl=%u pn=%llu", pkt->pnl,
342 (unsigned long long)pkt->pn);
343 if (pkt->token_len)
344 chunk_appendf(&trace_buf, " toklen=%llu",
345 (unsigned long long)pkt->token_len);
346 if (pkt->aad_len)
347 chunk_appendf(&trace_buf, " aadlen=%llu",
348 (unsigned long long)pkt->aad_len);
349 chunk_appendf(&trace_buf, " flags=0x%x len=%llu",
350 pkt->flags, (unsigned long long)pkt->len);
351 }
352 if (pktlen)
353 chunk_appendf(&trace_buf, " (%ld)", *pktlen);
354 if (ssl) {
355 enum ssl_encryption_level_t level = SSL_quic_read_level(ssl);
356 chunk_appendf(&trace_buf, " el=%c",
357 quic_enc_level_char(ssl_to_quic_enc_level(level)));
358 }
359 }
360
361 if (mask & (QUIC_EV_CONN_ELRXPKTS|QUIC_EV_CONN_PRSHPKT|QUIC_EV_CONN_SSLDATA)) {
362 const struct quic_rx_packet *pkt = a2;
363 const struct quic_rx_crypto_frm *cf = a3;
364 const SSL *ssl = a4;
365
366 if (pkt)
367 chunk_appendf(&trace_buf, " pkt@%p el=%c pn=%llu", pkt,
368 quic_packet_type_enc_level_char(pkt->type),
369 (unsigned long long)pkt->pn);
370 if (cf)
371 chunk_appendf(&trace_buf, " cfoff=%llu cflen=%llu",
372 (unsigned long long)cf->offset_node.key,
373 (unsigned long long)cf->len);
374 if (ssl) {
375 enum ssl_encryption_level_t level = SSL_quic_read_level(ssl);
Frédéric Lécaille57e6e9e2021-09-23 18:10:56 +0200376 chunk_appendf(&trace_buf, " rel=%c",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100377 quic_enc_level_char(ssl_to_quic_enc_level(level)));
378 }
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100379
380 if (qc->err_code)
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100381 chunk_appendf(&trace_buf, " err_code=0x%llx", (ull)qc->err_code);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100382 }
383
384 if (mask & (QUIC_EV_CONN_PRSFRM|QUIC_EV_CONN_BFRM)) {
385 const struct quic_frame *frm = a2;
386
387 if (frm)
388 chunk_appendf(&trace_buf, " %s", quic_frame_type_string(frm->type));
389 }
390
391 if (mask & QUIC_EV_CONN_PHPKTS) {
392 const struct quic_enc_level *qel = a2;
393
394 if (qel) {
Frédéric Lécailledd51da52021-12-29 15:36:25 +0100395 const struct quic_pktns *pktns = qel->pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100396 chunk_appendf(&trace_buf,
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100397 " qel=%c state=%s ack?%d cwnd=%llu ppif=%lld pif=%llu if=%llu pp=%u",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100398 quic_enc_level_char_from_qel(qel, qc),
Frédéric Lécaille546186b2021-08-03 14:25:36 +0200399 quic_hdshk_state_str(HA_ATOMIC_LOAD(&qc->state)),
Frédéric Lécaille25eeebe2021-12-16 11:21:52 +0100400 !!(HA_ATOMIC_LOAD(&qel->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écaille466e9da2021-12-29 12:04:13 +0100404 (unsigned long long)pktns->tx.in_flight,
405 pktns->tx.pto_probe);
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) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +0200435 const struct quic_frame *frm = a2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100436 const unsigned long *val1 = a3;
437 const unsigned long *val2 = a4;
438
439 if (frm)
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100440 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100441 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;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100474
475 if (pktns) {
476 chunk_appendf(&trace_buf, " pktns=%s",
477 pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
478 pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H");
479 if (pktns->tx.loss_time)
480 chunk_appendf(&trace_buf, " loss_time=%dms",
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100481 TICKS_TO_MS(tick_remain(now_ms, pktns->tx.loss_time)));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100482 }
483 if (lost_pkts && !LIST_ISEMPTY(lost_pkts)) {
484 struct quic_tx_packet *pkt;
485
486 chunk_appendf(&trace_buf, " lost_pkts:");
487 list_for_each_entry(pkt, lost_pkts, list)
488 chunk_appendf(&trace_buf, " %lu", (unsigned long)pkt->pn_node.key);
489 }
490 }
491
492 if (mask & (QUIC_EV_CONN_STIMER|QUIC_EV_CONN_PTIMER|QUIC_EV_CONN_SPTO)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100493 const struct quic_pktns *pktns = a2;
494 const int *duration = a3;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100495 const uint64_t *ifae_pkts = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100496
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100497 if (ifae_pkts)
498 chunk_appendf(&trace_buf, " ifae_pkts=%llu",
499 (unsigned long long)*ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100500 if (pktns) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100501 chunk_appendf(&trace_buf, " pktns=%s pp=%d",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100502 pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100503 pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H",
504 pktns->tx.pto_probe);
Frédéric Lécaille22cfd832021-12-27 17:42:51 +0100505 if (mask & (QUIC_EV_CONN_STIMER|QUIC_EV_CONN_SPTO)) {
506 if (pktns->tx.in_flight)
507 chunk_appendf(&trace_buf, " if=%llu", (ull)pktns->tx.in_flight);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100508 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écaille0371cd52021-12-13 12:30:54 +0100535 chunk_appendf(&trace_buf, " pn=%lu(%s) iflen=%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écaille0371cd52021-12-13 12:30:54 +0100539 (unsigned long long)pkt->in_flight_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100540 }
541 }
Frédéric Lécaille47c433f2020-12-10 17:03:11 +0100542
543 if (mask & QUIC_EV_CONN_SSLALERT) {
544 const uint8_t *alert = a2;
545 const enum ssl_encryption_level_t *level = a3;
546
547 if (alert)
548 chunk_appendf(&trace_buf, " alert=0x%02x", *alert);
549 if (level)
550 chunk_appendf(&trace_buf, " el=%c",
551 quic_enc_level_char(ssl_to_quic_enc_level(*level)));
552 }
Frédéric Lécailleea604992020-12-24 13:01:37 +0100553
554 if (mask & QUIC_EV_CONN_BCFRMS) {
555 const size_t *sz1 = a2;
556 const size_t *sz2 = a3;
557 const size_t *sz3 = a4;
558
559 if (sz1)
560 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz1);
561 if (sz2)
562 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz2);
563 if (sz3)
564 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz3);
565 }
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100566
567 if (mask & QUIC_EV_CONN_PSTRM) {
568 const struct quic_frame *frm = a2;
Frédéric Lécaille577fe482021-01-11 15:10:06 +0100569
Frédéric Lécailled8b84432021-12-10 15:18:36 +0100570 if (frm)
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100571 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100572 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100573 }
574 if (mask & QUIC_EV_CONN_LPKT) {
575 const struct quic_rx_packet *pkt = a2;
Frédéric Lécaille865b0782021-09-23 07:33:20 +0200576 const uint64_t *len = a3;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100577
Frédéric Lécaille8678eb02021-12-16 18:03:52 +0100578 if (pkt) {
579 chunk_appendf(&trace_buf, " pkt@%p type=0x%02x %s",
580 pkt, pkt->type, qc_pkt_long(pkt) ? "long" : "short");
581 if (pkt->pn_node.key != (uint64_t)-1)
582 chunk_appendf(&trace_buf, " pn=%llu", pkt->pn_node.key);
583 }
584
Frédéric Lécaille865b0782021-09-23 07:33:20 +0200585 if (len)
586 chunk_appendf(&trace_buf, " len=%llu", (ull)*len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100587 }
588
589}
590
591/* Returns 1 if the peer has validated <qc> QUIC connection address, 0 if not. */
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100592static inline int quic_peer_validated_addr(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100593{
Frédéric Lécaille67f47d02021-08-19 15:19:09 +0200594 struct quic_pktns *hdshk_pktns, *app_pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100595
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +0100596 if (!qc_is_listener(qc))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100597 return 1;
598
Frédéric Lécaille67f47d02021-08-19 15:19:09 +0200599 hdshk_pktns = qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns;
600 app_pktns = qc->els[QUIC_TLS_ENC_LEVEL_APP].pktns;
601 if ((HA_ATOMIC_LOAD(&hdshk_pktns->flags) & QUIC_FL_PKTNS_ACK_RECEIVED) ||
602 (HA_ATOMIC_LOAD(&app_pktns->flags) & QUIC_FL_PKTNS_ACK_RECEIVED) ||
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +0200603 HA_ATOMIC_LOAD(&qc->state) >= QUIC_HS_ST_COMPLETE)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100604 return 1;
605
606 return 0;
607}
608
609/* Set the timer attached to the QUIC connection with <ctx> as I/O handler and used for
610 * both loss detection and PTO and schedule the task assiated to this timer if needed.
611 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100612static inline void qc_set_timer(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100613{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100614 struct quic_pktns *pktns;
615 unsigned int pto;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +0200616 int handshake_complete;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100617
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100618 TRACE_ENTER(QUIC_EV_CONN_STIMER, qc,
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100619 NULL, NULL, &qc->path->ifae_pkts);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100620
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100621 pktns = quic_loss_pktns(qc);
622 if (tick_isset(pktns->tx.loss_time)) {
623 qc->timer = pktns->tx.loss_time;
624 goto out;
625 }
626
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +0100627 /* anti-amplification: the timer must be
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100628 * cancelled for a server which reached the anti-amplification limit.
629 */
Frédéric Lécaille078634d2022-01-04 16:59:42 +0100630 if (!quic_peer_validated_addr(qc) &&
631 (HA_ATOMIC_LOAD(&qc->flags) & QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100632 TRACE_PROTO("anti-amplification reached", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +0100633 qc->timer = TICK_ETERNITY;
634 goto out;
635 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100636
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100637 if (!qc->path->ifae_pkts && quic_peer_validated_addr(qc)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100638 TRACE_PROTO("timer cancellation", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100639 /* Timer cancellation. */
640 qc->timer = TICK_ETERNITY;
641 goto out;
642 }
643
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +0200644 handshake_complete = HA_ATOMIC_LOAD(&qc->state) >= QUIC_HS_ST_COMPLETE;
645 pktns = quic_pto_pktns(qc, handshake_complete, &pto);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100646 if (tick_isset(pto))
647 qc->timer = pto;
648 out:
Amaury Denoyelle0a29e132021-12-23 15:06:56 +0100649 if (qc->timer_task && qc->timer != TICK_ETERNITY)
Amaury Denoyelle336f6fd2021-10-05 14:42:25 +0200650 task_schedule(qc->timer_task, qc->timer);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100651 TRACE_LEAVE(QUIC_EV_CONN_STIMER, qc, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100652}
653
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100654/* Derive new keys and ivs required for Key Update feature for <qc> QUIC
655 * connection.
656 * Return 1 if succeeded, 0 if not.
657 */
658static int quic_tls_key_update(struct quic_conn *qc)
659{
660 struct quic_tls_ctx *tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
661 struct quic_tls_secrets *rx, *tx;
662 struct quic_tls_kp *nxt_rx = &qc->ku.nxt_rx;
663 struct quic_tls_kp *nxt_tx = &qc->ku.nxt_tx;
664
665 tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
666 rx = &tls_ctx->rx;
667 tx = &tls_ctx->tx;
668 nxt_rx = &qc->ku.nxt_rx;
669 nxt_tx = &qc->ku.nxt_tx;
670
671 /* Prepare new RX secrets */
672 if (!quic_tls_sec_update(rx->md, nxt_rx->secret, nxt_rx->secretlen,
673 rx->secret, rx->secretlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100674 TRACE_DEVEL("New RX secret update failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100675 return 0;
676 }
677
678 if (!quic_tls_derive_keys(rx->aead, NULL, rx->md,
679 nxt_rx->key, nxt_rx->keylen,
680 nxt_rx->iv, nxt_rx->ivlen, NULL, 0,
681 nxt_rx->secret, nxt_rx->secretlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100682 TRACE_DEVEL("New RX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100683 return 0;
684 }
685
686 /* Prepare new TX secrets */
687 if (!quic_tls_sec_update(tx->md, nxt_tx->secret, nxt_tx->secretlen,
688 tx->secret, tx->secretlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100689 TRACE_DEVEL("New TX secret update failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100690 return 0;
691 }
692
693 if (!quic_tls_derive_keys(tx->aead, NULL, tx->md,
694 nxt_tx->key, nxt_tx->keylen,
695 nxt_tx->iv, nxt_tx->ivlen, NULL, 0,
696 nxt_tx->secret, nxt_tx->secretlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100697 TRACE_DEVEL("New TX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100698 return 0;
699 }
700
701 return 1;
702}
703
704/* Rotate the Key Update information for <qc> QUIC connection.
705 * Must be used after having updated them.
706 * Always succeeds.
707 */
708static void quic_tls_rotate_keys(struct quic_conn *qc)
709{
710 struct quic_tls_ctx *tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
711 unsigned char *curr_secret, *curr_iv, *curr_key;
712
713 /* Rotate the RX secrets */
714 curr_secret = tls_ctx->rx.secret;
715 curr_iv = tls_ctx->rx.iv;
716 curr_key = tls_ctx->rx.key;
717
718 tls_ctx->rx.secret = qc->ku.nxt_rx.secret;
719 tls_ctx->rx.iv = qc->ku.nxt_rx.iv;
720 tls_ctx->rx.key = qc->ku.nxt_rx.key;
721
722 qc->ku.nxt_rx.secret = qc->ku.prv_rx.secret;
723 qc->ku.nxt_rx.iv = qc->ku.prv_rx.iv;
724 qc->ku.nxt_rx.key = qc->ku.prv_rx.key;
725
726 qc->ku.prv_rx.secret = curr_secret;
727 qc->ku.prv_rx.iv = curr_iv;
728 qc->ku.prv_rx.key = curr_key;
729 qc->ku.prv_rx.pn = tls_ctx->rx.pn;
730
731 /* Update the TX secrets */
732 curr_secret = tls_ctx->tx.secret;
733 curr_iv = tls_ctx->tx.iv;
734 curr_key = tls_ctx->tx.key;
735
736 tls_ctx->tx.secret = qc->ku.nxt_tx.secret;
737 tls_ctx->tx.iv = qc->ku.nxt_tx.iv;
738 tls_ctx->tx.key = qc->ku.nxt_tx.key;
739
740 qc->ku.nxt_tx.secret = curr_secret;
741 qc->ku.nxt_tx.iv = curr_iv;
742 qc->ku.nxt_tx.key = curr_key;
743}
744
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100745#ifndef OPENSSL_IS_BORINGSSL
746int ha_quic_set_encryption_secrets(SSL *ssl, enum ssl_encryption_level_t level,
747 const uint8_t *read_secret,
748 const uint8_t *write_secret, size_t secret_len)
749{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100750 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
751 struct quic_tls_ctx *tls_ctx = &qc->els[ssl_to_quic_enc_level(level)].tls_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100752 const SSL_CIPHER *cipher = SSL_get_current_cipher(ssl);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100753 struct quic_tls_secrets *rx, *tx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100754
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100755 TRACE_ENTER(QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100756 BUG_ON(secret_len > QUIC_TLS_SECRET_LEN);
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100757 if (HA_ATOMIC_LOAD(&qc->flags) & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
758 TRACE_PROTO("CC required", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100759 goto out;
760 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100761
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100762 if (!quic_tls_ctx_keys_alloc(tls_ctx)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100763 TRACE_DEVEL("keys allocation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100764 goto err;
765 }
766
767 rx = &tls_ctx->rx;
768 tx = &tls_ctx->tx;
769
770 rx->aead = tx->aead = tls_aead(cipher);
771 rx->md = tx->md = tls_md(cipher);
772 rx->hp = tx->hp = tls_hp(cipher);
773
774 if (!quic_tls_derive_keys(rx->aead, rx->hp, rx->md, rx->key, rx->keylen,
775 rx->iv, rx->ivlen, rx->hp_key, sizeof rx->hp_key,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100776 read_secret, secret_len)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100777 TRACE_DEVEL("RX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100778 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100779 }
780
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100781 rx->flags |= QUIC_FL_TLS_SECRETS_SET;
Frédéric Lécaille61b851d2022-01-28 21:38:45 +0100782 /* Enqueue this connection asap if we could derive O-RTT secrets as
783 * listener. Note that a listener derives only RX secrets for this
784 * level.
785 */
786 if (qc_is_listener(qc) && level == ssl_encryption_early_data)
787 quic_accept_push_qc(qc);
Frédéric Lécaille4015cbb2021-12-14 19:29:34 +0100788
789 if (!write_secret)
Frédéric Lécailleee4508d2022-02-14 17:54:04 +0100790 goto out;
Frédéric Lécaille4015cbb2021-12-14 19:29:34 +0100791
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100792 if (!quic_tls_derive_keys(tx->aead, tx->hp, tx->md, tx->key, tx->keylen,
793 tx->iv, tx->ivlen, tx->hp_key, sizeof tx->hp_key,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100794 write_secret, secret_len)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100795 TRACE_DEVEL("TX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100796 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100797 }
798
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100799 tx->flags |= QUIC_FL_TLS_SECRETS_SET;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100800 if (level == ssl_encryption_application) {
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100801 struct quic_tls_kp *prv_rx = &qc->ku.prv_rx;
802 struct quic_tls_kp *nxt_rx = &qc->ku.nxt_rx;
803 struct quic_tls_kp *nxt_tx = &qc->ku.nxt_tx;
804
805 if (!(rx->secret = pool_alloc(pool_head_quic_tls_secret)) ||
806 !(tx->secret = pool_alloc(pool_head_quic_tls_secret))) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100807 TRACE_DEVEL("Could not allocate secrete keys", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100808 goto err;
809 }
810
811 memcpy(rx->secret, read_secret, secret_len);
812 rx->secretlen = secret_len;
813 memcpy(tx->secret, write_secret, secret_len);
814 tx->secretlen = secret_len;
815 /* Initialize all the secret keys lengths */
816 prv_rx->secretlen = nxt_rx->secretlen = nxt_tx->secretlen = secret_len;
817 /* Prepare the next key update */
818 if (!quic_tls_key_update(qc))
819 goto err;
820 }
Frédéric Lécailleee4508d2022-02-14 17:54:04 +0100821
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100822 out:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100823 TRACE_LEAVE(QUIC_EV_CONN_RWSEC, qc, &level);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100824 return 1;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100825
826 err:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100827 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100828 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100829}
830#else
831/* ->set_read_secret callback to derive the RX secrets at <level> encryption
832 * level.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +0500833 * Returns 1 if succeeded, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100834 */
835int ha_set_rsec(SSL *ssl, enum ssl_encryption_level_t level,
836 const SSL_CIPHER *cipher,
837 const uint8_t *secret, size_t secret_len)
838{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100839 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100840 struct quic_tls_ctx *tls_ctx =
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100841 &qc->els[ssl_to_quic_enc_level(level)].tls_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100842
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100843 TRACE_ENTER(QUIC_EV_CONN_RSEC, qc);
844 if (HA_ATOMIC_LOAD(&qc->flags) & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
845 TRACE_PROTO("CC required", QUIC_EV_CONN_RSEC, qc);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100846 goto out;
847 }
848
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100849 tls_ctx->rx.aead = tls_aead(cipher);
850 tls_ctx->rx.md = tls_md(cipher);
851 tls_ctx->rx.hp = tls_hp(cipher);
852
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100853 if (!(ctx->rx.key = pool_alloc(pool_head_quic_tls_key)))
854 goto err;
855
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100856 if (!quic_tls_derive_keys(tls_ctx->rx.aead, tls_ctx->rx.hp, tls_ctx->rx.md,
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100857 tls_ctx->rx.key, tls_ctx->rx.keylen,
858 tls_ctx->rx.iv, tls_ctx->rx.ivlen,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100859 tls_ctx->rx.hp_key, sizeof tls_ctx->rx.hp_key,
860 secret, secret_len)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100861 TRACE_DEVEL("RX key derivation failed", QUIC_EV_CONN_RSEC, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100862 goto err;
863 }
864
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100865 if (!qc_is_listener(qc) && level == ssl_encryption_application) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100866 const unsigned char *buf;
867 size_t buflen;
868
869 SSL_get_peer_quic_transport_params(ssl, &buf, &buflen);
870 if (!buflen)
871 goto err;
872
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100873 if (!quic_transport_params_store(qc, 1, buf, buf + buflen))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100874 goto err;
875 }
876
877 tls_ctx->rx.flags |= QUIC_FL_TLS_SECRETS_SET;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100878 out:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100879 TRACE_LEAVE(QUIC_EV_CONN_RSEC, qc, &level, secret, &secret_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100880
881 return 1;
882
883 err:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100884 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RSEC, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100885 return 0;
886}
887
888/* ->set_write_secret callback to derive the TX secrets at <level>
889 * encryption level.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +0500890 * Returns 1 if succeeded, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100891 */
892int ha_set_wsec(SSL *ssl, enum ssl_encryption_level_t level,
893 const SSL_CIPHER *cipher,
894 const uint8_t *secret, size_t secret_len)
895{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100896 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
897 struct quic_tls_ctx *tls_ctx = &qc->els[ssl_to_quic_enc_level(level)].tls_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100898
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100899 TRACE_ENTER(QUIC_EV_CONN_WSEC, qc);
900 if (HA_ATOMIC_LOAD(&qc->flags) & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
901 TRACE_PROTO("CC required", QUIC_EV_CONN_WSEC, qc);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100902 goto out;
903 }
904
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100905 if (!(ctx->tx.key = pool_alloc(pool_head_quic_tls_key)))
906 goto err;
907
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100908 tls_ctx->tx.aead = tls_aead(cipher);
909 tls_ctx->tx.md = tls_md(cipher);
910 tls_ctx->tx.hp = tls_hp(cipher);
911
912 if (!quic_tls_derive_keys(tls_ctx->tx.aead, tls_ctx->tx.hp, tls_ctx->tx.md,
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100913 tls_ctx->tx.key, tls_ctx->tx.keylen,
914 tls_ctx->tx.iv, tls_ctx->tx.ivlen,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100915 tls_ctx->tx.hp_key, sizeof tls_ctx->tx.hp_key,
916 secret, secret_len)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100917 TRACE_DEVEL("TX key derivation failed", QUIC_EV_CONN_WSEC, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100918 goto err;
919 }
920
921 tls_ctx->tx.flags |= QUIC_FL_TLS_SECRETS_SET;
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100922 TRACE_LEAVE(QUIC_EV_CONN_WSEC, qc, &level, secret, &secret_len);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100923 out:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100924 return 1;
925
926 err:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100927 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_WSEC, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100928 return 0;
929}
930#endif
931
932/* This function copies the CRYPTO data provided by the TLS stack found at <data>
933 * with <len> as size in CRYPTO buffers dedicated to store the information about
934 * outgoing CRYPTO frames so that to be able to replay the CRYPTO data streams.
935 * It fails only if it could not managed to allocate enough CRYPTO buffers to
936 * store all the data.
937 * Note that CRYPTO data may exist at any encryption level except at 0-RTT.
938 */
939static int quic_crypto_data_cpy(struct quic_enc_level *qel,
940 const unsigned char *data, size_t len)
941{
942 struct quic_crypto_buf **qcb;
943 /* The remaining byte to store in CRYPTO buffers. */
944 size_t cf_offset, cf_len, *nb_buf;
945 unsigned char *pos;
946
947 nb_buf = &qel->tx.crypto.nb_buf;
948 qcb = &qel->tx.crypto.bufs[*nb_buf - 1];
949 cf_offset = (*nb_buf - 1) * QUIC_CRYPTO_BUF_SZ + (*qcb)->sz;
950 cf_len = len;
951
952 while (len) {
953 size_t to_copy, room;
954
955 pos = (*qcb)->data + (*qcb)->sz;
956 room = QUIC_CRYPTO_BUF_SZ - (*qcb)->sz;
957 to_copy = len > room ? room : len;
958 if (to_copy) {
959 memcpy(pos, data, to_copy);
960 /* Increment the total size of this CRYPTO buffers by <to_copy>. */
961 qel->tx.crypto.sz += to_copy;
962 (*qcb)->sz += to_copy;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100963 len -= to_copy;
964 data += to_copy;
965 }
966 else {
967 struct quic_crypto_buf **tmp;
968
969 tmp = realloc(qel->tx.crypto.bufs,
970 (*nb_buf + 1) * sizeof *qel->tx.crypto.bufs);
971 if (tmp) {
972 qel->tx.crypto.bufs = tmp;
973 qcb = &qel->tx.crypto.bufs[*nb_buf];
974 *qcb = pool_alloc(pool_head_quic_crypto_buf);
975 if (!*qcb)
976 return 0;
977
978 (*qcb)->sz = 0;
979 ++*nb_buf;
980 }
981 else {
982 break;
983 }
984 }
985 }
986
987 /* Allocate a TX CRYPTO frame only if all the CRYPTO data
988 * have been buffered.
989 */
990 if (!len) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +0200991 struct quic_frame *frm;
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +0100992 struct quic_frame *found = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100993
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +0100994 /* There is at most one CRYPTO frame in this packet number
995 * space. Let's look for it.
996 */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +0100997 list_for_each_entry(frm, &qel->pktns->tx.frms, list) {
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +0100998 if (frm->type != QUIC_FT_CRYPTO)
999 continue;
1000
1001 /* Found */
1002 found = frm;
1003 break;
1004 }
1005
1006 if (found) {
1007 found->crypto.len += cf_len;
1008 }
1009 else {
Frédéric Lécailled4ecf942022-01-04 23:15:40 +01001010 frm = pool_alloc(pool_head_quic_frame);
1011 if (!frm)
1012 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001013
Frédéric Lécailled4ecf942022-01-04 23:15:40 +01001014 frm->type = QUIC_FT_CRYPTO;
1015 frm->crypto.offset = cf_offset;
1016 frm->crypto.len = cf_len;
1017 frm->crypto.qel = qel;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001018 LIST_APPEND(&qel->pktns->tx.frms, &frm->list);
Frédéric Lécailled4ecf942022-01-04 23:15:40 +01001019 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001020 }
1021
1022 return len == 0;
1023}
1024
1025
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01001026/* Set <alert> TLS alert as QUIC CRYPTO_ERROR error */
1027void quic_set_tls_alert(struct quic_conn *qc, int alert)
1028{
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01001029 HA_ATOMIC_STORE(&qc->err_code, QC_ERR_CRYPTO_ERROR | alert);
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01001030 HA_ATOMIC_OR(&qc->flags, QUIC_FL_CONN_IMMEDIATE_CLOSE);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001031 TRACE_PROTO("Alert set", QUIC_EV_CONN_SSLDATA, qc);
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01001032}
1033
Frédéric Lécailleb0bd62d2021-12-14 19:34:08 +01001034/* Set the application for <qc> QUIC connection.
1035 * Return 1 if succeeded, 0 if not.
1036 */
1037int quic_set_app_ops(struct quic_conn *qc, const unsigned char *alpn, size_t alpn_len)
1038{
Amaury Denoyelle4b40f192022-01-19 11:29:25 +01001039 if (alpn_len >= 2 && memcmp(alpn, "h3", 2) == 0)
1040 qc->app_ops = &h3_ops;
1041 else if (alpn_len >= 10 && memcmp(alpn, "hq-interop", 10) == 0)
1042 qc->app_ops = &hq_interop_ops;
Frédéric Lécailleb0bd62d2021-12-14 19:34:08 +01001043 else
1044 return 0;
1045
Frédéric Lécailleb0bd62d2021-12-14 19:34:08 +01001046 return 1;
1047}
1048
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001049/* ->add_handshake_data QUIC TLS callback used by the QUIC TLS stack when it
1050 * wants to provide the QUIC layer with CRYPTO data.
1051 * Returns 1 if succeeded, 0 if not.
1052 */
1053int ha_quic_add_handshake_data(SSL *ssl, enum ssl_encryption_level_t level,
1054 const uint8_t *data, size_t len)
1055{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001056 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001057 enum quic_tls_enc_level tel;
1058 struct quic_enc_level *qel;
1059
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001060 qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
1061 TRACE_ENTER(QUIC_EV_CONN_ADDDATA, qc);
1062 if (HA_ATOMIC_LOAD(&qc->flags) & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
1063 TRACE_PROTO("CC required", QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01001064 goto out;
1065 }
1066
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001067 tel = ssl_to_quic_enc_level(level);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001068 if (tel == -1) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001069 TRACE_PROTO("Wrong encryption level", QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001070 goto err;
1071 }
1072
Frédéric Lécaille3916ca12022-02-02 14:09:05 +01001073 qel = &qc->els[tel];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001074 if (!quic_crypto_data_cpy(qel, data, len)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001075 TRACE_PROTO("Could not bufferize", QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001076 goto err;
1077 }
1078
1079 TRACE_PROTO("CRYPTO data buffered", QUIC_EV_CONN_ADDDATA,
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001080 qc, &level, &len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001081
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01001082 out:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001083 TRACE_LEAVE(QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001084 return 1;
1085
1086 err:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001087 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001088 return 0;
1089}
1090
1091int ha_quic_flush_flight(SSL *ssl)
1092{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001093 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001094
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001095 TRACE_ENTER(QUIC_EV_CONN_FFLIGHT, qc);
1096 TRACE_LEAVE(QUIC_EV_CONN_FFLIGHT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001097
1098 return 1;
1099}
1100
1101int ha_quic_send_alert(SSL *ssl, enum ssl_encryption_level_t level, uint8_t alert)
1102{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001103 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001104
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001105 TRACE_DEVEL("SSL alert", QUIC_EV_CONN_SSLALERT, qc, &alert, &level);
1106 quic_set_tls_alert(qc, alert);
1107 HA_ATOMIC_STORE(&qc->flags, QUIC_FL_CONN_IMMEDIATE_CLOSE);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001108 return 1;
1109}
1110
1111/* QUIC TLS methods */
1112static SSL_QUIC_METHOD ha_quic_method = {
1113#ifdef OPENSSL_IS_BORINGSSL
1114 .set_read_secret = ha_set_rsec,
1115 .set_write_secret = ha_set_wsec,
1116#else
1117 .set_encryption_secrets = ha_quic_set_encryption_secrets,
1118#endif
1119 .add_handshake_data = ha_quic_add_handshake_data,
1120 .flush_flight = ha_quic_flush_flight,
1121 .send_alert = ha_quic_send_alert,
1122};
1123
1124/* Initialize the TLS context of a listener with <bind_conf> as configuration.
1125 * Returns an error count.
1126 */
1127int ssl_quic_initial_ctx(struct bind_conf *bind_conf)
1128{
1129 struct proxy *curproxy = bind_conf->frontend;
1130 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
1131 int cfgerr = 0;
1132
1133#if 0
1134 /* XXX Did not manage to use this. */
1135 const char *ciphers =
1136 "TLS_AES_128_GCM_SHA256:"
1137 "TLS_AES_256_GCM_SHA384:"
1138 "TLS_CHACHA20_POLY1305_SHA256:"
1139 "TLS_AES_128_CCM_SHA256";
1140#endif
Frédéric Lécaille4b1fddc2021-07-01 17:09:05 +02001141 const char *groups = "X25519:P-256:P-384:P-521";
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001142 long options =
1143 (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) |
1144 SSL_OP_SINGLE_ECDH_USE |
1145 SSL_OP_CIPHER_SERVER_PREFERENCE;
1146 SSL_CTX *ctx;
1147
1148 ctx = SSL_CTX_new(TLS_server_method());
1149 bind_conf->initial_ctx = ctx;
1150
1151 SSL_CTX_set_options(ctx, options);
1152#if 0
1153 if (SSL_CTX_set_cipher_list(ctx, ciphers) != 1) {
1154 ha_alert("Proxy '%s': unable to set TLS 1.3 cipher list to '%s' "
1155 "for bind '%s' at [%s:%d].\n",
1156 curproxy->id, ciphers,
1157 bind_conf->arg, bind_conf->file, bind_conf->line);
1158 cfgerr++;
1159 }
1160#endif
1161
1162 if (SSL_CTX_set1_curves_list(ctx, groups) != 1) {
1163 ha_alert("Proxy '%s': unable to set TLS 1.3 curves list to '%s' "
1164 "for bind '%s' at [%s:%d].\n",
1165 curproxy->id, groups,
1166 bind_conf->arg, bind_conf->file, bind_conf->line);
1167 cfgerr++;
1168 }
1169
1170 SSL_CTX_set_mode(ctx, SSL_MODE_RELEASE_BUFFERS);
1171 SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
1172 SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION);
1173 SSL_CTX_set_default_verify_paths(ctx);
1174
1175#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1176#ifdef OPENSSL_IS_BORINGSSL
1177 SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk);
1178 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
1179#elif (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
1180 if (bind_conf->ssl_conf.early_data) {
1181 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
Frédéric Lécaillead3c07a2021-12-14 19:23:43 +01001182 SSL_CTX_set_max_early_data(ctx, 0xffffffff);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001183 }
1184 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
1185 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
1186#else
1187 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
1188#endif
1189 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
1190#endif
1191 SSL_CTX_set_quic_method(ctx, &ha_quic_method);
1192
1193 return cfgerr;
1194}
1195
1196/* Decode an expected packet number from <truncated_on> its truncated value,
1197 * depending on <largest_pn> the largest received packet number, and <pn_nbits>
1198 * the number of bits used to encode this packet number (its length in bytes * 8).
1199 * See https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#packet-encoding
1200 */
1201static uint64_t decode_packet_number(uint64_t largest_pn,
1202 uint32_t truncated_pn, unsigned int pn_nbits)
1203{
1204 uint64_t expected_pn = largest_pn + 1;
1205 uint64_t pn_win = (uint64_t)1 << pn_nbits;
1206 uint64_t pn_hwin = pn_win / 2;
1207 uint64_t pn_mask = pn_win - 1;
1208 uint64_t candidate_pn;
1209
1210
1211 candidate_pn = (expected_pn & ~pn_mask) | truncated_pn;
1212 /* Note that <pn_win> > <pn_hwin>. */
1213 if (candidate_pn < QUIC_MAX_PACKET_NUM - pn_win &&
1214 candidate_pn + pn_hwin <= expected_pn)
1215 return candidate_pn + pn_win;
1216
1217 if (candidate_pn > expected_pn + pn_hwin && candidate_pn >= pn_win)
1218 return candidate_pn - pn_win;
1219
1220 return candidate_pn;
1221}
1222
1223/* Remove the header protection of <pkt> QUIC packet using <tls_ctx> as QUIC TLS
1224 * cryptographic context.
1225 * <largest_pn> is the largest received packet number and <pn> the address of
1226 * the packet number field for this packet with <byte0> address of its first byte.
1227 * <end> points to one byte past the end of this packet.
1228 * Returns 1 if succeeded, 0 if not.
1229 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001230static int qc_do_rm_hp(struct quic_conn *qc,
1231 struct quic_rx_packet *pkt, struct quic_tls_ctx *tls_ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001232 int64_t largest_pn, unsigned char *pn,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001233 unsigned char *byte0, const unsigned char *end)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001234{
1235 int ret, outlen, i, pnlen;
1236 uint64_t packet_number;
1237 uint32_t truncated_pn = 0;
1238 unsigned char mask[5] = {0};
1239 unsigned char *sample;
1240 EVP_CIPHER_CTX *cctx;
1241 unsigned char *hp_key;
1242
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001243 /* Check there is enough data in this packet. */
1244 if (end - pn < QUIC_PACKET_PN_MAXLEN + sizeof mask) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001245 TRACE_DEVEL("too short packet", QUIC_EV_CONN_RMHP, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001246 return 0;
1247 }
1248
1249 cctx = EVP_CIPHER_CTX_new();
1250 if (!cctx) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001251 TRACE_DEVEL("memory allocation failed", QUIC_EV_CONN_RMHP, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001252 return 0;
1253 }
1254
1255 ret = 0;
1256 sample = pn + QUIC_PACKET_PN_MAXLEN;
1257
1258 hp_key = tls_ctx->rx.hp_key;
1259 if (!EVP_DecryptInit_ex(cctx, tls_ctx->rx.hp, NULL, hp_key, sample) ||
1260 !EVP_DecryptUpdate(cctx, mask, &outlen, mask, sizeof mask) ||
1261 !EVP_DecryptFinal_ex(cctx, mask, &outlen)) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001262 TRACE_DEVEL("decryption failed", QUIC_EV_CONN_RMHP, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001263 goto out;
1264 }
1265
1266 *byte0 ^= mask[0] & (*byte0 & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f);
1267 pnlen = (*byte0 & QUIC_PACKET_PNL_BITMASK) + 1;
1268 for (i = 0; i < pnlen; i++) {
1269 pn[i] ^= mask[i + 1];
1270 truncated_pn = (truncated_pn << 8) | pn[i];
1271 }
1272
1273 packet_number = decode_packet_number(largest_pn, truncated_pn, pnlen * 8);
1274 /* Store remaining information for this unprotected header */
1275 pkt->pn = packet_number;
1276 pkt->pnl = pnlen;
1277
1278 ret = 1;
1279
1280 out:
1281 EVP_CIPHER_CTX_free(cctx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001282
1283 return ret;
1284}
1285
1286/* Encrypt the payload of a QUIC packet with <pn> as number found at <payload>
1287 * address, with <payload_len> as payload length, <aad> as address of
1288 * the ADD and <aad_len> as AAD length depending on the <tls_ctx> QUIC TLS
1289 * context.
1290 * Returns 1 if succeeded, 0 if not.
1291 */
1292static int quic_packet_encrypt(unsigned char *payload, size_t payload_len,
1293 unsigned char *aad, size_t aad_len, uint64_t pn,
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01001294 struct quic_tls_ctx *tls_ctx, struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001295{
1296 unsigned char iv[12];
1297 unsigned char *tx_iv = tls_ctx->tx.iv;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +01001298 size_t tx_iv_sz = tls_ctx->tx.ivlen;
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001299 struct enc_debug_info edi;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001300
1301 if (!quic_aead_iv_build(iv, sizeof iv, tx_iv, tx_iv_sz, pn)) {
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01001302 TRACE_DEVEL("AEAD IV building for encryption failed", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001303 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001304 }
1305
1306 if (!quic_tls_encrypt(payload, payload_len, aad, aad_len,
1307 tls_ctx->tx.aead, tls_ctx->tx.key, iv)) {
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01001308 TRACE_DEVEL("QUIC packet encryption failed", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001309 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001310 }
1311
1312 return 1;
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001313
1314 err:
1315 enc_debug_info_init(&edi, payload, payload_len, aad, aad_len, pn);
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01001316 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ENCPKT, qc, &edi);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001317 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001318}
1319
1320/* Decrypt <pkt> QUIC packet with <tls_ctx> as QUIC TLS cryptographic context.
1321 * Returns 1 if succeeded, 0 if not.
1322 */
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001323static int qc_pkt_decrypt(struct quic_rx_packet *pkt, struct quic_enc_level *qel)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001324{
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001325 int ret, kp_changed;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001326 unsigned char iv[12];
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001327 struct quic_tls_ctx *tls_ctx = &qel->tls_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001328 unsigned char *rx_iv = tls_ctx->rx.iv;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001329 size_t rx_iv_sz = tls_ctx->rx.ivlen;
1330 unsigned char *rx_key = tls_ctx->rx.key;
1331
1332 kp_changed = 0;
1333 if (pkt->type == QUIC_PACKET_TYPE_SHORT) {
1334 /* The two tested bits are not at the same position,
1335 * this is why they are first both inversed.
1336 */
1337 if (!(*pkt->data & QUIC_PACKET_KEY_PHASE_BIT) ^ !(tls_ctx->flags & QUIC_FL_TLS_KP_BIT_SET)) {
1338 if (pkt->pn < tls_ctx->rx.pn) {
1339 /* The lowest packet number of a previous key phase
1340 * cannot be null if it really stores previous key phase
1341 * secrets.
1342 */
1343 if (!pkt->qc->ku.prv_rx.pn)
1344 return 0;
1345
1346 rx_iv = pkt->qc->ku.prv_rx.iv;
1347 rx_key = pkt->qc->ku.prv_rx.key;
1348 }
1349 else if (pkt->pn > qel->pktns->rx.largest_pn) {
1350 /* Next key phase */
1351 kp_changed = 1;
1352 rx_iv = pkt->qc->ku.nxt_rx.iv;
1353 rx_key = pkt->qc->ku.nxt_rx.key;
1354 }
1355 }
1356 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001357
1358 if (!quic_aead_iv_build(iv, sizeof iv, rx_iv, rx_iv_sz, pkt->pn))
1359 return 0;
1360
1361 ret = quic_tls_decrypt(pkt->data + pkt->aad_len, pkt->len - pkt->aad_len,
1362 pkt->data, pkt->aad_len,
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001363 tls_ctx->rx.aead, rx_key, iv);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001364 if (!ret)
1365 return 0;
1366
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001367 /* Update the keys only if the packet decryption succeeded. */
1368 if (kp_changed) {
1369 quic_tls_rotate_keys(pkt->qc);
1370 /* Toggle the Key Phase bit */
1371 tls_ctx->flags ^= QUIC_FL_TLS_KP_BIT_SET;
1372 /* Store the lowest packet number received for the current key phase */
1373 tls_ctx->rx.pn = pkt->pn;
1374 /* Prepare the next key update */
1375 if (!quic_tls_key_update(pkt->qc))
1376 return 0;
1377 }
1378
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001379 /* Update the packet length (required to parse the frames). */
1380 pkt->len = pkt->aad_len + ret;
1381
1382 return 1;
1383}
1384
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001385/* Remove from <qcs> stream the acknowledged frames.
1386 * Never fails.
1387 */
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001388static int qcs_try_to_consume(struct qcs *qcs)
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001389{
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001390 int ret;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001391 struct eb64_node *frm_node;
1392
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001393 ret = 0;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001394 frm_node = eb64_first(&qcs->tx.acked_frms);
1395 while (frm_node) {
1396 struct quic_stream *strm;
1397
1398 strm = eb64_entry(&frm_node->node, struct quic_stream, offset);
1399 if (strm->offset.key != qcs->tx.ack_offset)
1400 break;
1401
1402 b_del(strm->buf, strm->len);
1403 qcs->tx.ack_offset += strm->len;
1404 frm_node = eb64_next(frm_node);
1405 eb64_delete(&strm->offset);
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001406 ret = 1;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001407 }
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001408
1409 return ret;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001410}
1411
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001412/* Treat <frm> frame whose packet it is attached to has just been acknowledged. */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001413static inline void qc_treat_acked_tx_frm(struct quic_conn *qc,
1414 struct quic_frame *frm)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001415{
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001416 int stream_acked;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001417
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001418 TRACE_PROTO("Removing frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001419 stream_acked = 0;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001420 switch (frm->type) {
1421 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
1422 {
1423 struct qcs *qcs = frm->stream.qcs;
1424 struct quic_stream *strm = &frm->stream;
1425
1426 if (qcs->tx.ack_offset == strm->offset.key) {
1427 b_del(strm->buf, strm->len);
1428 qcs->tx.ack_offset += strm->len;
1429 LIST_DELETE(&frm->list);
1430 pool_free(pool_head_quic_frame, frm);
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001431 stream_acked = 1;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001432 }
1433 else {
1434 eb64_insert(&qcs->tx.acked_frms, &strm->offset);
1435 }
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001436 stream_acked |= qcs_try_to_consume(qcs);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001437 }
1438 break;
1439 default:
1440 LIST_DELETE(&frm->list);
1441 pool_free(pool_head_quic_frame, frm);
1442 }
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001443
1444 if (stream_acked) {
1445 struct qcc *qcc = qc->qcc;
1446
1447 if (qcc->subs && qcc->subs->events & SUB_RETRY_SEND) {
1448 tasklet_wakeup(qcc->subs->tasklet);
1449 qcc->subs->events &= ~SUB_RETRY_SEND;
1450 if (!qcc->subs->events)
1451 qcc->subs = NULL;
1452 }
1453 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001454}
1455
1456/* Remove <largest> down to <smallest> node entries from <pkts> tree of TX packet,
1457 * deallocating them, and their TX frames.
1458 * Returns the last node reached to be used for the next range.
1459 * May be NULL if <largest> node could not be found.
1460 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001461static inline struct eb64_node *qc_ackrng_pkts(struct quic_conn *qc,
1462 struct eb_root *pkts,
1463 unsigned int *pkt_flags,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001464 struct list *newly_acked_pkts,
1465 struct eb64_node *largest_node,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001466 uint64_t largest, uint64_t smallest)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001467{
1468 struct eb64_node *node;
1469 struct quic_tx_packet *pkt;
1470
1471 if (largest_node)
1472 node = largest_node;
1473 else {
1474 node = eb64_lookup(pkts, largest);
1475 while (!node && largest > smallest) {
1476 node = eb64_lookup(pkts, --largest);
1477 }
1478 }
1479
1480 while (node && node->key >= smallest) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02001481 struct quic_frame *frm, *frmbak;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001482
1483 pkt = eb64_entry(&node->node, struct quic_tx_packet, pn_node);
1484 *pkt_flags |= pkt->flags;
Willy Tarreau2b718102021-04-21 07:32:39 +02001485 LIST_INSERT(newly_acked_pkts, &pkt->list);
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001486 TRACE_PROTO("Removing packet #", QUIC_EV_CONN_PRSAFRM, qc, NULL, &pkt->pn_node.key);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001487 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list)
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001488 qc_treat_acked_tx_frm(qc, frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001489 node = eb64_prev(node);
1490 eb64_delete(&pkt->pn_node);
1491 }
1492
1493 return node;
1494}
1495
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001496/* Remove all frames from <pkt_frm_list> and reinsert them in the
1497 * same order they have been sent into <pktns_frm_list>.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001498 */
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001499static inline void qc_requeue_nacked_pkt_tx_frms(struct quic_conn *qc,
1500 struct list *pkt_frm_list,
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001501 struct list *pktns_frm_list)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001502{
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001503 struct quic_frame *frm, *frmbak;
1504 struct list tmp = LIST_HEAD_INIT(tmp);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001505
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001506 list_for_each_entry_safe(frm, frmbak, pkt_frm_list, list) {
1507 LIST_DELETE(&frm->list);
1508 TRACE_PROTO("to resend frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001509 LIST_APPEND(&tmp, &frm->list);
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001510 }
1511
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001512 LIST_SPLICE(pktns_frm_list, &tmp);
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001513}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001514
1515/* Free the TX packets of <pkts> list */
1516static inline void free_quic_tx_pkts(struct list *pkts)
1517{
1518 struct quic_tx_packet *pkt, *tmp;
1519
1520 list_for_each_entry_safe(pkt, tmp, pkts, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001521 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001522 eb64_delete(&pkt->pn_node);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001523 quic_tx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001524 }
1525}
1526
1527/* Send a packet loss event nofification to the congestion controller
1528 * attached to <qc> connection with <lost_bytes> the number of lost bytes,
1529 * <oldest_lost>, <newest_lost> the oldest lost packet and newest lost packet
1530 * at <now_us> current time.
1531 * Always succeeds.
1532 */
1533static inline void qc_cc_loss_event(struct quic_conn *qc,
1534 unsigned int lost_bytes,
1535 unsigned int newest_time_sent,
1536 unsigned int period,
1537 unsigned int now_us)
1538{
1539 struct quic_cc_event ev = {
1540 .type = QUIC_CC_EVT_LOSS,
1541 .loss.now_ms = now_ms,
1542 .loss.max_ack_delay = qc->max_ack_delay,
1543 .loss.lost_bytes = lost_bytes,
1544 .loss.newest_time_sent = newest_time_sent,
1545 .loss.period = period,
1546 };
1547
1548 quic_cc_event(&qc->path->cc, &ev);
1549}
1550
1551/* Send a packet ack event nofication for each newly acked packet of
1552 * <newly_acked_pkts> list and free them.
1553 * Always succeeds.
1554 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001555static inline void qc_treat_newly_acked_pkts(struct quic_conn *qc,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001556 struct list *newly_acked_pkts)
1557{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001558 struct quic_tx_packet *pkt, *tmp;
1559 struct quic_cc_event ev = { .type = QUIC_CC_EVT_ACK, };
1560
1561 list_for_each_entry_safe(pkt, tmp, newly_acked_pkts, list) {
1562 pkt->pktns->tx.in_flight -= pkt->in_flight_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01001563 qc->path->prep_in_flight -= pkt->in_flight_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001564 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01001565 qc->path->ifae_pkts--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001566 ev.ack.acked = pkt->in_flight_len;
1567 ev.ack.time_sent = pkt->time_sent;
1568 quic_cc_event(&qc->path->cc, &ev);
Willy Tarreau2b718102021-04-21 07:32:39 +02001569 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001570 eb64_delete(&pkt->pn_node);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001571 quic_tx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001572 }
1573
1574}
1575
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01001576/* Release all the frames attached to <pktns> packet number space */
1577static inline void qc_release_pktns_frms(struct quic_pktns *pktns)
1578{
1579 struct quic_frame *frm, *frmbak;
1580
1581 list_for_each_entry_safe(frm, frmbak, &pktns->tx.frms, list) {
1582 LIST_DELETE(&frm->list);
1583 pool_free(pool_head_quic_frame, frm);
1584 }
1585}
1586
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001587/* Handle <pkts> list of lost packets detected at <now_us> handling
1588 * their TX frames.
1589 * Send a packet loss event to the congestion controller if
1590 * in flight packet have been lost.
1591 * Also frees the packet in <pkts> list.
1592 * Never fails.
1593 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001594static inline void qc_release_lost_pkts(struct quic_conn *qc,
1595 struct quic_pktns *pktns,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001596 struct list *pkts,
1597 uint64_t now_us)
1598{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001599 struct quic_tx_packet *pkt, *tmp, *oldest_lost, *newest_lost;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001600 uint64_t lost_bytes;
1601
1602 lost_bytes = 0;
1603 oldest_lost = newest_lost = NULL;
1604 list_for_each_entry_safe(pkt, tmp, pkts, list) {
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001605 struct list tmp = LIST_HEAD_INIT(tmp);
1606
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001607 lost_bytes += pkt->in_flight_len;
1608 pkt->pktns->tx.in_flight -= pkt->in_flight_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01001609 qc->path->prep_in_flight -= pkt->in_flight_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001610 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01001611 qc->path->ifae_pkts--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001612 /* Treat the frames of this lost packet. */
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001613 qc_requeue_nacked_pkt_tx_frms(qc, &pkt->frms, &pktns->tx.frms);
Willy Tarreau2b718102021-04-21 07:32:39 +02001614 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001615 if (!oldest_lost) {
1616 oldest_lost = newest_lost = pkt;
1617 }
1618 else {
1619 if (newest_lost != oldest_lost)
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001620 quic_tx_packet_refdec(newest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001621 newest_lost = pkt;
1622 }
1623 }
1624
1625 if (lost_bytes) {
1626 /* Sent a packet loss event to the congestion controller. */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001627 qc_cc_loss_event(qc, lost_bytes, newest_lost->time_sent,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001628 newest_lost->time_sent - oldest_lost->time_sent, now_us);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001629 quic_tx_packet_refdec(oldest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001630 if (newest_lost != oldest_lost)
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001631 quic_tx_packet_refdec(newest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001632 }
1633}
1634
1635/* Look for packet loss from sent packets for <qel> encryption level of a
1636 * connection with <ctx> as I/O handler context. If remove is true, remove them from
1637 * their tree if deemed as lost or set the <loss_time> value the packet number
1638 * space if any not deemed lost.
1639 * Should be called after having received an ACK frame with newly acknowledged
1640 * packets or when the the loss detection timer has expired.
1641 * Always succeeds.
1642 */
1643static void qc_packet_loss_lookup(struct quic_pktns *pktns,
1644 struct quic_conn *qc,
1645 struct list *lost_pkts)
1646{
1647 struct eb_root *pkts;
1648 struct eb64_node *node;
1649 struct quic_loss *ql;
1650 unsigned int loss_delay;
1651
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001652 TRACE_ENTER(QUIC_EV_CONN_PKTLOSS, qc, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001653 pkts = &pktns->tx.pkts;
1654 pktns->tx.loss_time = TICK_ETERNITY;
1655 if (eb_is_empty(pkts))
1656 goto out;
1657
1658 ql = &qc->path->loss;
1659 loss_delay = QUIC_MAX(ql->latest_rtt, ql->srtt >> 3);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001660 loss_delay = QUIC_MAX(loss_delay, MS_TO_TICKS(QUIC_TIMER_GRANULARITY));
1661
1662 node = eb64_first(pkts);
1663 while (node) {
1664 struct quic_tx_packet *pkt;
1665 int64_t largest_acked_pn;
1666 unsigned int loss_time_limit, time_sent;
1667
1668 pkt = eb64_entry(&node->node, struct quic_tx_packet, pn_node);
Frédéric Lécaille59b07c72021-08-03 16:06:01 +02001669 largest_acked_pn = HA_ATOMIC_LOAD(&pktns->tx.largest_acked_pn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001670 node = eb64_next(node);
1671 if ((int64_t)pkt->pn_node.key > largest_acked_pn)
1672 break;
1673
1674 time_sent = pkt->time_sent;
1675 loss_time_limit = tick_add(time_sent, loss_delay);
1676 if (tick_is_le(time_sent, now_ms) ||
1677 (int64_t)largest_acked_pn >= pkt->pn_node.key + QUIC_LOSS_PACKET_THRESHOLD) {
1678 eb64_delete(&pkt->pn_node);
Willy Tarreau2b718102021-04-21 07:32:39 +02001679 LIST_APPEND(lost_pkts, &pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001680 }
1681 else {
Frédéric Lécailledc90c072021-12-27 18:15:27 +01001682 if (tick_isset(pktns->tx.loss_time))
1683 pktns->tx.loss_time = tick_first(pktns->tx.loss_time, loss_time_limit);
1684 else
1685 pktns->tx.loss_time = loss_time_limit;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001686 }
1687 }
1688
1689 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001690 TRACE_LEAVE(QUIC_EV_CONN_PKTLOSS, qc, pktns, lost_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001691}
1692
1693/* Parse ACK frame into <frm> from a buffer at <buf> address with <end> being at
1694 * one byte past the end of this buffer. Also update <rtt_sample> if needed, i.e.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05001695 * 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 +01001696 * acked ack-eliciting packet.
1697 * Return 1, if succeeded, 0 if not.
1698 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001699static inline int qc_parse_ack_frm(struct quic_conn *qc,
1700 struct quic_frame *frm,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001701 struct quic_enc_level *qel,
1702 unsigned int *rtt_sample,
1703 const unsigned char **pos, const unsigned char *end)
1704{
1705 struct quic_ack *ack = &frm->ack;
1706 uint64_t smallest, largest;
1707 struct eb_root *pkts;
1708 struct eb64_node *largest_node;
1709 unsigned int time_sent, pkt_flags;
1710 struct list newly_acked_pkts = LIST_HEAD_INIT(newly_acked_pkts);
1711 struct list lost_pkts = LIST_HEAD_INIT(lost_pkts);
1712
1713 if (ack->largest_ack > qel->pktns->tx.next_pn) {
1714 TRACE_DEVEL("ACK for not sent packet", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001715 qc, NULL, &ack->largest_ack);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001716 goto err;
1717 }
1718
1719 if (ack->first_ack_range > ack->largest_ack) {
1720 TRACE_DEVEL("too big first ACK range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001721 qc, NULL, &ack->first_ack_range);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001722 goto err;
1723 }
1724
1725 largest = ack->largest_ack;
1726 smallest = largest - ack->first_ack_range;
1727 pkts = &qel->pktns->tx.pkts;
1728 pkt_flags = 0;
1729 largest_node = NULL;
1730 time_sent = 0;
1731
Frédéric Lécaille59b07c72021-08-03 16:06:01 +02001732 if ((int64_t)ack->largest_ack > HA_ATOMIC_LOAD(&qel->pktns->tx.largest_acked_pn)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001733 largest_node = eb64_lookup(pkts, largest);
1734 if (!largest_node) {
1735 TRACE_DEVEL("Largest acked packet not found",
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001736 QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille83b7a5b2021-11-17 16:16:04 +01001737 }
1738 else {
1739 time_sent = eb64_entry(&largest_node->node,
1740 struct quic_tx_packet, pn_node)->time_sent;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001741 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001742 }
1743
1744 TRACE_PROTO("ack range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001745 qc, NULL, &largest, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001746 do {
1747 uint64_t gap, ack_range;
1748
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001749 qc_ackrng_pkts(qc, pkts, &pkt_flags, &newly_acked_pkts,
1750 largest_node, largest, smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001751 if (!ack->ack_range_num--)
1752 break;
1753
1754 if (!quic_dec_int(&gap, pos, end))
1755 goto err;
1756
1757 if (smallest < gap + 2) {
1758 TRACE_DEVEL("wrong gap value", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001759 qc, NULL, &gap, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001760 goto err;
1761 }
1762
1763 largest = smallest - gap - 2;
1764 if (!quic_dec_int(&ack_range, pos, end))
1765 goto err;
1766
1767 if (largest < ack_range) {
1768 TRACE_DEVEL("wrong ack range value", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001769 qc, NULL, &largest, &ack_range);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001770 goto err;
1771 }
1772
1773 /* Do not use this node anymore. */
1774 largest_node = NULL;
1775 /* Next range */
1776 smallest = largest - ack_range;
1777
1778 TRACE_PROTO("ack range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001779 qc, NULL, &largest, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001780 } while (1);
1781
1782 /* Flag this packet number space as having received an ACK. */
Frédéric Lécaille67f47d02021-08-19 15:19:09 +02001783 HA_ATOMIC_OR(&qel->pktns->flags, QUIC_FL_PKTNS_ACK_RECEIVED);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001784
1785 if (time_sent && (pkt_flags & QUIC_FL_TX_PACKET_ACK_ELICITING)) {
1786 *rtt_sample = tick_remain(time_sent, now_ms);
Frédéric Lécaille59b07c72021-08-03 16:06:01 +02001787 HA_ATOMIC_STORE(&qel->pktns->tx.largest_acked_pn, ack->largest_ack);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001788 }
1789
1790 if (!LIST_ISEMPTY(&newly_acked_pkts)) {
1791 if (!eb_is_empty(&qel->pktns->tx.pkts)) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001792 qc_packet_loss_lookup(qel->pktns, qc, &lost_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001793 if (!LIST_ISEMPTY(&lost_pkts))
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001794 qc_release_lost_pkts(qc, qel->pktns, &lost_pkts, now_ms);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001795 }
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001796 qc_treat_newly_acked_pkts(qc, &newly_acked_pkts);
1797 if (quic_peer_validated_addr(qc))
1798 qc->path->loss.pto_count = 0;
1799 qc_set_timer(qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001800 }
1801
1802
1803 return 1;
1804
1805 err:
1806 free_quic_tx_pkts(&newly_acked_pkts);
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001807 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001808 return 0;
1809}
1810
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02001811/* This function gives the detail of the SSL error. It is used only
1812 * if the debug mode and the verbose mode are activated. It dump all
1813 * the SSL error until the stack was empty.
1814 */
1815static forceinline void qc_ssl_dump_errors(struct connection *conn)
1816{
1817 if (unlikely(global.mode & MODE_DEBUG)) {
1818 while (1) {
1819 unsigned long ret;
1820
1821 ret = ERR_get_error();
1822 if (!ret)
1823 return;
1824
1825 fprintf(stderr, "conn. @%p OpenSSL error[0x%lx] %s: %s\n", conn, ret,
1826 ERR_func_error_string(ret), ERR_reason_error_string(ret));
1827 }
1828 }
1829}
1830
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01001831int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx,
1832 const char **str, int *len);
1833
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001834/* Provide CRYPTO data to the TLS stack found at <data> with <len> as length
1835 * from <qel> encryption level with <ctx> as QUIC connection context.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05001836 * Remaining parameter are there for debugging purposes.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001837 * Return 1 if succeeded, 0 if not.
1838 */
1839static inline int qc_provide_cdata(struct quic_enc_level *el,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001840 struct ssl_sock_ctx *ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001841 const unsigned char *data, size_t len,
1842 struct quic_rx_packet *pkt,
1843 struct quic_rx_crypto_frm *cf)
1844{
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02001845 int ssl_err, state;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001846 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001847
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001848 ssl_err = SSL_ERROR_NONE;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01001849 qc = ctx->qc;
1850
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001851 TRACE_ENTER(QUIC_EV_CONN_SSLDATA, qc);
1852
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001853 if (SSL_provide_quic_data(ctx->ssl, el->level, data, len) != 1) {
1854 TRACE_PROTO("SSL_provide_quic_data() error",
Frédéric Lécaillefde2a982021-12-27 15:12:09 +01001855 QUIC_EV_CONN_SSLDATA, qc, pkt, cf, ctx->ssl);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001856 goto err;
1857 }
1858
1859 el->rx.crypto.offset += len;
1860 TRACE_PROTO("in order CRYPTO data",
Frédéric Lécaillee7ff2b22021-12-22 17:40:38 +01001861 QUIC_EV_CONN_SSLDATA, qc, NULL, cf, ctx->ssl);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001862
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02001863 state = HA_ATOMIC_LOAD(&qc->state);
1864 if (state < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001865 ssl_err = SSL_do_handshake(ctx->ssl);
1866 if (ssl_err != 1) {
1867 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
1868 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
1869 TRACE_PROTO("SSL handshake",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001870 QUIC_EV_CONN_HDSHK, qc, &state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001871 goto out;
1872 }
1873
1874 TRACE_DEVEL("SSL handshake error",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001875 QUIC_EV_CONN_HDSHK, qc, &state, &ssl_err);
Frédéric Lécaille7c881bd2021-09-28 09:05:59 +02001876 qc_ssl_dump_errors(ctx->conn);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01001877 ERR_clear_error();
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001878 goto err;
1879 }
1880
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001881 TRACE_PROTO("SSL handshake OK", QUIC_EV_CONN_HDSHK, qc, &state);
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01001882 if (qc_is_listener(ctx->qc)) {
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02001883 HA_ATOMIC_STORE(&qc->state, QUIC_HS_ST_CONFIRMED);
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01001884 /* The connection is ready to be accepted. */
1885 quic_accept_push_qc(qc);
1886 }
1887 else {
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02001888 HA_ATOMIC_STORE(&qc->state, QUIC_HS_ST_COMPLETE);
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01001889 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001890 } else {
1891 ssl_err = SSL_process_quic_post_handshake(ctx->ssl);
1892 if (ssl_err != 1) {
1893 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
1894 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
1895 TRACE_DEVEL("SSL post handshake",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001896 QUIC_EV_CONN_HDSHK, qc, &state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001897 goto out;
1898 }
1899
1900 TRACE_DEVEL("SSL post handshake error",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001901 QUIC_EV_CONN_HDSHK, qc, &state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001902 goto err;
1903 }
1904
1905 TRACE_PROTO("SSL post handshake succeeded",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001906 QUIC_EV_CONN_HDSHK, qc, &state);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001907 }
Amaury Denoyellee2288c32021-12-03 14:44:21 +01001908
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001909 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001910 TRACE_LEAVE(QUIC_EV_CONN_SSLDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001911 return 1;
1912
1913 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001914 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_SSLDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001915 return 0;
1916}
1917
Frédéric Lécailledfbae762021-02-18 09:59:01 +01001918/* Allocate a new STREAM RX frame from <stream_fm> STREAM frame attached to
1919 * <pkt> RX packet.
1920 * Return it if succeeded, NULL if not.
1921 */
1922static inline
1923struct quic_rx_strm_frm *new_quic_rx_strm_frm(struct quic_stream *stream_frm,
1924 struct quic_rx_packet *pkt)
1925{
1926 struct quic_rx_strm_frm *frm;
1927
1928 frm = pool_alloc(pool_head_quic_rx_strm_frm);
1929 if (frm) {
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001930 frm->offset_node.key = stream_frm->offset.key;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01001931 frm->len = stream_frm->len;
1932 frm->data = stream_frm->data;
1933 frm->pkt = pkt;
1934 }
1935
1936 return frm;
1937}
1938
Frédéric Lécailledfbae762021-02-18 09:59:01 +01001939/* Copy as most as possible STREAM data from <strm_frm> into <strm> stream.
Frédéric Lécaille3fe7df82021-12-15 15:32:55 +01001940 * Also update <strm_frm> frame to reflect the data which have been consumed.
Frédéric Lécailledfbae762021-02-18 09:59:01 +01001941 */
1942static size_t qc_strm_cpy(struct buffer *buf, struct quic_stream *strm_frm)
1943{
1944 size_t ret;
1945
1946 ret = 0;
1947 while (strm_frm->len) {
1948 size_t try;
1949
1950 try = b_contig_space(buf);
1951 if (!try)
1952 break;
1953
1954 if (try > strm_frm->len)
1955 try = strm_frm->len;
1956 memcpy(b_tail(buf), strm_frm->data, try);
1957 strm_frm->len -= try;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001958 strm_frm->offset.key += try;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01001959 b_add(buf, try);
1960 ret += try;
1961 }
1962
1963 return ret;
1964}
1965
Frédéric Lécaillef1d38cb2021-12-20 12:02:13 +01001966/* Copy as most as possible STREAM data from <strm_frm> into <buf> buffer.
1967 * Also update <strm_frm> frame to reflect the data which have been consumed.
1968 */
1969static size_t qc_rx_strm_frm_cpy(struct buffer *buf,
1970 struct quic_rx_strm_frm *strm_frm)
1971{
1972 size_t ret;
1973
1974 ret = 0;
1975 while (strm_frm->len) {
1976 size_t try;
1977
1978 try = b_contig_space(buf);
1979 if (!try)
1980 break;
1981
1982 if (try > strm_frm->len)
1983 try = strm_frm->len;
1984 memcpy(b_tail(buf), strm_frm->data, try);
1985 strm_frm->len -= try;
1986 strm_frm->offset_node.key += try;
1987 b_add(buf, try);
1988 ret += try;
1989 }
1990
1991 return ret;
1992}
1993
1994/* Process as much as possible RX STREAM frames received for <qcs> */
1995static size_t qc_treat_rx_strm_frms(struct qcs *qcs)
1996{
1997 int total;
1998 struct eb64_node *frm_node;
1999
2000 total = 0;
2001 frm_node = eb64_first(&qcs->rx.frms);
2002 while (frm_node) {
2003 int ret;
2004 struct quic_rx_strm_frm *frm;
2005
2006 frm = eb64_entry(&frm_node->node, struct quic_rx_strm_frm, offset_node);
2007 if (frm->offset_node.key != qcs->rx.offset)
2008 break;
2009
2010 ret = qc_rx_strm_frm_cpy(&qcs->rx.buf, frm);
2011 qcs->rx.offset += ret;
2012 total += ret;
2013 if (frm->len) {
2014 /* If there is remaining data in this frame
2015 * this is because the destination buffer is full.
2016 */
2017 break;
2018 }
2019
2020 frm_node = eb64_next(frm_node);
2021 quic_rx_packet_refdec(frm->pkt);
2022 eb64_delete(&frm->offset_node);
2023 pool_free(pool_head_quic_rx_strm_frm, frm);
2024 }
2025
2026 return total;
2027}
2028
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002029/* Handle <strm_frm> bidirectional STREAM frame. Depending on its ID, several
2030 * streams may be open. The data are copied to the stream RX buffer if possible.
2031 * If not, the STREAM frame is stored to be treated again later.
2032 * We rely on the flow control so that not to store too much STREAM frames.
2033 * Return 1 if succeeded, 0 if not.
2034 */
2035static int qc_handle_bidi_strm_frm(struct quic_rx_packet *pkt,
2036 struct quic_stream *strm_frm,
2037 struct quic_conn *qc)
2038{
Frédéric Lécaillef1d38cb2021-12-20 12:02:13 +01002039 int total;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002040 struct qcs *strm;
Frédéric Lécaille10250b22021-12-22 16:13:43 +01002041 struct eb64_node *strm_node;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002042 struct quic_rx_strm_frm *frm;
Amaury Denoyelle6a2c2f42022-02-15 10:57:16 +01002043 char fin = 0;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002044
2045 strm_node = qcc_get_qcs(qc->qcc, strm_frm->id);
2046 if (!strm_node) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002047 TRACE_PROTO("Stream not found", QUIC_EV_CONN_PSTRM, qc);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002048 return 0;
2049 }
2050
2051 strm = eb64_entry(&strm_node->node, struct qcs, by_id);
Frédéric Lécaille10250b22021-12-22 16:13:43 +01002052 if (strm_frm->offset.key < strm->rx.offset) {
2053 size_t diff;
2054
2055 if (strm_frm->offset.key + strm_frm->len <= strm->rx.offset) {
2056 TRACE_PROTO("Already received STREAM data",
2057 QUIC_EV_CONN_PSTRM, qc);
2058 goto out;
2059 }
2060
2061 TRACE_PROTO("Partially already received STREAM data", QUIC_EV_CONN_PSTRM, qc);
2062 diff = strm->rx.offset - strm_frm->offset.key;
2063 strm_frm->offset.key = strm->rx.offset;
2064 strm_frm->len -= diff;
2065 strm_frm->data += diff;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002066 }
2067
Frédéric Lécaillef1d38cb2021-12-20 12:02:13 +01002068 total = 0;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02002069 if (strm_frm->offset.key == strm->rx.offset) {
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002070 int ret;
2071
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002072 if (!qc_get_buf(strm, &strm->rx.buf)) {
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002073 goto store_frm;
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002074 }
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002075
2076 ret = qc_strm_cpy(&strm->rx.buf, strm_frm);
Frédéric Lécaillef1d38cb2021-12-20 12:02:13 +01002077 total += ret;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002078 strm->rx.offset += ret;
2079 }
2080
Frédéric Lécaillef1d38cb2021-12-20 12:02:13 +01002081 total += qc_treat_rx_strm_frms(strm);
Amaury Denoyelle6a2c2f42022-02-15 10:57:16 +01002082 /* FIN is set only if all data were copied. */
2083 fin = strm_frm->fin && !strm_frm->len;
2084 if (total && qc->qcc->app_ops->decode_qcs(strm, fin, qc->qcc->ctx) < 0) {
Frédéric Lécaillefde2a982021-12-27 15:12:09 +01002085 TRACE_PROTO("Decoding error", QUIC_EV_CONN_PSTRM, qc);
Frédéric Lécaillef1d38cb2021-12-20 12:02:13 +01002086 return 0;
2087 }
2088
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002089 if (!strm_frm->len)
2090 goto out;
2091
2092 store_frm:
2093 frm = new_quic_rx_strm_frm(strm_frm, pkt);
2094 if (!frm) {
2095 TRACE_PROTO("Could not alloc RX STREAM frame",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002096 QUIC_EV_CONN_PSTRM, qc);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002097 return 0;
2098 }
2099
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02002100 eb64_insert(&strm->rx.frms, &frm->offset_node);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002101 quic_rx_packet_refinc(pkt);
2102
2103 out:
2104 return 1;
2105}
2106
2107/* Handle <strm_frm> unidirectional STREAM frame. Depending on its ID, several
2108 * streams may be open. The data are copied to the stream RX buffer if possible.
2109 * If not, the STREAM frame is stored to be treated again later.
2110 * We rely on the flow control so that not to store too much STREAM frames.
2111 * Return 1 if succeeded, 0 if not.
2112 */
2113static int qc_handle_uni_strm_frm(struct quic_rx_packet *pkt,
2114 struct quic_stream *strm_frm,
2115 struct quic_conn *qc)
2116{
2117 struct qcs *strm;
Frédéric Lécaille10250b22021-12-22 16:13:43 +01002118 struct eb64_node *strm_node;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002119 struct quic_rx_strm_frm *frm;
2120 size_t strm_frm_len;
2121
2122 strm_node = qcc_get_qcs(qc->qcc, strm_frm->id);
2123 if (!strm_node) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002124 TRACE_PROTO("Stream not found", QUIC_EV_CONN_PSTRM, qc);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002125 return 0;
2126 }
2127
2128 strm = eb64_entry(&strm_node->node, struct qcs, by_id);
Frédéric Lécaille10250b22021-12-22 16:13:43 +01002129 if (strm_frm->offset.key < strm->rx.offset) {
2130 size_t diff;
2131
2132 if (strm_frm->offset.key + strm_frm->len <= strm->rx.offset) {
2133 TRACE_PROTO("Already received STREAM data",
2134 QUIC_EV_CONN_PSTRM, qc);
2135 goto out;
2136 }
2137
2138 TRACE_PROTO("Partially already received STREAM data", QUIC_EV_CONN_PSTRM, qc);
2139 diff = strm->rx.offset - strm_frm->offset.key;
2140 strm_frm->offset.key = strm->rx.offset;
2141 strm_frm->len -= diff;
2142 strm_frm->data += diff;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002143 }
2144
2145 strm_frm_len = strm_frm->len;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02002146 if (strm_frm->offset.key == strm->rx.offset) {
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002147 int ret;
2148
Amaury Denoyelle1e308ff2021-10-12 18:14:12 +02002149 if (!qc_get_buf(strm, &strm->rx.buf))
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002150 goto store_frm;
2151
2152 /* qc_strm_cpy() will modify the offset, depending on the number
2153 * of bytes copied.
2154 */
2155 ret = qc_strm_cpy(&strm->rx.buf, strm_frm);
2156 /* Inform the application of the arrival of this new stream */
2157 if (!strm->rx.offset && !qc->qcc->app_ops->attach_ruqs(strm, qc->qcc->ctx)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002158 TRACE_PROTO("Could not set an uni-stream", QUIC_EV_CONN_PSTRM, qc);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002159 return 0;
2160 }
2161
Amaury Denoyellea3f222d2021-12-06 11:24:00 +01002162 if (ret)
2163 qcs_notify_recv(strm);
2164
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02002165 strm_frm->offset.key += ret;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002166 }
2167 /* Take this frame into an account for the stream flow control */
2168 strm->rx.offset += strm_frm_len;
2169 /* It all the data were provided to the application, there is no need to
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +05002170 * store any more information for it.
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002171 */
2172 if (!strm_frm->len)
2173 goto out;
2174
2175 store_frm:
2176 frm = new_quic_rx_strm_frm(strm_frm, pkt);
2177 if (!frm) {
2178 TRACE_PROTO("Could not alloc RX STREAM frame",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002179 QUIC_EV_CONN_PSTRM, qc);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002180 return 0;
2181 }
2182
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02002183 eb64_insert(&strm->rx.frms, &frm->offset_node);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002184 quic_rx_packet_refinc(pkt);
2185
2186 out:
2187 return 1;
2188}
2189
2190static inline int qc_handle_strm_frm(struct quic_rx_packet *pkt,
2191 struct quic_stream *strm_frm,
2192 struct quic_conn *qc)
2193{
2194 if (strm_frm->id & QCS_ID_DIR_BIT)
2195 return qc_handle_uni_strm_frm(pkt, strm_frm, qc);
2196 else
2197 return qc_handle_bidi_strm_frm(pkt, strm_frm, qc);
2198}
2199
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002200/* Prepare a fast retransmission from <qel> encryption level */
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002201static void qc_prep_fast_retrans(struct quic_enc_level *qel,
2202 struct quic_conn *qc)
2203{
2204 struct eb_root *pkts = &qel->pktns->tx.pkts;
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002205 struct eb64_node *node;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002206 struct quic_tx_packet *pkt;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002207
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002208 pkt = NULL;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002209 pkts = &qel->pktns->tx.pkts;
2210 node = eb64_first(pkts);
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002211 /* Skip the empty packet (they have already been retransmitted) */
2212 while (node) {
2213 pkt = eb64_entry(&node->node, struct quic_tx_packet, pn_node);
2214 if (!LIST_ISEMPTY(&pkt->frms))
2215 break;
2216 node = eb64_next(node);
2217 }
2218
2219 if (!pkt)
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002220 return;
2221
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01002222 qc_requeue_nacked_pkt_tx_frms(qc, &pkt->frms, &qel->pktns->tx.frms);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002223}
2224
2225/* Prepare a fast retransmission during handshake after a client
2226 * has resent Initial packets. According to the RFC a server may retransmit
2227 * up to two datagrams of Initial packets if did not receive all Initial packets
2228 * and resend them coalescing with others (Handshake here).
2229 * (Listener only).
2230 */
2231static void qc_prep_hdshk_fast_retrans(struct quic_conn *qc)
2232{
2233 struct list itmp = LIST_HEAD_INIT(itmp);
2234 struct list htmp = LIST_HEAD_INIT(htmp);
2235 struct quic_frame *frm, *frmbak;
2236
2237 struct quic_enc_level *iqel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
2238 struct quic_enc_level *hqel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
2239 struct quic_enc_level *qel = iqel;
2240 struct eb_root *pkts;
2241 struct eb64_node *node;
2242 struct quic_tx_packet *pkt;
2243 struct list *tmp = &itmp;
2244
2245 start:
2246 pkt = NULL;
2247 pkts = &qel->pktns->tx.pkts;
2248 node = eb64_first(pkts);
2249 /* Skip the empty packet (they have already been retransmitted) */
2250 while (node) {
2251 pkt = eb64_entry(&node->node, struct quic_tx_packet, pn_node);
2252 if (!LIST_ISEMPTY(&pkt->frms))
2253 break;
2254 node = eb64_next(node);
2255 }
2256
2257 if (!pkt)
2258 goto end;
2259
2260 qel->pktns->tx.pto_probe += 1;
2261 requeue:
2262 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list) {
2263 TRACE_PROTO("to resend frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
2264 LIST_DELETE(&frm->list);
2265 LIST_APPEND(tmp, &frm->list);
2266 }
2267
2268 if (qel == iqel) {
2269 if (pkt->next && pkt->next->type == QUIC_PACKET_TYPE_HANDSHAKE) {
2270 pkt = pkt->next;
2271 tmp = &htmp;
2272 hqel->pktns->tx.pto_probe += 1;
2273 goto requeue;
2274 }
2275
2276 qel = hqel;
2277 tmp = &htmp;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002278 goto start;
2279 }
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002280
2281 end:
2282 LIST_SPLICE(&iqel->pktns->tx.frms, &itmp);
2283 LIST_SPLICE(&hqel->pktns->tx.frms, &htmp);
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002284}
2285
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002286/* Parse all the frames of <pkt> QUIC packet for QUIC connection with <ctx>
2287 * as I/O handler context and <qel> as encryption level.
2288 * Returns 1 if succeeded, 0 if failed.
2289 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002290static 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 +01002291 struct quic_enc_level *qel)
2292{
2293 struct quic_frame frm;
2294 const unsigned char *pos, *end;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01002295 struct quic_conn *qc = ctx->qc;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002296 int fast_retrans = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002297
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002298 TRACE_ENTER(QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002299 /* Skip the AAD */
2300 pos = pkt->data + pkt->aad_len;
2301 end = pkt->data + pkt->len;
2302
2303 while (pos < end) {
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002304 if (!qc_parse_frm(&frm, pkt, &pos, end, qc))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002305 goto err;
2306
Frédéric Lécaille1ede8232021-12-23 14:11:25 +01002307 TRACE_PROTO("RX frame", QUIC_EV_CONN_PSTRM, qc, &frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002308 switch (frm.type) {
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002309 case QUIC_FT_PADDING:
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002310 break;
2311 case QUIC_FT_PING:
2312 break;
2313 case QUIC_FT_ACK:
2314 {
2315 unsigned int rtt_sample;
2316
2317 rtt_sample = 0;
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002318 if (!qc_parse_ack_frm(qc, &frm, qel, &rtt_sample, &pos, end))
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002319 goto err;
2320
2321 if (rtt_sample) {
2322 unsigned int ack_delay;
2323
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002324 ack_delay = !quic_application_pktns(qel->pktns, qc) ? 0 :
Frédéric Lécaille22576a22021-12-28 14:27:43 +01002325 HA_ATOMIC_LOAD(&qc->state) >= QUIC_HS_ST_CONFIRMED ?
2326 MS_TO_TICKS(QUIC_MIN(quic_ack_delay_ms(&frm.ack, qc), qc->max_ack_delay)) :
2327 MS_TO_TICKS(quic_ack_delay_ms(&frm.ack, qc));
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002328 quic_loss_srtt_update(&qc->path->loss, rtt_sample, ack_delay, qc);
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002329 }
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002330 break;
2331 }
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002332 case QUIC_FT_STOP_SENDING:
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002333 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002334 case QUIC_FT_CRYPTO:
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002335 {
2336 struct quic_rx_crypto_frm *cf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002337
Frédéric Lécaille917a7db2022-01-03 17:00:35 +01002338 if (unlikely(qel->tls_ctx.rx.flags & QUIC_FL_TLS_SECRETS_DCD)) {
2339 /* XXX TO DO: <cfdebug> is used only for the traces. */
2340 struct quic_rx_crypto_frm cfdebug = { };
2341
2342 cfdebug.offset_node.key = frm.crypto.offset;
2343 cfdebug.len = frm.crypto.len;
2344 TRACE_PROTO("CRYPTO data discarded",
2345 QUIC_EV_CONN_ELRXPKTS, qc, pkt, &cfdebug);
2346 break;
2347 }
2348
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002349 if (unlikely(frm.crypto.offset < qel->rx.crypto.offset)) {
2350 if (frm.crypto.offset + frm.crypto.len <= qel->rx.crypto.offset) {
2351 /* XXX TO DO: <cfdebug> is used only for the traces. */
2352 struct quic_rx_crypto_frm cfdebug = { };
2353
2354 cfdebug.offset_node.key = frm.crypto.offset;
2355 cfdebug.len = frm.crypto.len;
2356 /* Nothing to do */
2357 TRACE_PROTO("Already received CRYPTO data",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002358 QUIC_EV_CONN_ELRXPKTS, qc, pkt, &cfdebug);
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002359 if (qc_is_listener(ctx->qc) &&
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002360 qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL])
2361 fast_retrans = 1;
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002362 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002363 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002364 else {
2365 size_t diff = qel->rx.crypto.offset - frm.crypto.offset;
2366 /* XXX TO DO: <cfdebug> is used only for the traces. */
2367 struct quic_rx_crypto_frm cfdebug = { };
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002368
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002369 cfdebug.offset_node.key = frm.crypto.offset;
2370 cfdebug.len = frm.crypto.len;
2371 TRACE_PROTO("Partially already received CRYPTO data",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002372 QUIC_EV_CONN_ELRXPKTS, qc, pkt, &cfdebug);
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002373 frm.crypto.len -= diff;
2374 frm.crypto.data += diff;
2375 frm.crypto.offset = qel->rx.crypto.offset;
2376 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002377 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002378
2379 if (frm.crypto.offset == qel->rx.crypto.offset) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002380 /* XXX TO DO: <cf> is used only for the traces. */
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002381 struct quic_rx_crypto_frm cfdebug = { };
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002382
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002383 cfdebug.offset_node.key = frm.crypto.offset;
2384 cfdebug.len = frm.crypto.len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002385 if (!qc_provide_cdata(qel, ctx,
2386 frm.crypto.data, frm.crypto.len,
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002387 pkt, &cfdebug))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002388 goto err;
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002389
2390 break;
2391 }
2392
2393 /* frm.crypto.offset > qel->rx.crypto.offset */
2394 cf = pool_alloc(pool_head_quic_rx_crypto_frm);
2395 if (!cf) {
2396 TRACE_DEVEL("CRYPTO frame allocation failed",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002397 QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002398 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002399 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002400
2401 cf->offset_node.key = frm.crypto.offset;
2402 cf->len = frm.crypto.len;
2403 cf->data = frm.crypto.data;
2404 cf->pkt = pkt;
2405 eb64_insert(&qel->rx.crypto.frms, &cf->offset_node);
2406 quic_rx_packet_refinc(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002407 break;
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002408 }
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002409 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002410 {
2411 struct quic_stream *stream = &frm.stream;
2412
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002413 if (qc_is_listener(ctx->qc)) {
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002414 if (stream->id & QUIC_STREAM_FRAME_ID_INITIATOR_BIT)
2415 goto err;
2416 } else if (!(stream->id & QUIC_STREAM_FRAME_ID_INITIATOR_BIT))
2417 goto err;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002418
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002419 if (!qc_handle_strm_frm(pkt, stream, qc))
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002420 goto err;
2421
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002422 break;
2423 }
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002424 case QUIC_FT_MAX_DATA:
2425 case QUIC_FT_MAX_STREAM_DATA:
2426 case QUIC_FT_MAX_STREAMS_BIDI:
2427 case QUIC_FT_MAX_STREAMS_UNI:
2428 case QUIC_FT_DATA_BLOCKED:
2429 case QUIC_FT_STREAM_DATA_BLOCKED:
2430 case QUIC_FT_STREAMS_BLOCKED_BIDI:
2431 case QUIC_FT_STREAMS_BLOCKED_UNI:
2432 break;
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002433 case QUIC_FT_NEW_CONNECTION_ID:
Frédéric Lécaille2cca2412022-01-21 13:55:03 +01002434 case QUIC_FT_RETIRE_CONNECTION_ID:
2435 /* XXX TO DO XXX */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002436 break;
2437 case QUIC_FT_CONNECTION_CLOSE:
2438 case QUIC_FT_CONNECTION_CLOSE_APP:
Amaury Denoyelle5154e7a2021-12-08 14:51:04 +01002439 /* warn the mux to close the connection */
Amaury Denoyelle4af65952022-02-15 11:06:15 +01002440 if (qc->mux_state == QC_MUX_READY)
2441 qc->qcc->flags |= QC_CF_CC_RECV;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002442 tasklet_wakeup(qc->qcc->wait_event.tasklet);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002443 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002444 case QUIC_FT_HANDSHAKE_DONE:
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002445 if (qc_is_listener(ctx->qc))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002446 goto err;
2447
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002448 HA_ATOMIC_STORE(&qc->state, QUIC_HS_ST_CONFIRMED);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002449 break;
2450 default:
2451 goto err;
2452 }
2453 }
2454
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002455 if (fast_retrans)
2456 qc_prep_hdshk_fast_retrans(qc);
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002457
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002458 /* The server must switch from INITIAL to HANDSHAKE handshake state when it
2459 * has successfully parse a Handshake packet. The Initial encryption must also
2460 * be discarded.
2461 */
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002462 if (pkt->type == QUIC_PACKET_TYPE_HANDSHAKE && qc_is_listener(ctx->qc)) {
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002463 int state = HA_ATOMIC_LOAD(&qc->state);
Frédéric Lécaille8c27de72021-09-20 11:00:46 +02002464
2465 if (state >= QUIC_HS_ST_SERVER_INITIAL) {
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002466 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
Frédéric Lécaillefde2a982021-12-27 15:12:09 +01002467 TRACE_PROTO("discarding Initial pktns", QUIC_EV_CONN_PRSHPKT, qc);
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002468 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, qc);
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002469 qc_set_timer(ctx->qc);
Frédéric Lécaillea6255f52022-01-19 17:29:48 +01002470 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01002471 qc_release_pktns_frms(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns);
Frédéric Lécaille8c27de72021-09-20 11:00:46 +02002472 if (state < QUIC_HS_ST_SERVER_HANDSHAKE)
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002473 HA_ATOMIC_STORE(&qc->state, QUIC_HS_ST_SERVER_HANDSHAKE);
Frédéric Lécaille8c27de72021-09-20 11:00:46 +02002474 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002475 }
2476
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002477 TRACE_LEAVE(QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002478 return 1;
2479
2480 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002481 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002482 return 0;
2483}
2484
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002485/* Write <dglen> datagram length and <pkt> first packet address into <cbuf> ring
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +05002486 * buffer. This is the responsibility of the caller to check there is enough
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002487 * room in <cbuf>. Also increase the <cbuf> write index consequently.
2488 * This function must be called only after having built a correct datagram.
2489 * Always succeeds.
2490 */
2491static inline void qc_set_dg(struct cbuf *cbuf,
2492 uint16_t dglen, struct quic_tx_packet *pkt)
2493{
2494 write_u16(cb_wr(cbuf), dglen);
2495 write_ptr(cb_wr(cbuf) + sizeof dglen, pkt);
2496 cb_add(cbuf, dglen + sizeof dglen + sizeof pkt);
2497}
2498
Frédéric Lécaillee2660e62021-11-23 11:36:51 +01002499/* Prepare as much as possible packets into <qr> ring buffer for
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002500 * the QUIC connection with <ctx> as I/O handler context, possibly concatenating
2501 * several packets in the same datagram. A header made of two fields is added
2502 * to each datagram: the datagram length followed by the address of the first
2503 * packet in this datagram.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002504 * Returns 1 if succeeded, or 0 if something wrong happened.
2505 */
Frédéric Lécailleee2b8b32022-01-03 11:14:30 +01002506static int qc_prep_pkts(struct quic_conn *qc, struct qring *qr,
2507 enum quic_tls_enc_level tel,
2508 enum quic_tls_enc_level next_tel)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002509{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002510 struct quic_enc_level *qel;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002511 struct cbuf *cbuf;
2512 unsigned char *end_buf, *end, *pos, *spos;
2513 struct quic_tx_packet *first_pkt, *cur_pkt, *prv_pkt;
2514 /* length of datagrams */
2515 uint16_t dglen;
2516 size_t total;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01002517 int padding;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002518 /* Each datagram is prepended with its length followed by the
2519 * address of the first packet in the datagram.
2520 */
2521 size_t dg_headlen = sizeof dglen + sizeof first_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002522
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002523 TRACE_ENTER(QUIC_EV_CONN_PHPKTS, qc);
2524
Frédéric Lécaille99942d62022-01-07 14:32:31 +01002525 total = 0;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002526 start:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002527 dglen = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01002528 padding = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002529 qel = &qc->els[tel];
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002530 cbuf = qr->cbuf;
2531 spos = pos = cb_wr(cbuf);
2532 /* Leave at least <dglen> bytes at the end of this buffer
2533 * to ensure there is enough room to mark the end of prepared
2534 * contiguous data with a zero length.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002535 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002536 end_buf = pos + cb_contig_space(cbuf) - sizeof dglen;
2537 first_pkt = prv_pkt = NULL;
2538 while (end_buf - pos >= (int)qc->path->mtu + dg_headlen || prv_pkt) {
Frédéric Lécaille466e9da2021-12-29 12:04:13 +01002539 int err, probe, ack, cc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002540 enum quic_pkt_type pkt_type;
2541
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002542 TRACE_POINT(QUIC_EV_CONN_PHPKTS, qc, qel);
Frédéric Lécaille466e9da2021-12-29 12:04:13 +01002543 probe = ack = 0;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01002544 cc = HA_ATOMIC_LOAD(&qc->flags) & QUIC_FL_CONN_IMMEDIATE_CLOSE;
2545 if (!cc) {
Frédéric Lécaille94fca872022-01-19 18:54:18 +01002546 probe = qel->pktns->tx.pto_probe;
Frédéric Lécaille25eeebe2021-12-16 11:21:52 +01002547 ack = HA_ATOMIC_BTR(&qel->pktns->flags, QUIC_FL_PKTNS_ACK_REQUIRED_BIT);
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02002548 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002549 /* Do not build any more packet if the TX secrets are not available or
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01002550 * if there is nothing to send, i.e. if no CONNECTION_CLOSE or ACK are required
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002551 * and if there is no more packets to send upon PTO expiration
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01002552 * and if there is no more CRYPTO data available or in flight
2553 * congestion control limit is reached for prepared data
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002554 */
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01002555 if (!(qel->tls_ctx.tx.flags & QUIC_FL_TLS_SECRETS_SET) ||
Frédéric Lécaille466e9da2021-12-29 12:04:13 +01002556 (!cc && !ack && !probe &&
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01002557 (LIST_ISEMPTY(&qel->pktns->tx.frms) ||
Frédéric Lécaille67f47d02021-08-19 15:19:09 +02002558 qc->path->prep_in_flight >= qc->path->cwnd))) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002559 TRACE_DEVEL("nothing more to do", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002560 /* Set the current datagram as prepared into <cbuf> if
2561 * the was already a correct packet which was previously written.
2562 */
2563 if (prv_pkt)
2564 qc_set_dg(cbuf, dglen, first_pkt);
Frédéric Lécaille39ba1c32022-01-21 16:52:56 +01002565 /* Let's select the next encryption level */
2566 if (tel != next_tel && next_tel != QUIC_TLS_ENC_LEVEL_NONE) {
2567 tel = next_tel;
2568 qel = &qc->els[tel];
2569 /* Build a new datagram */
2570 prv_pkt = NULL;
2571 continue;
2572 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002573 break;
2574 }
2575
2576 pkt_type = quic_tls_level_pkt_type(tel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002577 if (!prv_pkt) {
2578 /* Leave room for the datagram header */
2579 pos += dg_headlen;
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002580 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc)) {
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +01002581 end = pos + QUIC_MIN(qc->path->mtu, 3 * qc->rx.bytes - qc->tx.prep_bytes);
2582 }
2583 else {
2584 end = pos + qc->path->mtu;
2585 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002586 }
2587
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01002588 cur_pkt = qc_build_pkt(&pos, end, qel, qc, dglen, padding,
Frédéric Lécaille466e9da2021-12-29 12:04:13 +01002589 pkt_type, ack, probe, cc, &err);
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02002590 /* Restore the PTO dgrams counter if a packet could not be built */
Frédéric Lécaille67f47d02021-08-19 15:19:09 +02002591 if (err < 0) {
Frédéric Lécaille2766e782021-08-30 17:16:07 +02002592 if (ack)
Frédéric Lécaille25eeebe2021-12-16 11:21:52 +01002593 HA_ATOMIC_BTS(&qel->pktns->flags, QUIC_FL_PKTNS_ACK_REQUIRED_BIT);
Frédéric Lécaille67f47d02021-08-19 15:19:09 +02002594 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002595 switch (err) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002596 case -2:
2597 goto err;
2598 case -1:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002599 /* If there was already a correct packet present, set the
2600 * current datagram as prepared into <cbuf>.
2601 */
2602 if (prv_pkt) {
2603 qc_set_dg(cbuf, dglen, first_pkt);
2604 goto stop_build;
2605 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002606 goto out;
2607 default:
Frédéric Lécaille63556772021-12-29 17:18:21 +01002608 break;
2609 }
Frédéric Lécaille67f47d02021-08-19 15:19:09 +02002610
Frédéric Lécaille63556772021-12-29 17:18:21 +01002611 /* This is to please to GCC. We cannot have (err >= 0 && !cur_pkt) */
2612 if (!cur_pkt)
2613 goto err;
2614
2615 total += cur_pkt->len;
2616 /* keep trace of the first packet in the datagram */
2617 if (!first_pkt)
2618 first_pkt = cur_pkt;
2619 /* Attach the current one to the previous one */
2620 if (prv_pkt)
2621 prv_pkt->next = cur_pkt;
2622 /* Let's say we have to build a new dgram */
2623 prv_pkt = NULL;
2624 dglen += cur_pkt->len;
2625 /* Client: discard the Initial encryption keys as soon as
2626 * a handshake packet could be built.
2627 */
2628 if (HA_ATOMIC_LOAD(&qc->state) == QUIC_HS_ST_CLIENT_INITIAL &&
2629 pkt_type == QUIC_PACKET_TYPE_HANDSHAKE) {
2630 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
2631 TRACE_PROTO("discarding Initial pktns", QUIC_EV_CONN_PHPKTS, qc);
2632 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, qc);
2633 qc_set_timer(qc);
Frédéric Lécaillea6255f52022-01-19 17:29:48 +01002634 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01002635 qc_release_pktns_frms(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns);
Frédéric Lécaille63556772021-12-29 17:18:21 +01002636 HA_ATOMIC_STORE(&qc->state, QUIC_HS_ST_CLIENT_HANDSHAKE);
2637 }
2638 /* If the data for the current encryption level have all been sent,
2639 * select the next level.
2640 */
2641 if ((tel == QUIC_TLS_ENC_LEVEL_INITIAL || tel == QUIC_TLS_ENC_LEVEL_HANDSHAKE) &&
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01002642 (LIST_ISEMPTY(&qel->pktns->tx.frms))) {
Frédéric Lécaille63556772021-12-29 17:18:21 +01002643 /* If QUIC_TLS_ENC_LEVEL_HANDSHAKE was already reached let's try QUIC_TLS_ENC_LEVEL_APP */
2644 if (tel == QUIC_TLS_ENC_LEVEL_HANDSHAKE && next_tel == tel)
2645 next_tel = QUIC_TLS_ENC_LEVEL_APP;
2646 tel = next_tel;
2647 qel = &qc->els[tel];
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01002648 if (!LIST_ISEMPTY(&qel->pktns->tx.frms)) {
Frédéric Lécaille63556772021-12-29 17:18:21 +01002649 /* If there is data for the next level, do not
2650 * consume a datagram.
2651 */
2652 prv_pkt = cur_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002653 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002654 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002655 /* If we have to build a new datagram, set the current datagram as
2656 * prepared into <cbuf>.
2657 */
2658 if (!prv_pkt) {
2659 qc_set_dg(cbuf, dglen, first_pkt);
2660 first_pkt = NULL;
2661 dglen = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01002662 padding = 0;
2663 }
2664 else if (prv_pkt->type == QUIC_TLS_ENC_LEVEL_INITIAL &&
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +01002665 (!qc_is_listener(qc) ||
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01002666 prv_pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)) {
2667 padding = 1;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002668 }
2669 }
2670
2671 stop_build:
2672 /* Reset <wr> writer index if in front of <rd> index */
2673 if (end_buf - pos < (int)qc->path->mtu + dg_headlen) {
2674 int rd = HA_ATOMIC_LOAD(&cbuf->rd);
2675
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002676 TRACE_DEVEL("buffer full", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002677 if (cb_contig_space(cbuf) >= sizeof(uint16_t)) {
2678 if ((pos != spos && cbuf->wr > rd) || (pos == spos && rd <= cbuf->wr)) {
2679 /* Mark the end of contiguous data for the reader */
2680 write_u16(cb_wr(cbuf), 0);
2681 cb_add(cbuf, sizeof(uint16_t));
2682 }
2683 }
2684
2685 if (rd && rd <= cbuf->wr) {
2686 cb_wr_reset(cbuf);
Frédéric Lécaille99942d62022-01-07 14:32:31 +01002687 /* Let's try to reuse this buffer */
2688 goto start;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002689 }
2690 }
2691
2692 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002693 TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002694 return total;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002695
2696 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002697 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002698 return -1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002699}
2700
2701/* Send the QUIC packets which have been prepared for QUIC connections
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002702 * from <qr> ring buffer with <ctx> as I/O handler context.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002703 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002704int qc_send_ppkts(struct qring *qr, struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002705{
2706 struct quic_conn *qc;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002707 struct cbuf *cbuf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002708
Amaury Denoyellec15dd922021-12-21 11:41:52 +01002709 qc = ctx->qc;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002710 cbuf = qr->cbuf;
2711 while (cb_contig_data(cbuf)) {
2712 unsigned char *pos;
2713 struct buffer tmpbuf = { };
2714 struct quic_tx_packet *first_pkt, *pkt, *next_pkt;
2715 uint16_t dglen;
2716 size_t headlen = sizeof dglen + sizeof first_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002717 unsigned int time_sent;
2718
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002719 pos = cb_rd(cbuf);
2720 dglen = read_u16(pos);
2721 /* End of prepared datagrams.
2722 * Reset the reader index only if in front of the writer index.
2723 */
2724 if (!dglen) {
2725 int wr = HA_ATOMIC_LOAD(&cbuf->wr);
2726
2727 if (wr && wr < cbuf->rd) {
2728 cb_rd_reset(cbuf);
2729 continue;
2730 }
2731 break;
2732 }
2733
2734 pos += sizeof dglen;
2735 first_pkt = read_ptr(pos);
2736 pos += sizeof first_pkt;
2737 tmpbuf.area = (char *)pos;
2738 tmpbuf.size = tmpbuf.data = dglen;
2739
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002740 TRACE_PROTO("to send", QUIC_EV_CONN_SPPKTS, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002741 for (pkt = first_pkt; pkt; pkt = pkt->next)
2742 quic_tx_packet_refinc(pkt);
Amaury Denoyelle58a77042022-02-09 15:43:07 +01002743 if(qc_snd_buf(qc, &tmpbuf, tmpbuf.data, 0) <= 0) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002744 for (pkt = first_pkt; pkt; pkt = pkt->next)
2745 quic_tx_packet_refdec(pkt);
Amaury Denoyelle74f22922022-01-18 16:48:17 +01002746 break;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002747 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002748
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002749 cb_del(cbuf, dglen + headlen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002750 qc->tx.bytes += tmpbuf.data;
2751 time_sent = now_ms;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002752
2753 for (pkt = first_pkt; pkt; pkt = next_pkt) {
2754 pkt->time_sent = time_sent;
2755 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING) {
2756 pkt->pktns->tx.time_of_last_eliciting = time_sent;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01002757 qc->path->ifae_pkts++;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002758 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002759 qc->path->in_flight += pkt->in_flight_len;
2760 pkt->pktns->tx.in_flight += pkt->in_flight_len;
2761 if (pkt->in_flight_len)
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002762 qc_set_timer(qc);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002763 TRACE_PROTO("sent pkt", QUIC_EV_CONN_SPPKTS, qc, pkt);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002764 next_pkt = pkt->next;
Frédéric Lécaille0eb60c52021-07-19 14:48:36 +02002765 eb64_insert(&pkt->pktns->tx.pkts, &pkt->pn_node);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002766 quic_tx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002767 }
2768 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002769
2770 return 1;
2771}
2772
2773/* Build all the frames which must be sent just after the handshake have succeeded.
2774 * This is essentially NEW_CONNECTION_ID frames. A QUIC server must also send
2775 * a HANDSHAKE_DONE frame.
2776 * Return 1 if succeeded, 0 if not.
2777 */
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02002778static int quic_build_post_handshake_frames(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002779{
2780 int i;
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02002781 struct quic_enc_level *qel;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002782 struct quic_frame *frm;
2783
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02002784 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002785 /* Only servers must send a HANDSHAKE_DONE frame. */
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +01002786 if (qc_is_listener(qc)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002787 frm = pool_alloc(pool_head_quic_frame);
Frédéric Lécaille153d4a82021-01-06 12:12:39 +01002788 if (!frm)
2789 return 0;
2790
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002791 frm->type = QUIC_FT_HANDSHAKE_DONE;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01002792 LIST_APPEND(&qel->pktns->tx.frms, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002793 }
2794
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02002795 for (i = 1; i < qc->tx.params.active_connection_id_limit; i++) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002796 struct quic_connection_id *cid;
2797
2798 frm = pool_alloc(pool_head_quic_frame);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01002799 if (!frm)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002800 goto err;
2801
Amaury Denoyelle0442efd2022-01-28 16:02:13 +01002802 cid = new_quic_cid(&qc->cids, qc, i);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01002803 if (!cid)
2804 goto err;
2805
Frédéric Lécaille74904a42022-01-27 15:35:56 +01002806 /* insert the allocated CID in the receiver datagram handler tree */
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01002807 ebmb_insert(&quic_dghdlrs[tid].cids, &cid->node, cid->cid.len);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01002808
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002809 quic_connection_id_to_frm_cpy(frm, cid);
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01002810 LIST_APPEND(&qel->pktns->tx.frms, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002811 }
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01002812 HA_ATOMIC_OR(&qc->flags, QUIC_FL_POST_HANDSHAKE_FRAMES_BUILT);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002813
2814 return 1;
2815
2816 err:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002817 return 0;
2818}
2819
2820/* Deallocate <l> list of ACK ranges. */
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002821void free_quic_arngs(struct quic_arngs *arngs)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002822{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002823 struct eb64_node *n;
2824 struct quic_arng_node *ar;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002825
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002826 n = eb64_first(&arngs->root);
2827 while (n) {
2828 struct eb64_node *next;
2829
2830 ar = eb64_entry(&n->node, struct quic_arng_node, first);
2831 next = eb64_next(n);
2832 eb64_delete(n);
2833 free(ar);
2834 n = next;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002835 }
2836}
2837
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002838/* Return the gap value between <p> and <q> ACK ranges where <q> follows <p> in
2839 * descending order.
2840 */
2841static inline size_t sack_gap(struct quic_arng_node *p,
2842 struct quic_arng_node *q)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002843{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002844 return p->first.key - q->last - 2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002845}
2846
2847
2848/* Remove the last elements of <ack_ranges> list of ack range updating its
2849 * encoded size until it goes below <limit>.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05002850 * Returns 1 if succeeded, 0 if not (no more element to remove).
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002851 */
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002852static int quic_rm_last_ack_ranges(struct quic_arngs *arngs, size_t limit)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002853{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002854 struct eb64_node *last, *prev;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002855
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002856 last = eb64_last(&arngs->root);
2857 while (last && arngs->enc_sz > limit) {
2858 struct quic_arng_node *last_node, *prev_node;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002859
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002860 prev = eb64_prev(last);
2861 if (!prev)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002862 return 0;
2863
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002864 last_node = eb64_entry(&last->node, struct quic_arng_node, first);
2865 prev_node = eb64_entry(&prev->node, struct quic_arng_node, first);
2866 arngs->enc_sz -= quic_int_getsize(last_node->last - last_node->first.key);
2867 arngs->enc_sz -= quic_int_getsize(sack_gap(prev_node, last_node));
2868 arngs->enc_sz -= quic_decint_size_diff(arngs->sz);
2869 --arngs->sz;
2870 eb64_delete(last);
2871 pool_free(pool_head_quic_arng, last);
2872 last = prev;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002873 }
2874
2875 return 1;
2876}
2877
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002878/* Set the encoded size of <arngs> QUIC ack ranges. */
2879static void quic_arngs_set_enc_sz(struct quic_arngs *arngs)
2880{
2881 struct eb64_node *node, *next;
2882 struct quic_arng_node *ar, *ar_next;
2883
2884 node = eb64_last(&arngs->root);
2885 if (!node)
2886 return;
2887
2888 ar = eb64_entry(&node->node, struct quic_arng_node, first);
2889 arngs->enc_sz = quic_int_getsize(ar->last) +
2890 quic_int_getsize(ar->last - ar->first.key) + quic_int_getsize(arngs->sz - 1);
2891
2892 while ((next = eb64_prev(node))) {
2893 ar_next = eb64_entry(&next->node, struct quic_arng_node, first);
2894 arngs->enc_sz += quic_int_getsize(sack_gap(ar, ar_next)) +
2895 quic_int_getsize(ar_next->last - ar_next->first.key);
2896 node = next;
2897 ar = eb64_entry(&node->node, struct quic_arng_node, first);
2898 }
2899}
2900
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002901/* Insert <ar> ack range into <argns> tree of ack ranges.
2902 * Returns the ack range node which has been inserted if succeeded, NULL if not.
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002903 */
2904static inline
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002905struct quic_arng_node *quic_insert_new_range(struct quic_arngs *arngs,
2906 struct quic_arng *ar)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002907{
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002908 struct quic_arng_node *new_ar;
2909
2910 new_ar = pool_alloc(pool_head_quic_arng);
2911 if (new_ar) {
2912 new_ar->first.key = ar->first;
2913 new_ar->last = ar->last;
2914 eb64_insert(&arngs->root, &new_ar->first);
2915 arngs->sz++;
2916 }
2917
2918 return new_ar;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002919}
2920
2921/* Update <arngs> tree of ACK ranges with <ar> as new ACK range value.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002922 * Note that this function computes the number of bytes required to encode
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002923 * this tree of ACK ranges in descending order.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002924 *
2925 * Descending order
2926 * ------------->
2927 * range1 range2
2928 * ..........|--------|..............|--------|
2929 * ^ ^ ^ ^
2930 * | | | |
2931 * last1 first1 last2 first2
2932 * ..........+--------+--------------+--------+......
2933 * diff1 gap12 diff2
2934 *
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002935 * To encode the previous list of ranges we must encode integers as follows in
2936 * descending order:
2937 * enc(last2),enc(diff2),enc(gap12),enc(diff1)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002938 * with diff1 = last1 - first1
2939 * diff2 = last2 - first2
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002940 * gap12 = first1 - last2 - 2 (>= 0)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002941 *
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002942 */
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002943int quic_update_ack_ranges_list(struct quic_arngs *arngs,
2944 struct quic_arng *ar)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002945{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002946 struct eb64_node *le;
2947 struct quic_arng_node *new_node;
2948 struct eb64_node *new;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002949
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002950 new = NULL;
2951 if (eb_is_empty(&arngs->root)) {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002952 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002953 if (!new_node)
2954 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002955
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002956 goto out;
2957 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002958
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002959 le = eb64_lookup_le(&arngs->root, ar->first);
2960 if (!le) {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002961 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002962 if (!new_node)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002963 return 0;
Frédéric Lécaille0e257832021-11-16 10:54:19 +01002964
2965 new = &new_node->first;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002966 }
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002967 else {
2968 struct quic_arng_node *le_ar =
2969 eb64_entry(&le->node, struct quic_arng_node, first);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002970
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002971 /* Already existing range */
Frédéric Lécailled3f4dd82021-06-02 15:36:12 +02002972 if (le_ar->last >= ar->last)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002973 return 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002974
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002975 if (le_ar->last + 1 >= ar->first) {
2976 le_ar->last = ar->last;
2977 new = le;
2978 new_node = le_ar;
2979 }
2980 else {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002981 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002982 if (!new_node)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002983 return 0;
Frédéric Lécaille8ba42762021-06-02 17:40:09 +02002984
2985 new = &new_node->first;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002986 }
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002987 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002988
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002989 /* Verify that the new inserted node does not overlap the nodes
2990 * which follow it.
2991 */
2992 if (new) {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002993 struct eb64_node *next;
2994 struct quic_arng_node *next_node;
2995
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002996 while ((next = eb64_next(new))) {
2997 next_node =
2998 eb64_entry(&next->node, struct quic_arng_node, first);
Frédéric Lécaillec825eba2021-06-02 17:38:13 +02002999 if (new_node->last + 1 < next_node->first.key)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003000 break;
3001
3002 if (next_node->last > new_node->last)
3003 new_node->last = next_node->last;
3004 eb64_delete(next);
Frédéric Lécaillebaea2842021-06-02 15:04:03 +02003005 pool_free(pool_head_quic_arng, next_node);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003006 /* Decrement the size of these ranges. */
3007 arngs->sz--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003008 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003009 }
3010
Frédéric Lécaille82b86522021-08-10 09:54:03 +02003011 out:
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003012 quic_arngs_set_enc_sz(arngs);
3013
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003014 return 1;
3015}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003016/* Remove the header protection of packets at <el> encryption level.
3017 * Always succeeds.
3018 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003019static inline void qc_rm_hp_pkts(struct quic_conn *qc, struct quic_enc_level *el)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003020{
3021 struct quic_tls_ctx *tls_ctx;
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003022 struct quic_rx_packet *pqpkt;
3023 struct mt_list *pkttmp1, pkttmp2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003024 struct quic_enc_level *app_qel;
3025
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003026 TRACE_ENTER(QUIC_EV_CONN_ELRMHP, qc);
3027 app_qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003028 /* A server must not process incoming 1-RTT packets before the handshake is complete. */
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01003029 if (el == app_qel && qc_is_listener(qc) &&
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003030 HA_ATOMIC_LOAD(&qc->state) < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003031 TRACE_PROTO("hp not removed (handshake not completed)",
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003032 QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003033 goto out;
3034 }
3035 tls_ctx = &el->tls_ctx;
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003036 mt_list_for_each_entry_safe(pqpkt, &el->rx.pqpkts, list, pkttmp1, pkttmp2) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003037 if (!qc_do_rm_hp(qc, pqpkt, tls_ctx, el->pktns->rx.largest_pn,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003038 pqpkt->data + pqpkt->pn_offset,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003039 pqpkt->data, pqpkt->data + pqpkt->len)) {
3040 TRACE_PROTO("hp removing error", QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003041 /* XXX TO DO XXX */
3042 }
3043 else {
3044 /* The AAD includes the packet number field */
3045 pqpkt->aad_len = pqpkt->pn_offset + pqpkt->pnl;
3046 /* Store the packet into the tree of packets to decrypt. */
3047 pqpkt->pn_node.key = pqpkt->pn;
Frédéric Lécaille98cdeb22021-07-26 16:38:14 +02003048 HA_RWLOCK_WRLOCK(QUIC_LOCK, &el->rx.pkts_rwlock);
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02003049 eb64_insert(&el->rx.pkts, &pqpkt->pn_node);
3050 quic_rx_packet_refinc(pqpkt);
Frédéric Lécaille98cdeb22021-07-26 16:38:14 +02003051 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &el->rx.pkts_rwlock);
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003052 TRACE_PROTO("hp removed", QUIC_EV_CONN_ELRMHP, qc, pqpkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003053 }
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003054 MT_LIST_DELETE_SAFE(pkttmp1);
3055 quic_rx_packet_refdec(pqpkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003056 }
3057
3058 out:
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003059 TRACE_LEAVE(QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003060}
3061
3062/* Process all the CRYPTO frame at <el> encryption level.
3063 * Return 1 if succeeded, 0 if not.
3064 */
3065static inline int qc_treat_rx_crypto_frms(struct quic_enc_level *el,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02003066 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003067{
3068 struct eb64_node *node;
3069
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003070 node = eb64_first(&el->rx.crypto.frms);
3071 while (node) {
3072 struct quic_rx_crypto_frm *cf;
3073
3074 cf = eb64_entry(&node->node, struct quic_rx_crypto_frm, offset_node);
3075 if (cf->offset_node.key != el->rx.crypto.offset)
3076 break;
3077
3078 if (!qc_provide_cdata(el, ctx, cf->data, cf->len, cf->pkt, cf))
3079 goto err;
3080
3081 node = eb64_next(node);
3082 quic_rx_packet_refdec(cf->pkt);
3083 eb64_delete(&cf->offset_node);
3084 pool_free(pool_head_quic_rx_crypto_frm, cf);
3085 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003086 return 1;
3087
3088 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003089 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RXCDATA, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003090 return 0;
3091}
3092
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003093/* Process all the packets at <el> and <next_el> encryption level.
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +05003094 * This is the caller responsibility to check that <cur_el> is different of <next_el>
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003095 * as pointer value.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003096 * Return 1 if succeeded, 0 if not.
3097 */
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003098int qc_treat_rx_pkts(struct quic_enc_level *cur_el, struct quic_enc_level *next_el,
3099 struct ssl_sock_ctx *ctx, int force_ack)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003100{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003101 struct eb64_node *node;
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003102 int64_t largest_pn = -1;
Amaury Denoyelle29632b82022-01-18 16:50:58 +01003103 struct quic_conn *qc = ctx->qc;
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003104 struct quic_enc_level *qel = cur_el;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003105
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003106 TRACE_ENTER(QUIC_EV_CONN_ELRXPKTS, ctx->qc);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003107 qel = cur_el;
3108 next_tel:
3109 if (!qel)
3110 goto out;
3111
3112 HA_RWLOCK_WRLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock);
3113 node = eb64_first(&qel->rx.pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003114 while (node) {
3115 struct quic_rx_packet *pkt;
3116
3117 pkt = eb64_entry(&node->node, struct quic_rx_packet, pn_node);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003118 TRACE_PROTO("new packet", QUIC_EV_CONN_ELRXPKTS,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003119 ctx->qc, pkt, NULL, ctx->ssl);
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01003120 if (!qc_pkt_decrypt(pkt, qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003121 /* Drop the packet */
3122 TRACE_PROTO("packet decryption failed -> dropped",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003123 QUIC_EV_CONN_ELRXPKTS, ctx->qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003124 }
3125 else {
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003126 if (!qc_parse_pkt_frms(pkt, ctx, qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003127 /* Drop the packet */
3128 TRACE_PROTO("packet parsing failed -> dropped",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003129 QUIC_EV_CONN_ELRXPKTS, ctx->qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003130 }
3131 else {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003132 struct quic_arng ar = { .first = pkt->pn, .last = pkt->pn };
3133
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003134 if (pkt->flags & QUIC_FL_RX_PACKET_ACK_ELICITING &&
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003135 (!(HA_ATOMIC_ADD_FETCH(&qc->rx.nb_ack_eliciting, 1) & 1) || force_ack))
Frédéric Lécaille25eeebe2021-12-16 11:21:52 +01003136 HA_ATOMIC_BTS(&qel->pktns->flags, QUIC_FL_PKTNS_ACK_REQUIRED_BIT);
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003137 if (pkt->pn > largest_pn)
3138 largest_pn = pkt->pn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003139 /* Update the list of ranges to acknowledge. */
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003140 if (!quic_update_ack_ranges_list(&qel->pktns->rx.arngs, &ar))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003141 TRACE_DEVEL("Could not update ack range list",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003142 QUIC_EV_CONN_ELRXPKTS, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003143 }
3144 }
3145 node = eb64_next(node);
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02003146 eb64_delete(&pkt->pn_node);
3147 quic_rx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003148 }
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003149 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003150
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003151 /* Update the largest packet number. */
3152 if (largest_pn != -1)
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003153 HA_ATOMIC_UPDATE_MAX(&qel->pktns->rx.largest_pn, largest_pn);
3154 if (!qc_treat_rx_crypto_frms(qel, ctx))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003155 goto err;
3156
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003157 if (qel == cur_el) {
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003158 BUG_ON(qel == next_el);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003159 qel = next_el;
3160 goto next_tel;
3161 }
3162
3163 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003164 TRACE_LEAVE(QUIC_EV_CONN_ELRXPKTS, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003165 return 1;
3166
3167 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003168 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ELRXPKTS, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003169 return 0;
3170}
3171
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003172/* Check if it's possible to remove header protection for packets related to
3173 * encryption level <qel>. If <qel> is NULL, assume it's false.
3174 *
3175 * Return true if the operation is possible else false.
3176 */
3177static int qc_qel_may_rm_hp(struct quic_conn *qc, struct quic_enc_level *qel)
3178{
3179 enum quic_tls_enc_level tel;
3180
3181 if (!qel)
3182 return 0;
3183
3184 tel = ssl_to_quic_enc_level(qel->level);
3185
3186 /* check if tls secrets are available */
3187 if (qel->tls_ctx.rx.flags & QUIC_FL_TLS_SECRETS_DCD)
3188 TRACE_DEVEL("Discarded keys", QUIC_EV_CONN_TRMHP, qc);
3189
3190 if (!(qel->tls_ctx.rx.flags & QUIC_FL_TLS_SECRETS_SET))
3191 return 0;
3192
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01003193 /* check if the connection layer is ready before using app level */
Frédéric Lécaille298931d2022-01-28 21:41:06 +01003194 if ((tel == QUIC_TLS_ENC_LEVEL_APP || tel == QUIC_TLS_ENC_LEVEL_EARLY_DATA) &&
3195 qc->mux_state != QC_MUX_READY)
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003196 return 0;
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003197
3198 return 1;
3199}
3200
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003201/* QUIC connection packet handler task. */
3202struct task *quic_conn_io_cb(struct task *t, void *context, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003203{
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003204 int ret, ssl_err;
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003205 struct ssl_sock_ctx *ctx;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02003206 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003207 enum quic_tls_enc_level tel, next_tel;
3208 struct quic_enc_level *qel, *next_qel;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003209 struct qring *qr; // Tx ring
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01003210 int st, force_ack, zero_rtt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003211
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003212 ctx = context;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01003213 qc = ctx->qc;
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01003214 TRACE_ENTER(QUIC_EV_CONN_HDSHK, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003215 qr = NULL;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02003216 st = HA_ATOMIC_LOAD(&qc->state);
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01003217 TRACE_PROTO("state", QUIC_EV_CONN_HDSHK, qc, &st);
Frédéric Lécaille6b663152022-01-04 17:03:11 +01003218 if (HA_ATOMIC_LOAD(&qc->flags) & QUIC_FL_CONN_IO_CB_WAKEUP) {
3219 HA_ATOMIC_BTR(&qc->flags, QUIC_FL_CONN_IO_CB_WAKEUP_BIT);
3220 /* The I/O handler has been woken up by the dgram listener
3221 * after the anti-amplification was reached.
3222 */
3223 qc_set_timer(qc);
3224 if (tick_isset(qc->timer) && tick_is_lt(qc->timer, now_ms))
3225 task_wakeup(qc->timer_task, TASK_WOKEN_MSG);
3226 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003227 ssl_err = SSL_ERROR_NONE;
Frédéric Lécaille4137b2d2021-12-17 18:24:16 +01003228 zero_rtt = st < QUIC_HS_ST_COMPLETE &&
3229 (!MT_LIST_ISEMPTY(&qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA].rx.pqpkts) ||
3230 qc_el_rx_pkts(&qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA]));
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003231 start:
Frédéric Lécaille917a7db2022-01-03 17:00:35 +01003232 if (st >= QUIC_HS_ST_COMPLETE &&
3233 qc_el_rx_pkts(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE])) {
3234 TRACE_PROTO("remaining Handshake packets", QUIC_EV_CONN_PHPKTS, qc);
3235 /* There may be remaining Handshake packets to treat and acknowledge. */
3236 tel = QUIC_TLS_ENC_LEVEL_HANDSHAKE;
3237 next_tel = QUIC_TLS_ENC_LEVEL_APP;
3238 }
3239 else if (!quic_get_tls_enc_levels(&tel, &next_tel, st, zero_rtt))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003240 goto err;
3241
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02003242 qel = &qc->els[tel];
Frédéric Lécaillef7980962021-08-19 17:35:21 +02003243 next_qel = next_tel == QUIC_TLS_ENC_LEVEL_NONE ? NULL : &qc->els[next_tel];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003244
3245 next_level:
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003246 /* Treat packets waiting for header packet protection decryption */
3247 if (!MT_LIST_ISEMPTY(&qel->rx.pqpkts) && qc_qel_may_rm_hp(qc, qel))
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003248 qc_rm_hp_pkts(qc, qel);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003249
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003250 force_ack = qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL] ||
3251 qel == &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
3252 if (!qc_treat_rx_pkts(qel, next_qel, ctx, force_ack))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003253 goto err;
3254
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01003255 if (zero_rtt && next_qel && !MT_LIST_ISEMPTY(&next_qel->rx.pqpkts) &&
3256 (next_qel->tls_ctx.rx.flags & QUIC_FL_TLS_SECRETS_SET)) {
3257 qel = next_qel;
3258 next_qel = NULL;
3259 goto next_level;
3260 }
3261
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003262 st = HA_ATOMIC_LOAD(&qc->state);
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01003263 if (st >= QUIC_HS_ST_COMPLETE) {
3264 if (!(HA_ATOMIC_LOAD(&qc->flags) & QUIC_FL_POST_HANDSHAKE_FRAMES_BUILT) &&
3265 !quic_build_post_handshake_frames(qc))
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003266 goto err;
Frédéric Lécaillefee7ba62021-12-06 12:09:08 +01003267
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01003268 if (!(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].tls_ctx.rx.flags &
3269 QUIC_FL_TLS_SECRETS_DCD)) {
3270 /* Discard the Handshake keys. */
3271 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
3272 TRACE_PROTO("discarding Handshake pktns", QUIC_EV_CONN_PHPKTS, qc);
3273 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns, qc);
3274 qc_set_timer(qc);
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01003275 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01003276 qc_release_pktns_frms(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns);
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01003277 }
3278
3279 if (qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) {
3280 /* There may be remaining handshake to build (acks) */
3281 st = QUIC_HS_ST_SERVER_HANDSHAKE;
3282 }
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003283 }
3284
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003285 if (!qr)
3286 qr = MT_LIST_POP(qc->tx.qring_list, typeof(qr), mt_list);
Frédéric Lécaillebec186d2022-01-12 15:32:55 +01003287 /* A listener does not send any O-RTT packet. O-RTT packet number space must not
3288 * be considered.
3289 */
3290 if (!quic_get_tls_enc_levels(&tel, &next_tel, st, 0))
Frédéric Lécailleee2b8b32022-01-03 11:14:30 +01003291 goto err;
3292 ret = qc_prep_pkts(qc, qr, tel, next_tel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003293 if (ret == -1)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003294 goto err;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003295 else if (ret == 0)
3296 goto skip_send;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003297
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003298 if (!qc_send_ppkts(qr, ctx))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003299 goto err;
3300
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003301 skip_send:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003302 /* Check if there is something to do for the next level.
3303 */
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003304 if (next_qel && next_qel != qel &&
3305 (next_qel->tls_ctx.rx.flags & QUIC_FL_TLS_SECRETS_SET) &&
Frédéric Lécaille7d807c92021-12-06 08:56:38 +01003306 (!MT_LIST_ISEMPTY(&next_qel->rx.pqpkts) || qc_el_rx_pkts(next_qel))) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003307 qel = next_qel;
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003308 next_qel = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003309 goto next_level;
3310 }
3311
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003312 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003313 TRACE_LEAVE(QUIC_EV_CONN_HDSHK, qc, &st);
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003314 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003315
3316 err:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003317 if (qr)
3318 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003319 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_HDSHK, qc, &st, &ssl_err);
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003320 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003321}
3322
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003323/* Uninitialize <qel> QUIC encryption level. Never fails. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003324static void quic_conn_enc_level_uninit(struct quic_enc_level *qel)
3325{
3326 int i;
3327
3328 for (i = 0; i < qel->tx.crypto.nb_buf; i++) {
3329 if (qel->tx.crypto.bufs[i]) {
3330 pool_free(pool_head_quic_crypto_buf, qel->tx.crypto.bufs[i]);
3331 qel->tx.crypto.bufs[i] = NULL;
3332 }
3333 }
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003334 ha_free(&qel->tx.crypto.bufs);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003335}
3336
3337/* Initialize QUIC TLS encryption level with <level<> as level for <qc> QUIC
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003338 * connection allocating everything needed.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003339 * Returns 1 if succeeded, 0 if not.
3340 */
3341static int quic_conn_enc_level_init(struct quic_conn *qc,
3342 enum quic_tls_enc_level level)
3343{
3344 struct quic_enc_level *qel;
3345
3346 qel = &qc->els[level];
3347 qel->level = quic_to_ssl_enc_level(level);
3348 qel->tls_ctx.rx.aead = qel->tls_ctx.tx.aead = NULL;
3349 qel->tls_ctx.rx.md = qel->tls_ctx.tx.md = NULL;
3350 qel->tls_ctx.rx.hp = qel->tls_ctx.tx.hp = NULL;
3351 qel->tls_ctx.rx.flags = 0;
3352 qel->tls_ctx.tx.flags = 0;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +01003353 qel->tls_ctx.flags = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003354
3355 qel->rx.pkts = EB_ROOT;
Frédéric Lécaille98cdeb22021-07-26 16:38:14 +02003356 HA_RWLOCK_INIT(&qel->rx.pkts_rwlock);
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003357 MT_LIST_INIT(&qel->rx.pqpkts);
Frédéric Lécaille9054d1b2021-07-26 16:23:53 +02003358 qel->rx.crypto.offset = 0;
3359 qel->rx.crypto.frms = EB_ROOT_UNIQUE;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003360
3361 /* Allocate only one buffer. */
3362 qel->tx.crypto.bufs = malloc(sizeof *qel->tx.crypto.bufs);
3363 if (!qel->tx.crypto.bufs)
3364 goto err;
3365
3366 qel->tx.crypto.bufs[0] = pool_alloc(pool_head_quic_crypto_buf);
3367 if (!qel->tx.crypto.bufs[0])
3368 goto err;
3369
3370 qel->tx.crypto.bufs[0]->sz = 0;
3371 qel->tx.crypto.nb_buf = 1;
3372
3373 qel->tx.crypto.sz = 0;
3374 qel->tx.crypto.offset = 0;
3375
3376 return 1;
3377
3378 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003379 ha_free(&qel->tx.crypto.bufs);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003380 return 0;
3381}
3382
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01003383/* Increment the <qc> refcount.
3384 *
3385 * This operation must be conducted when manipulating the quic_conn outside of
3386 * the connection pinned thread. These threads can only retrieve the connection
3387 * in the CID tree, so this function must be conducted under the CID lock.
3388 */
3389static inline void quic_conn_take(struct quic_conn *qc)
3390{
3391 HA_ATOMIC_INC(&qc->refcount);
3392}
3393
3394/* Decrement the <qc> refcount. If the refcount is zero *BEFORE* the
Ilya Shipitsin37d3e382022-01-07 14:46:15 +05003395 * subtraction, the quic_conn is freed.
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01003396 */
3397static void quic_conn_drop(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003398{
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01003399 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003400 int i;
3401
Amaury Denoyelle67e6cd52021-12-13 17:07:03 +01003402 if (!qc)
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003403 return;
3404
Amaury Denoyelle2eb7b302022-01-20 16:40:36 +01003405 if (HA_ATOMIC_FETCH_SUB(&qc->refcount, 1))
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01003406 return;
Amaury Denoyelle2af19852021-09-30 11:03:28 +02003407
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01003408 conn_ctx = HA_ATOMIC_LOAD(&qc->xprt_ctx);
Amaury Denoyelle2d9794b2022-01-20 17:43:20 +01003409 if (conn_ctx) {
3410 SSL_free(conn_ctx->ssl);
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01003411 pool_free(pool_head_quic_conn_ctx, conn_ctx);
Amaury Denoyelle2d9794b2022-01-20 17:43:20 +01003412 }
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01003413
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003414 for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++)
Amaury Denoyelle67e6cd52021-12-13 17:07:03 +01003415 quic_conn_enc_level_uninit(&qc->els[i]);
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01003416
Amaury Denoyelle67e6cd52021-12-13 17:07:03 +01003417 pool_free(pool_head_quic_conn_rxbuf, qc->rx.buf.area);
3418 pool_free(pool_head_quic_conn, qc);
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01003419 TRACE_PROTO("QUIC conn. freed", QUIC_EV_CONN_FREED, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003420}
3421
Amaury Denoyelle2eb7b302022-01-20 16:40:36 +01003422/* Release the quic_conn <qc>. It will decrement its refcount so that the
3423 * connection will be freed once all threads have finished to work with it. The
3424 * connection is removed from the CIDs tree and thus cannot be found by other
Amaury Denoyelle760da3b2022-01-20 17:43:02 +01003425 * threads after it. The connection tasklet is killed.
Amaury Denoyelle2eb7b302022-01-20 16:40:36 +01003426 *
3427 * Do not use <qc> after it as it may be freed. This function must only be
3428 * called by the thread responsible of the quic_conn tasklet.
3429 */
3430static void quic_conn_release(struct quic_conn *qc)
3431{
Amaury Denoyelle760da3b2022-01-20 17:43:02 +01003432 struct ssl_sock_ctx *conn_ctx;
3433
Amaury Denoyelle2eb7b302022-01-20 16:40:36 +01003434 /* remove the connection from receiver cids trees */
Amaury Denoyelle2eb7b302022-01-20 16:40:36 +01003435 ebmb_delete(&qc->odcid_node);
3436 ebmb_delete(&qc->scid_node);
3437 free_quic_conn_cids(qc);
Amaury Denoyelle2eb7b302022-01-20 16:40:36 +01003438
Amaury Denoyelle760da3b2022-01-20 17:43:02 +01003439 /* Kill the tasklet. Do not use tasklet_free as this is not thread safe
3440 * as other threads may call tasklet_wakeup after this.
3441 */
3442 conn_ctx = HA_ATOMIC_LOAD(&qc->xprt_ctx);
3443 if (conn_ctx)
3444 tasklet_kill(conn_ctx->wait_event.tasklet);
3445
Amaury Denoyelle2eb7b302022-01-20 16:40:36 +01003446 quic_conn_drop(qc);
3447}
3448
Amaury Denoyelle414cac52021-09-22 11:14:37 +02003449void quic_close(struct connection *conn, void *xprt_ctx)
3450{
3451 struct ssl_sock_ctx *conn_ctx = xprt_ctx;
Amaury Denoyelle29632b82022-01-18 16:50:58 +01003452 struct quic_conn *qc = conn_ctx->qc;
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01003453
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01003454 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01003455 /* This task must be deleted by the connection-pinned thread. */
3456 if (qc->timer_task) {
3457 task_destroy(qc->timer_task);
3458 qc->timer_task = NULL;
3459 }
3460
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01003461 /* Next application data can be dropped. */
3462 qc->mux_state = QC_MUX_RELEASED;
3463
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01003464 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle9c4da932022-01-21 14:54:58 +01003465
Amaury Denoyelle2eb7b302022-01-20 16:40:36 +01003466 /* TODO for now release the quic_conn on notification by the upper
3467 * layer. It could be useful to delay it if there is remaining data to
3468 * send or data to be acked.
3469 */
3470 quic_conn_release(qc);
Amaury Denoyelle414cac52021-09-22 11:14:37 +02003471}
3472
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003473/* Callback called upon loss detection and PTO timer expirations. */
Willy Tarreau144f84a2021-03-02 16:09:26 +01003474static struct task *process_timer(struct task *task, void *ctx, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003475{
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02003476 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003477 struct quic_conn *qc;
3478 struct quic_pktns *pktns;
Frédéric Lécaillea56054e2021-12-31 16:35:28 +01003479 int i, st;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003480
3481 conn_ctx = task->context;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01003482 qc = conn_ctx->qc;
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003483 TRACE_ENTER(QUIC_EV_CONN_PTIMER, qc,
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01003484 NULL, NULL, &qc->path->ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003485 task->expire = TICK_ETERNITY;
3486 pktns = quic_loss_pktns(qc);
3487 if (tick_isset(pktns->tx.loss_time)) {
3488 struct list lost_pkts = LIST_HEAD_INIT(lost_pkts);
3489
3490 qc_packet_loss_lookup(pktns, qc, &lost_pkts);
3491 if (!LIST_ISEMPTY(&lost_pkts))
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003492 qc_release_lost_pkts(qc, pktns, &lost_pkts, now_ms);
3493 qc_set_timer(qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003494 goto out;
3495 }
3496
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02003497 st = HA_ATOMIC_LOAD(&qc->state);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003498 if (qc->path->in_flight) {
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02003499 pktns = quic_pto_pktns(qc, st >= QUIC_HS_ST_COMPLETE, NULL);
Frédéric Lécaille0fa553d2022-01-17 14:26:12 +01003500 if (pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL]) {
3501 pktns->tx.pto_probe = 1;
3502 if (qc->pktns[QUIC_TLS_PKTNS_HANDSHAKE].tx.in_flight)
3503 qc->pktns[QUIC_TLS_PKTNS_HANDSHAKE].tx.pto_probe = 1;
3504 }
3505 else {
3506 pktns->tx.pto_probe = 2;
3507 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003508 }
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +01003509 else if (!qc_is_listener(qc) && st <= QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003510 struct quic_enc_level *iel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
3511 struct quic_enc_level *hel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
3512
3513 if (hel->tls_ctx.rx.flags == QUIC_FL_TLS_SECRETS_SET)
3514 hel->pktns->tx.pto_probe = 1;
3515 if (iel->tls_ctx.rx.flags == QUIC_FL_TLS_SECRETS_SET)
3516 iel->pktns->tx.pto_probe = 1;
3517 }
Frédéric Lécaillea56054e2021-12-31 16:35:28 +01003518
3519 for (i = QUIC_TLS_ENC_LEVEL_INITIAL; i < QUIC_TLS_ENC_LEVEL_MAX; i++) {
Frédéric Lécaillea56054e2021-12-31 16:35:28 +01003520 if (i == QUIC_TLS_ENC_LEVEL_APP && !quic_peer_validated_addr(qc))
3521 continue;
3522
Frédéric Lécaille53c7d8d2022-02-15 12:00:55 +01003523 qc_prep_fast_retrans(&qc->els[i], qc);
Frédéric Lécaillea56054e2021-12-31 16:35:28 +01003524 }
3525
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003526 tasklet_wakeup(conn_ctx->wait_event.tasklet);
3527 qc->path->loss.pto_count++;
3528
3529 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003530 TRACE_LEAVE(QUIC_EV_CONN_PTIMER, qc, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003531
3532 return task;
3533}
3534
3535/* Initialize <conn> QUIC connection with <quic_initial_clients> as root of QUIC
3536 * connections used to identify the first Initial packets of client connecting
3537 * to listeners. This parameter must be NULL for QUIC connections attached
3538 * to listeners. <dcid> is the destination connection ID with <dcid_len> as length.
3539 * <scid> is the source connection ID with <scid_len> as length.
3540 * Returns 1 if succeeded, 0 if not.
3541 */
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003542static struct quic_conn *qc_new_conn(unsigned int version, int ipv4,
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01003543 unsigned char *dcid, size_t dcid_len, size_t dcid_addr_len,
Frédéric Lécaille6b197642021-07-06 16:25:08 +02003544 unsigned char *scid, size_t scid_len, int server, void *owner)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003545{
3546 int i;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003547 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003548 /* Initial CID. */
3549 struct quic_connection_id *icid;
Frédéric Lécaillec0b481f2022-02-02 15:39:55 +01003550 char *buf_area = NULL;
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003551 struct listener *l = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003552
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02003553 TRACE_ENTER(QUIC_EV_CONN_INIT);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003554 qc = pool_zalloc(pool_head_quic_conn);
3555 if (!qc) {
3556 TRACE_PROTO("Could not allocate a new connection", QUIC_EV_CONN_INIT);
3557 goto err;
3558 }
3559
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01003560 HA_ATOMIC_STORE(&qc->refcount, 0);
3561
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003562 buf_area = pool_alloc(pool_head_quic_conn_rxbuf);
3563 if (!buf_area) {
Amaury Denoyellee770ce32021-12-21 14:51:56 +01003564 TRACE_PROTO("Could not allocate a new RX buffer", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003565 goto err;
3566 }
3567
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003568 qc->cids = EB_ROOT;
3569 /* QUIC Server (or listener). */
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02003570 if (server) {
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003571 l = owner;
Frédéric Lécaille6b197642021-07-06 16:25:08 +02003572
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01003573 qc->flags |= QUIC_FL_CONN_LISTENER;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02003574 HA_ATOMIC_STORE(&qc->state, QUIC_HS_ST_SERVER_INITIAL);
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01003575 /* Copy the initial DCID with the address. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003576 qc->odcid.len = dcid_len;
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01003577 qc->odcid.addrlen = dcid_addr_len;
3578 memcpy(qc->odcid.data, dcid, dcid_len + dcid_addr_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003579
Amaury Denoyelle42b9f1c2021-11-24 15:29:53 +01003580 /* copy the packet SCID to reuse it as DCID for sending */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003581 if (scid_len)
3582 memcpy(qc->dcid.data, scid, scid_len);
3583 qc->dcid.len = scid_len;
Frédéric Lécaillec1029f62021-10-20 11:09:58 +02003584 qc->tx.qring_list = &l->rx.tx_qring_list;
Amaury Denoyelle2af19852021-09-30 11:03:28 +02003585 qc->li = l;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003586 }
3587 /* QUIC Client (outgoing connection to servers) */
3588 else {
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02003589 HA_ATOMIC_STORE(&qc->state, QUIC_HS_ST_CLIENT_INITIAL);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003590 if (dcid_len)
3591 memcpy(qc->dcid.data, dcid, dcid_len);
3592 qc->dcid.len = dcid_len;
3593 }
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01003594 qc->mux_state = QC_MUX_NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003595
3596 /* Initialize the output buffer */
3597 qc->obuf.pos = qc->obuf.data;
3598
Amaury Denoyelle0442efd2022-01-28 16:02:13 +01003599 icid = new_quic_cid(&qc->cids, qc, 0);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003600 if (!icid) {
Amaury Denoyellee770ce32021-12-21 14:51:56 +01003601 TRACE_PROTO("Could not allocate a new connection ID", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003602 goto err;
3603 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003604
Frédéric Lécaille74904a42022-01-27 15:35:56 +01003605 /* insert the allocated CID in the receiver datagram handler tree */
3606 if (server)
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01003607 ebmb_insert(&quic_dghdlrs[tid].cids, &icid->node, icid->cid.len);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003608
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003609 /* Select our SCID which is the first CID with 0 as sequence number. */
3610 qc->scid = icid->cid;
3611
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003612 /* Packet number spaces initialization. */
3613 for (i = 0; i < QUIC_TLS_PKTNS_MAX; i++)
3614 quic_pktns_init(&qc->pktns[i]);
3615 /* QUIC encryption level context initialization. */
3616 for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++) {
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003617 if (!quic_conn_enc_level_init(qc, i)) {
Amaury Denoyellee770ce32021-12-21 14:51:56 +01003618 TRACE_PROTO("Could not initialize an encryption level", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003619 goto err;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003620 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003621 /* Initialize the packet number space. */
3622 qc->els[i].pktns = &qc->pktns[quic_tls_pktns(i)];
3623 }
3624
Frédéric Lécaillec8d3f872021-07-06 17:19:44 +02003625 qc->version = version;
Frédéric Lécaillea956d152021-11-10 09:24:22 +01003626 qc->tps_tls_ext = qc->version & 0xff000000 ?
3627 TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS_DRAFT:
3628 TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003629 /* TX part. */
3630 LIST_INIT(&qc->tx.frms_to_send);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003631 qc->tx.nb_buf = QUIC_CONN_TX_BUFS_NB;
3632 qc->tx.wbuf = qc->tx.rbuf = 0;
3633 qc->tx.bytes = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003634 /* RX part. */
3635 qc->rx.bytes = 0;
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003636 qc->rx.nb_ack_eliciting = 0;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003637 qc->rx.buf = b_make(buf_area, QUIC_CONN_RX_BUFSZ, 0, 0);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003638 LIST_INIT(&qc->rx.pkt_list);
Frédéric Lécaille40df78f2021-11-30 10:59:37 +01003639 if (!quic_tls_ku_init(qc)) {
Amaury Denoyellee770ce32021-12-21 14:51:56 +01003640 TRACE_PROTO("Key update initialization failed", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille40df78f2021-11-30 10:59:37 +01003641 goto err;
3642 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003643
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003644 /* XXX TO DO: Only one path at this time. */
3645 qc->path = &qc->paths[0];
3646 quic_path_init(qc->path, ipv4, default_quic_cc_algo, qc);
3647
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01003648 /* required to use MTLIST_IN_LIST */
3649 MT_LIST_INIT(&qc->accept_list);
3650
Amaury Denoyellee770ce32021-12-21 14:51:56 +01003651 TRACE_LEAVE(QUIC_EV_CONN_INIT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003652
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003653 return qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003654
3655 err:
Amaury Denoyellee770ce32021-12-21 14:51:56 +01003656 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_INIT, qc ? qc : NULL);
Frédéric Lécaillec0b481f2022-02-02 15:39:55 +01003657 pool_free(pool_head_quic_conn_rxbuf, buf_area);
3658 if (qc)
3659 qc->rx.buf.area = NULL;
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01003660 quic_conn_drop(qc);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003661 return NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003662}
3663
3664/* Initialize the timer task of <qc> QUIC connection.
3665 * Returns 1 if succeeded, 0 if not.
3666 */
3667static int quic_conn_init_timer(struct quic_conn *qc)
3668{
Frédéric Lécaillef57c3332021-12-09 10:06:21 +01003669 /* Attach this task to the same thread ID used for the connection */
3670 qc->timer_task = task_new(1UL << qc->tid);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003671 if (!qc->timer_task)
3672 return 0;
3673
3674 qc->timer = TICK_ETERNITY;
3675 qc->timer_task->process = process_timer;
Frédéric Lécaille7fbb94d2022-01-31 10:37:07 +01003676 qc->timer_task->context = qc->xprt_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003677
3678 return 1;
3679}
3680
3681/* Parse into <pkt> a long header located at <*buf> buffer, <end> begin a pointer to the end
3682 * past one byte of this buffer.
3683 */
3684static inline int quic_packet_read_long_header(unsigned char **buf, const unsigned char *end,
3685 struct quic_rx_packet *pkt)
3686{
3687 unsigned char dcid_len, scid_len;
3688
3689 /* Version */
3690 if (!quic_read_uint32(&pkt->version, (const unsigned char **)buf, end))
3691 return 0;
3692
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003693 /* Destination Connection ID Length */
3694 dcid_len = *(*buf)++;
3695 /* We want to be sure we can read <dcid_len> bytes and one more for <scid_len> value */
3696 if (dcid_len > QUIC_CID_MAXLEN || end - *buf < dcid_len + 1)
3697 /* XXX MUST BE DROPPED */
3698 return 0;
3699
3700 if (dcid_len) {
3701 /* Check that the length of this received DCID matches the CID lengths
3702 * of our implementation for non Initials packets only.
3703 */
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01003704 if (pkt->type != QUIC_PACKET_TYPE_INITIAL &&
3705 pkt->type != QUIC_PACKET_TYPE_0RTT &&
Amaury Denoyelled4962512021-12-14 17:17:28 +01003706 dcid_len != QUIC_HAP_CID_LEN)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003707 return 0;
3708
3709 memcpy(pkt->dcid.data, *buf, dcid_len);
3710 }
3711
3712 pkt->dcid.len = dcid_len;
3713 *buf += dcid_len;
3714
3715 /* Source Connection ID Length */
3716 scid_len = *(*buf)++;
3717 if (scid_len > QUIC_CID_MAXLEN || end - *buf < scid_len)
3718 /* XXX MUST BE DROPPED */
3719 return 0;
3720
3721 if (scid_len)
3722 memcpy(pkt->scid.data, *buf, scid_len);
3723 pkt->scid.len = scid_len;
3724 *buf += scid_len;
3725
3726 return 1;
3727}
3728
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003729/* Insert <pkt> RX packet in its <qel> RX packets tree */
3730static void qc_pkt_insert(struct quic_rx_packet *pkt, struct quic_enc_level *qel)
3731{
3732 pkt->pn_node.key = pkt->pn;
Frédéric Lécaille2ce5acf2021-12-20 14:41:19 +01003733 quic_rx_packet_refinc(pkt);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003734 HA_RWLOCK_WRLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock);
3735 eb64_insert(&qel->rx.pkts, &pkt->pn_node);
3736 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003737}
3738
3739/* Try to remove the header protection of <pkt> QUIC packet attached to <qc>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003740 * QUIC connection with <buf> as packet number field address, <end> a pointer to one
3741 * byte past the end of the buffer containing this packet and <beg> the address of
3742 * the packet first byte.
3743 * If succeeded, this function updates <*buf> to point to the next packet in the buffer.
3744 * Returns 1 if succeeded, 0 if not.
3745 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003746static inline int qc_try_rm_hp(struct quic_conn *qc,
3747 struct quic_rx_packet *pkt,
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01003748 unsigned char *buf, unsigned char *beg,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003749 const unsigned char *end,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003750 struct quic_enc_level **el)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003751{
3752 unsigned char *pn = NULL; /* Packet number field */
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003753 enum quic_tls_enc_level tel;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003754 struct quic_enc_level *qel;
3755 /* Only for traces. */
3756 struct quic_rx_packet *qpkt_trace;
3757
3758 qpkt_trace = NULL;
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003759 TRACE_ENTER(QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003760 /* The packet number is here. This is also the start minus
3761 * QUIC_PACKET_PN_MAXLEN of the sample used to add/remove the header
3762 * protection.
3763 */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01003764 pn = buf;
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003765
3766 tel = quic_packet_type_enc_level(pkt->type);
3767 qel = &qc->els[tel];
3768
3769 if (qc_qel_may_rm_hp(qc, qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003770 /* Note that the following function enables us to unprotect the packet
3771 * number and its length subsequently used to decrypt the entire
3772 * packets.
3773 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003774 if (!qc_do_rm_hp(qc, pkt, &qel->tls_ctx,
3775 qel->pktns->rx.largest_pn, pn, beg, end)) {
3776 TRACE_PROTO("hp error", QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003777 goto err;
3778 }
3779
3780 /* The AAD includes the packet number field found at <pn>. */
3781 pkt->aad_len = pn - beg + pkt->pnl;
3782 qpkt_trace = pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003783 }
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003784 else if (qel) {
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003785 if (qel->tls_ctx.rx.flags & QUIC_FL_TLS_SECRETS_DCD) {
3786 /* If the packet number space has been discarded, this packet
3787 * will be not parsed.
3788 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003789 TRACE_PROTO("Discarded pktns", QUIC_EV_CONN_TRMHP, qc, pkt);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003790 goto out;
3791 }
3792
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003793 TRACE_PROTO("hp not removed", QUIC_EV_CONN_TRMHP, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003794 pkt->pn_offset = pn - beg;
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02003795 MT_LIST_APPEND(&qel->rx.pqpkts, &pkt->list);
3796 quic_rx_packet_refinc(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003797 }
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003798 else {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003799 TRACE_PROTO("Unknown packet type", QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003800 goto err;
3801 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003802
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003803 *el = qel;
3804 /* No reference counter incrementation here!!! */
3805 LIST_APPEND(&qc->rx.pkt_list, &pkt->qc_rx_pkt_list);
3806 memcpy(b_tail(&qc->rx.buf), beg, pkt->len);
3807 pkt->data = (unsigned char *)b_tail(&qc->rx.buf);
3808 b_add(&qc->rx.buf, pkt->len);
3809 out:
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003810 TRACE_LEAVE(QUIC_EV_CONN_TRMHP, qc, qpkt_trace);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003811 return 1;
3812
3813 err:
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003814 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_TRMHP, qc, qpkt_trace);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003815 return 0;
3816}
3817
3818/* Parse the header form from <byte0> first byte of <pkt> pacekt to set type.
3819 * Also set <*long_header> to 1 if this form is long, 0 if not.
3820 */
3821static inline void qc_parse_hd_form(struct quic_rx_packet *pkt,
3822 unsigned char byte0, int *long_header)
3823{
3824 if (byte0 & QUIC_PACKET_LONG_HEADER_BIT) {
3825 pkt->type =
3826 (byte0 >> QUIC_PACKET_TYPE_SHIFT) & QUIC_PACKET_TYPE_BITMASK;
3827 *long_header = 1;
3828 }
3829 else {
3830 pkt->type = QUIC_PACKET_TYPE_SHORT;
3831 *long_header = 0;
3832 }
3833}
3834
Amaury Denoyellea22d8602021-11-10 15:17:56 +01003835/*
3836 * Check if the QUIC version in packet <pkt> is supported. Returns a boolean.
3837 */
3838static inline int qc_pkt_is_supported_version(struct quic_rx_packet *pkt)
3839{
3840 int j = 0, version;
3841
3842 do {
3843 version = quic_supported_version[j];
3844 if (version == pkt->version)
3845 return 1;
3846
3847 version = quic_supported_version[++j];
3848 } while(version);
3849
3850 return 0;
3851}
3852
Amaury Denoyellea22d8602021-11-10 15:17:56 +01003853/*
3854 * Send a Version Negotiation packet on response to <pkt> on socket <fd> to
3855 * address <addr>.
3856 * Implementation of RFC9000 6. Version Negotiation
3857 *
3858 * TODO implement a rate-limiting sending of Version Negotiation packets
3859 *
3860 * Returns 0 on success else non-zero
3861 */
Amaury Denoyelled6b16672021-12-23 10:37:19 +01003862static int send_version_negotiation(int fd, struct sockaddr_storage *addr,
3863 struct quic_rx_packet *pkt)
Amaury Denoyellea22d8602021-11-10 15:17:56 +01003864{
3865 char buf[256];
3866 int i = 0, j, version;
3867 const socklen_t addrlen = get_addr_len(addr);
3868
3869 /*
3870 * header form
3871 * long header, fixed bit to 0 for Version Negotiation
3872 */
Frédéric Lécailleea78ee12021-11-18 13:54:43 +01003873 if (RAND_bytes((unsigned char *)buf, 1) != 1)
3874 return 1;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01003875
Frédéric Lécailleea78ee12021-11-18 13:54:43 +01003876 buf[i++] |= '\x80';
Amaury Denoyellea22d8602021-11-10 15:17:56 +01003877 /* null version for Version Negotiation */
3878 buf[i++] = '\x00';
3879 buf[i++] = '\x00';
3880 buf[i++] = '\x00';
3881 buf[i++] = '\x00';
3882
3883 /* source connection id */
3884 buf[i++] = pkt->scid.len;
Amaury Denoyelle10eed8e2021-11-18 13:48:57 +01003885 memcpy(&buf[i], pkt->scid.data, pkt->scid.len);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01003886 i += pkt->scid.len;
3887
3888 /* destination connection id */
3889 buf[i++] = pkt->dcid.len;
Amaury Denoyelle10eed8e2021-11-18 13:48:57 +01003890 memcpy(&buf[i], pkt->dcid.data, pkt->dcid.len);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01003891 i += pkt->dcid.len;
3892
3893 /* supported version */
3894 j = 0;
3895 do {
3896 version = htonl(quic_supported_version[j]);
3897 memcpy(&buf[i], &version, sizeof(version));
3898 i += sizeof(version);
3899
3900 version = quic_supported_version[++j];
3901 } while (version);
3902
3903 if (sendto(fd, buf, i, 0, (struct sockaddr *)addr, addrlen) < 0)
3904 return 1;
3905
3906 return 0;
3907}
3908
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01003909/* Generate the token to be used in Retry packets. The token is written to
3910 * <buf> which is expected to be <len> bytes.
3911 *
3912 * Various parameters are expected to be encoded in the token. For now, only
3913 * the DCID from <pkt> is stored. This is useful to implement a stateless Retry
3914 * as this CID must be repeated by the server in the transport parameters.
3915 *
3916 * TODO add the client address to validate the token origin.
3917 *
3918 * Returns the length of the encoded token or 0 on error.
3919 */
3920static int generate_retry_token(unsigned char *buf, unsigned char len,
3921 struct quic_rx_packet *pkt)
3922{
3923 const size_t token_len = 1 + pkt->dcid.len;
3924 unsigned char i = 0;
3925
3926 if (token_len > len)
3927 return 0;
3928
3929 buf[i++] = pkt->dcid.len;
3930 memcpy(&buf[i], pkt->dcid.data, pkt->dcid.len);
3931 i += pkt->dcid.len;
3932
3933 return i;
3934}
3935
3936/* Generate a Retry packet and send it on <fd> socket to <addr> in response to
3937 * the Initial <pkt> packet.
3938 *
3939 * Returns 0 on success else non-zero.
3940 */
3941static int send_retry(int fd, struct sockaddr_storage *addr,
3942 struct quic_rx_packet *pkt)
3943{
3944 unsigned char buf[128];
3945 int i = 0, token_len;
3946 const socklen_t addrlen = get_addr_len(addr);
3947 struct quic_cid scid;
3948
3949 /* long header + fixed bit + packet type 0x3 */
3950 buf[i++] = 0xf0;
3951 /* version */
3952 buf[i++] = 0x00;
3953 buf[i++] = 0x00;
3954 buf[i++] = 0x00;
3955 buf[i++] = 0x01;
3956
3957 /* Use the SCID from <pkt> for Retry DCID. */
3958 buf[i++] = pkt->scid.len;
3959 memcpy(&buf[i], pkt->scid.data, pkt->scid.len);
3960 i += pkt->scid.len;
3961
3962 /* Generate a new CID to be used as SCID for the Retry packet. */
3963 scid.len = QUIC_HAP_CID_LEN;
3964 if (RAND_bytes(scid.data, scid.len) != 1)
3965 return 1;
3966
3967 buf[i++] = scid.len;
3968 memcpy(&buf[i], scid.data, scid.len);
3969 i += scid.len;
3970
3971 /* token */
3972 if (!(token_len = generate_retry_token(&buf[i], &buf[i] - buf, pkt)))
3973 return 1;
3974 i += token_len;
3975
3976 /* token integrity tag */
3977 if ((&buf[i] - buf < QUIC_TLS_TAG_LEN) ||
3978 !quic_tls_generate_retry_integrity_tag(pkt->dcid.data,
3979 pkt->dcid.len, buf, i)) {
3980 return 1;
3981 }
3982
3983 i += QUIC_TLS_TAG_LEN;
3984
3985 if (sendto(fd, buf, i, 0, (struct sockaddr *)addr, addrlen) < 0)
3986 return 1;
3987
3988 return 0;
3989}
3990
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01003991/* Retrieve a quic_conn instance from the <pkt> DCID field. If the packet is of
3992 * type INITIAL, the ODCID tree is first used. In this case, <saddr> is
3993 * concatenated to the <pkt> DCID field.
3994 *
3995 * Returns the instance or NULL if not found.
3996 */
Amaury Denoyelled6b16672021-12-23 10:37:19 +01003997static struct quic_conn *retrieve_qc_conn_from_cid(struct quic_rx_packet *pkt,
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01003998 struct listener *l,
3999 struct sockaddr_storage *saddr)
4000{
4001 struct quic_conn *qc = NULL;
4002 struct ebmb_node *node;
4003 struct quic_connection_id *id;
Amaury Denoyelle250ac422021-12-22 11:29:05 +01004004 /* set if the quic_conn is found in the second DCID tree */
4005 int found_in_dcid = 0;
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004006
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004007 /* Look first into ODCIDs tree for INITIAL/0-RTT packets. */
4008 if (pkt->type == QUIC_PACKET_TYPE_INITIAL ||
4009 pkt->type == QUIC_PACKET_TYPE_0RTT) {
4010 /* DCIDs of first packets coming from multiple clients may have
4011 * the same values. Let's distinguish them by concatenating the
4012 * socket addresses.
4013 */
4014 quic_cid_saddr_cat(&pkt->dcid, saddr);
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01004015 node = ebmb_lookup(&quic_dghdlrs[tid].odcids, pkt->dcid.data,
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004016 pkt->dcid.len + pkt->dcid.addrlen);
4017 if (node) {
4018 qc = ebmb_entry(node, struct quic_conn, odcid_node);
4019 goto end;
4020 }
4021 }
4022
4023 /* Look into DCIDs tree for non-INITIAL/0-RTT packets. This may be used
4024 * also for INITIAL/0-RTT non-first packets with the final DCID in
4025 * used.
4026 */
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01004027 node = ebmb_lookup(&quic_dghdlrs[tid].cids, pkt->dcid.data, pkt->dcid.len);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004028 if (!node)
4029 goto end;
4030
4031 id = ebmb_entry(node, struct quic_connection_id, node);
4032 qc = id->qc;
Amaury Denoyelle250ac422021-12-22 11:29:05 +01004033 found_in_dcid = 1;
4034
4035 end:
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004036 if (qc)
4037 quic_conn_take(qc);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004038
4039 /* If found in DCIDs tree, remove the quic_conn from the ODCIDs tree.
4040 * If already done, this is a noop.
4041 */
Frédéric Lécaille74904a42022-01-27 15:35:56 +01004042 if (qc && found_in_dcid)
Amaury Denoyelle250ac422021-12-22 11:29:05 +01004043 ebmb_delete(&qc->odcid_node);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004044
4045 return qc;
4046}
4047
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01004048/* Parse the Retry token from buffer <token> whose size is <token_len>. This
4049 * will extract the parameters stored in the token : <odcid>.
4050 *
4051 * Returns 0 on success else non-zero.
4052 */
4053static int parse_retry_token(const unsigned char *token, uint64_t token_len,
4054 struct quic_cid *odcid)
4055{
4056 uint64_t odcid_len;
4057
4058 if (!quic_dec_int(&odcid_len, &token, token + token_len))
4059 return 1;
4060
4061 memcpy(odcid->data, token, odcid_len);
4062 odcid->len = odcid_len;
4063
4064 return 0;
4065}
4066
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01004067/* Try to allocate the <*ssl> SSL session object for <qc> QUIC connection
4068 * with <ssl_ctx> as SSL context inherited settings. Also set the transport
4069 * parameters of this session.
4070 * This is the responsibility of the caller to check the validity of all the
4071 * pointers passed as parameter to this function.
4072 * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <qc->conn> to
4073 * CO_ER_SSL_NO_MEM.
4074 */
4075static int qc_ssl_sess_init(struct quic_conn *qc, SSL_CTX *ssl_ctx, SSL **ssl,
4076 unsigned char *params, size_t params_len)
4077{
4078 int retry;
4079
4080 retry = 1;
4081 retry:
4082 *ssl = SSL_new(ssl_ctx);
4083 if (!*ssl) {
4084 if (!retry--)
4085 goto err;
4086
4087 pool_gc(NULL);
4088 goto retry;
4089 }
4090
4091 if (!SSL_set_quic_method(*ssl, &ha_quic_method) ||
4092 !SSL_set_ex_data(*ssl, ssl_qc_app_data_index, qc) ||
4093 !SSL_set_quic_transport_params(*ssl, qc->enc_params, qc->enc_params_len)) {
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01004094 SSL_free(*ssl);
4095 *ssl = NULL;
4096 if (!retry--)
4097 goto err;
4098
4099 pool_gc(NULL);
4100 goto retry;
4101 }
4102
4103 return 0;
4104
4105 err:
4106 qc->conn->err_code = CO_ER_SSL_NO_MEM;
4107 return -1;
4108}
4109
4110/* Allocate the ssl_sock_ctx from connection <qc>. This creates the tasklet
4111 * used to process <qc> received packets. The allocated context is stored in
4112 * <qc.xprt_ctx>.
4113 *
4114 * Returns 0 on success else non-zero.
4115 */
4116int qc_conn_alloc_ssl_ctx(struct quic_conn *qc)
4117{
4118 struct bind_conf *bc = qc->li->bind_conf;
4119 struct ssl_sock_ctx *ctx = NULL;
4120
4121 ctx = pool_zalloc(pool_head_quic_conn_ctx);
4122 if (!ctx)
4123 goto err;
4124
4125 ctx->wait_event.tasklet = tasklet_new();
4126 if (!ctx->wait_event.tasklet)
4127 goto err;
4128
4129 ctx->wait_event.tasklet->process = quic_conn_io_cb;
4130 ctx->wait_event.tasklet->context = ctx;
4131 ctx->wait_event.events = 0;
4132 ctx->subs = NULL;
4133 ctx->xprt_ctx = NULL;
4134 ctx->qc = qc;
4135
4136 /* Set tasklet tid based on the SCID selected by us for this
4137 * connection. The upper layer will also be binded on the same thread.
4138 */
Frédéric Lécaille220894a2022-01-26 18:04:50 +01004139 qc->tid = ctx->wait_event.tasklet->tid = quic_get_cid_tid(qc->scid.data);
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01004140
4141 if (qc_is_listener(qc)) {
4142 if (qc_ssl_sess_init(qc, bc->initial_ctx, &ctx->ssl,
4143 qc->enc_params, qc->enc_params_len) == -1) {
4144 goto err;
4145 }
4146
4147 /* Enabling 0-RTT */
4148 if (bc->ssl_conf.early_data)
4149 SSL_set_quic_early_data_enabled(ctx->ssl, 1);
4150
4151 SSL_set_accept_state(ctx->ssl);
4152 }
4153
4154 ctx->xprt = xprt_get(XPRT_QUIC);
4155
4156 /* Store the allocated context in <qc>. */
4157 HA_ATOMIC_STORE(&qc->xprt_ctx, ctx);
4158
4159 return 0;
4160
4161 err:
4162 if (ctx && ctx->wait_event.tasklet)
4163 tasklet_free(ctx->wait_event.tasklet);
4164 pool_free(pool_head_quic_conn_ctx, ctx);
4165
4166 return 1;
4167}
4168
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004169static ssize_t qc_lstnr_pkt_rcv(unsigned char *buf, const unsigned char *end,
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004170 struct quic_rx_packet *pkt, int first_pkt,
4171 struct quic_dgram *dgram)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004172{
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004173 unsigned char *beg, *payload;
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004174 struct quic_conn *qc, *qc_to_purge = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004175 struct listener *l;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02004176 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaille6b663152022-01-04 17:03:11 +01004177 int long_header = 0, io_cb_wakeup = 0;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004178 size_t b_cspace;
4179 struct quic_enc_level *qel;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004180
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004181 beg = buf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004182 qc = NULL;
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02004183 conn_ctx = NULL;
Frédéric Lécaillec4becf52021-11-08 11:23:17 +01004184 qel = NULL;
Frédéric Lécaille8678eb02021-12-16 18:03:52 +01004185 TRACE_ENTER(QUIC_EV_CONN_LPKT);
4186 /* This ist only to please to traces and distinguish the
4187 * packet with parsed packet number from others.
4188 */
4189 pkt->pn_node.key = (uint64_t)-1;
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004190 if (end <= buf)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004191 goto err;
4192
4193 /* Fixed bit */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004194 if (!(*buf & QUIC_PACKET_FIXED_BIT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004195 /* XXX TO BE DISCARDED */
4196 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
4197 goto err;
4198 }
4199
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004200 l = dgram->owner;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004201 /* Header form */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004202 qc_parse_hd_form(pkt, *buf++, &long_header);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004203 if (long_header) {
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01004204 uint64_t len;
4205
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004206 if (!quic_packet_read_long_header(&buf, end, pkt)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004207 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
4208 goto err;
4209 }
4210
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004211 /* When multiple QUIC packets are coalesced on the same UDP datagram,
4212 * they must have the same DCID.
4213 */
4214 if (!first_pkt &&
4215 (pkt->dcid.len != dgram->dcid_len ||
4216 memcmp(dgram->dcid, pkt->dcid.data, pkt->dcid.len))) {
4217 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
4218 goto err;
4219 }
4220
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01004221 /* Retry of Version Negotiation packets are only sent by servers */
4222 if (pkt->type == QUIC_PACKET_TYPE_RETRY || !pkt->version) {
4223 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
4224 goto err;
4225 }
4226
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004227 /* RFC9000 6. Version Negotiation */
4228 if (!qc_pkt_is_supported_version(pkt)) {
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004229 /* unsupported version, send Negotiation packet */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004230 if (send_version_negotiation(l->rx.fd, &dgram->saddr, pkt)) {
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004231 TRACE_PROTO("Error on Version Negotiation sending", QUIC_EV_CONN_LPKT);
4232 goto err;
4233 }
4234
4235 TRACE_PROTO("Unsupported QUIC version, send Version Negotiation packet", QUIC_EV_CONN_LPKT);
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004236 goto err;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004237 }
4238
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004239 /* For Initial packets, and for servers (QUIC clients connections),
4240 * there is no Initial connection IDs storage.
4241 */
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004242 if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02004243 uint64_t token_len;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02004244
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004245 if (!quic_dec_int(&token_len, (const unsigned char **)&buf, end) ||
4246 end - buf < token_len) {
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004247 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
4248 goto err;
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01004249 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004250
Frédéric Lécaille055ee6c2022-01-25 21:21:56 +01004251 /* The token may be provided in a Retry packet or NEW_TOKEN frame
4252 * only by the QUIC server.
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004253 */
4254 pkt->token_len = token_len;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01004255
4256 /* TODO Retry should be automatically activated if
4257 * suspect network usage is detected.
4258 */
4259 if (!token_len && l->bind_conf->quic_force_retry) {
4260 TRACE_PROTO("Initial without token, sending retry", QUIC_EV_CONN_LPKT);
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004261 if (send_retry(l->rx.fd, &dgram->saddr, pkt)) {
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01004262 TRACE_PROTO("Error during Retry generation", QUIC_EV_CONN_LPKT);
4263 goto err;
4264 }
4265
4266 goto err;
4267 }
4268 else {
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01004269 pkt->token = buf;
4270 buf += pkt->token_len;
4271 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004272 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004273 else if (pkt->type != QUIC_PACKET_TYPE_0RTT) {
Amaury Denoyelled4962512021-12-14 17:17:28 +01004274 if (pkt->dcid.len != QUIC_HAP_CID_LEN) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004275 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
4276 goto err;
4277 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004278 }
4279
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01004280 if (!quic_dec_int(&len, (const unsigned char **)&buf, end) ||
4281 end - buf < len) {
4282 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
4283 goto err;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02004284 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004285
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01004286 payload = buf;
4287 pkt->len = len + payload - beg;
4288
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004289 qc = retrieve_qc_conn_from_cid(pkt, l, &dgram->saddr);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004290 if (!qc) {
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004291 int ipv4;
4292 struct quic_cid *odcid;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02004293 struct ebmb_node *n = NULL;
Frédéric Lécaille2fc76cf2021-08-31 19:10:40 +02004294 const unsigned char *salt = initial_salt_v1;
4295 size_t salt_len = sizeof initial_salt_v1;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004296
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004297 if (pkt->type != QUIC_PACKET_TYPE_INITIAL) {
Amaury Denoyelle47e1f6d2021-12-17 10:58:05 +01004298 TRACE_PROTO("Non Initial packet", QUIC_EV_CONN_LPKT);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004299 goto err;
4300 }
4301
Frédéric Lécailledc364042022-01-27 16:51:54 +01004302 if (pkt->dcid.len < QUIC_ODCID_MINLEN) {
4303 TRACE_PROTO("dropped packet", QUIC_EV_CONN_LPKT);
4304 goto err;
4305 }
4306
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004307 pkt->saddr = dgram->saddr;
4308 ipv4 = dgram->saddr.ss_family == AF_INET;
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01004309 qc = qc_new_conn(pkt->version, ipv4,
4310 pkt->dcid.data, pkt->dcid.len, pkt->dcid.addrlen,
Frédéric Lécaille6b197642021-07-06 16:25:08 +02004311 pkt->scid.data, pkt->scid.len, 1, l);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004312 if (qc == NULL)
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004313 goto err;
4314
Amaury Denoyelle9fa15e52022-01-19 15:54:23 +01004315 memcpy(&qc->peer_addr, &pkt->saddr, sizeof(pkt->saddr));
4316
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004317 odcid = &qc->rx.params.original_destination_connection_id;
4318 /* Copy the transport parameters. */
4319 qc->rx.params = l->bind_conf->quic_params;
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01004320
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004321 /* Copy original_destination_connection_id transport parameter. */
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01004322 if (pkt->token_len) {
4323 if (parse_retry_token(pkt->token, pkt->token_len, odcid)) {
4324 TRACE_PROTO("Error during Initial token parsing", QUIC_EV_CONN_LPKT, qc);
4325 goto err;
4326 }
Amaury Denoyellec3b6f4d2022-01-11 12:03:09 +01004327 /* Copy retry_source_connection_id transport parameter. */
4328 quic_cid_cpy(&qc->rx.params.retry_source_connection_id,
4329 &pkt->dcid);
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01004330 }
4331 else {
4332 memcpy(odcid->data, &pkt->dcid.data, pkt->dcid.len);
4333 odcid->len = pkt->dcid.len;
4334 }
4335
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004336 /* Copy the initial source connection ID. */
4337 quic_cid_cpy(&qc->rx.params.initial_source_connection_id, &qc->scid);
4338 qc->enc_params_len =
4339 quic_transport_params_encode(qc->enc_params,
4340 qc->enc_params + sizeof qc->enc_params,
4341 &qc->rx.params, 1);
4342 if (!qc->enc_params_len)
4343 goto err;
4344
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01004345 if (qc_conn_alloc_ssl_ctx(qc))
4346 goto err;
4347
Frédéric Lécaille789413c2022-01-31 10:16:18 +01004348 if (!quic_conn_init_timer(qc))
4349 goto err;
4350
Frédéric Lécaille497fa782021-05-31 15:16:13 +02004351 /* NOTE: the socket address has been concatenated to the destination ID
4352 * chosen by the client for Initial packets.
4353 */
Frédéric Lécaille2fc76cf2021-08-31 19:10:40 +02004354 if (pkt->version == QUIC_PROTOCOL_VERSION_DRAFT_29) {
4355 salt = initial_salt_draft_29;
4356 salt_len = sizeof initial_salt_draft_29;
4357 }
4358 if (!qc_new_isecs(qc, salt, salt_len,
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01004359 pkt->dcid.data, pkt->dcid.len, 1)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004360 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille497fa782021-05-31 15:16:13 +02004361 goto err;
4362 }
4363
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02004364 /* Insert the DCID the QUIC client has chosen (only for listeners) */
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01004365 n = ebmb_insert(&quic_dghdlrs[tid].odcids, &qc->odcid_node,
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01004366 qc->odcid.len + qc->odcid.addrlen);
Frédéric Lécaille8370c932021-11-08 17:01:46 +01004367
Amaury Denoyelleaff4ec82021-11-24 15:16:08 +01004368 /* If the insertion failed, it means that another
4369 * thread has already allocated a QUIC connection for
4370 * the same CID. Liberate our allocated connection.
4371 */
4372 if (unlikely(n != &qc->odcid_node)) {
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004373 qc_to_purge = qc;
4374
Amaury Denoyelleaff4ec82021-11-24 15:16:08 +01004375 qc = ebmb_entry(n, struct quic_conn, odcid_node);
4376 pkt->qc = qc;
4377 }
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004378
4379 quic_conn_take(qc);
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004380
4381 if (likely(!qc_to_purge)) {
Frédéric Lécaille8370c932021-11-08 17:01:46 +01004382 /* Enqueue this packet. */
Frédéric Lécaillef67b3562021-11-15 16:21:40 +01004383 pkt->qc = qc;
Frédéric Lécaille8370c932021-11-08 17:01:46 +01004384 }
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004385 else {
4386 quic_conn_drop(qc_to_purge);
4387 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004388 }
4389 else {
Frédéric Lécaille8370c932021-11-08 17:01:46 +01004390 pkt->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004391 }
4392 }
4393 else {
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004394 if (end - buf < QUIC_HAP_CID_LEN) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004395 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
4396 goto err;
4397 }
4398
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004399 memcpy(pkt->dcid.data, buf, QUIC_HAP_CID_LEN);
Amaury Denoyelleadb22762021-12-14 15:04:14 +01004400 pkt->dcid.len = QUIC_HAP_CID_LEN;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004401
4402 /* When multiple QUIC packets are coalesced on the same UDP datagram,
4403 * they must have the same DCID.
4404 */
4405 if (!first_pkt &&
4406 (pkt->dcid.len != dgram->dcid_len ||
4407 memcmp(dgram->dcid, pkt->dcid.data, pkt->dcid.len))) {
4408 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
4409 goto err;
4410 }
4411
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004412 buf += QUIC_HAP_CID_LEN;
4413
4414 /* A short packet is the last one of a UDP datagram. */
4415 payload = buf;
4416 pkt->len = end - beg;
Amaury Denoyelleadb22762021-12-14 15:04:14 +01004417
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004418 qc = retrieve_qc_conn_from_cid(pkt, l, &dgram->saddr);
Frédéric Lécaille4d118d62021-12-21 14:48:58 +01004419 if (!qc) {
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004420 size_t pktlen = end - buf;
Frédéric Lécaille4d118d62021-12-21 14:48:58 +01004421 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, NULL, pkt, &pktlen);
4422 goto err;
4423 }
4424
Frédéric Lécaille8370c932021-11-08 17:01:46 +01004425 pkt->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004426 }
4427
Amaury Denoyelleadb22762021-12-14 15:04:14 +01004428
4429 /* When multiple QUIC packets are coalesced on the same UDP datagram,
4430 * they must have the same DCID.
4431 *
4432 * This check must be done after the final update to pkt.len to
4433 * properly drop the packet on failure.
4434 */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004435 if (first_pkt && !quic_peer_validated_addr(qc) &&
4436 HA_ATOMIC_LOAD(&qc->flags) & QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED) {
4437 TRACE_PROTO("PTO timer must be armed after anti-amplication was reached",
4438 QUIC_EV_CONN_LPKT, qc);
4439 /* Reset the anti-amplification bit. It will be set again
4440 * when sending the next packet if reached again.
4441 */
4442 HA_ATOMIC_BTR(&qc->flags, QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED_BIT);
4443 HA_ATOMIC_OR(&qc->flags, QUIC_FL_CONN_IO_CB_WAKEUP_BIT);
4444 io_cb_wakeup = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004445 }
Amaury Denoyelleadb22762021-12-14 15:04:14 +01004446
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004447 dgram->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004448
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01004449 if (HA_ATOMIC_LOAD(&qc->err_code)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004450 TRACE_PROTO("Connection error", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01004451 goto out;
4452 }
4453
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004454 pkt->raw_len = pkt->len;
Frédéric Lécailled61bc8d2021-12-02 14:46:19 +01004455 quic_rx_pkts_del(qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004456 b_cspace = b_contig_space(&qc->rx.buf);
4457 if (b_cspace < pkt->len) {
4458 /* Let us consume the remaining contiguous space. */
Frédéric Lécailled61bc8d2021-12-02 14:46:19 +01004459 if (b_cspace) {
4460 b_putchr(&qc->rx.buf, 0x00);
4461 b_cspace--;
4462 }
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004463 b_add(&qc->rx.buf, b_cspace);
4464 if (b_contig_space(&qc->rx.buf) < pkt->len) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004465 TRACE_PROTO("Too big packet", QUIC_EV_CONN_LPKT, qc, pkt, &pkt->len);
Frédéric Lécaille91ac6c32021-12-17 16:11:54 +01004466 qc_list_all_rx_pkts(qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004467 goto err;
4468 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004469 }
4470
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004471 if (!qc_try_rm_hp(qc, pkt, payload, beg, end, &qel)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004472 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02004473 goto err;
4474 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004475
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004476 TRACE_PROTO("New packet", QUIC_EV_CONN_LPKT, qc, pkt);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004477 if (pkt->aad_len)
4478 qc_pkt_insert(pkt, qel);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01004479 out:
Frédéric Lécaille01abc462021-07-21 09:34:27 +02004480 /* Wake up the connection packet handler task from here only if all
4481 * the contexts have been initialized, especially the mux context
4482 * conn_ctx->conn->ctx. Note that this is ->start xprt callback which
4483 * will start it if these contexts for the connection are not already
4484 * initialized.
4485 */
Amaury Denoyelle7ca7c842021-12-22 18:20:38 +01004486 conn_ctx = HA_ATOMIC_LOAD(&qc->xprt_ctx);
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01004487 if (conn_ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004488 tasklet_wakeup(conn_ctx->wait_event.tasklet);
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02004489
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004490 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc ? qc : NULL, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004491
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004492 if (qc)
4493 quic_conn_drop(qc);
4494
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004495 return pkt->len;
4496
4497 err:
Frédéric Lécaille6b663152022-01-04 17:03:11 +01004498 /* Wakeup the I/O handler callback if the PTO timer must be armed.
4499 * This cannot be done by this thread.
4500 */
4501 if (io_cb_wakeup) {
4502 conn_ctx = HA_ATOMIC_LOAD(&qc->xprt_ctx);
4503 if (conn_ctx && conn_ctx->wait_event.tasklet)
4504 tasklet_wakeup(conn_ctx->wait_event.tasklet);
4505 }
Frédéric Lécaillef7ef9762021-12-31 16:37:58 +01004506 /* If length not found, consume the entire datagram */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004507 if (!pkt->len)
4508 pkt->len = end - beg;
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +01004509 TRACE_DEVEL("Leaving in error", QUIC_EV_CONN_LPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004510 qc ? qc : NULL, pkt);
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004511
4512 if (qc)
4513 quic_conn_drop(qc);
4514
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004515 return -1;
4516}
4517
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004518/* This function builds into <buf> buffer a QUIC long packet header.
4519 * Return 1 if enough room to build this header, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004520 */
4521static int quic_build_packet_long_header(unsigned char **buf, const unsigned char *end,
4522 int type, size_t pn_len, struct quic_conn *conn)
4523{
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004524 if (end - *buf < sizeof conn->version + conn->dcid.len + conn->scid.len + 3)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004525 return 0;
4526
4527 /* #0 byte flags */
4528 *(*buf)++ = QUIC_PACKET_FIXED_BIT | QUIC_PACKET_LONG_HEADER_BIT |
4529 (type << QUIC_PACKET_TYPE_SHIFT) | (pn_len - 1);
4530 /* Version */
4531 quic_write_uint32(buf, end, conn->version);
4532 *(*buf)++ = conn->dcid.len;
4533 /* Destination connection ID */
4534 if (conn->dcid.len) {
4535 memcpy(*buf, conn->dcid.data, conn->dcid.len);
4536 *buf += conn->dcid.len;
4537 }
4538 /* Source connection ID */
4539 *(*buf)++ = conn->scid.len;
4540 if (conn->scid.len) {
4541 memcpy(*buf, conn->scid.data, conn->scid.len);
4542 *buf += conn->scid.len;
4543 }
4544
4545 return 1;
4546}
4547
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004548/* This function builds into <buf> buffer a QUIC short packet header.
4549 * Return 1 if enough room to build this header, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004550 */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004551static int quic_build_packet_short_header(unsigned char **buf, const unsigned char *end,
4552 size_t pn_len, struct quic_conn *conn,
4553 unsigned char tls_flags)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004554{
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004555 if (end - *buf < 1 + conn->dcid.len)
4556 return 0;
4557
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004558 /* #0 byte flags */
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01004559 *(*buf)++ = QUIC_PACKET_FIXED_BIT |
4560 ((tls_flags & QUIC_FL_TLS_KP_BIT_SET) ? QUIC_PACKET_KEY_PHASE_BIT : 0) | (pn_len - 1);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004561 /* Destination connection ID */
4562 if (conn->dcid.len) {
4563 memcpy(*buf, conn->dcid.data, conn->dcid.len);
4564 *buf += conn->dcid.len;
4565 }
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004566
4567 return 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004568}
4569
4570/* Apply QUIC header protection to the packet with <buf> as first byte address,
4571 * <pn> as address of the Packet number field, <pnlen> being this field length
4572 * with <aead> as AEAD cipher and <key> as secret key.
4573 * Returns 1 if succeeded or 0 if failed.
4574 */
4575static int quic_apply_header_protection(unsigned char *buf, unsigned char *pn, size_t pnlen,
4576 const EVP_CIPHER *aead, const unsigned char *key)
4577{
4578 int i, ret, outlen;
4579 EVP_CIPHER_CTX *ctx;
4580 /* We need an IV of at least 5 bytes: one byte for bytes #0
4581 * and at most 4 bytes for the packet number
4582 */
4583 unsigned char mask[5] = {0};
4584
4585 ret = 0;
4586 ctx = EVP_CIPHER_CTX_new();
4587 if (!ctx)
4588 return 0;
4589
4590 if (!EVP_EncryptInit_ex(ctx, aead, NULL, key, pn + QUIC_PACKET_PN_MAXLEN) ||
4591 !EVP_EncryptUpdate(ctx, mask, &outlen, mask, sizeof mask) ||
4592 !EVP_EncryptFinal_ex(ctx, mask, &outlen))
4593 goto out;
4594
4595 *buf ^= mask[0] & (*buf & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f);
4596 for (i = 0; i < pnlen; i++)
4597 pn[i] ^= mask[i + 1];
4598
4599 ret = 1;
4600
4601 out:
4602 EVP_CIPHER_CTX_free(ctx);
4603
4604 return ret;
4605}
4606
4607/* Reduce the encoded size of <ack_frm> ACK frame removing the last
4608 * ACK ranges if needed to a value below <limit> in bytes.
4609 * Return 1 if succeeded, 0 if not.
4610 */
4611static int quic_ack_frm_reduce_sz(struct quic_frame *ack_frm, size_t limit)
4612{
4613 size_t room, ack_delay_sz;
4614
4615 ack_delay_sz = quic_int_getsize(ack_frm->tx_ack.ack_delay);
4616 /* A frame is made of 1 byte for the frame type. */
4617 room = limit - ack_delay_sz - 1;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01004618 if (!quic_rm_last_ack_ranges(ack_frm->tx_ack.arngs, room))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004619 return 0;
4620
Frédéric Lécaille8090b512020-11-30 16:19:22 +01004621 return 1 + ack_delay_sz + ack_frm->tx_ack.arngs->enc_sz;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004622}
4623
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02004624/* Prepare as most as possible CRYPTO or STREAM frames from their prebuilt frames
4625 * for <qel> encryption level to be encoded in a buffer with <room> as available room,
Frédéric Lécailleea604992020-12-24 13:01:37 +01004626 * and <*len> the packet Length field initialized with the number of bytes already present
4627 * in this buffer which must be taken into an account for the Length packet field value.
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02004628 * <headlen> is the number of bytes already present in this packet before building frames.
4629 *
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02004630 * Update consequently <*len> to reflect the size of these frames built
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01004631 * by this function. Also attach these frames to <l> frame list.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004632 * Return 1 if succeeded, 0 if not.
4633 */
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01004634static inline int qc_build_frms(struct list *l,
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02004635 size_t room, size_t *len, size_t headlen,
4636 struct quic_enc_level *qel,
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004637 struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004638{
Frédéric Lécailleea604992020-12-24 13:01:37 +01004639 int ret;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01004640 struct quic_frame *cf, *cfbak;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004641
Frédéric Lécailleea604992020-12-24 13:01:37 +01004642 ret = 0;
Frédéric Lécaillef4e5a7c2022-01-17 17:56:20 +01004643 if (*len > room)
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004644 return 0;
4645
Frédéric Lécailleea604992020-12-24 13:01:37 +01004646 /* If we are not probing we must take into an account the congestion
4647 * control window.
4648 */
Frédéric Lécaillef4e5a7c2022-01-17 17:56:20 +01004649 if (!qel->pktns->tx.pto_probe) {
4650 size_t remain = quic_path_prep_data(qc->path);
4651
4652 if (headlen > remain)
4653 return 0;
4654
4655 room = QUIC_MIN(room, remain - headlen);
4656 }
4657
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004658 TRACE_PROTO("************** frames build (headlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004659 QUIC_EV_CONN_BCFRMS, qc, &headlen);
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01004660 list_for_each_entry_safe(cf, cfbak, &qel->pktns->tx.frms, list) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004661 /* header length, data length, frame length. */
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004662 size_t hlen, dlen, dlen_sz, avail_room, flen;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004663
Frédéric Lécailleea604992020-12-24 13:01:37 +01004664 if (!room)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004665 break;
4666
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004667 switch (cf->type) {
4668 case QUIC_FT_CRYPTO:
4669 TRACE_PROTO(" New CRYPTO frame build (room, len)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004670 QUIC_EV_CONN_BCFRMS, qc, &room, len);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004671 /* Compute the length of this CRYPTO frame header */
4672 hlen = 1 + quic_int_getsize(cf->crypto.offset);
4673 /* Compute the data length of this CRyPTO frame. */
4674 dlen = max_stream_data_size(room, *len + hlen, cf->crypto.len);
4675 TRACE_PROTO(" CRYPTO data length (hlen, crypto.len, dlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004676 QUIC_EV_CONN_BCFRMS, qc, &hlen, &cf->crypto.len, &dlen);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004677 if (!dlen)
4678 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004679
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004680 /* CRYPTO frame length. */
4681 flen = hlen + quic_int_getsize(dlen) + dlen;
4682 TRACE_PROTO(" CRYPTO frame length (flen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004683 QUIC_EV_CONN_BCFRMS, qc, &flen);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004684 /* Add the CRYPTO data length and its encoded length to the packet
4685 * length and the length of this length.
4686 */
4687 *len += flen;
4688 room -= flen;
4689 if (dlen == cf->crypto.len) {
4690 /* <cf> CRYPTO data have been consumed. */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01004691 LIST_DELETE(&cf->list);
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01004692 LIST_APPEND(l, &cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004693 }
4694 else {
4695 struct quic_frame *new_cf;
4696
4697 new_cf = pool_alloc(pool_head_quic_frame);
4698 if (!new_cf) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004699 TRACE_PROTO("No memory for new crypto frame", QUIC_EV_CONN_BCFRMS, qc);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004700 return 0;
4701 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004702
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004703 new_cf->type = QUIC_FT_CRYPTO;
4704 new_cf->crypto.len = dlen;
4705 new_cf->crypto.offset = cf->crypto.offset;
4706 new_cf->crypto.qel = qel;
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01004707 LIST_APPEND(l, &new_cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004708 /* Consume <dlen> bytes of the current frame. */
4709 cf->crypto.len -= dlen;
4710 cf->crypto.offset += dlen;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004711 }
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004712 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004713
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004714 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004715 /* Note that these frames are accepted in short packets only without
4716 * "Length" packet field. Here, <*len> is used only to compute the
4717 * sum of the lengths of the already built frames for this packet.
Frédéric Lécailled8b84432021-12-10 15:18:36 +01004718 *
4719 * Compute the length of this STREAM frame "header" made a all the field
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004720 * excepting the variable ones. Note that +1 is for the type of this frame.
4721 */
4722 hlen = 1 + quic_int_getsize(cf->stream.id) +
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02004723 ((cf->type & QUIC_STREAM_FRAME_TYPE_OFF_BIT) ? quic_int_getsize(cf->stream.offset.key) : 0);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004724 /* Compute the data length of this STREAM frame. */
4725 avail_room = room - hlen - *len;
4726 if ((ssize_t)avail_room <= 0)
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02004727 break;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004728
Frédéric Lécailled8b84432021-12-10 15:18:36 +01004729 TRACE_PROTO(" New STREAM frame build (room, len)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004730 QUIC_EV_CONN_BCFRMS, qc, &room, len);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004731 if (cf->type & QUIC_STREAM_FRAME_TYPE_LEN_BIT) {
4732 dlen = max_available_room(avail_room, &dlen_sz);
4733 if (dlen > cf->stream.len) {
4734 dlen = cf->stream.len;
4735 }
4736 dlen_sz = quic_int_getsize(dlen);
4737 flen = hlen + dlen_sz + dlen;
4738 }
4739 else {
4740 dlen = QUIC_MIN(avail_room, cf->stream.len);
4741 flen = hlen + dlen;
4742 }
4743 TRACE_PROTO(" STREAM data length (hlen, stream.len, dlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004744 QUIC_EV_CONN_BCFRMS, qc, &hlen, &cf->stream.len, &dlen);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004745 TRACE_PROTO(" STREAM frame length (flen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004746 QUIC_EV_CONN_BCFRMS, qc, &flen);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004747 /* Add the STREAM data length and its encoded length to the packet
4748 * length and the length of this length.
4749 */
4750 *len += flen;
4751 room -= flen;
4752 if (dlen == cf->stream.len) {
4753 /* <cf> STREAM data have been consumed. */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01004754 LIST_DELETE(&cf->list);
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01004755 LIST_APPEND(l, &cf->list);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004756 }
4757 else {
4758 struct quic_frame *new_cf;
4759
4760 new_cf = pool_zalloc(pool_head_quic_frame);
4761 if (!new_cf) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004762 TRACE_PROTO("No memory for new STREAM frame", QUIC_EV_CONN_BCFRMS, qc);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004763 return 0;
4764 }
4765
4766 new_cf->type = cf->type;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02004767 new_cf->stream.qcs = cf->stream.qcs;
4768 new_cf->stream.buf = cf->stream.buf;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004769 new_cf->stream.id = cf->stream.id;
4770 if (cf->type & QUIC_STREAM_FRAME_TYPE_OFF_BIT)
4771 new_cf->stream.offset = cf->stream.offset;
4772 new_cf->stream.len = dlen;
4773 new_cf->type |= QUIC_STREAM_FRAME_TYPE_LEN_BIT;
4774 /* FIN bit reset */
4775 new_cf->type &= ~QUIC_STREAM_FRAME_TYPE_FIN_BIT;
4776 new_cf->stream.data = cf->stream.data;
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01004777 LIST_APPEND(l, &new_cf->list);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004778 cf->type |= QUIC_STREAM_FRAME_TYPE_OFF_BIT;
4779 /* Consume <dlen> bytes of the current frame. */
4780 cf->stream.len -= dlen;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02004781 cf->stream.offset.key += dlen;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004782 cf->stream.data += dlen;
4783 }
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004784 break;
4785
4786 default:
4787 flen = qc_frm_len(cf);
4788 BUG_ON(!flen);
4789 if (flen > room)
4790 continue;
4791
4792 *len += flen;
4793 room -= flen;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01004794 LIST_DELETE(&cf->list);
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01004795 LIST_APPEND(l, &cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004796 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004797 }
Frédéric Lécailleea604992020-12-24 13:01:37 +01004798 ret = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004799 }
4800
Frédéric Lécailleea604992020-12-24 13:01:37 +01004801 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004802}
4803
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004804/* This function builds a clear packet from <pkt> information (its type)
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02004805 * into a buffer with <pos> as position pointer and <qel> as QUIC TLS encryption
4806 * level for <conn> QUIC connection and <qel> as QUIC TLS encryption level,
4807 * filling the buffer with as much frames as possible.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004808 * 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 +02004809 * reserved so that to ensure there is enough room to build this AEAD TAG after
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02004810 * having returned from this function.
4811 * This function also updates the value of <buf_pn> pointer to point to the packet
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004812 * number field in this packet. <pn_len> will also have the packet number
4813 * length as value.
4814 *
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004815 * Return 1 if succeeded (enough room to buile this packet), O if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004816 */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004817static int qc_do_build_pkt(unsigned char *pos, const unsigned char *end,
4818 size_t dglen, struct quic_tx_packet *pkt,
4819 int64_t pn, size_t *pn_len, unsigned char **buf_pn,
Frédéric Lécaillece6602d2022-01-17 11:06:10 +01004820 int ack, int padding, int cc, int probe,
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004821 struct quic_enc_level *qel, struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004822{
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004823 unsigned char *beg;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01004824 size_t len, len_sz, len_frms, padding_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004825 struct quic_frame frm = { .type = QUIC_FT_CRYPTO, };
4826 struct quic_frame ack_frm = { .type = QUIC_FT_ACK, };
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01004827 struct quic_frame cc_frm = { . type = QUIC_FT_CONNECTION_CLOSE, };
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01004828 size_t ack_frm_len, head_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004829 int64_t largest_acked_pn;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004830 int add_ping_frm;
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01004831 struct list frm_list = LIST_HEAD_INIT(frm_list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004832
Frédéric Lécailleea604992020-12-24 13:01:37 +01004833 /* Length field value with CRYPTO frames if present. */
4834 len_frms = 0;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004835 beg = pos;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01004836 /* When not probing and not acking, and no immediate close is required,
4837 * reduce the size of this buffer to respect
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004838 * the congestion controller window. So, we do not limit the size of this
4839 * packet if we have an ACK frame to send because an ACK frame is not
4840 * ack-eliciting. This size will be limited if we have ack-eliciting
4841 * frames to send from qel->pktns->tx.frms.
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004842 */
Frédéric Lécaillece6602d2022-01-17 11:06:10 +01004843 if (!probe && !ack && !cc) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004844 size_t path_room;
4845
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004846 path_room = quic_path_prep_data(qc->path);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004847 if (end - beg > path_room)
4848 end = beg + path_room;
4849 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004850
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004851 /* Ensure there is enough room for the TLS encryption tag and a zero token
4852 * length field if any.
4853 */
4854 if (end - pos < QUIC_TLS_TAG_LEN +
4855 (pkt->type == QUIC_PACKET_TYPE_INITIAL ? 1 : 0))
4856 goto no_room;
4857
4858 end -= QUIC_TLS_TAG_LEN;
Frédéric Lécaillee1aa0d32021-08-03 16:03:09 +02004859 largest_acked_pn = HA_ATOMIC_LOAD(&qel->pktns->tx.largest_acked_pn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004860 /* packet number length */
4861 *pn_len = quic_packet_number_length(pn, largest_acked_pn);
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004862 /* Build the header */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004863 if ((pkt->type == QUIC_PACKET_TYPE_SHORT &&
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004864 !quic_build_packet_short_header(&pos, end, *pn_len, qc, qel->tls_ctx.flags)) ||
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004865 (pkt->type != QUIC_PACKET_TYPE_SHORT &&
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004866 !quic_build_packet_long_header(&pos, end, pkt->type, *pn_len, qc)))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004867 goto no_room;
4868
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004869 /* XXX FIXME XXX Encode the token length (0) for an Initial packet. */
4870 if (pkt->type == QUIC_PACKET_TYPE_INITIAL)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004871 *pos++ = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01004872 head_len = pos - beg;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004873 /* Build an ACK frame if required. */
4874 ack_frm_len = 0;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01004875 if (!cc && ack && !eb_is_empty(&qel->pktns->rx.arngs.root)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004876 ack_frm.tx_ack.ack_delay = 0;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01004877 ack_frm.tx_ack.arngs = &qel->pktns->rx.arngs;
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004878 /* XXX BE CAREFUL XXX : here we reserved at least one byte for the
4879 * smallest frame (PING) and <*pn_len> more for the packet number. Note
4880 * that from here, we do not know if we will have to send a PING frame.
4881 * This will be decided after having computed the ack-eliciting frames
4882 * to be added to this packet.
4883 */
4884 ack_frm_len = quic_ack_frm_reduce_sz(&ack_frm, end - 1 - *pn_len - pos);
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004885 if (!ack_frm_len)
4886 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004887 }
4888
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004889 /* Length field value without the ack-eliciting frames. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004890 len = ack_frm_len + *pn_len;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01004891 len_frms = 0;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01004892 if (!cc && !LIST_ISEMPTY(&qel->pktns->tx.frms)) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004893 ssize_t room = end - pos;
Frédéric Lécailleea604992020-12-24 13:01:37 +01004894
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004895 /* Initialize the length of the frames built below to <len>.
4896 * If any frame could be successfully built by qc_build_frms(),
4897 * we will have len_frms > len.
4898 */
4899 len_frms = len;
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01004900 if (!qc_build_frms(&frm_list, end - pos, &len_frms, pos - beg, qel, qc)) {
Frédéric Lécailleea604992020-12-24 13:01:37 +01004901 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004902 qc, NULL, NULL, &room);
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004903 }
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004904 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004905
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01004906 /* Length (of the remaining data). Must not fail because, the buffer size
4907 * has been checked above. Note that we have reserved QUIC_TLS_TAG_LEN bytes
4908 * for the encryption tag. It must be taken into an account for the length
4909 * of this packet.
4910 */
4911 if (len_frms)
4912 len = len_frms + QUIC_TLS_TAG_LEN;
4913 else
4914 len += QUIC_TLS_TAG_LEN;
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01004915 /* CONNECTION_CLOSE frame */
4916 if (cc) {
4917 struct quic_connection_close *cc = &cc_frm.connection_close;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01004918
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004919 cc->error_code = qc->err_code;
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01004920 len += qc_frm_len(&cc_frm);
4921 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004922 add_ping_frm = 0;
4923 padding_len = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01004924 len_sz = quic_int_getsize(len);
4925 /* Add this packet size to <dglen> */
4926 dglen += head_len + len_sz + len;
4927 if (padding && dglen < QUIC_INITIAL_PACKET_MINLEN) {
4928 /* This is a maximum padding size */
4929 padding_len = QUIC_INITIAL_PACKET_MINLEN - dglen;
4930 /* The length field value is of this packet is <len> + <padding_len>
4931 * the size of which may be greater than the initial computed size
Ilya Shipitsin5e87bcf2021-12-25 11:45:52 +05004932 * <len_sz>. So, let's deduce the difference between these to packet
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01004933 * sizes from <padding_len>.
4934 */
4935 padding_len -= quic_int_getsize(len + padding_len) - len_sz;
4936 len += padding_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004937 }
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01004938 else if (LIST_ISEMPTY(&frm_list) || len_frms == len) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004939 if (qel->pktns->tx.pto_probe) {
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004940 /* If we cannot send a frame, we send a PING frame. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004941 add_ping_frm = 1;
4942 len += 1;
4943 }
4944 /* If there is no frame at all to follow, add at least a PADDING frame. */
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01004945 if (!ack_frm_len && !cc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004946 len += padding_len = QUIC_PACKET_PN_MAXLEN - *pn_len;
4947 }
4948
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004949 if (pkt->type != QUIC_PACKET_TYPE_SHORT && !quic_enc_int(&pos, end, len))
4950 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004951
4952 /* Packet number field address. */
4953 *buf_pn = pos;
4954
4955 /* Packet number encoding. */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004956 if (!quic_packet_number_encode(&pos, end, pn, *pn_len))
4957 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004958
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004959 if (ack_frm_len && !qc_build_frm(&pos, end, &ack_frm, pkt, qc))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004960 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004961
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004962 /* Ack-eliciting frames */
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01004963 if (!LIST_ISEMPTY(&frm_list)) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02004964 struct quic_frame *cf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004965
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01004966 list_for_each_entry(cf, &frm_list, list) {
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004967 if (!qc_build_frm(&pos, end, cf, pkt, qc)) {
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01004968 ssize_t room = end - pos;
4969 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004970 qc, NULL, NULL, &room);
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004971 break;
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01004972 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004973 }
4974 }
4975
4976 /* Build a PING frame if needed. */
4977 if (add_ping_frm) {
4978 frm.type = QUIC_FT_PING;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004979 if (!qc_build_frm(&pos, end, &frm, pkt, qc))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004980 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004981 }
4982
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01004983 /* Build a CONNECTION_CLOSE frame if needed. */
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004984 if (cc && !qc_build_frm(&pos, end, &cc_frm, pkt, qc))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004985 goto no_room;
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01004986
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004987 /* Build a PADDING frame if needed. */
4988 if (padding_len) {
4989 frm.type = QUIC_FT_PADDING;
4990 frm.padding.len = padding_len;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004991 if (!qc_build_frm(&pos, end, &frm, pkt, qc))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004992 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004993 }
4994
Frédéric Lécaille466e9da2021-12-29 12:04:13 +01004995 /* If this packet is ack-eliciting and we are probing let's
4996 * decrement the PTO probe counter.
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004997 */
Frédéric Lécaille466e9da2021-12-29 12:04:13 +01004998 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING &&
4999 qel->pktns->tx.pto_probe)
5000 qel->pktns->tx.pto_probe--;
5001
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005002 pkt->len = pos - beg;
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01005003 LIST_SPLICE(&pkt->frms, &frm_list);
5004 TRACE_PROTO("Ack eliciting frame", QUIC_EV_CONN_HPKT, qc, pkt);
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005005
5006 return 1;
5007
5008 no_room:
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01005009 /* Replace the pre-built frames which could not be add to this packet */
5010 LIST_SPLICE(&qel->pktns->tx.frms, &frm_list);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005011 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005012 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005013}
5014
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02005015static inline void quic_tx_packet_init(struct quic_tx_packet *pkt, int type)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005016{
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02005017 pkt->type = type;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005018 pkt->len = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005019 pkt->in_flight_len = 0;
Frédéric Lécaille0371cd52021-12-13 12:30:54 +01005020 pkt->pn_node.key = (uint64_t)-1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005021 LIST_INIT(&pkt->frms);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005022 pkt->next = NULL;
5023 pkt->refcnt = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005024}
5025
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05005026/* Free <pkt> TX packet which has not already attached to any tree. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005027static inline void free_quic_tx_packet(struct quic_tx_packet *pkt)
5028{
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02005029 struct quic_frame *frm, *frmbak;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005030
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005031 if (!pkt)
5032 return;
5033
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005034 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02005035 LIST_DELETE(&frm->list);
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02005036 pool_free(pool_head_quic_frame, frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005037 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005038 quic_tx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005039}
5040
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02005041/* Build a packet into <buf> packet buffer with <pkt_type> as packet
5042 * type for <qc> QUIC connection from <qel> encryption level.
5043 * Return -2 if the packet could not be allocated or encrypted for any reason,
5044 * -1 if there was not enough room to build a packet.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005045 */
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02005046static struct quic_tx_packet *qc_build_pkt(unsigned char **pos,
5047 const unsigned char *buf_end,
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005048 struct quic_enc_level *qel,
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01005049 struct quic_conn *qc, size_t dglen, int padding,
Frédéric Lécaillece6602d2022-01-17 11:06:10 +01005050 int pkt_type, int ack, int probe, int cc, int *err)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005051{
5052 /* The pointer to the packet number field. */
5053 unsigned char *buf_pn;
5054 unsigned char *beg, *end, *payload;
5055 int64_t pn;
5056 size_t pn_len, payload_len, aad_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005057 struct quic_tls_ctx *tls_ctx;
5058 struct quic_tx_packet *pkt;
5059
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005060 TRACE_ENTER(QUIC_EV_CONN_HPKT, qc, NULL, qel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005061 *err = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005062 pkt = pool_alloc(pool_head_quic_tx_packet);
5063 if (!pkt) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005064 TRACE_DEVEL("Not enough memory for a new packet", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005065 *err = -2;
5066 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005067 }
5068
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02005069 quic_tx_packet_init(pkt, pkt_type);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005070 beg = *pos;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005071 pn_len = 0;
5072 buf_pn = NULL;
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005073
5074 pn = qel->pktns->tx.next_pn + 1;
5075 if (!qc_do_build_pkt(*pos, buf_end, dglen, pkt, pn, &pn_len, &buf_pn,
Frédéric Lécaillece6602d2022-01-17 11:06:10 +01005076 ack, padding, cc, probe, qel, qc)) {
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005077 *err = -1;
5078 goto err;
5079 }
5080
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005081 end = beg + pkt->len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005082 payload = buf_pn + pn_len;
5083 payload_len = end - payload;
5084 aad_len = payload - beg;
5085
5086 tls_ctx = &qel->tls_ctx;
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01005087 if (!quic_packet_encrypt(payload, payload_len, beg, aad_len, pn, tls_ctx, qc)) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005088 *err = -2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005089 goto err;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005090 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005091
5092 end += QUIC_TLS_TAG_LEN;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005093 pkt->len += QUIC_TLS_TAG_LEN;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005094 if (!quic_apply_header_protection(beg, buf_pn, pn_len,
5095 tls_ctx->tx.hp, tls_ctx->tx.hp_key)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005096 TRACE_DEVEL("Could not apply the header protection", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005097 *err = -2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005098 goto err;
5099 }
5100
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005101 /* Consume a packet number */
5102 qel->pktns->tx.next_pn++;
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +01005103 qc->tx.prep_bytes += pkt->len;
Frédéric Lécaille41a07602022-01-04 16:57:37 +01005104 if (qc->tx.prep_bytes >= 3 * qc->rx.bytes)
5105 HA_ATOMIC_OR(&qc->flags, QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005106 /* Now that a correct packet is built, let us consume <*pos> buffer. */
5107 *pos = end;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005108 /* Attach the built packet to its tree. */
Frédéric Lécaillea7348f62021-08-03 16:50:14 +02005109 pkt->pn_node.key = pn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005110 /* Set the packet in fligth length for in flight packet only. */
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01005111 if (pkt->flags & QUIC_FL_TX_PACKET_IN_FLIGHT) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005112 pkt->in_flight_len = pkt->len;
5113 qc->path->prep_in_flight += pkt->len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01005114 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005115 pkt->pktns = qel->pktns;
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005116 TRACE_LEAVE(QUIC_EV_CONN_HPKT, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005117
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005118 return pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005119
5120 err:
5121 free_quic_tx_packet(pkt);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005122 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005123 return NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005124}
5125
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005126
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01005127/* Called from the upper layer, to subscribe <es> to events <event_type>. The
5128 * event subscriber <es> is not allowed to change from a previous call as long
5129 * as at least one event is still subscribed. The <event_type> must only be a
5130 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
5131 */
5132static int quic_conn_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
5133{
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02005134 struct qcc *qcc = conn->qc->qcc;
5135
5136 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
5137 BUG_ON(qcc->subs && qcc->subs != es);
5138
5139 es->events |= event_type;
5140 qcc->subs = es;
5141
5142 if (event_type & SUB_RETRY_RECV)
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005143 TRACE_DEVEL("subscribe(recv)", QUIC_EV_CONN_XPRTRECV, conn->qc, qcc);
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02005144
5145 if (event_type & SUB_RETRY_SEND)
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005146 TRACE_DEVEL("subscribe(send)", QUIC_EV_CONN_XPRTSEND, conn->qc, qcc);
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02005147
5148 return 0;
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01005149}
5150
5151/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
5152 * The <es> pointer is not allowed to differ from the one passed to the
5153 * subscribe() call. It always returns zero.
5154 */
5155static int quic_conn_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
5156{
5157 return conn_unsubscribe(conn, xprt_ctx, event_type, es);
5158}
5159
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005160/* Store in <xprt_ctx> the context attached to <conn>.
5161 * Returns always 0.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005162 */
5163static int qc_conn_init(struct connection *conn, void **xprt_ctx)
5164{
Amaury Denoyelle7ca7c842021-12-22 18:20:38 +01005165 struct quic_conn *qc = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005166
5167 TRACE_ENTER(QUIC_EV_CONN_NEW, conn);
5168
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005169 /* do not store the context if already set */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005170 if (*xprt_ctx)
5171 goto out;
5172
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005173 HA_ATOMIC_STORE(xprt_ctx, conn->qc->xprt_ctx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005174
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005175 out:
Frédéric Lécaillefde2a982021-12-27 15:12:09 +01005176 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005177
5178 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005179}
5180
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005181/* Start the QUIC transport layer */
5182static int qc_xprt_start(struct connection *conn, void *ctx)
5183{
5184 struct quic_conn *qc;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02005185 struct ssl_sock_ctx *qctx = ctx;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005186
5187 qc = conn->qc;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01005188 quic_mux_transport_params_update(qc->qcc);
5189 if (qcc_install_app_ops(qc->qcc, qc->app_ops)) {
5190 TRACE_PROTO("Cannot install app layer", QUIC_EV_CONN_LPKT, qc);
5191 return 0;
5192 }
5193
5194 /* mux-quic can now be considered ready. */
5195 qc->mux_state = QC_MUX_READY;
5196
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005197 tasklet_wakeup(qctx->wait_event.tasklet);
5198 return 1;
5199}
5200
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005201/* transport-layer operations for QUIC connections. */
5202static struct xprt_ops ssl_quic = {
Amaury Denoyelle414cac52021-09-22 11:14:37 +02005203 .close = quic_close,
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01005204 .subscribe = quic_conn_subscribe,
5205 .unsubscribe = quic_conn_unsubscribe,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005206 .init = qc_conn_init,
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005207 .start = qc_xprt_start,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005208 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
5209 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01005210 .get_alpn = ssl_sock_get_alpn,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005211 .name = "QUIC",
5212};
5213
5214__attribute__((constructor))
5215static void __quic_conn_init(void)
5216{
5217 ha_quic_meth = BIO_meth_new(0x666, "ha QUIC methods");
5218 xprt_register(XPRT_QUIC, &ssl_quic);
5219}
5220
5221__attribute__((destructor))
5222static void __quic_conn_deinit(void)
5223{
5224 BIO_meth_free(ha_quic_meth);
5225}
5226
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005227/* Read all the QUIC packets found in <buf> from QUIC connection with <owner>
5228 * as owner calling <func> function.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05005229 * Return the number of bytes read if succeeded, -1 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005230 */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005231struct task *quic_lstnr_dghdlr(struct task *t, void *ctx, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005232{
5233 unsigned char *pos;
5234 const unsigned char *end;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005235 struct quic_dghdlr *dghdlr = ctx;
5236 struct quic_dgram *dgram;
5237 int first_pkt = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005238
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01005239 while ((dgram = MT_LIST_POP(&dghdlr->dgrams, typeof(dgram), mt_list))) {
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01005240 pos = dgram->buf;
5241 end = pos + dgram->len;
5242 do {
5243 int ret;
5244 struct quic_rx_packet *pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005245
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01005246 pkt = pool_zalloc(pool_head_quic_rx_packet);
5247 if (!pkt)
5248 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005249
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01005250 quic_rx_packet_refinc(pkt);
5251 ret = qc_lstnr_pkt_rcv(pos, end, pkt, first_pkt, dgram);
5252 first_pkt = 0;
5253 pos += pkt->len;
5254 quic_rx_packet_refdec(pkt);
5255 if (ret == -1)
5256 /* If the packet length could not be found, we cannot continue. */
5257 break;
5258 } while (pos < end);
5259
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01005260 /* Increasing the received bytes counter by the UDP datagram length
5261 * if this datagram could be associated to a connection.
5262 */
5263 if (dgram->qc)
5264 dgram->qc->rx.bytes += dgram->len;
Frédéric Lécaille841bf5e2022-02-02 09:41:27 +01005265
5266 /* Mark this datagram as consumed */
5267 HA_ATOMIC_STORE(&dgram->buf, NULL);
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01005268 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005269
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005270 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005271
5272 err:
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005273 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005274}
5275
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005276/* Retreive the DCID from a QUIC datagram or packet with <buf> as first octet.
5277 * Returns 1 if succeeded, 0 if not.
5278 */
5279static int quic_get_dgram_dcid(unsigned char *buf, const unsigned char *end,
5280 unsigned char **dcid, size_t *dcid_len)
5281{
5282 int long_header;
5283 size_t minlen, skip;
5284
5285 if (!(*buf & QUIC_PACKET_FIXED_BIT))
5286 goto err;
5287
5288 long_header = *buf & QUIC_PACKET_LONG_HEADER_BIT;
5289 minlen = long_header ?
5290 QUIC_LONG_PACKET_MINLEN : QUIC_SHORT_PACKET_MINLEN + QUIC_HAP_CID_LEN;
5291 skip = long_header ? QUIC_LONG_PACKET_DCID_OFF : QUIC_SHORT_PACKET_DCID_OFF;
Frédéric Lécaillebfa32362022-02-02 10:44:36 +01005292 if (end - buf <= minlen)
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005293 goto err;
5294
5295 buf += skip;
5296 *dcid_len = long_header ? *buf++ : QUIC_HAP_CID_LEN;
5297 if (*dcid_len > QUIC_CID_MAXLEN || end - buf <= *dcid_len)
5298 goto err;
5299
5300 *dcid = buf;
5301
5302 return 1;
5303
5304 err:
5305 TRACE_PROTO("wrong datagram", QUIC_EV_CONN_LPKT);
5306 return 0;
5307}
5308
Frédéric Lécaille37ae5052022-01-27 11:31:50 +01005309/* Retrieve the DCID from the datagram found in <buf> and deliver it to the
5310 * correct datagram handler.
5311 * Return 1 if a correct datagram could be found, 0 if not.
5312 */
5313int quic_lstnr_dgram_dispatch(unsigned char *buf, size_t len, void *owner,
5314 struct sockaddr_storage *saddr,
5315 struct quic_dgram *new_dgram, struct list *dgrams)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005316{
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005317 struct quic_dgram *dgram;
5318 unsigned char *dcid;
5319 size_t dcid_len;
Amaury Denoyellef6dcbce2022-02-08 15:05:58 +01005320 int cid_tid;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005321
5322 if (!len || !quic_get_dgram_dcid(buf, buf + len, &dcid, &dcid_len))
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005323 goto err;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005324
Frédéric Lécaille37ae5052022-01-27 11:31:50 +01005325 dgram = new_dgram ? new_dgram : pool_alloc(pool_head_quic_dgram);
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005326 if (!dgram)
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005327 goto err;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005328
Amaury Denoyellef6dcbce2022-02-08 15:05:58 +01005329 cid_tid = quic_get_cid_tid(dcid);
5330
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005331 /* All the members must be initialized! */
5332 dgram->owner = owner;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005333 dgram->buf = buf;
5334 dgram->len = len;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005335 dgram->dcid = dcid;
5336 dgram->dcid_len = dcid_len;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005337 dgram->saddr = *saddr;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005338 dgram->qc = NULL;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005339 LIST_APPEND(dgrams, &dgram->list);
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01005340 MT_LIST_APPEND(&quic_dghdlrs[cid_tid].dgrams, &dgram->mt_list);
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005341
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01005342 tasklet_wakeup(quic_dghdlrs[cid_tid].task);
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005343
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005344 return 1;
5345
5346 err:
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005347 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005348}
5349
Amaury Denoyelle118b2cb2021-11-25 16:05:16 +01005350/* Function to automatically activate QUIC traces on stdout.
5351 * Activated via the compilation flag -DENABLE_QUIC_STDOUT_TRACES.
5352 * Main use for now is in the docker image for QUIC interop testing.
5353 */
5354static void quic_init_stdout_traces(void)
5355{
5356#ifdef ENABLE_QUIC_STDOUT_TRACES
5357 trace_quic.sink = sink_find("stdout");
5358 trace_quic.level = TRACE_LEVEL_DEVELOPER;
Amaury Denoyelle118b2cb2021-11-25 16:05:16 +01005359 trace_quic.state = TRACE_STATE_RUNNING;
5360#endif
5361}
5362INITCALL0(STG_INIT, quic_init_stdout_traces);
5363
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005364/*
5365 * Local variables:
5366 * c-indent-level: 8
5367 * c-basic-offset: 8
5368 * End:
5369 */