blob: 524c42d2e1d40ae4005e02cc86228f8e9e80c0cb [file] [log] [blame]
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001/*
2 * QUIC transport layer over SOCK_DGRAM sockets.
3 *
Willy Tarreau3dfb7da2022-03-02 22:33:39 +01004 * Copyright 2020 HAProxy Technologies, Frederic Lecaille <flecaille@haproxy.com>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005 *
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>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010015#include <stdio.h>
16#include <stdlib.h>
17
18#include <sys/socket.h>
19#include <sys/stat.h>
20#include <sys/types.h>
21
22#include <netinet/tcp.h>
23
Amaury Denoyelleeb01f592021-10-07 16:44:05 +020024#include <import/ebmbtree.h>
25
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010026#include <haproxy/buf-t.h>
27#include <haproxy/compat.h>
28#include <haproxy/api.h>
29#include <haproxy/debug.h>
30#include <haproxy/tools.h>
31#include <haproxy/ticks.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010032
33#include <haproxy/connection.h>
34#include <haproxy/fd.h>
35#include <haproxy/freq_ctr.h>
36#include <haproxy/global.h>
Frédéric Lécailledfbae762021-02-18 09:59:01 +010037#include <haproxy/h3.h>
Amaury Denoyelle154bc7f2021-11-12 16:09:54 +010038#include <haproxy/hq_interop.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010039#include <haproxy/log.h>
Frédéric Lécailledfbae762021-02-18 09:59:01 +010040#include <haproxy/mux_quic.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010041#include <haproxy/pipe.h>
42#include <haproxy/proxy.h>
43#include <haproxy/quic_cc.h>
44#include <haproxy/quic_frame.h>
45#include <haproxy/quic_loss.h>
Amaury Denoyellecfa2d562022-01-19 16:01:05 +010046#include <haproxy/quic_sock.h>
Amaury Denoyelle0cc02a32022-04-19 17:21:11 +020047#include <haproxy/quic_stream.h>
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +020048#include <haproxy/cbuf.h>
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +010049#include <haproxy/proto_quic.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010050#include <haproxy/quic_tls.h>
Amaury Denoyelle118b2cb2021-11-25 16:05:16 +010051#include <haproxy/sink.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010052#include <haproxy/ssl_sock.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010053#include <haproxy/task.h>
54#include <haproxy/trace.h>
55#include <haproxy/xprt_quic.h>
56
Amaury Denoyellea22d8602021-11-10 15:17:56 +010057/* list of supported QUIC versions by this implementation */
58static int quic_supported_version[] = {
59 0x00000001,
Frédéric Lécaille56d3e1b2021-11-19 14:32:52 +010060 0xff00001d, /* draft-29 */
Amaury Denoyellea22d8602021-11-10 15:17:56 +010061
62 /* placeholder, do not add entry after this */
63 0x0
64};
65
Frédéric Lécaille48fc74a2021-09-03 16:42:19 +020066/* This is the values of some QUIC transport parameters when absent.
67 * Should be used to initialize any transport parameters (local or remote)
68 * before updating them with customized values.
69 */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010070struct quic_transport_params quic_dflt_transport_params = {
Frédéric Lécaille46be7e92021-10-22 15:04:27 +020071 .max_udp_payload_size = QUIC_PACKET_MAXLEN,
Frédéric Lécaille785c9c92021-05-17 16:42:21 +020072 .ack_delay_exponent = QUIC_DFLT_ACK_DELAY_COMPONENT,
73 .max_ack_delay = QUIC_DFLT_MAX_ACK_DELAY,
Frédéric Lécaille48fc74a2021-09-03 16:42:19 +020074 .active_connection_id_limit = QUIC_ACTIVE_CONNECTION_ID_LIMIT,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010075};
76
77/* trace source and events */
78static void quic_trace(enum trace_level level, uint64_t mask, \
79 const struct trace_source *src,
80 const struct ist where, const struct ist func,
81 const void *a1, const void *a2, const void *a3, const void *a4);
82
83static const struct trace_event quic_trace_events[] = {
84 { .mask = QUIC_EV_CONN_NEW, .name = "new_conn", .desc = "new QUIC connection" },
85 { .mask = QUIC_EV_CONN_INIT, .name = "new_conn_init", .desc = "new QUIC connection initialization" },
86 { .mask = QUIC_EV_CONN_ISEC, .name = "init_secs", .desc = "initial secrets derivation" },
87 { .mask = QUIC_EV_CONN_RSEC, .name = "read_secs", .desc = "read secrets derivation" },
88 { .mask = QUIC_EV_CONN_WSEC, .name = "write_secs", .desc = "write secrets derivation" },
89 { .mask = QUIC_EV_CONN_LPKT, .name = "lstnr_packet", .desc = "new listener received packet" },
90 { .mask = QUIC_EV_CONN_SPKT, .name = "srv_packet", .desc = "new server received packet" },
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +050091 { .mask = QUIC_EV_CONN_ENCPKT, .name = "enc_hdshk_pkt", .desc = "handhshake packet encryption" },
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010092 { .mask = QUIC_EV_CONN_HPKT, .name = "hdshk_pkt", .desc = "handhshake packet building" },
93 { .mask = QUIC_EV_CONN_PAPKT, .name = "phdshk_apkt", .desc = "post handhshake application packet preparation" },
94 { .mask = QUIC_EV_CONN_PAPKTS, .name = "phdshk_apkts", .desc = "post handhshake application packets preparation" },
Frédéric Lécaille00e24002022-02-18 17:13:45 +010095 { .mask = QUIC_EV_CONN_IO_CB, .name = "qc_io_cb", .desc = "QUIC conn. I/O processin" },
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010096 { .mask = QUIC_EV_CONN_RMHP, .name = "rm_hp", .desc = "Remove header protection" },
97 { .mask = QUIC_EV_CONN_PRSHPKT, .name = "parse_hpkt", .desc = "parse handshake packet" },
98 { .mask = QUIC_EV_CONN_PRSAPKT, .name = "parse_apkt", .desc = "parse application packet" },
99 { .mask = QUIC_EV_CONN_PRSFRM, .name = "parse_frm", .desc = "parse frame" },
100 { .mask = QUIC_EV_CONN_PRSAFRM, .name = "parse_ack_frm", .desc = "parse ACK frame" },
101 { .mask = QUIC_EV_CONN_BFRM, .name = "build_frm", .desc = "build frame" },
102 { .mask = QUIC_EV_CONN_PHPKTS, .name = "phdshk_pkts", .desc = "handhshake packets preparation" },
103 { .mask = QUIC_EV_CONN_TRMHP, .name = "rm_hp_try", .desc = "header protection removing try" },
104 { .mask = QUIC_EV_CONN_ELRMHP, .name = "el_rm_hp", .desc = "handshake enc. level header protection removing" },
105 { .mask = QUIC_EV_CONN_ELRXPKTS, .name = "el_treat_rx_pkts", .desc = "handshake enc. level rx packets treatment" },
106 { .mask = QUIC_EV_CONN_SSLDATA, .name = "ssl_provide_data", .desc = "CRYPTO data provision to TLS stack" },
107 { .mask = QUIC_EV_CONN_RXCDATA, .name = "el_treat_rx_cfrms",.desc = "enc. level RX CRYPTO frames processing"},
108 { .mask = QUIC_EV_CONN_ADDDATA, .name = "add_hdshk_data", .desc = "TLS stack ->add_handshake_data() call"},
109 { .mask = QUIC_EV_CONN_FFLIGHT, .name = "flush_flight", .desc = "TLS stack ->flush_flight() call"},
110 { .mask = QUIC_EV_CONN_SSLALERT, .name = "send_alert", .desc = "TLS stack ->send_alert() call"},
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100111 { .mask = QUIC_EV_CONN_RTTUPDT, .name = "rtt_updt", .desc = "RTT sampling" },
112 { .mask = QUIC_EV_CONN_SPPKTS, .name = "sppkts", .desc = "send prepared packets" },
113 { .mask = QUIC_EV_CONN_PKTLOSS, .name = "pktloss", .desc = "detect packet loss" },
114 { .mask = QUIC_EV_CONN_STIMER, .name = "stimer", .desc = "set timer" },
115 { .mask = QUIC_EV_CONN_PTIMER, .name = "ptimer", .desc = "process timer" },
116 { .mask = QUIC_EV_CONN_SPTO, .name = "spto", .desc = "set PTO" },
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +0100117 { .mask = QUIC_EV_CONN_BCFRMS, .name = "bcfrms", .desc = "build CRYPTO data frames" },
Frédéric Lécaille513b4f22021-09-20 15:23:17 +0200118 { .mask = QUIC_EV_CONN_XPRTSEND, .name = "xprt_send", .desc = "sending XRPT subscription" },
119 { .mask = QUIC_EV_CONN_XPRTRECV, .name = "xprt_recv", .desc = "receiving XRPT subscription" },
Frédéric Lécailleba85acd2022-01-11 14:43:50 +0100120 { .mask = QUIC_EV_CONN_FREED, .name = "conn_freed", .desc = "releasing conn. memory" },
121 { .mask = QUIC_EV_CONN_CLOSE, .name = "conn_close", .desc = "closing conn." },
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100122 { .mask = QUIC_EV_CONN_ACKSTRM, .name = "ack_strm", .desc = "STREAM ack."},
Frédéric Lécailleb823bb72022-03-31 20:26:18 +0200123 { .mask = QUIC_EV_CONN_FRMLIST, .name = "frm_list", .desc = "frame list"},
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100124 { /* end */ }
125};
126
127static const struct name_desc quic_trace_lockon_args[4] = {
128 /* arg1 */ { /* already used by the connection */ },
129 /* arg2 */ { .name="quic", .desc="QUIC transport" },
130 /* arg3 */ { },
131 /* arg4 */ { }
132};
133
134static const struct name_desc quic_trace_decoding[] = {
135#define QUIC_VERB_CLEAN 1
136 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
137 { /* end */ }
138};
139
140
141struct trace_source trace_quic = {
142 .name = IST("quic"),
143 .desc = "QUIC xprt",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100144 .arg_def = TRC_ARG1_QCON, /* TRACE()'s first argument is always a quic_conn */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100145 .default_cb = quic_trace,
146 .known_events = quic_trace_events,
147 .lockon_args = quic_trace_lockon_args,
148 .decoding = quic_trace_decoding,
149 .report_events = ~0, /* report everything by default */
150};
151
152#define TRACE_SOURCE &trace_quic
153INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
154
155static BIO_METHOD *ha_quic_meth;
156
Frédéric Lécailledbe25af2021-08-04 15:27:37 +0200157DECLARE_POOL(pool_head_quic_tx_ring, "quic_tx_ring_pool", QUIC_TX_RING_BUFSZ);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +0100158DECLARE_POOL(pool_head_quic_conn_rxbuf, "quic_conn_rxbuf", QUIC_CONN_RX_BUFSZ);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100159DECLARE_STATIC_POOL(pool_head_quic_conn_ctx,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +0200160 "quic_conn_ctx_pool", sizeof(struct ssl_sock_ctx));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100161DECLARE_STATIC_POOL(pool_head_quic_conn, "quic_conn", sizeof(struct quic_conn));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100162DECLARE_POOL(pool_head_quic_connection_id,
163 "quic_connnection_id_pool", sizeof(struct quic_connection_id));
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +0100164DECLARE_POOL(pool_head_quic_dgram, "quic_dgram", sizeof(struct quic_dgram));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100165DECLARE_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 +0100166DECLARE_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 +0100167DECLARE_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 +0100168DECLARE_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 +0100169DECLARE_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 +0200170DECLARE_POOL(pool_head_quic_frame, "quic_frame_pool", sizeof(struct quic_frame));
Frédéric Lécaille8090b512020-11-30 16:19:22 +0100171DECLARE_STATIC_POOL(pool_head_quic_arng, "quic_arng_pool", sizeof(struct quic_arng_node));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100172
Frédéric Lécaille9445abc2021-08-04 10:49:51 +0200173static struct quic_tx_packet *qc_build_pkt(unsigned char **pos, const unsigned char *buf_end,
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +0100174 struct quic_enc_level *qel, struct list *frms,
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +0100175 struct quic_conn *qc, size_t dglen, int pkt_type,
Frédéric Lécailleb0021452022-03-29 11:42:03 +0200176 int padding, int probe, int cc, int *err);
Frédéric Lécaille00e24002022-02-18 17:13:45 +0100177static struct task *quic_conn_app_io_cb(struct task *t, void *context, unsigned int state);
Frédéric Lécaille47756802022-03-25 09:12:16 +0100178static void qc_idle_timer_do_rearm(struct quic_conn *qc);
Frédéric Lécaille530601c2022-03-10 15:11:57 +0100179static void qc_idle_timer_rearm(struct quic_conn *qc, int read);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100180
Frédéric Lécaillef63921f2020-12-18 09:48:20 +0100181/* Only for debug purpose */
182struct enc_debug_info {
183 unsigned char *payload;
184 size_t payload_len;
185 unsigned char *aad;
186 size_t aad_len;
187 uint64_t pn;
188};
189
190/* Initializes a enc_debug_info struct (only for debug purpose) */
191static inline void enc_debug_info_init(struct enc_debug_info *edi,
192 unsigned char *payload, size_t payload_len,
193 unsigned char *aad, size_t aad_len, uint64_t pn)
194{
195 edi->payload = payload;
196 edi->payload_len = payload_len;
197 edi->aad = aad;
198 edi->aad_len = aad_len;
199 edi->pn = pn;
200}
201
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100202/* Trace callback for QUIC.
203 * These traces always expect that arg1, if non-null, is of type connection.
204 */
205static void quic_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
206 const struct ist where, const struct ist func,
207 const void *a1, const void *a2, const void *a3, const void *a4)
208{
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100209 const struct quic_conn *qc = a1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100210
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100211 if (qc) {
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100212 const struct quic_tls_ctx *tls_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100213
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100214 chunk_appendf(&trace_buf, " : qc@%p", qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100215 if ((mask & QUIC_EV_CONN_INIT) && qc) {
216 chunk_appendf(&trace_buf, "\n odcid");
217 quic_cid_dump(&trace_buf, &qc->odcid);
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100218 chunk_appendf(&trace_buf, "\n dcid");
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100219 quic_cid_dump(&trace_buf, &qc->dcid);
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100220 chunk_appendf(&trace_buf, "\n scid");
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100221 quic_cid_dump(&trace_buf, &qc->scid);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100222 }
223
224 if (mask & QUIC_EV_CONN_ADDDATA) {
225 const enum ssl_encryption_level_t *level = a2;
226 const size_t *len = a3;
227
228 if (level) {
229 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
230
231 chunk_appendf(&trace_buf, " el=%c(%d)", quic_enc_level_char(lvl), lvl);
232 }
233 if (len)
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100234 chunk_appendf(&trace_buf, " len=%llu", (unsigned long long)*len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100235 }
236 if ((mask & QUIC_EV_CONN_ISEC) && qc) {
237 /* Initial read & write secrets. */
238 enum quic_tls_enc_level level = QUIC_TLS_ENC_LEVEL_INITIAL;
239 const unsigned char *rx_sec = a2;
240 const unsigned char *tx_sec = a3;
241
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100242 tls_ctx = &qc->els[level].tls_ctx;
243 if (tls_ctx->flags & QUIC_FL_TLS_SECRETS_SET) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100244 chunk_appendf(&trace_buf, "\n RX el=%c", quic_enc_level_char(level));
245 if (rx_sec)
246 quic_tls_secret_hexdump(&trace_buf, rx_sec, 32);
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100247 quic_tls_keys_hexdump(&trace_buf, &tls_ctx->rx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100248 chunk_appendf(&trace_buf, "\n TX el=%c", quic_enc_level_char(level));
249 if (tx_sec)
250 quic_tls_secret_hexdump(&trace_buf, tx_sec, 32);
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100251 quic_tls_keys_hexdump(&trace_buf, &tls_ctx->tx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100252 }
253 }
254 if (mask & (QUIC_EV_CONN_RSEC|QUIC_EV_CONN_RWSEC)) {
255 const enum ssl_encryption_level_t *level = a2;
256 const unsigned char *secret = a3;
257 const size_t *secret_len = a4;
258
259 if (level) {
260 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
261
262 chunk_appendf(&trace_buf, "\n RX el=%c", quic_enc_level_char(lvl));
263 if (secret && secret_len)
264 quic_tls_secret_hexdump(&trace_buf, secret, *secret_len);
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100265 tls_ctx = &qc->els[lvl].tls_ctx;
266 if (tls_ctx->flags & QUIC_FL_TLS_SECRETS_SET)
267 quic_tls_keys_hexdump(&trace_buf, &tls_ctx->rx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100268 }
269 }
270
271 if (mask & (QUIC_EV_CONN_WSEC|QUIC_EV_CONN_RWSEC)) {
272 const enum ssl_encryption_level_t *level = a2;
273 const unsigned char *secret = a3;
274 const size_t *secret_len = a4;
275
276 if (level) {
277 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
278
279 chunk_appendf(&trace_buf, "\n TX el=%c", quic_enc_level_char(lvl));
280 if (secret && secret_len)
281 quic_tls_secret_hexdump(&trace_buf, secret, *secret_len);
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100282 tls_ctx = &qc->els[lvl].tls_ctx;
283 if (tls_ctx->flags & QUIC_FL_TLS_SECRETS_SET)
284 quic_tls_keys_hexdump(&trace_buf, &tls_ctx->tx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100285 }
286
287 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100288
Frédéric Lécailleb823bb72022-03-31 20:26:18 +0200289 if (mask & QUIC_EV_CONN_FRMLIST) {
290 const struct list *l = a2;
291
292 if (l) {
293 const struct quic_frame *frm;
294 list_for_each_entry(frm, l, list)
295 chunk_frm_appendf(&trace_buf, frm);
296 }
297 }
298
Frédéric Lécaille133e8a72020-12-18 09:33:27 +0100299 if (mask & (QUIC_EV_CONN_HPKT|QUIC_EV_CONN_PAPKT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100300 const struct quic_tx_packet *pkt = a2;
301 const struct quic_enc_level *qel = a3;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100302 const ssize_t *room = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100303
304 if (qel) {
Amaury Denoyelle4fd53d72021-12-21 14:28:26 +0100305 const struct quic_pktns *pktns = qc->pktns;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100306 chunk_appendf(&trace_buf, " qel=%c cwnd=%llu ppif=%lld pif=%llu "
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100307 "if=%llu pp=%u",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100308 quic_enc_level_char_from_qel(qel, qc),
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100309 (unsigned long long)qc->path->cwnd,
310 (unsigned long long)qc->path->prep_in_flight,
311 (unsigned long long)qc->path->in_flight,
312 (unsigned long long)pktns->tx.in_flight,
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100313 pktns->tx.pto_probe);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100314 }
315 if (pkt) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +0200316 const struct quic_frame *frm;
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100317 if (pkt->pn_node.key != (uint64_t)-1)
318 chunk_appendf(&trace_buf, " pn=%llu",(ull)pkt->pn_node.key);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100319 list_for_each_entry(frm, &pkt->frms, list)
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100320 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaille8b6ea172022-01-17 10:51:43 +0100321 chunk_appendf(&trace_buf, " rx.bytes=%llu tx.bytes=%llu",
322 (unsigned long long)qc->rx.bytes,
323 (unsigned long long)qc->tx.bytes);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100324 }
325
326 if (room) {
327 chunk_appendf(&trace_buf, " room=%lld", (long long)*room);
328 chunk_appendf(&trace_buf, " dcid.len=%llu scid.len=%llu",
329 (unsigned long long)qc->dcid.len, (unsigned long long)qc->scid.len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100330 }
331 }
332
Frédéric Lécaille00e24002022-02-18 17:13:45 +0100333 if (mask & QUIC_EV_CONN_IO_CB) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100334 const enum quic_handshake_state *state = a2;
335 const int *err = a3;
336
337 if (state)
338 chunk_appendf(&trace_buf, " state=%s", quic_hdshk_state_str(*state));
339 if (err)
340 chunk_appendf(&trace_buf, " err=%s", ssl_error_str(*err));
341 }
342
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +0100343 if (mask & (QUIC_EV_CONN_TRMHP|QUIC_EV_CONN_ELRMHP|QUIC_EV_CONN_SPKT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100344 const struct quic_rx_packet *pkt = a2;
345 const unsigned long *pktlen = a3;
346 const SSL *ssl = a4;
347
348 if (pkt) {
Frédéric Lécaille3dfd4c42022-04-05 15:29:14 +0200349 chunk_appendf(&trace_buf, " pkt@%p", pkt);
350 if (pkt->type == QUIC_PACKET_TYPE_SHORT && pkt->data)
351 chunk_appendf(&trace_buf, " kp=%d",
352 !!(*pkt->data & QUIC_PACKET_KEY_PHASE_BIT));
353 chunk_appendf(&trace_buf, " el=%c",
354 quic_packet_type_enc_level_char(pkt->type));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100355 if (pkt->pnl)
356 chunk_appendf(&trace_buf, " pnl=%u pn=%llu", pkt->pnl,
357 (unsigned long long)pkt->pn);
358 if (pkt->token_len)
359 chunk_appendf(&trace_buf, " toklen=%llu",
360 (unsigned long long)pkt->token_len);
361 if (pkt->aad_len)
362 chunk_appendf(&trace_buf, " aadlen=%llu",
363 (unsigned long long)pkt->aad_len);
364 chunk_appendf(&trace_buf, " flags=0x%x len=%llu",
365 pkt->flags, (unsigned long long)pkt->len);
366 }
367 if (pktlen)
368 chunk_appendf(&trace_buf, " (%ld)", *pktlen);
369 if (ssl) {
370 enum ssl_encryption_level_t level = SSL_quic_read_level(ssl);
371 chunk_appendf(&trace_buf, " el=%c",
372 quic_enc_level_char(ssl_to_quic_enc_level(level)));
373 }
374 }
375
376 if (mask & (QUIC_EV_CONN_ELRXPKTS|QUIC_EV_CONN_PRSHPKT|QUIC_EV_CONN_SSLDATA)) {
377 const struct quic_rx_packet *pkt = a2;
378 const struct quic_rx_crypto_frm *cf = a3;
379 const SSL *ssl = a4;
380
381 if (pkt)
382 chunk_appendf(&trace_buf, " pkt@%p el=%c pn=%llu", pkt,
383 quic_packet_type_enc_level_char(pkt->type),
384 (unsigned long long)pkt->pn);
385 if (cf)
386 chunk_appendf(&trace_buf, " cfoff=%llu cflen=%llu",
387 (unsigned long long)cf->offset_node.key,
388 (unsigned long long)cf->len);
389 if (ssl) {
390 enum ssl_encryption_level_t level = SSL_quic_read_level(ssl);
Frédéric Lécaille57e6e9e2021-09-23 18:10:56 +0200391 chunk_appendf(&trace_buf, " rel=%c",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100392 quic_enc_level_char(ssl_to_quic_enc_level(level)));
393 }
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100394
395 if (qc->err_code)
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100396 chunk_appendf(&trace_buf, " err_code=0x%llx", (ull)qc->err_code);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100397 }
398
399 if (mask & (QUIC_EV_CONN_PRSFRM|QUIC_EV_CONN_BFRM)) {
400 const struct quic_frame *frm = a2;
401
402 if (frm)
403 chunk_appendf(&trace_buf, " %s", quic_frame_type_string(frm->type));
404 }
405
406 if (mask & QUIC_EV_CONN_PHPKTS) {
407 const struct quic_enc_level *qel = a2;
408
409 if (qel) {
Frédéric Lécailledd51da52021-12-29 15:36:25 +0100410 const struct quic_pktns *pktns = qel->pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100411 chunk_appendf(&trace_buf,
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100412 " qel=%c state=%s ack?%d cwnd=%llu ppif=%lld pif=%llu if=%llu pp=%u",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100413 quic_enc_level_char_from_qel(qel, qc),
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200414 quic_hdshk_state_str(qc->state),
Frédéric Lécaille205e4f32022-03-28 17:38:27 +0200415 !!(qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED),
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100416 (unsigned long long)qc->path->cwnd,
417 (unsigned long long)qc->path->prep_in_flight,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100418 (unsigned long long)qc->path->in_flight,
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100419 (unsigned long long)pktns->tx.in_flight,
420 pktns->tx.pto_probe);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100421 }
422 }
423
Frédéric Lécaillef63921f2020-12-18 09:48:20 +0100424 if (mask & QUIC_EV_CONN_ENCPKT) {
425 const struct enc_debug_info *edi = a2;
426
427 if (edi)
428 chunk_appendf(&trace_buf,
429 " payload=@%p payload_len=%llu"
430 " aad=@%p aad_len=%llu pn=%llu",
431 edi->payload, (unsigned long long)edi->payload_len,
432 edi->aad, (unsigned long long)edi->aad_len,
433 (unsigned long long)edi->pn);
434 }
435
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100436 if (mask & QUIC_EV_CONN_RMHP) {
437 const struct quic_rx_packet *pkt = a2;
438
439 if (pkt) {
440 const int *ret = a3;
441
442 chunk_appendf(&trace_buf, " pkt@%p", pkt);
443 if (ret && *ret)
444 chunk_appendf(&trace_buf, " pnl=%u pn=%llu",
445 pkt->pnl, (unsigned long long)pkt->pn);
446 }
447 }
448
449 if (mask & QUIC_EV_CONN_PRSAFRM) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +0200450 const struct quic_frame *frm = a2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100451 const unsigned long *val1 = a3;
452 const unsigned long *val2 = a4;
453
454 if (frm)
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100455 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100456 if (val1)
457 chunk_appendf(&trace_buf, " %lu", *val1);
458 if (val2)
459 chunk_appendf(&trace_buf, "..%lu", *val2);
460 }
461
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100462 if (mask & QUIC_EV_CONN_ACKSTRM) {
463 const struct quic_stream *s = a2;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +0200464 const struct qc_stream_desc *stream = a3;
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100465
466 if (s)
467 chunk_appendf(&trace_buf, " off=%llu len=%llu", (ull)s->offset.key, (ull)s->len);
Amaury Denoyelle7272cd72022-03-29 15:15:54 +0200468 if (stream)
469 chunk_appendf(&trace_buf, " ack_offset=%llu", (ull)stream->ack_offset);
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100470 }
471
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100472 if (mask & QUIC_EV_CONN_RTTUPDT) {
473 const unsigned int *rtt_sample = a2;
474 const unsigned int *ack_delay = a3;
475 const struct quic_loss *ql = a4;
476
477 if (rtt_sample)
478 chunk_appendf(&trace_buf, " rtt_sample=%ums", *rtt_sample);
479 if (ack_delay)
480 chunk_appendf(&trace_buf, " ack_delay=%ums", *ack_delay);
481 if (ql)
482 chunk_appendf(&trace_buf,
483 " srtt=%ums rttvar=%ums min_rtt=%ums",
484 ql->srtt >> 3, ql->rtt_var >> 2, ql->rtt_min);
485 }
486 if (mask & QUIC_EV_CONN_CC) {
487 const struct quic_cc_event *ev = a2;
488 const struct quic_cc *cc = a3;
489
490 if (a2)
491 quic_cc_event_trace(&trace_buf, ev);
492 if (a3)
493 quic_cc_state_trace(&trace_buf, cc);
494 }
495
496 if (mask & QUIC_EV_CONN_PKTLOSS) {
497 const struct quic_pktns *pktns = a2;
498 const struct list *lost_pkts = a3;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100499
500 if (pktns) {
501 chunk_appendf(&trace_buf, " pktns=%s",
502 pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
503 pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H");
504 if (pktns->tx.loss_time)
505 chunk_appendf(&trace_buf, " loss_time=%dms",
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100506 TICKS_TO_MS(tick_remain(now_ms, pktns->tx.loss_time)));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100507 }
508 if (lost_pkts && !LIST_ISEMPTY(lost_pkts)) {
509 struct quic_tx_packet *pkt;
510
511 chunk_appendf(&trace_buf, " lost_pkts:");
512 list_for_each_entry(pkt, lost_pkts, list)
513 chunk_appendf(&trace_buf, " %lu", (unsigned long)pkt->pn_node.key);
514 }
515 }
516
517 if (mask & (QUIC_EV_CONN_STIMER|QUIC_EV_CONN_PTIMER|QUIC_EV_CONN_SPTO)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100518 const struct quic_pktns *pktns = a2;
519 const int *duration = a3;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100520 const uint64_t *ifae_pkts = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100521
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100522 if (ifae_pkts)
523 chunk_appendf(&trace_buf, " ifae_pkts=%llu",
524 (unsigned long long)*ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100525 if (pktns) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100526 chunk_appendf(&trace_buf, " pktns=%s pp=%d",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100527 pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100528 pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H",
529 pktns->tx.pto_probe);
Frédéric Lécaille22cfd832021-12-27 17:42:51 +0100530 if (mask & (QUIC_EV_CONN_STIMER|QUIC_EV_CONN_SPTO)) {
531 if (pktns->tx.in_flight)
532 chunk_appendf(&trace_buf, " if=%llu", (ull)pktns->tx.in_flight);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100533 if (pktns->tx.loss_time)
534 chunk_appendf(&trace_buf, " loss_time=%dms",
535 TICKS_TO_MS(pktns->tx.loss_time - now_ms));
536 }
537 if (mask & QUIC_EV_CONN_SPTO) {
538 if (pktns->tx.time_of_last_eliciting)
539 chunk_appendf(&trace_buf, " tole=%dms",
540 TICKS_TO_MS(pktns->tx.time_of_last_eliciting - now_ms));
541 if (duration)
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100542 chunk_appendf(&trace_buf, " dur=%dms", TICKS_TO_MS(*duration));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100543 }
544 }
545
Frédéric Lécaille03235d72022-03-30 14:36:40 +0200546 if (!(mask & (QUIC_EV_CONN_SPTO|QUIC_EV_CONN_PTIMER)) && qc->timer_task) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100547 chunk_appendf(&trace_buf,
548 " expire=%dms", TICKS_TO_MS(qc->timer - now_ms));
549 }
550 }
551
552 if (mask & QUIC_EV_CONN_SPPKTS) {
553 const struct quic_tx_packet *pkt = a2;
554
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100555 chunk_appendf(&trace_buf, " cwnd=%llu ppif=%llu pif=%llu",
556 (unsigned long long)qc->path->cwnd,
557 (unsigned long long)qc->path->prep_in_flight,
558 (unsigned long long)qc->path->in_flight);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100559 if (pkt) {
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100560 chunk_appendf(&trace_buf, " pn=%lu(%s) iflen=%llu",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100561 (unsigned long)pkt->pn_node.key,
562 pkt->pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
563 pkt->pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H",
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100564 (unsigned long long)pkt->in_flight_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100565 }
566 }
Frédéric Lécaille47c433f2020-12-10 17:03:11 +0100567
568 if (mask & QUIC_EV_CONN_SSLALERT) {
569 const uint8_t *alert = a2;
570 const enum ssl_encryption_level_t *level = a3;
571
572 if (alert)
573 chunk_appendf(&trace_buf, " alert=0x%02x", *alert);
574 if (level)
575 chunk_appendf(&trace_buf, " el=%c",
576 quic_enc_level_char(ssl_to_quic_enc_level(*level)));
577 }
Frédéric Lécailleea604992020-12-24 13:01:37 +0100578
579 if (mask & QUIC_EV_CONN_BCFRMS) {
580 const size_t *sz1 = a2;
581 const size_t *sz2 = a3;
582 const size_t *sz3 = a4;
583
584 if (sz1)
585 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz1);
586 if (sz2)
587 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz2);
588 if (sz3)
589 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz3);
590 }
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100591
592 if (mask & QUIC_EV_CONN_PSTRM) {
593 const struct quic_frame *frm = a2;
Frédéric Lécaille577fe482021-01-11 15:10:06 +0100594
Frédéric Lécailled8b84432021-12-10 15:18:36 +0100595 if (frm)
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100596 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100597 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100598 }
599 if (mask & QUIC_EV_CONN_LPKT) {
600 const struct quic_rx_packet *pkt = a2;
Frédéric Lécaille865b0782021-09-23 07:33:20 +0200601 const uint64_t *len = a3;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100602
Frédéric Lécaille8678eb02021-12-16 18:03:52 +0100603 if (pkt) {
604 chunk_appendf(&trace_buf, " pkt@%p type=0x%02x %s",
605 pkt, pkt->type, qc_pkt_long(pkt) ? "long" : "short");
606 if (pkt->pn_node.key != (uint64_t)-1)
607 chunk_appendf(&trace_buf, " pn=%llu", pkt->pn_node.key);
608 }
609
Frédéric Lécaille865b0782021-09-23 07:33:20 +0200610 if (len)
611 chunk_appendf(&trace_buf, " len=%llu", (ull)*len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100612 }
613
614}
615
616/* Returns 1 if the peer has validated <qc> QUIC connection address, 0 if not. */
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100617static inline int quic_peer_validated_addr(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100618{
Frédéric Lécaille67f47d02021-08-19 15:19:09 +0200619 struct quic_pktns *hdshk_pktns, *app_pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100620
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +0100621 if (!qc_is_listener(qc))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100622 return 1;
623
Frédéric Lécaille67f47d02021-08-19 15:19:09 +0200624 hdshk_pktns = qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns;
625 app_pktns = qc->els[QUIC_TLS_ENC_LEVEL_APP].pktns;
Frédéric Lécaille205e4f32022-03-28 17:38:27 +0200626 if ((hdshk_pktns->flags & QUIC_FL_PKTNS_PKT_RECEIVED) ||
627 (app_pktns->flags & QUIC_FL_PKTNS_PKT_RECEIVED) ||
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200628 qc->state >= QUIC_HS_ST_COMPLETE)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100629 return 1;
630
631 return 0;
632}
633
634/* Set the timer attached to the QUIC connection with <ctx> as I/O handler and used for
635 * both loss detection and PTO and schedule the task assiated to this timer if needed.
636 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100637static inline void qc_set_timer(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100638{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100639 struct quic_pktns *pktns;
640 unsigned int pto;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +0200641 int handshake_complete;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100642
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100643 TRACE_ENTER(QUIC_EV_CONN_STIMER, qc,
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100644 NULL, NULL, &qc->path->ifae_pkts);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100645
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100646 pktns = quic_loss_pktns(qc);
647 if (tick_isset(pktns->tx.loss_time)) {
648 qc->timer = pktns->tx.loss_time;
649 goto out;
650 }
651
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +0100652 /* anti-amplification: the timer must be
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100653 * cancelled for a server which reached the anti-amplification limit.
654 */
Frédéric Lécaille078634d2022-01-04 16:59:42 +0100655 if (!quic_peer_validated_addr(qc) &&
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200656 (qc->flags & QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100657 TRACE_PROTO("anti-amplification reached", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +0100658 qc->timer = TICK_ETERNITY;
659 goto out;
660 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100661
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100662 if (!qc->path->ifae_pkts && quic_peer_validated_addr(qc)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100663 TRACE_PROTO("timer cancellation", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100664 /* Timer cancellation. */
665 qc->timer = TICK_ETERNITY;
666 goto out;
667 }
668
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200669 handshake_complete = qc->state >= QUIC_HS_ST_COMPLETE;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +0200670 pktns = quic_pto_pktns(qc, handshake_complete, &pto);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100671 if (tick_isset(pto))
672 qc->timer = pto;
673 out:
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100674 if (qc->timer_task && qc->timer != TICK_ETERNITY) {
Frédéric Lécailleaaf1f192022-03-22 15:37:41 +0100675 if (tick_is_expired(qc->timer, now_ms)) {
676 TRACE_PROTO("wakeup asap timer task", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100677 task_wakeup(qc->timer_task, TASK_WOKEN_MSG);
Frédéric Lécailleaaf1f192022-03-22 15:37:41 +0100678 }
679 else {
680 TRACE_PROTO("timer task scheduling", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100681 task_schedule(qc->timer_task, qc->timer);
Frédéric Lécailleaaf1f192022-03-22 15:37:41 +0100682 }
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100683 }
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100684 TRACE_LEAVE(QUIC_EV_CONN_STIMER, qc, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100685}
686
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100687/* Derive new keys and ivs required for Key Update feature for <qc> QUIC
688 * connection.
689 * Return 1 if succeeded, 0 if not.
690 */
691static int quic_tls_key_update(struct quic_conn *qc)
692{
693 struct quic_tls_ctx *tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
694 struct quic_tls_secrets *rx, *tx;
695 struct quic_tls_kp *nxt_rx = &qc->ku.nxt_rx;
696 struct quic_tls_kp *nxt_tx = &qc->ku.nxt_tx;
697
698 tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
699 rx = &tls_ctx->rx;
700 tx = &tls_ctx->tx;
701 nxt_rx = &qc->ku.nxt_rx;
702 nxt_tx = &qc->ku.nxt_tx;
703
704 /* Prepare new RX secrets */
705 if (!quic_tls_sec_update(rx->md, nxt_rx->secret, nxt_rx->secretlen,
706 rx->secret, rx->secretlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100707 TRACE_DEVEL("New RX secret update failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100708 return 0;
709 }
710
711 if (!quic_tls_derive_keys(rx->aead, NULL, rx->md,
712 nxt_rx->key, nxt_rx->keylen,
713 nxt_rx->iv, nxt_rx->ivlen, NULL, 0,
714 nxt_rx->secret, nxt_rx->secretlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100715 TRACE_DEVEL("New RX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100716 return 0;
717 }
718
719 /* Prepare new TX secrets */
720 if (!quic_tls_sec_update(tx->md, nxt_tx->secret, nxt_tx->secretlen,
721 tx->secret, tx->secretlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100722 TRACE_DEVEL("New TX secret update failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100723 return 0;
724 }
725
726 if (!quic_tls_derive_keys(tx->aead, NULL, tx->md,
727 nxt_tx->key, nxt_tx->keylen,
728 nxt_tx->iv, nxt_tx->ivlen, NULL, 0,
729 nxt_tx->secret, nxt_tx->secretlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100730 TRACE_DEVEL("New TX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100731 return 0;
732 }
733
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200734 if (nxt_rx->ctx) {
735 EVP_CIPHER_CTX_free(nxt_rx->ctx);
736 nxt_rx->ctx = NULL;
737 }
738
739 if (!quic_tls_rx_ctx_init(&nxt_rx->ctx, tls_ctx->rx.aead, nxt_rx->key)) {
740 TRACE_DEVEL("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
741 return 0;
742 }
743
744 if (nxt_tx->ctx) {
745 EVP_CIPHER_CTX_free(nxt_tx->ctx);
746 nxt_tx->ctx = NULL;
747 }
748
749 if (!quic_tls_rx_ctx_init(&nxt_tx->ctx, tls_ctx->tx.aead, nxt_tx->key)) {
750 TRACE_DEVEL("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
751 return 0;
752 }
753
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100754 return 1;
755}
756
757/* Rotate the Key Update information for <qc> QUIC connection.
758 * Must be used after having updated them.
759 * Always succeeds.
760 */
761static void quic_tls_rotate_keys(struct quic_conn *qc)
762{
763 struct quic_tls_ctx *tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
764 unsigned char *curr_secret, *curr_iv, *curr_key;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200765 EVP_CIPHER_CTX *curr_ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100766
767 /* Rotate the RX secrets */
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200768 curr_ctx = tls_ctx->rx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100769 curr_secret = tls_ctx->rx.secret;
770 curr_iv = tls_ctx->rx.iv;
771 curr_key = tls_ctx->rx.key;
772
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200773 tls_ctx->rx.ctx = qc->ku.nxt_rx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100774 tls_ctx->rx.secret = qc->ku.nxt_rx.secret;
775 tls_ctx->rx.iv = qc->ku.nxt_rx.iv;
776 tls_ctx->rx.key = qc->ku.nxt_rx.key;
777
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200778 qc->ku.nxt_rx.ctx = qc->ku.prv_rx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100779 qc->ku.nxt_rx.secret = qc->ku.prv_rx.secret;
780 qc->ku.nxt_rx.iv = qc->ku.prv_rx.iv;
781 qc->ku.nxt_rx.key = qc->ku.prv_rx.key;
782
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200783 qc->ku.prv_rx.ctx = curr_ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100784 qc->ku.prv_rx.secret = curr_secret;
785 qc->ku.prv_rx.iv = curr_iv;
786 qc->ku.prv_rx.key = curr_key;
787 qc->ku.prv_rx.pn = tls_ctx->rx.pn;
788
789 /* Update the TX secrets */
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200790 curr_ctx = tls_ctx->tx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100791 curr_secret = tls_ctx->tx.secret;
792 curr_iv = tls_ctx->tx.iv;
793 curr_key = tls_ctx->tx.key;
794
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200795 tls_ctx->tx.ctx = qc->ku.nxt_tx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100796 tls_ctx->tx.secret = qc->ku.nxt_tx.secret;
797 tls_ctx->tx.iv = qc->ku.nxt_tx.iv;
798 tls_ctx->tx.key = qc->ku.nxt_tx.key;
799
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200800 qc->ku.nxt_tx.ctx = curr_ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100801 qc->ku.nxt_tx.secret = curr_secret;
802 qc->ku.nxt_tx.iv = curr_iv;
803 qc->ku.nxt_tx.key = curr_key;
804}
805
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100806#ifndef OPENSSL_IS_BORINGSSL
807int ha_quic_set_encryption_secrets(SSL *ssl, enum ssl_encryption_level_t level,
808 const uint8_t *read_secret,
809 const uint8_t *write_secret, size_t secret_len)
810{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100811 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
812 struct quic_tls_ctx *tls_ctx = &qc->els[ssl_to_quic_enc_level(level)].tls_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100813 const SSL_CIPHER *cipher = SSL_get_current_cipher(ssl);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100814 struct quic_tls_secrets *rx, *tx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100815
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100816 TRACE_ENTER(QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100817 BUG_ON(secret_len > QUIC_TLS_SECRET_LEN);
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200818 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100819 TRACE_PROTO("CC required", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillef44d19e2022-03-26 12:22:41 +0100820 goto no_secret;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100821 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100822
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100823 if (!quic_tls_ctx_keys_alloc(tls_ctx)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100824 TRACE_DEVEL("keys allocation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100825 goto err;
826 }
827
828 rx = &tls_ctx->rx;
829 tx = &tls_ctx->tx;
830
831 rx->aead = tx->aead = tls_aead(cipher);
832 rx->md = tx->md = tls_md(cipher);
833 rx->hp = tx->hp = tls_hp(cipher);
834
835 if (!quic_tls_derive_keys(rx->aead, rx->hp, rx->md, rx->key, rx->keylen,
836 rx->iv, rx->ivlen, rx->hp_key, sizeof rx->hp_key,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100837 read_secret, secret_len)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100838 TRACE_DEVEL("RX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100839 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100840 }
841
Frédéric Lécaillef4605742022-04-05 10:28:29 +0200842 if (!quic_tls_rx_ctx_init(&rx->ctx, rx->aead, rx->key)) {
843 TRACE_DEVEL("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
844 goto err;
845 }
846
Frédéric Lécaille61b851d2022-01-28 21:38:45 +0100847 /* Enqueue this connection asap if we could derive O-RTT secrets as
848 * listener. Note that a listener derives only RX secrets for this
849 * level.
850 */
851 if (qc_is_listener(qc) && level == ssl_encryption_early_data)
852 quic_accept_push_qc(qc);
Frédéric Lécaille4015cbb2021-12-14 19:29:34 +0100853
854 if (!write_secret)
Frédéric Lécailleee4508d2022-02-14 17:54:04 +0100855 goto out;
Frédéric Lécaille4015cbb2021-12-14 19:29:34 +0100856
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100857 if (!quic_tls_derive_keys(tx->aead, tx->hp, tx->md, tx->key, tx->keylen,
858 tx->iv, tx->ivlen, tx->hp_key, sizeof tx->hp_key,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100859 write_secret, secret_len)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100860 TRACE_DEVEL("TX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100861 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100862 }
863
Frédéric Lécaillef4605742022-04-05 10:28:29 +0200864 if (!quic_tls_tx_ctx_init(&tx->ctx, tx->aead, tx->key)) {
865 TRACE_DEVEL("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
866 goto err;
867 }
868
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100869 if (level == ssl_encryption_application) {
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100870 struct quic_tls_kp *prv_rx = &qc->ku.prv_rx;
871 struct quic_tls_kp *nxt_rx = &qc->ku.nxt_rx;
872 struct quic_tls_kp *nxt_tx = &qc->ku.nxt_tx;
873
Frédéric Lécaille96fd1632022-04-01 11:21:47 +0200874 /* These secrets must be stored only for Application encryption level */
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100875 if (!(rx->secret = pool_alloc(pool_head_quic_tls_secret)) ||
876 !(tx->secret = pool_alloc(pool_head_quic_tls_secret))) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100877 TRACE_DEVEL("Could not allocate secrete keys", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100878 goto err;
879 }
880
881 memcpy(rx->secret, read_secret, secret_len);
882 rx->secretlen = secret_len;
883 memcpy(tx->secret, write_secret, secret_len);
884 tx->secretlen = secret_len;
885 /* Initialize all the secret keys lengths */
886 prv_rx->secretlen = nxt_rx->secretlen = nxt_tx->secretlen = secret_len;
887 /* Prepare the next key update */
888 if (!quic_tls_key_update(qc))
889 goto err;
890 }
Frédéric Lécailleee4508d2022-02-14 17:54:04 +0100891
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100892 out:
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100893 tls_ctx->flags |= QUIC_FL_TLS_SECRETS_SET;
Frédéric Lécaillef44d19e2022-03-26 12:22:41 +0100894 no_secret:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100895 TRACE_LEAVE(QUIC_EV_CONN_RWSEC, qc, &level);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100896 return 1;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100897
898 err:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100899 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100900 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100901}
902#else
903/* ->set_read_secret callback to derive the RX secrets at <level> encryption
904 * level.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +0500905 * Returns 1 if succeeded, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100906 */
907int ha_set_rsec(SSL *ssl, enum ssl_encryption_level_t level,
908 const SSL_CIPHER *cipher,
909 const uint8_t *secret, size_t secret_len)
910{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100911 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100912 struct quic_tls_ctx *tls_ctx =
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100913 &qc->els[ssl_to_quic_enc_level(level)].tls_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100914
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100915 TRACE_ENTER(QUIC_EV_CONN_RSEC, qc);
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200916 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100917 TRACE_PROTO("CC required", QUIC_EV_CONN_RSEC, qc);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100918 goto out;
919 }
920
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100921 tls_ctx->rx.aead = tls_aead(cipher);
922 tls_ctx->rx.md = tls_md(cipher);
923 tls_ctx->rx.hp = tls_hp(cipher);
924
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100925 if (!(ctx->rx.key = pool_alloc(pool_head_quic_tls_key)))
926 goto err;
927
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100928 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 +0100929 tls_ctx->rx.key, tls_ctx->rx.keylen,
930 tls_ctx->rx.iv, tls_ctx->rx.ivlen,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100931 tls_ctx->rx.hp_key, sizeof tls_ctx->rx.hp_key,
932 secret, secret_len)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100933 TRACE_DEVEL("RX key derivation failed", QUIC_EV_CONN_RSEC, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100934 goto err;
935 }
936
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100937 if (!qc_is_listener(qc) && level == ssl_encryption_application) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100938 const unsigned char *buf;
939 size_t buflen;
940
941 SSL_get_peer_quic_transport_params(ssl, &buf, &buflen);
942 if (!buflen)
943 goto err;
944
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100945 if (!quic_transport_params_store(qc, 1, buf, buf + buflen))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100946 goto err;
947 }
948
949 tls_ctx->rx.flags |= QUIC_FL_TLS_SECRETS_SET;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100950 out:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100951 TRACE_LEAVE(QUIC_EV_CONN_RSEC, qc, &level, secret, &secret_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100952
953 return 1;
954
955 err:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100956 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RSEC, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100957 return 0;
958}
959
960/* ->set_write_secret callback to derive the TX secrets at <level>
961 * encryption level.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +0500962 * Returns 1 if succeeded, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100963 */
964int ha_set_wsec(SSL *ssl, enum ssl_encryption_level_t level,
965 const SSL_CIPHER *cipher,
966 const uint8_t *secret, size_t secret_len)
967{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100968 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
969 struct quic_tls_ctx *tls_ctx = &qc->els[ssl_to_quic_enc_level(level)].tls_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100970
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100971 TRACE_ENTER(QUIC_EV_CONN_WSEC, qc);
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200972 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100973 TRACE_PROTO("CC required", QUIC_EV_CONN_WSEC, qc);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100974 goto out;
975 }
976
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100977 if (!(ctx->tx.key = pool_alloc(pool_head_quic_tls_key)))
978 goto err;
979
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100980 tls_ctx->tx.aead = tls_aead(cipher);
981 tls_ctx->tx.md = tls_md(cipher);
982 tls_ctx->tx.hp = tls_hp(cipher);
983
984 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 +0100985 tls_ctx->tx.key, tls_ctx->tx.keylen,
986 tls_ctx->tx.iv, tls_ctx->tx.ivlen,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100987 tls_ctx->tx.hp_key, sizeof tls_ctx->tx.hp_key,
988 secret, secret_len)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100989 TRACE_DEVEL("TX key derivation failed", QUIC_EV_CONN_WSEC, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100990 goto err;
991 }
992
993 tls_ctx->tx.flags |= QUIC_FL_TLS_SECRETS_SET;
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100994 TRACE_LEAVE(QUIC_EV_CONN_WSEC, qc, &level, secret, &secret_len);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100995 out:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100996 return 1;
997
998 err:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100999 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_WSEC, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001000 return 0;
1001}
1002#endif
1003
1004/* This function copies the CRYPTO data provided by the TLS stack found at <data>
1005 * with <len> as size in CRYPTO buffers dedicated to store the information about
1006 * outgoing CRYPTO frames so that to be able to replay the CRYPTO data streams.
1007 * It fails only if it could not managed to allocate enough CRYPTO buffers to
1008 * store all the data.
1009 * Note that CRYPTO data may exist at any encryption level except at 0-RTT.
1010 */
1011static int quic_crypto_data_cpy(struct quic_enc_level *qel,
1012 const unsigned char *data, size_t len)
1013{
1014 struct quic_crypto_buf **qcb;
1015 /* The remaining byte to store in CRYPTO buffers. */
1016 size_t cf_offset, cf_len, *nb_buf;
1017 unsigned char *pos;
1018
1019 nb_buf = &qel->tx.crypto.nb_buf;
1020 qcb = &qel->tx.crypto.bufs[*nb_buf - 1];
1021 cf_offset = (*nb_buf - 1) * QUIC_CRYPTO_BUF_SZ + (*qcb)->sz;
1022 cf_len = len;
1023
1024 while (len) {
1025 size_t to_copy, room;
1026
1027 pos = (*qcb)->data + (*qcb)->sz;
1028 room = QUIC_CRYPTO_BUF_SZ - (*qcb)->sz;
1029 to_copy = len > room ? room : len;
1030 if (to_copy) {
1031 memcpy(pos, data, to_copy);
1032 /* Increment the total size of this CRYPTO buffers by <to_copy>. */
1033 qel->tx.crypto.sz += to_copy;
1034 (*qcb)->sz += to_copy;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001035 len -= to_copy;
1036 data += to_copy;
1037 }
1038 else {
1039 struct quic_crypto_buf **tmp;
1040
1041 tmp = realloc(qel->tx.crypto.bufs,
1042 (*nb_buf + 1) * sizeof *qel->tx.crypto.bufs);
1043 if (tmp) {
1044 qel->tx.crypto.bufs = tmp;
1045 qcb = &qel->tx.crypto.bufs[*nb_buf];
1046 *qcb = pool_alloc(pool_head_quic_crypto_buf);
1047 if (!*qcb)
1048 return 0;
1049
1050 (*qcb)->sz = 0;
1051 ++*nb_buf;
1052 }
1053 else {
1054 break;
1055 }
1056 }
1057 }
1058
1059 /* Allocate a TX CRYPTO frame only if all the CRYPTO data
1060 * have been buffered.
1061 */
1062 if (!len) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02001063 struct quic_frame *frm;
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +01001064 struct quic_frame *found = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001065
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +01001066 /* There is at most one CRYPTO frame in this packet number
1067 * space. Let's look for it.
1068 */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001069 list_for_each_entry(frm, &qel->pktns->tx.frms, list) {
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +01001070 if (frm->type != QUIC_FT_CRYPTO)
1071 continue;
1072
1073 /* Found */
1074 found = frm;
1075 break;
1076 }
1077
1078 if (found) {
1079 found->crypto.len += cf_len;
1080 }
1081 else {
Frédéric Lécailleb9171912022-04-21 17:32:10 +02001082 frm = pool_zalloc(pool_head_quic_frame);
Frédéric Lécailled4ecf942022-01-04 23:15:40 +01001083 if (!frm)
1084 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001085
Frédéric Lécailleb9171912022-04-21 17:32:10 +02001086 LIST_INIT(&frm->reflist);
Frédéric Lécailled4ecf942022-01-04 23:15:40 +01001087 frm->type = QUIC_FT_CRYPTO;
1088 frm->crypto.offset = cf_offset;
1089 frm->crypto.len = cf_len;
1090 frm->crypto.qel = qel;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001091 LIST_APPEND(&qel->pktns->tx.frms, &frm->list);
Frédéric Lécailled4ecf942022-01-04 23:15:40 +01001092 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001093 }
1094
1095 return len == 0;
1096}
1097
1098
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01001099/* Set <alert> TLS alert as QUIC CRYPTO_ERROR error */
1100void quic_set_tls_alert(struct quic_conn *qc, int alert)
1101{
Frédéric Lécaillefc790062022-03-28 17:10:31 +02001102 qc->err_code = QC_ERR_CRYPTO_ERROR | alert;
1103 qc->flags |= QUIC_FL_CONN_IMMEDIATE_CLOSE;
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001104 TRACE_PROTO("Alert set", QUIC_EV_CONN_SSLDATA, qc);
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01001105}
1106
Frédéric Lécailleb0bd62d2021-12-14 19:34:08 +01001107/* Set the application for <qc> QUIC connection.
1108 * Return 1 if succeeded, 0 if not.
1109 */
1110int quic_set_app_ops(struct quic_conn *qc, const unsigned char *alpn, size_t alpn_len)
1111{
Amaury Denoyelle4b40f192022-01-19 11:29:25 +01001112 if (alpn_len >= 2 && memcmp(alpn, "h3", 2) == 0)
1113 qc->app_ops = &h3_ops;
1114 else if (alpn_len >= 10 && memcmp(alpn, "hq-interop", 10) == 0)
1115 qc->app_ops = &hq_interop_ops;
Frédéric Lécailleb0bd62d2021-12-14 19:34:08 +01001116 else
1117 return 0;
1118
Frédéric Lécailleb0bd62d2021-12-14 19:34:08 +01001119 return 1;
1120}
1121
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001122/* ->add_handshake_data QUIC TLS callback used by the QUIC TLS stack when it
1123 * wants to provide the QUIC layer with CRYPTO data.
1124 * Returns 1 if succeeded, 0 if not.
1125 */
1126int ha_quic_add_handshake_data(SSL *ssl, enum ssl_encryption_level_t level,
1127 const uint8_t *data, size_t len)
1128{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001129 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001130 enum quic_tls_enc_level tel;
1131 struct quic_enc_level *qel;
1132
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001133 qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
1134 TRACE_ENTER(QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaillefc790062022-03-28 17:10:31 +02001135 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001136 TRACE_PROTO("CC required", QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01001137 goto out;
1138 }
1139
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001140 tel = ssl_to_quic_enc_level(level);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001141 if (tel == -1) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001142 TRACE_PROTO("Wrong encryption level", QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001143 goto err;
1144 }
1145
Frédéric Lécaille3916ca12022-02-02 14:09:05 +01001146 qel = &qc->els[tel];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001147 if (!quic_crypto_data_cpy(qel, data, len)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001148 TRACE_PROTO("Could not bufferize", QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001149 goto err;
1150 }
1151
1152 TRACE_PROTO("CRYPTO data buffered", QUIC_EV_CONN_ADDDATA,
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001153 qc, &level, &len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001154
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01001155 out:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001156 TRACE_LEAVE(QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001157 return 1;
1158
1159 err:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001160 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001161 return 0;
1162}
1163
1164int ha_quic_flush_flight(SSL *ssl)
1165{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001166 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001167
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001168 TRACE_ENTER(QUIC_EV_CONN_FFLIGHT, qc);
1169 TRACE_LEAVE(QUIC_EV_CONN_FFLIGHT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001170
1171 return 1;
1172}
1173
1174int ha_quic_send_alert(SSL *ssl, enum ssl_encryption_level_t level, uint8_t alert)
1175{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001176 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001177
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001178 TRACE_DEVEL("SSL alert", QUIC_EV_CONN_SSLALERT, qc, &alert, &level);
1179 quic_set_tls_alert(qc, alert);
Frédéric Lécaillefc790062022-03-28 17:10:31 +02001180 qc->flags |= QUIC_FL_CONN_IMMEDIATE_CLOSE;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001181 return 1;
1182}
1183
1184/* QUIC TLS methods */
1185static SSL_QUIC_METHOD ha_quic_method = {
1186#ifdef OPENSSL_IS_BORINGSSL
1187 .set_read_secret = ha_set_rsec,
1188 .set_write_secret = ha_set_wsec,
1189#else
1190 .set_encryption_secrets = ha_quic_set_encryption_secrets,
1191#endif
1192 .add_handshake_data = ha_quic_add_handshake_data,
1193 .flush_flight = ha_quic_flush_flight,
1194 .send_alert = ha_quic_send_alert,
1195};
1196
1197/* Initialize the TLS context of a listener with <bind_conf> as configuration.
1198 * Returns an error count.
1199 */
1200int ssl_quic_initial_ctx(struct bind_conf *bind_conf)
1201{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001202 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
1203 int cfgerr = 0;
1204
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001205 long options =
1206 (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) |
1207 SSL_OP_SINGLE_ECDH_USE |
1208 SSL_OP_CIPHER_SERVER_PREFERENCE;
1209 SSL_CTX *ctx;
1210
1211 ctx = SSL_CTX_new(TLS_server_method());
1212 bind_conf->initial_ctx = ctx;
1213
1214 SSL_CTX_set_options(ctx, options);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001215 SSL_CTX_set_mode(ctx, SSL_MODE_RELEASE_BUFFERS);
1216 SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
1217 SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001218
1219#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1220#ifdef OPENSSL_IS_BORINGSSL
1221 SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk);
1222 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
1223#elif (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
1224 if (bind_conf->ssl_conf.early_data) {
1225 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
Frédéric Lécaillead3c07a2021-12-14 19:23:43 +01001226 SSL_CTX_set_max_early_data(ctx, 0xffffffff);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001227 }
1228 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
1229 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
1230#else
1231 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
1232#endif
1233 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
1234#endif
1235 SSL_CTX_set_quic_method(ctx, &ha_quic_method);
1236
1237 return cfgerr;
1238}
1239
1240/* Decode an expected packet number from <truncated_on> its truncated value,
1241 * depending on <largest_pn> the largest received packet number, and <pn_nbits>
1242 * the number of bits used to encode this packet number (its length in bytes * 8).
1243 * See https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#packet-encoding
1244 */
1245static uint64_t decode_packet_number(uint64_t largest_pn,
1246 uint32_t truncated_pn, unsigned int pn_nbits)
1247{
1248 uint64_t expected_pn = largest_pn + 1;
1249 uint64_t pn_win = (uint64_t)1 << pn_nbits;
1250 uint64_t pn_hwin = pn_win / 2;
1251 uint64_t pn_mask = pn_win - 1;
1252 uint64_t candidate_pn;
1253
1254
1255 candidate_pn = (expected_pn & ~pn_mask) | truncated_pn;
1256 /* Note that <pn_win> > <pn_hwin>. */
1257 if (candidate_pn < QUIC_MAX_PACKET_NUM - pn_win &&
1258 candidate_pn + pn_hwin <= expected_pn)
1259 return candidate_pn + pn_win;
1260
1261 if (candidate_pn > expected_pn + pn_hwin && candidate_pn >= pn_win)
1262 return candidate_pn - pn_win;
1263
1264 return candidate_pn;
1265}
1266
1267/* Remove the header protection of <pkt> QUIC packet using <tls_ctx> as QUIC TLS
1268 * cryptographic context.
1269 * <largest_pn> is the largest received packet number and <pn> the address of
1270 * the packet number field for this packet with <byte0> address of its first byte.
1271 * <end> points to one byte past the end of this packet.
1272 * Returns 1 if succeeded, 0 if not.
1273 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001274static int qc_do_rm_hp(struct quic_conn *qc,
1275 struct quic_rx_packet *pkt, struct quic_tls_ctx *tls_ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001276 int64_t largest_pn, unsigned char *pn,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001277 unsigned char *byte0, const unsigned char *end)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001278{
1279 int ret, outlen, i, pnlen;
1280 uint64_t packet_number;
1281 uint32_t truncated_pn = 0;
1282 unsigned char mask[5] = {0};
1283 unsigned char *sample;
1284 EVP_CIPHER_CTX *cctx;
1285 unsigned char *hp_key;
1286
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001287 /* Check there is enough data in this packet. */
1288 if (end - pn < QUIC_PACKET_PN_MAXLEN + sizeof mask) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001289 TRACE_DEVEL("too short packet", QUIC_EV_CONN_RMHP, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001290 return 0;
1291 }
1292
1293 cctx = EVP_CIPHER_CTX_new();
1294 if (!cctx) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001295 TRACE_DEVEL("memory allocation failed", QUIC_EV_CONN_RMHP, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001296 return 0;
1297 }
1298
1299 ret = 0;
1300 sample = pn + QUIC_PACKET_PN_MAXLEN;
1301
1302 hp_key = tls_ctx->rx.hp_key;
1303 if (!EVP_DecryptInit_ex(cctx, tls_ctx->rx.hp, NULL, hp_key, sample) ||
1304 !EVP_DecryptUpdate(cctx, mask, &outlen, mask, sizeof mask) ||
1305 !EVP_DecryptFinal_ex(cctx, mask, &outlen)) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001306 TRACE_DEVEL("decryption failed", QUIC_EV_CONN_RMHP, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001307 goto out;
1308 }
1309
1310 *byte0 ^= mask[0] & (*byte0 & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f);
1311 pnlen = (*byte0 & QUIC_PACKET_PNL_BITMASK) + 1;
1312 for (i = 0; i < pnlen; i++) {
1313 pn[i] ^= mask[i + 1];
1314 truncated_pn = (truncated_pn << 8) | pn[i];
1315 }
1316
1317 packet_number = decode_packet_number(largest_pn, truncated_pn, pnlen * 8);
1318 /* Store remaining information for this unprotected header */
1319 pkt->pn = packet_number;
1320 pkt->pnl = pnlen;
1321
1322 ret = 1;
1323
1324 out:
1325 EVP_CIPHER_CTX_free(cctx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001326
1327 return ret;
1328}
1329
1330/* Encrypt the payload of a QUIC packet with <pn> as number found at <payload>
1331 * address, with <payload_len> as payload length, <aad> as address of
1332 * the ADD and <aad_len> as AAD length depending on the <tls_ctx> QUIC TLS
1333 * context.
1334 * Returns 1 if succeeded, 0 if not.
1335 */
1336static int quic_packet_encrypt(unsigned char *payload, size_t payload_len,
1337 unsigned char *aad, size_t aad_len, uint64_t pn,
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01001338 struct quic_tls_ctx *tls_ctx, struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001339{
Frédéric Lécaillef2f4a4e2022-04-05 12:18:46 +02001340 unsigned char iv[QUIC_TLS_IV_LEN];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001341 unsigned char *tx_iv = tls_ctx->tx.iv;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +01001342 size_t tx_iv_sz = tls_ctx->tx.ivlen;
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001343 struct enc_debug_info edi;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001344
1345 if (!quic_aead_iv_build(iv, sizeof iv, tx_iv, tx_iv_sz, pn)) {
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01001346 TRACE_DEVEL("AEAD IV building for encryption failed", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001347 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001348 }
1349
1350 if (!quic_tls_encrypt(payload, payload_len, aad, aad_len,
Frédéric Lécaillef4605742022-04-05 10:28:29 +02001351 tls_ctx->tx.ctx, tls_ctx->tx.aead, tls_ctx->tx.key, iv)) {
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01001352 TRACE_DEVEL("QUIC packet encryption failed", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001353 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001354 }
1355
1356 return 1;
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001357
1358 err:
1359 enc_debug_info_init(&edi, payload, payload_len, aad, aad_len, pn);
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01001360 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ENCPKT, qc, &edi);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001361 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001362}
1363
1364/* Decrypt <pkt> QUIC packet with <tls_ctx> as QUIC TLS cryptographic context.
1365 * Returns 1 if succeeded, 0 if not.
1366 */
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001367static int qc_pkt_decrypt(struct quic_rx_packet *pkt, struct quic_enc_level *qel)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001368{
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001369 int ret, kp_changed;
Frédéric Lécaillef2f4a4e2022-04-05 12:18:46 +02001370 unsigned char iv[QUIC_TLS_IV_LEN];
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001371 struct quic_tls_ctx *tls_ctx = &qel->tls_ctx;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +02001372 EVP_CIPHER_CTX *rx_ctx = tls_ctx->rx.ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001373 unsigned char *rx_iv = tls_ctx->rx.iv;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001374 size_t rx_iv_sz = tls_ctx->rx.ivlen;
1375 unsigned char *rx_key = tls_ctx->rx.key;
1376
1377 kp_changed = 0;
1378 if (pkt->type == QUIC_PACKET_TYPE_SHORT) {
1379 /* The two tested bits are not at the same position,
1380 * this is why they are first both inversed.
1381 */
1382 if (!(*pkt->data & QUIC_PACKET_KEY_PHASE_BIT) ^ !(tls_ctx->flags & QUIC_FL_TLS_KP_BIT_SET)) {
1383 if (pkt->pn < tls_ctx->rx.pn) {
1384 /* The lowest packet number of a previous key phase
1385 * cannot be null if it really stores previous key phase
1386 * secrets.
1387 */
1388 if (!pkt->qc->ku.prv_rx.pn)
1389 return 0;
1390
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +02001391 rx_ctx = pkt->qc->ku.prv_rx.ctx;
1392 rx_iv = pkt->qc->ku.prv_rx.iv;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001393 rx_key = pkt->qc->ku.prv_rx.key;
1394 }
1395 else if (pkt->pn > qel->pktns->rx.largest_pn) {
1396 /* Next key phase */
1397 kp_changed = 1;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +02001398 rx_ctx = pkt->qc->ku.nxt_rx.ctx;
1399 rx_iv = pkt->qc->ku.nxt_rx.iv;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001400 rx_key = pkt->qc->ku.nxt_rx.key;
1401 }
1402 }
1403 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001404
1405 if (!quic_aead_iv_build(iv, sizeof iv, rx_iv, rx_iv_sz, pkt->pn))
1406 return 0;
1407
1408 ret = quic_tls_decrypt(pkt->data + pkt->aad_len, pkt->len - pkt->aad_len,
1409 pkt->data, pkt->aad_len,
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +02001410 rx_ctx, tls_ctx->rx.aead, rx_key, iv);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001411 if (!ret)
1412 return 0;
1413
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001414 /* Update the keys only if the packet decryption succeeded. */
1415 if (kp_changed) {
1416 quic_tls_rotate_keys(pkt->qc);
1417 /* Toggle the Key Phase bit */
1418 tls_ctx->flags ^= QUIC_FL_TLS_KP_BIT_SET;
1419 /* Store the lowest packet number received for the current key phase */
1420 tls_ctx->rx.pn = pkt->pn;
1421 /* Prepare the next key update */
1422 if (!quic_tls_key_update(pkt->qc))
1423 return 0;
1424 }
1425
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001426 /* Update the packet length (required to parse the frames). */
Frédéric Lécaillef4605742022-04-05 10:28:29 +02001427 pkt->len -= QUIC_TLS_TAG_LEN;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001428
1429 return 1;
1430}
1431
Frédéric Lécaille96367152022-04-25 09:40:19 +02001432
1433/* Remove references to <frm> frame */
1434static void qc_frm_unref(struct quic_conn *qc, struct quic_frame *frm)
1435{
1436 uint64_t pn;
1437 struct quic_frame *f, *tmp;
1438
1439 list_for_each_entry_safe(f, tmp, &frm->reflist, ref) {
1440 pn = f->pkt->pn_node.key;
1441 f->origin = NULL;
1442 LIST_DELETE(&f->ref);
1443 TRACE_PROTO("remove frame reference", QUIC_EV_CONN_PRSAFRM, qc, f, &pn);
1444 }
1445}
1446
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001447/* Release <frm> frame and mark its copies as acknowledged */
Frédéric Lécailleda342552022-04-25 10:28:49 +02001448void qc_release_frm(struct quic_conn *qc, struct quic_frame *frm)
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001449{
1450 uint64_t pn;
1451 struct quic_frame *origin, *f, *tmp;
1452
1453 /* Identify this frame: a frame copy or one of its copies */
1454 origin = frm->origin ? frm->origin : frm;
1455 /* Ensure the source of the copies is flagged as acked, <frm> being
1456 * possibly a copy of <origin>
1457 */
1458 origin->flags |= QUIC_FL_TX_FRAME_ACKED;
1459 /* Mark all the copy of <origin> as acknowledged. We must
1460 * not release the packets (releasing the frames) at this time as
1461 * they are possibly also to be acknowledged alongside the
1462 * the current one.
1463 */
1464 list_for_each_entry_safe(f, tmp, &origin->reflist, ref) {
1465 pn = f->pkt->pn_node.key;
1466 TRACE_PROTO("mark frame as acked from packet",
1467 QUIC_EV_CONN_PRSAFRM, qc, f, &pn);
1468 f->flags |= QUIC_FL_TX_FRAME_ACKED;
1469 f->origin = NULL;
1470 LIST_DELETE(&f->ref);
1471 }
1472 LIST_DELETE(&frm->list);
1473 pn = frm->pkt->pn_node.key;
1474 quic_tx_packet_refdec(frm->pkt);
1475 TRACE_PROTO("freeing frame from packet",
1476 QUIC_EV_CONN_PRSAFRM, qc, frm, &pn);
1477 pool_free(pool_head_quic_frame, frm);
1478}
1479
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001480/* Remove from <stream> the acknowledged frames.
Amaury Denoyelle95e50fb2022-03-29 14:50:25 +02001481 *
1482 * Returns 1 if at least one frame was removed else 0.
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001483 */
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001484static int quic_stream_try_to_consume(struct quic_conn *qc,
1485 struct qc_stream_desc *stream)
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001486{
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001487 int ret;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001488 struct eb64_node *frm_node;
1489
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001490 ret = 0;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001491 frm_node = eb64_first(&stream->acked_frms);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001492 while (frm_node) {
1493 struct quic_stream *strm;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001494 struct quic_frame *frm;
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001495 size_t offset, len;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001496
1497 strm = eb64_entry(&frm_node->node, struct quic_stream, offset);
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001498 offset = strm->offset.key;
1499 len = strm->len;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001500
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001501 if (offset > stream->ack_offset)
1502 break;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001503
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001504 if (qc_stream_desc_ack(&stream, offset, len)) {
Amaury Denoyelle7586bef2022-04-25 14:26:54 +02001505 /* cf. next comment : frame may be freed at this stage. */
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001506 TRACE_PROTO("stream consumed", QUIC_EV_CONN_ACKSTRM,
Amaury Denoyelle7586bef2022-04-25 14:26:54 +02001507 qc, stream ? strm : NULL, stream);
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001508 ret = 1;
1509 }
1510
Amaury Denoyelle7586bef2022-04-25 14:26:54 +02001511 /* If stream is NULL after qc_stream_desc_ack(), it means frame
1512 * has been freed. with the stream frames tree. Nothing to do
1513 * anymore in here.
1514 */
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001515 if (!stream)
1516 return 1;
1517
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001518 frm_node = eb64_next(frm_node);
1519 eb64_delete(&strm->offset);
Amaury Denoyelle7b4c9d62022-02-24 10:50:58 +01001520
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001521 frm = container_of(strm, struct quic_frame, stream);
Frédéric Lécailleda342552022-04-25 10:28:49 +02001522 qc_release_frm(qc, frm);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001523 }
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001524
1525 return ret;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001526}
1527
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001528/* Treat <frm> frame whose packet it is attached to has just been acknowledged. */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001529static inline void qc_treat_acked_tx_frm(struct quic_conn *qc,
1530 struct quic_frame *frm)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001531{
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001532 int stream_acked;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001533
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001534 TRACE_PROTO("Removing frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001535 stream_acked = 0;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001536 switch (frm->type) {
1537 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
1538 {
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001539 struct quic_stream *strm_frm = &frm->stream;
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001540 struct eb64_node *node = NULL;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001541 struct qc_stream_desc *stream = NULL;
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001542 const size_t offset = strm_frm->offset.key;
1543 const size_t len = strm_frm->len;
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001544
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001545 /* do not use strm_frm->stream as the qc_stream_desc instance
1546 * might be freed at this stage. Use the id to do a proper
Amaury Denoyellee4301da2022-04-19 17:59:50 +02001547 * lookup.
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001548 *
1549 * TODO if lookup operation impact on the perf is noticeable,
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001550 * implement a refcount on qc_stream_desc instances.
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001551 */
Amaury Denoyellee4301da2022-04-19 17:59:50 +02001552 node = eb64_lookup(&qc->streams_by_id, strm_frm->id);
1553 if (!node) {
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001554 TRACE_PROTO("acked stream for released stream", QUIC_EV_CONN_ACKSTRM, qc, strm_frm);
Frédéric Lécailleda342552022-04-25 10:28:49 +02001555 qc_release_frm(qc, frm);
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001556 /* early return */
1557 return;
1558 }
Amaury Denoyellee4301da2022-04-19 17:59:50 +02001559 stream = eb64_entry(node, struct qc_stream_desc, by_id);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001560
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001561 TRACE_PROTO("acked stream", QUIC_EV_CONN_ACKSTRM, qc, strm_frm, stream);
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001562 if (offset <= stream->ack_offset) {
1563 if (qc_stream_desc_ack(&stream, offset, len)) {
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001564 stream_acked = 1;
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001565 TRACE_PROTO("stream consumed", QUIC_EV_CONN_ACKSTRM,
1566 qc, strm_frm, stream);
1567 }
Amaury Denoyelle0c7679d2022-02-24 10:56:33 +01001568
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001569 if (!stream) {
1570 /* no need to continue if stream freed. */
1571 TRACE_PROTO("stream released and freed", QUIC_EV_CONN_ACKSTRM, qc);
Frédéric Lécailleda342552022-04-25 10:28:49 +02001572 qc_release_frm(qc, frm);
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001573 break;
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001574 }
1575
Frédéric Lécailleda342552022-04-25 10:28:49 +02001576 TRACE_PROTO("stream consumed", QUIC_EV_CONN_ACKSTRM,
1577 qc, strm_frm, stream);
1578 qc_release_frm(qc, frm);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001579 }
1580 else {
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001581 eb64_insert(&stream->acked_frms, &strm_frm->offset);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001582 }
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001583
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001584 stream_acked |= quic_stream_try_to_consume(qc, stream);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001585 }
1586 break;
1587 default:
Frédéric Lécailleda342552022-04-25 10:28:49 +02001588 qc_release_frm(qc, frm);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001589 }
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001590
Frédéric Lécaille89a2ceb2022-04-20 15:59:07 +02001591 if (stream_acked && qc->mux_state == QC_MUX_READY) {
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001592 struct qcc *qcc = qc->qcc;
1593
1594 if (qcc->subs && qcc->subs->events & SUB_RETRY_SEND) {
1595 tasklet_wakeup(qcc->subs->tasklet);
1596 qcc->subs->events &= ~SUB_RETRY_SEND;
1597 if (!qcc->subs->events)
1598 qcc->subs = NULL;
1599 }
1600 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001601}
1602
1603/* Remove <largest> down to <smallest> node entries from <pkts> tree of TX packet,
1604 * deallocating them, and their TX frames.
1605 * Returns the last node reached to be used for the next range.
1606 * May be NULL if <largest> node could not be found.
1607 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001608static inline struct eb64_node *qc_ackrng_pkts(struct quic_conn *qc,
1609 struct eb_root *pkts,
1610 unsigned int *pkt_flags,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001611 struct list *newly_acked_pkts,
1612 struct eb64_node *largest_node,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001613 uint64_t largest, uint64_t smallest)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001614{
1615 struct eb64_node *node;
1616 struct quic_tx_packet *pkt;
1617
1618 if (largest_node)
1619 node = largest_node;
1620 else {
1621 node = eb64_lookup(pkts, largest);
1622 while (!node && largest > smallest) {
1623 node = eb64_lookup(pkts, --largest);
1624 }
1625 }
1626
1627 while (node && node->key >= smallest) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02001628 struct quic_frame *frm, *frmbak;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001629
1630 pkt = eb64_entry(&node->node, struct quic_tx_packet, pn_node);
1631 *pkt_flags |= pkt->flags;
Willy Tarreau2b718102021-04-21 07:32:39 +02001632 LIST_INSERT(newly_acked_pkts, &pkt->list);
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001633 TRACE_PROTO("Removing packet #", QUIC_EV_CONN_PRSAFRM, qc, NULL, &pkt->pn_node.key);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001634 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list)
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001635 qc_treat_acked_tx_frm(qc, frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001636 node = eb64_prev(node);
1637 eb64_delete(&pkt->pn_node);
1638 }
1639
1640 return node;
1641}
1642
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001643/* Remove all frames from <pkt_frm_list> and reinsert them in the
1644 * same order they have been sent into <pktns_frm_list>.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001645 */
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001646static inline void qc_requeue_nacked_pkt_tx_frms(struct quic_conn *qc,
Frédéric Lécaille96367152022-04-25 09:40:19 +02001647 struct quic_tx_packet *pkt,
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001648 struct list *pktns_frm_list)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001649{
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001650 struct quic_frame *frm, *frmbak;
1651 struct list tmp = LIST_HEAD_INIT(tmp);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001652 struct list *pkt_frm_list = &pkt->frms;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001653
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001654 list_for_each_entry_safe(frm, frmbak, pkt_frm_list, list) {
Frédéric Lécaille96367152022-04-25 09:40:19 +02001655 /* Only for debug */
1656 uint64_t pn;
1657
1658 /* First remove this frame from the packet it was attached to */
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001659 LIST_DELETE(&frm->list);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001660 pn = frm->pkt->pn_node.key;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001661 quic_tx_packet_refdec(frm->pkt);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001662 /* At this time, this frame is not freed but removed from its packet */
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001663 frm->pkt = NULL;
Frédéric Lécaille96367152022-04-25 09:40:19 +02001664 /* Remove any reference to this frame */
1665 qc_frm_unref(qc, frm);
1666 switch (frm->type) {
1667 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
1668 {
1669 struct quic_stream *strm_frm = &frm->stream;
1670 struct eb64_node *node = NULL;
1671 struct qc_stream_desc *stream_desc;
1672
1673 node = eb64_lookup(&qc->streams_by_id, strm_frm->id);
1674 if (!node) {
1675 TRACE_PROTO("released stream", QUIC_EV_CONN_PRSAFRM, qc, strm_frm);
1676 TRACE_PROTO("freeing frame from packet", QUIC_EV_CONN_PRSAFRM,
1677 qc, frm, &pn);
1678 pool_free(pool_head_quic_frame, frm);
1679 continue;
1680 }
1681
1682 stream_desc = eb64_entry(node, struct qc_stream_desc, by_id);
1683 /* Do not resend this frame if in the "already acked range" */
1684 if (strm_frm->offset.key + strm_frm->len <= stream_desc->ack_offset) {
1685 TRACE_PROTO("ignored frame in already acked range",
1686 QUIC_EV_CONN_PRSAFRM, qc, frm);
1687 continue;
1688 }
1689 else if (strm_frm->offset.key < stream_desc->ack_offset) {
1690 strm_frm->offset.key = stream_desc->ack_offset;
1691 TRACE_PROTO("updated partially acked frame",
1692 QUIC_EV_CONN_PRSAFRM, qc, frm);
1693 }
1694
1695 break;
1696 }
1697
1698 default:
1699 break;
1700 }
1701
1702 /* Do not resend probing packet with old data */
1703 if (pkt->flags & QUIC_FL_TX_PACKET_PROBE_WITH_OLD_DATA) {
1704 TRACE_PROTO("ignored frame with old data from packet", QUIC_EV_CONN_PRSAFRM,
1705 qc, frm, &pn);
1706 if (frm->origin)
1707 LIST_DELETE(&frm->ref);
1708 pool_free(pool_head_quic_frame, frm);
1709 continue;
1710 }
1711
1712 if (frm->flags & QUIC_FL_TX_FRAME_ACKED) {
1713 TRACE_PROTO("already acked frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
1714 TRACE_PROTO("freeing frame from packet", QUIC_EV_CONN_PRSAFRM,
1715 qc, frm, &pn);
1716 pool_free(pool_head_quic_frame, frm);
1717 }
1718 else {
1719 TRACE_PROTO("to resend frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02001720 if (QUIC_FT_STREAM_8 <= frm->type && frm->type <= QUIC_FT_STREAM_F) {
1721 /* Mark this STREAM frame as lost. A look up their stream descriptor
1722 * will be performed to check the stream is not consumed or released.
1723 */
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02001724 frm->flags = QUIC_FL_TX_FRAME_LOST;
1725 }
Frédéric Lécaille96367152022-04-25 09:40:19 +02001726 LIST_APPEND(&tmp, &frm->list);
1727 }
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001728 }
1729
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001730 LIST_SPLICE(pktns_frm_list, &tmp);
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001731}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001732
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001733/* Free <pkt> TX packet and its attached frames.
1734 * This is the responsability of the caller to remove this packet of
1735 * any data structure it was possibly attached to.
1736 */
1737static inline void free_quic_tx_packet(struct quic_tx_packet *pkt)
1738{
1739 struct quic_frame *frm, *frmbak;
1740
1741 if (!pkt)
1742 return;
1743
1744 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list) {
1745 LIST_DELETE(&frm->list);
1746 pool_free(pool_head_quic_frame, frm);
1747 }
1748 pool_free(pool_head_quic_tx_packet, pkt);
1749}
1750
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001751/* Free the TX packets of <pkts> list */
1752static inline void free_quic_tx_pkts(struct list *pkts)
1753{
1754 struct quic_tx_packet *pkt, *tmp;
1755
1756 list_for_each_entry_safe(pkt, tmp, pkts, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001757 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001758 eb64_delete(&pkt->pn_node);
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001759 free_quic_tx_packet(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001760 }
1761}
1762
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001763/* Remove already sent ranges of acknowledged packet numbers from
1764 * <pktns> packet number space tree below <largest_acked_pn> possibly
1765 * updating the range which contains <largest_acked_pn>.
1766 * Never fails.
1767 */
1768static void qc_treat_ack_of_ack(struct quic_pktns *pktns,
1769 int64_t largest_acked_pn)
1770{
1771 struct eb64_node *ar, *next_ar;
1772 struct quic_arngs *arngs = &pktns->rx.arngs;
1773
1774 ar = eb64_first(&arngs->root);
1775 while (ar) {
1776 struct quic_arng_node *ar_node;
1777
1778 next_ar = eb64_next(ar);
1779 ar_node = eb64_entry(&ar->node, struct quic_arng_node, first);
1780 if ((int64_t)ar_node->first.key > largest_acked_pn)
1781 break;
1782
1783 if (largest_acked_pn < ar_node->last) {
1784 eb64_delete(ar);
1785 ar_node->first.key = largest_acked_pn + 1;
1786 eb64_insert(&arngs->root, ar);
1787 break;
1788 }
1789
1790 eb64_delete(ar);
1791 pool_free(pool_head_quic_arng, ar_node);
1792 arngs->sz--;
1793 ar = next_ar;
1794 }
1795}
1796
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001797/* Send a packet ack event nofication for each newly acked packet of
1798 * <newly_acked_pkts> list and free them.
1799 * Always succeeds.
1800 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001801static inline void qc_treat_newly_acked_pkts(struct quic_conn *qc,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001802 struct list *newly_acked_pkts)
1803{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001804 struct quic_tx_packet *pkt, *tmp;
1805 struct quic_cc_event ev = { .type = QUIC_CC_EVT_ACK, };
1806
1807 list_for_each_entry_safe(pkt, tmp, newly_acked_pkts, list) {
1808 pkt->pktns->tx.in_flight -= pkt->in_flight_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01001809 qc->path->prep_in_flight -= pkt->in_flight_len;
Frédéric Lécailleba9db402022-03-01 17:06:50 +01001810 qc->path->in_flight -= pkt->in_flight_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001811 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01001812 qc->path->ifae_pkts--;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001813 /* If this packet contained an ACK frame, proceed to the
1814 * acknowledging of range of acks from the largest acknowledged
1815 * packet number which was sent in an ACK frame by this packet.
1816 */
1817 if (pkt->largest_acked_pn != -1)
1818 qc_treat_ack_of_ack(pkt->pktns, pkt->largest_acked_pn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001819 ev.ack.acked = pkt->in_flight_len;
1820 ev.ack.time_sent = pkt->time_sent;
1821 quic_cc_event(&qc->path->cc, &ev);
Willy Tarreau2b718102021-04-21 07:32:39 +02001822 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001823 eb64_delete(&pkt->pn_node);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001824 quic_tx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001825 }
1826
1827}
1828
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01001829/* Release all the frames attached to <pktns> packet number space */
1830static inline void qc_release_pktns_frms(struct quic_pktns *pktns)
1831{
1832 struct quic_frame *frm, *frmbak;
1833
1834 list_for_each_entry_safe(frm, frmbak, &pktns->tx.frms, list) {
1835 LIST_DELETE(&frm->list);
1836 pool_free(pool_head_quic_frame, frm);
1837 }
1838}
1839
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001840/* Handle <pkts> list of lost packets detected at <now_us> handling
1841 * their TX frames.
1842 * Send a packet loss event to the congestion controller if
1843 * in flight packet have been lost.
1844 * Also frees the packet in <pkts> list.
1845 * Never fails.
1846 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001847static inline void qc_release_lost_pkts(struct quic_conn *qc,
1848 struct quic_pktns *pktns,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001849 struct list *pkts,
1850 uint64_t now_us)
1851{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001852 struct quic_tx_packet *pkt, *tmp, *oldest_lost, *newest_lost;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001853 uint64_t lost_bytes;
1854
1855 lost_bytes = 0;
1856 oldest_lost = newest_lost = NULL;
1857 list_for_each_entry_safe(pkt, tmp, pkts, list) {
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001858 struct list tmp = LIST_HEAD_INIT(tmp);
1859
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001860 lost_bytes += pkt->in_flight_len;
1861 pkt->pktns->tx.in_flight -= pkt->in_flight_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01001862 qc->path->prep_in_flight -= pkt->in_flight_len;
Frédéric Lécailleba9db402022-03-01 17:06:50 +01001863 qc->path->in_flight -= pkt->in_flight_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001864 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01001865 qc->path->ifae_pkts--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001866 /* Treat the frames of this lost packet. */
Frédéric Lécaille96367152022-04-25 09:40:19 +02001867 qc_requeue_nacked_pkt_tx_frms(qc, pkt, &pktns->tx.frms);
Willy Tarreau2b718102021-04-21 07:32:39 +02001868 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001869 if (!oldest_lost) {
1870 oldest_lost = newest_lost = pkt;
1871 }
1872 else {
1873 if (newest_lost != oldest_lost)
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001874 quic_tx_packet_refdec(newest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001875 newest_lost = pkt;
1876 }
1877 }
1878
Frédéric Lécaillea5ee0ae2022-03-02 14:52:56 +01001879 if (newest_lost) {
1880 /* Sent a congestion event to the controller */
1881 struct quic_cc_event ev = {
1882 .type = QUIC_CC_EVT_LOSS,
1883 .loss.time_sent = newest_lost->time_sent,
1884 };
1885
1886 quic_cc_event(&qc->path->cc, &ev);
1887 }
1888
1889 /* If an RTT have been already sampled, <rtt_min> has been set.
1890 * We must check if we are experiencing a persistent congestion.
1891 * If this is the case, the congestion controller must re-enter
1892 * slow start state.
1893 */
1894 if (qc->path->loss.rtt_min && newest_lost != oldest_lost) {
1895 unsigned int period = newest_lost->time_sent - oldest_lost->time_sent;
1896
1897 if (quic_loss_persistent_congestion(&qc->path->loss, period,
1898 now_ms, qc->max_ack_delay))
1899 qc->path->cc.algo->slow_start(&qc->path->cc);
1900 }
1901
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001902 if (lost_bytes) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001903 quic_tx_packet_refdec(oldest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001904 if (newest_lost != oldest_lost)
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001905 quic_tx_packet_refdec(newest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001906 }
1907}
1908
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001909/* Parse ACK frame into <frm> from a buffer at <buf> address with <end> being at
1910 * one byte past the end of this buffer. Also update <rtt_sample> if needed, i.e.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05001911 * 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 +01001912 * acked ack-eliciting packet.
1913 * Return 1, if succeeded, 0 if not.
1914 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001915static inline int qc_parse_ack_frm(struct quic_conn *qc,
1916 struct quic_frame *frm,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001917 struct quic_enc_level *qel,
1918 unsigned int *rtt_sample,
1919 const unsigned char **pos, const unsigned char *end)
1920{
1921 struct quic_ack *ack = &frm->ack;
1922 uint64_t smallest, largest;
1923 struct eb_root *pkts;
1924 struct eb64_node *largest_node;
1925 unsigned int time_sent, pkt_flags;
1926 struct list newly_acked_pkts = LIST_HEAD_INIT(newly_acked_pkts);
1927 struct list lost_pkts = LIST_HEAD_INIT(lost_pkts);
1928
1929 if (ack->largest_ack > qel->pktns->tx.next_pn) {
1930 TRACE_DEVEL("ACK for not sent packet", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001931 qc, NULL, &ack->largest_ack);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001932 goto err;
1933 }
1934
1935 if (ack->first_ack_range > ack->largest_ack) {
1936 TRACE_DEVEL("too big first ACK range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001937 qc, NULL, &ack->first_ack_range);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001938 goto err;
1939 }
1940
1941 largest = ack->largest_ack;
1942 smallest = largest - ack->first_ack_range;
1943 pkts = &qel->pktns->tx.pkts;
1944 pkt_flags = 0;
1945 largest_node = NULL;
1946 time_sent = 0;
1947
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02001948 if ((int64_t)ack->largest_ack > qel->pktns->rx.largest_acked_pn) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001949 largest_node = eb64_lookup(pkts, largest);
1950 if (!largest_node) {
1951 TRACE_DEVEL("Largest acked packet not found",
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001952 QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille83b7a5b2021-11-17 16:16:04 +01001953 }
1954 else {
1955 time_sent = eb64_entry(&largest_node->node,
1956 struct quic_tx_packet, pn_node)->time_sent;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001957 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001958 }
1959
1960 TRACE_PROTO("ack range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001961 qc, NULL, &largest, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001962 do {
1963 uint64_t gap, ack_range;
1964
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001965 qc_ackrng_pkts(qc, pkts, &pkt_flags, &newly_acked_pkts,
1966 largest_node, largest, smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001967 if (!ack->ack_range_num--)
1968 break;
1969
1970 if (!quic_dec_int(&gap, pos, end))
1971 goto err;
1972
1973 if (smallest < gap + 2) {
1974 TRACE_DEVEL("wrong gap value", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001975 qc, NULL, &gap, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001976 goto err;
1977 }
1978
1979 largest = smallest - gap - 2;
1980 if (!quic_dec_int(&ack_range, pos, end))
1981 goto err;
1982
1983 if (largest < ack_range) {
1984 TRACE_DEVEL("wrong ack range value", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001985 qc, NULL, &largest, &ack_range);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001986 goto err;
1987 }
1988
1989 /* Do not use this node anymore. */
1990 largest_node = NULL;
1991 /* Next range */
1992 smallest = largest - ack_range;
1993
1994 TRACE_PROTO("ack range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001995 qc, NULL, &largest, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001996 } while (1);
1997
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001998 if (time_sent && (pkt_flags & QUIC_FL_TX_PACKET_ACK_ELICITING)) {
1999 *rtt_sample = tick_remain(time_sent, now_ms);
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02002000 qel->pktns->rx.largest_acked_pn = ack->largest_ack;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002001 }
2002
2003 if (!LIST_ISEMPTY(&newly_acked_pkts)) {
2004 if (!eb_is_empty(&qel->pktns->tx.pkts)) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002005 qc_packet_loss_lookup(qel->pktns, qc, &lost_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002006 if (!LIST_ISEMPTY(&lost_pkts))
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002007 qc_release_lost_pkts(qc, qel->pktns, &lost_pkts, now_ms);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002008 }
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002009 qc_treat_newly_acked_pkts(qc, &newly_acked_pkts);
2010 if (quic_peer_validated_addr(qc))
2011 qc->path->loss.pto_count = 0;
2012 qc_set_timer(qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002013 }
2014
2015
2016 return 1;
2017
2018 err:
2019 free_quic_tx_pkts(&newly_acked_pkts);
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002020 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002021 return 0;
2022}
2023
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02002024/* This function gives the detail of the SSL error. It is used only
2025 * if the debug mode and the verbose mode are activated. It dump all
2026 * the SSL error until the stack was empty.
2027 */
2028static forceinline void qc_ssl_dump_errors(struct connection *conn)
2029{
2030 if (unlikely(global.mode & MODE_DEBUG)) {
2031 while (1) {
Willy Tarreau325fc632022-04-11 18:47:38 +02002032 const char *func = NULL;
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02002033 unsigned long ret;
2034
Willy Tarreau325fc632022-04-11 18:47:38 +02002035 ERR_peek_error_func(&func);
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02002036 ret = ERR_get_error();
2037 if (!ret)
2038 return;
2039
2040 fprintf(stderr, "conn. @%p OpenSSL error[0x%lx] %s: %s\n", conn, ret,
Willy Tarreau325fc632022-04-11 18:47:38 +02002041 func, ERR_reason_error_string(ret));
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02002042 }
2043 }
2044}
2045
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01002046int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx,
2047 const char **str, int *len);
2048
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002049/* Provide CRYPTO data to the TLS stack found at <data> with <len> as length
2050 * from <qel> encryption level with <ctx> as QUIC connection context.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05002051 * Remaining parameter are there for debugging purposes.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002052 * Return 1 if succeeded, 0 if not.
2053 */
2054static inline int qc_provide_cdata(struct quic_enc_level *el,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002055 struct ssl_sock_ctx *ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002056 const unsigned char *data, size_t len,
2057 struct quic_rx_packet *pkt,
2058 struct quic_rx_crypto_frm *cf)
2059{
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02002060 int ssl_err, state;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002061 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002062
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002063 ssl_err = SSL_ERROR_NONE;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01002064 qc = ctx->qc;
2065
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002066 TRACE_ENTER(QUIC_EV_CONN_SSLDATA, qc);
2067
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002068 if (SSL_provide_quic_data(ctx->ssl, el->level, data, len) != 1) {
2069 TRACE_PROTO("SSL_provide_quic_data() error",
Frédéric Lécaillefde2a982021-12-27 15:12:09 +01002070 QUIC_EV_CONN_SSLDATA, qc, pkt, cf, ctx->ssl);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002071 goto err;
2072 }
2073
2074 el->rx.crypto.offset += len;
2075 TRACE_PROTO("in order CRYPTO data",
Frédéric Lécaillee7ff2b22021-12-22 17:40:38 +01002076 QUIC_EV_CONN_SSLDATA, qc, NULL, cf, ctx->ssl);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002077
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002078 state = qc->state;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02002079 if (state < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002080 ssl_err = SSL_do_handshake(ctx->ssl);
2081 if (ssl_err != 1) {
2082 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
2083 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
2084 TRACE_PROTO("SSL handshake",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002085 QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002086 goto out;
2087 }
2088
2089 TRACE_DEVEL("SSL handshake error",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002090 QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaille7c881bd2021-09-28 09:05:59 +02002091 qc_ssl_dump_errors(ctx->conn);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01002092 ERR_clear_error();
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002093 goto err;
2094 }
2095
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002096 TRACE_PROTO("SSL handshake OK", QUIC_EV_CONN_IO_CB, qc, &state);
Frédéric Lécaillebc964bd2022-04-13 16:20:09 +02002097
2098 /* Check the alpn could be negotiated */
2099 if (!qc->app_ops) {
2100 TRACE_PROTO("No ALPN", QUIC_EV_CONN_IO_CB, qc, &state);
2101 quic_set_tls_alert(qc, SSL_AD_NO_APPLICATION_PROTOCOL);
2102 goto err;
2103 }
2104
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002105 /* I/O callback switch */
2106 ctx->wait_event.tasklet->process = quic_conn_app_io_cb;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01002107 if (qc_is_listener(ctx->qc)) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002108 qc->state = QUIC_HS_ST_CONFIRMED;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01002109 /* The connection is ready to be accepted. */
2110 quic_accept_push_qc(qc);
2111 }
2112 else {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002113 qc->state = QUIC_HS_ST_COMPLETE;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01002114 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002115 } else {
2116 ssl_err = SSL_process_quic_post_handshake(ctx->ssl);
2117 if (ssl_err != 1) {
2118 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
2119 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
2120 TRACE_DEVEL("SSL post handshake",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002121 QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002122 goto out;
2123 }
2124
2125 TRACE_DEVEL("SSL post handshake error",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002126 QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002127 goto err;
2128 }
2129
2130 TRACE_PROTO("SSL post handshake succeeded",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002131 QUIC_EV_CONN_IO_CB, qc, &state);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002132 }
Amaury Denoyellee2288c32021-12-03 14:44:21 +01002133
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002134 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002135 TRACE_LEAVE(QUIC_EV_CONN_SSLDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002136 return 1;
2137
2138 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002139 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_SSLDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002140 return 0;
2141}
2142
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002143/* Allocate a new STREAM RX frame from <stream_fm> STREAM frame attached to
2144 * <pkt> RX packet.
2145 * Return it if succeeded, NULL if not.
2146 */
2147static inline
2148struct quic_rx_strm_frm *new_quic_rx_strm_frm(struct quic_stream *stream_frm,
2149 struct quic_rx_packet *pkt)
2150{
2151 struct quic_rx_strm_frm *frm;
2152
2153 frm = pool_alloc(pool_head_quic_rx_strm_frm);
2154 if (frm) {
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02002155 frm->offset_node.key = stream_frm->offset.key;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002156 frm->len = stream_frm->len;
2157 frm->data = stream_frm->data;
2158 frm->pkt = pkt;
Amaury Denoyelle3c430392022-02-28 11:38:36 +01002159 frm->fin = stream_frm->fin;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002160 }
2161
2162 return frm;
2163}
2164
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002165/* Copy as most as possible STREAM data from <strm_frm> into <strm> stream.
Frédéric Lécaille3fe7df82021-12-15 15:32:55 +01002166 * Also update <strm_frm> frame to reflect the data which have been consumed.
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002167 */
2168static size_t qc_strm_cpy(struct buffer *buf, struct quic_stream *strm_frm)
2169{
2170 size_t ret;
2171
Amaury Denoyelle2d2d0302022-02-28 10:00:54 +01002172 ret = b_putblk(buf, (char *)strm_frm->data, strm_frm->len);
2173 strm_frm->len -= ret;
2174 strm_frm->offset.key += ret;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002175
2176 return ret;
2177}
2178
2179/* Handle <strm_frm> bidirectional STREAM frame. Depending on its ID, several
2180 * streams may be open. The data are copied to the stream RX buffer if possible.
2181 * If not, the STREAM frame is stored to be treated again later.
2182 * We rely on the flow control so that not to store too much STREAM frames.
2183 * Return 1 if succeeded, 0 if not.
2184 */
2185static int qc_handle_bidi_strm_frm(struct quic_rx_packet *pkt,
2186 struct quic_stream *strm_frm,
2187 struct quic_conn *qc)
2188{
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002189 struct quic_rx_strm_frm *frm;
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002190 struct eb64_node *frm_node;
2191 struct qcs *qcs = NULL;
Amaury Denoyelle03cc62c2022-04-27 16:53:16 +02002192 size_t done, buf_was_full;
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002193 int ret;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002194
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002195 ret = qcc_recv(qc->qcc, strm_frm->id, strm_frm->len,
2196 strm_frm->offset.key, strm_frm->fin,
Amaury Denoyelle3df8ca02022-04-26 11:36:40 +02002197 (char *)strm_frm->data, &qcs, &done);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002198
Amaury Denoyelle74cf2372022-04-29 15:58:22 +02002199 /* invalid frame */
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002200 if (ret == 1)
Amaury Denoyelle74cf2372022-04-29 15:58:22 +02002201 return 0;
2202
2203 /* already fully received offset */
2204 if (ret == 0 && done == 0)
Amaury Denoyelle20f89ca2022-03-08 10:48:35 +01002205 return 1;
Frédéric Lécaille10250b22021-12-22 16:13:43 +01002206
Amaury Denoyelle74cf2372022-04-29 15:58:22 +02002207 /* frame not handled (partially or completely) must be buffered */
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002208 if (ret == 2) {
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002209 frm = new_quic_rx_strm_frm(strm_frm, pkt);
2210 if (!frm) {
2211 TRACE_PROTO("Could not alloc RX STREAM frame",
Frédéric Lécaille10250b22021-12-22 16:13:43 +01002212 QUIC_EV_CONN_PSTRM, qc);
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002213 return 0;
Frédéric Lécaille10250b22021-12-22 16:13:43 +01002214 }
2215
Amaury Denoyelle74cf2372022-04-29 15:58:22 +02002216 /* frame partially handled by the MUX */
Amaury Denoyelle3df8ca02022-04-26 11:36:40 +02002217 if (done) {
2218 BUG_ON(done >= frm->len); /* must never happen */
2219 frm->len -= done;
2220 frm->data += done;
2221 frm->offset_node.key += done;
2222 }
2223
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002224 eb64_insert(&qcs->rx.frms, &frm->offset_node);
2225 quic_rx_packet_refinc(pkt);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002226
Amaury Denoyelle3df8ca02022-04-26 11:36:40 +02002227 /* interrupt only if frame was not received at all. */
2228 if (!done)
2229 return 1;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002230 }
2231
Amaury Denoyelle03cc62c2022-04-27 16:53:16 +02002232 /* Decode the data if buffer is already full as it's not possible to
2233 * dequeue a frame in this condition.
2234 */
2235 if (b_full(&qcs->rx.buf))
2236 qcc_decode_qcs(qc->qcc, qcs);
2237
2238 retry:
Amaury Denoyelle3df8ca02022-04-26 11:36:40 +02002239 /* Frame received (partially or not) by the mux.
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002240 * If there is buffered frame for next offset, it may be possible to
2241 * receive them now.
2242 */
2243 frm_node = eb64_first(&qcs->rx.frms);
2244 while (frm_node) {
2245 frm = eb64_entry(&frm_node->node,
2246 struct quic_rx_strm_frm, offset_node);
Amaury Denoyelle3c430392022-02-28 11:38:36 +01002247
Amaury Denoyelled8e680c2022-03-29 15:18:44 +02002248 ret = qcc_recv(qc->qcc, qcs->id, frm->len,
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002249 frm->offset_node.key, frm->fin,
Amaury Denoyelle3df8ca02022-04-26 11:36:40 +02002250 (char *)frm->data, &qcs, &done);
Frédéric Lécaillef1d38cb2021-12-20 12:02:13 +01002251
Amaury Denoyelle74cf2372022-04-29 15:58:22 +02002252 BUG_ON(ret == 1); /* must never happen for buffered frames */
2253
Amaury Denoyelle3df8ca02022-04-26 11:36:40 +02002254 /* interrupt the parsing if the frame cannot be handled
2255 * entirely for the moment only.
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002256 */
Amaury Denoyelle3df8ca02022-04-26 11:36:40 +02002257 if (ret == 2) {
2258 if (done) {
2259 BUG_ON(done >= frm->len); /* must never happen */
2260 frm->len -= done;
2261 frm->data += done;
2262
2263 eb64_delete(&frm->offset_node);
2264 frm->offset_node.key += done;
2265 eb64_insert(&qcs->rx.frms, &frm->offset_node);
2266 }
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002267 break;
Amaury Denoyelle3df8ca02022-04-26 11:36:40 +02002268 }
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002269
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002270 /* Remove a newly received frame or an invalid one. */
2271 frm_node = eb64_next(frm_node);
2272 eb64_delete(&frm->offset_node);
2273 quic_rx_packet_refdec(frm->pkt);
2274 pool_free(pool_head_quic_rx_strm_frm, frm);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002275 }
2276
Amaury Denoyelle03cc62c2022-04-27 16:53:16 +02002277 buf_was_full = b_full(&qcs->rx.buf);
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002278 /* Decode the received data. */
Amaury Denoyelle20f89ca2022-03-08 10:48:35 +01002279 qcc_decode_qcs(qc->qcc, qcs);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002280
Amaury Denoyelle03cc62c2022-04-27 16:53:16 +02002281 /* Buffer was full so the reception was stopped. Now the buffer has
2282 * space available thanks to qcc_decode_qcs(). We can now retry to
2283 * handle more data.
2284 */
2285 if (buf_was_full && !b_full(&qcs->rx.buf))
2286 goto retry;
2287
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002288 return 1;
2289}
2290
2291/* Handle <strm_frm> unidirectional STREAM frame. Depending on its ID, several
2292 * streams may be open. The data are copied to the stream RX buffer if possible.
2293 * If not, the STREAM frame is stored to be treated again later.
2294 * We rely on the flow control so that not to store too much STREAM frames.
2295 * Return 1 if succeeded, 0 if not.
2296 */
2297static int qc_handle_uni_strm_frm(struct quic_rx_packet *pkt,
2298 struct quic_stream *strm_frm,
2299 struct quic_conn *qc)
2300{
2301 struct qcs *strm;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002302 struct quic_rx_strm_frm *frm;
2303 size_t strm_frm_len;
2304
Amaury Denoyelle50742292022-03-29 14:57:19 +02002305 strm = qcc_get_qcs(qc->qcc, strm_frm->id);
2306 if (!strm) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002307 TRACE_PROTO("Stream not found", QUIC_EV_CONN_PSTRM, qc);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002308 return 0;
2309 }
2310
Frédéric Lécaille10250b22021-12-22 16:13:43 +01002311 if (strm_frm->offset.key < strm->rx.offset) {
2312 size_t diff;
2313
2314 if (strm_frm->offset.key + strm_frm->len <= strm->rx.offset) {
2315 TRACE_PROTO("Already received STREAM data",
2316 QUIC_EV_CONN_PSTRM, qc);
2317 goto out;
2318 }
2319
2320 TRACE_PROTO("Partially already received STREAM data", QUIC_EV_CONN_PSTRM, qc);
2321 diff = strm->rx.offset - strm_frm->offset.key;
2322 strm_frm->offset.key = strm->rx.offset;
2323 strm_frm->len -= diff;
2324 strm_frm->data += diff;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002325 }
2326
2327 strm_frm_len = strm_frm->len;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02002328 if (strm_frm->offset.key == strm->rx.offset) {
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002329 int ret;
2330
Amaury Denoyelle1e308ff2021-10-12 18:14:12 +02002331 if (!qc_get_buf(strm, &strm->rx.buf))
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002332 goto store_frm;
2333
2334 /* qc_strm_cpy() will modify the offset, depending on the number
2335 * of bytes copied.
2336 */
2337 ret = qc_strm_cpy(&strm->rx.buf, strm_frm);
2338 /* Inform the application of the arrival of this new stream */
2339 if (!strm->rx.offset && !qc->qcc->app_ops->attach_ruqs(strm, qc->qcc->ctx)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002340 TRACE_PROTO("Could not set an uni-stream", QUIC_EV_CONN_PSTRM, qc);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002341 return 0;
2342 }
2343
Amaury Denoyellea3f222d2021-12-06 11:24:00 +01002344 if (ret)
2345 qcs_notify_recv(strm);
2346
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02002347 strm_frm->offset.key += ret;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002348 }
2349 /* Take this frame into an account for the stream flow control */
2350 strm->rx.offset += strm_frm_len;
2351 /* It all the data were provided to the application, there is no need to
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +05002352 * store any more information for it.
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002353 */
2354 if (!strm_frm->len)
2355 goto out;
2356
2357 store_frm:
2358 frm = new_quic_rx_strm_frm(strm_frm, pkt);
2359 if (!frm) {
2360 TRACE_PROTO("Could not alloc RX STREAM frame",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002361 QUIC_EV_CONN_PSTRM, qc);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002362 return 0;
2363 }
2364
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02002365 eb64_insert(&strm->rx.frms, &frm->offset_node);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002366 quic_rx_packet_refinc(pkt);
2367
2368 out:
2369 return 1;
2370}
2371
Amaury Denoyelle74cf2372022-04-29 15:58:22 +02002372/* Returns 1 on success or 0 on error. On error, the packet containing the
2373 * frame must not be acknowledged.
2374 */
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002375static inline int qc_handle_strm_frm(struct quic_rx_packet *pkt,
2376 struct quic_stream *strm_frm,
2377 struct quic_conn *qc)
2378{
Amaury Denoyelle74cf2372022-04-29 15:58:22 +02002379 /* RFC9000 13.1. Packet Processing
2380 *
2381 * A packet MUST NOT be acknowledged until packet protection has been
2382 * successfully removed and all frames contained in the packet have
2383 * been processed. For STREAM frames, this means the data has been
2384 * enqueued in preparation to be received by the application protocol,
2385 * but it does not require that data be delivered and consumed.
2386 */
2387
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002388 if (strm_frm->id & QCS_ID_DIR_BIT)
2389 return qc_handle_uni_strm_frm(pkt, strm_frm, qc);
2390 else
2391 return qc_handle_bidi_strm_frm(pkt, strm_frm, qc);
2392}
2393
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002394/* Duplicate all frames from <pkt_frm_list> list into <out_frm_list> list
2395 * for <qc> QUIC connection.
2396 * This is a best effort function which never fails even if no memory could be
2397 * allocated to duplicate these frames.
2398 */
2399static void qc_dup_pkt_frms(struct quic_conn *qc,
2400 struct list *pkt_frm_list, struct list *out_frm_list)
2401{
2402 struct quic_frame *frm, *frmbak;
2403 struct list tmp = LIST_HEAD_INIT(tmp);
2404
2405 list_for_each_entry_safe(frm, frmbak, pkt_frm_list, list) {
2406 struct quic_frame *dup_frm, *origin;
2407
2408 switch (frm->type) {
2409 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
2410 {
2411 struct quic_stream *strm_frm = &frm->stream;
2412 struct eb64_node *node = NULL;
2413 struct qc_stream_desc *stream_desc;
2414
2415 node = eb64_lookup(&qc->streams_by_id, strm_frm->id);
2416 if (!node) {
2417 TRACE_PROTO("released stream", QUIC_EV_CONN_PRSAFRM, qc, strm_frm);
2418 continue;
2419 }
2420
2421 stream_desc = eb64_entry(node, struct qc_stream_desc, by_id);
2422 /* Do not resend this frame if in the "already acked range" */
2423 if (strm_frm->offset.key + strm_frm->len <= stream_desc->ack_offset) {
2424 TRACE_PROTO("ignored frame frame in already acked range",
2425 QUIC_EV_CONN_PRSAFRM, qc, frm);
2426 continue;
2427 }
2428 else if (strm_frm->offset.key < stream_desc->ack_offset) {
2429 strm_frm->offset.key = stream_desc->ack_offset;
2430 TRACE_PROTO("updated partially acked frame",
2431 QUIC_EV_CONN_PRSAFRM, qc, frm);
2432 }
2433
2434 break;
2435 }
2436
2437 default:
2438 break;
2439 }
2440
2441 dup_frm = pool_zalloc(pool_head_quic_frame);
2442 if (!dup_frm) {
2443 TRACE_PROTO("could not duplicate frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
2444 break;
2445 }
2446
2447 /* If <frm> is already a copy of another frame, we must take
2448 * its original frame as source for the copy.
2449 */
2450 origin = frm->origin ? frm->origin : frm;
2451 TRACE_PROTO("probing frame", QUIC_EV_CONN_PRSAFRM, qc, origin);
2452 *dup_frm = *origin;
2453 LIST_INIT(&dup_frm->reflist);
2454 TRACE_PROTO("copied from packet", QUIC_EV_CONN_PRSAFRM,
2455 qc, NULL, &origin->pkt->pn_node.key);
2456 dup_frm->origin = origin;
2457 LIST_APPEND(&origin->reflist, &dup_frm->ref);
2458 LIST_APPEND(&tmp, &dup_frm->list);
2459 }
2460
2461 LIST_SPLICE(out_frm_list, &tmp);
2462}
2463
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002464/* Prepare a fast retransmission from <qel> encryption level */
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002465static void qc_prep_fast_retrans(struct quic_conn *qc,
2466 struct quic_enc_level *qel,
2467 struct list *frms1, struct list *frms2)
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002468{
2469 struct eb_root *pkts = &qel->pktns->tx.pkts;
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002470 struct list *frms = frms1;
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002471 struct eb64_node *node;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002472 struct quic_tx_packet *pkt;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002473
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002474 pkt = NULL;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002475 node = eb64_first(pkts);
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002476 start:
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002477 while (node) {
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002478 pkt = eb64_entry(node, struct quic_tx_packet, pn_node);
2479 node = eb64_next(node);
2480 /* Skip the empty and coalesced packets */
Frédéric Lécailleb44cbc62022-04-21 17:58:46 +02002481 if (!LIST_ISEMPTY(&pkt->frms) && !(pkt->flags & QUIC_FL_TX_PACKET_COALESCED))
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002482 break;
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002483 }
2484
2485 if (!pkt)
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002486 return;
2487
Frédéric Lécaille12fd2592022-03-31 08:42:06 +02002488 /* When building a packet from another one, the field which may increase the
2489 * packet size is the packet number. And the maximum increase is 4 bytes.
2490 */
2491 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc) &&
2492 pkt->len + 4 > 3 * qc->rx.bytes - qc->tx.prep_bytes) {
2493 TRACE_PROTO("anti-amplification limit would be reached", QUIC_EV_CONN_PRSAFRM, qc);
2494 return;
2495 }
2496
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002497 TRACE_PROTO("duplicating packet", QUIC_EV_CONN_PRSAFRM, qc, NULL, &pkt->pn_node.key);
2498 qc_dup_pkt_frms(qc, &pkt->frms, frms);
2499 if (frms == frms1 && frms2) {
2500 frms = frms2;
2501 goto start;
2502 }
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002503}
2504
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002505/* Prepare a fast retransmission during a handshake after a client
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002506 * has resent Initial packets. According to the RFC a server may retransmit
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002507 * Initial packets send them coalescing with others (Handshake here).
2508 * (Listener only function).
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002509 */
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002510static void qc_prep_hdshk_fast_retrans(struct quic_conn *qc,
2511 struct list *ifrms, struct list *hfrms)
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002512{
2513 struct list itmp = LIST_HEAD_INIT(itmp);
2514 struct list htmp = LIST_HEAD_INIT(htmp);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002515
2516 struct quic_enc_level *iqel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
2517 struct quic_enc_level *hqel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
2518 struct quic_enc_level *qel = iqel;
2519 struct eb_root *pkts;
2520 struct eb64_node *node;
2521 struct quic_tx_packet *pkt;
2522 struct list *tmp = &itmp;
2523
2524 start:
2525 pkt = NULL;
2526 pkts = &qel->pktns->tx.pkts;
2527 node = eb64_first(pkts);
2528 /* Skip the empty packet (they have already been retransmitted) */
2529 while (node) {
2530 pkt = eb64_entry(&node->node, struct quic_tx_packet, pn_node);
Frédéric Lécailleb44cbc62022-04-21 17:58:46 +02002531 if (!LIST_ISEMPTY(&pkt->frms) && !(pkt->flags & QUIC_FL_TX_PACKET_COALESCED))
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002532 break;
2533 node = eb64_next(node);
2534 }
2535
2536 if (!pkt)
2537 goto end;
2538
Frédéric Lécaille12fd2592022-03-31 08:42:06 +02002539 /* When building a packet from another one, the field which may increase the
2540 * packet size is the packet number. And the maximum increase is 4 bytes.
2541 */
2542 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc) &&
2543 pkt->len + 4 > 3 * qc->rx.bytes - qc->tx.prep_bytes) {
2544 TRACE_PROTO("anti-amplification limit would be reached", QUIC_EV_CONN_PRSAFRM, qc);
2545 goto end;
2546 }
2547
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002548 qel->pktns->tx.pto_probe += 1;
2549 requeue:
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002550 TRACE_PROTO("duplicating packet", QUIC_EV_CONN_PRSAFRM, qc, NULL, &pkt->pn_node.key);
2551 qc_dup_pkt_frms(qc, &pkt->frms, tmp);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002552 if (qel == iqel) {
2553 if (pkt->next && pkt->next->type == QUIC_PACKET_TYPE_HANDSHAKE) {
2554 pkt = pkt->next;
2555 tmp = &htmp;
2556 hqel->pktns->tx.pto_probe += 1;
2557 goto requeue;
2558 }
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002559 }
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002560
2561 end:
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002562 LIST_SPLICE(ifrms, &itmp);
2563 LIST_SPLICE(hfrms, &htmp);
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002564}
2565
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002566/* Parse all the frames of <pkt> QUIC packet for QUIC connection with <ctx>
2567 * as I/O handler context and <qel> as encryption level.
2568 * Returns 1 if succeeded, 0 if failed.
2569 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002570static 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 +01002571 struct quic_enc_level *qel)
2572{
2573 struct quic_frame frm;
2574 const unsigned char *pos, *end;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01002575 struct quic_conn *qc = ctx->qc;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002576 int fast_retrans = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002577
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002578 TRACE_ENTER(QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002579 /* Skip the AAD */
2580 pos = pkt->data + pkt->aad_len;
2581 end = pkt->data + pkt->len;
2582
2583 while (pos < end) {
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002584 if (!qc_parse_frm(&frm, pkt, &pos, end, qc))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002585 goto err;
2586
Frédéric Lécaille1ede8232021-12-23 14:11:25 +01002587 TRACE_PROTO("RX frame", QUIC_EV_CONN_PSTRM, qc, &frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002588 switch (frm.type) {
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002589 case QUIC_FT_PADDING:
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002590 break;
2591 case QUIC_FT_PING:
2592 break;
2593 case QUIC_FT_ACK:
2594 {
2595 unsigned int rtt_sample;
2596
2597 rtt_sample = 0;
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002598 if (!qc_parse_ack_frm(qc, &frm, qel, &rtt_sample, &pos, end))
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002599 goto err;
2600
2601 if (rtt_sample) {
2602 unsigned int ack_delay;
2603
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002604 ack_delay = !quic_application_pktns(qel->pktns, qc) ? 0 :
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002605 qc->state >= QUIC_HS_ST_CONFIRMED ?
Frédéric Lécaille22576a22021-12-28 14:27:43 +01002606 MS_TO_TICKS(QUIC_MIN(quic_ack_delay_ms(&frm.ack, qc), qc->max_ack_delay)) :
2607 MS_TO_TICKS(quic_ack_delay_ms(&frm.ack, qc));
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002608 quic_loss_srtt_update(&qc->path->loss, rtt_sample, ack_delay, qc);
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002609 }
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002610 break;
2611 }
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002612 case QUIC_FT_STOP_SENDING:
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002613 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002614 case QUIC_FT_CRYPTO:
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002615 {
2616 struct quic_rx_crypto_frm *cf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002617
Frédéric Lécaillebd242082022-02-25 17:17:59 +01002618 if (unlikely(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD)) {
Frédéric Lécaille917a7db2022-01-03 17:00:35 +01002619 /* XXX TO DO: <cfdebug> is used only for the traces. */
2620 struct quic_rx_crypto_frm cfdebug = { };
2621
2622 cfdebug.offset_node.key = frm.crypto.offset;
2623 cfdebug.len = frm.crypto.len;
2624 TRACE_PROTO("CRYPTO data discarded",
2625 QUIC_EV_CONN_ELRXPKTS, qc, pkt, &cfdebug);
2626 break;
2627 }
2628
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002629 if (unlikely(frm.crypto.offset < qel->rx.crypto.offset)) {
2630 if (frm.crypto.offset + frm.crypto.len <= qel->rx.crypto.offset) {
2631 /* XXX TO DO: <cfdebug> is used only for the traces. */
2632 struct quic_rx_crypto_frm cfdebug = { };
2633
2634 cfdebug.offset_node.key = frm.crypto.offset;
2635 cfdebug.len = frm.crypto.len;
2636 /* Nothing to do */
2637 TRACE_PROTO("Already received CRYPTO data",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002638 QUIC_EV_CONN_ELRXPKTS, qc, pkt, &cfdebug);
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002639 if (qc_is_listener(ctx->qc) &&
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002640 qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL])
2641 fast_retrans = 1;
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002642 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002643 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002644 else {
2645 size_t diff = qel->rx.crypto.offset - frm.crypto.offset;
2646 /* XXX TO DO: <cfdebug> is used only for the traces. */
2647 struct quic_rx_crypto_frm cfdebug = { };
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002648
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002649 cfdebug.offset_node.key = frm.crypto.offset;
2650 cfdebug.len = frm.crypto.len;
2651 TRACE_PROTO("Partially already received CRYPTO data",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002652 QUIC_EV_CONN_ELRXPKTS, qc, pkt, &cfdebug);
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002653 frm.crypto.len -= diff;
2654 frm.crypto.data += diff;
2655 frm.crypto.offset = qel->rx.crypto.offset;
2656 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002657 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002658
2659 if (frm.crypto.offset == qel->rx.crypto.offset) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002660 /* XXX TO DO: <cf> is used only for the traces. */
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002661 struct quic_rx_crypto_frm cfdebug = { };
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002662
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002663 cfdebug.offset_node.key = frm.crypto.offset;
2664 cfdebug.len = frm.crypto.len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002665 if (!qc_provide_cdata(qel, ctx,
2666 frm.crypto.data, frm.crypto.len,
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002667 pkt, &cfdebug))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002668 goto err;
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002669
2670 break;
2671 }
2672
2673 /* frm.crypto.offset > qel->rx.crypto.offset */
2674 cf = pool_alloc(pool_head_quic_rx_crypto_frm);
2675 if (!cf) {
2676 TRACE_DEVEL("CRYPTO frame allocation failed",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002677 QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002678 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002679 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002680
2681 cf->offset_node.key = frm.crypto.offset;
2682 cf->len = frm.crypto.len;
2683 cf->data = frm.crypto.data;
2684 cf->pkt = pkt;
2685 eb64_insert(&qel->rx.crypto.frms, &cf->offset_node);
2686 quic_rx_packet_refinc(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002687 break;
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002688 }
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002689 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002690 {
2691 struct quic_stream *stream = &frm.stream;
Frédéric Lécailled62240c2022-05-02 18:52:58 +02002692 unsigned nb_streams = qc->rx.strms[qcs_id_type(stream->id)].nb_streams;
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002693
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002694 if (qc_is_listener(ctx->qc)) {
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002695 if (stream->id & QUIC_STREAM_FRAME_ID_INITIATOR_BIT)
2696 goto err;
2697 } else if (!(stream->id & QUIC_STREAM_FRAME_ID_INITIATOR_BIT))
2698 goto err;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002699
Frédéric Lécailled62240c2022-05-02 18:52:58 +02002700 /* The upper layer may not be allocated. */
2701 if (qc->mux_state != QC_MUX_READY) {
2702 if ((stream->id >> QCS_ID_TYPE_SHIFT) < nb_streams) {
2703 TRACE_PROTO("Already closed stream", QUIC_EV_CONN_PRSHPKT, qc);
2704 break;
2705 }
2706 else {
2707 TRACE_PROTO("Stream not found", QUIC_EV_CONN_PRSHPKT, qc);
2708 goto err;
2709 }
2710 }
Frédéric Lécaille12aa26b2022-03-21 11:37:13 +01002711
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002712 if (!qc_handle_strm_frm(pkt, stream, qc))
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002713 goto err;
2714
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002715 break;
2716 }
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002717 case QUIC_FT_MAX_DATA:
Amaury Denoyelle1e5e5132022-03-08 16:23:03 +01002718 if (qc->mux_state == QC_MUX_READY) {
2719 struct quic_max_data *data = &frm.max_data;
2720 qcc_recv_max_data(qc->qcc, data->max_data);
2721 }
2722 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002723 case QUIC_FT_MAX_STREAM_DATA:
Amaury Denoyelle8727ff42022-03-08 10:39:55 +01002724 if (qc->mux_state == QC_MUX_READY) {
2725 struct quic_max_stream_data *data = &frm.max_stream_data;
2726 qcc_recv_max_stream_data(qc->qcc, data->id,
2727 data->max_stream_data);
2728 }
2729 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002730 case QUIC_FT_MAX_STREAMS_BIDI:
2731 case QUIC_FT_MAX_STREAMS_UNI:
2732 case QUIC_FT_DATA_BLOCKED:
2733 case QUIC_FT_STREAM_DATA_BLOCKED:
2734 case QUIC_FT_STREAMS_BLOCKED_BIDI:
2735 case QUIC_FT_STREAMS_BLOCKED_UNI:
2736 break;
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002737 case QUIC_FT_NEW_CONNECTION_ID:
Frédéric Lécaille2cca2412022-01-21 13:55:03 +01002738 case QUIC_FT_RETIRE_CONNECTION_ID:
2739 /* XXX TO DO XXX */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002740 break;
2741 case QUIC_FT_CONNECTION_CLOSE:
2742 case QUIC_FT_CONNECTION_CLOSE_APP:
Frédéric Lécaille47756802022-03-25 09:12:16 +01002743 if (!(qc->flags & QUIC_FL_CONN_DRAINING)) {
2744 TRACE_PROTO("Entering draining state", QUIC_EV_CONN_PRSHPKT, qc);
2745 /* RFC 9000 10.2. Immediate Close:
2746 * The closing and draining connection states exist to ensure
2747 * that connections close cleanly and that delayed or reordered
2748 * packets are properly discarded. These states SHOULD persist
2749 * for at least three times the current PTO interval...
2750 *
2751 * Rearm the idle timeout only one time when entering draining
2752 * state.
2753 */
2754 qc_idle_timer_do_rearm(qc);
2755 qc->flags |= QUIC_FL_CONN_DRAINING|QUIC_FL_CONN_IMMEDIATE_CLOSE;
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02002756 qc_notify_close(qc);
Frédéric Lécaille47756802022-03-25 09:12:16 +01002757 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002758 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002759 case QUIC_FT_HANDSHAKE_DONE:
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002760 if (qc_is_listener(ctx->qc))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002761 goto err;
2762
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002763 qc->state = QUIC_HS_ST_CONFIRMED;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002764 break;
2765 default:
2766 goto err;
2767 }
2768 }
2769
Frédéric Lécaille44ae7522022-03-21 12:18:00 +01002770 /* Flag this packet number space as having received a packet. */
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02002771 qel->pktns->flags |= QUIC_FL_PKTNS_PKT_RECEIVED;
Frédéric Lécaille44ae7522022-03-21 12:18:00 +01002772
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002773 if (fast_retrans) {
2774 struct quic_enc_level *iqel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
2775 struct quic_enc_level *hqel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
2776
2777 qc_prep_hdshk_fast_retrans(qc, &iqel->pktns->tx.frms, &hqel->pktns->tx.frms);
2778 }
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002779
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002780 /* The server must switch from INITIAL to HANDSHAKE handshake state when it
2781 * has successfully parse a Handshake packet. The Initial encryption must also
2782 * be discarded.
2783 */
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002784 if (pkt->type == QUIC_PACKET_TYPE_HANDSHAKE && qc_is_listener(ctx->qc)) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002785 if (qc->state >= QUIC_HS_ST_SERVER_INITIAL) {
Frédéric Lécaille05bd92b2022-03-29 19:09:46 +02002786 if (!(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].tls_ctx.flags &
2787 QUIC_FL_TLS_SECRETS_DCD)) {
2788 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
2789 TRACE_PROTO("discarding Initial pktns", QUIC_EV_CONN_PRSHPKT, qc);
2790 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, qc);
2791 qc_set_timer(ctx->qc);
2792 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
2793 qc_release_pktns_frms(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns);
2794 }
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002795 if (qc->state < QUIC_HS_ST_SERVER_HANDSHAKE)
2796 qc->state = QUIC_HS_ST_SERVER_HANDSHAKE;
Frédéric Lécaille8c27de72021-09-20 11:00:46 +02002797 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002798 }
2799
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002800 TRACE_LEAVE(QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002801 return 1;
2802
2803 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002804 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002805 return 0;
2806}
2807
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01002808/* Must be called only by a <cbuf> writer (packet builder).
2809 * Return 1 if <cbuf> may be reused to build packets, depending on its <rd> and
2810 * <wr> internal indexes, 0 if not. When this is the case, reset <wr> writer
2811 * index after having marked the end of written data. This the responsability
2812 * of the caller to ensure there is enough room in <cbuf> to write the end of
2813 * data made of a uint16_t null field.
2814 *
2815 * +XXXXXXXXXXXXXXXXXXXXXXX---------------+ (cannot be reused)
2816 * ^ ^
2817 * r w
2818 *
2819 * +-------XXXXXXXXXXXXXXXX---------------+ (can be reused)
2820 * ^ ^
2821 * r w
2822
2823 * +--------------------------------------+ (empty buffer, can be reused)
2824 * ^
2825 * (r = w)
2826 *
2827 * +XXXXXXXXXXXXXXXXXXXXX-XXXXXXXXXXXXXXXX+ (full buffer, cannot be reused)
2828 * ^ ^
2829 * w r
2830 */
2831static int qc_may_reuse_cbuf(struct cbuf *cbuf)
2832{
2833 int rd = HA_ATOMIC_LOAD(&cbuf->rd);
2834
2835 /* We can reset the writer index only if in front of the reader index and
2836 * if the reader index is not null. Resetting the writer when the reader
2837 * index is null would empty the buffer.
2838 * XXX Note than the writer index cannot reach the reader index.
2839 * Only the reader index can reach the writer index.
2840 */
2841 if (rd && rd <= cbuf->wr) {
2842 /* Mark the end of contiguous data for the reader */
2843 write_u16(cb_wr(cbuf), 0);
2844 cb_add(cbuf, sizeof(uint16_t));
2845 cb_wr_reset(cbuf);
2846 return 1;
2847 }
2848
2849 return 0;
2850}
2851
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002852/* Write <dglen> datagram length and <pkt> first packet address into <cbuf> ring
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +05002853 * buffer. This is the responsibility of the caller to check there is enough
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002854 * room in <cbuf>. Also increase the <cbuf> write index consequently.
2855 * This function must be called only after having built a correct datagram.
2856 * Always succeeds.
2857 */
2858static inline void qc_set_dg(struct cbuf *cbuf,
2859 uint16_t dglen, struct quic_tx_packet *pkt)
2860{
2861 write_u16(cb_wr(cbuf), dglen);
2862 write_ptr(cb_wr(cbuf) + sizeof dglen, pkt);
2863 cb_add(cbuf, dglen + sizeof dglen + sizeof pkt);
2864}
2865
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002866/* Returns 1 if a packet may be built for <qc> from <qel> encryption level
2867 * with <frms> as ack-eliciting frame list to send, 0 if not.
2868 * <cc> must equal to 1 if an immediate close was asked, 0 if not.
2869 * <probe> must equalt to 1 if a probing packet is required, 0 if not.
2870 */
2871static int qc_may_build_pkt(struct quic_conn *qc, struct list *frms,
2872 struct quic_enc_level *qel, int cc, int probe)
2873{
2874 unsigned int must_ack =
2875 qel->pktns->rx.nb_aepkts_since_last_ack >= QUIC_MAX_RX_AEPKTS_SINCE_LAST_ACK;
2876
2877 /* Do not build any more packet if the TX secrets are not available or
2878 * if there is nothing to send, i.e. if no CONNECTION_CLOSE or ACK are required
2879 * and if there is no more packets to send upon PTO expiration
2880 * and if there is no more ack-eliciting frames to send or in flight
2881 * congestion control limit is reached for prepared data
2882 */
2883 if (!(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET) ||
2884 (!cc && !probe && !must_ack &&
2885 (LIST_ISEMPTY(frms) || qc->path->prep_in_flight >= qc->path->cwnd))) {
2886 TRACE_DEVEL("nothing more to do", QUIC_EV_CONN_PHPKTS, qc);
2887 return 0;
2888 }
2889
2890 return 1;
2891}
2892
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002893/* Prepare as much as possible short packets which are also datagrams into <qr>
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01002894 * ring buffer for the QUIC connection with <ctx> as I/O handler context from
2895 * <frms> list of prebuilt frames.
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002896 * A header made of two fields is added to each datagram: the datagram length followed
2897 * by the address of the first packet in this datagram.
Frédéric Lécaille728b30d2022-03-10 17:42:58 +01002898 * Returns the number of bytes prepared in packets if succeeded (may be 0),
2899 * or -1 if something wrong happened.
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002900 */
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01002901static int qc_prep_app_pkts(struct quic_conn *qc, struct qring *qr,
2902 struct list *frms)
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002903{
2904 struct quic_enc_level *qel;
2905 struct cbuf *cbuf;
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01002906 unsigned char *end_buf, *end, *pos;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002907 struct quic_tx_packet *pkt;
2908 size_t total;
2909 size_t dg_headlen;
2910
2911 TRACE_ENTER(QUIC_EV_CONN_PHPKTS, qc);
2912 /* Each datagram is prepended with its length followed by the
2913 * address of the first packet in the datagram.
2914 */
2915 dg_headlen = sizeof(uint16_t) + sizeof pkt;
2916 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
2917 total = 0;
2918 start:
2919 cbuf = qr->cbuf;
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01002920 pos = cb_wr(cbuf);
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002921 /* Leave at least <sizeof(uint16_t)> bytes at the end of this buffer
2922 * to ensure there is enough room to mark the end of prepared
2923 * contiguous data with a zero length.
2924 */
2925 end_buf = pos + cb_contig_space(cbuf) - sizeof(uint16_t);
2926 while (end_buf - pos >= (int)qc->path->mtu + dg_headlen) {
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002927 int err, probe, cc;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002928
2929 TRACE_POINT(QUIC_EV_CONN_PHPKTS, qc, qel);
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002930 probe = 0;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002931 cc = qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002932 /* We do not probe if an immediate close was asked */
2933 if (!cc)
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002934 probe = qel->pktns->tx.pto_probe;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002935
2936 if (!qc_may_build_pkt(qc, frms, qel, cc, probe))
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002937 break;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002938
2939 /* Leave room for the datagram header */
2940 pos += dg_headlen;
2941 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc)) {
2942 end = pos + QUIC_MIN(qc->path->mtu, 3 * qc->rx.bytes - qc->tx.prep_bytes);
2943 }
2944 else {
2945 end = pos + qc->path->mtu;
2946 }
2947
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01002948 pkt = qc_build_pkt(&pos, end, qel, frms, qc, 0, 0,
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002949 QUIC_PACKET_TYPE_SHORT, probe, cc, &err);
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002950 switch (err) {
2951 case -2:
2952 goto err;
2953 case -1:
Frédéric Lécaillee9a974a2022-03-13 19:19:12 +01002954 /* As we provide qc_build_pkt() with an enough big buffer to fulfill an
2955 * MTU, we are here because of the congestion control window. There is
2956 * no need to try to reuse this buffer.
2957 */
2958 goto out;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002959 default:
2960 break;
2961 }
2962
2963 /* This is to please to GCC. We cannot have (err >= 0 && !pkt) */
2964 if (!pkt)
2965 goto err;
2966
Frédéric Lécaille1809c332022-04-25 10:24:12 +02002967 if (qc->flags & QUIC_FL_CONN_RETRANS_OLD_DATA)
2968 pkt->flags |= QUIC_FL_TX_PACKET_PROBE_WITH_OLD_DATA;
2969
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002970 total += pkt->len;
2971 /* Set the current datagram as prepared into <cbuf>. */
2972 qc_set_dg(cbuf, pkt->len, pkt);
2973 }
2974
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002975 /* Reset <wr> writer index if in front of <rd> index */
2976 if (end_buf - pos < (int)qc->path->mtu + dg_headlen) {
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002977 TRACE_DEVEL("buffer full", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01002978 if (qc_may_reuse_cbuf(cbuf))
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002979 goto start;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002980 }
2981
2982 out:
2983 TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, qc);
2984 return total;
2985
2986 err:
2987 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PHPKTS, qc);
2988 return -1;
2989}
2990
Frédéric Lécaillee2660e62021-11-23 11:36:51 +01002991/* Prepare as much as possible packets into <qr> ring buffer for
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002992 * the QUIC connection with <ctx> as I/O handler context, possibly concatenating
2993 * several packets in the same datagram. A header made of two fields is added
2994 * to each datagram: the datagram length followed by the address of the first
2995 * packet in this datagram.
Frédéric Lécaille728b30d2022-03-10 17:42:58 +01002996 * Returns the number of bytes prepared in packets if succeeded (may be 0),
2997 * or -1 if something wrong happened.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002998 */
Frédéric Lécailleee2b8b32022-01-03 11:14:30 +01002999static int qc_prep_pkts(struct quic_conn *qc, struct qring *qr,
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003000 enum quic_tls_enc_level tel, struct list *tel_frms,
3001 enum quic_tls_enc_level next_tel, struct list *next_tel_frms)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003002{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003003 struct quic_enc_level *qel;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003004 struct cbuf *cbuf;
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01003005 unsigned char *end_buf, *end, *pos;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003006 struct quic_tx_packet *first_pkt, *cur_pkt, *prv_pkt;
3007 /* length of datagrams */
3008 uint16_t dglen;
3009 size_t total;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01003010 int padding;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003011 /* Each datagram is prepended with its length followed by the
3012 * address of the first packet in the datagram.
3013 */
3014 size_t dg_headlen = sizeof dglen + sizeof first_pkt;
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003015 struct list *frms;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003016
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003017 TRACE_ENTER(QUIC_EV_CONN_PHPKTS, qc);
3018
Frédéric Lécaille99942d62022-01-07 14:32:31 +01003019 total = 0;
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003020 qel = &qc->els[tel];
3021 frms = tel_frms;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003022 start:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003023 dglen = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01003024 padding = 0;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003025 cbuf = qr->cbuf;
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01003026 pos = cb_wr(cbuf);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003027 /* Leave at least <dglen> bytes at the end of this buffer
3028 * to ensure there is enough room to mark the end of prepared
3029 * contiguous data with a zero length.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003030 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003031 end_buf = pos + cb_contig_space(cbuf) - sizeof dglen;
3032 first_pkt = prv_pkt = NULL;
3033 while (end_buf - pos >= (int)qc->path->mtu + dg_headlen || prv_pkt) {
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003034 int err, probe, cc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003035 enum quic_pkt_type pkt_type;
3036
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003037 TRACE_POINT(QUIC_EV_CONN_PHPKTS, qc, qel);
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003038 probe = 0;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003039 cc = qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003040 /* We do not probe if an immediate close was asked */
3041 if (!cc)
Frédéric Lécaille94fca872022-01-19 18:54:18 +01003042 probe = qel->pktns->tx.pto_probe;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003043
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003044 if (!qc_may_build_pkt(qc, frms, qel, cc, probe)) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003045 if (prv_pkt)
3046 qc_set_dg(cbuf, dglen, first_pkt);
Frédéric Lécaille39ba1c32022-01-21 16:52:56 +01003047 /* Let's select the next encryption level */
3048 if (tel != next_tel && next_tel != QUIC_TLS_ENC_LEVEL_NONE) {
3049 tel = next_tel;
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003050 frms = next_tel_frms;
Frédéric Lécaille39ba1c32022-01-21 16:52:56 +01003051 qel = &qc->els[tel];
3052 /* Build a new datagram */
3053 prv_pkt = NULL;
3054 continue;
3055 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003056 break;
3057 }
3058
3059 pkt_type = quic_tls_level_pkt_type(tel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003060 if (!prv_pkt) {
3061 /* Leave room for the datagram header */
3062 pos += dg_headlen;
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01003063 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc)) {
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +01003064 end = pos + QUIC_MIN(qc->path->mtu, 3 * qc->rx.bytes - qc->tx.prep_bytes);
3065 }
3066 else {
3067 end = pos + qc->path->mtu;
3068 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003069 }
3070
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003071 cur_pkt = qc_build_pkt(&pos, end, qel, frms,
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003072 qc, dglen, padding, pkt_type, probe, cc, &err);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003073 switch (err) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003074 case -2:
3075 goto err;
3076 case -1:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003077 /* If there was already a correct packet present, set the
3078 * current datagram as prepared into <cbuf>.
3079 */
Frédéric Lécaille05e30ee2022-02-28 16:55:32 +01003080 if (prv_pkt)
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003081 qc_set_dg(cbuf, dglen, first_pkt);
Frédéric Lécaille05e30ee2022-02-28 16:55:32 +01003082 goto stop_build;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003083 default:
Frédéric Lécaille63556772021-12-29 17:18:21 +01003084 break;
3085 }
Frédéric Lécaille67f47d02021-08-19 15:19:09 +02003086
Frédéric Lécaille63556772021-12-29 17:18:21 +01003087 /* This is to please to GCC. We cannot have (err >= 0 && !cur_pkt) */
3088 if (!cur_pkt)
3089 goto err;
3090
Frédéric Lécaille1809c332022-04-25 10:24:12 +02003091 if (qc->flags & QUIC_FL_CONN_RETRANS_OLD_DATA)
3092 cur_pkt->flags |= QUIC_FL_TX_PACKET_PROBE_WITH_OLD_DATA;
3093
Frédéric Lécaille63556772021-12-29 17:18:21 +01003094 total += cur_pkt->len;
3095 /* keep trace of the first packet in the datagram */
3096 if (!first_pkt)
3097 first_pkt = cur_pkt;
3098 /* Attach the current one to the previous one */
Frédéric Lécailleb44cbc62022-04-21 17:58:46 +02003099 if (prv_pkt) {
Frédéric Lécaille63556772021-12-29 17:18:21 +01003100 prv_pkt->next = cur_pkt;
Frédéric Lécailleb44cbc62022-04-21 17:58:46 +02003101 cur_pkt->flags |= QUIC_FL_TX_PACKET_COALESCED;
3102 }
Frédéric Lécaille63556772021-12-29 17:18:21 +01003103 /* Let's say we have to build a new dgram */
3104 prv_pkt = NULL;
3105 dglen += cur_pkt->len;
3106 /* Client: discard the Initial encryption keys as soon as
3107 * a handshake packet could be built.
3108 */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003109 if (qc->state == QUIC_HS_ST_CLIENT_INITIAL &&
Frédéric Lécaille63556772021-12-29 17:18:21 +01003110 pkt_type == QUIC_PACKET_TYPE_HANDSHAKE) {
3111 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
3112 TRACE_PROTO("discarding Initial pktns", QUIC_EV_CONN_PHPKTS, qc);
3113 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, qc);
3114 qc_set_timer(qc);
Frédéric Lécaillea6255f52022-01-19 17:29:48 +01003115 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01003116 qc_release_pktns_frms(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns);
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003117 qc->state = QUIC_HS_ST_CLIENT_HANDSHAKE;
Frédéric Lécaille63556772021-12-29 17:18:21 +01003118 }
3119 /* If the data for the current encryption level have all been sent,
3120 * select the next level.
3121 */
3122 if ((tel == QUIC_TLS_ENC_LEVEL_INITIAL || tel == QUIC_TLS_ENC_LEVEL_HANDSHAKE) &&
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02003123 next_tel != QUIC_TLS_ENC_LEVEL_NONE && (LIST_ISEMPTY(frms) && !qel->pktns->tx.pto_probe)) {
Frédéric Lécaille63556772021-12-29 17:18:21 +01003124 /* If QUIC_TLS_ENC_LEVEL_HANDSHAKE was already reached let's try QUIC_TLS_ENC_LEVEL_APP */
3125 if (tel == QUIC_TLS_ENC_LEVEL_HANDSHAKE && next_tel == tel)
3126 next_tel = QUIC_TLS_ENC_LEVEL_APP;
3127 tel = next_tel;
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003128 if (tel == QUIC_TLS_ENC_LEVEL_APP)
3129 frms = &qc->els[tel].pktns->tx.frms;
3130 else
3131 frms = next_tel_frms;
Frédéric Lécaille63556772021-12-29 17:18:21 +01003132 qel = &qc->els[tel];
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003133 if (!LIST_ISEMPTY(frms)) {
Frédéric Lécaille63556772021-12-29 17:18:21 +01003134 /* If there is data for the next level, do not
3135 * consume a datagram.
3136 */
3137 prv_pkt = cur_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003138 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003139 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003140 /* If we have to build a new datagram, set the current datagram as
3141 * prepared into <cbuf>.
3142 */
3143 if (!prv_pkt) {
3144 qc_set_dg(cbuf, dglen, first_pkt);
3145 first_pkt = NULL;
3146 dglen = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01003147 padding = 0;
3148 }
3149 else if (prv_pkt->type == QUIC_TLS_ENC_LEVEL_INITIAL &&
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +01003150 (!qc_is_listener(qc) ||
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01003151 prv_pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)) {
3152 padding = 1;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003153 }
3154 }
3155
3156 stop_build:
3157 /* Reset <wr> writer index if in front of <rd> index */
3158 if (end_buf - pos < (int)qc->path->mtu + dg_headlen) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003159 TRACE_DEVEL("buffer full", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01003160 if (qc_may_reuse_cbuf(cbuf))
Frédéric Lécaille99942d62022-01-07 14:32:31 +01003161 goto start;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003162 }
3163
3164 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003165 TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003166 return total;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003167
3168 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003169 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003170 return -1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003171}
3172
3173/* Send the QUIC packets which have been prepared for QUIC connections
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003174 * from <qr> ring buffer with <ctx> as I/O handler context.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003175 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003176int qc_send_ppkts(struct qring *qr, struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003177{
3178 struct quic_conn *qc;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003179 struct cbuf *cbuf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003180
Amaury Denoyellec15dd922021-12-21 11:41:52 +01003181 qc = ctx->qc;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003182 cbuf = qr->cbuf;
3183 while (cb_contig_data(cbuf)) {
3184 unsigned char *pos;
3185 struct buffer tmpbuf = { };
3186 struct quic_tx_packet *first_pkt, *pkt, *next_pkt;
3187 uint16_t dglen;
3188 size_t headlen = sizeof dglen + sizeof first_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003189 unsigned int time_sent;
3190
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003191 pos = cb_rd(cbuf);
3192 dglen = read_u16(pos);
3193 /* End of prepared datagrams.
3194 * Reset the reader index only if in front of the writer index.
3195 */
3196 if (!dglen) {
3197 int wr = HA_ATOMIC_LOAD(&cbuf->wr);
3198
3199 if (wr && wr < cbuf->rd) {
3200 cb_rd_reset(cbuf);
3201 continue;
3202 }
3203 break;
3204 }
3205
3206 pos += sizeof dglen;
3207 first_pkt = read_ptr(pos);
3208 pos += sizeof first_pkt;
3209 tmpbuf.area = (char *)pos;
3210 tmpbuf.size = tmpbuf.data = dglen;
3211
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003212 TRACE_PROTO("to send", QUIC_EV_CONN_SPPKTS, qc);
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01003213 if(qc_snd_buf(qc, &tmpbuf, tmpbuf.data, 0) <= 0)
Amaury Denoyelle74f22922022-01-18 16:48:17 +01003214 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003215
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003216 cb_del(cbuf, dglen + headlen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003217 qc->tx.bytes += tmpbuf.data;
3218 time_sent = now_ms;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003219
3220 for (pkt = first_pkt; pkt; pkt = next_pkt) {
3221 pkt->time_sent = time_sent;
3222 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING) {
3223 pkt->pktns->tx.time_of_last_eliciting = time_sent;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01003224 qc->path->ifae_pkts++;
Frédéric Lécaille530601c2022-03-10 15:11:57 +01003225 if (qc->flags & QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ)
3226 qc_idle_timer_rearm(qc, 0);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003227 }
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02003228 if (!(qc->flags & QUIC_FL_CONN_CLOSING) &&
3229 (pkt->flags & QUIC_FL_TX_PACKET_CC)) {
3230 qc->flags |= QUIC_FL_CONN_CLOSING;
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02003231 qc_notify_close(qc);
3232
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02003233 /* RFC 9000 10.2. Immediate Close:
3234 * The closing and draining connection states exist to ensure
3235 * that connections close cleanly and that delayed or reordered
3236 * packets are properly discarded. These states SHOULD persist
3237 * for at least three times the current PTO interval...
3238 *
3239 * Rearm the idle timeout only one time when entering closing
3240 * state.
3241 */
3242 qc_idle_timer_do_rearm(qc);
3243 if (qc->timer_task) {
3244 task_destroy(qc->timer_task);
3245 qc->timer_task = NULL;
3246 }
3247 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003248 qc->path->in_flight += pkt->in_flight_len;
3249 pkt->pktns->tx.in_flight += pkt->in_flight_len;
3250 if (pkt->in_flight_len)
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003251 qc_set_timer(qc);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003252 TRACE_PROTO("sent pkt", QUIC_EV_CONN_SPPKTS, qc, pkt);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003253 next_pkt = pkt->next;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01003254 quic_tx_packet_refinc(pkt);
Frédéric Lécaille0eb60c52021-07-19 14:48:36 +02003255 eb64_insert(&pkt->pktns->tx.pkts, &pkt->pn_node);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003256 }
3257 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003258
3259 return 1;
3260}
3261
3262/* Build all the frames which must be sent just after the handshake have succeeded.
3263 * This is essentially NEW_CONNECTION_ID frames. A QUIC server must also send
3264 * a HANDSHAKE_DONE frame.
3265 * Return 1 if succeeded, 0 if not.
3266 */
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02003267static int quic_build_post_handshake_frames(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003268{
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003269 int i, first, max;
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02003270 struct quic_enc_level *qel;
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003271 struct quic_frame *frm, *frmbak;
3272 struct list frm_list = LIST_HEAD_INIT(frm_list);
3273 struct eb64_node *node;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003274
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02003275 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003276 /* Only servers must send a HANDSHAKE_DONE frame. */
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +01003277 if (qc_is_listener(qc)) {
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003278 frm = pool_zalloc(pool_head_quic_frame);
Frédéric Lécaille153d4a82021-01-06 12:12:39 +01003279 if (!frm)
3280 return 0;
3281
Frédéric Lécailleb9171912022-04-21 17:32:10 +02003282 LIST_INIT(&frm->reflist);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003283 frm->type = QUIC_FT_HANDSHAKE_DONE;
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003284 LIST_APPEND(&frm_list, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003285 }
3286
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003287 first = 1;
3288 max = qc->tx.params.active_connection_id_limit;
3289 for (i = first; i < max; i++) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003290 struct quic_connection_id *cid;
3291
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003292 frm = pool_zalloc(pool_head_quic_frame);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003293 if (!frm)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003294 goto err;
3295
Frédéric Lécailleb9171912022-04-21 17:32:10 +02003296 LIST_INIT(&frm->reflist);
Amaury Denoyelle0442efd2022-01-28 16:02:13 +01003297 cid = new_quic_cid(&qc->cids, qc, i);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003298 if (!cid)
3299 goto err;
3300
Frédéric Lécaille74904a42022-01-27 15:35:56 +01003301 /* insert the allocated CID in the receiver datagram handler tree */
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01003302 ebmb_insert(&quic_dghdlrs[tid].cids, &cid->node, cid->cid.len);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003303
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003304 quic_connection_id_to_frm_cpy(frm, cid);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003305 LIST_APPEND(&frm_list, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003306 }
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003307
3308 LIST_SPLICE(&qel->pktns->tx.frms, &frm_list);
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003309 qc->flags |= QUIC_FL_CONN_POST_HANDSHAKE_FRAMES_BUILT;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003310
3311 return 1;
3312
3313 err:
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003314 /* free the frames */
3315 list_for_each_entry_safe(frm, frmbak, &frm_list, list)
3316 pool_free(pool_head_quic_frame, frm);
3317
3318 node = eb64_first(&qc->cids);
3319 while (node) {
3320 struct quic_connection_id *cid;
3321
Frédéric Lécaille411aa6d2022-03-21 12:01:22 +01003322
3323 cid = eb64_entry(&node->node, struct quic_connection_id, seq_num);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003324 if (cid->seq_num.key >= max)
3325 break;
3326
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003327 if (cid->seq_num.key < first)
3328 continue;
3329
Frédéric Lécaille411aa6d2022-03-21 12:01:22 +01003330 node = eb64_next(node);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003331 ebmb_delete(&cid->node);
3332 eb64_delete(&cid->seq_num);
3333 pool_free(pool_head_quic_connection_id, cid);
3334 }
3335
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003336 return 0;
3337}
3338
3339/* Deallocate <l> list of ACK ranges. */
Frédéric Lécaille64670882022-04-01 11:57:19 +02003340void quic_free_arngs(struct quic_arngs *arngs)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003341{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003342 struct eb64_node *n;
3343 struct quic_arng_node *ar;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003344
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003345 n = eb64_first(&arngs->root);
3346 while (n) {
3347 struct eb64_node *next;
3348
3349 ar = eb64_entry(&n->node, struct quic_arng_node, first);
3350 next = eb64_next(n);
3351 eb64_delete(n);
Frédéric Lécaille82851bd2022-04-04 13:43:58 +02003352 pool_free(pool_head_quic_arng, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003353 n = next;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003354 }
3355}
3356
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003357/* Return the gap value between <p> and <q> ACK ranges where <q> follows <p> in
3358 * descending order.
3359 */
3360static inline size_t sack_gap(struct quic_arng_node *p,
3361 struct quic_arng_node *q)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003362{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003363 return p->first.key - q->last - 2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003364}
3365
3366
3367/* Remove the last elements of <ack_ranges> list of ack range updating its
3368 * encoded size until it goes below <limit>.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003369 * Returns 1 if succeeded, 0 if not (no more element to remove).
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003370 */
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003371static int quic_rm_last_ack_ranges(struct quic_arngs *arngs, size_t limit)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003372{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003373 struct eb64_node *last, *prev;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003374
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003375 last = eb64_last(&arngs->root);
3376 while (last && arngs->enc_sz > limit) {
3377 struct quic_arng_node *last_node, *prev_node;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003378
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003379 prev = eb64_prev(last);
3380 if (!prev)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003381 return 0;
3382
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003383 last_node = eb64_entry(&last->node, struct quic_arng_node, first);
3384 prev_node = eb64_entry(&prev->node, struct quic_arng_node, first);
3385 arngs->enc_sz -= quic_int_getsize(last_node->last - last_node->first.key);
3386 arngs->enc_sz -= quic_int_getsize(sack_gap(prev_node, last_node));
3387 arngs->enc_sz -= quic_decint_size_diff(arngs->sz);
3388 --arngs->sz;
3389 eb64_delete(last);
3390 pool_free(pool_head_quic_arng, last);
3391 last = prev;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003392 }
3393
3394 return 1;
3395}
3396
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003397/* Set the encoded size of <arngs> QUIC ack ranges. */
3398static void quic_arngs_set_enc_sz(struct quic_arngs *arngs)
3399{
3400 struct eb64_node *node, *next;
3401 struct quic_arng_node *ar, *ar_next;
3402
3403 node = eb64_last(&arngs->root);
3404 if (!node)
3405 return;
3406
3407 ar = eb64_entry(&node->node, struct quic_arng_node, first);
3408 arngs->enc_sz = quic_int_getsize(ar->last) +
3409 quic_int_getsize(ar->last - ar->first.key) + quic_int_getsize(arngs->sz - 1);
3410
3411 while ((next = eb64_prev(node))) {
3412 ar_next = eb64_entry(&next->node, struct quic_arng_node, first);
3413 arngs->enc_sz += quic_int_getsize(sack_gap(ar, ar_next)) +
3414 quic_int_getsize(ar_next->last - ar_next->first.key);
3415 node = next;
3416 ar = eb64_entry(&node->node, struct quic_arng_node, first);
3417 }
3418}
3419
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003420/* Insert <ar> ack range into <argns> tree of ack ranges.
3421 * Returns the ack range node which has been inserted if succeeded, NULL if not.
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003422 */
3423static inline
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003424struct quic_arng_node *quic_insert_new_range(struct quic_arngs *arngs,
3425 struct quic_arng *ar)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003426{
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003427 struct quic_arng_node *new_ar;
3428
3429 new_ar = pool_alloc(pool_head_quic_arng);
3430 if (new_ar) {
3431 new_ar->first.key = ar->first;
3432 new_ar->last = ar->last;
3433 eb64_insert(&arngs->root, &new_ar->first);
3434 arngs->sz++;
3435 }
3436
3437 return new_ar;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003438}
3439
3440/* Update <arngs> tree of ACK ranges with <ar> as new ACK range value.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003441 * Note that this function computes the number of bytes required to encode
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003442 * this tree of ACK ranges in descending order.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003443 *
3444 * Descending order
3445 * ------------->
3446 * range1 range2
3447 * ..........|--------|..............|--------|
3448 * ^ ^ ^ ^
3449 * | | | |
3450 * last1 first1 last2 first2
3451 * ..........+--------+--------------+--------+......
3452 * diff1 gap12 diff2
3453 *
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003454 * To encode the previous list of ranges we must encode integers as follows in
3455 * descending order:
3456 * enc(last2),enc(diff2),enc(gap12),enc(diff1)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003457 * with diff1 = last1 - first1
3458 * diff2 = last2 - first2
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003459 * gap12 = first1 - last2 - 2 (>= 0)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003460 *
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003461 */
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003462int quic_update_ack_ranges_list(struct quic_arngs *arngs,
3463 struct quic_arng *ar)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003464{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003465 struct eb64_node *le;
3466 struct quic_arng_node *new_node;
3467 struct eb64_node *new;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003468
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003469 new = NULL;
3470 if (eb_is_empty(&arngs->root)) {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003471 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003472 if (!new_node)
3473 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003474
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003475 goto out;
3476 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003477
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003478 le = eb64_lookup_le(&arngs->root, ar->first);
3479 if (!le) {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003480 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003481 if (!new_node)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003482 return 0;
Frédéric Lécaille0e257832021-11-16 10:54:19 +01003483
3484 new = &new_node->first;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003485 }
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003486 else {
3487 struct quic_arng_node *le_ar =
3488 eb64_entry(&le->node, struct quic_arng_node, first);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003489
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003490 /* Already existing range */
Frédéric Lécailled3f4dd82021-06-02 15:36:12 +02003491 if (le_ar->last >= ar->last)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003492 return 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003493
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003494 if (le_ar->last + 1 >= ar->first) {
3495 le_ar->last = ar->last;
3496 new = le;
3497 new_node = le_ar;
3498 }
3499 else {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003500 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003501 if (!new_node)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003502 return 0;
Frédéric Lécaille8ba42762021-06-02 17:40:09 +02003503
3504 new = &new_node->first;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003505 }
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003506 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003507
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003508 /* Verify that the new inserted node does not overlap the nodes
3509 * which follow it.
3510 */
3511 if (new) {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003512 struct eb64_node *next;
3513 struct quic_arng_node *next_node;
3514
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003515 while ((next = eb64_next(new))) {
3516 next_node =
3517 eb64_entry(&next->node, struct quic_arng_node, first);
Frédéric Lécaillec825eba2021-06-02 17:38:13 +02003518 if (new_node->last + 1 < next_node->first.key)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003519 break;
3520
3521 if (next_node->last > new_node->last)
3522 new_node->last = next_node->last;
3523 eb64_delete(next);
Frédéric Lécaillebaea2842021-06-02 15:04:03 +02003524 pool_free(pool_head_quic_arng, next_node);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003525 /* Decrement the size of these ranges. */
3526 arngs->sz--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003527 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003528 }
3529
Frédéric Lécaille82b86522021-08-10 09:54:03 +02003530 out:
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003531 quic_arngs_set_enc_sz(arngs);
3532
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003533 return 1;
3534}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003535/* Remove the header protection of packets at <el> encryption level.
3536 * Always succeeds.
3537 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003538static inline void qc_rm_hp_pkts(struct quic_conn *qc, struct quic_enc_level *el)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003539{
3540 struct quic_tls_ctx *tls_ctx;
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003541 struct quic_rx_packet *pqpkt;
3542 struct mt_list *pkttmp1, pkttmp2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003543 struct quic_enc_level *app_qel;
3544
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003545 TRACE_ENTER(QUIC_EV_CONN_ELRMHP, qc);
3546 app_qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003547 /* A server must not process incoming 1-RTT packets before the handshake is complete. */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003548 if (el == app_qel && qc_is_listener(qc) && qc->state < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003549 TRACE_PROTO("hp not removed (handshake not completed)",
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003550 QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003551 goto out;
3552 }
3553 tls_ctx = &el->tls_ctx;
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003554 mt_list_for_each_entry_safe(pqpkt, &el->rx.pqpkts, list, pkttmp1, pkttmp2) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003555 if (!qc_do_rm_hp(qc, pqpkt, tls_ctx, el->pktns->rx.largest_pn,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003556 pqpkt->data + pqpkt->pn_offset,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003557 pqpkt->data, pqpkt->data + pqpkt->len)) {
3558 TRACE_PROTO("hp removing error", QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003559 /* XXX TO DO XXX */
3560 }
3561 else {
3562 /* The AAD includes the packet number field */
3563 pqpkt->aad_len = pqpkt->pn_offset + pqpkt->pnl;
3564 /* Store the packet into the tree of packets to decrypt. */
3565 pqpkt->pn_node.key = pqpkt->pn;
Frédéric Lécaille98cdeb22021-07-26 16:38:14 +02003566 HA_RWLOCK_WRLOCK(QUIC_LOCK, &el->rx.pkts_rwlock);
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02003567 eb64_insert(&el->rx.pkts, &pqpkt->pn_node);
3568 quic_rx_packet_refinc(pqpkt);
Frédéric Lécaille98cdeb22021-07-26 16:38:14 +02003569 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &el->rx.pkts_rwlock);
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003570 TRACE_PROTO("hp removed", QUIC_EV_CONN_ELRMHP, qc, pqpkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003571 }
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003572 MT_LIST_DELETE_SAFE(pkttmp1);
3573 quic_rx_packet_refdec(pqpkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003574 }
3575
3576 out:
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003577 TRACE_LEAVE(QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003578}
3579
3580/* Process all the CRYPTO frame at <el> encryption level.
3581 * Return 1 if succeeded, 0 if not.
3582 */
3583static inline int qc_treat_rx_crypto_frms(struct quic_enc_level *el,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02003584 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003585{
3586 struct eb64_node *node;
3587
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003588 node = eb64_first(&el->rx.crypto.frms);
3589 while (node) {
3590 struct quic_rx_crypto_frm *cf;
3591
3592 cf = eb64_entry(&node->node, struct quic_rx_crypto_frm, offset_node);
3593 if (cf->offset_node.key != el->rx.crypto.offset)
3594 break;
3595
3596 if (!qc_provide_cdata(el, ctx, cf->data, cf->len, cf->pkt, cf))
3597 goto err;
3598
3599 node = eb64_next(node);
3600 quic_rx_packet_refdec(cf->pkt);
3601 eb64_delete(&cf->offset_node);
3602 pool_free(pool_head_quic_rx_crypto_frm, cf);
3603 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003604 return 1;
3605
3606 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003607 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RXCDATA, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003608 return 0;
3609}
3610
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003611/* Process all the packets at <el> and <next_el> encryption level.
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +05003612 * 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 +02003613 * as pointer value.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003614 * Return 1 if succeeded, 0 if not.
3615 */
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003616int qc_treat_rx_pkts(struct quic_enc_level *cur_el, struct quic_enc_level *next_el,
3617 struct ssl_sock_ctx *ctx, int force_ack)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003618{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003619 struct eb64_node *node;
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003620 int64_t largest_pn = -1;
Amaury Denoyelle29632b82022-01-18 16:50:58 +01003621 struct quic_conn *qc = ctx->qc;
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003622 struct quic_enc_level *qel = cur_el;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003623
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003624 TRACE_ENTER(QUIC_EV_CONN_ELRXPKTS, ctx->qc);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003625 qel = cur_el;
3626 next_tel:
3627 if (!qel)
3628 goto out;
3629
3630 HA_RWLOCK_WRLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock);
3631 node = eb64_first(&qel->rx.pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003632 while (node) {
3633 struct quic_rx_packet *pkt;
3634
3635 pkt = eb64_entry(&node->node, struct quic_rx_packet, pn_node);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003636 TRACE_PROTO("new packet", QUIC_EV_CONN_ELRXPKTS,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003637 ctx->qc, pkt, NULL, ctx->ssl);
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01003638 if (!qc_pkt_decrypt(pkt, qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003639 /* Drop the packet */
3640 TRACE_PROTO("packet decryption failed -> dropped",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003641 QUIC_EV_CONN_ELRXPKTS, ctx->qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003642 }
3643 else {
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003644 if (!qc_parse_pkt_frms(pkt, ctx, qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003645 /* Drop the packet */
3646 TRACE_PROTO("packet parsing failed -> dropped",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003647 QUIC_EV_CONN_ELRXPKTS, ctx->qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003648 }
3649 else {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003650 struct quic_arng ar = { .first = pkt->pn, .last = pkt->pn };
3651
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003652 if (pkt->flags & QUIC_FL_RX_PACKET_ACK_ELICITING || force_ack) {
3653 qel->pktns->flags |= QUIC_FL_PKTNS_ACK_REQUIRED;
3654 qel->pktns->rx.nb_aepkts_since_last_ack++;
Frédéric Lécaille530601c2022-03-10 15:11:57 +01003655 qc_idle_timer_rearm(qc, 1);
3656 }
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003657 if (pkt->pn > largest_pn)
3658 largest_pn = pkt->pn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003659 /* Update the list of ranges to acknowledge. */
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003660 if (!quic_update_ack_ranges_list(&qel->pktns->rx.arngs, &ar))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003661 TRACE_DEVEL("Could not update ack range list",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003662 QUIC_EV_CONN_ELRXPKTS, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003663 }
3664 }
3665 node = eb64_next(node);
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02003666 eb64_delete(&pkt->pn_node);
3667 quic_rx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003668 }
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003669 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003670
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003671 /* Update the largest packet number. */
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02003672 if (largest_pn != -1 && largest_pn > qel->pktns->rx.largest_pn)
3673 qel->pktns->rx.largest_pn = largest_pn;
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003674 if (!qc_treat_rx_crypto_frms(qel, ctx))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003675 goto err;
3676
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003677 if (qel == cur_el) {
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003678 BUG_ON(qel == next_el);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003679 qel = next_el;
3680 goto next_tel;
3681 }
3682
3683 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003684 TRACE_LEAVE(QUIC_EV_CONN_ELRXPKTS, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003685 return 1;
3686
3687 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003688 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ELRXPKTS, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003689 return 0;
3690}
3691
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003692/* Check if it's possible to remove header protection for packets related to
3693 * encryption level <qel>. If <qel> is NULL, assume it's false.
3694 *
3695 * Return true if the operation is possible else false.
3696 */
3697static int qc_qel_may_rm_hp(struct quic_conn *qc, struct quic_enc_level *qel)
3698{
3699 enum quic_tls_enc_level tel;
3700
3701 if (!qel)
3702 return 0;
3703
3704 tel = ssl_to_quic_enc_level(qel->level);
3705
3706 /* check if tls secrets are available */
Frédéric Lécaillebd242082022-02-25 17:17:59 +01003707 if (qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD) {
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003708 TRACE_DEVEL("Discarded keys", QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaille51c90652022-02-22 11:39:14 +01003709 return 0;
3710 }
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003711
Frédéric Lécaillebd242082022-02-25 17:17:59 +01003712 if (!(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET))
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003713 return 0;
3714
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01003715 /* check if the connection layer is ready before using app level */
Frédéric Lécaille298931d2022-01-28 21:41:06 +01003716 if ((tel == QUIC_TLS_ENC_LEVEL_APP || tel == QUIC_TLS_ENC_LEVEL_EARLY_DATA) &&
Frédéric Lécaille12aa26b2022-03-21 11:37:13 +01003717 qc->mux_state == QC_MUX_NULL)
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003718 return 0;
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003719
3720 return 1;
3721}
3722
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003723/* Sends application level packets from <qc> QUIC connection */
Frédéric Lécaille3e3a6212022-04-25 10:17:00 +02003724int qc_send_app_pkts(struct quic_conn *qc, int old_data, struct list *frms)
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003725{
3726 int ret;
3727 struct qring *qr;
3728
3729 qr = MT_LIST_POP(qc->tx.qring_list, typeof(qr), mt_list);
3730 if (!qr)
3731 /* Never happens */
3732 return 1;
3733
Frédéric Lécaille3e3a6212022-04-25 10:17:00 +02003734 if (old_data)
3735 qc->flags |= QUIC_FL_CONN_RETRANS_OLD_DATA;
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01003736 ret = qc_prep_app_pkts(qc, qr, frms);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003737 if (ret == -1)
3738 goto err;
3739 else if (ret == 0)
3740 goto out;
3741
3742 if (!qc_send_ppkts(qr, qc->xprt_ctx))
3743 goto err;
3744
3745 out:
Frédéric Lécaille3e3a6212022-04-25 10:17:00 +02003746 qc->flags &= ~QUIC_FL_CONN_RETRANS_OLD_DATA;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003747 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
3748 return 1;
3749
3750 err:
Frédéric Lécaille3e3a6212022-04-25 10:17:00 +02003751 qc->flags &= ~QUIC_FL_CONN_RETRANS_OLD_DATA;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003752 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
3753 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_IO_CB, qc);
3754 return 0;
3755}
3756
Frédéric Lécaillea9568412022-04-25 08:58:04 +02003757/* Sends handshake packets from up to two encryption levels <tel> and <next_te>
3758 * with <tel_frms> and <next_tel_frms> as frame list respectively for <qc>
3759 * QUIC connection
3760 * Returns 1 if succeeded, 0 if not.
3761 */
3762int qc_send_hdshk_pkts(struct quic_conn *qc, int old_data,
3763 enum quic_tls_enc_level tel, struct list *tel_frms,
3764 enum quic_tls_enc_level next_tel, struct list *next_tel_frms)
3765{
3766 int ret;
3767 struct qring *qr;
3768
3769 qr = MT_LIST_POP(qc->tx.qring_list, typeof(qr), mt_list);
3770 if (!qr)
3771 /* Never happens */
3772 return 1;
3773
3774 if (old_data)
3775 qc->flags |= QUIC_FL_CONN_RETRANS_OLD_DATA;
3776 ret = qc_prep_pkts(qc, qr, tel, tel_frms, next_tel, next_tel_frms);
3777 if (ret == -1)
3778 goto err;
3779 else if (ret == 0)
3780 goto out;
3781
3782 if (!qc_send_ppkts(qr, qc->xprt_ctx))
3783 goto err;
3784
3785 out:
3786 qc->flags &= ~QUIC_FL_CONN_RETRANS_OLD_DATA;
3787 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
3788 return 1;
3789
3790 err:
3791 qc->flags &= ~QUIC_FL_CONN_RETRANS_OLD_DATA;
3792 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
3793 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_IO_CB, qc);
3794 return 0;
3795}
3796
3797/* Retransmit up to two datagrams depending on packet number space */
3798static void qc_dgrams_retransmit(struct quic_conn *qc)
3799{
3800 struct quic_enc_level *iqel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
3801 struct quic_enc_level *hqel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
3802 struct quic_enc_level *aqel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
3803
3804 if (iqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) {
3805 struct list ifrms = LIST_HEAD_INIT(ifrms);
3806 struct list hfrms = LIST_HEAD_INIT(hfrms);
3807
3808 qc_prep_hdshk_fast_retrans(qc, &ifrms, &hfrms);
3809 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &ifrms);
3810 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &hfrms);
3811 if (!LIST_ISEMPTY(&ifrms)) {
3812 iqel->pktns->tx.pto_probe = 1;
3813 if (!LIST_ISEMPTY(&hfrms)) {
3814 hqel->pktns->tx.pto_probe = 1;
3815 qc_send_hdshk_pkts(qc, 1, QUIC_TLS_ENC_LEVEL_INITIAL, &ifrms,
3816 QUIC_TLS_ENC_LEVEL_HANDSHAKE, &hfrms);
3817 }
3818 }
3819 if (hqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) {
3820 qc_prep_fast_retrans(qc, hqel, &hfrms, NULL);
3821 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &hfrms);
3822 if (!LIST_ISEMPTY(&hfrms)) {
3823 hqel->pktns->tx.pto_probe = 1;
3824 qc_send_hdshk_pkts(qc, 1, QUIC_TLS_ENC_LEVEL_HANDSHAKE, &hfrms,
3825 QUIC_TLS_ENC_LEVEL_NONE, NULL);
3826 }
3827 hqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED;
3828 }
3829 iqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED;
3830 }
3831 else {
3832 int i;
3833 struct list frms1 = LIST_HEAD_INIT(frms1);
3834 struct list frms2 = LIST_HEAD_INIT(frms2);
3835
3836 if (hqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) {
3837 hqel->pktns->tx.pto_probe = 0;
3838 for (i = 0; i < QUIC_MAX_NB_PTO_DGRAMS; i++) {
3839 qc_prep_fast_retrans(qc, hqel, &frms1, NULL);
3840 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &frms1);
3841 if (!LIST_ISEMPTY(&frms1)) {
3842 hqel->pktns->tx.pto_probe = 1;
3843 qc_send_hdshk_pkts(qc, 1, QUIC_TLS_ENC_LEVEL_HANDSHAKE, &frms1,
3844 QUIC_TLS_ENC_LEVEL_NONE, NULL);
3845 }
3846 }
3847 hqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED;
3848 }
3849 else if (aqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) {
3850 aqel->pktns->tx.pto_probe = 0;
3851 qc_prep_fast_retrans(qc, aqel, &frms1, &frms2);
3852 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &frms1);
3853 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &frms2);
3854 if (!LIST_ISEMPTY(&frms1)) {
3855 aqel->pktns->tx.pto_probe = 1;
3856 qc_send_app_pkts(qc, 1, &frms1);
3857 }
3858 if (!LIST_ISEMPTY(&frms2)) {
3859 aqel->pktns->tx.pto_probe = 1;
3860 qc_send_app_pkts(qc, 1, &frms2);
3861 }
3862 aqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED;
3863 }
3864 }
3865}
3866
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003867/* QUIC connection packet handler task (post handshake) */
3868static struct task *quic_conn_app_io_cb(struct task *t, void *context, unsigned int state)
3869{
3870 struct ssl_sock_ctx *ctx;
3871 struct quic_conn *qc;
3872 struct quic_enc_level *qel;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003873
3874
3875 ctx = context;
3876 qc = ctx->qc;
3877 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003878
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003879 TRACE_PROTO("state", QUIC_EV_CONN_IO_CB, qc, &qc->state);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003880
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02003881 /* Retranmissions */
3882 if (qc->flags & QUIC_FL_CONN_RETRANS_NEEDED) {
3883 TRACE_PROTO("retransmission needed", QUIC_EV_CONN_IO_CB, qc);
3884 qc->flags &= ~QUIC_FL_CONN_RETRANS_NEEDED;
3885 qc_dgrams_retransmit(qc);
3886 }
3887
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003888 if (!MT_LIST_ISEMPTY(&qel->rx.pqpkts) && qc_qel_may_rm_hp(qc, qel))
3889 qc_rm_hp_pkts(qc, qel);
3890
3891 if (!qc_treat_rx_pkts(qel, NULL, ctx, 0))
3892 goto err;
3893
Frédéric Lécaille47756802022-03-25 09:12:16 +01003894 if ((qc->flags & QUIC_FL_CONN_DRAINING) &&
3895 !(qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE))
3896 goto out;
3897
Frédéric Lécaille3e3a6212022-04-25 10:17:00 +02003898 if (!qc_send_app_pkts(qc, 0, &qel->pktns->tx.frms))
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003899 goto err;
3900
Frédéric Lécaille47756802022-03-25 09:12:16 +01003901out:
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003902 return t;
3903
3904 err:
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003905 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_IO_CB, qc, &qc->state);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003906 return t;
3907}
3908
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003909/* QUIC connection packet handler task. */
3910struct task *quic_conn_io_cb(struct task *t, void *context, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003911{
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003912 int ret, ssl_err;
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003913 struct ssl_sock_ctx *ctx;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02003914 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003915 enum quic_tls_enc_level tel, next_tel;
3916 struct quic_enc_level *qel, *next_qel;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003917 struct qring *qr; // Tx ring
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01003918 int st, force_ack, zero_rtt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003919
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003920 ctx = context;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01003921 qc = ctx->qc;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003922 TRACE_ENTER(QUIC_EV_CONN_IO_CB, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003923 qr = NULL;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003924 st = qc->state;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003925 TRACE_PROTO("state", QUIC_EV_CONN_IO_CB, qc, &st);
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02003926
3927 /* Retranmissions */
3928 if (qc->flags & QUIC_FL_CONN_RETRANS_NEEDED) {
3929 TRACE_PROTO("retransmission needed", QUIC_EV_CONN_PHPKTS, qc);
3930 qc->flags &= ~QUIC_FL_CONN_RETRANS_NEEDED;
3931 qc_dgrams_retransmit(qc);
3932 }
3933
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003934 if (qc->flags & QUIC_FL_CONN_IO_CB_WAKEUP) {
3935 qc->flags &= ~QUIC_FL_CONN_IO_CB_WAKEUP;
Frédéric Lécaille6b663152022-01-04 17:03:11 +01003936 /* The I/O handler has been woken up by the dgram listener
3937 * after the anti-amplification was reached.
3938 */
3939 qc_set_timer(qc);
3940 if (tick_isset(qc->timer) && tick_is_lt(qc->timer, now_ms))
3941 task_wakeup(qc->timer_task, TASK_WOKEN_MSG);
3942 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003943 ssl_err = SSL_ERROR_NONE;
Frédéric Lécaille4137b2d2021-12-17 18:24:16 +01003944 zero_rtt = st < QUIC_HS_ST_COMPLETE &&
3945 (!MT_LIST_ISEMPTY(&qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA].rx.pqpkts) ||
3946 qc_el_rx_pkts(&qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA]));
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003947 start:
Frédéric Lécaille917a7db2022-01-03 17:00:35 +01003948 if (st >= QUIC_HS_ST_COMPLETE &&
3949 qc_el_rx_pkts(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE])) {
3950 TRACE_PROTO("remaining Handshake packets", QUIC_EV_CONN_PHPKTS, qc);
3951 /* There may be remaining Handshake packets to treat and acknowledge. */
3952 tel = QUIC_TLS_ENC_LEVEL_HANDSHAKE;
3953 next_tel = QUIC_TLS_ENC_LEVEL_APP;
3954 }
3955 else if (!quic_get_tls_enc_levels(&tel, &next_tel, st, zero_rtt))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003956 goto err;
3957
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02003958 qel = &qc->els[tel];
Frédéric Lécaillef7980962021-08-19 17:35:21 +02003959 next_qel = next_tel == QUIC_TLS_ENC_LEVEL_NONE ? NULL : &qc->els[next_tel];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003960
3961 next_level:
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003962 /* Treat packets waiting for header packet protection decryption */
3963 if (!MT_LIST_ISEMPTY(&qel->rx.pqpkts) && qc_qel_may_rm_hp(qc, qel))
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003964 qc_rm_hp_pkts(qc, qel);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003965
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003966 force_ack = qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL] ||
3967 qel == &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
3968 if (!qc_treat_rx_pkts(qel, next_qel, ctx, force_ack))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003969 goto err;
3970
Frédéric Lécaille47756802022-03-25 09:12:16 +01003971 if ((qc->flags & QUIC_FL_CONN_DRAINING) &&
3972 !(qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE))
3973 goto out;
3974
Frédéric Lécaille1231d3c2022-04-28 15:43:46 +02003975 if (next_qel && next_qel == &qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA] &&
3976 !MT_LIST_ISEMPTY(&next_qel->rx.pqpkts)) {
3977 if ((next_qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET)) {
3978 qel = next_qel;
3979 next_qel = NULL;
3980 goto next_level;
3981 }
3982 else {
3983 struct quic_rx_packet *pkt;
3984 struct mt_list *elt1, elt2;
3985 struct quic_enc_level *aqel = &qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA];
3986
3987 /* Drop these 0-RTT packets */
3988 TRACE_PROTO("drop all 0-RTT packets", QUIC_EV_CONN_PHPKTS, qc);
3989 mt_list_for_each_entry_safe(pkt, &aqel->rx.pqpkts, list, elt1, elt2) {
3990 MT_LIST_DELETE_SAFE(elt1);
3991 quic_rx_packet_refdec(pkt);
3992 }
3993 }
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01003994 }
3995
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003996 st = qc->state;
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01003997 if (st >= QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003998 if (!(qc->flags & QUIC_FL_CONN_POST_HANDSHAKE_FRAMES_BUILT) &&
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01003999 !quic_build_post_handshake_frames(qc))
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004000 goto err;
Frédéric Lécaillefee7ba62021-12-06 12:09:08 +01004001
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004002 if (!(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].tls_ctx.flags &
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004003 QUIC_FL_TLS_SECRETS_DCD)) {
4004 /* Discard the Handshake keys. */
4005 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
4006 TRACE_PROTO("discarding Handshake pktns", QUIC_EV_CONN_PHPKTS, qc);
4007 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns, qc);
4008 qc_set_timer(qc);
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004009 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01004010 qc_release_pktns_frms(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns);
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004011 }
4012
4013 if (qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) {
4014 /* There may be remaining handshake to build (acks) */
4015 st = QUIC_HS_ST_SERVER_HANDSHAKE;
4016 }
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004017 }
4018
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004019 if (!qr)
4020 qr = MT_LIST_POP(qc->tx.qring_list, typeof(qr), mt_list);
Frédéric Lécaillebec186d2022-01-12 15:32:55 +01004021 /* A listener does not send any O-RTT packet. O-RTT packet number space must not
4022 * be considered.
4023 */
4024 if (!quic_get_tls_enc_levels(&tel, &next_tel, st, 0))
Frédéric Lécailleee2b8b32022-01-03 11:14:30 +01004025 goto err;
Frédéric Lécaillefc888442022-04-11 15:39:34 +02004026 ret = qc_prep_pkts(qc, qr, tel, &qc->els[tel].pktns->tx.frms,
4027 next_tel, &qc->els[next_tel].pktns->tx.frms);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004028 if (ret == -1)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004029 goto err;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004030 else if (ret == 0)
4031 goto skip_send;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004032
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004033 if (!qc_send_ppkts(qr, ctx))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004034 goto err;
4035
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004036 skip_send:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004037 /* Check if there is something to do for the next level.
4038 */
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02004039 if (next_qel && next_qel != qel &&
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004040 (next_qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET) &&
Frédéric Lécaille7d807c92021-12-06 08:56:38 +01004041 (!MT_LIST_ISEMPTY(&next_qel->rx.pqpkts) || qc_el_rx_pkts(next_qel))) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004042 qel = next_qel;
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02004043 next_qel = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004044 goto next_level;
4045 }
4046
Frédéric Lécaille47756802022-03-25 09:12:16 +01004047 out:
4048 if (qr)
4049 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004050 TRACE_LEAVE(QUIC_EV_CONN_IO_CB, qc, &st);
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004051 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004052
4053 err:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004054 if (qr)
4055 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004056 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_IO_CB, qc, &st, &ssl_err);
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004057 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004058}
4059
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05004060/* Uninitialize <qel> QUIC encryption level. Never fails. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004061static void quic_conn_enc_level_uninit(struct quic_enc_level *qel)
4062{
4063 int i;
4064
4065 for (i = 0; i < qel->tx.crypto.nb_buf; i++) {
4066 if (qel->tx.crypto.bufs[i]) {
4067 pool_free(pool_head_quic_crypto_buf, qel->tx.crypto.bufs[i]);
4068 qel->tx.crypto.bufs[i] = NULL;
4069 }
4070 }
Willy Tarreau61cfdf42021-02-20 10:46:51 +01004071 ha_free(&qel->tx.crypto.bufs);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004072}
4073
4074/* Initialize QUIC TLS encryption level with <level<> as level for <qc> QUIC
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05004075 * connection allocating everything needed.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004076 * Returns 1 if succeeded, 0 if not.
4077 */
4078static int quic_conn_enc_level_init(struct quic_conn *qc,
4079 enum quic_tls_enc_level level)
4080{
4081 struct quic_enc_level *qel;
4082
4083 qel = &qc->els[level];
4084 qel->level = quic_to_ssl_enc_level(level);
4085 qel->tls_ctx.rx.aead = qel->tls_ctx.tx.aead = NULL;
4086 qel->tls_ctx.rx.md = qel->tls_ctx.tx.md = NULL;
4087 qel->tls_ctx.rx.hp = qel->tls_ctx.tx.hp = NULL;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +01004088 qel->tls_ctx.flags = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004089
4090 qel->rx.pkts = EB_ROOT;
Frédéric Lécaille98cdeb22021-07-26 16:38:14 +02004091 HA_RWLOCK_INIT(&qel->rx.pkts_rwlock);
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02004092 MT_LIST_INIT(&qel->rx.pqpkts);
Frédéric Lécaille9054d1b2021-07-26 16:23:53 +02004093 qel->rx.crypto.offset = 0;
4094 qel->rx.crypto.frms = EB_ROOT_UNIQUE;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004095
4096 /* Allocate only one buffer. */
4097 qel->tx.crypto.bufs = malloc(sizeof *qel->tx.crypto.bufs);
4098 if (!qel->tx.crypto.bufs)
4099 goto err;
4100
4101 qel->tx.crypto.bufs[0] = pool_alloc(pool_head_quic_crypto_buf);
4102 if (!qel->tx.crypto.bufs[0])
4103 goto err;
4104
4105 qel->tx.crypto.bufs[0]->sz = 0;
4106 qel->tx.crypto.nb_buf = 1;
4107
4108 qel->tx.crypto.sz = 0;
4109 qel->tx.crypto.offset = 0;
4110
4111 return 1;
4112
4113 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01004114 ha_free(&qel->tx.crypto.bufs);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004115 return 0;
4116}
4117
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004118/* Release the quic_conn <qc>. The connection is removed from the CIDs tree.
4119 * The connection tasklet is killed.
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004120 *
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004121 * This function must only be called by the thread responsible of the quic_conn
4122 * tasklet.
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004123 */
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004124static void quic_conn_release(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004125{
4126 int i;
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004127 struct ssl_sock_ctx *conn_ctx;
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004128 struct eb64_node *node;
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02004129 struct quic_tls_ctx *app_tls_ctx;
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004130
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02004131 /* We must not free the quic-conn if the MUX is still allocated. */
4132 BUG_ON(qc->mux_state == QC_MUX_READY);
4133
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004134 /* free remaining stream descriptors */
4135 node = eb64_first(&qc->streams_by_id);
4136 while (node) {
4137 struct qc_stream_desc *stream;
4138
4139 stream = eb64_entry(node, struct qc_stream_desc, by_id);
4140 node = eb64_next(node);
4141
Amaury Denoyellec9acc312022-04-01 16:41:21 +02004142 /* all streams attached to the quic-conn are released, so
4143 * qc_stream_desc_free will liberate the stream instance.
4144 */
4145 BUG_ON(!stream->release);
4146 qc_stream_desc_free(stream);
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004147 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004148
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004149 if (qc->idle_timer_task) {
4150 task_destroy(qc->idle_timer_task);
4151 qc->idle_timer_task = NULL;
4152 }
4153
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004154 if (qc->timer_task) {
4155 task_destroy(qc->timer_task);
4156 qc->timer_task = NULL;
4157 }
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004158
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004159 /* remove the connection from receiver cids trees */
4160 ebmb_delete(&qc->odcid_node);
4161 ebmb_delete(&qc->scid_node);
4162 free_quic_conn_cids(qc);
Amaury Denoyelle2af19852021-09-30 11:03:28 +02004163
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004164 conn_ctx = qc->xprt_ctx;
Amaury Denoyelle2d9794b2022-01-20 17:43:20 +01004165 if (conn_ctx) {
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004166 tasklet_free(conn_ctx->wait_event.tasklet);
Amaury Denoyelle2d9794b2022-01-20 17:43:20 +01004167 SSL_free(conn_ctx->ssl);
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004168 pool_free(pool_head_quic_conn_ctx, conn_ctx);
Amaury Denoyelle2d9794b2022-01-20 17:43:20 +01004169 }
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004170
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02004171 quic_tls_ku_free(qc);
4172 for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++) {
4173 quic_tls_ctx_secs_free(&qc->els[i].tls_ctx);
Amaury Denoyelle67e6cd52021-12-13 17:07:03 +01004174 quic_conn_enc_level_uninit(&qc->els[i]);
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02004175 }
4176
4177 app_tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
4178 pool_free(pool_head_quic_tls_secret, app_tls_ctx->rx.secret);
4179 pool_free(pool_head_quic_tls_secret, app_tls_ctx->tx.secret);
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01004180
Frédéric Lécailleeb2a2da2022-04-01 12:15:24 +02004181 for (i = 0; i < QUIC_TLS_PKTNS_MAX; i++) {
4182 quic_pktns_tx_pkts_release(&qc->pktns[i]);
Frédéric Lécaille64670882022-04-01 11:57:19 +02004183 quic_free_arngs(&qc->pktns[i].rx.arngs);
Frédéric Lécailleeb2a2da2022-04-01 12:15:24 +02004184 }
Frédéric Lécaille64670882022-04-01 11:57:19 +02004185
Amaury Denoyelle67e6cd52021-12-13 17:07:03 +01004186 pool_free(pool_head_quic_conn_rxbuf, qc->rx.buf.area);
4187 pool_free(pool_head_quic_conn, qc);
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01004188 TRACE_PROTO("QUIC conn. freed", QUIC_EV_CONN_FREED, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004189}
4190
Amaury Denoyellee0be5732022-04-05 17:34:18 +02004191static void quic_close(struct connection *conn, void *xprt_ctx)
Amaury Denoyelle414cac52021-09-22 11:14:37 +02004192{
4193 struct ssl_sock_ctx *conn_ctx = xprt_ctx;
Amaury Denoyelle29632b82022-01-18 16:50:58 +01004194 struct quic_conn *qc = conn_ctx->qc;
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01004195
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01004196 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01004197
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01004198 /* Next application data can be dropped. */
4199 qc->mux_state = QC_MUX_RELEASED;
4200
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02004201 /* If the quic-conn timer has already expired free the quic-conn. */
4202 if (qc->flags & QUIC_FL_CONN_EXP_TIMER) {
4203 quic_conn_release(qc);
4204 TRACE_LEAVE(QUIC_EV_CONN_CLOSE);
4205 return;
4206 }
4207
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01004208 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle414cac52021-09-22 11:14:37 +02004209}
4210
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004211/* Callback called upon loss detection and PTO timer expirations. */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004212static struct task *process_timer(struct task *task, void *ctx, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004213{
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02004214 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004215 struct quic_conn *qc;
4216 struct quic_pktns *pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004217
4218 conn_ctx = task->context;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01004219 qc = conn_ctx->qc;
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004220 TRACE_ENTER(QUIC_EV_CONN_PTIMER, qc,
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01004221 NULL, NULL, &qc->path->ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004222 task->expire = TICK_ETERNITY;
4223 pktns = quic_loss_pktns(qc);
4224 if (tick_isset(pktns->tx.loss_time)) {
4225 struct list lost_pkts = LIST_HEAD_INIT(lost_pkts);
4226
4227 qc_packet_loss_lookup(pktns, qc, &lost_pkts);
4228 if (!LIST_ISEMPTY(&lost_pkts))
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004229 qc_release_lost_pkts(qc, pktns, &lost_pkts, now_ms);
4230 qc_set_timer(qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004231 goto out;
4232 }
4233
4234 if (qc->path->in_flight) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004235 pktns = quic_pto_pktns(qc, qc->state >= QUIC_HS_ST_COMPLETE, NULL);
Frédéric Lécailledafbde62022-04-26 13:54:28 +02004236 if (qc->mux_state == QC_MUX_READY && qc->qcc->subs &&
4237 qc->qcc->subs->events & SUB_RETRY_SEND) {
4238 struct qcc *qcc = qc->qcc;
4239
4240 pktns->tx.pto_probe = QUIC_MAX_NB_PTO_DGRAMS;
4241 tasklet_wakeup(qcc->subs->tasklet);
4242 qcc->subs->events &= ~SUB_RETRY_SEND;
4243 if (!qcc->subs->events)
4244 qcc->subs = NULL;
4245 }
4246 else {
4247 qc->flags |= QUIC_FL_CONN_RETRANS_NEEDED;
4248 pktns->flags |= QUIC_FL_PKTNS_PROBE_NEEDED;
4249 if (pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL]) {
4250 if (qc->pktns[QUIC_TLS_PKTNS_HANDSHAKE].tx.in_flight)
4251 qc->pktns[QUIC_TLS_PKTNS_HANDSHAKE].flags |= QUIC_FL_PKTNS_PROBE_NEEDED;
4252 }
Frédéric Lécaille0fa553d2022-01-17 14:26:12 +01004253 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004254 }
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004255 else if (!qc_is_listener(qc) && qc->state <= QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004256 struct quic_enc_level *iel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
4257 struct quic_enc_level *hel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
4258
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004259 if (hel->tls_ctx.flags == QUIC_FL_TLS_SECRETS_SET)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004260 hel->pktns->tx.pto_probe = 1;
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004261 if (iel->tls_ctx.flags == QUIC_FL_TLS_SECRETS_SET)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004262 iel->pktns->tx.pto_probe = 1;
4263 }
Frédéric Lécaillea56054e2021-12-31 16:35:28 +01004264
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004265 tasklet_wakeup(conn_ctx->wait_event.tasklet);
4266 qc->path->loss.pto_count++;
4267
4268 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004269 TRACE_LEAVE(QUIC_EV_CONN_PTIMER, qc, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004270
4271 return task;
4272}
4273
4274/* Initialize <conn> QUIC connection with <quic_initial_clients> as root of QUIC
4275 * connections used to identify the first Initial packets of client connecting
4276 * to listeners. This parameter must be NULL for QUIC connections attached
4277 * to listeners. <dcid> is the destination connection ID with <dcid_len> as length.
4278 * <scid> is the source connection ID with <scid_len> as length.
4279 * Returns 1 if succeeded, 0 if not.
4280 */
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004281static struct quic_conn *qc_new_conn(unsigned int version, int ipv4,
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01004282 unsigned char *dcid, size_t dcid_len, size_t dcid_addr_len,
Frédéric Lécaille6b197642021-07-06 16:25:08 +02004283 unsigned char *scid, size_t scid_len, int server, void *owner)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004284{
4285 int i;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004286 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004287 /* Initial CID. */
4288 struct quic_connection_id *icid;
Frédéric Lécaillec0b481f2022-02-02 15:39:55 +01004289 char *buf_area = NULL;
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01004290 struct listener *l = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004291
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004292 TRACE_ENTER(QUIC_EV_CONN_INIT);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004293 qc = pool_zalloc(pool_head_quic_conn);
4294 if (!qc) {
4295 TRACE_PROTO("Could not allocate a new connection", QUIC_EV_CONN_INIT);
4296 goto err;
4297 }
4298
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004299 buf_area = pool_alloc(pool_head_quic_conn_rxbuf);
4300 if (!buf_area) {
Amaury Denoyellee770ce32021-12-21 14:51:56 +01004301 TRACE_PROTO("Could not allocate a new RX buffer", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004302 goto err;
4303 }
4304
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004305 qc->cids = EB_ROOT;
4306 /* QUIC Server (or listener). */
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004307 if (server) {
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01004308 l = owner;
Frédéric Lécaille6b197642021-07-06 16:25:08 +02004309
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01004310 qc->flags |= QUIC_FL_CONN_LISTENER;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004311 qc->state = QUIC_HS_ST_SERVER_INITIAL;
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01004312 /* Copy the initial DCID with the address. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004313 qc->odcid.len = dcid_len;
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01004314 qc->odcid.addrlen = dcid_addr_len;
4315 memcpy(qc->odcid.data, dcid, dcid_len + dcid_addr_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004316
Amaury Denoyelle42b9f1c2021-11-24 15:29:53 +01004317 /* copy the packet SCID to reuse it as DCID for sending */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004318 if (scid_len)
4319 memcpy(qc->dcid.data, scid, scid_len);
4320 qc->dcid.len = scid_len;
Frédéric Lécaillec1029f62021-10-20 11:09:58 +02004321 qc->tx.qring_list = &l->rx.tx_qring_list;
Amaury Denoyelle2af19852021-09-30 11:03:28 +02004322 qc->li = l;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004323 }
4324 /* QUIC Client (outgoing connection to servers) */
4325 else {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004326 qc->state = QUIC_HS_ST_CLIENT_INITIAL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004327 if (dcid_len)
4328 memcpy(qc->dcid.data, dcid, dcid_len);
4329 qc->dcid.len = dcid_len;
4330 }
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01004331 qc->mux_state = QC_MUX_NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004332
4333 /* Initialize the output buffer */
4334 qc->obuf.pos = qc->obuf.data;
4335
Amaury Denoyelle0442efd2022-01-28 16:02:13 +01004336 icid = new_quic_cid(&qc->cids, qc, 0);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004337 if (!icid) {
Amaury Denoyellee770ce32021-12-21 14:51:56 +01004338 TRACE_PROTO("Could not allocate a new connection ID", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004339 goto err;
4340 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004341
Frédéric Lécaille74904a42022-01-27 15:35:56 +01004342 /* insert the allocated CID in the receiver datagram handler tree */
4343 if (server)
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01004344 ebmb_insert(&quic_dghdlrs[tid].cids, &icid->node, icid->cid.len);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01004345
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004346 /* Select our SCID which is the first CID with 0 as sequence number. */
4347 qc->scid = icid->cid;
4348
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004349 /* Packet number spaces initialization. */
4350 for (i = 0; i < QUIC_TLS_PKTNS_MAX; i++)
4351 quic_pktns_init(&qc->pktns[i]);
4352 /* QUIC encryption level context initialization. */
4353 for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++) {
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004354 if (!quic_conn_enc_level_init(qc, i)) {
Amaury Denoyellee770ce32021-12-21 14:51:56 +01004355 TRACE_PROTO("Could not initialize an encryption level", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004356 goto err;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004357 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004358 /* Initialize the packet number space. */
4359 qc->els[i].pktns = &qc->pktns[quic_tls_pktns(i)];
4360 }
4361
Frédéric Lécaillec8d3f872021-07-06 17:19:44 +02004362 qc->version = version;
Frédéric Lécaillea956d152021-11-10 09:24:22 +01004363 qc->tps_tls_ext = qc->version & 0xff000000 ?
4364 TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS_DRAFT:
4365 TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004366 /* TX part. */
4367 LIST_INIT(&qc->tx.frms_to_send);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004368 qc->tx.nb_buf = QUIC_CONN_TX_BUFS_NB;
4369 qc->tx.wbuf = qc->tx.rbuf = 0;
4370 qc->tx.bytes = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004371 /* RX part. */
4372 qc->rx.bytes = 0;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004373 qc->rx.buf = b_make(buf_area, QUIC_CONN_RX_BUFSZ, 0, 0);
Frédéric Lécaille664741e2022-05-02 18:46:58 +02004374 for (i = 0; i < QCS_MAX_TYPES; i++)
4375 qc->rx.strms[i].nb_streams = 0;
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02004376
4377 qc->nb_pkt_for_cc = 1;
4378 qc->nb_pkt_since_cc = 0;
4379
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004380 LIST_INIT(&qc->rx.pkt_list);
Frédéric Lécaille40df78f2021-11-30 10:59:37 +01004381 if (!quic_tls_ku_init(qc)) {
Amaury Denoyellee770ce32021-12-21 14:51:56 +01004382 TRACE_PROTO("Key update initialization failed", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille40df78f2021-11-30 10:59:37 +01004383 goto err;
4384 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004385
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004386 /* XXX TO DO: Only one path at this time. */
4387 qc->path = &qc->paths[0];
4388 quic_path_init(qc->path, ipv4, default_quic_cc_algo, qc);
4389
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01004390 /* required to use MTLIST_IN_LIST */
4391 MT_LIST_INIT(&qc->accept_list);
4392
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004393 qc->streams_by_id = EB_ROOT_UNIQUE;
Amaury Denoyelled2f80a22022-04-15 17:30:49 +02004394 qc->stream_buf_count = 0;
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004395
Amaury Denoyellee770ce32021-12-21 14:51:56 +01004396 TRACE_LEAVE(QUIC_EV_CONN_INIT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004397
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004398 return qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004399
4400 err:
Amaury Denoyellee770ce32021-12-21 14:51:56 +01004401 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_INIT, qc ? qc : NULL);
Frédéric Lécaillec0b481f2022-02-02 15:39:55 +01004402 pool_free(pool_head_quic_conn_rxbuf, buf_area);
4403 if (qc)
4404 qc->rx.buf.area = NULL;
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004405 quic_conn_release(qc);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004406 return NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004407}
4408
4409/* Initialize the timer task of <qc> QUIC connection.
4410 * Returns 1 if succeeded, 0 if not.
4411 */
4412static int quic_conn_init_timer(struct quic_conn *qc)
4413{
Frédéric Lécaillef57c3332021-12-09 10:06:21 +01004414 /* Attach this task to the same thread ID used for the connection */
4415 qc->timer_task = task_new(1UL << qc->tid);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004416 if (!qc->timer_task)
4417 return 0;
4418
4419 qc->timer = TICK_ETERNITY;
4420 qc->timer_task->process = process_timer;
Frédéric Lécaille7fbb94d2022-01-31 10:37:07 +01004421 qc->timer_task->context = qc->xprt_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004422
4423 return 1;
4424}
4425
Frédéric Lécaille47756802022-03-25 09:12:16 +01004426/* Rearm the idle timer for <qc> QUIC connection. */
4427static void qc_idle_timer_do_rearm(struct quic_conn *qc)
4428{
4429 unsigned int expire;
4430
4431 expire = QUIC_MAX(3 * quic_pto(qc), qc->max_idle_timeout);
4432 qc->idle_timer_task->expire = tick_add(now_ms, MS_TO_TICKS(expire));
4433}
4434
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004435/* Rearm the idle timer for <qc> QUIC connection depending on <read> boolean
4436 * which is set to 1 when receiving a packet , and 0 when sending packet
4437 */
4438static void qc_idle_timer_rearm(struct quic_conn *qc, int read)
4439{
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004440 if (read) {
4441 qc->flags |= QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ;
4442 }
4443 else {
4444 qc->flags &= ~QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ;
4445 }
Frédéric Lécaille47756802022-03-25 09:12:16 +01004446 qc_idle_timer_do_rearm(qc);
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004447}
4448
4449/* The task handling the idle timeout */
4450static struct task *qc_idle_timer_task(struct task *t, void *ctx, unsigned int state)
4451{
4452 struct quic_conn *qc = ctx;
4453
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02004454 /* Notify the MUX before settings QUIC_FL_CONN_EXP_TIMER or the MUX
4455 * might free the quic-conn too early via quic_close().
4456 */
4457 qc_notify_close(qc);
4458
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02004459 /* If the MUX is still alive, keep the quic-conn. The MUX is
4460 * responsible to call quic_close to release it.
4461 */
4462 qc->flags |= QUIC_FL_CONN_EXP_TIMER;
4463 if (qc->mux_state != QC_MUX_READY)
4464 quic_conn_release(qc);
4465
4466 /* TODO if the quic-conn cannot be freed because of the MUX, we may at
4467 * least clean some parts of it such as the tasklet.
4468 */
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004469
4470 return NULL;
4471}
4472
4473/* Initialize the idle timeout task for <qc>.
4474 * Returns 1 if succeeded, 0 if not.
4475 */
4476static int quic_conn_init_idle_timer_task(struct quic_conn *qc)
4477{
4478 qc->idle_timer_task = task_new_here();
4479 if (!qc->idle_timer_task)
4480 return 0;
4481
4482 qc->idle_timer_task->process = qc_idle_timer_task;
4483 qc->idle_timer_task->context = qc;
4484 qc_idle_timer_rearm(qc, 1);
4485 task_queue(qc->idle_timer_task);
4486
4487 return 1;
4488}
4489
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004490/* Parse into <pkt> a long header located at <*buf> buffer, <end> begin a pointer to the end
4491 * past one byte of this buffer.
4492 */
4493static inline int quic_packet_read_long_header(unsigned char **buf, const unsigned char *end,
4494 struct quic_rx_packet *pkt)
4495{
4496 unsigned char dcid_len, scid_len;
4497
4498 /* Version */
4499 if (!quic_read_uint32(&pkt->version, (const unsigned char **)buf, end))
4500 return 0;
4501
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004502 /* Destination Connection ID Length */
4503 dcid_len = *(*buf)++;
4504 /* We want to be sure we can read <dcid_len> bytes and one more for <scid_len> value */
4505 if (dcid_len > QUIC_CID_MAXLEN || end - *buf < dcid_len + 1)
4506 /* XXX MUST BE DROPPED */
4507 return 0;
4508
4509 if (dcid_len) {
4510 /* Check that the length of this received DCID matches the CID lengths
4511 * of our implementation for non Initials packets only.
4512 */
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01004513 if (pkt->type != QUIC_PACKET_TYPE_INITIAL &&
4514 pkt->type != QUIC_PACKET_TYPE_0RTT &&
Amaury Denoyelled4962512021-12-14 17:17:28 +01004515 dcid_len != QUIC_HAP_CID_LEN)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004516 return 0;
4517
4518 memcpy(pkt->dcid.data, *buf, dcid_len);
4519 }
4520
4521 pkt->dcid.len = dcid_len;
4522 *buf += dcid_len;
4523
4524 /* Source Connection ID Length */
4525 scid_len = *(*buf)++;
4526 if (scid_len > QUIC_CID_MAXLEN || end - *buf < scid_len)
4527 /* XXX MUST BE DROPPED */
4528 return 0;
4529
4530 if (scid_len)
4531 memcpy(pkt->scid.data, *buf, scid_len);
4532 pkt->scid.len = scid_len;
4533 *buf += scid_len;
4534
4535 return 1;
4536}
4537
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004538/* Insert <pkt> RX packet in its <qel> RX packets tree */
4539static void qc_pkt_insert(struct quic_rx_packet *pkt, struct quic_enc_level *qel)
4540{
4541 pkt->pn_node.key = pkt->pn;
Frédéric Lécaille2ce5acf2021-12-20 14:41:19 +01004542 quic_rx_packet_refinc(pkt);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004543 HA_RWLOCK_WRLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock);
4544 eb64_insert(&qel->rx.pkts, &pkt->pn_node);
4545 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004546}
4547
4548/* Try to remove the header protection of <pkt> QUIC packet attached to <qc>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004549 * QUIC connection with <buf> as packet number field address, <end> a pointer to one
4550 * byte past the end of the buffer containing this packet and <beg> the address of
4551 * the packet first byte.
4552 * If succeeded, this function updates <*buf> to point to the next packet in the buffer.
4553 * Returns 1 if succeeded, 0 if not.
4554 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004555static inline int qc_try_rm_hp(struct quic_conn *qc,
4556 struct quic_rx_packet *pkt,
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004557 unsigned char *buf, unsigned char *beg,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004558 const unsigned char *end,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004559 struct quic_enc_level **el)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004560{
4561 unsigned char *pn = NULL; /* Packet number field */
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01004562 enum quic_tls_enc_level tel;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004563 struct quic_enc_level *qel;
4564 /* Only for traces. */
4565 struct quic_rx_packet *qpkt_trace;
4566
4567 qpkt_trace = NULL;
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004568 TRACE_ENTER(QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004569 /* The packet number is here. This is also the start minus
4570 * QUIC_PACKET_PN_MAXLEN of the sample used to add/remove the header
4571 * protection.
4572 */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004573 pn = buf;
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01004574
4575 tel = quic_packet_type_enc_level(pkt->type);
4576 qel = &qc->els[tel];
4577
4578 if (qc_qel_may_rm_hp(qc, qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004579 /* Note that the following function enables us to unprotect the packet
4580 * number and its length subsequently used to decrypt the entire
4581 * packets.
4582 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004583 if (!qc_do_rm_hp(qc, pkt, &qel->tls_ctx,
4584 qel->pktns->rx.largest_pn, pn, beg, end)) {
4585 TRACE_PROTO("hp error", QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004586 goto err;
4587 }
4588
4589 /* The AAD includes the packet number field found at <pn>. */
4590 pkt->aad_len = pn - beg + pkt->pnl;
4591 qpkt_trace = pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004592 }
Frédéric Lécaille7d845f12022-02-21 19:22:09 +01004593 else {
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004594 if (qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD) {
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004595 /* If the packet number space has been discarded, this packet
4596 * will be not parsed.
4597 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004598 TRACE_PROTO("Discarded pktns", QUIC_EV_CONN_TRMHP, qc, pkt);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004599 goto out;
4600 }
4601
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004602 TRACE_PROTO("hp not removed", QUIC_EV_CONN_TRMHP, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004603 pkt->pn_offset = pn - beg;
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02004604 MT_LIST_APPEND(&qel->rx.pqpkts, &pkt->list);
4605 quic_rx_packet_refinc(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004606 }
4607
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004608 *el = qel;
4609 /* No reference counter incrementation here!!! */
4610 LIST_APPEND(&qc->rx.pkt_list, &pkt->qc_rx_pkt_list);
4611 memcpy(b_tail(&qc->rx.buf), beg, pkt->len);
4612 pkt->data = (unsigned char *)b_tail(&qc->rx.buf);
4613 b_add(&qc->rx.buf, pkt->len);
4614 out:
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004615 TRACE_LEAVE(QUIC_EV_CONN_TRMHP, qc, qpkt_trace);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004616 return 1;
4617
4618 err:
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004619 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_TRMHP, qc, qpkt_trace);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004620 return 0;
4621}
4622
4623/* Parse the header form from <byte0> first byte of <pkt> pacekt to set type.
4624 * Also set <*long_header> to 1 if this form is long, 0 if not.
4625 */
4626static inline void qc_parse_hd_form(struct quic_rx_packet *pkt,
4627 unsigned char byte0, int *long_header)
4628{
4629 if (byte0 & QUIC_PACKET_LONG_HEADER_BIT) {
4630 pkt->type =
4631 (byte0 >> QUIC_PACKET_TYPE_SHIFT) & QUIC_PACKET_TYPE_BITMASK;
4632 *long_header = 1;
4633 }
4634 else {
4635 pkt->type = QUIC_PACKET_TYPE_SHORT;
4636 *long_header = 0;
4637 }
4638}
4639
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004640/*
4641 * Check if the QUIC version in packet <pkt> is supported. Returns a boolean.
4642 */
4643static inline int qc_pkt_is_supported_version(struct quic_rx_packet *pkt)
4644{
4645 int j = 0, version;
4646
4647 do {
4648 version = quic_supported_version[j];
4649 if (version == pkt->version)
4650 return 1;
4651
4652 version = quic_supported_version[++j];
4653 } while(version);
4654
4655 return 0;
4656}
4657
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004658/*
4659 * Send a Version Negotiation packet on response to <pkt> on socket <fd> to
4660 * address <addr>.
4661 * Implementation of RFC9000 6. Version Negotiation
4662 *
4663 * TODO implement a rate-limiting sending of Version Negotiation packets
4664 *
4665 * Returns 0 on success else non-zero
4666 */
Amaury Denoyelled6b16672021-12-23 10:37:19 +01004667static int send_version_negotiation(int fd, struct sockaddr_storage *addr,
4668 struct quic_rx_packet *pkt)
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004669{
4670 char buf[256];
4671 int i = 0, j, version;
4672 const socklen_t addrlen = get_addr_len(addr);
4673
4674 /*
4675 * header form
4676 * long header, fixed bit to 0 for Version Negotiation
4677 */
Frédéric Lécailleea78ee12021-11-18 13:54:43 +01004678 if (RAND_bytes((unsigned char *)buf, 1) != 1)
4679 return 1;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004680
Frédéric Lécailleea78ee12021-11-18 13:54:43 +01004681 buf[i++] |= '\x80';
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004682 /* null version for Version Negotiation */
4683 buf[i++] = '\x00';
4684 buf[i++] = '\x00';
4685 buf[i++] = '\x00';
4686 buf[i++] = '\x00';
4687
4688 /* source connection id */
4689 buf[i++] = pkt->scid.len;
Amaury Denoyelle10eed8e2021-11-18 13:48:57 +01004690 memcpy(&buf[i], pkt->scid.data, pkt->scid.len);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004691 i += pkt->scid.len;
4692
4693 /* destination connection id */
4694 buf[i++] = pkt->dcid.len;
Amaury Denoyelle10eed8e2021-11-18 13:48:57 +01004695 memcpy(&buf[i], pkt->dcid.data, pkt->dcid.len);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004696 i += pkt->dcid.len;
4697
4698 /* supported version */
4699 j = 0;
4700 do {
4701 version = htonl(quic_supported_version[j]);
4702 memcpy(&buf[i], &version, sizeof(version));
4703 i += sizeof(version);
4704
4705 version = quic_supported_version[++j];
4706 } while (version);
4707
4708 if (sendto(fd, buf, i, 0, (struct sockaddr *)addr, addrlen) < 0)
4709 return 1;
4710
4711 return 0;
4712}
4713
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01004714/* Generate the token to be used in Retry packets. The token is written to
4715 * <buf> which is expected to be <len> bytes.
4716 *
4717 * Various parameters are expected to be encoded in the token. For now, only
4718 * the DCID from <pkt> is stored. This is useful to implement a stateless Retry
4719 * as this CID must be repeated by the server in the transport parameters.
4720 *
4721 * TODO add the client address to validate the token origin.
4722 *
4723 * Returns the length of the encoded token or 0 on error.
4724 */
4725static int generate_retry_token(unsigned char *buf, unsigned char len,
4726 struct quic_rx_packet *pkt)
4727{
4728 const size_t token_len = 1 + pkt->dcid.len;
4729 unsigned char i = 0;
4730
4731 if (token_len > len)
4732 return 0;
4733
4734 buf[i++] = pkt->dcid.len;
4735 memcpy(&buf[i], pkt->dcid.data, pkt->dcid.len);
4736 i += pkt->dcid.len;
4737
4738 return i;
4739}
4740
4741/* Generate a Retry packet and send it on <fd> socket to <addr> in response to
4742 * the Initial <pkt> packet.
4743 *
4744 * Returns 0 on success else non-zero.
4745 */
4746static int send_retry(int fd, struct sockaddr_storage *addr,
4747 struct quic_rx_packet *pkt)
4748{
4749 unsigned char buf[128];
4750 int i = 0, token_len;
4751 const socklen_t addrlen = get_addr_len(addr);
4752 struct quic_cid scid;
4753
4754 /* long header + fixed bit + packet type 0x3 */
4755 buf[i++] = 0xf0;
4756 /* version */
4757 buf[i++] = 0x00;
4758 buf[i++] = 0x00;
4759 buf[i++] = 0x00;
4760 buf[i++] = 0x01;
4761
4762 /* Use the SCID from <pkt> for Retry DCID. */
4763 buf[i++] = pkt->scid.len;
4764 memcpy(&buf[i], pkt->scid.data, pkt->scid.len);
4765 i += pkt->scid.len;
4766
4767 /* Generate a new CID to be used as SCID for the Retry packet. */
4768 scid.len = QUIC_HAP_CID_LEN;
4769 if (RAND_bytes(scid.data, scid.len) != 1)
4770 return 1;
4771
4772 buf[i++] = scid.len;
4773 memcpy(&buf[i], scid.data, scid.len);
4774 i += scid.len;
4775
4776 /* token */
Frédéric Lécaillecc2764e2022-03-23 14:09:09 +01004777 if (!(token_len = generate_retry_token(&buf[i], sizeof(buf) - i, pkt)))
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01004778 return 1;
Frédéric Lécaillecc2764e2022-03-23 14:09:09 +01004779
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01004780 i += token_len;
4781
4782 /* token integrity tag */
4783 if ((&buf[i] - buf < QUIC_TLS_TAG_LEN) ||
4784 !quic_tls_generate_retry_integrity_tag(pkt->dcid.data,
4785 pkt->dcid.len, buf, i)) {
4786 return 1;
4787 }
4788
4789 i += QUIC_TLS_TAG_LEN;
4790
4791 if (sendto(fd, buf, i, 0, (struct sockaddr *)addr, addrlen) < 0)
4792 return 1;
4793
4794 return 0;
4795}
4796
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004797/* Retrieve a quic_conn instance from the <pkt> DCID field. If the packet is of
4798 * type INITIAL, the ODCID tree is first used. In this case, <saddr> is
4799 * concatenated to the <pkt> DCID field.
4800 *
4801 * Returns the instance or NULL if not found.
4802 */
Amaury Denoyelled6b16672021-12-23 10:37:19 +01004803static struct quic_conn *retrieve_qc_conn_from_cid(struct quic_rx_packet *pkt,
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004804 struct listener *l,
4805 struct sockaddr_storage *saddr)
4806{
4807 struct quic_conn *qc = NULL;
4808 struct ebmb_node *node;
4809 struct quic_connection_id *id;
Amaury Denoyelle250ac422021-12-22 11:29:05 +01004810 /* set if the quic_conn is found in the second DCID tree */
4811 int found_in_dcid = 0;
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004812
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004813 /* Look first into ODCIDs tree for INITIAL/0-RTT packets. */
4814 if (pkt->type == QUIC_PACKET_TYPE_INITIAL ||
4815 pkt->type == QUIC_PACKET_TYPE_0RTT) {
4816 /* DCIDs of first packets coming from multiple clients may have
4817 * the same values. Let's distinguish them by concatenating the
4818 * socket addresses.
4819 */
4820 quic_cid_saddr_cat(&pkt->dcid, saddr);
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01004821 node = ebmb_lookup(&quic_dghdlrs[tid].odcids, pkt->dcid.data,
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004822 pkt->dcid.len + pkt->dcid.addrlen);
4823 if (node) {
4824 qc = ebmb_entry(node, struct quic_conn, odcid_node);
4825 goto end;
4826 }
4827 }
4828
4829 /* Look into DCIDs tree for non-INITIAL/0-RTT packets. This may be used
4830 * also for INITIAL/0-RTT non-first packets with the final DCID in
4831 * used.
4832 */
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01004833 node = ebmb_lookup(&quic_dghdlrs[tid].cids, pkt->dcid.data, pkt->dcid.len);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004834 if (!node)
4835 goto end;
4836
4837 id = ebmb_entry(node, struct quic_connection_id, node);
4838 qc = id->qc;
Amaury Denoyelle250ac422021-12-22 11:29:05 +01004839 found_in_dcid = 1;
4840
4841 end:
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004842 /* If found in DCIDs tree, remove the quic_conn from the ODCIDs tree.
4843 * If already done, this is a noop.
4844 */
Frédéric Lécaille74904a42022-01-27 15:35:56 +01004845 if (qc && found_in_dcid)
Amaury Denoyelle250ac422021-12-22 11:29:05 +01004846 ebmb_delete(&qc->odcid_node);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004847
4848 return qc;
4849}
4850
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01004851/* Parse the Retry token from buffer <token> whose size is <token_len>. This
4852 * will extract the parameters stored in the token : <odcid>.
4853 *
4854 * Returns 0 on success else non-zero.
4855 */
4856static int parse_retry_token(const unsigned char *token, uint64_t token_len,
4857 struct quic_cid *odcid)
4858{
4859 uint64_t odcid_len;
4860
4861 if (!quic_dec_int(&odcid_len, &token, token + token_len))
4862 return 1;
4863
Frédéric Lécaillef1f812b2022-03-17 16:22:02 +01004864 if (odcid_len > QUIC_CID_MAXLEN)
4865 return 1;
4866
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01004867 memcpy(odcid->data, token, odcid_len);
4868 odcid->len = odcid_len;
4869
4870 return 0;
4871}
4872
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01004873/* Try to allocate the <*ssl> SSL session object for <qc> QUIC connection
4874 * with <ssl_ctx> as SSL context inherited settings. Also set the transport
4875 * parameters of this session.
4876 * This is the responsibility of the caller to check the validity of all the
4877 * pointers passed as parameter to this function.
4878 * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <qc->conn> to
4879 * CO_ER_SSL_NO_MEM.
4880 */
4881static int qc_ssl_sess_init(struct quic_conn *qc, SSL_CTX *ssl_ctx, SSL **ssl,
4882 unsigned char *params, size_t params_len)
4883{
4884 int retry;
4885
4886 retry = 1;
4887 retry:
4888 *ssl = SSL_new(ssl_ctx);
4889 if (!*ssl) {
4890 if (!retry--)
4891 goto err;
4892
4893 pool_gc(NULL);
4894 goto retry;
4895 }
4896
4897 if (!SSL_set_quic_method(*ssl, &ha_quic_method) ||
4898 !SSL_set_ex_data(*ssl, ssl_qc_app_data_index, qc) ||
4899 !SSL_set_quic_transport_params(*ssl, qc->enc_params, qc->enc_params_len)) {
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01004900 SSL_free(*ssl);
4901 *ssl = NULL;
4902 if (!retry--)
4903 goto err;
4904
4905 pool_gc(NULL);
4906 goto retry;
4907 }
4908
4909 return 0;
4910
4911 err:
4912 qc->conn->err_code = CO_ER_SSL_NO_MEM;
4913 return -1;
4914}
4915
4916/* Allocate the ssl_sock_ctx from connection <qc>. This creates the tasklet
4917 * used to process <qc> received packets. The allocated context is stored in
4918 * <qc.xprt_ctx>.
4919 *
4920 * Returns 0 on success else non-zero.
4921 */
4922int qc_conn_alloc_ssl_ctx(struct quic_conn *qc)
4923{
4924 struct bind_conf *bc = qc->li->bind_conf;
4925 struct ssl_sock_ctx *ctx = NULL;
4926
4927 ctx = pool_zalloc(pool_head_quic_conn_ctx);
4928 if (!ctx)
4929 goto err;
4930
4931 ctx->wait_event.tasklet = tasklet_new();
4932 if (!ctx->wait_event.tasklet)
4933 goto err;
4934
4935 ctx->wait_event.tasklet->process = quic_conn_io_cb;
4936 ctx->wait_event.tasklet->context = ctx;
4937 ctx->wait_event.events = 0;
4938 ctx->subs = NULL;
4939 ctx->xprt_ctx = NULL;
4940 ctx->qc = qc;
4941
4942 /* Set tasklet tid based on the SCID selected by us for this
4943 * connection. The upper layer will also be binded on the same thread.
4944 */
Frédéric Lécaille220894a2022-01-26 18:04:50 +01004945 qc->tid = ctx->wait_event.tasklet->tid = quic_get_cid_tid(qc->scid.data);
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01004946
4947 if (qc_is_listener(qc)) {
4948 if (qc_ssl_sess_init(qc, bc->initial_ctx, &ctx->ssl,
4949 qc->enc_params, qc->enc_params_len) == -1) {
4950 goto err;
4951 }
4952
4953 /* Enabling 0-RTT */
4954 if (bc->ssl_conf.early_data)
4955 SSL_set_quic_early_data_enabled(ctx->ssl, 1);
4956
4957 SSL_set_accept_state(ctx->ssl);
4958 }
4959
4960 ctx->xprt = xprt_get(XPRT_QUIC);
4961
4962 /* Store the allocated context in <qc>. */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004963 qc->xprt_ctx = ctx;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01004964
4965 return 0;
4966
4967 err:
4968 if (ctx && ctx->wait_event.tasklet)
4969 tasklet_free(ctx->wait_event.tasklet);
4970 pool_free(pool_head_quic_conn_ctx, ctx);
4971
4972 return 1;
4973}
4974
Frédéric Lécaille4646cf32022-04-27 15:09:53 +02004975/* Parse a QUIC packet from UDP datagram found in <buf> buffer with <end> the
4976 * end of this buffer past one byte and populate <pkt> RX packet structure
4977 * with the information collected from the packet.
4978 * This function sets ->len <pkt> field value to the end of the packet past one
4979 * byte to enable the caller to run this function again to continue to parse
4980 * the remaing QUIC packets carried by the datagram.
4981 * Note that this function always sets this ->len value. If a paquet could
4982 * not be correctly found, ->len value will be set to the remaining number
4983 * bytes in the datagram to entirely consume this latter.
4984 */
4985static void qc_lstnr_pkt_rcv(unsigned char *buf, const unsigned char *end,
4986 struct quic_rx_packet *pkt, int first_pkt,
4987 struct quic_dgram *dgram)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004988{
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004989 unsigned char *beg, *payload;
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004990 struct quic_conn *qc, *qc_to_purge = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004991 struct listener *l;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02004992 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaille6b663152022-01-04 17:03:11 +01004993 int long_header = 0, io_cb_wakeup = 0;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004994 size_t b_cspace;
4995 struct quic_enc_level *qel;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004996
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004997 beg = buf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004998 qc = NULL;
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02004999 conn_ctx = NULL;
Frédéric Lécaillec4becf52021-11-08 11:23:17 +01005000 qel = NULL;
Frédéric Lécaille8678eb02021-12-16 18:03:52 +01005001 TRACE_ENTER(QUIC_EV_CONN_LPKT);
5002 /* This ist only to please to traces and distinguish the
5003 * packet with parsed packet number from others.
5004 */
5005 pkt->pn_node.key = (uint64_t)-1;
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005006 if (end <= buf)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005007 goto err;
5008
5009 /* Fixed bit */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005010 if (!(*buf & QUIC_PACKET_FIXED_BIT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005011 /* XXX TO BE DISCARDED */
5012 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
5013 goto err;
5014 }
5015
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005016 l = dgram->owner;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005017 /* Header form */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005018 qc_parse_hd_form(pkt, *buf++, &long_header);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005019 if (long_header) {
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005020 uint64_t len;
Frédéric Lécaille87373e72022-04-27 11:42:08 +02005021 int drop_no_con = 0;
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005022
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005023 if (!quic_packet_read_long_header(&buf, end, pkt)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005024 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
5025 goto err;
5026 }
5027
Frédéric Lécaille3e266982022-04-27 15:37:28 +02005028 if (pkt->type == QUIC_PACKET_TYPE_0RTT && !l->bind_conf->ssl_conf.early_data) {
5029 TRACE_PROTO("0-RTT packet not supported", QUIC_EV_CONN_LPKT, qc);
5030 drop_no_con = 1;
5031 }
5032 else if (pkt->type == QUIC_PACKET_TYPE_INITIAL &&
5033 dgram->len < QUIC_INITIAL_PACKET_MINLEN) {
Frédéric Lécaille87373e72022-04-27 11:42:08 +02005034 TRACE_PROTO("Too short datagram with an Initial packet", QUIC_EV_CONN_LPKT, qc);
5035 drop_no_con = 1;
5036 }
5037
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005038 /* When multiple QUIC packets are coalesced on the same UDP datagram,
5039 * they must have the same DCID.
5040 */
5041 if (!first_pkt &&
5042 (pkt->dcid.len != dgram->dcid_len ||
5043 memcmp(dgram->dcid, pkt->dcid.data, pkt->dcid.len))) {
5044 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
5045 goto err;
5046 }
5047
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005048 /* Retry of Version Negotiation packets are only sent by servers */
5049 if (pkt->type == QUIC_PACKET_TYPE_RETRY || !pkt->version) {
5050 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
5051 goto err;
5052 }
5053
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005054 /* RFC9000 6. Version Negotiation */
5055 if (!qc_pkt_is_supported_version(pkt)) {
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005056 /* unsupported version, send Negotiation packet */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005057 if (send_version_negotiation(l->rx.fd, &dgram->saddr, pkt)) {
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005058 TRACE_PROTO("Error on Version Negotiation sending", QUIC_EV_CONN_LPKT);
5059 goto err;
5060 }
5061
5062 TRACE_PROTO("Unsupported QUIC version, send Version Negotiation packet", QUIC_EV_CONN_LPKT);
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005063 goto err;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005064 }
5065
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005066 /* For Initial packets, and for servers (QUIC clients connections),
5067 * there is no Initial connection IDs storage.
5068 */
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005069 if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02005070 uint64_t token_len;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02005071
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005072 if (!quic_dec_int(&token_len, (const unsigned char **)&buf, end) ||
5073 end - buf < token_len) {
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005074 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
5075 goto err;
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01005076 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005077
Frédéric Lécaille055ee6c2022-01-25 21:21:56 +01005078 /* The token may be provided in a Retry packet or NEW_TOKEN frame
5079 * only by the QUIC server.
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005080 */
5081 pkt->token_len = token_len;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005082
5083 /* TODO Retry should be automatically activated if
5084 * suspect network usage is detected.
5085 */
5086 if (!token_len && l->bind_conf->quic_force_retry) {
5087 TRACE_PROTO("Initial without token, sending retry", QUIC_EV_CONN_LPKT);
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005088 if (send_retry(l->rx.fd, &dgram->saddr, pkt)) {
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005089 TRACE_PROTO("Error during Retry generation", QUIC_EV_CONN_LPKT);
5090 goto err;
5091 }
5092
5093 goto err;
5094 }
5095 else {
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01005096 pkt->token = buf;
5097 buf += pkt->token_len;
5098 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005099 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005100 else if (pkt->type != QUIC_PACKET_TYPE_0RTT) {
Amaury Denoyelled4962512021-12-14 17:17:28 +01005101 if (pkt->dcid.len != QUIC_HAP_CID_LEN) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005102 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
5103 goto err;
5104 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005105 }
5106
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005107 if (!quic_dec_int(&len, (const unsigned char **)&buf, end) ||
5108 end - buf < len) {
5109 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
5110 goto err;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02005111 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005112
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005113 payload = buf;
5114 pkt->len = len + payload - beg;
Frédéric Lécaille87373e72022-04-27 11:42:08 +02005115 if (drop_no_con)
5116 goto drop_no_con;
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005117
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005118 qc = retrieve_qc_conn_from_cid(pkt, l, &dgram->saddr);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005119 if (!qc) {
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005120 int ipv4;
5121 struct quic_cid *odcid;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02005122 struct ebmb_node *n = NULL;
Frédéric Lécaille2fc76cf2021-08-31 19:10:40 +02005123 const unsigned char *salt = initial_salt_v1;
5124 size_t salt_len = sizeof initial_salt_v1;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005125
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005126 if (pkt->type != QUIC_PACKET_TYPE_INITIAL) {
Amaury Denoyelle47e1f6d2021-12-17 10:58:05 +01005127 TRACE_PROTO("Non Initial packet", QUIC_EV_CONN_LPKT);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005128 goto err;
5129 }
5130
Frédéric Lécailledc364042022-01-27 16:51:54 +01005131 if (pkt->dcid.len < QUIC_ODCID_MINLEN) {
5132 TRACE_PROTO("dropped packet", QUIC_EV_CONN_LPKT);
5133 goto err;
5134 }
5135
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005136 pkt->saddr = dgram->saddr;
5137 ipv4 = dgram->saddr.ss_family == AF_INET;
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01005138 qc = qc_new_conn(pkt->version, ipv4,
5139 pkt->dcid.data, pkt->dcid.len, pkt->dcid.addrlen,
Frédéric Lécaille6b197642021-07-06 16:25:08 +02005140 pkt->scid.data, pkt->scid.len, 1, l);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02005141 if (qc == NULL)
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005142 goto err;
5143
Amaury Denoyelle9fa15e52022-01-19 15:54:23 +01005144 memcpy(&qc->peer_addr, &pkt->saddr, sizeof(pkt->saddr));
5145
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005146 odcid = &qc->rx.params.original_destination_connection_id;
5147 /* Copy the transport parameters. */
5148 qc->rx.params = l->bind_conf->quic_params;
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01005149
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005150 /* Copy original_destination_connection_id transport parameter. */
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01005151 if (pkt->token_len) {
5152 if (parse_retry_token(pkt->token, pkt->token_len, odcid)) {
5153 TRACE_PROTO("Error during Initial token parsing", QUIC_EV_CONN_LPKT, qc);
5154 goto err;
5155 }
Amaury Denoyellec3b6f4d2022-01-11 12:03:09 +01005156 /* Copy retry_source_connection_id transport parameter. */
5157 quic_cid_cpy(&qc->rx.params.retry_source_connection_id,
5158 &pkt->dcid);
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01005159 }
5160 else {
5161 memcpy(odcid->data, &pkt->dcid.data, pkt->dcid.len);
5162 odcid->len = pkt->dcid.len;
5163 }
5164
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005165 /* Copy the initial source connection ID. */
5166 quic_cid_cpy(&qc->rx.params.initial_source_connection_id, &qc->scid);
5167 qc->enc_params_len =
5168 quic_transport_params_encode(qc->enc_params,
5169 qc->enc_params + sizeof qc->enc_params,
5170 &qc->rx.params, 1);
5171 if (!qc->enc_params_len)
5172 goto err;
5173
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005174 if (qc_conn_alloc_ssl_ctx(qc))
5175 goto err;
5176
Frédéric Lécaille789413c2022-01-31 10:16:18 +01005177 if (!quic_conn_init_timer(qc))
5178 goto err;
5179
Frédéric Lécaille530601c2022-03-10 15:11:57 +01005180 if (!quic_conn_init_idle_timer_task(qc))
5181 goto err;
5182
Frédéric Lécaille497fa782021-05-31 15:16:13 +02005183 /* NOTE: the socket address has been concatenated to the destination ID
5184 * chosen by the client for Initial packets.
5185 */
Frédéric Lécaille2fc76cf2021-08-31 19:10:40 +02005186 if (pkt->version == QUIC_PROTOCOL_VERSION_DRAFT_29) {
5187 salt = initial_salt_draft_29;
5188 salt_len = sizeof initial_salt_draft_29;
5189 }
5190 if (!qc_new_isecs(qc, salt, salt_len,
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01005191 pkt->dcid.data, pkt->dcid.len, 1)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005192 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille497fa782021-05-31 15:16:13 +02005193 goto err;
5194 }
5195
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02005196 /* Insert the DCID the QUIC client has chosen (only for listeners) */
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01005197 n = ebmb_insert(&quic_dghdlrs[tid].odcids, &qc->odcid_node,
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01005198 qc->odcid.len + qc->odcid.addrlen);
Frédéric Lécaille8370c932021-11-08 17:01:46 +01005199
Amaury Denoyelleaff4ec82021-11-24 15:16:08 +01005200 /* If the insertion failed, it means that another
5201 * thread has already allocated a QUIC connection for
5202 * the same CID. Liberate our allocated connection.
5203 */
5204 if (unlikely(n != &qc->odcid_node)) {
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01005205 qc_to_purge = qc;
5206
Amaury Denoyelleaff4ec82021-11-24 15:16:08 +01005207 qc = ebmb_entry(n, struct quic_conn, odcid_node);
5208 pkt->qc = qc;
5209 }
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01005210
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01005211 if (likely(!qc_to_purge)) {
Frédéric Lécaille8370c932021-11-08 17:01:46 +01005212 /* Enqueue this packet. */
Frédéric Lécaillef67b3562021-11-15 16:21:40 +01005213 pkt->qc = qc;
Frédéric Lécaille8370c932021-11-08 17:01:46 +01005214 }
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01005215 else {
Frédéric Lécaillef293b692022-03-08 16:59:54 +01005216 quic_conn_release(qc_to_purge);
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01005217 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005218 }
5219 else {
Frédéric Lécaille8370c932021-11-08 17:01:46 +01005220 pkt->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005221 }
5222 }
5223 else {
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005224 if (end - buf < QUIC_HAP_CID_LEN) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005225 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
5226 goto err;
5227 }
5228
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005229 memcpy(pkt->dcid.data, buf, QUIC_HAP_CID_LEN);
Amaury Denoyelleadb22762021-12-14 15:04:14 +01005230 pkt->dcid.len = QUIC_HAP_CID_LEN;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005231
5232 /* When multiple QUIC packets are coalesced on the same UDP datagram,
5233 * they must have the same DCID.
5234 */
5235 if (!first_pkt &&
5236 (pkt->dcid.len != dgram->dcid_len ||
5237 memcmp(dgram->dcid, pkt->dcid.data, pkt->dcid.len))) {
5238 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
5239 goto err;
5240 }
5241
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005242 buf += QUIC_HAP_CID_LEN;
5243
5244 /* A short packet is the last one of a UDP datagram. */
5245 payload = buf;
5246 pkt->len = end - beg;
Amaury Denoyelleadb22762021-12-14 15:04:14 +01005247
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005248 qc = retrieve_qc_conn_from_cid(pkt, l, &dgram->saddr);
Frédéric Lécaille4d118d62021-12-21 14:48:58 +01005249 if (!qc) {
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005250 size_t pktlen = end - buf;
Frédéric Lécaille4d118d62021-12-21 14:48:58 +01005251 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, NULL, pkt, &pktlen);
5252 goto err;
5253 }
5254
Frédéric Lécaille8370c932021-11-08 17:01:46 +01005255 pkt->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005256 }
5257
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02005258 if (qc->flags & QUIC_FL_CONN_CLOSING) {
5259 if (++qc->nb_pkt_since_cc >= qc->nb_pkt_for_cc) {
5260 qc->flags |= QUIC_FL_CONN_IMMEDIATE_CLOSE;
5261 qc->nb_pkt_for_cc++;
5262 qc->nb_pkt_since_cc = 0;
5263 }
5264 /* Skip the entire datagram */
5265 pkt->len = end - beg;
5266 TRACE_PROTO("Closing state connection", QUIC_EV_CONN_LPKT, pkt->qc);
5267 goto out;
5268 }
Amaury Denoyelleadb22762021-12-14 15:04:14 +01005269
5270 /* When multiple QUIC packets are coalesced on the same UDP datagram,
5271 * they must have the same DCID.
5272 *
5273 * This check must be done after the final update to pkt.len to
5274 * properly drop the packet on failure.
5275 */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005276 if (first_pkt && !quic_peer_validated_addr(qc) &&
Frédéric Lécaillefc790062022-03-28 17:10:31 +02005277 qc->flags & QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED) {
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005278 TRACE_PROTO("PTO timer must be armed after anti-amplication was reached",
5279 QUIC_EV_CONN_LPKT, qc);
5280 /* Reset the anti-amplification bit. It will be set again
5281 * when sending the next packet if reached again.
5282 */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02005283 qc->flags &= ~QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED;
5284 qc->flags |= QUIC_FL_CONN_IO_CB_WAKEUP;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005285 io_cb_wakeup = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005286 }
Amaury Denoyelleadb22762021-12-14 15:04:14 +01005287
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005288 dgram->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005289
Frédéric Lécaillefc790062022-03-28 17:10:31 +02005290 if (qc->err_code) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005291 TRACE_PROTO("Connection error", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01005292 goto out;
5293 }
5294
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005295 pkt->raw_len = pkt->len;
Frédéric Lécailled61bc8d2021-12-02 14:46:19 +01005296 quic_rx_pkts_del(qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005297 b_cspace = b_contig_space(&qc->rx.buf);
5298 if (b_cspace < pkt->len) {
5299 /* Let us consume the remaining contiguous space. */
Frédéric Lécailled61bc8d2021-12-02 14:46:19 +01005300 if (b_cspace) {
5301 b_putchr(&qc->rx.buf, 0x00);
5302 b_cspace--;
5303 }
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005304 b_add(&qc->rx.buf, b_cspace);
5305 if (b_contig_space(&qc->rx.buf) < pkt->len) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005306 TRACE_PROTO("Too big packet", QUIC_EV_CONN_LPKT, qc, pkt, &pkt->len);
Frédéric Lécaille91ac6c32021-12-17 16:11:54 +01005307 qc_list_all_rx_pkts(qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005308 goto err;
5309 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005310 }
5311
Amaury Denoyellee81fed92021-12-22 11:06:34 +01005312 if (!qc_try_rm_hp(qc, pkt, payload, beg, end, &qel)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005313 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02005314 goto err;
5315 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005316
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005317 TRACE_PROTO("New packet", QUIC_EV_CONN_LPKT, qc, pkt);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005318 if (pkt->aad_len)
5319 qc_pkt_insert(pkt, qel);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01005320 out:
Frédéric Lécaille01abc462021-07-21 09:34:27 +02005321 /* Wake up the connection packet handler task from here only if all
5322 * the contexts have been initialized, especially the mux context
5323 * conn_ctx->conn->ctx. Note that this is ->start xprt callback which
5324 * will start it if these contexts for the connection are not already
5325 * initialized.
5326 */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02005327 conn_ctx = qc->xprt_ctx;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01005328 if (conn_ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005329 tasklet_wakeup(conn_ctx->wait_event.tasklet);
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02005330
Frédéric Lécaille87373e72022-04-27 11:42:08 +02005331 drop_no_con:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005332 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc ? qc : NULL, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005333
Frédéric Lécaille4646cf32022-04-27 15:09:53 +02005334 return;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005335
5336 err:
Frédéric Lécaille6b663152022-01-04 17:03:11 +01005337 /* Wakeup the I/O handler callback if the PTO timer must be armed.
5338 * This cannot be done by this thread.
5339 */
5340 if (io_cb_wakeup) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02005341 conn_ctx = qc->xprt_ctx;
Frédéric Lécaille6b663152022-01-04 17:03:11 +01005342 if (conn_ctx && conn_ctx->wait_event.tasklet)
5343 tasklet_wakeup(conn_ctx->wait_event.tasklet);
5344 }
Frédéric Lécaillef7ef9762021-12-31 16:37:58 +01005345 /* If length not found, consume the entire datagram */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005346 if (!pkt->len)
5347 pkt->len = end - beg;
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +01005348 TRACE_DEVEL("Leaving in error", QUIC_EV_CONN_LPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005349 qc ? qc : NULL, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005350}
5351
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005352/* This function builds into <buf> buffer a QUIC long packet header.
5353 * Return 1 if enough room to build this header, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005354 */
5355static int quic_build_packet_long_header(unsigned char **buf, const unsigned char *end,
5356 int type, size_t pn_len, struct quic_conn *conn)
5357{
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005358 if (end - *buf < sizeof conn->version + conn->dcid.len + conn->scid.len + 3)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005359 return 0;
5360
5361 /* #0 byte flags */
5362 *(*buf)++ = QUIC_PACKET_FIXED_BIT | QUIC_PACKET_LONG_HEADER_BIT |
5363 (type << QUIC_PACKET_TYPE_SHIFT) | (pn_len - 1);
5364 /* Version */
5365 quic_write_uint32(buf, end, conn->version);
5366 *(*buf)++ = conn->dcid.len;
5367 /* Destination connection ID */
5368 if (conn->dcid.len) {
5369 memcpy(*buf, conn->dcid.data, conn->dcid.len);
5370 *buf += conn->dcid.len;
5371 }
5372 /* Source connection ID */
5373 *(*buf)++ = conn->scid.len;
5374 if (conn->scid.len) {
5375 memcpy(*buf, conn->scid.data, conn->scid.len);
5376 *buf += conn->scid.len;
5377 }
5378
5379 return 1;
5380}
5381
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005382/* This function builds into <buf> buffer a QUIC short packet header.
5383 * Return 1 if enough room to build this header, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005384 */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005385static int quic_build_packet_short_header(unsigned char **buf, const unsigned char *end,
5386 size_t pn_len, struct quic_conn *conn,
5387 unsigned char tls_flags)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005388{
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005389 if (end - *buf < 1 + conn->dcid.len)
5390 return 0;
5391
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005392 /* #0 byte flags */
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01005393 *(*buf)++ = QUIC_PACKET_FIXED_BIT |
5394 ((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 +01005395 /* Destination connection ID */
5396 if (conn->dcid.len) {
5397 memcpy(*buf, conn->dcid.data, conn->dcid.len);
5398 *buf += conn->dcid.len;
5399 }
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005400
5401 return 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005402}
5403
5404/* Apply QUIC header protection to the packet with <buf> as first byte address,
5405 * <pn> as address of the Packet number field, <pnlen> being this field length
5406 * with <aead> as AEAD cipher and <key> as secret key.
5407 * Returns 1 if succeeded or 0 if failed.
5408 */
5409static int quic_apply_header_protection(unsigned char *buf, unsigned char *pn, size_t pnlen,
5410 const EVP_CIPHER *aead, const unsigned char *key)
5411{
5412 int i, ret, outlen;
5413 EVP_CIPHER_CTX *ctx;
5414 /* We need an IV of at least 5 bytes: one byte for bytes #0
5415 * and at most 4 bytes for the packet number
5416 */
5417 unsigned char mask[5] = {0};
5418
5419 ret = 0;
5420 ctx = EVP_CIPHER_CTX_new();
5421 if (!ctx)
5422 return 0;
5423
5424 if (!EVP_EncryptInit_ex(ctx, aead, NULL, key, pn + QUIC_PACKET_PN_MAXLEN) ||
5425 !EVP_EncryptUpdate(ctx, mask, &outlen, mask, sizeof mask) ||
5426 !EVP_EncryptFinal_ex(ctx, mask, &outlen))
5427 goto out;
5428
5429 *buf ^= mask[0] & (*buf & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f);
5430 for (i = 0; i < pnlen; i++)
5431 pn[i] ^= mask[i + 1];
5432
5433 ret = 1;
5434
5435 out:
5436 EVP_CIPHER_CTX_free(ctx);
5437
5438 return ret;
5439}
5440
5441/* Reduce the encoded size of <ack_frm> ACK frame removing the last
5442 * ACK ranges if needed to a value below <limit> in bytes.
5443 * Return 1 if succeeded, 0 if not.
5444 */
5445static int quic_ack_frm_reduce_sz(struct quic_frame *ack_frm, size_t limit)
5446{
5447 size_t room, ack_delay_sz;
5448
5449 ack_delay_sz = quic_int_getsize(ack_frm->tx_ack.ack_delay);
5450 /* A frame is made of 1 byte for the frame type. */
5451 room = limit - ack_delay_sz - 1;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01005452 if (!quic_rm_last_ack_ranges(ack_frm->tx_ack.arngs, room))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005453 return 0;
5454
Frédéric Lécaille8090b512020-11-30 16:19:22 +01005455 return 1 + ack_delay_sz + ack_frm->tx_ack.arngs->enc_sz;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005456}
5457
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005458/* Prepare into <outlist> as most as possible ack-eliciting frame from their
5459 * <inlist> prebuilt frames for <qel> encryption level to be encoded in a buffer
5460 * with <room> as available room, and <*len> the packet Length field initialized
5461 * with the number of bytes already present in this buffer which must be taken
5462 * into an account for the Length packet field value. <headlen> is the number of
5463 * bytes already present in this packet before building frames.
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02005464 *
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02005465 * Update consequently <*len> to reflect the size of these frames built
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01005466 * by this function. Also attach these frames to <l> frame list.
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02005467 * Return 1 if at least one ack-eleciting frame could be built, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005468 */
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005469static inline int qc_build_frms(struct list *outlist, struct list *inlist,
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02005470 size_t room, size_t *len, size_t headlen,
5471 struct quic_enc_level *qel,
Amaury Denoyelle17a74162021-12-21 14:45:39 +01005472 struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005473{
Frédéric Lécailleea604992020-12-24 13:01:37 +01005474 int ret;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01005475 struct quic_frame *cf, *cfbak;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005476
Frédéric Lécailleea604992020-12-24 13:01:37 +01005477 ret = 0;
Frédéric Lécaillef4e5a7c2022-01-17 17:56:20 +01005478 if (*len > room)
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005479 return 0;
5480
Frédéric Lécailleea604992020-12-24 13:01:37 +01005481 /* If we are not probing we must take into an account the congestion
5482 * control window.
5483 */
Frédéric Lécaillef4e5a7c2022-01-17 17:56:20 +01005484 if (!qel->pktns->tx.pto_probe) {
5485 size_t remain = quic_path_prep_data(qc->path);
5486
5487 if (headlen > remain)
5488 return 0;
5489
5490 room = QUIC_MIN(room, remain - headlen);
5491 }
5492
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005493 TRACE_PROTO("************** frames build (headlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005494 QUIC_EV_CONN_BCFRMS, qc, &headlen);
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02005495
5496 /* NOTE: switch/case block inside a loop, a successful status must be
5497 * returned by this function only if at least one frame could be built
5498 * in the switch/case block.
5499 */
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005500 list_for_each_entry_safe(cf, cfbak, inlist, list) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005501 /* header length, data length, frame length. */
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005502 size_t hlen, dlen, dlen_sz, avail_room, flen;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005503
Frédéric Lécailleea604992020-12-24 13:01:37 +01005504 if (!room)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005505 break;
5506
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005507 switch (cf->type) {
5508 case QUIC_FT_CRYPTO:
5509 TRACE_PROTO(" New CRYPTO frame build (room, len)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005510 QUIC_EV_CONN_BCFRMS, qc, &room, len);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005511 /* Compute the length of this CRYPTO frame header */
5512 hlen = 1 + quic_int_getsize(cf->crypto.offset);
5513 /* Compute the data length of this CRyPTO frame. */
5514 dlen = max_stream_data_size(room, *len + hlen, cf->crypto.len);
5515 TRACE_PROTO(" CRYPTO data length (hlen, crypto.len, dlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005516 QUIC_EV_CONN_BCFRMS, qc, &hlen, &cf->crypto.len, &dlen);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005517 if (!dlen)
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02005518 continue;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005519
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005520 /* CRYPTO frame length. */
5521 flen = hlen + quic_int_getsize(dlen) + dlen;
5522 TRACE_PROTO(" CRYPTO frame length (flen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005523 QUIC_EV_CONN_BCFRMS, qc, &flen);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005524 /* Add the CRYPTO data length and its encoded length to the packet
5525 * length and the length of this length.
5526 */
5527 *len += flen;
5528 room -= flen;
5529 if (dlen == cf->crypto.len) {
5530 /* <cf> CRYPTO data have been consumed. */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01005531 LIST_DELETE(&cf->list);
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005532 LIST_APPEND(outlist, &cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005533 }
5534 else {
5535 struct quic_frame *new_cf;
5536
Frédéric Lécailleb9171912022-04-21 17:32:10 +02005537 new_cf = pool_zalloc(pool_head_quic_frame);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005538 if (!new_cf) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005539 TRACE_PROTO("No memory for new crypto frame", QUIC_EV_CONN_BCFRMS, qc);
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02005540 continue;
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005541 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005542
Frédéric Lécailleb9171912022-04-21 17:32:10 +02005543 LIST_INIT(&new_cf->reflist);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005544 new_cf->type = QUIC_FT_CRYPTO;
5545 new_cf->crypto.len = dlen;
5546 new_cf->crypto.offset = cf->crypto.offset;
5547 new_cf->crypto.qel = qel;
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005548 LIST_APPEND(outlist, &new_cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005549 /* Consume <dlen> bytes of the current frame. */
5550 cf->crypto.len -= dlen;
5551 cf->crypto.offset += dlen;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005552 }
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005553 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005554
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005555 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02005556 if (cf->flags & QUIC_FL_TX_FRAME_LOST) {
5557 struct eb64_node *node = NULL;
5558 struct qc_stream_desc *stream_desc = NULL;
5559 struct quic_stream *strm = &cf->stream;
5560
5561 /* As this frame has been already lost, ensure the stream is always
5562 * available or the range of this frame is not consumed before
5563 * resending it.
5564 */
5565 node = eb64_lookup(&qc->streams_by_id, strm->id);
5566 if (!node) {
5567 TRACE_PROTO("released stream", QUIC_EV_CONN_PRSAFRM, qc, strm);
5568 LIST_DELETE(&cf->list);
5569 pool_free(pool_head_quic_frame, cf);
5570 continue;
5571 }
5572
5573 stream_desc = eb64_entry(node, struct qc_stream_desc, by_id);
5574 if (strm->offset.key + strm->len <= stream_desc->ack_offset) {
5575 TRACE_PROTO("ignored frame frame in already acked range",
5576 QUIC_EV_CONN_PRSAFRM, qc, strm);
5577 LIST_DELETE(&cf->list);
5578 pool_free(pool_head_quic_frame, cf);
5579 continue;
5580 }
5581 else if (strm->offset.key < stream_desc->ack_offset) {
5582 strm->offset.key = stream_desc->ack_offset;
5583 TRACE_PROTO("updated partially acked frame",
5584 QUIC_EV_CONN_PRSAFRM, qc, strm);
5585 }
5586 }
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005587 /* Note that these frames are accepted in short packets only without
5588 * "Length" packet field. Here, <*len> is used only to compute the
5589 * sum of the lengths of the already built frames for this packet.
Frédéric Lécailled8b84432021-12-10 15:18:36 +01005590 *
5591 * Compute the length of this STREAM frame "header" made a all the field
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005592 * excepting the variable ones. Note that +1 is for the type of this frame.
5593 */
5594 hlen = 1 + quic_int_getsize(cf->stream.id) +
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02005595 ((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 +02005596 /* Compute the data length of this STREAM frame. */
5597 avail_room = room - hlen - *len;
Frédéric Lécailled8b84432021-12-10 15:18:36 +01005598 TRACE_PROTO(" New STREAM frame build (room, len)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005599 QUIC_EV_CONN_BCFRMS, qc, &room, len);
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02005600 if ((ssize_t)avail_room <= 0)
5601 continue;
5602
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005603 if (cf->type & QUIC_STREAM_FRAME_TYPE_LEN_BIT) {
5604 dlen = max_available_room(avail_room, &dlen_sz);
5605 if (dlen > cf->stream.len) {
5606 dlen = cf->stream.len;
5607 }
5608 dlen_sz = quic_int_getsize(dlen);
5609 flen = hlen + dlen_sz + dlen;
5610 }
5611 else {
5612 dlen = QUIC_MIN(avail_room, cf->stream.len);
5613 flen = hlen + dlen;
5614 }
5615 TRACE_PROTO(" STREAM data length (hlen, stream.len, dlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005616 QUIC_EV_CONN_BCFRMS, qc, &hlen, &cf->stream.len, &dlen);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005617 TRACE_PROTO(" STREAM frame length (flen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005618 QUIC_EV_CONN_BCFRMS, qc, &flen);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005619 /* Add the STREAM data length and its encoded length to the packet
5620 * length and the length of this length.
5621 */
5622 *len += flen;
5623 room -= flen;
5624 if (dlen == cf->stream.len) {
5625 /* <cf> STREAM data have been consumed. */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01005626 LIST_DELETE(&cf->list);
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005627 LIST_APPEND(outlist, &cf->list);
Amaury Denoyelle54445d02022-03-10 16:44:14 +01005628
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02005629 /* The MUX stream might be released at this
5630 * stage. This can most notably happen on
5631 * retransmission.
5632 */
5633 if (qc->mux_state == QC_MUX_READY &&
5634 !cf->stream.stream->release) {
5635 qcc_streams_sent_done(cf->stream.stream->ctx,
5636 cf->stream.len,
5637 cf->stream.offset.key);
5638 }
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005639 }
5640 else {
5641 struct quic_frame *new_cf;
Amaury Denoyelle642ab062022-02-23 10:54:42 +01005642 struct buffer cf_buf;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005643
5644 new_cf = pool_zalloc(pool_head_quic_frame);
5645 if (!new_cf) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005646 TRACE_PROTO("No memory for new STREAM frame", QUIC_EV_CONN_BCFRMS, qc);
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02005647 continue;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005648 }
5649
Frédéric Lécailleb9171912022-04-21 17:32:10 +02005650 LIST_INIT(&new_cf->reflist);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005651 new_cf->type = cf->type;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02005652 new_cf->stream.stream = cf->stream.stream;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02005653 new_cf->stream.buf = cf->stream.buf;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005654 new_cf->stream.id = cf->stream.id;
5655 if (cf->type & QUIC_STREAM_FRAME_TYPE_OFF_BIT)
5656 new_cf->stream.offset = cf->stream.offset;
5657 new_cf->stream.len = dlen;
5658 new_cf->type |= QUIC_STREAM_FRAME_TYPE_LEN_BIT;
5659 /* FIN bit reset */
5660 new_cf->type &= ~QUIC_STREAM_FRAME_TYPE_FIN_BIT;
5661 new_cf->stream.data = cf->stream.data;
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005662 LIST_APPEND(outlist, &new_cf->list);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005663 cf->type |= QUIC_STREAM_FRAME_TYPE_OFF_BIT;
5664 /* Consume <dlen> bytes of the current frame. */
Amaury Denoyelle642ab062022-02-23 10:54:42 +01005665 cf_buf = b_make(b_orig(cf->stream.buf),
5666 b_size(cf->stream.buf),
5667 (char *)cf->stream.data - b_orig(cf->stream.buf), 0);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005668 cf->stream.len -= dlen;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02005669 cf->stream.offset.key += dlen;
Amaury Denoyelle642ab062022-02-23 10:54:42 +01005670 cf->stream.data = (unsigned char *)b_peek(&cf_buf, dlen);
Amaury Denoyelle54445d02022-03-10 16:44:14 +01005671
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02005672 /* The MUX stream might be released at this
5673 * stage. This can most notably happen on
5674 * retransmission.
5675 */
5676 if (qc->mux_state == QC_MUX_READY &&
5677 !cf->stream.stream->release) {
5678 qcc_streams_sent_done(new_cf->stream.stream->ctx,
5679 new_cf->stream.len,
5680 new_cf->stream.offset.key);
5681 }
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005682 }
Amaury Denoyelle54445d02022-03-10 16:44:14 +01005683
5684 /* TODO the MUX is notified about the frame sending via
5685 * previous qcc_streams_sent_done call. However, the
5686 * sending can fail later, for example if the sendto
5687 * system call returns an error. As the MUX has been
5688 * notified, the transport layer is responsible to
5689 * bufferize and resent the announced data later.
5690 */
5691
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005692 break;
5693
5694 default:
5695 flen = qc_frm_len(cf);
5696 BUG_ON(!flen);
5697 if (flen > room)
5698 continue;
5699
5700 *len += flen;
5701 room -= flen;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01005702 LIST_DELETE(&cf->list);
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005703 LIST_APPEND(outlist, &cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005704 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005705 }
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02005706
5707 /* Successful status as soon as a frame could be built */
Frédéric Lécailleea604992020-12-24 13:01:37 +01005708 ret = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005709 }
5710
Frédéric Lécailleea604992020-12-24 13:01:37 +01005711 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005712}
5713
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005714/* This function builds a clear packet from <pkt> information (its type)
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02005715 * into a buffer with <pos> as position pointer and <qel> as QUIC TLS encryption
5716 * level for <conn> QUIC connection and <qel> as QUIC TLS encryption level,
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01005717 * filling the buffer with as much frames as possible from <frms> list of
5718 * prebuilt frames.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005719 * 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 +02005720 * 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 +02005721 * having returned from this function.
5722 * 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 +01005723 * number field in this packet. <pn_len> will also have the packet number
5724 * length as value.
5725 *
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005726 * Return 1 if succeeded (enough room to buile this packet), O if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005727 */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005728static int qc_do_build_pkt(unsigned char *pos, const unsigned char *end,
5729 size_t dglen, struct quic_tx_packet *pkt,
5730 int64_t pn, size_t *pn_len, unsigned char **buf_pn,
Frédéric Lécailleb0021452022-03-29 11:42:03 +02005731 int padding, int cc, int probe,
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01005732 struct quic_enc_level *qel, struct quic_conn *qc,
5733 struct list *frms)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005734{
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005735 unsigned char *beg;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01005736 size_t len, len_sz, len_frms, padding_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005737 struct quic_frame frm = { .type = QUIC_FT_CRYPTO, };
5738 struct quic_frame ack_frm = { .type = QUIC_FT_ACK, };
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01005739 struct quic_frame cc_frm = { . type = QUIC_FT_CONNECTION_CLOSE, };
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01005740 size_t ack_frm_len, head_len;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01005741 int64_t rx_largest_acked_pn;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01005742 int add_ping_frm;
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01005743 struct list frm_list = LIST_HEAD_INIT(frm_list);
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01005744 struct quic_frame *cf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005745
Frédéric Lécailleea604992020-12-24 13:01:37 +01005746 /* Length field value with CRYPTO frames if present. */
5747 len_frms = 0;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005748 beg = pos;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02005749 /* When not probing, and no immediate close is required, reduce the size of this
5750 * buffer to respect the congestion controller window.
5751 * This size will be limited if we have ack-eliciting frames to send from <frms>.
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01005752 */
Frédéric Lécailleb0021452022-03-29 11:42:03 +02005753 if (!probe && !LIST_ISEMPTY(frms) && !cc) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01005754 size_t path_room;
5755
Amaury Denoyelle17a74162021-12-21 14:45:39 +01005756 path_room = quic_path_prep_data(qc->path);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01005757 if (end - beg > path_room)
5758 end = beg + path_room;
5759 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005760
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005761 /* Ensure there is enough room for the TLS encryption tag and a zero token
5762 * length field if any.
5763 */
5764 if (end - pos < QUIC_TLS_TAG_LEN +
5765 (pkt->type == QUIC_PACKET_TYPE_INITIAL ? 1 : 0))
5766 goto no_room;
5767
5768 end -= QUIC_TLS_TAG_LEN;
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02005769 rx_largest_acked_pn = qel->pktns->rx.largest_acked_pn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005770 /* packet number length */
Frédéric Lécaille141982a2022-03-15 18:44:20 +01005771 *pn_len = quic_packet_number_length(pn, rx_largest_acked_pn);
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005772 /* Build the header */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005773 if ((pkt->type == QUIC_PACKET_TYPE_SHORT &&
Amaury Denoyelle17a74162021-12-21 14:45:39 +01005774 !quic_build_packet_short_header(&pos, end, *pn_len, qc, qel->tls_ctx.flags)) ||
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005775 (pkt->type != QUIC_PACKET_TYPE_SHORT &&
Amaury Denoyelle17a74162021-12-21 14:45:39 +01005776 !quic_build_packet_long_header(&pos, end, pkt->type, *pn_len, qc)))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005777 goto no_room;
5778
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005779 /* XXX FIXME XXX Encode the token length (0) for an Initial packet. */
5780 if (pkt->type == QUIC_PACKET_TYPE_INITIAL)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005781 *pos++ = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01005782 head_len = pos - beg;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005783 /* Build an ACK frame if required. */
5784 ack_frm_len = 0;
Frédéric Lécaille337108e2022-04-25 10:38:27 +02005785 if ((qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) && !qel->pktns->tx.pto_probe) {
Frédéric Lécailleb0021452022-03-29 11:42:03 +02005786 BUG_ON(eb_is_empty(&qel->pktns->rx.arngs.root));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005787 ack_frm.tx_ack.ack_delay = 0;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01005788 ack_frm.tx_ack.arngs = &qel->pktns->rx.arngs;
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005789 /* XXX BE CAREFUL XXX : here we reserved at least one byte for the
5790 * smallest frame (PING) and <*pn_len> more for the packet number. Note
5791 * that from here, we do not know if we will have to send a PING frame.
5792 * This will be decided after having computed the ack-eliciting frames
5793 * to be added to this packet.
5794 */
5795 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 +01005796 if (!ack_frm_len)
5797 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005798 }
5799
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005800 /* Length field value without the ack-eliciting frames. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005801 len = ack_frm_len + *pn_len;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01005802 len_frms = 0;
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01005803 if (!cc && !LIST_ISEMPTY(frms)) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01005804 ssize_t room = end - pos;
Frédéric Lécailleea604992020-12-24 13:01:37 +01005805
Frédéric Lécailleb823bb72022-03-31 20:26:18 +02005806 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, frms);
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005807 /* Initialize the length of the frames built below to <len>.
5808 * If any frame could be successfully built by qc_build_frms(),
5809 * we will have len_frms > len.
5810 */
5811 len_frms = len;
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005812 if (!qc_build_frms(&frm_list, frms,
5813 end - pos, &len_frms, pos - beg, qel, qc)) {
Frédéric Lécailleea604992020-12-24 13:01:37 +01005814 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005815 qc, NULL, NULL, &room);
Frédéric Lécaille834399c2022-04-25 17:17:07 +02005816 if (!ack_frm_len && !qel->pktns->tx.pto_probe)
5817 goto no_room;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01005818 }
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01005819 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005820
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01005821 /* Length (of the remaining data). Must not fail because, the buffer size
5822 * has been checked above. Note that we have reserved QUIC_TLS_TAG_LEN bytes
5823 * for the encryption tag. It must be taken into an account for the length
5824 * of this packet.
5825 */
5826 if (len_frms)
5827 len = len_frms + QUIC_TLS_TAG_LEN;
5828 else
5829 len += QUIC_TLS_TAG_LEN;
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01005830 /* CONNECTION_CLOSE frame */
5831 if (cc) {
5832 struct quic_connection_close *cc = &cc_frm.connection_close;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01005833
Amaury Denoyelle17a74162021-12-21 14:45:39 +01005834 cc->error_code = qc->err_code;
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01005835 len += qc_frm_len(&cc_frm);
5836 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005837 add_ping_frm = 0;
5838 padding_len = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01005839 len_sz = quic_int_getsize(len);
5840 /* Add this packet size to <dglen> */
5841 dglen += head_len + len_sz + len;
5842 if (padding && dglen < QUIC_INITIAL_PACKET_MINLEN) {
5843 /* This is a maximum padding size */
5844 padding_len = QUIC_INITIAL_PACKET_MINLEN - dglen;
5845 /* The length field value is of this packet is <len> + <padding_len>
5846 * the size of which may be greater than the initial computed size
Ilya Shipitsin5e87bcf2021-12-25 11:45:52 +05005847 * <len_sz>. So, let's deduce the difference between these to packet
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01005848 * sizes from <padding_len>.
5849 */
5850 padding_len -= quic_int_getsize(len + padding_len) - len_sz;
5851 len += padding_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005852 }
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01005853 else if (LIST_ISEMPTY(&frm_list) || len_frms == len) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005854 if (qel->pktns->tx.pto_probe) {
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005855 /* If we cannot send a frame, we send a PING frame. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005856 add_ping_frm = 1;
5857 len += 1;
5858 }
5859 /* 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 +01005860 if (!ack_frm_len && !cc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005861 len += padding_len = QUIC_PACKET_PN_MAXLEN - *pn_len;
5862 }
5863
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005864 if (pkt->type != QUIC_PACKET_TYPE_SHORT && !quic_enc_int(&pos, end, len))
5865 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005866
5867 /* Packet number field address. */
5868 *buf_pn = pos;
5869
5870 /* Packet number encoding. */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005871 if (!quic_packet_number_encode(&pos, end, pn, *pn_len))
5872 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005873
Frédéric Lécaille141982a2022-03-15 18:44:20 +01005874 if (ack_frm_len) {
5875 if (!qc_build_frm(&pos, end, &ack_frm, pkt, qc))
5876 goto no_room;
5877
5878 pkt->largest_acked_pn = quic_pktns_get_largest_acked_pn(qel->pktns);
Frédéric Lécailleb0021452022-03-29 11:42:03 +02005879 pkt->flags |= QUIC_FL_TX_PACKET_ACK;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01005880 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005881
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005882 /* Ack-eliciting frames */
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01005883 if (!LIST_ISEMPTY(&frm_list)) {
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01005884 list_for_each_entry(cf, &frm_list, list) {
Frédéric Lécailledcc74ff2022-03-18 17:49:29 +01005885 unsigned char *spos = pos;
5886
5887 if (!qc_build_frm(&spos, end, cf, pkt, qc)) {
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01005888 ssize_t room = end - pos;
5889 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005890 qc, NULL, NULL, &room);
Frédéric Lécailledcc74ff2022-03-18 17:49:29 +01005891 /* TODO: this should not have happened if qc_build_frms()
5892 * had correctly computed and sized the frames to be
5893 * added to this packet. Note that <cf> was added
5894 * from <frm_list> to <frms> list by qc_build_frms().
5895 */
5896 LIST_DELETE(&cf->list);
5897 LIST_INSERT(frms, &cf->list);
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005898 break;
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01005899 }
Frédéric Lécailledcc74ff2022-03-18 17:49:29 +01005900
5901 pos = spos;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01005902 quic_tx_packet_refinc(pkt);
5903 cf->pkt = pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005904 }
5905 }
5906
5907 /* Build a PING frame if needed. */
5908 if (add_ping_frm) {
5909 frm.type = QUIC_FT_PING;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01005910 if (!qc_build_frm(&pos, end, &frm, pkt, qc))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005911 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005912 }
5913
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01005914 /* Build a CONNECTION_CLOSE frame if needed. */
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02005915 if (cc) {
5916 if (!qc_build_frm(&pos, end, &cc_frm, pkt, qc))
5917 goto no_room;
5918
5919 pkt->flags |= QUIC_FL_TX_PACKET_CC;
5920 }
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01005921
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005922 /* Build a PADDING frame if needed. */
5923 if (padding_len) {
5924 frm.type = QUIC_FT_PADDING;
5925 frm.padding.len = padding_len;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01005926 if (!qc_build_frm(&pos, end, &frm, pkt, qc))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005927 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005928 }
5929
Frédéric Lécaille466e9da2021-12-29 12:04:13 +01005930 /* If this packet is ack-eliciting and we are probing let's
5931 * decrement the PTO probe counter.
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01005932 */
Frédéric Lécaille466e9da2021-12-29 12:04:13 +01005933 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING &&
5934 qel->pktns->tx.pto_probe)
5935 qel->pktns->tx.pto_probe--;
5936
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005937 pkt->len = pos - beg;
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01005938 LIST_SPLICE(&pkt->frms, &frm_list);
Frédéric Lécailleb823bb72022-03-31 20:26:18 +02005939 TRACE_PROTO("Packet ack-eliciting frames", QUIC_EV_CONN_HPKT, qc, pkt);
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005940
5941 return 1;
5942
5943 no_room:
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01005944 /* Replace the pre-built frames which could not be add to this packet */
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01005945 LIST_SPLICE(frms, &frm_list);
Frédéric Lécailled8b798d2022-04-25 17:48:40 +02005946 TRACE_PROTO("Remaining ack-eliciting frames", QUIC_EV_CONN_FRMLIST, qc, frms);
Frédéric Lécailleb823bb72022-03-31 20:26:18 +02005947
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005948 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005949}
5950
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02005951static inline void quic_tx_packet_init(struct quic_tx_packet *pkt, int type)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005952{
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02005953 pkt->type = type;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005954 pkt->len = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005955 pkt->in_flight_len = 0;
Frédéric Lécaille0371cd52021-12-13 12:30:54 +01005956 pkt->pn_node.key = (uint64_t)-1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005957 LIST_INIT(&pkt->frms);
Frédéric Lécaille2899fe22022-03-21 10:43:53 +01005958 pkt->time_sent = TICK_ETERNITY;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005959 pkt->next = NULL;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01005960 pkt->largest_acked_pn = -1;
Frédéric Lécaille2899fe22022-03-21 10:43:53 +01005961 pkt->flags = 0;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01005962 pkt->refcnt = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005963}
5964
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02005965/* Build a packet into <buf> packet buffer with <pkt_type> as packet
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01005966 * type for <qc> QUIC connection from <qel> encryption level from <frms> list
5967 * of prebuilt frames.
5968 *
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02005969 * Return -2 if the packet could not be allocated or encrypted for any reason,
5970 * -1 if there was not enough room to build a packet.
Frédéric Lécaillee9a974a2022-03-13 19:19:12 +01005971 * XXX NOTE XXX
5972 * If you provide provide qc_build_pkt() with a big enough buffer to build a packet as big as
5973 * possible (to fill an MTU), the unique reason why this function may fail is the congestion
5974 * control window limitation.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005975 */
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02005976static struct quic_tx_packet *qc_build_pkt(unsigned char **pos,
5977 const unsigned char *buf_end,
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01005978 struct quic_enc_level *qel, struct list *frms,
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01005979 struct quic_conn *qc, size_t dglen, int padding,
Frédéric Lécailleb0021452022-03-29 11:42:03 +02005980 int pkt_type, int probe, int cc, int *err)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005981{
5982 /* The pointer to the packet number field. */
5983 unsigned char *buf_pn;
5984 unsigned char *beg, *end, *payload;
5985 int64_t pn;
5986 size_t pn_len, payload_len, aad_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005987 struct quic_tls_ctx *tls_ctx;
5988 struct quic_tx_packet *pkt;
5989
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005990 TRACE_ENTER(QUIC_EV_CONN_HPKT, qc, NULL, qel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005991 *err = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005992 pkt = pool_alloc(pool_head_quic_tx_packet);
5993 if (!pkt) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005994 TRACE_DEVEL("Not enough memory for a new packet", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005995 *err = -2;
5996 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005997 }
5998
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02005999 quic_tx_packet_init(pkt, pkt_type);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006000 beg = *pos;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006001 pn_len = 0;
6002 buf_pn = NULL;
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006003
6004 pn = qel->pktns->tx.next_pn + 1;
6005 if (!qc_do_build_pkt(*pos, buf_end, dglen, pkt, pn, &pn_len, &buf_pn,
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006006 padding, cc, probe, qel, qc, frms)) {
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006007 *err = -1;
6008 goto err;
6009 }
6010
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006011 end = beg + pkt->len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006012 payload = buf_pn + pn_len;
6013 payload_len = end - payload;
6014 aad_len = payload - beg;
6015
6016 tls_ctx = &qel->tls_ctx;
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01006017 if (!quic_packet_encrypt(payload, payload_len, beg, aad_len, pn, tls_ctx, qc)) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006018 *err = -2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006019 goto err;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006020 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006021
6022 end += QUIC_TLS_TAG_LEN;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006023 pkt->len += QUIC_TLS_TAG_LEN;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006024 if (!quic_apply_header_protection(beg, buf_pn, pn_len,
6025 tls_ctx->tx.hp, tls_ctx->tx.hp_key)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006026 TRACE_DEVEL("Could not apply the header protection", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006027 *err = -2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006028 goto err;
6029 }
6030
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006031 /* Consume a packet number */
6032 qel->pktns->tx.next_pn++;
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +01006033 qc->tx.prep_bytes += pkt->len;
Frédéric Lécaille676b8492022-03-10 10:38:20 +01006034 if (qc->tx.prep_bytes >= 3 * qc->rx.bytes && !quic_peer_validated_addr(qc))
Frédéric Lécaillefc790062022-03-28 17:10:31 +02006035 qc->flags |= QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006036 /* Now that a correct packet is built, let us consume <*pos> buffer. */
6037 *pos = end;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006038 /* Attach the built packet to its tree. */
Frédéric Lécaillea7348f62021-08-03 16:50:14 +02006039 pkt->pn_node.key = pn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006040 /* Set the packet in fligth length for in flight packet only. */
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006041 if (pkt->flags & QUIC_FL_TX_PACKET_IN_FLIGHT) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006042 pkt->in_flight_len = pkt->len;
6043 qc->path->prep_in_flight += pkt->len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006044 }
Frédéric Lécaille47756802022-03-25 09:12:16 +01006045 /* Always reset this flags */
6046 qc->flags &= ~QUIC_FL_CONN_IMMEDIATE_CLOSE;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006047 if (pkt->flags & QUIC_FL_TX_PACKET_ACK) {
6048 qel->pktns->flags &= ~QUIC_FL_PKTNS_ACK_REQUIRED;
6049 qel->pktns->rx.nb_aepkts_since_last_ack = 0;
6050 }
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02006051
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006052 pkt->pktns = qel->pktns;
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006053 TRACE_LEAVE(QUIC_EV_CONN_HPKT, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006054
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006055 return pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006056
6057 err:
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01006058 /* TODO: what about the frames which have been built
6059 * for this packet.
6060 */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006061 free_quic_tx_packet(pkt);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006062 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006063 return NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006064}
6065
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006066
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01006067/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6068 * event subscriber <es> is not allowed to change from a previous call as long
6069 * as at least one event is still subscribed. The <event_type> must only be a
6070 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
6071 */
6072static int quic_conn_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
6073{
Willy Tarreau784b8682022-04-11 14:18:10 +02006074 struct qcc *qcc = conn->handle.qc->qcc;
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02006075
6076 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
6077 BUG_ON(qcc->subs && qcc->subs != es);
6078
6079 es->events |= event_type;
6080 qcc->subs = es;
6081
6082 if (event_type & SUB_RETRY_RECV)
Willy Tarreau784b8682022-04-11 14:18:10 +02006083 TRACE_DEVEL("subscribe(recv)", QUIC_EV_CONN_XPRTRECV, conn->handle.qc, qcc);
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02006084
6085 if (event_type & SUB_RETRY_SEND)
Willy Tarreau784b8682022-04-11 14:18:10 +02006086 TRACE_DEVEL("subscribe(send)", QUIC_EV_CONN_XPRTSEND, conn->handle.qc, qcc);
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02006087
6088 return 0;
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01006089}
6090
6091/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6092 * The <es> pointer is not allowed to differ from the one passed to the
6093 * subscribe() call. It always returns zero.
6094 */
6095static int quic_conn_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
6096{
6097 return conn_unsubscribe(conn, xprt_ctx, event_type, es);
6098}
6099
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01006100/* Store in <xprt_ctx> the context attached to <conn>.
6101 * Returns always 0.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006102 */
6103static int qc_conn_init(struct connection *conn, void **xprt_ctx)
6104{
Amaury Denoyelle7ca7c842021-12-22 18:20:38 +01006105 struct quic_conn *qc = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006106
6107 TRACE_ENTER(QUIC_EV_CONN_NEW, conn);
6108
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01006109 /* do not store the context if already set */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006110 if (*xprt_ctx)
6111 goto out;
6112
Willy Tarreau784b8682022-04-11 14:18:10 +02006113 *xprt_ctx = conn->handle.qc->xprt_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006114
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006115 out:
Frédéric Lécaillefde2a982021-12-27 15:12:09 +01006116 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006117
6118 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006119}
6120
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02006121/* Start the QUIC transport layer */
6122static int qc_xprt_start(struct connection *conn, void *ctx)
6123{
6124 struct quic_conn *qc;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02006125 struct ssl_sock_ctx *qctx = ctx;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02006126
Willy Tarreau784b8682022-04-11 14:18:10 +02006127 qc = conn->handle.qc;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01006128 if (qcc_install_app_ops(qc->qcc, qc->app_ops)) {
6129 TRACE_PROTO("Cannot install app layer", QUIC_EV_CONN_LPKT, qc);
Amaury Denoyelle5d774de2022-04-14 14:59:35 +02006130 /* prepare a CONNECTION_CLOSE frame */
6131 qc->err_code = QC_ERR_APPLICATION_ERROR;
6132 qc->flags |= QUIC_FL_CONN_IMMEDIATE_CLOSE;
Amaury Denoyelle05d4ae62022-04-13 17:40:26 +02006133 return -1;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01006134 }
6135
6136 /* mux-quic can now be considered ready. */
6137 qc->mux_state = QC_MUX_READY;
6138
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02006139 tasklet_wakeup(qctx->wait_event.tasklet);
6140 return 1;
6141}
6142
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02006143static struct ssl_sock_ctx *qc_get_ssl_sock_ctx(struct connection *conn)
6144{
Willy Tarreau784b8682022-04-11 14:18:10 +02006145 if (!conn || conn->xprt != xprt_get(XPRT_QUIC) || !conn->handle.qc || !conn->xprt_ctx)
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02006146 return NULL;
6147
Willy Tarreau784b8682022-04-11 14:18:10 +02006148 return conn->handle.qc->xprt_ctx;
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02006149}
6150
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006151/* transport-layer operations for QUIC connections. */
6152static struct xprt_ops ssl_quic = {
Amaury Denoyelle414cac52021-09-22 11:14:37 +02006153 .close = quic_close,
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01006154 .subscribe = quic_conn_subscribe,
6155 .unsubscribe = quic_conn_unsubscribe,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006156 .init = qc_conn_init,
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02006157 .start = qc_xprt_start,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006158 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
6159 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01006160 .get_alpn = ssl_sock_get_alpn,
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02006161 .get_ssl_sock_ctx = qc_get_ssl_sock_ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006162 .name = "QUIC",
6163};
6164
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006165static void __quic_conn_init(void)
6166{
6167 ha_quic_meth = BIO_meth_new(0x666, "ha QUIC methods");
6168 xprt_register(XPRT_QUIC, &ssl_quic);
6169}
Willy Tarreau79367f92022-04-25 19:18:24 +02006170INITCALL0(STG_REGISTER, __quic_conn_init);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006171
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006172static void __quic_conn_deinit(void)
6173{
6174 BIO_meth_free(ha_quic_meth);
6175}
Willy Tarreau79367f92022-04-25 19:18:24 +02006176REGISTER_POST_DEINIT(__quic_conn_deinit);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006177
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01006178/* Read all the QUIC packets found in <buf> from QUIC connection with <owner>
6179 * as owner calling <func> function.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05006180 * Return the number of bytes read if succeeded, -1 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006181 */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006182struct task *quic_lstnr_dghdlr(struct task *t, void *ctx, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006183{
6184 unsigned char *pos;
6185 const unsigned char *end;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006186 struct quic_dghdlr *dghdlr = ctx;
6187 struct quic_dgram *dgram;
6188 int first_pkt = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006189
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01006190 while ((dgram = MT_LIST_POP(&dghdlr->dgrams, typeof(dgram), mt_list))) {
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01006191 pos = dgram->buf;
6192 end = pos + dgram->len;
6193 do {
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01006194 struct quic_rx_packet *pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006195
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01006196 pkt = pool_zalloc(pool_head_quic_rx_packet);
6197 if (!pkt)
6198 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006199
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01006200 quic_rx_packet_refinc(pkt);
Frédéric Lécaille4646cf32022-04-27 15:09:53 +02006201 qc_lstnr_pkt_rcv(pos, end, pkt, first_pkt, dgram);
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01006202 first_pkt = 0;
6203 pos += pkt->len;
6204 quic_rx_packet_refdec(pkt);
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01006205 } while (pos < end);
6206
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01006207 /* Increasing the received bytes counter by the UDP datagram length
6208 * if this datagram could be associated to a connection.
6209 */
6210 if (dgram->qc)
6211 dgram->qc->rx.bytes += dgram->len;
Frédéric Lécaille841bf5e2022-02-02 09:41:27 +01006212
6213 /* Mark this datagram as consumed */
6214 HA_ATOMIC_STORE(&dgram->buf, NULL);
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01006215 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006216
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006217 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006218
6219 err:
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006220 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006221}
6222
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01006223/* Retreive the DCID from a QUIC datagram or packet with <buf> as first octet.
6224 * Returns 1 if succeeded, 0 if not.
6225 */
6226static int quic_get_dgram_dcid(unsigned char *buf, const unsigned char *end,
6227 unsigned char **dcid, size_t *dcid_len)
6228{
6229 int long_header;
6230 size_t minlen, skip;
6231
6232 if (!(*buf & QUIC_PACKET_FIXED_BIT))
6233 goto err;
6234
6235 long_header = *buf & QUIC_PACKET_LONG_HEADER_BIT;
6236 minlen = long_header ?
6237 QUIC_LONG_PACKET_MINLEN : QUIC_SHORT_PACKET_MINLEN + QUIC_HAP_CID_LEN;
6238 skip = long_header ? QUIC_LONG_PACKET_DCID_OFF : QUIC_SHORT_PACKET_DCID_OFF;
Frédéric Lécaillebfa32362022-02-02 10:44:36 +01006239 if (end - buf <= minlen)
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01006240 goto err;
6241
6242 buf += skip;
6243 *dcid_len = long_header ? *buf++ : QUIC_HAP_CID_LEN;
6244 if (*dcid_len > QUIC_CID_MAXLEN || end - buf <= *dcid_len)
6245 goto err;
6246
6247 *dcid = buf;
6248
6249 return 1;
6250
6251 err:
6252 TRACE_PROTO("wrong datagram", QUIC_EV_CONN_LPKT);
6253 return 0;
6254}
6255
Frédéric Lécaille37ae5052022-01-27 11:31:50 +01006256/* Retrieve the DCID from the datagram found in <buf> and deliver it to the
6257 * correct datagram handler.
6258 * Return 1 if a correct datagram could be found, 0 if not.
6259 */
6260int quic_lstnr_dgram_dispatch(unsigned char *buf, size_t len, void *owner,
6261 struct sockaddr_storage *saddr,
6262 struct quic_dgram *new_dgram, struct list *dgrams)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006263{
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01006264 struct quic_dgram *dgram;
6265 unsigned char *dcid;
6266 size_t dcid_len;
Amaury Denoyellef6dcbce2022-02-08 15:05:58 +01006267 int cid_tid;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01006268
6269 if (!len || !quic_get_dgram_dcid(buf, buf + len, &dcid, &dcid_len))
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006270 goto err;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01006271
Frédéric Lécaille37ae5052022-01-27 11:31:50 +01006272 dgram = new_dgram ? new_dgram : pool_alloc(pool_head_quic_dgram);
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01006273 if (!dgram)
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006274 goto err;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01006275
Amaury Denoyellef6dcbce2022-02-08 15:05:58 +01006276 cid_tid = quic_get_cid_tid(dcid);
6277
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006278 /* All the members must be initialized! */
6279 dgram->owner = owner;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01006280 dgram->buf = buf;
6281 dgram->len = len;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006282 dgram->dcid = dcid;
6283 dgram->dcid_len = dcid_len;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01006284 dgram->saddr = *saddr;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006285 dgram->qc = NULL;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01006286 LIST_APPEND(dgrams, &dgram->list);
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01006287 MT_LIST_APPEND(&quic_dghdlrs[cid_tid].dgrams, &dgram->mt_list);
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01006288
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01006289 tasklet_wakeup(quic_dghdlrs[cid_tid].task);
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01006290
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006291 return 1;
6292
6293 err:
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01006294 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006295}
6296
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02006297/* Notify the MUX layer if alive about an imminent close of <qc>. */
6298void qc_notify_close(struct quic_conn *qc)
6299{
6300 if (qc->flags & QUIC_FL_CONN_NOTIFY_CLOSE)
6301 return;
6302
6303 qc->flags |= QUIC_FL_CONN_NOTIFY_CLOSE;
6304
6305 /* wake up the MUX */
6306 if (qc->mux_state == QC_MUX_READY && qc->conn->mux->wake)
6307 qc->conn->mux->wake(qc->conn);
6308}
6309
Amaury Denoyelle118b2cb2021-11-25 16:05:16 +01006310/* Function to automatically activate QUIC traces on stdout.
6311 * Activated via the compilation flag -DENABLE_QUIC_STDOUT_TRACES.
6312 * Main use for now is in the docker image for QUIC interop testing.
6313 */
6314static void quic_init_stdout_traces(void)
6315{
6316#ifdef ENABLE_QUIC_STDOUT_TRACES
6317 trace_quic.sink = sink_find("stdout");
6318 trace_quic.level = TRACE_LEVEL_DEVELOPER;
Amaury Denoyelle118b2cb2021-11-25 16:05:16 +01006319 trace_quic.state = TRACE_STATE_RUNNING;
6320#endif
6321}
6322INITCALL0(STG_INIT, quic_init_stdout_traces);
6323
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006324/*
6325 * Local variables:
6326 * c-indent-level: 8
6327 * c-basic-offset: 8
6328 * End:
6329 */