blob: 91e06eef413c1beb1086f8af675b9ed492020348 [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>
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +020047#include <haproxy/cbuf.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010048#include <haproxy/quic_tls.h>
Amaury Denoyelle118b2cb2021-11-25 16:05:16 +010049#include <haproxy/sink.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010050#include <haproxy/ssl_sock.h>
51#include <haproxy/stream_interface.h>
52#include <haproxy/task.h>
53#include <haproxy/trace.h>
54#include <haproxy/xprt_quic.h>
55
Amaury Denoyellea22d8602021-11-10 15:17:56 +010056/* list of supported QUIC versions by this implementation */
57static int quic_supported_version[] = {
58 0x00000001,
Frédéric Lécaille56d3e1b2021-11-19 14:32:52 +010059 0xff00001d, /* draft-29 */
Amaury Denoyellea22d8602021-11-10 15:17:56 +010060
61 /* placeholder, do not add entry after this */
62 0x0
63};
64
Frédéric Lécaille48fc74a2021-09-03 16:42:19 +020065/* This is the values of some QUIC transport parameters when absent.
66 * Should be used to initialize any transport parameters (local or remote)
67 * before updating them with customized values.
68 */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010069struct quic_transport_params quic_dflt_transport_params = {
Frédéric Lécaille46be7e92021-10-22 15:04:27 +020070 .max_udp_payload_size = QUIC_PACKET_MAXLEN,
Frédéric Lécaille785c9c92021-05-17 16:42:21 +020071 .ack_delay_exponent = QUIC_DFLT_ACK_DELAY_COMPONENT,
72 .max_ack_delay = QUIC_DFLT_MAX_ACK_DELAY,
Frédéric Lécaille48fc74a2021-09-03 16:42:19 +020073 .active_connection_id_limit = QUIC_ACTIVE_CONNECTION_ID_LIMIT,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010074};
75
76/* trace source and events */
77static void quic_trace(enum trace_level level, uint64_t mask, \
78 const struct trace_source *src,
79 const struct ist where, const struct ist func,
80 const void *a1, const void *a2, const void *a3, const void *a4);
81
82static const struct trace_event quic_trace_events[] = {
83 { .mask = QUIC_EV_CONN_NEW, .name = "new_conn", .desc = "new QUIC connection" },
84 { .mask = QUIC_EV_CONN_INIT, .name = "new_conn_init", .desc = "new QUIC connection initialization" },
85 { .mask = QUIC_EV_CONN_ISEC, .name = "init_secs", .desc = "initial secrets derivation" },
86 { .mask = QUIC_EV_CONN_RSEC, .name = "read_secs", .desc = "read secrets derivation" },
87 { .mask = QUIC_EV_CONN_WSEC, .name = "write_secs", .desc = "write secrets derivation" },
88 { .mask = QUIC_EV_CONN_LPKT, .name = "lstnr_packet", .desc = "new listener received packet" },
89 { .mask = QUIC_EV_CONN_SPKT, .name = "srv_packet", .desc = "new server received packet" },
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +050090 { .mask = QUIC_EV_CONN_ENCPKT, .name = "enc_hdshk_pkt", .desc = "handhshake packet encryption" },
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010091 { .mask = QUIC_EV_CONN_HPKT, .name = "hdshk_pkt", .desc = "handhshake packet building" },
92 { .mask = QUIC_EV_CONN_PAPKT, .name = "phdshk_apkt", .desc = "post handhshake application packet preparation" },
93 { .mask = QUIC_EV_CONN_PAPKTS, .name = "phdshk_apkts", .desc = "post handhshake application packets preparation" },
94 { .mask = QUIC_EV_CONN_HDSHK, .name = "hdshk", .desc = "SSL handhshake processing" },
95 { .mask = QUIC_EV_CONN_RMHP, .name = "rm_hp", .desc = "Remove header protection" },
96 { .mask = QUIC_EV_CONN_PRSHPKT, .name = "parse_hpkt", .desc = "parse handshake packet" },
97 { .mask = QUIC_EV_CONN_PRSAPKT, .name = "parse_apkt", .desc = "parse application packet" },
98 { .mask = QUIC_EV_CONN_PRSFRM, .name = "parse_frm", .desc = "parse frame" },
99 { .mask = QUIC_EV_CONN_PRSAFRM, .name = "parse_ack_frm", .desc = "parse ACK frame" },
100 { .mask = QUIC_EV_CONN_BFRM, .name = "build_frm", .desc = "build frame" },
101 { .mask = QUIC_EV_CONN_PHPKTS, .name = "phdshk_pkts", .desc = "handhshake packets preparation" },
102 { .mask = QUIC_EV_CONN_TRMHP, .name = "rm_hp_try", .desc = "header protection removing try" },
103 { .mask = QUIC_EV_CONN_ELRMHP, .name = "el_rm_hp", .desc = "handshake enc. level header protection removing" },
104 { .mask = QUIC_EV_CONN_ELRXPKTS, .name = "el_treat_rx_pkts", .desc = "handshake enc. level rx packets treatment" },
105 { .mask = QUIC_EV_CONN_SSLDATA, .name = "ssl_provide_data", .desc = "CRYPTO data provision to TLS stack" },
106 { .mask = QUIC_EV_CONN_RXCDATA, .name = "el_treat_rx_cfrms",.desc = "enc. level RX CRYPTO frames processing"},
107 { .mask = QUIC_EV_CONN_ADDDATA, .name = "add_hdshk_data", .desc = "TLS stack ->add_handshake_data() call"},
108 { .mask = QUIC_EV_CONN_FFLIGHT, .name = "flush_flight", .desc = "TLS stack ->flush_flight() call"},
109 { .mask = QUIC_EV_CONN_SSLALERT, .name = "send_alert", .desc = "TLS stack ->send_alert() call"},
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100110 { .mask = QUIC_EV_CONN_RTTUPDT, .name = "rtt_updt", .desc = "RTT sampling" },
111 { .mask = QUIC_EV_CONN_SPPKTS, .name = "sppkts", .desc = "send prepared packets" },
112 { .mask = QUIC_EV_CONN_PKTLOSS, .name = "pktloss", .desc = "detect packet loss" },
113 { .mask = QUIC_EV_CONN_STIMER, .name = "stimer", .desc = "set timer" },
114 { .mask = QUIC_EV_CONN_PTIMER, .name = "ptimer", .desc = "process timer" },
115 { .mask = QUIC_EV_CONN_SPTO, .name = "spto", .desc = "set PTO" },
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +0100116 { .mask = QUIC_EV_CONN_BCFRMS, .name = "bcfrms", .desc = "build CRYPTO data frames" },
Frédéric Lécaille513b4f22021-09-20 15:23:17 +0200117 { .mask = QUIC_EV_CONN_XPRTSEND, .name = "xprt_send", .desc = "sending XRPT subscription" },
118 { .mask = QUIC_EV_CONN_XPRTRECV, .name = "xprt_recv", .desc = "receiving XRPT subscription" },
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100119 { /* end */ }
120};
121
122static const struct name_desc quic_trace_lockon_args[4] = {
123 /* arg1 */ { /* already used by the connection */ },
124 /* arg2 */ { .name="quic", .desc="QUIC transport" },
125 /* arg3 */ { },
126 /* arg4 */ { }
127};
128
129static const struct name_desc quic_trace_decoding[] = {
130#define QUIC_VERB_CLEAN 1
131 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
132 { /* end */ }
133};
134
135
136struct trace_source trace_quic = {
137 .name = IST("quic"),
138 .desc = "QUIC xprt",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100139 .arg_def = TRC_ARG1_QCON, /* TRACE()'s first argument is always a quic_conn */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100140 .default_cb = quic_trace,
141 .known_events = quic_trace_events,
142 .lockon_args = quic_trace_lockon_args,
143 .decoding = quic_trace_decoding,
144 .report_events = ~0, /* report everything by default */
145};
146
147#define TRACE_SOURCE &trace_quic
148INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
149
150static BIO_METHOD *ha_quic_meth;
151
Frédéric Lécailledbe25af2021-08-04 15:27:37 +0200152DECLARE_POOL(pool_head_quic_tx_ring, "quic_tx_ring_pool", QUIC_TX_RING_BUFSZ);
Frédéric Lécaillec1029f62021-10-20 11:09:58 +0200153DECLARE_POOL(pool_head_quic_rxbuf, "quic_rxbuf_pool", QUIC_RX_BUFSZ);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +0100154DECLARE_POOL(pool_head_quic_conn_rxbuf, "quic_conn_rxbuf", QUIC_CONN_RX_BUFSZ);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100155DECLARE_STATIC_POOL(pool_head_quic_conn_ctx,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +0200156 "quic_conn_ctx_pool", sizeof(struct ssl_sock_ctx));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100157DECLARE_STATIC_POOL(pool_head_quic_conn, "quic_conn", sizeof(struct quic_conn));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100158DECLARE_POOL(pool_head_quic_connection_id,
159 "quic_connnection_id_pool", sizeof(struct quic_connection_id));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100160DECLARE_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 +0100161DECLARE_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 +0100162DECLARE_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 +0100163DECLARE_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 +0100164DECLARE_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 +0200165DECLARE_POOL(pool_head_quic_frame, "quic_frame_pool", sizeof(struct quic_frame));
Frédéric Lécaille8090b512020-11-30 16:19:22 +0100166DECLARE_STATIC_POOL(pool_head_quic_arng, "quic_arng_pool", sizeof(struct quic_arng_node));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100167
Frédéric Lécaille9445abc2021-08-04 10:49:51 +0200168static 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 +0200169 struct quic_enc_level *qel,
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +0100170 struct quic_conn *qc, size_t dglen, int pkt_type,
Frédéric Lécaille66cbb822021-11-17 11:56:21 +0100171 int padding, int ack, int nb_pto_dgrams, int cc, int *err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100172
Frédéric Lécaillef63921f2020-12-18 09:48:20 +0100173/* Only for debug purpose */
174struct enc_debug_info {
175 unsigned char *payload;
176 size_t payload_len;
177 unsigned char *aad;
178 size_t aad_len;
179 uint64_t pn;
180};
181
182/* Initializes a enc_debug_info struct (only for debug purpose) */
183static inline void enc_debug_info_init(struct enc_debug_info *edi,
184 unsigned char *payload, size_t payload_len,
185 unsigned char *aad, size_t aad_len, uint64_t pn)
186{
187 edi->payload = payload;
188 edi->payload_len = payload_len;
189 edi->aad = aad;
190 edi->aad_len = aad_len;
191 edi->pn = pn;
192}
193
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100194/* Trace callback for QUIC.
195 * These traces always expect that arg1, if non-null, is of type connection.
196 */
197static void quic_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
198 const struct ist where, const struct ist func,
199 const void *a1, const void *a2, const void *a3, const void *a4)
200{
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100201 const struct quic_conn *qc = a1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100202
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100203 if (qc) {
204 const struct quic_tls_secrets *secs;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100205
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100206 chunk_appendf(&trace_buf, " : qc@%p", qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100207 if ((mask & QUIC_EV_CONN_INIT) && qc) {
208 chunk_appendf(&trace_buf, "\n odcid");
209 quic_cid_dump(&trace_buf, &qc->odcid);
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100210 chunk_appendf(&trace_buf, "\n dcid");
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100211 quic_cid_dump(&trace_buf, &qc->dcid);
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100212 chunk_appendf(&trace_buf, "\n scid");
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100213 quic_cid_dump(&trace_buf, &qc->scid);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100214 }
215
216 if (mask & QUIC_EV_CONN_ADDDATA) {
217 const enum ssl_encryption_level_t *level = a2;
218 const size_t *len = a3;
219
220 if (level) {
221 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
222
223 chunk_appendf(&trace_buf, " el=%c(%d)", quic_enc_level_char(lvl), lvl);
224 }
225 if (len)
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100226 chunk_appendf(&trace_buf, " len=%llu", (unsigned long long)*len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100227 }
228 if ((mask & QUIC_EV_CONN_ISEC) && qc) {
229 /* Initial read & write secrets. */
230 enum quic_tls_enc_level level = QUIC_TLS_ENC_LEVEL_INITIAL;
231 const unsigned char *rx_sec = a2;
232 const unsigned char *tx_sec = a3;
233
234 secs = &qc->els[level].tls_ctx.rx;
235 if (secs->flags & QUIC_FL_TLS_SECRETS_SET) {
236 chunk_appendf(&trace_buf, "\n RX el=%c", quic_enc_level_char(level));
237 if (rx_sec)
238 quic_tls_secret_hexdump(&trace_buf, rx_sec, 32);
239 quic_tls_keys_hexdump(&trace_buf, secs);
240 }
241 secs = &qc->els[level].tls_ctx.tx;
242 if (secs->flags & QUIC_FL_TLS_SECRETS_SET) {
243 chunk_appendf(&trace_buf, "\n TX el=%c", quic_enc_level_char(level));
244 if (tx_sec)
245 quic_tls_secret_hexdump(&trace_buf, tx_sec, 32);
246 quic_tls_keys_hexdump(&trace_buf, secs);
247 }
248 }
249 if (mask & (QUIC_EV_CONN_RSEC|QUIC_EV_CONN_RWSEC)) {
250 const enum ssl_encryption_level_t *level = a2;
251 const unsigned char *secret = a3;
252 const size_t *secret_len = a4;
253
254 if (level) {
255 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
256
257 chunk_appendf(&trace_buf, "\n RX el=%c", quic_enc_level_char(lvl));
258 if (secret && secret_len)
259 quic_tls_secret_hexdump(&trace_buf, secret, *secret_len);
260 secs = &qc->els[lvl].tls_ctx.rx;
261 if (secs->flags & QUIC_FL_TLS_SECRETS_SET)
262 quic_tls_keys_hexdump(&trace_buf, secs);
263 }
264 }
265
266 if (mask & (QUIC_EV_CONN_WSEC|QUIC_EV_CONN_RWSEC)) {
267 const enum ssl_encryption_level_t *level = a2;
268 const unsigned char *secret = a3;
269 const size_t *secret_len = a4;
270
271 if (level) {
272 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
273
274 chunk_appendf(&trace_buf, "\n TX el=%c", quic_enc_level_char(lvl));
275 if (secret && secret_len)
276 quic_tls_secret_hexdump(&trace_buf, secret, *secret_len);
277 secs = &qc->els[lvl].tls_ctx.tx;
278 if (secs->flags & QUIC_FL_TLS_SECRETS_SET)
279 quic_tls_keys_hexdump(&trace_buf, secs);
280 }
281
282 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100283
Frédéric Lécaille133e8a72020-12-18 09:33:27 +0100284 if (mask & (QUIC_EV_CONN_HPKT|QUIC_EV_CONN_PAPKT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100285 const struct quic_tx_packet *pkt = a2;
286 const struct quic_enc_level *qel = a3;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100287 const ssize_t *room = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100288
289 if (qel) {
Amaury Denoyelle4fd53d72021-12-21 14:28:26 +0100290 const struct quic_pktns *pktns = qc->pktns;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100291 chunk_appendf(&trace_buf, " qel=%c cwnd=%llu ppif=%lld pif=%llu "
292 "if=%llu pp=%u pdg=%d",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100293 quic_enc_level_char_from_qel(qel, qc),
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100294 (unsigned long long)qc->path->cwnd,
295 (unsigned long long)qc->path->prep_in_flight,
296 (unsigned long long)qc->path->in_flight,
297 (unsigned long long)pktns->tx.in_flight,
298 pktns->tx.pto_probe, qc->tx.nb_pto_dgrams);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100299 }
300 if (pkt) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +0200301 const struct quic_frame *frm;
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100302 if (pkt->pn_node.key != (uint64_t)-1)
303 chunk_appendf(&trace_buf, " pn=%llu",(ull)pkt->pn_node.key);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100304 list_for_each_entry(frm, &pkt->frms, list)
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100305 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100306 chunk_appendf(&trace_buf, " tx.bytes=%llu", (unsigned long long)qc->tx.bytes);
307 }
308
309 if (room) {
310 chunk_appendf(&trace_buf, " room=%lld", (long long)*room);
311 chunk_appendf(&trace_buf, " dcid.len=%llu scid.len=%llu",
312 (unsigned long long)qc->dcid.len, (unsigned long long)qc->scid.len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100313 }
314 }
315
316 if (mask & QUIC_EV_CONN_HDSHK) {
317 const enum quic_handshake_state *state = a2;
318 const int *err = a3;
319
320 if (state)
321 chunk_appendf(&trace_buf, " state=%s", quic_hdshk_state_str(*state));
322 if (err)
323 chunk_appendf(&trace_buf, " err=%s", ssl_error_str(*err));
324 }
325
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +0100326 if (mask & (QUIC_EV_CONN_TRMHP|QUIC_EV_CONN_ELRMHP|QUIC_EV_CONN_SPKT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100327 const struct quic_rx_packet *pkt = a2;
328 const unsigned long *pktlen = a3;
329 const SSL *ssl = a4;
330
331 if (pkt) {
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100332 chunk_appendf(&trace_buf, " pkt@%p el=%c",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100333 pkt, quic_packet_type_enc_level_char(pkt->type));
334 if (pkt->pnl)
335 chunk_appendf(&trace_buf, " pnl=%u pn=%llu", pkt->pnl,
336 (unsigned long long)pkt->pn);
337 if (pkt->token_len)
338 chunk_appendf(&trace_buf, " toklen=%llu",
339 (unsigned long long)pkt->token_len);
340 if (pkt->aad_len)
341 chunk_appendf(&trace_buf, " aadlen=%llu",
342 (unsigned long long)pkt->aad_len);
343 chunk_appendf(&trace_buf, " flags=0x%x len=%llu",
344 pkt->flags, (unsigned long long)pkt->len);
345 }
346 if (pktlen)
347 chunk_appendf(&trace_buf, " (%ld)", *pktlen);
348 if (ssl) {
349 enum ssl_encryption_level_t level = SSL_quic_read_level(ssl);
350 chunk_appendf(&trace_buf, " el=%c",
351 quic_enc_level_char(ssl_to_quic_enc_level(level)));
352 }
353 }
354
355 if (mask & (QUIC_EV_CONN_ELRXPKTS|QUIC_EV_CONN_PRSHPKT|QUIC_EV_CONN_SSLDATA)) {
356 const struct quic_rx_packet *pkt = a2;
357 const struct quic_rx_crypto_frm *cf = a3;
358 const SSL *ssl = a4;
359
360 if (pkt)
361 chunk_appendf(&trace_buf, " pkt@%p el=%c pn=%llu", pkt,
362 quic_packet_type_enc_level_char(pkt->type),
363 (unsigned long long)pkt->pn);
364 if (cf)
365 chunk_appendf(&trace_buf, " cfoff=%llu cflen=%llu",
366 (unsigned long long)cf->offset_node.key,
367 (unsigned long long)cf->len);
368 if (ssl) {
369 enum ssl_encryption_level_t level = SSL_quic_read_level(ssl);
Frédéric Lécaille57e6e9e2021-09-23 18:10:56 +0200370 chunk_appendf(&trace_buf, " rel=%c",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100371 quic_enc_level_char(ssl_to_quic_enc_level(level)));
372 }
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100373
374 if (qc->err_code)
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100375 chunk_appendf(&trace_buf, " err_code=0x%llx", (ull)qc->err_code);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100376 }
377
378 if (mask & (QUIC_EV_CONN_PRSFRM|QUIC_EV_CONN_BFRM)) {
379 const struct quic_frame *frm = a2;
380
381 if (frm)
382 chunk_appendf(&trace_buf, " %s", quic_frame_type_string(frm->type));
383 }
384
385 if (mask & QUIC_EV_CONN_PHPKTS) {
386 const struct quic_enc_level *qel = a2;
387
388 if (qel) {
Amaury Denoyelle4fd53d72021-12-21 14:28:26 +0100389 const struct quic_pktns *pktns = qc->pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100390 chunk_appendf(&trace_buf,
Frédéric Lécaille546186b2021-08-03 14:25:36 +0200391 " qel=%c state=%s ack?%d cwnd=%llu ppif=%lld pif=%llu if=%llu pp=%u pdg=%llu",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100392 quic_enc_level_char_from_qel(qel, qc),
Frédéric Lécaille546186b2021-08-03 14:25:36 +0200393 quic_hdshk_state_str(HA_ATOMIC_LOAD(&qc->state)),
Frédéric Lécaille25eeebe2021-12-16 11:21:52 +0100394 !!(HA_ATOMIC_LOAD(&qel->pktns->flags) & QUIC_FL_PKTNS_ACK_REQUIRED),
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100395 (unsigned long long)qc->path->cwnd,
396 (unsigned long long)qc->path->prep_in_flight,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100397 (unsigned long long)qc->path->in_flight,
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100398 (unsigned long long)pktns->tx.in_flight, pktns->tx.pto_probe,
399 (unsigned long long)qc->tx.nb_pto_dgrams);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100400 }
401 }
402
Frédéric Lécaillef63921f2020-12-18 09:48:20 +0100403 if (mask & QUIC_EV_CONN_ENCPKT) {
404 const struct enc_debug_info *edi = a2;
405
406 if (edi)
407 chunk_appendf(&trace_buf,
408 " payload=@%p payload_len=%llu"
409 " aad=@%p aad_len=%llu pn=%llu",
410 edi->payload, (unsigned long long)edi->payload_len,
411 edi->aad, (unsigned long long)edi->aad_len,
412 (unsigned long long)edi->pn);
413 }
414
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100415 if (mask & QUIC_EV_CONN_RMHP) {
416 const struct quic_rx_packet *pkt = a2;
417
418 if (pkt) {
419 const int *ret = a3;
420
421 chunk_appendf(&trace_buf, " pkt@%p", pkt);
422 if (ret && *ret)
423 chunk_appendf(&trace_buf, " pnl=%u pn=%llu",
424 pkt->pnl, (unsigned long long)pkt->pn);
425 }
426 }
427
428 if (mask & QUIC_EV_CONN_PRSAFRM) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +0200429 const struct quic_frame *frm = a2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100430 const unsigned long *val1 = a3;
431 const unsigned long *val2 = a4;
432
433 if (frm)
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100434 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100435 if (val1)
436 chunk_appendf(&trace_buf, " %lu", *val1);
437 if (val2)
438 chunk_appendf(&trace_buf, "..%lu", *val2);
439 }
440
441 if (mask & QUIC_EV_CONN_RTTUPDT) {
442 const unsigned int *rtt_sample = a2;
443 const unsigned int *ack_delay = a3;
444 const struct quic_loss *ql = a4;
445
446 if (rtt_sample)
447 chunk_appendf(&trace_buf, " rtt_sample=%ums", *rtt_sample);
448 if (ack_delay)
449 chunk_appendf(&trace_buf, " ack_delay=%ums", *ack_delay);
450 if (ql)
451 chunk_appendf(&trace_buf,
452 " srtt=%ums rttvar=%ums min_rtt=%ums",
453 ql->srtt >> 3, ql->rtt_var >> 2, ql->rtt_min);
454 }
455 if (mask & QUIC_EV_CONN_CC) {
456 const struct quic_cc_event *ev = a2;
457 const struct quic_cc *cc = a3;
458
459 if (a2)
460 quic_cc_event_trace(&trace_buf, ev);
461 if (a3)
462 quic_cc_state_trace(&trace_buf, cc);
463 }
464
465 if (mask & QUIC_EV_CONN_PKTLOSS) {
466 const struct quic_pktns *pktns = a2;
467 const struct list *lost_pkts = a3;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100468
469 if (pktns) {
470 chunk_appendf(&trace_buf, " pktns=%s",
471 pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
472 pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H");
473 if (pktns->tx.loss_time)
474 chunk_appendf(&trace_buf, " loss_time=%dms",
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100475 TICKS_TO_MS(tick_remain(now_ms, pktns->tx.loss_time)));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100476 }
477 if (lost_pkts && !LIST_ISEMPTY(lost_pkts)) {
478 struct quic_tx_packet *pkt;
479
480 chunk_appendf(&trace_buf, " lost_pkts:");
481 list_for_each_entry(pkt, lost_pkts, list)
482 chunk_appendf(&trace_buf, " %lu", (unsigned long)pkt->pn_node.key);
483 }
484 }
485
486 if (mask & (QUIC_EV_CONN_STIMER|QUIC_EV_CONN_PTIMER|QUIC_EV_CONN_SPTO)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100487 const struct quic_pktns *pktns = a2;
488 const int *duration = a3;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100489 const uint64_t *ifae_pkts = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100490
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100491 if (ifae_pkts)
492 chunk_appendf(&trace_buf, " ifae_pkts=%llu",
493 (unsigned long long)*ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100494 if (pktns) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100495 chunk_appendf(&trace_buf, " pktns=%s pp=%d",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100496 pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100497 pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H",
498 pktns->tx.pto_probe);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100499 if (mask & QUIC_EV_CONN_STIMER) {
500 if (pktns->tx.loss_time)
501 chunk_appendf(&trace_buf, " loss_time=%dms",
502 TICKS_TO_MS(pktns->tx.loss_time - now_ms));
503 }
504 if (mask & QUIC_EV_CONN_SPTO) {
505 if (pktns->tx.time_of_last_eliciting)
506 chunk_appendf(&trace_buf, " tole=%dms",
507 TICKS_TO_MS(pktns->tx.time_of_last_eliciting - now_ms));
508 if (duration)
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100509 chunk_appendf(&trace_buf, " dur=%dms", TICKS_TO_MS(*duration));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100510 }
511 }
512
513 if (!(mask & QUIC_EV_CONN_SPTO) && qc->timer_task) {
514 chunk_appendf(&trace_buf,
515 " expire=%dms", TICKS_TO_MS(qc->timer - now_ms));
516 }
517 }
518
519 if (mask & QUIC_EV_CONN_SPPKTS) {
520 const struct quic_tx_packet *pkt = a2;
521
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100522 chunk_appendf(&trace_buf, " cwnd=%llu ppif=%llu pif=%llu",
523 (unsigned long long)qc->path->cwnd,
524 (unsigned long long)qc->path->prep_in_flight,
525 (unsigned long long)qc->path->in_flight);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100526 if (pkt) {
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100527 chunk_appendf(&trace_buf, " pn=%lu(%s) iflen=%llu",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100528 (unsigned long)pkt->pn_node.key,
529 pkt->pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
530 pkt->pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H",
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100531 (unsigned long long)pkt->in_flight_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100532 }
533 }
Frédéric Lécaille47c433f2020-12-10 17:03:11 +0100534
535 if (mask & QUIC_EV_CONN_SSLALERT) {
536 const uint8_t *alert = a2;
537 const enum ssl_encryption_level_t *level = a3;
538
539 if (alert)
540 chunk_appendf(&trace_buf, " alert=0x%02x", *alert);
541 if (level)
542 chunk_appendf(&trace_buf, " el=%c",
543 quic_enc_level_char(ssl_to_quic_enc_level(*level)));
544 }
Frédéric Lécailleea604992020-12-24 13:01:37 +0100545
546 if (mask & QUIC_EV_CONN_BCFRMS) {
547 const size_t *sz1 = a2;
548 const size_t *sz2 = a3;
549 const size_t *sz3 = a4;
550
551 if (sz1)
552 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz1);
553 if (sz2)
554 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz2);
555 if (sz3)
556 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz3);
557 }
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100558
559 if (mask & QUIC_EV_CONN_PSTRM) {
560 const struct quic_frame *frm = a2;
Frédéric Lécaille577fe482021-01-11 15:10:06 +0100561
Frédéric Lécailled8b84432021-12-10 15:18:36 +0100562 if (frm)
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100563 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100564 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100565 }
566 if (mask & QUIC_EV_CONN_LPKT) {
567 const struct quic_rx_packet *pkt = a2;
Frédéric Lécaille865b0782021-09-23 07:33:20 +0200568 const uint64_t *len = a3;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100569
Frédéric Lécaille8678eb02021-12-16 18:03:52 +0100570 if (pkt) {
571 chunk_appendf(&trace_buf, " pkt@%p type=0x%02x %s",
572 pkt, pkt->type, qc_pkt_long(pkt) ? "long" : "short");
573 if (pkt->pn_node.key != (uint64_t)-1)
574 chunk_appendf(&trace_buf, " pn=%llu", pkt->pn_node.key);
575 }
576
Frédéric Lécaille865b0782021-09-23 07:33:20 +0200577 if (len)
578 chunk_appendf(&trace_buf, " len=%llu", (ull)*len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100579 }
580
581}
582
583/* Returns 1 if the peer has validated <qc> QUIC connection address, 0 if not. */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +0200584static inline int quic_peer_validated_addr(struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100585{
586 struct quic_conn *qc;
Frédéric Lécaille67f47d02021-08-19 15:19:09 +0200587 struct quic_pktns *hdshk_pktns, *app_pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100588
589 qc = ctx->conn->qc;
590 if (objt_server(qc->conn->target))
591 return 1;
592
Frédéric Lécaille67f47d02021-08-19 15:19:09 +0200593 hdshk_pktns = qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns;
594 app_pktns = qc->els[QUIC_TLS_ENC_LEVEL_APP].pktns;
595 if ((HA_ATOMIC_LOAD(&hdshk_pktns->flags) & QUIC_FL_PKTNS_ACK_RECEIVED) ||
596 (HA_ATOMIC_LOAD(&app_pktns->flags) & QUIC_FL_PKTNS_ACK_RECEIVED) ||
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +0200597 HA_ATOMIC_LOAD(&qc->state) >= QUIC_HS_ST_COMPLETE)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100598 return 1;
599
600 return 0;
601}
602
603/* Set the timer attached to the QUIC connection with <ctx> as I/O handler and used for
604 * both loss detection and PTO and schedule the task assiated to this timer if needed.
605 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +0200606static inline void qc_set_timer(struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100607{
608 struct quic_conn *qc;
609 struct quic_pktns *pktns;
610 unsigned int pto;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +0200611 int handshake_complete;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100612
Amaury Denoyellec15dd922021-12-21 11:41:52 +0100613 qc = ctx->qc;
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100614 TRACE_ENTER(QUIC_EV_CONN_STIMER, qc,
615 NULL, NULL, &ctx->conn->qc->path->ifae_pkts);
616
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100617 pktns = quic_loss_pktns(qc);
618 if (tick_isset(pktns->tx.loss_time)) {
619 qc->timer = pktns->tx.loss_time;
620 goto out;
621 }
622
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +0100623 /* anti-amplification: the timer must be
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100624 * cancelled for a server which reached the anti-amplification limit.
625 */
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +0100626 if (qc->flags & QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100627 TRACE_PROTO("anti-amplification reached", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +0100628 qc->timer = TICK_ETERNITY;
629 goto out;
630 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100631
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100632 if (!qc->path->ifae_pkts && quic_peer_validated_addr(ctx)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100633 TRACE_PROTO("timer cancellation", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100634 /* Timer cancellation. */
635 qc->timer = TICK_ETERNITY;
636 goto out;
637 }
638
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +0200639 handshake_complete = HA_ATOMIC_LOAD(&qc->state) >= QUIC_HS_ST_COMPLETE;
640 pktns = quic_pto_pktns(qc, handshake_complete, &pto);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100641 if (tick_isset(pto))
642 qc->timer = pto;
643 out:
Amaury Denoyelle336f6fd2021-10-05 14:42:25 +0200644 if (qc->timer != TICK_ETERNITY)
645 task_schedule(qc->timer_task, qc->timer);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100646 TRACE_LEAVE(QUIC_EV_CONN_STIMER, qc, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100647}
648
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100649/* Derive new keys and ivs required for Key Update feature for <qc> QUIC
650 * connection.
651 * Return 1 if succeeded, 0 if not.
652 */
653static int quic_tls_key_update(struct quic_conn *qc)
654{
655 struct quic_tls_ctx *tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
656 struct quic_tls_secrets *rx, *tx;
657 struct quic_tls_kp *nxt_rx = &qc->ku.nxt_rx;
658 struct quic_tls_kp *nxt_tx = &qc->ku.nxt_tx;
659
660 tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
661 rx = &tls_ctx->rx;
662 tx = &tls_ctx->tx;
663 nxt_rx = &qc->ku.nxt_rx;
664 nxt_tx = &qc->ku.nxt_tx;
665
666 /* Prepare new RX secrets */
667 if (!quic_tls_sec_update(rx->md, nxt_rx->secret, nxt_rx->secretlen,
668 rx->secret, rx->secretlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100669 TRACE_DEVEL("New RX secret update failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100670 return 0;
671 }
672
673 if (!quic_tls_derive_keys(rx->aead, NULL, rx->md,
674 nxt_rx->key, nxt_rx->keylen,
675 nxt_rx->iv, nxt_rx->ivlen, NULL, 0,
676 nxt_rx->secret, nxt_rx->secretlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100677 TRACE_DEVEL("New RX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100678 return 0;
679 }
680
681 /* Prepare new TX secrets */
682 if (!quic_tls_sec_update(tx->md, nxt_tx->secret, nxt_tx->secretlen,
683 tx->secret, tx->secretlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100684 TRACE_DEVEL("New TX secret update failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100685 return 0;
686 }
687
688 if (!quic_tls_derive_keys(tx->aead, NULL, tx->md,
689 nxt_tx->key, nxt_tx->keylen,
690 nxt_tx->iv, nxt_tx->ivlen, NULL, 0,
691 nxt_tx->secret, nxt_tx->secretlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100692 TRACE_DEVEL("New TX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100693 return 0;
694 }
695
696 return 1;
697}
698
699/* Rotate the Key Update information for <qc> QUIC connection.
700 * Must be used after having updated them.
701 * Always succeeds.
702 */
703static void quic_tls_rotate_keys(struct quic_conn *qc)
704{
705 struct quic_tls_ctx *tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
706 unsigned char *curr_secret, *curr_iv, *curr_key;
707
708 /* Rotate the RX secrets */
709 curr_secret = tls_ctx->rx.secret;
710 curr_iv = tls_ctx->rx.iv;
711 curr_key = tls_ctx->rx.key;
712
713 tls_ctx->rx.secret = qc->ku.nxt_rx.secret;
714 tls_ctx->rx.iv = qc->ku.nxt_rx.iv;
715 tls_ctx->rx.key = qc->ku.nxt_rx.key;
716
717 qc->ku.nxt_rx.secret = qc->ku.prv_rx.secret;
718 qc->ku.nxt_rx.iv = qc->ku.prv_rx.iv;
719 qc->ku.nxt_rx.key = qc->ku.prv_rx.key;
720
721 qc->ku.prv_rx.secret = curr_secret;
722 qc->ku.prv_rx.iv = curr_iv;
723 qc->ku.prv_rx.key = curr_key;
724 qc->ku.prv_rx.pn = tls_ctx->rx.pn;
725
726 /* Update the TX secrets */
727 curr_secret = tls_ctx->tx.secret;
728 curr_iv = tls_ctx->tx.iv;
729 curr_key = tls_ctx->tx.key;
730
731 tls_ctx->tx.secret = qc->ku.nxt_tx.secret;
732 tls_ctx->tx.iv = qc->ku.nxt_tx.iv;
733 tls_ctx->tx.key = qc->ku.nxt_tx.key;
734
735 qc->ku.nxt_tx.secret = curr_secret;
736 qc->ku.nxt_tx.iv = curr_iv;
737 qc->ku.nxt_tx.key = curr_key;
738}
739
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100740#ifndef OPENSSL_IS_BORINGSSL
741int ha_quic_set_encryption_secrets(SSL *ssl, enum ssl_encryption_level_t level,
742 const uint8_t *read_secret,
743 const uint8_t *write_secret, size_t secret_len)
744{
745 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
746 struct quic_tls_ctx *tls_ctx =
747 &conn->qc->els[ssl_to_quic_enc_level(level)].tls_ctx;
748 const SSL_CIPHER *cipher = SSL_get_current_cipher(ssl);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100749 struct quic_tls_secrets *rx, *tx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100750
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100751 TRACE_ENTER(QUIC_EV_CONN_RWSEC, conn->qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100752 BUG_ON(secret_len > QUIC_TLS_SECRET_LEN);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100753 if (HA_ATOMIC_LOAD(&conn->qc->flags) & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100754 TRACE_PROTO("CC required", QUIC_EV_CONN_RWSEC, conn->qc);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100755 goto out;
756 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100757
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100758 if (!quic_tls_ctx_keys_alloc(tls_ctx)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100759 TRACE_DEVEL("keys allocation failed", QUIC_EV_CONN_RWSEC, conn->qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100760 goto err;
761 }
762
763 rx = &tls_ctx->rx;
764 tx = &tls_ctx->tx;
765
766 rx->aead = tx->aead = tls_aead(cipher);
767 rx->md = tx->md = tls_md(cipher);
768 rx->hp = tx->hp = tls_hp(cipher);
769
770 if (!quic_tls_derive_keys(rx->aead, rx->hp, rx->md, rx->key, rx->keylen,
771 rx->iv, rx->ivlen, rx->hp_key, sizeof rx->hp_key,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100772 read_secret, secret_len)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100773 TRACE_DEVEL("RX key derivation failed", QUIC_EV_CONN_RWSEC, conn->qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100774 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100775 }
776
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100777 rx->flags |= QUIC_FL_TLS_SECRETS_SET;
Frédéric Lécaille4015cbb2021-12-14 19:29:34 +0100778
779 if (!write_secret)
780 goto tp;
781
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100782 if (!quic_tls_derive_keys(tx->aead, tx->hp, tx->md, tx->key, tx->keylen,
783 tx->iv, tx->ivlen, tx->hp_key, sizeof tx->hp_key,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100784 write_secret, secret_len)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100785 TRACE_DEVEL("TX key derivation failed", QUIC_EV_CONN_RWSEC, conn->qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100786 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100787 }
788
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100789 tx->flags |= QUIC_FL_TLS_SECRETS_SET;
Frédéric Lécaille4015cbb2021-12-14 19:29:34 +0100790 tp:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100791 if (objt_server(conn->target) && level == ssl_encryption_application) {
792 const unsigned char *buf;
793 size_t buflen;
794
795 SSL_get_peer_quic_transport_params(ssl, &buf, &buflen);
796 if (!buflen)
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100797 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100798
799 if (!quic_transport_params_store(conn->qc, 1, buf, buf + buflen))
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100800 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100801 }
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100802
803 if (level == ssl_encryption_application) {
804 struct quic_conn *qc = conn->qc;
805 struct quic_tls_kp *prv_rx = &qc->ku.prv_rx;
806 struct quic_tls_kp *nxt_rx = &qc->ku.nxt_rx;
807 struct quic_tls_kp *nxt_tx = &qc->ku.nxt_tx;
808
809 if (!(rx->secret = pool_alloc(pool_head_quic_tls_secret)) ||
810 !(tx->secret = pool_alloc(pool_head_quic_tls_secret))) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100811 TRACE_DEVEL("Could not allocate secrete keys", QUIC_EV_CONN_RWSEC, conn->qc);
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100812 goto err;
813 }
814
815 memcpy(rx->secret, read_secret, secret_len);
816 rx->secretlen = secret_len;
817 memcpy(tx->secret, write_secret, secret_len);
818 tx->secretlen = secret_len;
819 /* Initialize all the secret keys lengths */
820 prv_rx->secretlen = nxt_rx->secretlen = nxt_tx->secretlen = secret_len;
821 /* Prepare the next key update */
822 if (!quic_tls_key_update(qc))
823 goto err;
824 }
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100825 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100826 TRACE_LEAVE(QUIC_EV_CONN_RWSEC, conn->qc, &level);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100827 return 1;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100828
829 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100830 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RWSEC, conn->qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100831 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100832}
833#else
834/* ->set_read_secret callback to derive the RX secrets at <level> encryption
835 * level.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +0500836 * Returns 1 if succeeded, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100837 */
838int ha_set_rsec(SSL *ssl, enum ssl_encryption_level_t level,
839 const SSL_CIPHER *cipher,
840 const uint8_t *secret, size_t secret_len)
841{
842 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
843 struct quic_tls_ctx *tls_ctx =
844 &conn->qc->els[ssl_to_quic_enc_level(level)].tls_ctx;
845
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100846 TRACE_ENTER(QUIC_EV_CONN_RSEC, conn->qc);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100847 if (HA_ATOMIC_LOAD(&conn->qc->flags) & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100848 TRACE_PROTO("CC required", QUIC_EV_CONN_RSEC, conn->qc);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100849 goto out;
850 }
851
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100852 tls_ctx->rx.aead = tls_aead(cipher);
853 tls_ctx->rx.md = tls_md(cipher);
854 tls_ctx->rx.hp = tls_hp(cipher);
855
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100856 if (!(ctx->rx.key = pool_alloc(pool_head_quic_tls_key)))
857 goto err;
858
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100859 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 +0100860 tls_ctx->rx.key, tls_ctx->rx.keylen,
861 tls_ctx->rx.iv, tls_ctx->rx.ivlen,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100862 tls_ctx->rx.hp_key, sizeof tls_ctx->rx.hp_key,
863 secret, secret_len)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100864 TRACE_DEVEL("RX key derivation failed", QUIC_EV_CONN_RSEC, conn->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100865 goto err;
866 }
867
868 if (objt_server(conn->target) && level == ssl_encryption_application) {
869 const unsigned char *buf;
870 size_t buflen;
871
872 SSL_get_peer_quic_transport_params(ssl, &buf, &buflen);
873 if (!buflen)
874 goto err;
875
876 if (!quic_transport_params_store(conn->qc, 1, buf, buf + buflen))
877 goto err;
878 }
879
880 tls_ctx->rx.flags |= QUIC_FL_TLS_SECRETS_SET;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100881 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100882 TRACE_LEAVE(QUIC_EV_CONN_RSEC, conn->qc, &level, secret, &secret_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100883
884 return 1;
885
886 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100887 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RSEC, conn->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100888 return 0;
889}
890
891/* ->set_write_secret callback to derive the TX secrets at <level>
892 * encryption level.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +0500893 * Returns 1 if succeeded, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100894 */
895int ha_set_wsec(SSL *ssl, enum ssl_encryption_level_t level,
896 const SSL_CIPHER *cipher,
897 const uint8_t *secret, size_t secret_len)
898{
899 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
900 struct quic_tls_ctx *tls_ctx =
901 &conn->qc->els[ssl_to_quic_enc_level(level)].tls_ctx;
902
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100903 TRACE_ENTER(QUIC_EV_CONN_WSEC, conn->qc);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100904 if (HA_ATOMIC_LOAD(&conn->qc->flags) & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100905 TRACE_PROTO("CC required", QUIC_EV_CONN_WSEC, conn->qc);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100906 goto out;
907 }
908
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100909 if (!(ctx->tx.key = pool_alloc(pool_head_quic_tls_key)))
910 goto err;
911
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100912 tls_ctx->tx.aead = tls_aead(cipher);
913 tls_ctx->tx.md = tls_md(cipher);
914 tls_ctx->tx.hp = tls_hp(cipher);
915
916 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 +0100917 tls_ctx->tx.key, tls_ctx->tx.keylen,
918 tls_ctx->tx.iv, tls_ctx->tx.ivlen,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100919 tls_ctx->tx.hp_key, sizeof tls_ctx->tx.hp_key,
920 secret, secret_len)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100921 TRACE_DEVEL("TX key derivation failed", QUIC_EV_CONN_WSEC, conn->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100922 goto err;
923 }
924
925 tls_ctx->tx.flags |= QUIC_FL_TLS_SECRETS_SET;
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100926 TRACE_LEAVE(QUIC_EV_CONN_WSEC, conn->qc, &level, secret, &secret_len);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100927 out:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100928 return 1;
929
930 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100931 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_WSEC, conn->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100932 return 0;
933}
934#endif
935
936/* This function copies the CRYPTO data provided by the TLS stack found at <data>
937 * with <len> as size in CRYPTO buffers dedicated to store the information about
938 * outgoing CRYPTO frames so that to be able to replay the CRYPTO data streams.
939 * It fails only if it could not managed to allocate enough CRYPTO buffers to
940 * store all the data.
941 * Note that CRYPTO data may exist at any encryption level except at 0-RTT.
942 */
943static int quic_crypto_data_cpy(struct quic_enc_level *qel,
944 const unsigned char *data, size_t len)
945{
946 struct quic_crypto_buf **qcb;
947 /* The remaining byte to store in CRYPTO buffers. */
948 size_t cf_offset, cf_len, *nb_buf;
949 unsigned char *pos;
950
951 nb_buf = &qel->tx.crypto.nb_buf;
952 qcb = &qel->tx.crypto.bufs[*nb_buf - 1];
953 cf_offset = (*nb_buf - 1) * QUIC_CRYPTO_BUF_SZ + (*qcb)->sz;
954 cf_len = len;
955
956 while (len) {
957 size_t to_copy, room;
958
959 pos = (*qcb)->data + (*qcb)->sz;
960 room = QUIC_CRYPTO_BUF_SZ - (*qcb)->sz;
961 to_copy = len > room ? room : len;
962 if (to_copy) {
963 memcpy(pos, data, to_copy);
964 /* Increment the total size of this CRYPTO buffers by <to_copy>. */
965 qel->tx.crypto.sz += to_copy;
966 (*qcb)->sz += to_copy;
967 pos += to_copy;
968 len -= to_copy;
969 data += to_copy;
970 }
971 else {
972 struct quic_crypto_buf **tmp;
973
974 tmp = realloc(qel->tx.crypto.bufs,
975 (*nb_buf + 1) * sizeof *qel->tx.crypto.bufs);
976 if (tmp) {
977 qel->tx.crypto.bufs = tmp;
978 qcb = &qel->tx.crypto.bufs[*nb_buf];
979 *qcb = pool_alloc(pool_head_quic_crypto_buf);
980 if (!*qcb)
981 return 0;
982
983 (*qcb)->sz = 0;
984 ++*nb_buf;
985 }
986 else {
987 break;
988 }
989 }
990 }
991
992 /* Allocate a TX CRYPTO frame only if all the CRYPTO data
993 * have been buffered.
994 */
995 if (!len) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +0200996 struct quic_frame *frm;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100997
Frédéric Lécaille0ad04582021-07-27 14:51:54 +0200998 frm = pool_alloc(pool_head_quic_frame);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100999 if (!frm)
1000 return 0;
1001
1002 frm->type = QUIC_FT_CRYPTO;
1003 frm->crypto.offset = cf_offset;
1004 frm->crypto.len = cf_len;
Frédéric Lécaillef252adb2021-08-03 17:01:25 +02001005 frm->crypto.qel = qel;
Frédéric Lécaillec88df072021-07-27 11:43:11 +02001006 MT_LIST_APPEND(&qel->pktns->tx.frms, &frm->mt_list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001007 }
1008
1009 return len == 0;
1010}
1011
1012
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01001013/* Set <alert> TLS alert as QUIC CRYPTO_ERROR error */
1014void quic_set_tls_alert(struct quic_conn *qc, int alert)
1015{
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01001016 HA_ATOMIC_STORE(&qc->err_code, QC_ERR_CRYPTO_ERROR | alert);
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01001017 HA_ATOMIC_OR(&qc->flags, QUIC_FL_CONN_IMMEDIATE_CLOSE);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001018 TRACE_PROTO("Alert set", QUIC_EV_CONN_SSLDATA, qc);
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01001019}
1020
Frédéric Lécailleb0bd62d2021-12-14 19:34:08 +01001021/* Set the application for <qc> QUIC connection.
1022 * Return 1 if succeeded, 0 if not.
1023 */
1024int quic_set_app_ops(struct quic_conn *qc, const unsigned char *alpn, size_t alpn_len)
1025{
1026 const struct qcc_app_ops *app_ops;
1027
1028 if (alpn_len >= 2 && memcmp(alpn, "h3", 2) == 0) {
1029 app_ops = qc->qcc->app_ops = &h3_ops;
1030 }
1031 else if (alpn_len >= 10 && memcmp(alpn, "hq-interop", 10) == 0) {
1032 app_ops = qc->qcc->app_ops = &hq_interop_ops;
1033 }
1034 else
1035 return 0;
1036
1037 if (app_ops->init && !app_ops->init(qc->qcc))
1038 return 0;
1039
1040 if (app_ops->finalize)
1041 app_ops->finalize(qc->qcc->ctx);
1042
1043 return 1;
1044}
1045
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001046/* ->add_handshake_data QUIC TLS callback used by the QUIC TLS stack when it
1047 * wants to provide the QUIC layer with CRYPTO data.
1048 * Returns 1 if succeeded, 0 if not.
1049 */
1050int ha_quic_add_handshake_data(SSL *ssl, enum ssl_encryption_level_t level,
1051 const uint8_t *data, size_t len)
1052{
1053 struct connection *conn;
1054 enum quic_tls_enc_level tel;
1055 struct quic_enc_level *qel;
1056
1057 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001058 TRACE_ENTER(QUIC_EV_CONN_ADDDATA, conn->qc);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01001059 if (HA_ATOMIC_LOAD(&conn->qc->flags) & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001060 TRACE_PROTO("CC required", QUIC_EV_CONN_ADDDATA, conn->qc);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01001061 goto out;
1062 }
1063
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001064 tel = ssl_to_quic_enc_level(level);
1065 qel = &conn->qc->els[tel];
1066
1067 if (tel == -1) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001068 TRACE_PROTO("Wrong encryption level", QUIC_EV_CONN_ADDDATA, conn->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001069 goto err;
1070 }
1071
1072 if (!quic_crypto_data_cpy(qel, data, len)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001073 TRACE_PROTO("Could not bufferize", QUIC_EV_CONN_ADDDATA, conn->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001074 goto err;
1075 }
1076
1077 TRACE_PROTO("CRYPTO data buffered", QUIC_EV_CONN_ADDDATA,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001078 conn->qc, &level, &len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001079
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01001080 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001081 TRACE_LEAVE(QUIC_EV_CONN_ADDDATA, conn->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001082 return 1;
1083
1084 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001085 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ADDDATA, conn->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001086 return 0;
1087}
1088
1089int ha_quic_flush_flight(SSL *ssl)
1090{
1091 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
1092
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001093 TRACE_ENTER(QUIC_EV_CONN_FFLIGHT, conn->qc);
1094 TRACE_LEAVE(QUIC_EV_CONN_FFLIGHT, conn->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001095
1096 return 1;
1097}
1098
1099int ha_quic_send_alert(SSL *ssl, enum ssl_encryption_level_t level, uint8_t alert)
1100{
1101 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
1102
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001103 TRACE_DEVEL("SSL alert", QUIC_EV_CONN_SSLALERT, conn->qc, &alert, &level);
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01001104 quic_set_tls_alert(conn->qc, alert);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01001105 HA_ATOMIC_STORE(&conn->qc->flags, QUIC_FL_CONN_IMMEDIATE_CLOSE);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001106 return 1;
1107}
1108
1109/* QUIC TLS methods */
1110static SSL_QUIC_METHOD ha_quic_method = {
1111#ifdef OPENSSL_IS_BORINGSSL
1112 .set_read_secret = ha_set_rsec,
1113 .set_write_secret = ha_set_wsec,
1114#else
1115 .set_encryption_secrets = ha_quic_set_encryption_secrets,
1116#endif
1117 .add_handshake_data = ha_quic_add_handshake_data,
1118 .flush_flight = ha_quic_flush_flight,
1119 .send_alert = ha_quic_send_alert,
1120};
1121
1122/* Initialize the TLS context of a listener with <bind_conf> as configuration.
1123 * Returns an error count.
1124 */
1125int ssl_quic_initial_ctx(struct bind_conf *bind_conf)
1126{
1127 struct proxy *curproxy = bind_conf->frontend;
1128 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
1129 int cfgerr = 0;
1130
1131#if 0
1132 /* XXX Did not manage to use this. */
1133 const char *ciphers =
1134 "TLS_AES_128_GCM_SHA256:"
1135 "TLS_AES_256_GCM_SHA384:"
1136 "TLS_CHACHA20_POLY1305_SHA256:"
1137 "TLS_AES_128_CCM_SHA256";
1138#endif
Frédéric Lécaille4b1fddc2021-07-01 17:09:05 +02001139 const char *groups = "X25519:P-256:P-384:P-521";
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001140 long options =
1141 (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) |
1142 SSL_OP_SINGLE_ECDH_USE |
1143 SSL_OP_CIPHER_SERVER_PREFERENCE;
1144 SSL_CTX *ctx;
1145
1146 ctx = SSL_CTX_new(TLS_server_method());
1147 bind_conf->initial_ctx = ctx;
1148
1149 SSL_CTX_set_options(ctx, options);
1150#if 0
1151 if (SSL_CTX_set_cipher_list(ctx, ciphers) != 1) {
1152 ha_alert("Proxy '%s': unable to set TLS 1.3 cipher list to '%s' "
1153 "for bind '%s' at [%s:%d].\n",
1154 curproxy->id, ciphers,
1155 bind_conf->arg, bind_conf->file, bind_conf->line);
1156 cfgerr++;
1157 }
1158#endif
1159
1160 if (SSL_CTX_set1_curves_list(ctx, groups) != 1) {
1161 ha_alert("Proxy '%s': unable to set TLS 1.3 curves list to '%s' "
1162 "for bind '%s' at [%s:%d].\n",
1163 curproxy->id, groups,
1164 bind_conf->arg, bind_conf->file, bind_conf->line);
1165 cfgerr++;
1166 }
1167
1168 SSL_CTX_set_mode(ctx, SSL_MODE_RELEASE_BUFFERS);
1169 SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
1170 SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION);
1171 SSL_CTX_set_default_verify_paths(ctx);
1172
1173#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1174#ifdef OPENSSL_IS_BORINGSSL
1175 SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk);
1176 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
1177#elif (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
1178 if (bind_conf->ssl_conf.early_data) {
1179 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
Frédéric Lécaillead3c07a2021-12-14 19:23:43 +01001180 SSL_CTX_set_max_early_data(ctx, 0xffffffff);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001181 }
1182 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
1183 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
1184#else
1185 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
1186#endif
1187 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
1188#endif
1189 SSL_CTX_set_quic_method(ctx, &ha_quic_method);
1190
1191 return cfgerr;
1192}
1193
1194/* Decode an expected packet number from <truncated_on> its truncated value,
1195 * depending on <largest_pn> the largest received packet number, and <pn_nbits>
1196 * the number of bits used to encode this packet number (its length in bytes * 8).
1197 * See https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#packet-encoding
1198 */
1199static uint64_t decode_packet_number(uint64_t largest_pn,
1200 uint32_t truncated_pn, unsigned int pn_nbits)
1201{
1202 uint64_t expected_pn = largest_pn + 1;
1203 uint64_t pn_win = (uint64_t)1 << pn_nbits;
1204 uint64_t pn_hwin = pn_win / 2;
1205 uint64_t pn_mask = pn_win - 1;
1206 uint64_t candidate_pn;
1207
1208
1209 candidate_pn = (expected_pn & ~pn_mask) | truncated_pn;
1210 /* Note that <pn_win> > <pn_hwin>. */
1211 if (candidate_pn < QUIC_MAX_PACKET_NUM - pn_win &&
1212 candidate_pn + pn_hwin <= expected_pn)
1213 return candidate_pn + pn_win;
1214
1215 if (candidate_pn > expected_pn + pn_hwin && candidate_pn >= pn_win)
1216 return candidate_pn - pn_win;
1217
1218 return candidate_pn;
1219}
1220
1221/* Remove the header protection of <pkt> QUIC packet using <tls_ctx> as QUIC TLS
1222 * cryptographic context.
1223 * <largest_pn> is the largest received packet number and <pn> the address of
1224 * the packet number field for this packet with <byte0> address of its first byte.
1225 * <end> points to one byte past the end of this packet.
1226 * Returns 1 if succeeded, 0 if not.
1227 */
1228static int qc_do_rm_hp(struct quic_rx_packet *pkt, struct quic_tls_ctx *tls_ctx,
1229 int64_t largest_pn, unsigned char *pn,
1230 unsigned char *byte0, const unsigned char *end,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001231 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001232{
1233 int ret, outlen, i, pnlen;
1234 uint64_t packet_number;
1235 uint32_t truncated_pn = 0;
1236 unsigned char mask[5] = {0};
1237 unsigned char *sample;
1238 EVP_CIPHER_CTX *cctx;
1239 unsigned char *hp_key;
1240
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001241 /* Check there is enough data in this packet. */
1242 if (end - pn < QUIC_PACKET_PN_MAXLEN + sizeof mask) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001243 TRACE_DEVEL("too short packet", QUIC_EV_CONN_RMHP, ctx->qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001244 return 0;
1245 }
1246
1247 cctx = EVP_CIPHER_CTX_new();
1248 if (!cctx) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001249 TRACE_DEVEL("memory allocation failed", QUIC_EV_CONN_RMHP, ctx->qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001250 return 0;
1251 }
1252
1253 ret = 0;
1254 sample = pn + QUIC_PACKET_PN_MAXLEN;
1255
1256 hp_key = tls_ctx->rx.hp_key;
1257 if (!EVP_DecryptInit_ex(cctx, tls_ctx->rx.hp, NULL, hp_key, sample) ||
1258 !EVP_DecryptUpdate(cctx, mask, &outlen, mask, sizeof mask) ||
1259 !EVP_DecryptFinal_ex(cctx, mask, &outlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001260 TRACE_DEVEL("decryption failed", QUIC_EV_CONN_RMHP, ctx->qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001261 goto out;
1262 }
1263
1264 *byte0 ^= mask[0] & (*byte0 & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f);
1265 pnlen = (*byte0 & QUIC_PACKET_PNL_BITMASK) + 1;
1266 for (i = 0; i < pnlen; i++) {
1267 pn[i] ^= mask[i + 1];
1268 truncated_pn = (truncated_pn << 8) | pn[i];
1269 }
1270
1271 packet_number = decode_packet_number(largest_pn, truncated_pn, pnlen * 8);
1272 /* Store remaining information for this unprotected header */
1273 pkt->pn = packet_number;
1274 pkt->pnl = pnlen;
1275
1276 ret = 1;
1277
1278 out:
1279 EVP_CIPHER_CTX_free(cctx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001280
1281 return ret;
1282}
1283
1284/* Encrypt the payload of a QUIC packet with <pn> as number found at <payload>
1285 * address, with <payload_len> as payload length, <aad> as address of
1286 * the ADD and <aad_len> as AAD length depending on the <tls_ctx> QUIC TLS
1287 * context.
1288 * Returns 1 if succeeded, 0 if not.
1289 */
1290static int quic_packet_encrypt(unsigned char *payload, size_t payload_len,
1291 unsigned char *aad, size_t aad_len, uint64_t pn,
1292 struct quic_tls_ctx *tls_ctx, struct connection *conn)
1293{
1294 unsigned char iv[12];
1295 unsigned char *tx_iv = tls_ctx->tx.iv;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +01001296 size_t tx_iv_sz = tls_ctx->tx.ivlen;
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001297 struct enc_debug_info edi;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001298
1299 if (!quic_aead_iv_build(iv, sizeof iv, tx_iv, tx_iv_sz, pn)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001300 TRACE_DEVEL("AEAD IV building for encryption failed", QUIC_EV_CONN_HPKT, conn->qc);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001301 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001302 }
1303
1304 if (!quic_tls_encrypt(payload, payload_len, aad, aad_len,
1305 tls_ctx->tx.aead, tls_ctx->tx.key, iv)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001306 TRACE_DEVEL("QUIC packet encryption failed", QUIC_EV_CONN_HPKT, conn->qc);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001307 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001308 }
1309
1310 return 1;
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001311
1312 err:
1313 enc_debug_info_init(&edi, payload, payload_len, aad, aad_len, pn);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001314 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ENCPKT, conn->qc, &edi);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001315 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001316}
1317
1318/* Decrypt <pkt> QUIC packet with <tls_ctx> as QUIC TLS cryptographic context.
1319 * Returns 1 if succeeded, 0 if not.
1320 */
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001321static int qc_pkt_decrypt(struct quic_rx_packet *pkt, struct quic_enc_level *qel)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001322{
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001323 int ret, kp_changed;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001324 unsigned char iv[12];
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001325 struct quic_tls_ctx *tls_ctx = &qel->tls_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001326 unsigned char *rx_iv = tls_ctx->rx.iv;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001327 size_t rx_iv_sz = tls_ctx->rx.ivlen;
1328 unsigned char *rx_key = tls_ctx->rx.key;
1329
1330 kp_changed = 0;
1331 if (pkt->type == QUIC_PACKET_TYPE_SHORT) {
1332 /* The two tested bits are not at the same position,
1333 * this is why they are first both inversed.
1334 */
1335 if (!(*pkt->data & QUIC_PACKET_KEY_PHASE_BIT) ^ !(tls_ctx->flags & QUIC_FL_TLS_KP_BIT_SET)) {
1336 if (pkt->pn < tls_ctx->rx.pn) {
1337 /* The lowest packet number of a previous key phase
1338 * cannot be null if it really stores previous key phase
1339 * secrets.
1340 */
1341 if (!pkt->qc->ku.prv_rx.pn)
1342 return 0;
1343
1344 rx_iv = pkt->qc->ku.prv_rx.iv;
1345 rx_key = pkt->qc->ku.prv_rx.key;
1346 }
1347 else if (pkt->pn > qel->pktns->rx.largest_pn) {
1348 /* Next key phase */
1349 kp_changed = 1;
1350 rx_iv = pkt->qc->ku.nxt_rx.iv;
1351 rx_key = pkt->qc->ku.nxt_rx.key;
1352 }
1353 }
1354 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001355
1356 if (!quic_aead_iv_build(iv, sizeof iv, rx_iv, rx_iv_sz, pkt->pn))
1357 return 0;
1358
1359 ret = quic_tls_decrypt(pkt->data + pkt->aad_len, pkt->len - pkt->aad_len,
1360 pkt->data, pkt->aad_len,
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001361 tls_ctx->rx.aead, rx_key, iv);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001362 if (!ret)
1363 return 0;
1364
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001365 /* Update the keys only if the packet decryption succeeded. */
1366 if (kp_changed) {
1367 quic_tls_rotate_keys(pkt->qc);
1368 /* Toggle the Key Phase bit */
1369 tls_ctx->flags ^= QUIC_FL_TLS_KP_BIT_SET;
1370 /* Store the lowest packet number received for the current key phase */
1371 tls_ctx->rx.pn = pkt->pn;
1372 /* Prepare the next key update */
1373 if (!quic_tls_key_update(pkt->qc))
1374 return 0;
1375 }
1376
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001377 /* Update the packet length (required to parse the frames). */
1378 pkt->len = pkt->aad_len + ret;
1379
1380 return 1;
1381}
1382
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001383/* Remove from <qcs> stream the acknowledged frames.
1384 * Never fails.
1385 */
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001386static int qcs_try_to_consume(struct qcs *qcs)
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001387{
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001388 int ret;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001389 struct eb64_node *frm_node;
1390
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001391 ret = 0;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001392 frm_node = eb64_first(&qcs->tx.acked_frms);
1393 while (frm_node) {
1394 struct quic_stream *strm;
1395
1396 strm = eb64_entry(&frm_node->node, struct quic_stream, offset);
1397 if (strm->offset.key != qcs->tx.ack_offset)
1398 break;
1399
1400 b_del(strm->buf, strm->len);
1401 qcs->tx.ack_offset += strm->len;
1402 frm_node = eb64_next(frm_node);
1403 eb64_delete(&strm->offset);
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001404 ret = 1;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001405 }
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001406
1407 return ret;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001408}
1409
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001410/* Treat <frm> frame whose packet it is attached to has just been acknowledged. */
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02001411static inline void qc_treat_acked_tx_frm(struct quic_frame *frm,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001412 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001413{
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001414 int stream_acked;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01001415 struct quic_conn *qc = ctx->qc;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001416
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001417 TRACE_PROTO("Removing frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001418 stream_acked = 0;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001419 switch (frm->type) {
1420 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
1421 {
1422 struct qcs *qcs = frm->stream.qcs;
1423 struct quic_stream *strm = &frm->stream;
1424
1425 if (qcs->tx.ack_offset == strm->offset.key) {
1426 b_del(strm->buf, strm->len);
1427 qcs->tx.ack_offset += strm->len;
1428 LIST_DELETE(&frm->list);
1429 pool_free(pool_head_quic_frame, frm);
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001430 stream_acked = 1;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001431 }
1432 else {
1433 eb64_insert(&qcs->tx.acked_frms, &strm->offset);
1434 }
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001435 stream_acked |= qcs_try_to_consume(qcs);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001436 }
1437 break;
1438 default:
1439 LIST_DELETE(&frm->list);
1440 pool_free(pool_head_quic_frame, frm);
1441 }
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001442
1443 if (stream_acked) {
1444 struct qcc *qcc = qc->qcc;
1445
1446 if (qcc->subs && qcc->subs->events & SUB_RETRY_SEND) {
1447 tasklet_wakeup(qcc->subs->tasklet);
1448 qcc->subs->events &= ~SUB_RETRY_SEND;
1449 if (!qcc->subs->events)
1450 qcc->subs = NULL;
1451 }
1452 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001453}
1454
1455/* Remove <largest> down to <smallest> node entries from <pkts> tree of TX packet,
1456 * deallocating them, and their TX frames.
1457 * Returns the last node reached to be used for the next range.
1458 * May be NULL if <largest> node could not be found.
1459 */
1460static inline struct eb64_node *qc_ackrng_pkts(struct eb_root *pkts, unsigned int *pkt_flags,
1461 struct list *newly_acked_pkts,
1462 struct eb64_node *largest_node,
1463 uint64_t largest, uint64_t smallest,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001464 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001465{
1466 struct eb64_node *node;
1467 struct quic_tx_packet *pkt;
1468
1469 if (largest_node)
1470 node = largest_node;
1471 else {
1472 node = eb64_lookup(pkts, largest);
1473 while (!node && largest > smallest) {
1474 node = eb64_lookup(pkts, --largest);
1475 }
1476 }
1477
1478 while (node && node->key >= smallest) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02001479 struct quic_frame *frm, *frmbak;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001480
1481 pkt = eb64_entry(&node->node, struct quic_tx_packet, pn_node);
1482 *pkt_flags |= pkt->flags;
Willy Tarreau2b718102021-04-21 07:32:39 +02001483 LIST_INSERT(newly_acked_pkts, &pkt->list);
Frédéric Lécaillee7ff2b22021-12-22 17:40:38 +01001484 TRACE_PROTO("Removing packet #", QUIC_EV_CONN_PRSAFRM, ctx->qc, NULL, &pkt->pn_node.key);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001485 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list)
1486 qc_treat_acked_tx_frm(frm, ctx);
1487 node = eb64_prev(node);
1488 eb64_delete(&pkt->pn_node);
1489 }
1490
1491 return node;
1492}
1493
1494/* Treat <frm> frame whose packet it is attached to has just been detected as non
1495 * acknowledged.
1496 */
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02001497static inline void qc_treat_nacked_tx_frm(struct quic_frame *frm,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001498 struct quic_pktns *pktns,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001499 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001500{
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001501 TRACE_PROTO("to resend frame", QUIC_EV_CONN_PRSAFRM, ctx->qc, frm);
Willy Tarreau2b718102021-04-21 07:32:39 +02001502 LIST_DELETE(&frm->list);
Frédéric Lécaillec88df072021-07-27 11:43:11 +02001503 MT_LIST_INSERT(&pktns->tx.frms, &frm->mt_list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001504}
1505
1506
1507/* Free the TX packets of <pkts> list */
1508static inline void free_quic_tx_pkts(struct list *pkts)
1509{
1510 struct quic_tx_packet *pkt, *tmp;
1511
1512 list_for_each_entry_safe(pkt, tmp, pkts, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001513 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001514 eb64_delete(&pkt->pn_node);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001515 quic_tx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001516 }
1517}
1518
1519/* Send a packet loss event nofification to the congestion controller
1520 * attached to <qc> connection with <lost_bytes> the number of lost bytes,
1521 * <oldest_lost>, <newest_lost> the oldest lost packet and newest lost packet
1522 * at <now_us> current time.
1523 * Always succeeds.
1524 */
1525static inline void qc_cc_loss_event(struct quic_conn *qc,
1526 unsigned int lost_bytes,
1527 unsigned int newest_time_sent,
1528 unsigned int period,
1529 unsigned int now_us)
1530{
1531 struct quic_cc_event ev = {
1532 .type = QUIC_CC_EVT_LOSS,
1533 .loss.now_ms = now_ms,
1534 .loss.max_ack_delay = qc->max_ack_delay,
1535 .loss.lost_bytes = lost_bytes,
1536 .loss.newest_time_sent = newest_time_sent,
1537 .loss.period = period,
1538 };
1539
1540 quic_cc_event(&qc->path->cc, &ev);
1541}
1542
1543/* Send a packet ack event nofication for each newly acked packet of
1544 * <newly_acked_pkts> list and free them.
1545 * Always succeeds.
1546 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001547static inline void qc_treat_newly_acked_pkts(struct ssl_sock_ctx *ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001548 struct list *newly_acked_pkts)
1549{
1550 struct quic_conn *qc = ctx->conn->qc;
1551 struct quic_tx_packet *pkt, *tmp;
1552 struct quic_cc_event ev = { .type = QUIC_CC_EVT_ACK, };
1553
1554 list_for_each_entry_safe(pkt, tmp, newly_acked_pkts, list) {
1555 pkt->pktns->tx.in_flight -= pkt->in_flight_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01001556 qc->path->prep_in_flight -= pkt->in_flight_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001557 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01001558 qc->path->ifae_pkts--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001559 ev.ack.acked = pkt->in_flight_len;
1560 ev.ack.time_sent = pkt->time_sent;
1561 quic_cc_event(&qc->path->cc, &ev);
Willy Tarreau2b718102021-04-21 07:32:39 +02001562 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001563 eb64_delete(&pkt->pn_node);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001564 quic_tx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001565 }
1566
1567}
1568
1569/* Handle <pkts> list of lost packets detected at <now_us> handling
1570 * their TX frames.
1571 * Send a packet loss event to the congestion controller if
1572 * in flight packet have been lost.
1573 * Also frees the packet in <pkts> list.
1574 * Never fails.
1575 */
1576static inline void qc_release_lost_pkts(struct quic_pktns *pktns,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001577 struct ssl_sock_ctx *ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001578 struct list *pkts,
1579 uint64_t now_us)
1580{
1581 struct quic_conn *qc = ctx->conn->qc;
1582 struct quic_tx_packet *pkt, *tmp, *oldest_lost, *newest_lost;
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02001583 struct quic_frame *frm, *frmbak;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001584 uint64_t lost_bytes;
1585
1586 lost_bytes = 0;
1587 oldest_lost = newest_lost = NULL;
1588 list_for_each_entry_safe(pkt, tmp, pkts, list) {
1589 lost_bytes += pkt->in_flight_len;
1590 pkt->pktns->tx.in_flight -= pkt->in_flight_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01001591 qc->path->prep_in_flight -= pkt->in_flight_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001592 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01001593 qc->path->ifae_pkts--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001594 /* Treat the frames of this lost packet. */
1595 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list)
1596 qc_treat_nacked_tx_frm(frm, pktns, ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02001597 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001598 if (!oldest_lost) {
1599 oldest_lost = newest_lost = pkt;
1600 }
1601 else {
1602 if (newest_lost != oldest_lost)
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001603 quic_tx_packet_refdec(newest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001604 newest_lost = pkt;
1605 }
1606 }
1607
1608 if (lost_bytes) {
1609 /* Sent a packet loss event to the congestion controller. */
1610 qc_cc_loss_event(ctx->conn->qc, lost_bytes, newest_lost->time_sent,
1611 newest_lost->time_sent - oldest_lost->time_sent, now_us);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001612 quic_tx_packet_refdec(oldest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001613 if (newest_lost != oldest_lost)
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001614 quic_tx_packet_refdec(newest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001615 }
1616}
1617
1618/* Look for packet loss from sent packets for <qel> encryption level of a
1619 * connection with <ctx> as I/O handler context. If remove is true, remove them from
1620 * their tree if deemed as lost or set the <loss_time> value the packet number
1621 * space if any not deemed lost.
1622 * Should be called after having received an ACK frame with newly acknowledged
1623 * packets or when the the loss detection timer has expired.
1624 * Always succeeds.
1625 */
1626static void qc_packet_loss_lookup(struct quic_pktns *pktns,
1627 struct quic_conn *qc,
1628 struct list *lost_pkts)
1629{
1630 struct eb_root *pkts;
1631 struct eb64_node *node;
1632 struct quic_loss *ql;
1633 unsigned int loss_delay;
1634
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001635 TRACE_ENTER(QUIC_EV_CONN_PKTLOSS, qc, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001636 pkts = &pktns->tx.pkts;
1637 pktns->tx.loss_time = TICK_ETERNITY;
1638 if (eb_is_empty(pkts))
1639 goto out;
1640
1641 ql = &qc->path->loss;
1642 loss_delay = QUIC_MAX(ql->latest_rtt, ql->srtt >> 3);
1643 loss_delay += loss_delay >> 3;
1644 loss_delay = QUIC_MAX(loss_delay, MS_TO_TICKS(QUIC_TIMER_GRANULARITY));
1645
1646 node = eb64_first(pkts);
1647 while (node) {
1648 struct quic_tx_packet *pkt;
1649 int64_t largest_acked_pn;
1650 unsigned int loss_time_limit, time_sent;
1651
1652 pkt = eb64_entry(&node->node, struct quic_tx_packet, pn_node);
Frédéric Lécaille59b07c72021-08-03 16:06:01 +02001653 largest_acked_pn = HA_ATOMIC_LOAD(&pktns->tx.largest_acked_pn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001654 node = eb64_next(node);
1655 if ((int64_t)pkt->pn_node.key > largest_acked_pn)
1656 break;
1657
1658 time_sent = pkt->time_sent;
1659 loss_time_limit = tick_add(time_sent, loss_delay);
1660 if (tick_is_le(time_sent, now_ms) ||
1661 (int64_t)largest_acked_pn >= pkt->pn_node.key + QUIC_LOSS_PACKET_THRESHOLD) {
1662 eb64_delete(&pkt->pn_node);
Willy Tarreau2b718102021-04-21 07:32:39 +02001663 LIST_APPEND(lost_pkts, &pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001664 }
1665 else {
1666 pktns->tx.loss_time = tick_first(pktns->tx.loss_time, loss_time_limit);
1667 }
1668 }
1669
1670 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001671 TRACE_LEAVE(QUIC_EV_CONN_PKTLOSS, qc, pktns, lost_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001672}
1673
1674/* Parse ACK frame into <frm> from a buffer at <buf> address with <end> being at
1675 * one byte past the end of this buffer. Also update <rtt_sample> if needed, i.e.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05001676 * 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 +01001677 * acked ack-eliciting packet.
1678 * Return 1, if succeeded, 0 if not.
1679 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001680static inline int qc_parse_ack_frm(struct quic_frame *frm, struct ssl_sock_ctx *ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001681 struct quic_enc_level *qel,
1682 unsigned int *rtt_sample,
1683 const unsigned char **pos, const unsigned char *end)
1684{
1685 struct quic_ack *ack = &frm->ack;
1686 uint64_t smallest, largest;
1687 struct eb_root *pkts;
1688 struct eb64_node *largest_node;
1689 unsigned int time_sent, pkt_flags;
1690 struct list newly_acked_pkts = LIST_HEAD_INIT(newly_acked_pkts);
1691 struct list lost_pkts = LIST_HEAD_INIT(lost_pkts);
1692
1693 if (ack->largest_ack > qel->pktns->tx.next_pn) {
1694 TRACE_DEVEL("ACK for not sent packet", QUIC_EV_CONN_PRSAFRM,
Frédéric Lécaillee7ff2b22021-12-22 17:40:38 +01001695 ctx->qc, NULL, &ack->largest_ack);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001696 goto err;
1697 }
1698
1699 if (ack->first_ack_range > ack->largest_ack) {
1700 TRACE_DEVEL("too big first ACK range", QUIC_EV_CONN_PRSAFRM,
Frédéric Lécaillee7ff2b22021-12-22 17:40:38 +01001701 ctx->qc, NULL, &ack->first_ack_range);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001702 goto err;
1703 }
1704
1705 largest = ack->largest_ack;
1706 smallest = largest - ack->first_ack_range;
1707 pkts = &qel->pktns->tx.pkts;
1708 pkt_flags = 0;
1709 largest_node = NULL;
1710 time_sent = 0;
1711
Frédéric Lécaille59b07c72021-08-03 16:06:01 +02001712 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 +01001713 largest_node = eb64_lookup(pkts, largest);
1714 if (!largest_node) {
1715 TRACE_DEVEL("Largest acked packet not found",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001716 QUIC_EV_CONN_PRSAFRM, ctx->qc);
Frédéric Lécaille83b7a5b2021-11-17 16:16:04 +01001717 }
1718 else {
1719 time_sent = eb64_entry(&largest_node->node,
1720 struct quic_tx_packet, pn_node)->time_sent;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001721 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001722 }
1723
1724 TRACE_PROTO("ack range", QUIC_EV_CONN_PRSAFRM,
Frédéric Lécaillee7ff2b22021-12-22 17:40:38 +01001725 ctx->qc, NULL, &largest, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001726 do {
1727 uint64_t gap, ack_range;
1728
1729 qc_ackrng_pkts(pkts, &pkt_flags, &newly_acked_pkts,
1730 largest_node, largest, smallest, ctx);
1731 if (!ack->ack_range_num--)
1732 break;
1733
1734 if (!quic_dec_int(&gap, pos, end))
1735 goto err;
1736
1737 if (smallest < gap + 2) {
1738 TRACE_DEVEL("wrong gap value", QUIC_EV_CONN_PRSAFRM,
Frédéric Lécaillee7ff2b22021-12-22 17:40:38 +01001739 ctx->qc, NULL, &gap, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001740 goto err;
1741 }
1742
1743 largest = smallest - gap - 2;
1744 if (!quic_dec_int(&ack_range, pos, end))
1745 goto err;
1746
1747 if (largest < ack_range) {
1748 TRACE_DEVEL("wrong ack range value", QUIC_EV_CONN_PRSAFRM,
Frédéric Lécaillee7ff2b22021-12-22 17:40:38 +01001749 ctx->qc, NULL, &largest, &ack_range);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001750 goto err;
1751 }
1752
1753 /* Do not use this node anymore. */
1754 largest_node = NULL;
1755 /* Next range */
1756 smallest = largest - ack_range;
1757
1758 TRACE_PROTO("ack range", QUIC_EV_CONN_PRSAFRM,
Frédéric Lécaillee7ff2b22021-12-22 17:40:38 +01001759 ctx->qc, NULL, &largest, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001760 } while (1);
1761
1762 /* Flag this packet number space as having received an ACK. */
Frédéric Lécaille67f47d02021-08-19 15:19:09 +02001763 HA_ATOMIC_OR(&qel->pktns->flags, QUIC_FL_PKTNS_ACK_RECEIVED);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001764
1765 if (time_sent && (pkt_flags & QUIC_FL_TX_PACKET_ACK_ELICITING)) {
1766 *rtt_sample = tick_remain(time_sent, now_ms);
Frédéric Lécaille59b07c72021-08-03 16:06:01 +02001767 HA_ATOMIC_STORE(&qel->pktns->tx.largest_acked_pn, ack->largest_ack);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001768 }
1769
1770 if (!LIST_ISEMPTY(&newly_acked_pkts)) {
1771 if (!eb_is_empty(&qel->pktns->tx.pkts)) {
1772 qc_packet_loss_lookup(qel->pktns, ctx->conn->qc, &lost_pkts);
1773 if (!LIST_ISEMPTY(&lost_pkts))
1774 qc_release_lost_pkts(qel->pktns, ctx, &lost_pkts, now_ms);
1775 }
1776 qc_treat_newly_acked_pkts(ctx, &newly_acked_pkts);
1777 if (quic_peer_validated_addr(ctx))
1778 ctx->conn->qc->path->loss.pto_count = 0;
1779 qc_set_timer(ctx);
1780 }
1781
1782
1783 return 1;
1784
1785 err:
1786 free_quic_tx_pkts(&newly_acked_pkts);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001787 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PRSAFRM, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001788 return 0;
1789}
1790
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02001791/* This function gives the detail of the SSL error. It is used only
1792 * if the debug mode and the verbose mode are activated. It dump all
1793 * the SSL error until the stack was empty.
1794 */
1795static forceinline void qc_ssl_dump_errors(struct connection *conn)
1796{
1797 if (unlikely(global.mode & MODE_DEBUG)) {
1798 while (1) {
1799 unsigned long ret;
1800
1801 ret = ERR_get_error();
1802 if (!ret)
1803 return;
1804
1805 fprintf(stderr, "conn. @%p OpenSSL error[0x%lx] %s: %s\n", conn, ret,
1806 ERR_func_error_string(ret), ERR_reason_error_string(ret));
1807 }
1808 }
1809}
1810
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01001811int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx,
1812 const char **str, int *len);
1813
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001814/* Provide CRYPTO data to the TLS stack found at <data> with <len> as length
1815 * from <qel> encryption level with <ctx> as QUIC connection context.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05001816 * Remaining parameter are there for debugging purposes.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001817 * Return 1 if succeeded, 0 if not.
1818 */
1819static inline int qc_provide_cdata(struct quic_enc_level *el,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001820 struct ssl_sock_ctx *ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001821 const unsigned char *data, size_t len,
1822 struct quic_rx_packet *pkt,
1823 struct quic_rx_crypto_frm *cf)
1824{
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02001825 int ssl_err, state;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001826 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001827
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001828 ssl_err = SSL_ERROR_NONE;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01001829 qc = ctx->qc;
1830
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001831 TRACE_ENTER(QUIC_EV_CONN_SSLDATA, qc);
1832
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001833 if (SSL_provide_quic_data(ctx->ssl, el->level, data, len) != 1) {
1834 TRACE_PROTO("SSL_provide_quic_data() error",
1835 QUIC_EV_CONN_SSLDATA, ctx->conn, pkt, cf, ctx->ssl);
1836 goto err;
1837 }
1838
1839 el->rx.crypto.offset += len;
1840 TRACE_PROTO("in order CRYPTO data",
Frédéric Lécaillee7ff2b22021-12-22 17:40:38 +01001841 QUIC_EV_CONN_SSLDATA, qc, NULL, cf, ctx->ssl);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001842
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02001843 state = HA_ATOMIC_LOAD(&qc->state);
1844 if (state < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001845 ssl_err = SSL_do_handshake(ctx->ssl);
1846 if (ssl_err != 1) {
1847 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
1848 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
1849 TRACE_PROTO("SSL handshake",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001850 QUIC_EV_CONN_HDSHK, qc, &state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001851 goto out;
1852 }
1853
1854 TRACE_DEVEL("SSL handshake error",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001855 QUIC_EV_CONN_HDSHK, qc, &state, &ssl_err);
Frédéric Lécaille7c881bd2021-09-28 09:05:59 +02001856 qc_ssl_dump_errors(ctx->conn);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01001857 ERR_clear_error();
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001858 goto err;
1859 }
1860
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001861 TRACE_PROTO("SSL handshake OK", QUIC_EV_CONN_HDSHK, qc, &state);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001862 if (objt_listener(ctx->conn->target))
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02001863 HA_ATOMIC_STORE(&qc->state, QUIC_HS_ST_CONFIRMED);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001864 else
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02001865 HA_ATOMIC_STORE(&qc->state, QUIC_HS_ST_COMPLETE);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001866 } else {
1867 ssl_err = SSL_process_quic_post_handshake(ctx->ssl);
1868 if (ssl_err != 1) {
1869 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
1870 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
1871 TRACE_DEVEL("SSL post handshake",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001872 QUIC_EV_CONN_HDSHK, qc, &state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001873 goto out;
1874 }
1875
1876 TRACE_DEVEL("SSL post handshake error",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001877 QUIC_EV_CONN_HDSHK, qc, &state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001878 goto err;
1879 }
1880
1881 TRACE_PROTO("SSL post handshake succeeded",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001882 QUIC_EV_CONN_HDSHK, qc, &state);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001883 }
Amaury Denoyellee2288c32021-12-03 14:44:21 +01001884
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001885 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001886 TRACE_LEAVE(QUIC_EV_CONN_SSLDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001887 return 1;
1888
1889 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001890 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_SSLDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001891 return 0;
1892}
1893
Frédéric Lécailledfbae762021-02-18 09:59:01 +01001894/* Allocate a new STREAM RX frame from <stream_fm> STREAM frame attached to
1895 * <pkt> RX packet.
1896 * Return it if succeeded, NULL if not.
1897 */
1898static inline
1899struct quic_rx_strm_frm *new_quic_rx_strm_frm(struct quic_stream *stream_frm,
1900 struct quic_rx_packet *pkt)
1901{
1902 struct quic_rx_strm_frm *frm;
1903
1904 frm = pool_alloc(pool_head_quic_rx_strm_frm);
1905 if (frm) {
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001906 frm->offset_node.key = stream_frm->offset.key;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01001907 frm->len = stream_frm->len;
1908 frm->data = stream_frm->data;
1909 frm->pkt = pkt;
1910 }
1911
1912 return frm;
1913}
1914
Frédéric Lécailledfbae762021-02-18 09:59:01 +01001915/* Copy as most as possible STREAM data from <strm_frm> into <strm> stream.
Frédéric Lécaille3fe7df82021-12-15 15:32:55 +01001916 * Also update <strm_frm> frame to reflect the data which have been consumed.
Frédéric Lécailledfbae762021-02-18 09:59:01 +01001917 */
1918static size_t qc_strm_cpy(struct buffer *buf, struct quic_stream *strm_frm)
1919{
1920 size_t ret;
1921
1922 ret = 0;
1923 while (strm_frm->len) {
1924 size_t try;
1925
1926 try = b_contig_space(buf);
1927 if (!try)
1928 break;
1929
1930 if (try > strm_frm->len)
1931 try = strm_frm->len;
1932 memcpy(b_tail(buf), strm_frm->data, try);
1933 strm_frm->len -= try;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001934 strm_frm->offset.key += try;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01001935 b_add(buf, try);
1936 ret += try;
1937 }
1938
1939 return ret;
1940}
1941
Frédéric Lécaillef1d38cb2021-12-20 12:02:13 +01001942/* Copy as most as possible STREAM data from <strm_frm> into <buf> buffer.
1943 * Also update <strm_frm> frame to reflect the data which have been consumed.
1944 */
1945static size_t qc_rx_strm_frm_cpy(struct buffer *buf,
1946 struct quic_rx_strm_frm *strm_frm)
1947{
1948 size_t ret;
1949
1950 ret = 0;
1951 while (strm_frm->len) {
1952 size_t try;
1953
1954 try = b_contig_space(buf);
1955 if (!try)
1956 break;
1957
1958 if (try > strm_frm->len)
1959 try = strm_frm->len;
1960 memcpy(b_tail(buf), strm_frm->data, try);
1961 strm_frm->len -= try;
1962 strm_frm->offset_node.key += try;
1963 b_add(buf, try);
1964 ret += try;
1965 }
1966
1967 return ret;
1968}
1969
1970/* Process as much as possible RX STREAM frames received for <qcs> */
1971static size_t qc_treat_rx_strm_frms(struct qcs *qcs)
1972{
1973 int total;
1974 struct eb64_node *frm_node;
1975
1976 total = 0;
1977 frm_node = eb64_first(&qcs->rx.frms);
1978 while (frm_node) {
1979 int ret;
1980 struct quic_rx_strm_frm *frm;
1981
1982 frm = eb64_entry(&frm_node->node, struct quic_rx_strm_frm, offset_node);
1983 if (frm->offset_node.key != qcs->rx.offset)
1984 break;
1985
1986 ret = qc_rx_strm_frm_cpy(&qcs->rx.buf, frm);
1987 qcs->rx.offset += ret;
1988 total += ret;
1989 if (frm->len) {
1990 /* If there is remaining data in this frame
1991 * this is because the destination buffer is full.
1992 */
1993 break;
1994 }
1995
1996 frm_node = eb64_next(frm_node);
1997 quic_rx_packet_refdec(frm->pkt);
1998 eb64_delete(&frm->offset_node);
1999 pool_free(pool_head_quic_rx_strm_frm, frm);
2000 }
2001
2002 return total;
2003}
2004
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002005/* Handle <strm_frm> bidirectional STREAM frame. Depending on its ID, several
2006 * streams may be open. The data are copied to the stream RX buffer if possible.
2007 * If not, the STREAM frame is stored to be treated again later.
2008 * We rely on the flow control so that not to store too much STREAM frames.
2009 * Return 1 if succeeded, 0 if not.
2010 */
2011static int qc_handle_bidi_strm_frm(struct quic_rx_packet *pkt,
2012 struct quic_stream *strm_frm,
2013 struct quic_conn *qc)
2014{
Frédéric Lécaillef1d38cb2021-12-20 12:02:13 +01002015 int total;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002016 struct qcs *strm;
Frédéric Lécaille10250b22021-12-22 16:13:43 +01002017 struct eb64_node *strm_node;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002018 struct quic_rx_strm_frm *frm;
2019
2020 strm_node = qcc_get_qcs(qc->qcc, strm_frm->id);
2021 if (!strm_node) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002022 TRACE_PROTO("Stream not found", QUIC_EV_CONN_PSTRM, qc);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002023 return 0;
2024 }
2025
2026 strm = eb64_entry(&strm_node->node, struct qcs, by_id);
Frédéric Lécaille10250b22021-12-22 16:13:43 +01002027 if (strm_frm->offset.key < strm->rx.offset) {
2028 size_t diff;
2029
2030 if (strm_frm->offset.key + strm_frm->len <= strm->rx.offset) {
2031 TRACE_PROTO("Already received STREAM data",
2032 QUIC_EV_CONN_PSTRM, qc);
2033 goto out;
2034 }
2035
2036 TRACE_PROTO("Partially already received STREAM data", QUIC_EV_CONN_PSTRM, qc);
2037 diff = strm->rx.offset - strm_frm->offset.key;
2038 strm_frm->offset.key = strm->rx.offset;
2039 strm_frm->len -= diff;
2040 strm_frm->data += diff;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002041 }
2042
Frédéric Lécaillef1d38cb2021-12-20 12:02:13 +01002043 total = 0;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02002044 if (strm_frm->offset.key == strm->rx.offset) {
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002045 int ret;
2046
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002047 if (!qc_get_buf(strm, &strm->rx.buf)) {
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002048 goto store_frm;
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002049 }
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002050
2051 ret = qc_strm_cpy(&strm->rx.buf, strm_frm);
Frédéric Lécaillef1d38cb2021-12-20 12:02:13 +01002052 total += ret;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002053 strm->rx.offset += ret;
2054 }
2055
Frédéric Lécaillef1d38cb2021-12-20 12:02:13 +01002056 total += qc_treat_rx_strm_frms(strm);
2057 if (total && qc->qcc->app_ops->decode_qcs(strm, strm_frm->fin, qc->qcc->ctx) < 0) {
2058 TRACE_PROTO("Decoding error", QUIC_EV_CONN_PSTRM);
2059 return 0;
2060 }
2061
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002062 if (!strm_frm->len)
2063 goto out;
2064
2065 store_frm:
2066 frm = new_quic_rx_strm_frm(strm_frm, pkt);
2067 if (!frm) {
2068 TRACE_PROTO("Could not alloc RX STREAM frame",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002069 QUIC_EV_CONN_PSTRM, qc);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002070 return 0;
2071 }
2072
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02002073 eb64_insert(&strm->rx.frms, &frm->offset_node);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002074 quic_rx_packet_refinc(pkt);
2075
2076 out:
2077 return 1;
2078}
2079
2080/* Handle <strm_frm> unidirectional STREAM frame. Depending on its ID, several
2081 * streams may be open. The data are copied to the stream RX buffer if possible.
2082 * If not, the STREAM frame is stored to be treated again later.
2083 * We rely on the flow control so that not to store too much STREAM frames.
2084 * Return 1 if succeeded, 0 if not.
2085 */
2086static int qc_handle_uni_strm_frm(struct quic_rx_packet *pkt,
2087 struct quic_stream *strm_frm,
2088 struct quic_conn *qc)
2089{
2090 struct qcs *strm;
Frédéric Lécaille10250b22021-12-22 16:13:43 +01002091 struct eb64_node *strm_node;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002092 struct quic_rx_strm_frm *frm;
2093 size_t strm_frm_len;
2094
2095 strm_node = qcc_get_qcs(qc->qcc, strm_frm->id);
2096 if (!strm_node) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002097 TRACE_PROTO("Stream not found", QUIC_EV_CONN_PSTRM, qc);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002098 return 0;
2099 }
2100
2101 strm = eb64_entry(&strm_node->node, struct qcs, by_id);
Frédéric Lécaille10250b22021-12-22 16:13:43 +01002102 if (strm_frm->offset.key < strm->rx.offset) {
2103 size_t diff;
2104
2105 if (strm_frm->offset.key + strm_frm->len <= strm->rx.offset) {
2106 TRACE_PROTO("Already received STREAM data",
2107 QUIC_EV_CONN_PSTRM, qc);
2108 goto out;
2109 }
2110
2111 TRACE_PROTO("Partially already received STREAM data", QUIC_EV_CONN_PSTRM, qc);
2112 diff = strm->rx.offset - strm_frm->offset.key;
2113 strm_frm->offset.key = strm->rx.offset;
2114 strm_frm->len -= diff;
2115 strm_frm->data += diff;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002116 }
2117
2118 strm_frm_len = strm_frm->len;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02002119 if (strm_frm->offset.key == strm->rx.offset) {
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002120 int ret;
2121
Amaury Denoyelle1e308ff2021-10-12 18:14:12 +02002122 if (!qc_get_buf(strm, &strm->rx.buf))
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002123 goto store_frm;
2124
2125 /* qc_strm_cpy() will modify the offset, depending on the number
2126 * of bytes copied.
2127 */
2128 ret = qc_strm_cpy(&strm->rx.buf, strm_frm);
2129 /* Inform the application of the arrival of this new stream */
2130 if (!strm->rx.offset && !qc->qcc->app_ops->attach_ruqs(strm, qc->qcc->ctx)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002131 TRACE_PROTO("Could not set an uni-stream", QUIC_EV_CONN_PSTRM, qc);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002132 return 0;
2133 }
2134
Amaury Denoyellea3f222d2021-12-06 11:24:00 +01002135 if (ret)
2136 qcs_notify_recv(strm);
2137
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02002138 strm_frm->offset.key += ret;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002139 }
2140 /* Take this frame into an account for the stream flow control */
2141 strm->rx.offset += strm_frm_len;
2142 /* It all the data were provided to the application, there is no need to
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +05002143 * store any more information for it.
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002144 */
2145 if (!strm_frm->len)
2146 goto out;
2147
2148 store_frm:
2149 frm = new_quic_rx_strm_frm(strm_frm, pkt);
2150 if (!frm) {
2151 TRACE_PROTO("Could not alloc RX STREAM frame",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002152 QUIC_EV_CONN_PSTRM, qc);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002153 return 0;
2154 }
2155
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02002156 eb64_insert(&strm->rx.frms, &frm->offset_node);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002157 quic_rx_packet_refinc(pkt);
2158
2159 out:
2160 return 1;
2161}
2162
2163static inline int qc_handle_strm_frm(struct quic_rx_packet *pkt,
2164 struct quic_stream *strm_frm,
2165 struct quic_conn *qc)
2166{
2167 if (strm_frm->id & QCS_ID_DIR_BIT)
2168 return qc_handle_uni_strm_frm(pkt, strm_frm, qc);
2169 else
2170 return qc_handle_bidi_strm_frm(pkt, strm_frm, qc);
2171}
2172
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002173/* Parse all the frames of <pkt> QUIC packet for QUIC connection with <ctx>
2174 * as I/O handler context and <qel> as encryption level.
2175 * Returns 1 if succeeded, 0 if failed.
2176 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002177static 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 +01002178 struct quic_enc_level *qel)
2179{
2180 struct quic_frame frm;
2181 const unsigned char *pos, *end;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01002182 struct quic_conn *qc = ctx->qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002183
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002184 TRACE_ENTER(QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002185 /* Skip the AAD */
2186 pos = pkt->data + pkt->aad_len;
2187 end = pkt->data + pkt->len;
2188
2189 while (pos < end) {
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002190 if (!qc_parse_frm(&frm, pkt, &pos, end, qc))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002191 goto err;
2192
Frédéric Lécaille1ede8232021-12-23 14:11:25 +01002193 TRACE_PROTO("RX frame", QUIC_EV_CONN_PSTRM, qc, &frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002194 switch (frm.type) {
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002195 case QUIC_FT_PADDING:
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002196 break;
2197 case QUIC_FT_PING:
2198 break;
2199 case QUIC_FT_ACK:
2200 {
2201 unsigned int rtt_sample;
2202
2203 rtt_sample = 0;
2204 if (!qc_parse_ack_frm(&frm, ctx, qel, &rtt_sample, &pos, end))
2205 goto err;
2206
2207 if (rtt_sample) {
2208 unsigned int ack_delay;
2209
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002210 ack_delay = !quic_application_pktns(qel->pktns, qc) ? 0 :
2211 MS_TO_TICKS(QUIC_MIN(quic_ack_delay_ms(&frm.ack, qc), qc->max_ack_delay));
2212 quic_loss_srtt_update(&qc->path->loss, rtt_sample, ack_delay, qc);
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002213 }
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002214 break;
2215 }
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002216 case QUIC_FT_STOP_SENDING:
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002217 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002218 case QUIC_FT_CRYPTO:
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002219 {
2220 struct quic_rx_crypto_frm *cf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002221
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002222 if (unlikely(frm.crypto.offset < qel->rx.crypto.offset)) {
2223 if (frm.crypto.offset + frm.crypto.len <= qel->rx.crypto.offset) {
2224 /* XXX TO DO: <cfdebug> is used only for the traces. */
2225 struct quic_rx_crypto_frm cfdebug = { };
2226
2227 cfdebug.offset_node.key = frm.crypto.offset;
2228 cfdebug.len = frm.crypto.len;
2229 /* Nothing to do */
2230 TRACE_PROTO("Already received CRYPTO data",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002231 QUIC_EV_CONN_ELRXPKTS, qc, pkt, &cfdebug);
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002232 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002233 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002234 else {
2235 size_t diff = qel->rx.crypto.offset - frm.crypto.offset;
2236 /* XXX TO DO: <cfdebug> is used only for the traces. */
2237 struct quic_rx_crypto_frm cfdebug = { };
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002238
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002239 cfdebug.offset_node.key = frm.crypto.offset;
2240 cfdebug.len = frm.crypto.len;
2241 TRACE_PROTO("Partially already received CRYPTO data",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002242 QUIC_EV_CONN_ELRXPKTS, qc, pkt, &cfdebug);
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002243 frm.crypto.len -= diff;
2244 frm.crypto.data += diff;
2245 frm.crypto.offset = qel->rx.crypto.offset;
2246 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002247 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002248
2249 if (frm.crypto.offset == qel->rx.crypto.offset) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002250 /* XXX TO DO: <cf> is used only for the traces. */
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002251 struct quic_rx_crypto_frm cfdebug = { };
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002252
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002253 cfdebug.offset_node.key = frm.crypto.offset;
2254 cfdebug.len = frm.crypto.len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002255 if (!qc_provide_cdata(qel, ctx,
2256 frm.crypto.data, frm.crypto.len,
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002257 pkt, &cfdebug))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002258 goto err;
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002259
2260 break;
2261 }
2262
2263 /* frm.crypto.offset > qel->rx.crypto.offset */
2264 cf = pool_alloc(pool_head_quic_rx_crypto_frm);
2265 if (!cf) {
2266 TRACE_DEVEL("CRYPTO frame allocation failed",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002267 QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002268 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002269 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002270
2271 cf->offset_node.key = frm.crypto.offset;
2272 cf->len = frm.crypto.len;
2273 cf->data = frm.crypto.data;
2274 cf->pkt = pkt;
2275 eb64_insert(&qel->rx.crypto.frms, &cf->offset_node);
2276 quic_rx_packet_refinc(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002277 break;
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002278 }
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002279 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002280 {
2281 struct quic_stream *stream = &frm.stream;
2282
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002283 if (objt_listener(ctx->conn->target)) {
2284 if (stream->id & QUIC_STREAM_FRAME_ID_INITIATOR_BIT)
2285 goto err;
2286 } else if (!(stream->id & QUIC_STREAM_FRAME_ID_INITIATOR_BIT))
2287 goto err;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002288
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002289 if (!qc_handle_strm_frm(pkt, stream, qc))
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002290 goto err;
2291
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002292 break;
2293 }
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002294 case QUIC_FT_MAX_DATA:
2295 case QUIC_FT_MAX_STREAM_DATA:
2296 case QUIC_FT_MAX_STREAMS_BIDI:
2297 case QUIC_FT_MAX_STREAMS_UNI:
2298 case QUIC_FT_DATA_BLOCKED:
2299 case QUIC_FT_STREAM_DATA_BLOCKED:
2300 case QUIC_FT_STREAMS_BLOCKED_BIDI:
2301 case QUIC_FT_STREAMS_BLOCKED_UNI:
2302 break;
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002303 case QUIC_FT_NEW_CONNECTION_ID:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002304 break;
2305 case QUIC_FT_CONNECTION_CLOSE:
2306 case QUIC_FT_CONNECTION_CLOSE_APP:
Amaury Denoyelle5154e7a2021-12-08 14:51:04 +01002307 /* warn the mux to close the connection */
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002308 qc->qcc->flags |= QC_CF_CC_RECV;
2309 tasklet_wakeup(qc->qcc->wait_event.tasklet);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002310 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002311 case QUIC_FT_HANDSHAKE_DONE:
2312 if (objt_listener(ctx->conn->target))
2313 goto err;
2314
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002315 HA_ATOMIC_STORE(&qc->state, QUIC_HS_ST_CONFIRMED);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002316 break;
2317 default:
2318 goto err;
2319 }
2320 }
2321
2322 /* The server must switch from INITIAL to HANDSHAKE handshake state when it
2323 * has successfully parse a Handshake packet. The Initial encryption must also
2324 * be discarded.
2325 */
Frédéric Lécaille8c27de72021-09-20 11:00:46 +02002326 if (pkt->type == QUIC_PACKET_TYPE_HANDSHAKE && objt_listener(ctx->conn->target)) {
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002327 int state = HA_ATOMIC_LOAD(&qc->state);
Frédéric Lécaille8c27de72021-09-20 11:00:46 +02002328
2329 if (state >= QUIC_HS_ST_SERVER_INITIAL) {
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002330 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
Frédéric Lécaille8c27de72021-09-20 11:00:46 +02002331 TRACE_PROTO("discarding Initial pktns", QUIC_EV_CONN_PRSHPKT, ctx->conn);
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002332 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, qc);
Frédéric Lécaille8c27de72021-09-20 11:00:46 +02002333 qc_set_timer(ctx);
2334 if (state < QUIC_HS_ST_SERVER_HANDSHAKE)
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002335 HA_ATOMIC_STORE(&qc->state, QUIC_HS_ST_SERVER_HANDSHAKE);
Frédéric Lécaille8c27de72021-09-20 11:00:46 +02002336 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002337 }
2338
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002339 TRACE_LEAVE(QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002340 return 1;
2341
2342 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002343 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002344 return 0;
2345}
2346
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002347/* Write <dglen> datagram length and <pkt> first packet address into <cbuf> ring
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +05002348 * buffer. This is the responsibility of the caller to check there is enough
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002349 * room in <cbuf>. Also increase the <cbuf> write index consequently.
2350 * This function must be called only after having built a correct datagram.
2351 * Always succeeds.
2352 */
2353static inline void qc_set_dg(struct cbuf *cbuf,
2354 uint16_t dglen, struct quic_tx_packet *pkt)
2355{
2356 write_u16(cb_wr(cbuf), dglen);
2357 write_ptr(cb_wr(cbuf) + sizeof dglen, pkt);
2358 cb_add(cbuf, dglen + sizeof dglen + sizeof pkt);
2359}
2360
Frédéric Lécaillee2660e62021-11-23 11:36:51 +01002361/* Prepare as much as possible packets into <qr> ring buffer for
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002362 * the QUIC connection with <ctx> as I/O handler context, possibly concatenating
2363 * several packets in the same datagram. A header made of two fields is added
2364 * to each datagram: the datagram length followed by the address of the first
2365 * packet in this datagram.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002366 * Returns 1 if succeeded, or 0 if something wrong happened.
2367 */
Frédéric Lécaillee2660e62021-11-23 11:36:51 +01002368static int qc_prep_pkts(struct qring *qr, struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002369{
2370 struct quic_conn *qc;
2371 enum quic_tls_enc_level tel, next_tel;
2372 struct quic_enc_level *qel;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002373 struct cbuf *cbuf;
2374 unsigned char *end_buf, *end, *pos, *spos;
2375 struct quic_tx_packet *first_pkt, *cur_pkt, *prv_pkt;
2376 /* length of datagrams */
2377 uint16_t dglen;
2378 size_t total;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01002379 int padding;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002380 /* Each datagram is prepended with its length followed by the
2381 * address of the first packet in the datagram.
2382 */
2383 size_t dg_headlen = sizeof dglen + sizeof first_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002384
Amaury Denoyellec15dd922021-12-21 11:41:52 +01002385 qc = ctx->qc;
2386
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002387 TRACE_ENTER(QUIC_EV_CONN_PHPKTS, qc);
2388
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01002389 if (!quic_get_tls_enc_levels(&tel, &next_tel, HA_ATOMIC_LOAD(&qc->state), 0)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002390 TRACE_DEVEL("unknown enc. levels", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002391 goto err;
2392 }
2393
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002394 start:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002395 dglen = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01002396 total = 0;
2397 padding = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002398 qel = &qc->els[tel];
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002399 cbuf = qr->cbuf;
2400 spos = pos = cb_wr(cbuf);
2401 /* Leave at least <dglen> bytes at the end of this buffer
2402 * to ensure there is enough room to mark the end of prepared
2403 * contiguous data with a zero length.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002404 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002405 end_buf = pos + cb_contig_space(cbuf) - sizeof dglen;
2406 first_pkt = prv_pkt = NULL;
2407 while (end_buf - pos >= (int)qc->path->mtu + dg_headlen || prv_pkt) {
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01002408 int err, nb_ptos, ack, cc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002409 enum quic_pkt_type pkt_type;
2410
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002411 TRACE_POINT(QUIC_EV_CONN_PHPKTS, qc, qel);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01002412 nb_ptos = ack = 0;
2413 cc = HA_ATOMIC_LOAD(&qc->flags) & QUIC_FL_CONN_IMMEDIATE_CLOSE;
2414 if (!cc) {
2415 if (!prv_pkt) {
2416 /* Consume a PTO dgram only if building a new dgrams (!prv_pkt) */
2417 do {
2418 nb_ptos = HA_ATOMIC_LOAD(&qc->tx.nb_pto_dgrams);
2419 } while (nb_ptos && !HA_ATOMIC_CAS(&qc->tx.nb_pto_dgrams, &nb_ptos, nb_ptos - 1));
2420 }
Frédéric Lécaille25eeebe2021-12-16 11:21:52 +01002421 ack = HA_ATOMIC_BTR(&qel->pktns->flags, QUIC_FL_PKTNS_ACK_REQUIRED_BIT);
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02002422 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002423 /* Do not build any more packet if the TX secrets are not available or
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01002424 * 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 +01002425 * and if there is no more packets to send upon PTO expiration
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01002426 * and if there is no more CRYPTO data available or in flight
2427 * congestion control limit is reached for prepared data
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002428 */
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01002429 if (!(qel->tls_ctx.tx.flags & QUIC_FL_TLS_SECRETS_SET) ||
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01002430 (!cc && !ack && !nb_ptos &&
Frédéric Lécaille67f47d02021-08-19 15:19:09 +02002431 (MT_LIST_ISEMPTY(&qel->pktns->tx.frms) ||
2432 qc->path->prep_in_flight >= qc->path->cwnd))) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002433 TRACE_DEVEL("nothing more to do", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002434 /* Set the current datagram as prepared into <cbuf> if
2435 * the was already a correct packet which was previously written.
2436 */
2437 if (prv_pkt)
2438 qc_set_dg(cbuf, dglen, first_pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002439 break;
2440 }
2441
2442 pkt_type = quic_tls_level_pkt_type(tel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002443 if (!prv_pkt) {
2444 /* Leave room for the datagram header */
2445 pos += dg_headlen;
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +01002446 if (!quic_peer_validated_addr(ctx) && objt_listener(ctx->conn->target)) {
2447 if (qc->tx.prep_bytes >= 3 * qc->rx.bytes)
2448 qc->flags |= QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED;
2449 end = pos + QUIC_MIN(qc->path->mtu, 3 * qc->rx.bytes - qc->tx.prep_bytes);
2450 }
2451 else {
2452 end = pos + qc->path->mtu;
2453 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002454 }
2455
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01002456 cur_pkt = qc_build_pkt(&pos, end, qel, qc, dglen, padding,
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01002457 pkt_type, ack, nb_ptos, cc, &err);
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02002458 /* Restore the PTO dgrams counter if a packet could not be built */
Frédéric Lécaille67f47d02021-08-19 15:19:09 +02002459 if (err < 0) {
2460 if (!prv_pkt && nb_ptos)
2461 HA_ATOMIC_ADD(&qc->tx.nb_pto_dgrams, 1);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02002462 if (ack)
Frédéric Lécaille25eeebe2021-12-16 11:21:52 +01002463 HA_ATOMIC_BTS(&qel->pktns->flags, QUIC_FL_PKTNS_ACK_REQUIRED_BIT);
Frédéric Lécaille67f47d02021-08-19 15:19:09 +02002464 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002465 switch (err) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002466 case -2:
2467 goto err;
2468 case -1:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002469 /* If there was already a correct packet present, set the
2470 * current datagram as prepared into <cbuf>.
2471 */
2472 if (prv_pkt) {
2473 qc_set_dg(cbuf, dglen, first_pkt);
2474 goto stop_build;
2475 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002476 goto out;
2477 default:
Frédéric Lécaille67f47d02021-08-19 15:19:09 +02002478 /* This is to please to GCC. We cannot have (err >= 0 && !cur_pkt) */
2479 if (!cur_pkt)
2480 goto err;
2481
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002482 total += cur_pkt->len;
2483 /* keep trace of the first packet in the datagram */
2484 if (!first_pkt)
2485 first_pkt = cur_pkt;
2486 /* Attach the current one to the previous one */
2487 if (prv_pkt)
2488 prv_pkt->next = cur_pkt;
2489 /* Let's say we have to build a new dgram */
2490 prv_pkt = NULL;
2491 dglen += cur_pkt->len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002492 /* Discard the Initial encryption keys as soon as
2493 * a handshake packet could be built.
2494 */
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02002495 if (HA_ATOMIC_LOAD(&qc->state) == QUIC_HS_ST_CLIENT_INITIAL &&
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002496 pkt_type == QUIC_PACKET_TYPE_HANDSHAKE) {
2497 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002498 TRACE_PROTO("discarding Initial pktns", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002499 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, qc);
2500 qc_set_timer(ctx);
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02002501 HA_ATOMIC_STORE(&qc->state, QUIC_HS_ST_CLIENT_HANDSHAKE);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002502 }
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01002503 /* If the data for the current encryption level have all been sent,
2504 * select the next level.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002505 */
Frédéric Lécailled0670882021-08-19 07:53:27 +02002506 if ((tel == QUIC_TLS_ENC_LEVEL_INITIAL || tel == QUIC_TLS_ENC_LEVEL_HANDSHAKE) &&
Frédéric Lécaillef7980962021-08-19 17:35:21 +02002507 (MT_LIST_ISEMPTY(&qel->pktns->tx.frms) ||
2508 (next_tel != QUIC_TLS_ENC_LEVEL_NONE && qc->els[next_tel].pktns->tx.in_flight))) {
Frédéric Lécaille4bade772021-08-23 08:54:28 +02002509 /* If QUIC_TLS_ENC_LEVEL_HANDSHAKE was already reached let's try QUIC_TLS_ENC_LEVEL_APP */
2510 if (tel == QUIC_TLS_ENC_LEVEL_HANDSHAKE && next_tel == tel)
2511 next_tel = QUIC_TLS_ENC_LEVEL_APP;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002512 tel = next_tel;
2513 qel = &qc->els[tel];
Frédéric Lécaillec88df072021-07-27 11:43:11 +02002514 if (!MT_LIST_ISEMPTY(&qel->pktns->tx.frms)) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002515 /* If there is data for the next level, do not
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01002516 * consume a datagram.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002517 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002518 prv_pkt = cur_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002519 }
2520 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002521 }
2522
2523 /* If we have to build a new datagram, set the current datagram as
2524 * prepared into <cbuf>.
2525 */
2526 if (!prv_pkt) {
2527 qc_set_dg(cbuf, dglen, first_pkt);
2528 first_pkt = NULL;
2529 dglen = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01002530 padding = 0;
2531 }
2532 else if (prv_pkt->type == QUIC_TLS_ENC_LEVEL_INITIAL &&
2533 (objt_server(qc->conn->target) ||
2534 prv_pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)) {
2535 padding = 1;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002536 }
2537 }
2538
2539 stop_build:
2540 /* Reset <wr> writer index if in front of <rd> index */
2541 if (end_buf - pos < (int)qc->path->mtu + dg_headlen) {
2542 int rd = HA_ATOMIC_LOAD(&cbuf->rd);
2543
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002544 TRACE_DEVEL("buffer full", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002545 if (cb_contig_space(cbuf) >= sizeof(uint16_t)) {
2546 if ((pos != spos && cbuf->wr > rd) || (pos == spos && rd <= cbuf->wr)) {
2547 /* Mark the end of contiguous data for the reader */
2548 write_u16(cb_wr(cbuf), 0);
2549 cb_add(cbuf, sizeof(uint16_t));
2550 }
2551 }
2552
2553 if (rd && rd <= cbuf->wr) {
2554 cb_wr_reset(cbuf);
2555 if (pos == spos) {
2556 /* Reuse the same buffer if nothing was built. */
2557 goto start;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002558 }
2559 }
2560 }
2561
2562 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002563 TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002564 return total;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002565
2566 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002567 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002568 return -1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002569}
2570
2571/* Send the QUIC packets which have been prepared for QUIC connections
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002572 * from <qr> ring buffer with <ctx> as I/O handler context.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002573 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002574int qc_send_ppkts(struct qring *qr, struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002575{
2576 struct quic_conn *qc;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002577 struct cbuf *cbuf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002578
Amaury Denoyellec15dd922021-12-21 11:41:52 +01002579 qc = ctx->qc;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002580 cbuf = qr->cbuf;
2581 while (cb_contig_data(cbuf)) {
2582 unsigned char *pos;
2583 struct buffer tmpbuf = { };
2584 struct quic_tx_packet *first_pkt, *pkt, *next_pkt;
2585 uint16_t dglen;
2586 size_t headlen = sizeof dglen + sizeof first_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002587 unsigned int time_sent;
2588
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002589 pos = cb_rd(cbuf);
2590 dglen = read_u16(pos);
2591 /* End of prepared datagrams.
2592 * Reset the reader index only if in front of the writer index.
2593 */
2594 if (!dglen) {
2595 int wr = HA_ATOMIC_LOAD(&cbuf->wr);
2596
2597 if (wr && wr < cbuf->rd) {
2598 cb_rd_reset(cbuf);
2599 continue;
2600 }
2601 break;
2602 }
2603
2604 pos += sizeof dglen;
2605 first_pkt = read_ptr(pos);
2606 pos += sizeof first_pkt;
2607 tmpbuf.area = (char *)pos;
2608 tmpbuf.size = tmpbuf.data = dglen;
2609
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002610 TRACE_PROTO("to send", QUIC_EV_CONN_SPPKTS, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002611 for (pkt = first_pkt; pkt; pkt = pkt->next)
2612 quic_tx_packet_refinc(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002613 if (ctx->xprt->snd_buf(qc->conn, qc->conn->xprt_ctx,
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002614 &tmpbuf, tmpbuf.data, 0) <= 0) {
2615 for (pkt = first_pkt; pkt; pkt = pkt->next)
2616 quic_tx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002617 break;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002618 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002619
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002620 cb_del(cbuf, dglen + headlen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002621 qc->tx.bytes += tmpbuf.data;
2622 time_sent = now_ms;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002623
2624 for (pkt = first_pkt; pkt; pkt = next_pkt) {
2625 pkt->time_sent = time_sent;
2626 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING) {
2627 pkt->pktns->tx.time_of_last_eliciting = time_sent;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01002628 qc->path->ifae_pkts++;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002629 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002630 qc->path->in_flight += pkt->in_flight_len;
2631 pkt->pktns->tx.in_flight += pkt->in_flight_len;
2632 if (pkt->in_flight_len)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002633 qc_set_timer(ctx);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002634 TRACE_PROTO("sent pkt", QUIC_EV_CONN_SPPKTS, qc, pkt);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002635 next_pkt = pkt->next;
Frédéric Lécaille0eb60c52021-07-19 14:48:36 +02002636 eb64_insert(&pkt->pktns->tx.pkts, &pkt->pn_node);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002637 quic_tx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002638 }
2639 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002640
2641 return 1;
2642}
2643
2644/* Build all the frames which must be sent just after the handshake have succeeded.
2645 * This is essentially NEW_CONNECTION_ID frames. A QUIC server must also send
2646 * a HANDSHAKE_DONE frame.
2647 * Return 1 if succeeded, 0 if not.
2648 */
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02002649static int quic_build_post_handshake_frames(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002650{
2651 int i;
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02002652 struct quic_enc_level *qel;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002653 struct quic_frame *frm;
2654
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02002655 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002656 /* Only servers must send a HANDSHAKE_DONE frame. */
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02002657 if (!objt_server(qc->conn->target)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002658 frm = pool_alloc(pool_head_quic_frame);
Frédéric Lécaille153d4a82021-01-06 12:12:39 +01002659 if (!frm)
2660 return 0;
2661
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002662 frm->type = QUIC_FT_HANDSHAKE_DONE;
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02002663 MT_LIST_APPEND(&qel->pktns->tx.frms, &frm->mt_list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002664 }
2665
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02002666 for (i = 1; i < qc->tx.params.active_connection_id_limit; i++) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002667 struct quic_connection_id *cid;
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01002668 struct listener *l = __objt_listener(qc->conn->target);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002669
2670 frm = pool_alloc(pool_head_quic_frame);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01002671 if (!frm)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002672 goto err;
2673
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01002674 cid = new_quic_cid(&qc->cids, qc, i);
2675 if (!cid)
2676 goto err;
2677
2678 /* insert the allocated CID in the receiver tree */
2679 HA_RWLOCK_WRLOCK(QUIC_LOCK, &l->rx.cids_lock);
2680 ebmb_insert(&l->rx.cids, &cid->node, cid->cid.len);
2681 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &l->rx.cids_lock);
2682
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002683 quic_connection_id_to_frm_cpy(frm, cid);
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02002684 MT_LIST_APPEND(&qel->pktns->tx.frms, &frm->mt_list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002685 }
2686
2687 return 1;
2688
2689 err:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002690 return 0;
2691}
2692
2693/* Deallocate <l> list of ACK ranges. */
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002694void free_quic_arngs(struct quic_arngs *arngs)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002695{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002696 struct eb64_node *n;
2697 struct quic_arng_node *ar;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002698
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002699 n = eb64_first(&arngs->root);
2700 while (n) {
2701 struct eb64_node *next;
2702
2703 ar = eb64_entry(&n->node, struct quic_arng_node, first);
2704 next = eb64_next(n);
2705 eb64_delete(n);
2706 free(ar);
2707 n = next;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002708 }
2709}
2710
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002711/* Return the gap value between <p> and <q> ACK ranges where <q> follows <p> in
2712 * descending order.
2713 */
2714static inline size_t sack_gap(struct quic_arng_node *p,
2715 struct quic_arng_node *q)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002716{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002717 return p->first.key - q->last - 2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002718}
2719
2720
2721/* Remove the last elements of <ack_ranges> list of ack range updating its
2722 * encoded size until it goes below <limit>.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05002723 * Returns 1 if succeeded, 0 if not (no more element to remove).
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002724 */
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002725static int quic_rm_last_ack_ranges(struct quic_arngs *arngs, size_t limit)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002726{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002727 struct eb64_node *last, *prev;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002728
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002729 last = eb64_last(&arngs->root);
2730 while (last && arngs->enc_sz > limit) {
2731 struct quic_arng_node *last_node, *prev_node;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002732
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002733 prev = eb64_prev(last);
2734 if (!prev)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002735 return 0;
2736
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002737 last_node = eb64_entry(&last->node, struct quic_arng_node, first);
2738 prev_node = eb64_entry(&prev->node, struct quic_arng_node, first);
2739 arngs->enc_sz -= quic_int_getsize(last_node->last - last_node->first.key);
2740 arngs->enc_sz -= quic_int_getsize(sack_gap(prev_node, last_node));
2741 arngs->enc_sz -= quic_decint_size_diff(arngs->sz);
2742 --arngs->sz;
2743 eb64_delete(last);
2744 pool_free(pool_head_quic_arng, last);
2745 last = prev;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002746 }
2747
2748 return 1;
2749}
2750
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002751/* Set the encoded size of <arngs> QUIC ack ranges. */
2752static void quic_arngs_set_enc_sz(struct quic_arngs *arngs)
2753{
2754 struct eb64_node *node, *next;
2755 struct quic_arng_node *ar, *ar_next;
2756
2757 node = eb64_last(&arngs->root);
2758 if (!node)
2759 return;
2760
2761 ar = eb64_entry(&node->node, struct quic_arng_node, first);
2762 arngs->enc_sz = quic_int_getsize(ar->last) +
2763 quic_int_getsize(ar->last - ar->first.key) + quic_int_getsize(arngs->sz - 1);
2764
2765 while ((next = eb64_prev(node))) {
2766 ar_next = eb64_entry(&next->node, struct quic_arng_node, first);
2767 arngs->enc_sz += quic_int_getsize(sack_gap(ar, ar_next)) +
2768 quic_int_getsize(ar_next->last - ar_next->first.key);
2769 node = next;
2770 ar = eb64_entry(&node->node, struct quic_arng_node, first);
2771 }
2772}
2773
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002774/* Insert <ar> ack range into <argns> tree of ack ranges.
2775 * Returns the ack range node which has been inserted if succeeded, NULL if not.
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002776 */
2777static inline
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002778struct quic_arng_node *quic_insert_new_range(struct quic_arngs *arngs,
2779 struct quic_arng *ar)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002780{
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002781 struct quic_arng_node *new_ar;
2782
2783 new_ar = pool_alloc(pool_head_quic_arng);
2784 if (new_ar) {
2785 new_ar->first.key = ar->first;
2786 new_ar->last = ar->last;
2787 eb64_insert(&arngs->root, &new_ar->first);
2788 arngs->sz++;
2789 }
2790
2791 return new_ar;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002792}
2793
2794/* Update <arngs> tree of ACK ranges with <ar> as new ACK range value.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002795 * Note that this function computes the number of bytes required to encode
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002796 * this tree of ACK ranges in descending order.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002797 *
2798 * Descending order
2799 * ------------->
2800 * range1 range2
2801 * ..........|--------|..............|--------|
2802 * ^ ^ ^ ^
2803 * | | | |
2804 * last1 first1 last2 first2
2805 * ..........+--------+--------------+--------+......
2806 * diff1 gap12 diff2
2807 *
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002808 * To encode the previous list of ranges we must encode integers as follows in
2809 * descending order:
2810 * enc(last2),enc(diff2),enc(gap12),enc(diff1)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002811 * with diff1 = last1 - first1
2812 * diff2 = last2 - first2
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002813 * gap12 = first1 - last2 - 2 (>= 0)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002814 *
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002815 */
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002816int quic_update_ack_ranges_list(struct quic_arngs *arngs,
2817 struct quic_arng *ar)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002818{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002819 struct eb64_node *le;
2820 struct quic_arng_node *new_node;
2821 struct eb64_node *new;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002822
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002823 new = NULL;
2824 if (eb_is_empty(&arngs->root)) {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002825 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002826 if (!new_node)
2827 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002828
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002829 goto out;
2830 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002831
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002832 le = eb64_lookup_le(&arngs->root, ar->first);
2833 if (!le) {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002834 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002835 if (!new_node)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002836 return 0;
Frédéric Lécaille0e257832021-11-16 10:54:19 +01002837
2838 new = &new_node->first;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002839 }
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002840 else {
2841 struct quic_arng_node *le_ar =
2842 eb64_entry(&le->node, struct quic_arng_node, first);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002843
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002844 /* Already existing range */
Frédéric Lécailled3f4dd82021-06-02 15:36:12 +02002845 if (le_ar->last >= ar->last)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002846 return 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002847
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002848 if (le_ar->last + 1 >= ar->first) {
2849 le_ar->last = ar->last;
2850 new = le;
2851 new_node = le_ar;
2852 }
2853 else {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002854 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002855 if (!new_node)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002856 return 0;
Frédéric Lécaille8ba42762021-06-02 17:40:09 +02002857
2858 new = &new_node->first;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002859 }
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002860 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002861
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002862 /* Verify that the new inserted node does not overlap the nodes
2863 * which follow it.
2864 */
2865 if (new) {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002866 struct eb64_node *next;
2867 struct quic_arng_node *next_node;
2868
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002869 while ((next = eb64_next(new))) {
2870 next_node =
2871 eb64_entry(&next->node, struct quic_arng_node, first);
Frédéric Lécaillec825eba2021-06-02 17:38:13 +02002872 if (new_node->last + 1 < next_node->first.key)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002873 break;
2874
2875 if (next_node->last > new_node->last)
2876 new_node->last = next_node->last;
2877 eb64_delete(next);
Frédéric Lécaillebaea2842021-06-02 15:04:03 +02002878 pool_free(pool_head_quic_arng, next_node);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002879 /* Decrement the size of these ranges. */
2880 arngs->sz--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002881 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002882 }
2883
Frédéric Lécaille82b86522021-08-10 09:54:03 +02002884 out:
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002885 quic_arngs_set_enc_sz(arngs);
2886
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002887 return 1;
2888}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002889/* Remove the header protection of packets at <el> encryption level.
2890 * Always succeeds.
2891 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002892static inline void qc_rm_hp_pkts(struct quic_enc_level *el, struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002893{
2894 struct quic_tls_ctx *tls_ctx;
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02002895 struct quic_rx_packet *pqpkt;
2896 struct mt_list *pkttmp1, pkttmp2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002897 struct quic_enc_level *app_qel;
2898
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002899 TRACE_ENTER(QUIC_EV_CONN_ELRMHP, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002900 app_qel = &ctx->conn->qc->els[QUIC_TLS_ENC_LEVEL_APP];
2901 /* A server must not process incoming 1-RTT packets before the handshake is complete. */
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002902 if (el == app_qel && objt_listener(ctx->conn->target) &&
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02002903 HA_ATOMIC_LOAD(&ctx->conn->qc->state) < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002904 TRACE_PROTO("hp not removed (handshake not completed)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002905 QUIC_EV_CONN_ELRMHP, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002906 goto out;
2907 }
2908 tls_ctx = &el->tls_ctx;
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02002909 mt_list_for_each_entry_safe(pqpkt, &el->rx.pqpkts, list, pkttmp1, pkttmp2) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002910 if (!qc_do_rm_hp(pqpkt, tls_ctx, el->pktns->rx.largest_pn,
2911 pqpkt->data + pqpkt->pn_offset,
2912 pqpkt->data, pqpkt->data + pqpkt->len, ctx)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002913 TRACE_PROTO("hp removing error", QUIC_EV_CONN_ELRMHP, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002914 /* XXX TO DO XXX */
2915 }
2916 else {
2917 /* The AAD includes the packet number field */
2918 pqpkt->aad_len = pqpkt->pn_offset + pqpkt->pnl;
2919 /* Store the packet into the tree of packets to decrypt. */
2920 pqpkt->pn_node.key = pqpkt->pn;
Frédéric Lécaille98cdeb22021-07-26 16:38:14 +02002921 HA_RWLOCK_WRLOCK(QUIC_LOCK, &el->rx.pkts_rwlock);
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02002922 eb64_insert(&el->rx.pkts, &pqpkt->pn_node);
2923 quic_rx_packet_refinc(pqpkt);
Frédéric Lécaille98cdeb22021-07-26 16:38:14 +02002924 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &el->rx.pkts_rwlock);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002925 TRACE_PROTO("hp removed", QUIC_EV_CONN_ELRMHP, ctx->qc, pqpkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002926 }
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02002927 MT_LIST_DELETE_SAFE(pkttmp1);
2928 quic_rx_packet_refdec(pqpkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002929 }
2930
2931 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002932 TRACE_LEAVE(QUIC_EV_CONN_ELRMHP, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002933}
2934
2935/* Process all the CRYPTO frame at <el> encryption level.
2936 * Return 1 if succeeded, 0 if not.
2937 */
2938static inline int qc_treat_rx_crypto_frms(struct quic_enc_level *el,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002939 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002940{
2941 struct eb64_node *node;
2942
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002943 node = eb64_first(&el->rx.crypto.frms);
2944 while (node) {
2945 struct quic_rx_crypto_frm *cf;
2946
2947 cf = eb64_entry(&node->node, struct quic_rx_crypto_frm, offset_node);
2948 if (cf->offset_node.key != el->rx.crypto.offset)
2949 break;
2950
2951 if (!qc_provide_cdata(el, ctx, cf->data, cf->len, cf->pkt, cf))
2952 goto err;
2953
2954 node = eb64_next(node);
2955 quic_rx_packet_refdec(cf->pkt);
2956 eb64_delete(&cf->offset_node);
2957 pool_free(pool_head_quic_rx_crypto_frm, cf);
2958 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002959 return 1;
2960
2961 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002962 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RXCDATA, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002963 return 0;
2964}
2965
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02002966/* Process all the packets at <el> and <next_el> encryption level.
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +05002967 * 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 +02002968 * as pointer value.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002969 * Return 1 if succeeded, 0 if not.
2970 */
Frédéric Lécaille2766e782021-08-30 17:16:07 +02002971int qc_treat_rx_pkts(struct quic_enc_level *cur_el, struct quic_enc_level *next_el,
2972 struct ssl_sock_ctx *ctx, int force_ack)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002973{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002974 struct eb64_node *node;
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02002975 int64_t largest_pn = -1;
Frédéric Lécaille2766e782021-08-30 17:16:07 +02002976 struct quic_conn *qc = ctx->conn->qc;
2977 struct quic_enc_level *qel = cur_el;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002978
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002979 TRACE_ENTER(QUIC_EV_CONN_ELRXPKTS, ctx->qc);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02002980 qel = cur_el;
2981 next_tel:
2982 if (!qel)
2983 goto out;
2984
2985 HA_RWLOCK_WRLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock);
2986 node = eb64_first(&qel->rx.pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002987 while (node) {
2988 struct quic_rx_packet *pkt;
2989
2990 pkt = eb64_entry(&node->node, struct quic_rx_packet, pn_node);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02002991 TRACE_PROTO("new packet", QUIC_EV_CONN_ELRXPKTS,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002992 ctx->qc, pkt, NULL, ctx->ssl);
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01002993 if (!qc_pkt_decrypt(pkt, qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002994 /* Drop the packet */
2995 TRACE_PROTO("packet decryption failed -> dropped",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002996 QUIC_EV_CONN_ELRXPKTS, ctx->qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002997 }
2998 else {
Frédéric Lécaille2766e782021-08-30 17:16:07 +02002999 if (!qc_parse_pkt_frms(pkt, ctx, qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003000 /* Drop the packet */
3001 TRACE_PROTO("packet parsing failed -> dropped",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003002 QUIC_EV_CONN_ELRXPKTS, ctx->qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003003 }
3004 else {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003005 struct quic_arng ar = { .first = pkt->pn, .last = pkt->pn };
3006
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003007 if (pkt->flags & QUIC_FL_RX_PACKET_ACK_ELICITING &&
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003008 (!(HA_ATOMIC_ADD_FETCH(&qc->rx.nb_ack_eliciting, 1) & 1) || force_ack))
Frédéric Lécaille25eeebe2021-12-16 11:21:52 +01003009 HA_ATOMIC_BTS(&qel->pktns->flags, QUIC_FL_PKTNS_ACK_REQUIRED_BIT);
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003010 if (pkt->pn > largest_pn)
3011 largest_pn = pkt->pn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003012 /* Update the list of ranges to acknowledge. */
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003013 if (!quic_update_ack_ranges_list(&qel->pktns->rx.arngs, &ar))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003014 TRACE_DEVEL("Could not update ack range list",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003015 QUIC_EV_CONN_ELRXPKTS, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003016 }
3017 }
3018 node = eb64_next(node);
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02003019 eb64_delete(&pkt->pn_node);
3020 quic_rx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003021 }
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003022 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003023
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003024 /* Update the largest packet number. */
3025 if (largest_pn != -1)
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003026 HA_ATOMIC_UPDATE_MAX(&qel->pktns->rx.largest_pn, largest_pn);
3027 if (!qc_treat_rx_crypto_frms(qel, ctx))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003028 goto err;
3029
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003030 if (qel == cur_el) {
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003031 BUG_ON(qel == next_el);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003032 qel = next_el;
3033 goto next_tel;
3034 }
3035
3036 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003037 TRACE_LEAVE(QUIC_EV_CONN_ELRXPKTS, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003038 return 1;
3039
3040 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003041 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ELRXPKTS, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003042 return 0;
3043}
3044
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003045/* QUIC connection packet handler task. */
3046struct task *quic_conn_io_cb(struct task *t, void *context, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003047{
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003048 int ret, ssl_err;
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003049 struct ssl_sock_ctx *ctx;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02003050 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003051 enum quic_tls_enc_level tel, next_tel;
3052 struct quic_enc_level *qel, *next_qel;
3053 struct quic_tls_ctx *tls_ctx;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003054 struct qring *qr; // Tx ring
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01003055 int prev_st, st, force_ack, zero_rtt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003056
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003057 ctx = context;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01003058 qc = ctx->qc;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003059 qr = NULL;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02003060 st = HA_ATOMIC_LOAD(&qc->state);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003061 TRACE_ENTER(QUIC_EV_CONN_HDSHK, qc, &st);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003062 ssl_err = SSL_ERROR_NONE;
Frédéric Lécaille4137b2d2021-12-17 18:24:16 +01003063 zero_rtt = st < QUIC_HS_ST_COMPLETE &&
3064 (!MT_LIST_ISEMPTY(&qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA].rx.pqpkts) ||
3065 qc_el_rx_pkts(&qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA]));
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003066 start:
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01003067 if (!quic_get_tls_enc_levels(&tel, &next_tel, st, zero_rtt))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003068 goto err;
3069
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02003070 qel = &qc->els[tel];
Frédéric Lécaillef7980962021-08-19 17:35:21 +02003071 next_qel = next_tel == QUIC_TLS_ENC_LEVEL_NONE ? NULL : &qc->els[next_tel];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003072
3073 next_level:
3074 tls_ctx = &qel->tls_ctx;
3075
3076 /* If the header protection key for this level has been derived,
3077 * remove the packet header protections.
3078 */
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003079 if (!MT_LIST_ISEMPTY(&qel->rx.pqpkts) &&
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003080 (tls_ctx->rx.flags & QUIC_FL_TLS_SECRETS_SET))
3081 qc_rm_hp_pkts(qel, ctx);
3082
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003083 prev_st = HA_ATOMIC_LOAD(&qc->state);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003084 force_ack = qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL] ||
3085 qel == &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
3086 if (!qc_treat_rx_pkts(qel, next_qel, ctx, force_ack))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003087 goto err;
3088
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01003089 if (zero_rtt && next_qel && !MT_LIST_ISEMPTY(&next_qel->rx.pqpkts) &&
3090 (next_qel->tls_ctx.rx.flags & QUIC_FL_TLS_SECRETS_SET)) {
3091 qel = next_qel;
3092 next_qel = NULL;
3093 goto next_level;
3094 }
3095
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003096 st = HA_ATOMIC_LOAD(&qc->state);
Frédéric Lécaille754f99e2021-08-19 15:35:59 +02003097 if (st >= QUIC_HS_ST_COMPLETE &&
3098 (prev_st == QUIC_HS_ST_SERVER_INITIAL || prev_st == QUIC_HS_ST_SERVER_HANDSHAKE)) {
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003099 /* Discard the Handshake keys. */
3100 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003101 TRACE_PROTO("discarding Handshake pktns", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003102 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns, qc);
3103 qc_set_timer(ctx);
3104 if (!quic_build_post_handshake_frames(qc))
3105 goto err;
Frédéric Lécaillefee7ba62021-12-06 12:09:08 +01003106
3107 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
3108 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003109 goto start;
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003110 }
3111
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003112 if (!qr)
3113 qr = MT_LIST_POP(qc->tx.qring_list, typeof(qr), mt_list);
Frédéric Lécaillee2660e62021-11-23 11:36:51 +01003114 ret = qc_prep_pkts(qr, ctx);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003115 if (ret == -1)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003116 goto err;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003117 else if (ret == 0)
3118 goto skip_send;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003119
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003120 if (!qc_send_ppkts(qr, ctx))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003121 goto err;
3122
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003123 skip_send:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003124 /* Check if there is something to do for the next level.
3125 */
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003126 if (next_qel && next_qel != qel &&
3127 (next_qel->tls_ctx.rx.flags & QUIC_FL_TLS_SECRETS_SET) &&
Frédéric Lécaille7d807c92021-12-06 08:56:38 +01003128 (!MT_LIST_ISEMPTY(&next_qel->rx.pqpkts) || qc_el_rx_pkts(next_qel))) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003129 qel = next_qel;
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003130 next_qel = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003131 goto next_level;
3132 }
3133
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003134 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003135 TRACE_LEAVE(QUIC_EV_CONN_HDSHK, qc, &st);
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003136 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003137
3138 err:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003139 if (qr)
3140 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003141 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_HDSHK, qc, &st, &ssl_err);
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003142 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003143}
3144
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003145/* Uninitialize <qel> QUIC encryption level. Never fails. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003146static void quic_conn_enc_level_uninit(struct quic_enc_level *qel)
3147{
3148 int i;
3149
3150 for (i = 0; i < qel->tx.crypto.nb_buf; i++) {
3151 if (qel->tx.crypto.bufs[i]) {
3152 pool_free(pool_head_quic_crypto_buf, qel->tx.crypto.bufs[i]);
3153 qel->tx.crypto.bufs[i] = NULL;
3154 }
3155 }
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003156 ha_free(&qel->tx.crypto.bufs);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003157}
3158
3159/* Initialize QUIC TLS encryption level with <level<> as level for <qc> QUIC
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003160 * connection allocating everything needed.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003161 * Returns 1 if succeeded, 0 if not.
3162 */
3163static int quic_conn_enc_level_init(struct quic_conn *qc,
3164 enum quic_tls_enc_level level)
3165{
3166 struct quic_enc_level *qel;
3167
3168 qel = &qc->els[level];
3169 qel->level = quic_to_ssl_enc_level(level);
3170 qel->tls_ctx.rx.aead = qel->tls_ctx.tx.aead = NULL;
3171 qel->tls_ctx.rx.md = qel->tls_ctx.tx.md = NULL;
3172 qel->tls_ctx.rx.hp = qel->tls_ctx.tx.hp = NULL;
3173 qel->tls_ctx.rx.flags = 0;
3174 qel->tls_ctx.tx.flags = 0;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +01003175 qel->tls_ctx.flags = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003176
3177 qel->rx.pkts = EB_ROOT;
Frédéric Lécaille98cdeb22021-07-26 16:38:14 +02003178 HA_RWLOCK_INIT(&qel->rx.pkts_rwlock);
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003179 MT_LIST_INIT(&qel->rx.pqpkts);
Frédéric Lécaille9054d1b2021-07-26 16:23:53 +02003180 qel->rx.crypto.offset = 0;
3181 qel->rx.crypto.frms = EB_ROOT_UNIQUE;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003182
3183 /* Allocate only one buffer. */
3184 qel->tx.crypto.bufs = malloc(sizeof *qel->tx.crypto.bufs);
3185 if (!qel->tx.crypto.bufs)
3186 goto err;
3187
3188 qel->tx.crypto.bufs[0] = pool_alloc(pool_head_quic_crypto_buf);
3189 if (!qel->tx.crypto.bufs[0])
3190 goto err;
3191
3192 qel->tx.crypto.bufs[0]->sz = 0;
3193 qel->tx.crypto.nb_buf = 1;
3194
3195 qel->tx.crypto.sz = 0;
3196 qel->tx.crypto.offset = 0;
3197
3198 return 1;
3199
3200 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003201 ha_free(&qel->tx.crypto.bufs);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003202 return 0;
3203}
3204
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003205/* Release all the memory allocated for <conn> QUIC connection. */
Amaury Denoyelle67e6cd52021-12-13 17:07:03 +01003206static void quic_conn_free(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003207{
3208 int i;
3209
Amaury Denoyelle67e6cd52021-12-13 17:07:03 +01003210 if (!qc)
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003211 return;
3212
Amaury Denoyelle67e6cd52021-12-13 17:07:03 +01003213 free_quic_conn_cids(qc);
Amaury Denoyelle2af19852021-09-30 11:03:28 +02003214
3215 /* remove the connection from receiver cids trees */
Amaury Denoyelle67e6cd52021-12-13 17:07:03 +01003216 HA_RWLOCK_WRLOCK(QUIC_LOCK, &qc->li->rx.cids_lock);
3217 ebmb_delete(&qc->odcid_node);
3218 ebmb_delete(&qc->scid_node);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003219
Amaury Denoyelle67e6cd52021-12-13 17:07:03 +01003220 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qc->li->rx.cids_lock);
Amaury Denoyelle2af19852021-09-30 11:03:28 +02003221
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003222 for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++)
Amaury Denoyelle67e6cd52021-12-13 17:07:03 +01003223 quic_conn_enc_level_uninit(&qc->els[i]);
3224 if (qc->timer_task)
3225 task_destroy(qc->timer_task);
3226 pool_free(pool_head_quic_conn_rxbuf, qc->rx.buf.area);
3227 pool_free(pool_head_quic_conn, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003228}
3229
Amaury Denoyelle414cac52021-09-22 11:14:37 +02003230void quic_close(struct connection *conn, void *xprt_ctx)
3231{
3232 struct ssl_sock_ctx *conn_ctx = xprt_ctx;
3233 struct quic_conn *qc = conn_ctx->conn->qc;
3234 quic_conn_free(qc);
3235}
3236
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003237/* Callback called upon loss detection and PTO timer expirations. */
Willy Tarreau144f84a2021-03-02 16:09:26 +01003238static struct task *process_timer(struct task *task, void *ctx, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003239{
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02003240 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003241 struct quic_conn *qc;
3242 struct quic_pktns *pktns;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02003243 int st;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003244
3245 conn_ctx = task->context;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01003246 qc = conn_ctx->qc;
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003247 TRACE_ENTER(QUIC_EV_CONN_PTIMER, qc,
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01003248 NULL, NULL, &qc->path->ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003249 task->expire = TICK_ETERNITY;
3250 pktns = quic_loss_pktns(qc);
3251 if (tick_isset(pktns->tx.loss_time)) {
3252 struct list lost_pkts = LIST_HEAD_INIT(lost_pkts);
3253
3254 qc_packet_loss_lookup(pktns, qc, &lost_pkts);
3255 if (!LIST_ISEMPTY(&lost_pkts))
3256 qc_release_lost_pkts(pktns, ctx, &lost_pkts, now_ms);
3257 qc_set_timer(conn_ctx);
3258 goto out;
3259 }
3260
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02003261 st = HA_ATOMIC_LOAD(&qc->state);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003262 if (qc->path->in_flight) {
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02003263 pktns = quic_pto_pktns(qc, st >= QUIC_HS_ST_COMPLETE, NULL);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003264 pktns->tx.pto_probe = 1;
3265 }
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02003266 else if (objt_server(qc->conn->target) && st <= QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003267 struct quic_enc_level *iel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
3268 struct quic_enc_level *hel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
3269
3270 if (hel->tls_ctx.rx.flags == QUIC_FL_TLS_SECRETS_SET)
3271 hel->pktns->tx.pto_probe = 1;
3272 if (iel->tls_ctx.rx.flags == QUIC_FL_TLS_SECRETS_SET)
3273 iel->pktns->tx.pto_probe = 1;
3274 }
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02003275 HA_ATOMIC_STORE(&qc->tx.nb_pto_dgrams, QUIC_MAX_NB_PTO_DGRAMS);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003276 tasklet_wakeup(conn_ctx->wait_event.tasklet);
3277 qc->path->loss.pto_count++;
3278
3279 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003280 TRACE_LEAVE(QUIC_EV_CONN_PTIMER, qc, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003281
3282 return task;
3283}
3284
3285/* Initialize <conn> QUIC connection with <quic_initial_clients> as root of QUIC
3286 * connections used to identify the first Initial packets of client connecting
3287 * to listeners. This parameter must be NULL for QUIC connections attached
3288 * to listeners. <dcid> is the destination connection ID with <dcid_len> as length.
3289 * <scid> is the source connection ID with <scid_len> as length.
3290 * Returns 1 if succeeded, 0 if not.
3291 */
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003292static struct quic_conn *qc_new_conn(unsigned int version, int ipv4,
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01003293 unsigned char *dcid, size_t dcid_len, size_t dcid_addr_len,
Frédéric Lécaille6b197642021-07-06 16:25:08 +02003294 unsigned char *scid, size_t scid_len, int server, void *owner)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003295{
3296 int i;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003297 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003298 /* Initial CID. */
3299 struct quic_connection_id *icid;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003300 char *buf_area;
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003301 struct listener *l = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003302
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02003303 TRACE_ENTER(QUIC_EV_CONN_INIT);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003304 qc = pool_zalloc(pool_head_quic_conn);
3305 if (!qc) {
3306 TRACE_PROTO("Could not allocate a new connection", QUIC_EV_CONN_INIT);
3307 goto err;
3308 }
3309
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003310 buf_area = pool_alloc(pool_head_quic_conn_rxbuf);
3311 if (!buf_area) {
Amaury Denoyellee770ce32021-12-21 14:51:56 +01003312 TRACE_PROTO("Could not allocate a new RX buffer", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003313 goto err;
3314 }
3315
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003316 qc->cids = EB_ROOT;
3317 /* QUIC Server (or listener). */
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02003318 if (server) {
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003319 l = owner;
Frédéric Lécaille6b197642021-07-06 16:25:08 +02003320
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02003321 HA_ATOMIC_STORE(&qc->state, QUIC_HS_ST_SERVER_INITIAL);
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01003322 /* Copy the initial DCID with the address. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003323 qc->odcid.len = dcid_len;
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01003324 qc->odcid.addrlen = dcid_addr_len;
3325 memcpy(qc->odcid.data, dcid, dcid_len + dcid_addr_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003326
Amaury Denoyelle42b9f1c2021-11-24 15:29:53 +01003327 /* copy the packet SCID to reuse it as DCID for sending */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003328 if (scid_len)
3329 memcpy(qc->dcid.data, scid, scid_len);
3330 qc->dcid.len = scid_len;
Frédéric Lécaillec1029f62021-10-20 11:09:58 +02003331 qc->tx.qring_list = &l->rx.tx_qring_list;
Amaury Denoyelle2af19852021-09-30 11:03:28 +02003332 qc->li = l;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003333 }
3334 /* QUIC Client (outgoing connection to servers) */
3335 else {
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02003336 HA_ATOMIC_STORE(&qc->state, QUIC_HS_ST_CLIENT_INITIAL);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003337 if (dcid_len)
3338 memcpy(qc->dcid.data, dcid, dcid_len);
3339 qc->dcid.len = dcid_len;
3340 }
3341
3342 /* Initialize the output buffer */
3343 qc->obuf.pos = qc->obuf.data;
3344
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003345 icid = new_quic_cid(&qc->cids, qc, 0);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003346 if (!icid) {
Amaury Denoyellee770ce32021-12-21 14:51:56 +01003347 TRACE_PROTO("Could not allocate a new connection ID", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003348 goto err;
3349 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003350
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003351 /* insert the allocated CID in the receiver tree */
3352 if (server) {
3353 HA_RWLOCK_WRLOCK(QUIC_LOCK, &l->rx.cids_lock);
3354 ebmb_insert(&l->rx.cids, &icid->node, icid->cid.len);
3355 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &l->rx.cids_lock);
3356 }
3357
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003358 /* Select our SCID which is the first CID with 0 as sequence number. */
3359 qc->scid = icid->cid;
3360
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003361 /* Packet number spaces initialization. */
3362 for (i = 0; i < QUIC_TLS_PKTNS_MAX; i++)
3363 quic_pktns_init(&qc->pktns[i]);
3364 /* QUIC encryption level context initialization. */
3365 for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++) {
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003366 if (!quic_conn_enc_level_init(qc, i)) {
Amaury Denoyellee770ce32021-12-21 14:51:56 +01003367 TRACE_PROTO("Could not initialize an encryption level", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003368 goto err;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003369 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003370 /* Initialize the packet number space. */
3371 qc->els[i].pktns = &qc->pktns[quic_tls_pktns(i)];
3372 }
3373
Frédéric Lécaillec8d3f872021-07-06 17:19:44 +02003374 qc->version = version;
Frédéric Lécaillea956d152021-11-10 09:24:22 +01003375 qc->tps_tls_ext = qc->version & 0xff000000 ?
3376 TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS_DRAFT:
3377 TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003378 /* TX part. */
3379 LIST_INIT(&qc->tx.frms_to_send);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003380 qc->tx.nb_buf = QUIC_CONN_TX_BUFS_NB;
3381 qc->tx.wbuf = qc->tx.rbuf = 0;
3382 qc->tx.bytes = 0;
3383 qc->tx.nb_pto_dgrams = 0;
3384 /* RX part. */
3385 qc->rx.bytes = 0;
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003386 qc->rx.nb_ack_eliciting = 0;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003387 qc->rx.buf = b_make(buf_area, QUIC_CONN_RX_BUFSZ, 0, 0);
3388 HA_RWLOCK_INIT(&qc->rx.buf_rwlock);
3389 LIST_INIT(&qc->rx.pkt_list);
Frédéric Lécaille40df78f2021-11-30 10:59:37 +01003390 if (!quic_tls_ku_init(qc)) {
Amaury Denoyellee770ce32021-12-21 14:51:56 +01003391 TRACE_PROTO("Key update initialization failed", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille40df78f2021-11-30 10:59:37 +01003392 goto err;
3393 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003394
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003395 /* XXX TO DO: Only one path at this time. */
3396 qc->path = &qc->paths[0];
3397 quic_path_init(qc->path, ipv4, default_quic_cc_algo, qc);
3398
Amaury Denoyellee770ce32021-12-21 14:51:56 +01003399 TRACE_LEAVE(QUIC_EV_CONN_INIT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003400
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003401 return qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003402
3403 err:
Amaury Denoyellee770ce32021-12-21 14:51:56 +01003404 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_INIT, qc ? qc : NULL);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003405 quic_conn_free(qc);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003406 return NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003407}
3408
3409/* Initialize the timer task of <qc> QUIC connection.
3410 * Returns 1 if succeeded, 0 if not.
3411 */
3412static int quic_conn_init_timer(struct quic_conn *qc)
3413{
Frédéric Lécaillef57c3332021-12-09 10:06:21 +01003414 /* Attach this task to the same thread ID used for the connection */
3415 qc->timer_task = task_new(1UL << qc->tid);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003416 if (!qc->timer_task)
3417 return 0;
3418
3419 qc->timer = TICK_ETERNITY;
3420 qc->timer_task->process = process_timer;
3421 qc->timer_task->context = qc->conn->xprt_ctx;
3422
3423 return 1;
3424}
3425
3426/* Parse into <pkt> a long header located at <*buf> buffer, <end> begin a pointer to the end
3427 * past one byte of this buffer.
3428 */
3429static inline int quic_packet_read_long_header(unsigned char **buf, const unsigned char *end,
3430 struct quic_rx_packet *pkt)
3431{
3432 unsigned char dcid_len, scid_len;
3433
3434 /* Version */
3435 if (!quic_read_uint32(&pkt->version, (const unsigned char **)buf, end))
3436 return 0;
3437
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003438 /* Destination Connection ID Length */
3439 dcid_len = *(*buf)++;
3440 /* We want to be sure we can read <dcid_len> bytes and one more for <scid_len> value */
3441 if (dcid_len > QUIC_CID_MAXLEN || end - *buf < dcid_len + 1)
3442 /* XXX MUST BE DROPPED */
3443 return 0;
3444
3445 if (dcid_len) {
3446 /* Check that the length of this received DCID matches the CID lengths
3447 * of our implementation for non Initials packets only.
3448 */
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01003449 if (pkt->type != QUIC_PACKET_TYPE_INITIAL &&
3450 pkt->type != QUIC_PACKET_TYPE_0RTT &&
Amaury Denoyelled4962512021-12-14 17:17:28 +01003451 dcid_len != QUIC_HAP_CID_LEN)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003452 return 0;
3453
3454 memcpy(pkt->dcid.data, *buf, dcid_len);
3455 }
3456
3457 pkt->dcid.len = dcid_len;
3458 *buf += dcid_len;
3459
3460 /* Source Connection ID Length */
3461 scid_len = *(*buf)++;
3462 if (scid_len > QUIC_CID_MAXLEN || end - *buf < scid_len)
3463 /* XXX MUST BE DROPPED */
3464 return 0;
3465
3466 if (scid_len)
3467 memcpy(pkt->scid.data, *buf, scid_len);
3468 pkt->scid.len = scid_len;
3469 *buf += scid_len;
3470
3471 return 1;
3472}
3473
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003474/* If the header protection of <pkt> packet attached to <qc> connection with <ctx>
3475 * as context may be removed, return 1, 0 if not. Also set <*qel> to the associated
3476 * encryption level matching with the packet type. <*qel> may be null if not found.
3477 * Note that <ctx> may be null (for Initial packets).
3478 */
3479static int qc_pkt_may_rm_hp(struct quic_rx_packet *pkt,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02003480 struct quic_conn *qc, struct ssl_sock_ctx *ctx,
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003481 struct quic_enc_level **qel)
3482{
3483 enum quic_tls_enc_level tel;
3484
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003485 tel = quic_packet_type_enc_level(pkt->type);
3486 if (tel == QUIC_TLS_ENC_LEVEL_NONE) {
3487 *qel = NULL;
3488 return 0;
3489 }
3490
3491 *qel = &qc->els[tel];
3492 if ((*qel)->tls_ctx.rx.flags & QUIC_FL_TLS_SECRETS_DCD) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003493 TRACE_DEVEL("Discarded keys", QUIC_EV_CONN_TRMHP, ctx->qc);
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003494 return 0;
3495 }
3496
3497 if (((*qel)->tls_ctx.rx.flags & QUIC_FL_TLS_SECRETS_SET) &&
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02003498 (tel != QUIC_TLS_ENC_LEVEL_APP ||
3499 HA_ATOMIC_LOAD(&ctx->conn->qc->state) >= QUIC_HS_ST_COMPLETE))
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003500 return 1;
3501
3502 return 0;
3503}
3504
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003505/* Insert <pkt> RX packet in its <qel> RX packets tree */
3506static void qc_pkt_insert(struct quic_rx_packet *pkt, struct quic_enc_level *qel)
3507{
3508 pkt->pn_node.key = pkt->pn;
Frédéric Lécaille2ce5acf2021-12-20 14:41:19 +01003509 quic_rx_packet_refinc(pkt);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003510 HA_RWLOCK_WRLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock);
3511 eb64_insert(&qel->rx.pkts, &pkt->pn_node);
3512 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003513}
3514
3515/* Try to remove the header protection of <pkt> QUIC packet attached to <qc>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003516 * QUIC connection with <buf> as packet number field address, <end> a pointer to one
3517 * byte past the end of the buffer containing this packet and <beg> the address of
3518 * the packet first byte.
3519 * If succeeded, this function updates <*buf> to point to the next packet in the buffer.
3520 * Returns 1 if succeeded, 0 if not.
3521 */
3522static inline int qc_try_rm_hp(struct quic_rx_packet *pkt,
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01003523 unsigned char *buf, unsigned char *beg,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003524 const unsigned char *end,
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003525 struct quic_conn *qc, struct quic_enc_level **el,
3526 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003527{
3528 unsigned char *pn = NULL; /* Packet number field */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003529 struct quic_enc_level *qel;
3530 /* Only for traces. */
3531 struct quic_rx_packet *qpkt_trace;
3532
3533 qpkt_trace = NULL;
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003534 TRACE_ENTER(QUIC_EV_CONN_TRMHP, ctx ? ctx->qc : NULL);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003535 /* The packet number is here. This is also the start minus
3536 * QUIC_PACKET_PN_MAXLEN of the sample used to add/remove the header
3537 * protection.
3538 */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01003539 pn = buf;
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003540 if (qc_pkt_may_rm_hp(pkt, qc, ctx, &qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003541 /* Note that the following function enables us to unprotect the packet
3542 * number and its length subsequently used to decrypt the entire
3543 * packets.
3544 */
3545 if (!qc_do_rm_hp(pkt, &qel->tls_ctx,
3546 qel->pktns->rx.largest_pn, pn, beg, end, ctx)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003547 TRACE_PROTO("hp error", QUIC_EV_CONN_TRMHP, ctx ? ctx->qc : NULL);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003548 goto err;
3549 }
3550
3551 /* The AAD includes the packet number field found at <pn>. */
3552 pkt->aad_len = pn - beg + pkt->pnl;
3553 qpkt_trace = pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003554 }
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003555 else if (qel) {
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003556 if (qel->tls_ctx.rx.flags & QUIC_FL_TLS_SECRETS_DCD) {
3557 /* If the packet number space has been discarded, this packet
3558 * will be not parsed.
3559 */
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003560 TRACE_PROTO("Discarded pktns", QUIC_EV_CONN_TRMHP, ctx ? ctx->qc : NULL, pkt);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003561 goto out;
3562 }
3563
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003564 TRACE_PROTO("hp not removed", QUIC_EV_CONN_TRMHP, ctx ? ctx->qc : NULL, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003565 pkt->pn_offset = pn - beg;
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02003566 MT_LIST_APPEND(&qel->rx.pqpkts, &pkt->list);
3567 quic_rx_packet_refinc(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003568 }
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003569 else {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003570 TRACE_PROTO("Unknown packet type", QUIC_EV_CONN_TRMHP, ctx ? ctx->qc : NULL);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003571 goto err;
3572 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003573
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003574 *el = qel;
3575 /* No reference counter incrementation here!!! */
3576 LIST_APPEND(&qc->rx.pkt_list, &pkt->qc_rx_pkt_list);
3577 memcpy(b_tail(&qc->rx.buf), beg, pkt->len);
3578 pkt->data = (unsigned char *)b_tail(&qc->rx.buf);
3579 b_add(&qc->rx.buf, pkt->len);
3580 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003581 TRACE_LEAVE(QUIC_EV_CONN_TRMHP, ctx ? ctx->qc : NULL, qpkt_trace);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003582 return 1;
3583
3584 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003585 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_TRMHP, ctx ? ctx->qc : NULL, qpkt_trace);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003586 return 0;
3587}
3588
3589/* Parse the header form from <byte0> first byte of <pkt> pacekt to set type.
3590 * Also set <*long_header> to 1 if this form is long, 0 if not.
3591 */
3592static inline void qc_parse_hd_form(struct quic_rx_packet *pkt,
3593 unsigned char byte0, int *long_header)
3594{
3595 if (byte0 & QUIC_PACKET_LONG_HEADER_BIT) {
3596 pkt->type =
3597 (byte0 >> QUIC_PACKET_TYPE_SHIFT) & QUIC_PACKET_TYPE_BITMASK;
3598 *long_header = 1;
3599 }
3600 else {
3601 pkt->type = QUIC_PACKET_TYPE_SHORT;
3602 *long_header = 0;
3603 }
3604}
3605
Amaury Denoyellea22d8602021-11-10 15:17:56 +01003606/*
3607 * Check if the QUIC version in packet <pkt> is supported. Returns a boolean.
3608 */
3609static inline int qc_pkt_is_supported_version(struct quic_rx_packet *pkt)
3610{
3611 int j = 0, version;
3612
3613 do {
3614 version = quic_supported_version[j];
3615 if (version == pkt->version)
3616 return 1;
3617
3618 version = quic_supported_version[++j];
3619 } while(version);
3620
3621 return 0;
3622}
3623
Frédéric Lécaillec5c69a02021-10-20 17:24:42 +02003624__attribute__((unused))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003625static ssize_t qc_srv_pkt_rcv(unsigned char **buf, const unsigned char *end,
3626 struct quic_rx_packet *pkt,
3627 struct quic_dgram_ctx *dgram_ctx,
3628 struct sockaddr_storage *saddr)
3629{
3630 unsigned char *beg;
3631 uint64_t len;
3632 struct quic_conn *qc;
3633 struct eb_root *cids;
3634 struct ebmb_node *node;
3635 struct connection *srv_conn;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02003636 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003637 int long_header;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003638 size_t b_cspace;
3639 struct quic_enc_level *qel;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003640
3641 qc = NULL;
Frédéric Lécaillec4becf52021-11-08 11:23:17 +01003642 qel = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003643 TRACE_ENTER(QUIC_EV_CONN_SPKT);
3644 if (end <= *buf)
3645 goto err;
3646
3647 /* Fixed bit */
3648 if (!(**buf & QUIC_PACKET_FIXED_BIT))
3649 /* XXX TO BE DISCARDED */
3650 goto err;
3651
3652 srv_conn = dgram_ctx->owner;
3653 beg = *buf;
3654 /* Header form */
3655 qc_parse_hd_form(pkt, *(*buf)++, &long_header);
3656 if (long_header) {
3657 size_t cid_lookup_len;
3658
3659 if (!quic_packet_read_long_header(buf, end, pkt))
3660 goto err;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01003661
3662 /* unsupported QUIC version */
3663 if (!qc_pkt_is_supported_version(pkt)) {
3664 TRACE_PROTO("Null QUIC version, packet dropped", QUIC_EV_CONN_LPKT);
3665 goto err;
3666 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003667
3668 /* For Initial packets, and for servers (QUIC clients connections),
3669 * there is no Initial connection IDs storage.
3670 */
3671 if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {
3672 cids = &((struct server *)__objt_server(srv_conn->target))->cids;
3673 cid_lookup_len = pkt->dcid.len;
3674 }
3675 else {
3676 cids = &((struct server *)__objt_server(srv_conn->target))->cids;
Amaury Denoyelled4962512021-12-14 17:17:28 +01003677 cid_lookup_len = QUIC_HAP_CID_LEN;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003678 }
3679
3680 node = ebmb_lookup(cids, pkt->dcid.data, cid_lookup_len);
3681 if (!node)
3682 goto err;
3683
3684 qc = ebmb_entry(node, struct quic_conn, scid_node);
3685
3686 if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {
3687 qc->dcid.len = pkt->scid.len;
3688 if (pkt->scid.len)
3689 memcpy(qc->dcid.data, pkt->scid.data, pkt->scid.len);
3690 }
3691
3692 if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {
3693 uint64_t token_len;
3694
3695 if (!quic_dec_int(&token_len, (const unsigned char **)buf, end) || end - *buf < token_len)
3696 goto err;
3697
3698 /* XXX TO DO XXX 0 value means "the token is not present".
3699 * A server which sends an Initial packet must not set the token.
3700 * So, a client which receives an Initial packet with a token
3701 * MUST discard the packet or generate a connection error with
3702 * PROTOCOL_VIOLATION as type.
3703 * The token must be provided in a Retry packet or NEW_TOKEN frame.
3704 */
3705 pkt->token_len = token_len;
3706 }
3707 }
3708 else {
3709 /* XXX TO DO: Short header XXX */
Amaury Denoyelled4962512021-12-14 17:17:28 +01003710 if (end - *buf < QUIC_HAP_CID_LEN)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003711 goto err;
3712
3713 cids = &((struct server *)__objt_server(srv_conn->target))->cids;
Amaury Denoyelled4962512021-12-14 17:17:28 +01003714 node = ebmb_lookup(cids, *buf, QUIC_HAP_CID_LEN);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003715 if (!node)
3716 goto err;
3717
3718 qc = ebmb_entry(node, struct quic_conn, scid_node);
Amaury Denoyelled4962512021-12-14 17:17:28 +01003719 *buf += QUIC_HAP_CID_LEN;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003720 }
Amaury Denoyelleadb22762021-12-14 15:04:14 +01003721
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003722 /* Only packets packets with long headers and not RETRY or VERSION as type
3723 * have a length field.
3724 */
3725 if (long_header && pkt->type != QUIC_PACKET_TYPE_RETRY && pkt->version) {
3726 if (!quic_dec_int(&len, (const unsigned char **)buf, end) || end - *buf < len)
3727 goto err;
3728
3729 pkt->len = len;
3730 }
3731 else if (!long_header) {
3732 /* A short packet is the last one of an UDP datagram. */
3733 pkt->len = end - *buf;
3734 }
3735
3736 conn_ctx = qc->conn->xprt_ctx;
3737
3738 /* Increase the total length of this packet by the header length. */
3739 pkt->len += *buf - beg;
Amaury Denoyelleadb22762021-12-14 15:04:14 +01003740
3741 /* When multiple QUIC packets are coalesced on the same UDP datagram,
3742 * they must have the same DCID.
3743 *
3744 * This check must be done after the final update to pkt.len to
3745 * properly drop the packet on failure.
3746 */
3747 if (!dgram_ctx->dcid.len) {
3748 memcpy(dgram_ctx->dcid.data, pkt->dcid.data, pkt->dcid.len);
3749 }
3750 else if (memcmp(dgram_ctx->dcid.data, pkt->dcid.data, pkt->dcid.len)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003751 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_SPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003752 goto err;
3753 }
Amaury Denoyelleadb22762021-12-14 15:04:14 +01003754 dgram_ctx->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003755
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003756 HA_RWLOCK_WRLOCK(QUIC_LOCK, &qc->rx.buf_rwlock);
3757 b_cspace = b_contig_space(&qc->rx.buf);
3758 if (b_cspace < pkt->len) {
3759 /* Let us consume the remaining contiguous space. */
3760 b_add(&qc->rx.buf, b_cspace);
3761 if (b_contig_space(&qc->rx.buf) < pkt->len) {
3762 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qc->rx.buf_rwlock);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003763 TRACE_PROTO("Too big packet", QUIC_EV_CONN_SPKT, qc, pkt, &pkt->len);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003764 goto err;
3765 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003766 }
3767
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01003768 if (!qc_try_rm_hp(pkt, *buf, beg, end, qc, &qel, conn_ctx)) {
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003769 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qc->rx.buf_rwlock);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003770 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_SPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003771 goto err;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003772 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003773
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003774 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qc->rx.buf_rwlock);
3775 if (pkt->aad_len)
3776 qc_pkt_insert(pkt, qel);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003777 /* Wake the tasklet of the QUIC connection packet handler. */
3778 if (conn_ctx)
3779 tasklet_wakeup(conn_ctx->wait_event.tasklet);
3780
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003781 TRACE_LEAVE(QUIC_EV_CONN_SPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003782
3783 return pkt->len;
3784
3785 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003786 TRACE_DEVEL("Leaing in error", QUIC_EV_CONN_SPKT, qc ? qc : NULL);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003787 return -1;
3788}
3789
Amaury Denoyellea22d8602021-11-10 15:17:56 +01003790/*
3791 * Send a Version Negotiation packet on response to <pkt> on socket <fd> to
3792 * address <addr>.
3793 * Implementation of RFC9000 6. Version Negotiation
3794 *
3795 * TODO implement a rate-limiting sending of Version Negotiation packets
3796 *
3797 * Returns 0 on success else non-zero
3798 */
Amaury Denoyelled6b16672021-12-23 10:37:19 +01003799static int send_version_negotiation(int fd, struct sockaddr_storage *addr,
3800 struct quic_rx_packet *pkt)
Amaury Denoyellea22d8602021-11-10 15:17:56 +01003801{
3802 char buf[256];
3803 int i = 0, j, version;
3804 const socklen_t addrlen = get_addr_len(addr);
3805
3806 /*
3807 * header form
3808 * long header, fixed bit to 0 for Version Negotiation
3809 */
Frédéric Lécailleea78ee12021-11-18 13:54:43 +01003810 if (RAND_bytes((unsigned char *)buf, 1) != 1)
3811 return 1;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01003812
Frédéric Lécailleea78ee12021-11-18 13:54:43 +01003813 buf[i++] |= '\x80';
Amaury Denoyellea22d8602021-11-10 15:17:56 +01003814 /* null version for Version Negotiation */
3815 buf[i++] = '\x00';
3816 buf[i++] = '\x00';
3817 buf[i++] = '\x00';
3818 buf[i++] = '\x00';
3819
3820 /* source connection id */
3821 buf[i++] = pkt->scid.len;
Amaury Denoyelle10eed8e2021-11-18 13:48:57 +01003822 memcpy(&buf[i], pkt->scid.data, pkt->scid.len);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01003823 i += pkt->scid.len;
3824
3825 /* destination connection id */
3826 buf[i++] = pkt->dcid.len;
Amaury Denoyelle10eed8e2021-11-18 13:48:57 +01003827 memcpy(&buf[i], pkt->dcid.data, pkt->dcid.len);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01003828 i += pkt->dcid.len;
3829
3830 /* supported version */
3831 j = 0;
3832 do {
3833 version = htonl(quic_supported_version[j]);
3834 memcpy(&buf[i], &version, sizeof(version));
3835 i += sizeof(version);
3836
3837 version = quic_supported_version[++j];
3838 } while (version);
3839
3840 if (sendto(fd, buf, i, 0, (struct sockaddr *)addr, addrlen) < 0)
3841 return 1;
3842
3843 return 0;
3844}
3845
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01003846/* Retrieve a quic_conn instance from the <pkt> DCID field. If the packet is of
3847 * type INITIAL, the ODCID tree is first used. In this case, <saddr> is
3848 * concatenated to the <pkt> DCID field.
3849 *
3850 * Returns the instance or NULL if not found.
3851 */
Amaury Denoyelled6b16672021-12-23 10:37:19 +01003852static struct quic_conn *retrieve_qc_conn_from_cid(struct quic_rx_packet *pkt,
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01003853 struct listener *l,
3854 struct sockaddr_storage *saddr)
3855{
3856 struct quic_conn *qc = NULL;
3857 struct ebmb_node *node;
3858 struct quic_connection_id *id;
Amaury Denoyelle250ac422021-12-22 11:29:05 +01003859 /* set if the quic_conn is found in the second DCID tree */
3860 int found_in_dcid = 0;
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01003861
3862 HA_RWLOCK_RDLOCK(QUIC_LOCK, &l->rx.cids_lock);
3863
3864 /* Look first into ODCIDs tree for INITIAL/0-RTT packets. */
3865 if (pkt->type == QUIC_PACKET_TYPE_INITIAL ||
3866 pkt->type == QUIC_PACKET_TYPE_0RTT) {
3867 /* DCIDs of first packets coming from multiple clients may have
3868 * the same values. Let's distinguish them by concatenating the
3869 * socket addresses.
3870 */
3871 quic_cid_saddr_cat(&pkt->dcid, saddr);
3872 node = ebmb_lookup(&l->rx.odcids, pkt->dcid.data,
3873 pkt->dcid.len + pkt->dcid.addrlen);
3874 if (node) {
3875 qc = ebmb_entry(node, struct quic_conn, odcid_node);
3876 goto end;
3877 }
3878 }
3879
3880 /* Look into DCIDs tree for non-INITIAL/0-RTT packets. This may be used
3881 * also for INITIAL/0-RTT non-first packets with the final DCID in
3882 * used.
3883 */
3884 node = ebmb_lookup(&l->rx.cids, pkt->dcid.data, pkt->dcid.len);
3885 if (!node)
3886 goto end;
3887
3888 id = ebmb_entry(node, struct quic_connection_id, node);
3889 qc = id->qc;
Amaury Denoyelle250ac422021-12-22 11:29:05 +01003890 found_in_dcid = 1;
3891
3892 end:
3893 HA_RWLOCK_RDUNLOCK(QUIC_LOCK, &l->rx.cids_lock);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01003894
3895 /* If found in DCIDs tree, remove the quic_conn from the ODCIDs tree.
3896 * If already done, this is a noop.
Amaury Denoyelle250ac422021-12-22 11:29:05 +01003897 *
3898 * node.leaf_p is first checked to avoid unnecessary locking.
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01003899 */
Amaury Denoyelle250ac422021-12-22 11:29:05 +01003900 if (found_in_dcid && qc->odcid_node.node.leaf_p) {
3901 HA_RWLOCK_WRLOCK(QUIC_LOCK, &l->rx.cids_lock);
3902 ebmb_delete(&qc->odcid_node);
3903 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &l->rx.cids_lock);
3904 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01003905
3906 return qc;
3907}
3908
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01003909static ssize_t qc_lstnr_pkt_rcv(unsigned char *buf, const unsigned char *end,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003910 struct quic_rx_packet *pkt,
3911 struct quic_dgram_ctx *dgram_ctx,
3912 struct sockaddr_storage *saddr)
3913{
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01003914 unsigned char *beg, *payload;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003915 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003916 struct listener *l;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02003917 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003918 int long_header = 0;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003919 size_t b_cspace;
3920 struct quic_enc_level *qel;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003921
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01003922 beg = buf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003923 qc = NULL;
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02003924 conn_ctx = NULL;
Frédéric Lécaillec4becf52021-11-08 11:23:17 +01003925 qel = NULL;
Frédéric Lécaille8678eb02021-12-16 18:03:52 +01003926 TRACE_ENTER(QUIC_EV_CONN_LPKT);
3927 /* This ist only to please to traces and distinguish the
3928 * packet with parsed packet number from others.
3929 */
3930 pkt->pn_node.key = (uint64_t)-1;
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01003931 if (end <= buf)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003932 goto err;
3933
3934 /* Fixed bit */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01003935 if (!(*buf & QUIC_PACKET_FIXED_BIT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003936 /* XXX TO BE DISCARDED */
3937 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
3938 goto err;
3939 }
3940
3941 l = dgram_ctx->owner;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003942 /* Header form */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01003943 qc_parse_hd_form(pkt, *buf++, &long_header);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003944 if (long_header) {
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01003945 uint64_t len;
3946
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01003947 if (!quic_packet_read_long_header(&buf, end, pkt)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003948 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
3949 goto err;
3950 }
3951
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01003952 /* Retry of Version Negotiation packets are only sent by servers */
3953 if (pkt->type == QUIC_PACKET_TYPE_RETRY || !pkt->version) {
3954 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
3955 goto err;
3956 }
3957
Amaury Denoyellea22d8602021-11-10 15:17:56 +01003958 /* RFC9000 6. Version Negotiation */
3959 if (!qc_pkt_is_supported_version(pkt)) {
Amaury Denoyellea22d8602021-11-10 15:17:56 +01003960 /* unsupported version, send Negotiation packet */
Amaury Denoyelled6b16672021-12-23 10:37:19 +01003961 if (send_version_negotiation(l->rx.fd, saddr, pkt)) {
Amaury Denoyellea22d8602021-11-10 15:17:56 +01003962 TRACE_PROTO("Error on Version Negotiation sending", QUIC_EV_CONN_LPKT);
3963 goto err;
3964 }
3965
3966 TRACE_PROTO("Unsupported QUIC version, send Version Negotiation packet", QUIC_EV_CONN_LPKT);
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01003967 goto err;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01003968 }
3969
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003970 /* For Initial packets, and for servers (QUIC clients connections),
3971 * there is no Initial connection IDs storage.
3972 */
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01003973 if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02003974 uint64_t token_len;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02003975
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01003976 if (!quic_dec_int(&token_len, (const unsigned char **)&buf, end) ||
3977 end - buf < token_len) {
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01003978 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
3979 goto err;
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01003980 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01003981
3982 /* XXX TO DO XXX 0 value means "the token is not present".
3983 * A server which sends an Initial packet must not set the token.
3984 * So, a client which receives an Initial packet with a token
3985 * MUST discard the packet or generate a connection error with
3986 * PROTOCOL_VIOLATION as type.
3987 * The token must be provided in a Retry packet or NEW_TOKEN frame.
3988 */
3989 pkt->token_len = token_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003990 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01003991 else if (pkt->type != QUIC_PACKET_TYPE_0RTT) {
Amaury Denoyelled4962512021-12-14 17:17:28 +01003992 if (pkt->dcid.len != QUIC_HAP_CID_LEN) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003993 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
3994 goto err;
3995 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003996 }
3997
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01003998 if (!quic_dec_int(&len, (const unsigned char **)&buf, end) ||
3999 end - buf < len) {
4000 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
4001 goto err;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02004002 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004003
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01004004 payload = buf;
4005 pkt->len = len + payload - beg;
4006
Amaury Denoyelled6b16672021-12-23 10:37:19 +01004007 qc = retrieve_qc_conn_from_cid(pkt, l, saddr);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004008 if (!qc) {
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004009 int ipv4;
4010 struct quic_cid *odcid;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02004011 struct ebmb_node *n = NULL;
Frédéric Lécaille2fc76cf2021-08-31 19:10:40 +02004012 const unsigned char *salt = initial_salt_v1;
4013 size_t salt_len = sizeof initial_salt_v1;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004014
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004015 if (pkt->type != QUIC_PACKET_TYPE_INITIAL) {
Amaury Denoyelle47e1f6d2021-12-17 10:58:05 +01004016 TRACE_PROTO("Non Initial packet", QUIC_EV_CONN_LPKT);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004017 goto err;
4018 }
4019
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004020 pkt->saddr = *saddr;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004021 ipv4 = saddr->ss_family == AF_INET;
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01004022 qc = qc_new_conn(pkt->version, ipv4,
4023 pkt->dcid.data, pkt->dcid.len, pkt->dcid.addrlen,
Frédéric Lécaille6b197642021-07-06 16:25:08 +02004024 pkt->scid.data, pkt->scid.len, 1, l);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004025 if (qc == NULL)
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004026 goto err;
4027
4028 odcid = &qc->rx.params.original_destination_connection_id;
4029 /* Copy the transport parameters. */
4030 qc->rx.params = l->bind_conf->quic_params;
4031 /* Copy original_destination_connection_id transport parameter. */
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01004032 memcpy(odcid->data, &pkt->dcid.data, pkt->dcid.len);
4033 odcid->len = pkt->dcid.len;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004034 /* Copy the initial source connection ID. */
4035 quic_cid_cpy(&qc->rx.params.initial_source_connection_id, &qc->scid);
4036 qc->enc_params_len =
4037 quic_transport_params_encode(qc->enc_params,
4038 qc->enc_params + sizeof qc->enc_params,
4039 &qc->rx.params, 1);
4040 if (!qc->enc_params_len)
4041 goto err;
4042
Frédéric Lécaille497fa782021-05-31 15:16:13 +02004043 /* NOTE: the socket address has been concatenated to the destination ID
4044 * chosen by the client for Initial packets.
4045 */
Frédéric Lécaille2fc76cf2021-08-31 19:10:40 +02004046 if (pkt->version == QUIC_PROTOCOL_VERSION_DRAFT_29) {
4047 salt = initial_salt_draft_29;
4048 salt_len = sizeof initial_salt_draft_29;
4049 }
4050 if (!qc_new_isecs(qc, salt, salt_len,
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01004051 pkt->dcid.data, pkt->dcid.len, 1)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004052 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille497fa782021-05-31 15:16:13 +02004053 goto err;
4054 }
4055
Frédéric Lécailleb0006ee2021-11-03 19:01:31 +01004056 HA_RWLOCK_WRLOCK(QUIC_LOCK, &l->rx.cids_lock);
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02004057 /* Insert the DCID the QUIC client has chosen (only for listeners) */
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01004058 n = ebmb_insert(&l->rx.odcids, &qc->odcid_node,
4059 qc->odcid.len + qc->odcid.addrlen);
Frédéric Lécailleb0006ee2021-11-03 19:01:31 +01004060 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &l->rx.cids_lock);
Frédéric Lécaille8370c932021-11-08 17:01:46 +01004061
Amaury Denoyelleaff4ec82021-11-24 15:16:08 +01004062 /* If the insertion failed, it means that another
4063 * thread has already allocated a QUIC connection for
4064 * the same CID. Liberate our allocated connection.
4065 */
4066 if (unlikely(n != &qc->odcid_node)) {
4067 quic_conn_free(qc);
4068 qc = ebmb_entry(n, struct quic_conn, odcid_node);
4069 pkt->qc = qc;
4070 }
4071 else {
Frédéric Lécaille8370c932021-11-08 17:01:46 +01004072 /* Enqueue this packet. */
Frédéric Lécaillef67b3562021-11-15 16:21:40 +01004073 pkt->qc = qc;
Frédéric Lécaille8370c932021-11-08 17:01:46 +01004074 MT_LIST_APPEND(&l->rx.pkts, &pkt->rx_list);
4075 /* Try to accept a new connection. */
4076 listener_accept(l);
4077 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004078 }
4079 else {
Frédéric Lécaille8370c932021-11-08 17:01:46 +01004080 pkt->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004081 }
4082 }
4083 else {
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004084 if (end - buf < QUIC_HAP_CID_LEN) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004085 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
4086 goto err;
4087 }
4088
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004089 memcpy(pkt->dcid.data, buf, QUIC_HAP_CID_LEN);
Amaury Denoyelleadb22762021-12-14 15:04:14 +01004090 pkt->dcid.len = QUIC_HAP_CID_LEN;
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004091 buf += QUIC_HAP_CID_LEN;
4092
4093 /* A short packet is the last one of a UDP datagram. */
4094 payload = buf;
4095 pkt->len = end - beg;
Amaury Denoyelleadb22762021-12-14 15:04:14 +01004096
Amaury Denoyelled6b16672021-12-23 10:37:19 +01004097 qc = retrieve_qc_conn_from_cid(pkt, l, saddr);
Frédéric Lécaille4d118d62021-12-21 14:48:58 +01004098 if (!qc) {
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004099 size_t pktlen = end - buf;
Frédéric Lécaille4d118d62021-12-21 14:48:58 +01004100 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, NULL, pkt, &pktlen);
4101 goto err;
4102 }
4103
Frédéric Lécaille8370c932021-11-08 17:01:46 +01004104 pkt->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004105 }
4106
Amaury Denoyelleadb22762021-12-14 15:04:14 +01004107
4108 /* When multiple QUIC packets are coalesced on the same UDP datagram,
4109 * they must have the same DCID.
4110 *
4111 * This check must be done after the final update to pkt.len to
4112 * properly drop the packet on failure.
4113 */
4114 if (!dgram_ctx->dcid.len) {
4115 memcpy(dgram_ctx->dcid.data, pkt->dcid.data, pkt->dcid.len);
4116 }
4117 else if (memcmp(dgram_ctx->dcid.data, pkt->dcid.data, pkt->dcid.len)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004118 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004119 goto err;
4120 }
Amaury Denoyelleadb22762021-12-14 15:04:14 +01004121 dgram_ctx->qc = qc;
4122
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004123
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01004124 if (HA_ATOMIC_LOAD(&qc->err_code)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004125 TRACE_PROTO("Connection error", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01004126 goto out;
4127 }
4128
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004129 pkt->raw_len = pkt->len;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004130 HA_RWLOCK_WRLOCK(QUIC_LOCK, &qc->rx.buf_rwlock);
Frédéric Lécailled61bc8d2021-12-02 14:46:19 +01004131 quic_rx_pkts_del(qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004132 b_cspace = b_contig_space(&qc->rx.buf);
4133 if (b_cspace < pkt->len) {
4134 /* Let us consume the remaining contiguous space. */
Frédéric Lécailled61bc8d2021-12-02 14:46:19 +01004135 if (b_cspace) {
4136 b_putchr(&qc->rx.buf, 0x00);
4137 b_cspace--;
4138 }
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004139 b_add(&qc->rx.buf, b_cspace);
4140 if (b_contig_space(&qc->rx.buf) < pkt->len) {
4141 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qc->rx.buf_rwlock);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004142 TRACE_PROTO("Too big packet", QUIC_EV_CONN_LPKT, qc, pkt, &pkt->len);
Frédéric Lécaille91ac6c32021-12-17 16:11:54 +01004143 qc_list_all_rx_pkts(qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004144 goto err;
4145 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004146 }
4147
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004148 if (!qc_try_rm_hp(pkt, payload, beg, end, qc, &qel, conn_ctx)) {
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004149 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qc->rx.buf_rwlock);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004150 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02004151 goto err;
4152 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004153
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004154 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qc->rx.buf_rwlock);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004155 TRACE_PROTO("New packet", QUIC_EV_CONN_LPKT, qc, pkt);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004156 if (pkt->aad_len)
4157 qc_pkt_insert(pkt, qel);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01004158 out:
Frédéric Lécaille01abc462021-07-21 09:34:27 +02004159 /* Wake up the connection packet handler task from here only if all
4160 * the contexts have been initialized, especially the mux context
4161 * conn_ctx->conn->ctx. Note that this is ->start xprt callback which
4162 * will start it if these contexts for the connection are not already
4163 * initialized.
4164 */
Amaury Denoyelle7ca7c842021-12-22 18:20:38 +01004165 conn_ctx = HA_ATOMIC_LOAD(&qc->xprt_ctx);
4166 if (conn_ctx && conn_ctx->wait_event.tasklet)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004167 tasklet_wakeup(conn_ctx->wait_event.tasklet);
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02004168
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004169 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc ? qc : NULL, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004170
4171 return pkt->len;
4172
4173 err:
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004174 /* If length not found, consume the entire packet */
4175 if (!pkt->len)
4176 pkt->len = end - beg;
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +01004177 TRACE_DEVEL("Leaving in error", QUIC_EV_CONN_LPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004178 qc ? qc : NULL, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004179 return -1;
4180}
4181
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004182/* This function builds into <buf> buffer a QUIC long packet header.
4183 * Return 1 if enough room to build this header, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004184 */
4185static int quic_build_packet_long_header(unsigned char **buf, const unsigned char *end,
4186 int type, size_t pn_len, struct quic_conn *conn)
4187{
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004188 if (end - *buf < sizeof conn->version + conn->dcid.len + conn->scid.len + 3)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004189 return 0;
4190
4191 /* #0 byte flags */
4192 *(*buf)++ = QUIC_PACKET_FIXED_BIT | QUIC_PACKET_LONG_HEADER_BIT |
4193 (type << QUIC_PACKET_TYPE_SHIFT) | (pn_len - 1);
4194 /* Version */
4195 quic_write_uint32(buf, end, conn->version);
4196 *(*buf)++ = conn->dcid.len;
4197 /* Destination connection ID */
4198 if (conn->dcid.len) {
4199 memcpy(*buf, conn->dcid.data, conn->dcid.len);
4200 *buf += conn->dcid.len;
4201 }
4202 /* Source connection ID */
4203 *(*buf)++ = conn->scid.len;
4204 if (conn->scid.len) {
4205 memcpy(*buf, conn->scid.data, conn->scid.len);
4206 *buf += conn->scid.len;
4207 }
4208
4209 return 1;
4210}
4211
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004212/* This function builds into <buf> buffer a QUIC short packet header.
4213 * Return 1 if enough room to build this header, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004214 */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004215static int quic_build_packet_short_header(unsigned char **buf, const unsigned char *end,
4216 size_t pn_len, struct quic_conn *conn,
4217 unsigned char tls_flags)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004218{
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004219 if (end - *buf < 1 + conn->dcid.len)
4220 return 0;
4221
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004222 /* #0 byte flags */
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01004223 *(*buf)++ = QUIC_PACKET_FIXED_BIT |
4224 ((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 +01004225 /* Destination connection ID */
4226 if (conn->dcid.len) {
4227 memcpy(*buf, conn->dcid.data, conn->dcid.len);
4228 *buf += conn->dcid.len;
4229 }
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004230
4231 return 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004232}
4233
4234/* Apply QUIC header protection to the packet with <buf> as first byte address,
4235 * <pn> as address of the Packet number field, <pnlen> being this field length
4236 * with <aead> as AEAD cipher and <key> as secret key.
4237 * Returns 1 if succeeded or 0 if failed.
4238 */
4239static int quic_apply_header_protection(unsigned char *buf, unsigned char *pn, size_t pnlen,
4240 const EVP_CIPHER *aead, const unsigned char *key)
4241{
4242 int i, ret, outlen;
4243 EVP_CIPHER_CTX *ctx;
4244 /* We need an IV of at least 5 bytes: one byte for bytes #0
4245 * and at most 4 bytes for the packet number
4246 */
4247 unsigned char mask[5] = {0};
4248
4249 ret = 0;
4250 ctx = EVP_CIPHER_CTX_new();
4251 if (!ctx)
4252 return 0;
4253
4254 if (!EVP_EncryptInit_ex(ctx, aead, NULL, key, pn + QUIC_PACKET_PN_MAXLEN) ||
4255 !EVP_EncryptUpdate(ctx, mask, &outlen, mask, sizeof mask) ||
4256 !EVP_EncryptFinal_ex(ctx, mask, &outlen))
4257 goto out;
4258
4259 *buf ^= mask[0] & (*buf & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f);
4260 for (i = 0; i < pnlen; i++)
4261 pn[i] ^= mask[i + 1];
4262
4263 ret = 1;
4264
4265 out:
4266 EVP_CIPHER_CTX_free(ctx);
4267
4268 return ret;
4269}
4270
4271/* Reduce the encoded size of <ack_frm> ACK frame removing the last
4272 * ACK ranges if needed to a value below <limit> in bytes.
4273 * Return 1 if succeeded, 0 if not.
4274 */
4275static int quic_ack_frm_reduce_sz(struct quic_frame *ack_frm, size_t limit)
4276{
4277 size_t room, ack_delay_sz;
4278
4279 ack_delay_sz = quic_int_getsize(ack_frm->tx_ack.ack_delay);
4280 /* A frame is made of 1 byte for the frame type. */
4281 room = limit - ack_delay_sz - 1;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01004282 if (!quic_rm_last_ack_ranges(ack_frm->tx_ack.arngs, room))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004283 return 0;
4284
Frédéric Lécaille8090b512020-11-30 16:19:22 +01004285 return 1 + ack_delay_sz + ack_frm->tx_ack.arngs->enc_sz;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004286}
4287
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02004288/* Prepare as most as possible CRYPTO or STREAM frames from their prebuilt frames
4289 * 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 +01004290 * and <*len> the packet Length field initialized with the number of bytes already present
4291 * 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 +02004292 * <headlen> is the number of bytes already present in this packet before building frames.
4293 *
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02004294 * Update consequently <*len> to reflect the size of these frames built
4295 * by this function. Also attach these frames to <pkt> QUIC packet.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004296 * Return 1 if succeeded, 0 if not.
4297 */
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02004298static inline int qc_build_frms(struct quic_tx_packet *pkt,
4299 size_t room, size_t *len, size_t headlen,
4300 struct quic_enc_level *qel,
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004301 struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004302{
Frédéric Lécailleea604992020-12-24 13:01:37 +01004303 int ret;
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02004304 struct quic_frame *cf;
Frédéric Lécaillec88df072021-07-27 11:43:11 +02004305 struct mt_list *tmp1, tmp2;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004306 size_t remain = quic_path_prep_data(qc->path);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004307
Frédéric Lécailleea604992020-12-24 13:01:37 +01004308 ret = 0;
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004309 if (*len > room || headlen > remain)
4310 return 0;
4311
Frédéric Lécailleea604992020-12-24 13:01:37 +01004312 /* If we are not probing we must take into an account the congestion
4313 * control window.
4314 */
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004315 if (!qc->tx.nb_pto_dgrams)
4316 room = QUIC_MIN(room, quic_path_prep_data(qc->path) - headlen);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004317 TRACE_PROTO("************** frames build (headlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004318 QUIC_EV_CONN_BCFRMS, qc, &headlen);
Frédéric Lécaillec88df072021-07-27 11:43:11 +02004319 mt_list_for_each_entry_safe(cf, &qel->pktns->tx.frms, mt_list, tmp1, tmp2) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004320 /* header length, data length, frame length. */
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004321 size_t hlen, dlen, dlen_sz, avail_room, flen;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004322
Frédéric Lécailleea604992020-12-24 13:01:37 +01004323 if (!room)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004324 break;
4325
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004326 switch (cf->type) {
4327 case QUIC_FT_CRYPTO:
4328 TRACE_PROTO(" New CRYPTO frame build (room, len)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004329 QUIC_EV_CONN_BCFRMS, qc, &room, len);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004330 /* Compute the length of this CRYPTO frame header */
4331 hlen = 1 + quic_int_getsize(cf->crypto.offset);
4332 /* Compute the data length of this CRyPTO frame. */
4333 dlen = max_stream_data_size(room, *len + hlen, cf->crypto.len);
4334 TRACE_PROTO(" CRYPTO data length (hlen, crypto.len, dlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004335 QUIC_EV_CONN_BCFRMS, qc, &hlen, &cf->crypto.len, &dlen);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004336 if (!dlen)
4337 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004338
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004339 /* CRYPTO frame length. */
4340 flen = hlen + quic_int_getsize(dlen) + dlen;
4341 TRACE_PROTO(" CRYPTO frame length (flen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004342 QUIC_EV_CONN_BCFRMS, qc, &flen);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004343 /* Add the CRYPTO data length and its encoded length to the packet
4344 * length and the length of this length.
4345 */
4346 *len += flen;
4347 room -= flen;
4348 if (dlen == cf->crypto.len) {
4349 /* <cf> CRYPTO data have been consumed. */
4350 MT_LIST_DELETE_SAFE(tmp1);
4351 LIST_APPEND(&pkt->frms, &cf->list);
4352 }
4353 else {
4354 struct quic_frame *new_cf;
4355
4356 new_cf = pool_alloc(pool_head_quic_frame);
4357 if (!new_cf) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004358 TRACE_PROTO("No memory for new crypto frame", QUIC_EV_CONN_BCFRMS, qc);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004359 return 0;
4360 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004361
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004362 new_cf->type = QUIC_FT_CRYPTO;
4363 new_cf->crypto.len = dlen;
4364 new_cf->crypto.offset = cf->crypto.offset;
4365 new_cf->crypto.qel = qel;
4366 LIST_APPEND(&pkt->frms, &new_cf->list);
4367 /* Consume <dlen> bytes of the current frame. */
4368 cf->crypto.len -= dlen;
4369 cf->crypto.offset += dlen;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004370 }
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004371 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004372
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004373 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004374 /* Note that these frames are accepted in short packets only without
4375 * "Length" packet field. Here, <*len> is used only to compute the
4376 * sum of the lengths of the already built frames for this packet.
Frédéric Lécailled8b84432021-12-10 15:18:36 +01004377 *
4378 * Compute the length of this STREAM frame "header" made a all the field
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004379 * excepting the variable ones. Note that +1 is for the type of this frame.
4380 */
4381 hlen = 1 + quic_int_getsize(cf->stream.id) +
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02004382 ((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 +02004383 /* Compute the data length of this STREAM frame. */
4384 avail_room = room - hlen - *len;
4385 if ((ssize_t)avail_room <= 0)
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02004386 break;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004387
Frédéric Lécailled8b84432021-12-10 15:18:36 +01004388 TRACE_PROTO(" New STREAM frame build (room, len)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004389 QUIC_EV_CONN_BCFRMS, qc, &room, len);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004390 if (cf->type & QUIC_STREAM_FRAME_TYPE_LEN_BIT) {
4391 dlen = max_available_room(avail_room, &dlen_sz);
4392 if (dlen > cf->stream.len) {
4393 dlen = cf->stream.len;
4394 }
4395 dlen_sz = quic_int_getsize(dlen);
4396 flen = hlen + dlen_sz + dlen;
4397 }
4398 else {
4399 dlen = QUIC_MIN(avail_room, cf->stream.len);
4400 flen = hlen + dlen;
4401 }
4402 TRACE_PROTO(" STREAM data length (hlen, stream.len, dlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004403 QUIC_EV_CONN_BCFRMS, qc, &hlen, &cf->stream.len, &dlen);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004404 TRACE_PROTO(" STREAM frame length (flen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004405 QUIC_EV_CONN_BCFRMS, qc, &flen);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004406 /* Add the STREAM data length and its encoded length to the packet
4407 * length and the length of this length.
4408 */
4409 *len += flen;
4410 room -= flen;
4411 if (dlen == cf->stream.len) {
4412 /* <cf> STREAM data have been consumed. */
4413 MT_LIST_DELETE_SAFE(tmp1);
4414 LIST_APPEND(&pkt->frms, &cf->list);
4415 }
4416 else {
4417 struct quic_frame *new_cf;
4418
4419 new_cf = pool_zalloc(pool_head_quic_frame);
4420 if (!new_cf) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004421 TRACE_PROTO("No memory for new STREAM frame", QUIC_EV_CONN_BCFRMS, qc);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004422 return 0;
4423 }
4424
4425 new_cf->type = cf->type;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02004426 new_cf->stream.qcs = cf->stream.qcs;
4427 new_cf->stream.buf = cf->stream.buf;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004428 new_cf->stream.id = cf->stream.id;
4429 if (cf->type & QUIC_STREAM_FRAME_TYPE_OFF_BIT)
4430 new_cf->stream.offset = cf->stream.offset;
4431 new_cf->stream.len = dlen;
4432 new_cf->type |= QUIC_STREAM_FRAME_TYPE_LEN_BIT;
4433 /* FIN bit reset */
4434 new_cf->type &= ~QUIC_STREAM_FRAME_TYPE_FIN_BIT;
4435 new_cf->stream.data = cf->stream.data;
4436 LIST_APPEND(&pkt->frms, &new_cf->list);
4437 cf->type |= QUIC_STREAM_FRAME_TYPE_OFF_BIT;
4438 /* Consume <dlen> bytes of the current frame. */
4439 cf->stream.len -= dlen;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02004440 cf->stream.offset.key += dlen;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02004441 cf->stream.data += dlen;
4442 }
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02004443 break;
4444
4445 default:
4446 flen = qc_frm_len(cf);
4447 BUG_ON(!flen);
4448 if (flen > room)
4449 continue;
4450
4451 *len += flen;
4452 room -= flen;
4453 MT_LIST_DELETE_SAFE(tmp1);
4454 LIST_APPEND(&pkt->frms, &cf->list);
4455 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004456 }
Frédéric Lécailleea604992020-12-24 13:01:37 +01004457 ret = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004458 }
4459
Frédéric Lécailleea604992020-12-24 13:01:37 +01004460 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004461}
4462
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004463/* This function builds a clear packet from <pkt> information (its type)
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02004464 * into a buffer with <pos> as position pointer and <qel> as QUIC TLS encryption
4465 * level for <conn> QUIC connection and <qel> as QUIC TLS encryption level,
4466 * filling the buffer with as much frames as possible.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004467 * 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 +02004468 * 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 +02004469 * having returned from this function.
4470 * 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 +01004471 * number field in this packet. <pn_len> will also have the packet number
4472 * length as value.
4473 *
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004474 * Return 1 if succeeded (enough room to buile this packet), O if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004475 */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004476static int qc_do_build_pkt(unsigned char *pos, const unsigned char *end,
4477 size_t dglen, struct quic_tx_packet *pkt,
4478 int64_t pn, size_t *pn_len, unsigned char **buf_pn,
4479 int ack, int padding, int cc, int nb_pto_dgrams,
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004480 struct quic_enc_level *qel, struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004481{
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004482 unsigned char *beg;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01004483 size_t len, len_sz, len_frms, padding_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004484 struct quic_frame frm = { .type = QUIC_FT_CRYPTO, };
4485 struct quic_frame ack_frm = { .type = QUIC_FT_ACK, };
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01004486 struct quic_frame cc_frm = { . type = QUIC_FT_CONNECTION_CLOSE, };
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01004487 size_t ack_frm_len, head_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004488 int64_t largest_acked_pn;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004489 int add_ping_frm;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004490
Frédéric Lécailleea604992020-12-24 13:01:37 +01004491 /* Length field value with CRYPTO frames if present. */
4492 len_frms = 0;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004493 beg = pos;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01004494 /* When not probing and not acking, and no immediate close is required,
4495 * reduce the size of this buffer to respect
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004496 * the congestion controller window. So, we do not limit the size of this
4497 * packet if we have an ACK frame to send because an ACK frame is not
4498 * ack-eliciting. This size will be limited if we have ack-eliciting
4499 * frames to send from qel->pktns->tx.frms.
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004500 */
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01004501 if (!nb_pto_dgrams && !ack && !cc) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004502 size_t path_room;
4503
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004504 path_room = quic_path_prep_data(qc->path);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004505 if (end - beg > path_room)
4506 end = beg + path_room;
4507 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004508
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004509 /* Ensure there is enough room for the TLS encryption tag and a zero token
4510 * length field if any.
4511 */
4512 if (end - pos < QUIC_TLS_TAG_LEN +
4513 (pkt->type == QUIC_PACKET_TYPE_INITIAL ? 1 : 0))
4514 goto no_room;
4515
4516 end -= QUIC_TLS_TAG_LEN;
Frédéric Lécaillee1aa0d32021-08-03 16:03:09 +02004517 largest_acked_pn = HA_ATOMIC_LOAD(&qel->pktns->tx.largest_acked_pn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004518 /* packet number length */
4519 *pn_len = quic_packet_number_length(pn, largest_acked_pn);
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004520 /* Build the header */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004521 if ((pkt->type == QUIC_PACKET_TYPE_SHORT &&
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004522 !quic_build_packet_short_header(&pos, end, *pn_len, qc, qel->tls_ctx.flags)) ||
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004523 (pkt->type != QUIC_PACKET_TYPE_SHORT &&
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004524 !quic_build_packet_long_header(&pos, end, pkt->type, *pn_len, qc)))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004525 goto no_room;
4526
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004527 /* XXX FIXME XXX Encode the token length (0) for an Initial packet. */
4528 if (pkt->type == QUIC_PACKET_TYPE_INITIAL)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004529 *pos++ = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01004530 head_len = pos - beg;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004531 /* Build an ACK frame if required. */
4532 ack_frm_len = 0;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01004533 if (!cc && ack && !eb_is_empty(&qel->pktns->rx.arngs.root)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004534 ack_frm.tx_ack.ack_delay = 0;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01004535 ack_frm.tx_ack.arngs = &qel->pktns->rx.arngs;
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004536 /* XXX BE CAREFUL XXX : here we reserved at least one byte for the
4537 * smallest frame (PING) and <*pn_len> more for the packet number. Note
4538 * that from here, we do not know if we will have to send a PING frame.
4539 * This will be decided after having computed the ack-eliciting frames
4540 * to be added to this packet.
4541 */
4542 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 +01004543 if (!ack_frm_len)
4544 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004545 }
4546
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004547 /* Length field value without the ack-eliciting frames. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004548 len = ack_frm_len + *pn_len;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01004549 len_frms = 0;
4550 if (!cc && !MT_LIST_ISEMPTY(&qel->pktns->tx.frms)) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004551 ssize_t room = end - pos;
Frédéric Lécailleea604992020-12-24 13:01:37 +01004552
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004553 /* Initialize the length of the frames built below to <len>.
4554 * If any frame could be successfully built by qc_build_frms(),
4555 * we will have len_frms > len.
4556 */
4557 len_frms = len;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004558 if (!qc_build_frms(pkt, end - pos, &len_frms, pos - beg, qel, qc)) {
Frédéric Lécailleea604992020-12-24 13:01:37 +01004559 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004560 qc, NULL, NULL, &room);
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004561 }
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004562 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004563
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01004564 /* Length (of the remaining data). Must not fail because, the buffer size
4565 * has been checked above. Note that we have reserved QUIC_TLS_TAG_LEN bytes
4566 * for the encryption tag. It must be taken into an account for the length
4567 * of this packet.
4568 */
4569 if (len_frms)
4570 len = len_frms + QUIC_TLS_TAG_LEN;
4571 else
4572 len += QUIC_TLS_TAG_LEN;
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01004573 /* CONNECTION_CLOSE frame */
4574 if (cc) {
4575 struct quic_connection_close *cc = &cc_frm.connection_close;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01004576
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004577 cc->error_code = qc->err_code;
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01004578 len += qc_frm_len(&cc_frm);
4579 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004580 add_ping_frm = 0;
4581 padding_len = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01004582 len_sz = quic_int_getsize(len);
4583 /* Add this packet size to <dglen> */
4584 dglen += head_len + len_sz + len;
4585 if (padding && dglen < QUIC_INITIAL_PACKET_MINLEN) {
4586 /* This is a maximum padding size */
4587 padding_len = QUIC_INITIAL_PACKET_MINLEN - dglen;
4588 /* The length field value is of this packet is <len> + <padding_len>
4589 * the size of which may be greater than the initial computed size
4590 * <len_sz>. So, let's deduce the difference betwen these to packet
4591 * sizes from <padding_len>.
4592 */
4593 padding_len -= quic_int_getsize(len + padding_len) - len_sz;
4594 len += padding_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004595 }
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004596 else if (LIST_ISEMPTY(&pkt->frms) || len_frms == len) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004597 if (qel->pktns->tx.pto_probe) {
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004598 /* If we cannot send a frame, we send a PING frame. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004599 add_ping_frm = 1;
4600 len += 1;
4601 }
4602 /* 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 +01004603 if (!ack_frm_len && !cc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004604 len += padding_len = QUIC_PACKET_PN_MAXLEN - *pn_len;
4605 }
4606
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004607 if (pkt->type != QUIC_PACKET_TYPE_SHORT && !quic_enc_int(&pos, end, len))
4608 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004609
4610 /* Packet number field address. */
4611 *buf_pn = pos;
4612
4613 /* Packet number encoding. */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004614 if (!quic_packet_number_encode(&pos, end, pn, *pn_len))
4615 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004616
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004617 if (ack_frm_len && !qc_build_frm(&pos, end, &ack_frm, pkt, qc))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004618 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004619
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004620 /* Ack-eliciting frames */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004621 if (!LIST_ISEMPTY(&pkt->frms)) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02004622 struct quic_frame *cf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004623
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004624 TRACE_PROTO("Ack eliciting frame", QUIC_EV_CONN_HPKT, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004625 list_for_each_entry(cf, &pkt->frms, list) {
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004626 if (!qc_build_frm(&pos, end, cf, pkt, qc)) {
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01004627 ssize_t room = end - pos;
4628 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004629 qc, NULL, NULL, &room);
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004630 break;
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01004631 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004632 }
4633 }
4634
4635 /* Build a PING frame if needed. */
4636 if (add_ping_frm) {
4637 frm.type = QUIC_FT_PING;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004638 if (!qc_build_frm(&pos, end, &frm, pkt, qc))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004639 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004640 }
4641
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01004642 /* Build a CONNECTION_CLOSE frame if needed. */
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004643 if (cc && !qc_build_frm(&pos, end, &cc_frm, pkt, qc))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004644 goto no_room;
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01004645
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004646 /* Build a PADDING frame if needed. */
4647 if (padding_len) {
4648 frm.type = QUIC_FT_PADDING;
4649 frm.padding.len = padding_len;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01004650 if (!qc_build_frm(&pos, end, &frm, pkt, qc))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004651 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004652 }
4653
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004654 /* Always reset this variable as this function has no idea
4655 * if it was set. It is handle by the loss detection timer.
4656 */
4657 qel->pktns->tx.pto_probe = 0;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004658 pkt->len = pos - beg;
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004659
4660 return 1;
4661
4662 no_room:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004663 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004664 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004665}
4666
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02004667static inline void quic_tx_packet_init(struct quic_tx_packet *pkt, int type)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004668{
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02004669 pkt->type = type;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004670 pkt->len = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004671 pkt->in_flight_len = 0;
Frédéric Lécaille0371cd52021-12-13 12:30:54 +01004672 pkt->pn_node.key = (uint64_t)-1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004673 LIST_INIT(&pkt->frms);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004674 pkt->next = NULL;
4675 pkt->refcnt = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004676}
4677
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05004678/* Free <pkt> TX packet which has not already attached to any tree. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004679static inline void free_quic_tx_packet(struct quic_tx_packet *pkt)
4680{
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02004681 struct quic_frame *frm, *frmbak;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004682
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004683 if (!pkt)
4684 return;
4685
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004686 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004687 LIST_DELETE(&frm->list);
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02004688 pool_free(pool_head_quic_frame, frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004689 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004690 quic_tx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004691}
4692
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02004693/* Build a packet into <buf> packet buffer with <pkt_type> as packet
4694 * type for <qc> QUIC connection from <qel> encryption level.
4695 * Return -2 if the packet could not be allocated or encrypted for any reason,
4696 * -1 if there was not enough room to build a packet.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004697 */
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02004698static struct quic_tx_packet *qc_build_pkt(unsigned char **pos,
4699 const unsigned char *buf_end,
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004700 struct quic_enc_level *qel,
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01004701 struct quic_conn *qc, size_t dglen, int padding,
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01004702 int pkt_type, int ack, int nb_pto_dgrams, int cc, int *err)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004703{
4704 /* The pointer to the packet number field. */
4705 unsigned char *buf_pn;
4706 unsigned char *beg, *end, *payload;
4707 int64_t pn;
4708 size_t pn_len, payload_len, aad_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004709 struct quic_tls_ctx *tls_ctx;
4710 struct quic_tx_packet *pkt;
4711
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004712 TRACE_ENTER(QUIC_EV_CONN_HPKT, qc, NULL, qel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004713 *err = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004714 pkt = pool_alloc(pool_head_quic_tx_packet);
4715 if (!pkt) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004716 TRACE_DEVEL("Not enough memory for a new packet", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004717 *err = -2;
4718 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004719 }
4720
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02004721 quic_tx_packet_init(pkt, pkt_type);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004722 beg = *pos;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004723 pn_len = 0;
4724 buf_pn = NULL;
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004725
4726 pn = qel->pktns->tx.next_pn + 1;
4727 if (!qc_do_build_pkt(*pos, buf_end, dglen, pkt, pn, &pn_len, &buf_pn,
4728 ack, padding, cc, nb_pto_dgrams, qel, qc)) {
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02004729 *err = -1;
4730 goto err;
4731 }
4732
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004733 end = beg + pkt->len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004734 payload = buf_pn + pn_len;
4735 payload_len = end - payload;
4736 aad_len = payload - beg;
4737
4738 tls_ctx = &qel->tls_ctx;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004739 if (!quic_packet_encrypt(payload, payload_len, beg, aad_len, pn, tls_ctx, qc->conn)) {
4740 *err = -2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004741 goto err;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004742 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004743
4744 end += QUIC_TLS_TAG_LEN;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004745 pkt->len += QUIC_TLS_TAG_LEN;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004746 if (!quic_apply_header_protection(beg, buf_pn, pn_len,
4747 tls_ctx->tx.hp, tls_ctx->tx.hp_key)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004748 TRACE_DEVEL("Could not apply the header protection", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004749 *err = -2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004750 goto err;
4751 }
4752
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01004753 /* Consume a packet number */
4754 qel->pktns->tx.next_pn++;
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +01004755 qc->tx.prep_bytes += pkt->len;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004756 /* Now that a correct packet is built, let us consume <*pos> buffer. */
4757 *pos = end;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004758 /* Attach the built packet to its tree. */
Frédéric Lécaillea7348f62021-08-03 16:50:14 +02004759 pkt->pn_node.key = pn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004760 /* Set the packet in fligth length for in flight packet only. */
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004761 if (pkt->flags & QUIC_FL_TX_PACKET_IN_FLIGHT) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004762 pkt->in_flight_len = pkt->len;
4763 qc->path->prep_in_flight += pkt->len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004764 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004765 pkt->pktns = qel->pktns;
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004766 TRACE_LEAVE(QUIC_EV_CONN_HPKT, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004767
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004768 return pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004769
4770 err:
4771 free_quic_tx_packet(pkt);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004772 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004773 return NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004774}
4775
Frédéric Lécaillefbe3b772021-03-03 16:23:44 +01004776/* Copy up to <count> bytes from connection <conn> internal stream storage into buffer <buf>.
4777 * Return the number of bytes which have been copied.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004778 */
Frédéric Lécaillefbe3b772021-03-03 16:23:44 +01004779static size_t quic_conn_to_buf(struct connection *conn, void *xprt_ctx,
4780 struct buffer *buf, size_t count, int flags)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004781{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004782 size_t try, done = 0;
4783
4784 if (!conn_ctrl_ready(conn))
4785 return 0;
4786
4787 if (!fd_recv_ready(conn->handle.fd))
4788 return 0;
4789
4790 conn->flags &= ~CO_FL_WAIT_ROOM;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004791
4792 /* read the largest possible block. For this, we perform only one call
4793 * to recv() unless the buffer wraps and we exactly fill the first hunk,
Frédéric Lécaillefbe3b772021-03-03 16:23:44 +01004794 * in which case we accept to do it once again.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004795 */
4796 while (count > 0) {
4797 try = b_contig_space(buf);
4798 if (!try)
4799 break;
4800
4801 if (try > count)
4802 try = count;
4803
Frédéric Lécaillefbe3b772021-03-03 16:23:44 +01004804 b_add(buf, try);
4805 done += try;
4806 count -= try;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004807 }
4808
4809 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN) && done)
4810 conn->flags &= ~CO_FL_WAIT_L4_CONN;
4811
4812 leave:
4813 return done;
4814
4815 read0:
4816 conn_sock_read0(conn);
4817 conn->flags &= ~CO_FL_WAIT_L4_CONN;
4818
4819 /* Now a final check for a possible asynchronous low-level error
4820 * report. This can happen when a connection receives a reset
4821 * after a shutdown, both POLL_HUP and POLL_ERR are queued, and
4822 * we might have come from there by just checking POLL_HUP instead
4823 * of recv()'s return value 0, so we have no way to tell there was
4824 * an error without checking.
4825 */
Willy Tarreauf5090652021-04-06 17:23:40 +02004826 if (unlikely(fdtab[conn->handle.fd].state & FD_POLL_ERR))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004827 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
4828 goto leave;
4829}
4830
4831
4832/* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s
4833 * socket. <flags> may contain some CO_SFL_* flags to hint the system about
4834 * other pending data for example, but this flag is ignored at the moment.
4835 * Only one call to send() is performed, unless the buffer wraps, in which case
4836 * a second call may be performed. The connection's flags are updated with
4837 * whatever special event is detected (error, empty). The caller is responsible
4838 * for taking care of those events and avoiding the call if inappropriate. The
4839 * function does not call the connection's polling update function, so the caller
4840 * is responsible for this. It's up to the caller to update the buffer's contents
4841 * based on the return value.
4842 */
4843static size_t quic_conn_from_buf(struct connection *conn, void *xprt_ctx, const struct buffer *buf, size_t count, int flags)
4844{
4845 ssize_t ret;
4846 size_t try, done;
4847 int send_flag;
4848
4849 if (!conn_ctrl_ready(conn))
4850 return 0;
4851
4852 if (!fd_send_ready(conn->handle.fd))
4853 return 0;
4854
4855 done = 0;
4856 /* send the largest possible block. For this we perform only one call
4857 * to send() unless the buffer wraps and we exactly fill the first hunk,
4858 * in which case we accept to do it once again.
4859 */
4860 while (count) {
4861 try = b_contig_data(buf, done);
4862 if (try > count)
4863 try = count;
4864
4865 send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
4866 if (try < count || flags & CO_SFL_MSG_MORE)
4867 send_flag |= MSG_MORE;
4868
4869 ret = sendto(conn->handle.fd, b_peek(buf, done), try, send_flag,
4870 (struct sockaddr *)conn->dst, get_addr_len(conn->dst));
4871 if (ret > 0) {
4872 count -= ret;
4873 done += ret;
4874
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05004875 /* A send succeeded, so we can consider ourself connected */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004876 conn->flags |= CO_FL_WAIT_L4L6;
4877 /* if the system buffer is full, don't insist */
4878 if (ret < try)
4879 break;
4880 }
4881 else if (ret == 0 || errno == EAGAIN || errno == ENOTCONN || errno == EINPROGRESS) {
4882 /* nothing written, we need to poll for write first */
4883 fd_cant_send(conn->handle.fd);
4884 break;
4885 }
4886 else if (errno != EINTR) {
4887 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
4888 break;
4889 }
4890 }
4891 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN) && done)
4892 conn->flags &= ~CO_FL_WAIT_L4_CONN;
4893
4894 if (done > 0) {
4895 /* we count the total bytes sent, and the send rate for 32-byte
4896 * blocks. The reason for the latter is that freq_ctr are
4897 * limited to 4GB and that it's not enough per second.
4898 */
4899 _HA_ATOMIC_ADD(&global.out_bytes, done);
4900 update_freq_ctr(&global.out_32bps, (done + 16) / 32);
4901 }
4902 return done;
4903}
4904
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01004905/* Called from the upper layer, to subscribe <es> to events <event_type>. The
4906 * event subscriber <es> is not allowed to change from a previous call as long
4907 * as at least one event is still subscribed. The <event_type> must only be a
4908 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
4909 */
4910static int quic_conn_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
4911{
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02004912 struct qcc *qcc = conn->qc->qcc;
4913
4914 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
4915 BUG_ON(qcc->subs && qcc->subs != es);
4916
4917 es->events |= event_type;
4918 qcc->subs = es;
4919
4920 if (event_type & SUB_RETRY_RECV)
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004921 TRACE_DEVEL("subscribe(recv)", QUIC_EV_CONN_XPRTRECV, conn->qc, qcc);
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02004922
4923 if (event_type & SUB_RETRY_SEND)
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004924 TRACE_DEVEL("subscribe(send)", QUIC_EV_CONN_XPRTSEND, conn->qc, qcc);
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02004925
4926 return 0;
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01004927}
4928
4929/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
4930 * The <es> pointer is not allowed to differ from the one passed to the
4931 * subscribe() call. It always returns zero.
4932 */
4933static int quic_conn_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
4934{
4935 return conn_unsubscribe(conn, xprt_ctx, event_type, es);
4936}
4937
Frédéric Lécaille75dd2b72021-09-28 09:51:23 +02004938/* Try to allocate the <*ssl> SSL session object for <qc> QUIC connection
4939 * with <ssl_ctx> as SSL context inherited settings. Also set the transport
4940 * parameters of this session.
4941 * This is the responsibility of the caller to check the validity of all the
4942 * pointers passed as parameter to this function.
4943 * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <qc->conn> to
4944 * CO_ER_SSL_NO_MEM.
4945 */
4946static int qc_ssl_sess_init(struct quic_conn *qc, SSL_CTX *ssl_ctx, SSL **ssl,
4947 unsigned char *params, size_t params_len)
4948{
4949 int retry;
4950
4951 retry = 1;
4952 retry:
4953 *ssl = SSL_new(ssl_ctx);
4954 if (!*ssl) {
4955 if (!retry--)
4956 goto err;
4957
4958 pool_gc(NULL);
4959 goto retry;
4960 }
4961
4962 if (!SSL_set_quic_method(*ssl, &ha_quic_method) ||
4963 !SSL_set_ex_data(*ssl, ssl_app_data_index, qc->conn) ||
4964 !SSL_set_quic_transport_params(*ssl, qc->enc_params, qc->enc_params_len)) {
4965 goto err;
4966
4967 SSL_free(*ssl);
4968 *ssl = NULL;
4969 if (!retry--)
4970 goto err;
4971
4972 pool_gc(NULL);
4973 goto retry;
4974 }
4975
4976 return 0;
4977
4978 err:
4979 qc->conn->err_code = CO_ER_SSL_NO_MEM;
4980 return -1;
4981}
4982
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004983/* Initialize a QUIC connection (quic_conn struct) to be attached to <conn>
4984 * connection with <xprt_ctx> as address of the xprt context.
4985 * Returns 1 if succeeded, 0 if not.
4986 */
4987static int qc_conn_init(struct connection *conn, void **xprt_ctx)
4988{
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02004989 struct ssl_sock_ctx *ctx;
Amaury Denoyelle7ca7c842021-12-22 18:20:38 +01004990 struct quic_conn *qc = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004991
4992 TRACE_ENTER(QUIC_EV_CONN_NEW, conn);
4993
4994 if (*xprt_ctx)
4995 goto out;
4996
Frédéric Lécailled77c50b2021-11-23 15:59:59 +01004997 ctx = pool_zalloc(pool_head_quic_conn_ctx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004998 if (!ctx) {
4999 conn->err_code = CO_ER_SYS_MEMLIM;
5000 goto err;
5001 }
5002
5003 ctx->wait_event.tasklet = tasklet_new();
5004 if (!ctx->wait_event.tasklet) {
5005 conn->err_code = CO_ER_SYS_MEMLIM;
5006 goto err;
5007 }
5008
5009 ctx->wait_event.tasklet->process = quic_conn_io_cb;
5010 ctx->wait_event.tasklet->context = ctx;
5011 ctx->wait_event.events = 0;
Frédéric Lécailled77c50b2021-11-23 15:59:59 +01005012 HA_ATOMIC_STORE(&ctx->conn, conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005013 ctx->subs = NULL;
5014 ctx->xprt_ctx = NULL;
5015
5016 ctx->xprt = xprt_get(XPRT_QUIC);
5017 if (objt_server(conn->target)) {
5018 /* Server */
5019 struct server *srv = __objt_server(conn->target);
Amaury Denoyelled4962512021-12-14 17:17:28 +01005020 unsigned char dcid[QUIC_HAP_CID_LEN];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005021 int ssl_err, ipv4;
5022
5023 ssl_err = SSL_ERROR_NONE;
5024 if (RAND_bytes(dcid, sizeof dcid) != 1)
5025 goto err;
5026
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005027 ipv4 = conn->dst->ss_family == AF_INET;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02005028 qc = qc_new_conn(QUIC_PROTOCOL_VERSION_DRAFT_28, ipv4,
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01005029 dcid, sizeof dcid, 0, NULL, 0, 0, srv);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02005030 if (qc == NULL)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005031 goto err;
5032
Amaury Denoyellec15dd922021-12-21 11:41:52 +01005033 ctx->qc = qc;
5034
Frédéric Lécaille6de72872021-06-11 15:44:24 +02005035 /* Insert our SCID, the connection ID for the QUIC client. */
5036 ebmb_insert(&srv->cids, &qc->scid_node, qc->scid.len);
5037
5038 conn->qc = qc;
5039 qc->conn = conn;
Frédéric Lécaille2fc76cf2021-08-31 19:10:40 +02005040 if (!qc_new_isecs(qc, initial_salt_v1, sizeof initial_salt_v1,
5041 dcid, sizeof dcid, 0))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005042 goto err;
5043
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02005044 qc->rx.params = srv->quic_params;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005045 /* Copy the initial source connection ID. */
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02005046 quic_cid_cpy(&qc->rx.params.initial_source_connection_id, &qc->scid);
5047 qc->enc_params_len =
5048 quic_transport_params_encode(qc->enc_params, qc->enc_params + sizeof qc->enc_params,
5049 &qc->rx.params, 0);
5050 if (!qc->enc_params_len)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005051 goto err;
5052
Frédéric Lécaille75dd2b72021-09-28 09:51:23 +02005053 if (qc_ssl_sess_init(qc, srv->ssl_ctx.ctx, &ctx->ssl,
5054 qc->enc_params, qc->enc_params_len) == -1)
5055 goto err;
5056
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02005057 SSL_set_quic_transport_params(ctx->ssl, qc->enc_params, qc->enc_params_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005058 SSL_set_connect_state(ctx->ssl);
5059 ssl_err = SSL_do_handshake(ctx->ssl);
5060 if (ssl_err != 1) {
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02005061 int st;
5062
5063 st = HA_ATOMIC_LOAD(&qc->state);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005064 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
5065 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02005066 TRACE_PROTO("SSL handshake", QUIC_EV_CONN_HDSHK, ctx->conn, &st, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005067 }
5068 else {
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02005069 TRACE_DEVEL("SSL handshake error", QUIC_EV_CONN_HDSHK, ctx->conn, &st, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005070 goto err;
5071 }
5072 }
5073 }
5074 else if (objt_listener(conn->target)) {
5075 /* Listener */
5076 struct bind_conf *bc = __objt_listener(conn->target)->bind_conf;
5077
Amaury Denoyelle7ca7c842021-12-22 18:20:38 +01005078 qc = ctx->conn->qc;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01005079 ctx->qc = qc;
5080
Frédéric Lécaillef57c3332021-12-09 10:06:21 +01005081 qc->tid = ctx->wait_event.tasklet->tid = quic_get_cid_tid(&qc->scid);
Frédéric Lécaille75dd2b72021-09-28 09:51:23 +02005082 if (qc_ssl_sess_init(qc, bc->initial_ctx, &ctx->ssl,
5083 qc->enc_params, qc->enc_params_len) == -1)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005084 goto err;
5085
Frédéric Lécaillead3c07a2021-12-14 19:23:43 +01005086 /* Enabling 0-RTT */
5087 if (bc->ssl_conf.early_data)
5088 SSL_set_quic_early_data_enabled(ctx->ssl, 1);
5089
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005090 SSL_set_accept_state(ctx->ssl);
5091 }
5092
Frédéric Lécailled77c50b2021-11-23 15:59:59 +01005093 HA_ATOMIC_STORE(xprt_ctx, ctx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005094
5095 /* Leave init state and start handshake */
5096 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005097
5098 out:
Amaury Denoyelle7ca7c842021-12-22 18:20:38 +01005099 HA_ATOMIC_STORE(&qc->xprt_ctx, ctx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005100 TRACE_LEAVE(QUIC_EV_CONN_NEW, conn);
5101
5102 return 0;
5103
5104 err:
Willy Tarreau7deb28c2021-05-10 07:40:27 +02005105 if (ctx && ctx->wait_event.tasklet)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005106 tasklet_free(ctx->wait_event.tasklet);
5107 pool_free(pool_head_quic_conn_ctx, ctx);
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +01005108 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_NEW, conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005109 return -1;
5110}
5111
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005112/* Start the QUIC transport layer */
5113static int qc_xprt_start(struct connection *conn, void *ctx)
5114{
5115 struct quic_conn *qc;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02005116 struct ssl_sock_ctx *qctx = ctx;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005117
5118 qc = conn->qc;
5119 if (!quic_conn_init_timer(qc)) {
5120 TRACE_PROTO("Non initialized timer", QUIC_EV_CONN_LPKT, conn);
5121 return 0;
5122 }
5123
5124 tasklet_wakeup(qctx->wait_event.tasklet);
5125 return 1;
5126}
5127
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005128/* transport-layer operations for QUIC connections. */
5129static struct xprt_ops ssl_quic = {
Amaury Denoyelle414cac52021-09-22 11:14:37 +02005130 .close = quic_close,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005131 .snd_buf = quic_conn_from_buf,
5132 .rcv_buf = quic_conn_to_buf,
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01005133 .subscribe = quic_conn_subscribe,
5134 .unsubscribe = quic_conn_unsubscribe,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005135 .init = qc_conn_init,
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005136 .start = qc_xprt_start,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005137 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
5138 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01005139 .get_alpn = ssl_sock_get_alpn,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005140 .name = "QUIC",
5141};
5142
5143__attribute__((constructor))
5144static void __quic_conn_init(void)
5145{
5146 ha_quic_meth = BIO_meth_new(0x666, "ha QUIC methods");
5147 xprt_register(XPRT_QUIC, &ssl_quic);
5148}
5149
5150__attribute__((destructor))
5151static void __quic_conn_deinit(void)
5152{
5153 BIO_meth_free(ha_quic_meth);
5154}
5155
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005156/* Read all the QUIC packets found in <buf> from QUIC connection with <owner>
5157 * as owner calling <func> function.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05005158 * Return the number of bytes read if succeeded, -1 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005159 */
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005160static ssize_t quic_dgram_read(struct buffer *buf, size_t len, void *owner,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005161 struct sockaddr_storage *saddr, qpkt_read_func *func)
5162{
5163 unsigned char *pos;
5164 const unsigned char *end;
5165 struct quic_dgram_ctx dgram_ctx = {
Amaury Denoyelleadb22762021-12-14 15:04:14 +01005166 .qc = NULL,
5167 .dcid.len = 0,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005168 .owner = owner,
5169 };
5170
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005171 pos = (unsigned char *)b_head(buf);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005172 end = pos + len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005173 do {
5174 int ret;
5175 struct quic_rx_packet *pkt;
5176
Willy Tarreaue4498932021-03-22 21:13:05 +01005177 pkt = pool_zalloc(pool_head_quic_rx_packet);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005178 if (!pkt)
5179 goto err;
5180
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005181 quic_rx_packet_refinc(pkt);
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005182 ret = func(pos, end, pkt, &dgram_ctx, saddr);
5183 pos += pkt->len;
Frédéric Lécaille310d1bd2021-09-22 15:10:49 +02005184 quic_rx_packet_refdec(pkt);
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005185 if (ret == -1)
Frédéric Lécaille865b0782021-09-23 07:33:20 +02005186 /* If the packet length could not be found, we cannot continue. */
5187 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005188 } while (pos < end);
5189
5190 /* Increasing the received bytes counter by the UDP datagram length
5191 * if this datagram could be associated to a connection.
5192 */
5193 if (dgram_ctx.qc)
5194 dgram_ctx.qc->rx.bytes += len;
5195
5196 return pos - (unsigned char *)buf;
5197
5198 err:
5199 return -1;
5200}
5201
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005202ssize_t quic_lstnr_dgram_read(struct buffer *buf, size_t len, void *owner,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005203 struct sockaddr_storage *saddr)
5204{
5205 return quic_dgram_read(buf, len, owner, saddr, qc_lstnr_pkt_rcv);
5206}
5207
Amaury Denoyelle118b2cb2021-11-25 16:05:16 +01005208/* Function to automatically activate QUIC traces on stdout.
5209 * Activated via the compilation flag -DENABLE_QUIC_STDOUT_TRACES.
5210 * Main use for now is in the docker image for QUIC interop testing.
5211 */
5212static void quic_init_stdout_traces(void)
5213{
5214#ifdef ENABLE_QUIC_STDOUT_TRACES
5215 trace_quic.sink = sink_find("stdout");
5216 trace_quic.level = TRACE_LEVEL_DEVELOPER;
Amaury Denoyelle118b2cb2021-11-25 16:05:16 +01005217 trace_quic.state = TRACE_STATE_RUNNING;
5218#endif
5219}
5220INITCALL0(STG_INIT, quic_init_stdout_traces);
5221
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005222/*
5223 * Local variables:
5224 * c-indent-level: 8
5225 * c-basic-offset: 8
5226 * End:
5227 */