blob: 7f331d1692b0e0b672a2e553486f388fe2bc8bd8 [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>
15#include <fcntl.h>
16#include <stdio.h>
17#include <stdlib.h>
18
19#include <sys/socket.h>
20#include <sys/stat.h>
21#include <sys/types.h>
22
23#include <netinet/tcp.h>
24
Amaury Denoyelleeb01f592021-10-07 16:44:05 +020025#include <import/ebmbtree.h>
26
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010027#include <haproxy/buf-t.h>
28#include <haproxy/compat.h>
29#include <haproxy/api.h>
30#include <haproxy/debug.h>
31#include <haproxy/tools.h>
32#include <haproxy/ticks.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010033
34#include <haproxy/connection.h>
35#include <haproxy/fd.h>
36#include <haproxy/freq_ctr.h>
37#include <haproxy/global.h>
Frédéric Lécailledfbae762021-02-18 09:59:01 +010038#include <haproxy/h3.h>
Amaury Denoyelle154bc7f2021-11-12 16:09:54 +010039#include <haproxy/hq_interop.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010040#include <haproxy/log.h>
Frédéric Lécailledfbae762021-02-18 09:59:01 +010041#include <haproxy/mux_quic.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010042#include <haproxy/pipe.h>
43#include <haproxy/proxy.h>
44#include <haproxy/quic_cc.h>
45#include <haproxy/quic_frame.h>
46#include <haproxy/quic_loss.h>
Amaury Denoyellecfa2d562022-01-19 16:01:05 +010047#include <haproxy/quic_sock.h>
Amaury Denoyelle0cc02a32022-04-19 17:21:11 +020048#include <haproxy/quic_stream.h>
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +020049#include <haproxy/cbuf.h>
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +010050#include <haproxy/proto_quic.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010051#include <haproxy/quic_tls.h>
Amaury Denoyelle118b2cb2021-11-25 16:05:16 +010052#include <haproxy/sink.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010053#include <haproxy/ssl_sock.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010054#include <haproxy/task.h>
55#include <haproxy/trace.h>
56#include <haproxy/xprt_quic.h>
57
Amaury Denoyellea22d8602021-11-10 15:17:56 +010058/* list of supported QUIC versions by this implementation */
59static int quic_supported_version[] = {
60 0x00000001,
Frédéric Lécaille56d3e1b2021-11-19 14:32:52 +010061 0xff00001d, /* draft-29 */
Amaury Denoyellea22d8602021-11-10 15:17:56 +010062
63 /* placeholder, do not add entry after this */
64 0x0
65};
66
Frédéric Lécaille48fc74a2021-09-03 16:42:19 +020067/* This is the values of some QUIC transport parameters when absent.
68 * Should be used to initialize any transport parameters (local or remote)
69 * before updating them with customized values.
70 */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010071struct quic_transport_params quic_dflt_transport_params = {
Frédéric Lécaille46be7e92021-10-22 15:04:27 +020072 .max_udp_payload_size = QUIC_PACKET_MAXLEN,
Frédéric Lécaille785c9c92021-05-17 16:42:21 +020073 .ack_delay_exponent = QUIC_DFLT_ACK_DELAY_COMPONENT,
74 .max_ack_delay = QUIC_DFLT_MAX_ACK_DELAY,
Frédéric Lécaille48fc74a2021-09-03 16:42:19 +020075 .active_connection_id_limit = QUIC_ACTIVE_CONNECTION_ID_LIMIT,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010076};
77
78/* trace source and events */
79static void quic_trace(enum trace_level level, uint64_t mask, \
80 const struct trace_source *src,
81 const struct ist where, const struct ist func,
82 const void *a1, const void *a2, const void *a3, const void *a4);
83
84static const struct trace_event quic_trace_events[] = {
85 { .mask = QUIC_EV_CONN_NEW, .name = "new_conn", .desc = "new QUIC connection" },
86 { .mask = QUIC_EV_CONN_INIT, .name = "new_conn_init", .desc = "new QUIC connection initialization" },
87 { .mask = QUIC_EV_CONN_ISEC, .name = "init_secs", .desc = "initial secrets derivation" },
88 { .mask = QUIC_EV_CONN_RSEC, .name = "read_secs", .desc = "read secrets derivation" },
89 { .mask = QUIC_EV_CONN_WSEC, .name = "write_secs", .desc = "write secrets derivation" },
90 { .mask = QUIC_EV_CONN_LPKT, .name = "lstnr_packet", .desc = "new listener received packet" },
91 { .mask = QUIC_EV_CONN_SPKT, .name = "srv_packet", .desc = "new server received packet" },
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +050092 { .mask = QUIC_EV_CONN_ENCPKT, .name = "enc_hdshk_pkt", .desc = "handhshake packet encryption" },
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010093 { .mask = QUIC_EV_CONN_HPKT, .name = "hdshk_pkt", .desc = "handhshake packet building" },
94 { .mask = QUIC_EV_CONN_PAPKT, .name = "phdshk_apkt", .desc = "post handhshake application packet preparation" },
95 { .mask = QUIC_EV_CONN_PAPKTS, .name = "phdshk_apkts", .desc = "post handhshake application packets preparation" },
Frédéric Lécaille00e24002022-02-18 17:13:45 +010096 { .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 +010097 { .mask = QUIC_EV_CONN_RMHP, .name = "rm_hp", .desc = "Remove header protection" },
98 { .mask = QUIC_EV_CONN_PRSHPKT, .name = "parse_hpkt", .desc = "parse handshake packet" },
99 { .mask = QUIC_EV_CONN_PRSAPKT, .name = "parse_apkt", .desc = "parse application packet" },
100 { .mask = QUIC_EV_CONN_PRSFRM, .name = "parse_frm", .desc = "parse frame" },
101 { .mask = QUIC_EV_CONN_PRSAFRM, .name = "parse_ack_frm", .desc = "parse ACK frame" },
102 { .mask = QUIC_EV_CONN_BFRM, .name = "build_frm", .desc = "build frame" },
103 { .mask = QUIC_EV_CONN_PHPKTS, .name = "phdshk_pkts", .desc = "handhshake packets preparation" },
104 { .mask = QUIC_EV_CONN_TRMHP, .name = "rm_hp_try", .desc = "header protection removing try" },
105 { .mask = QUIC_EV_CONN_ELRMHP, .name = "el_rm_hp", .desc = "handshake enc. level header protection removing" },
106 { .mask = QUIC_EV_CONN_ELRXPKTS, .name = "el_treat_rx_pkts", .desc = "handshake enc. level rx packets treatment" },
107 { .mask = QUIC_EV_CONN_SSLDATA, .name = "ssl_provide_data", .desc = "CRYPTO data provision to TLS stack" },
108 { .mask = QUIC_EV_CONN_RXCDATA, .name = "el_treat_rx_cfrms",.desc = "enc. level RX CRYPTO frames processing"},
109 { .mask = QUIC_EV_CONN_ADDDATA, .name = "add_hdshk_data", .desc = "TLS stack ->add_handshake_data() call"},
110 { .mask = QUIC_EV_CONN_FFLIGHT, .name = "flush_flight", .desc = "TLS stack ->flush_flight() call"},
111 { .mask = QUIC_EV_CONN_SSLALERT, .name = "send_alert", .desc = "TLS stack ->send_alert() call"},
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100112 { .mask = QUIC_EV_CONN_RTTUPDT, .name = "rtt_updt", .desc = "RTT sampling" },
113 { .mask = QUIC_EV_CONN_SPPKTS, .name = "sppkts", .desc = "send prepared packets" },
114 { .mask = QUIC_EV_CONN_PKTLOSS, .name = "pktloss", .desc = "detect packet loss" },
115 { .mask = QUIC_EV_CONN_STIMER, .name = "stimer", .desc = "set timer" },
116 { .mask = QUIC_EV_CONN_PTIMER, .name = "ptimer", .desc = "process timer" },
117 { .mask = QUIC_EV_CONN_SPTO, .name = "spto", .desc = "set PTO" },
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +0100118 { .mask = QUIC_EV_CONN_BCFRMS, .name = "bcfrms", .desc = "build CRYPTO data frames" },
Frédéric Lécaille513b4f22021-09-20 15:23:17 +0200119 { .mask = QUIC_EV_CONN_XPRTSEND, .name = "xprt_send", .desc = "sending XRPT subscription" },
120 { .mask = QUIC_EV_CONN_XPRTRECV, .name = "xprt_recv", .desc = "receiving XRPT subscription" },
Frédéric Lécailleba85acd2022-01-11 14:43:50 +0100121 { .mask = QUIC_EV_CONN_FREED, .name = "conn_freed", .desc = "releasing conn. memory" },
122 { .mask = QUIC_EV_CONN_CLOSE, .name = "conn_close", .desc = "closing conn." },
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100123 { .mask = QUIC_EV_CONN_ACKSTRM, .name = "ack_strm", .desc = "STREAM ack."},
Frédéric Lécailleb823bb72022-03-31 20:26:18 +0200124 { .mask = QUIC_EV_CONN_FRMLIST, .name = "frm_list", .desc = "frame list"},
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100125 { /* end */ }
126};
127
128static const struct name_desc quic_trace_lockon_args[4] = {
129 /* arg1 */ { /* already used by the connection */ },
130 /* arg2 */ { .name="quic", .desc="QUIC transport" },
131 /* arg3 */ { },
132 /* arg4 */ { }
133};
134
135static const struct name_desc quic_trace_decoding[] = {
136#define QUIC_VERB_CLEAN 1
137 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
138 { /* end */ }
139};
140
141
142struct trace_source trace_quic = {
143 .name = IST("quic"),
144 .desc = "QUIC xprt",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100145 .arg_def = TRC_ARG1_QCON, /* TRACE()'s first argument is always a quic_conn */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100146 .default_cb = quic_trace,
147 .known_events = quic_trace_events,
148 .lockon_args = quic_trace_lockon_args,
149 .decoding = quic_trace_decoding,
150 .report_events = ~0, /* report everything by default */
151};
152
153#define TRACE_SOURCE &trace_quic
154INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
155
156static BIO_METHOD *ha_quic_meth;
157
Frédéric Lécailledbe25af2021-08-04 15:27:37 +0200158DECLARE_POOL(pool_head_quic_tx_ring, "quic_tx_ring_pool", QUIC_TX_RING_BUFSZ);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +0100159DECLARE_POOL(pool_head_quic_conn_rxbuf, "quic_conn_rxbuf", QUIC_CONN_RX_BUFSZ);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100160DECLARE_STATIC_POOL(pool_head_quic_conn_ctx,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +0200161 "quic_conn_ctx_pool", sizeof(struct ssl_sock_ctx));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100162DECLARE_STATIC_POOL(pool_head_quic_conn, "quic_conn", sizeof(struct quic_conn));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100163DECLARE_POOL(pool_head_quic_connection_id,
164 "quic_connnection_id_pool", sizeof(struct quic_connection_id));
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +0100165DECLARE_POOL(pool_head_quic_dgram, "quic_dgram", sizeof(struct quic_dgram));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100166DECLARE_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 +0100167DECLARE_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 +0100168DECLARE_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 +0100169DECLARE_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 +0100170DECLARE_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 +0200171DECLARE_POOL(pool_head_quic_frame, "quic_frame_pool", sizeof(struct quic_frame));
Frédéric Lécaille8090b512020-11-30 16:19:22 +0100172DECLARE_STATIC_POOL(pool_head_quic_arng, "quic_arng_pool", sizeof(struct quic_arng_node));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100173
Frédéric Lécaille9445abc2021-08-04 10:49:51 +0200174static 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 +0100175 struct quic_enc_level *qel, struct list *frms,
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +0100176 struct quic_conn *qc, size_t dglen, int pkt_type,
Frédéric Lécailleb0021452022-03-29 11:42:03 +0200177 int padding, int probe, int cc, int *err);
Frédéric Lécaille00e24002022-02-18 17:13:45 +0100178static 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 +0100179static void qc_idle_timer_do_rearm(struct quic_conn *qc);
Frédéric Lécaille530601c2022-03-10 15:11:57 +0100180static void qc_idle_timer_rearm(struct quic_conn *qc, int read);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100181
Frédéric Lécaillef63921f2020-12-18 09:48:20 +0100182/* Only for debug purpose */
183struct enc_debug_info {
184 unsigned char *payload;
185 size_t payload_len;
186 unsigned char *aad;
187 size_t aad_len;
188 uint64_t pn;
189};
190
191/* Initializes a enc_debug_info struct (only for debug purpose) */
192static inline void enc_debug_info_init(struct enc_debug_info *edi,
193 unsigned char *payload, size_t payload_len,
194 unsigned char *aad, size_t aad_len, uint64_t pn)
195{
196 edi->payload = payload;
197 edi->payload_len = payload_len;
198 edi->aad = aad;
199 edi->aad_len = aad_len;
200 edi->pn = pn;
201}
202
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100203/* Trace callback for QUIC.
204 * These traces always expect that arg1, if non-null, is of type connection.
205 */
206static void quic_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
207 const struct ist where, const struct ist func,
208 const void *a1, const void *a2, const void *a3, const void *a4)
209{
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100210 const struct quic_conn *qc = a1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100211
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100212 if (qc) {
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100213 const struct quic_tls_ctx *tls_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100214
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100215 chunk_appendf(&trace_buf, " : qc@%p", qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100216 if ((mask & QUIC_EV_CONN_INIT) && qc) {
217 chunk_appendf(&trace_buf, "\n odcid");
218 quic_cid_dump(&trace_buf, &qc->odcid);
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100219 chunk_appendf(&trace_buf, "\n dcid");
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100220 quic_cid_dump(&trace_buf, &qc->dcid);
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100221 chunk_appendf(&trace_buf, "\n scid");
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100222 quic_cid_dump(&trace_buf, &qc->scid);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100223 }
224
225 if (mask & QUIC_EV_CONN_ADDDATA) {
226 const enum ssl_encryption_level_t *level = a2;
227 const size_t *len = a3;
228
229 if (level) {
230 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
231
232 chunk_appendf(&trace_buf, " el=%c(%d)", quic_enc_level_char(lvl), lvl);
233 }
234 if (len)
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100235 chunk_appendf(&trace_buf, " len=%llu", (unsigned long long)*len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100236 }
237 if ((mask & QUIC_EV_CONN_ISEC) && qc) {
238 /* Initial read & write secrets. */
239 enum quic_tls_enc_level level = QUIC_TLS_ENC_LEVEL_INITIAL;
240 const unsigned char *rx_sec = a2;
241 const unsigned char *tx_sec = a3;
242
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100243 tls_ctx = &qc->els[level].tls_ctx;
244 if (tls_ctx->flags & QUIC_FL_TLS_SECRETS_SET) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100245 chunk_appendf(&trace_buf, "\n RX el=%c", quic_enc_level_char(level));
246 if (rx_sec)
247 quic_tls_secret_hexdump(&trace_buf, rx_sec, 32);
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100248 quic_tls_keys_hexdump(&trace_buf, &tls_ctx->rx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100249 chunk_appendf(&trace_buf, "\n TX el=%c", quic_enc_level_char(level));
250 if (tx_sec)
251 quic_tls_secret_hexdump(&trace_buf, tx_sec, 32);
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100252 quic_tls_keys_hexdump(&trace_buf, &tls_ctx->tx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100253 }
254 }
255 if (mask & (QUIC_EV_CONN_RSEC|QUIC_EV_CONN_RWSEC)) {
256 const enum ssl_encryption_level_t *level = a2;
257 const unsigned char *secret = a3;
258 const size_t *secret_len = a4;
259
260 if (level) {
261 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
262
263 chunk_appendf(&trace_buf, "\n RX el=%c", quic_enc_level_char(lvl));
264 if (secret && secret_len)
265 quic_tls_secret_hexdump(&trace_buf, secret, *secret_len);
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100266 tls_ctx = &qc->els[lvl].tls_ctx;
267 if (tls_ctx->flags & QUIC_FL_TLS_SECRETS_SET)
268 quic_tls_keys_hexdump(&trace_buf, &tls_ctx->rx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100269 }
270 }
271
272 if (mask & (QUIC_EV_CONN_WSEC|QUIC_EV_CONN_RWSEC)) {
273 const enum ssl_encryption_level_t *level = a2;
274 const unsigned char *secret = a3;
275 const size_t *secret_len = a4;
276
277 if (level) {
278 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
279
280 chunk_appendf(&trace_buf, "\n TX el=%c", quic_enc_level_char(lvl));
281 if (secret && secret_len)
282 quic_tls_secret_hexdump(&trace_buf, secret, *secret_len);
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100283 tls_ctx = &qc->els[lvl].tls_ctx;
284 if (tls_ctx->flags & QUIC_FL_TLS_SECRETS_SET)
285 quic_tls_keys_hexdump(&trace_buf, &tls_ctx->tx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100286 }
287
288 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100289
Frédéric Lécailleb823bb72022-03-31 20:26:18 +0200290 if (mask & QUIC_EV_CONN_FRMLIST) {
291 const struct list *l = a2;
292
293 if (l) {
294 const struct quic_frame *frm;
295 list_for_each_entry(frm, l, list)
296 chunk_frm_appendf(&trace_buf, frm);
297 }
298 }
299
Frédéric Lécaille133e8a72020-12-18 09:33:27 +0100300 if (mask & (QUIC_EV_CONN_HPKT|QUIC_EV_CONN_PAPKT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100301 const struct quic_tx_packet *pkt = a2;
302 const struct quic_enc_level *qel = a3;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100303 const ssize_t *room = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100304
305 if (qel) {
Amaury Denoyelle4fd53d72021-12-21 14:28:26 +0100306 const struct quic_pktns *pktns = qc->pktns;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100307 chunk_appendf(&trace_buf, " qel=%c cwnd=%llu ppif=%lld pif=%llu "
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100308 "if=%llu pp=%u",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100309 quic_enc_level_char_from_qel(qel, qc),
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100310 (unsigned long long)qc->path->cwnd,
311 (unsigned long long)qc->path->prep_in_flight,
312 (unsigned long long)qc->path->in_flight,
313 (unsigned long long)pktns->tx.in_flight,
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100314 pktns->tx.pto_probe);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100315 }
316 if (pkt) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +0200317 const struct quic_frame *frm;
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100318 if (pkt->pn_node.key != (uint64_t)-1)
319 chunk_appendf(&trace_buf, " pn=%llu",(ull)pkt->pn_node.key);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100320 list_for_each_entry(frm, &pkt->frms, list)
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100321 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaille8b6ea172022-01-17 10:51:43 +0100322 chunk_appendf(&trace_buf, " rx.bytes=%llu tx.bytes=%llu",
323 (unsigned long long)qc->rx.bytes,
324 (unsigned long long)qc->tx.bytes);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100325 }
326
327 if (room) {
328 chunk_appendf(&trace_buf, " room=%lld", (long long)*room);
329 chunk_appendf(&trace_buf, " dcid.len=%llu scid.len=%llu",
330 (unsigned long long)qc->dcid.len, (unsigned long long)qc->scid.len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100331 }
332 }
333
Frédéric Lécaille00e24002022-02-18 17:13:45 +0100334 if (mask & QUIC_EV_CONN_IO_CB) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100335 const enum quic_handshake_state *state = a2;
336 const int *err = a3;
337
338 if (state)
339 chunk_appendf(&trace_buf, " state=%s", quic_hdshk_state_str(*state));
340 if (err)
341 chunk_appendf(&trace_buf, " err=%s", ssl_error_str(*err));
342 }
343
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +0100344 if (mask & (QUIC_EV_CONN_TRMHP|QUIC_EV_CONN_ELRMHP|QUIC_EV_CONN_SPKT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100345 const struct quic_rx_packet *pkt = a2;
346 const unsigned long *pktlen = a3;
347 const SSL *ssl = a4;
348
349 if (pkt) {
Frédéric Lécaille3dfd4c42022-04-05 15:29:14 +0200350 chunk_appendf(&trace_buf, " pkt@%p", pkt);
351 if (pkt->type == QUIC_PACKET_TYPE_SHORT && pkt->data)
352 chunk_appendf(&trace_buf, " kp=%d",
353 !!(*pkt->data & QUIC_PACKET_KEY_PHASE_BIT));
354 chunk_appendf(&trace_buf, " el=%c",
355 quic_packet_type_enc_level_char(pkt->type));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100356 if (pkt->pnl)
357 chunk_appendf(&trace_buf, " pnl=%u pn=%llu", pkt->pnl,
358 (unsigned long long)pkt->pn);
359 if (pkt->token_len)
360 chunk_appendf(&trace_buf, " toklen=%llu",
361 (unsigned long long)pkt->token_len);
362 if (pkt->aad_len)
363 chunk_appendf(&trace_buf, " aadlen=%llu",
364 (unsigned long long)pkt->aad_len);
365 chunk_appendf(&trace_buf, " flags=0x%x len=%llu",
366 pkt->flags, (unsigned long long)pkt->len);
367 }
368 if (pktlen)
369 chunk_appendf(&trace_buf, " (%ld)", *pktlen);
370 if (ssl) {
371 enum ssl_encryption_level_t level = SSL_quic_read_level(ssl);
372 chunk_appendf(&trace_buf, " el=%c",
373 quic_enc_level_char(ssl_to_quic_enc_level(level)));
374 }
375 }
376
377 if (mask & (QUIC_EV_CONN_ELRXPKTS|QUIC_EV_CONN_PRSHPKT|QUIC_EV_CONN_SSLDATA)) {
378 const struct quic_rx_packet *pkt = a2;
379 const struct quic_rx_crypto_frm *cf = a3;
380 const SSL *ssl = a4;
381
382 if (pkt)
383 chunk_appendf(&trace_buf, " pkt@%p el=%c pn=%llu", pkt,
384 quic_packet_type_enc_level_char(pkt->type),
385 (unsigned long long)pkt->pn);
386 if (cf)
387 chunk_appendf(&trace_buf, " cfoff=%llu cflen=%llu",
388 (unsigned long long)cf->offset_node.key,
389 (unsigned long long)cf->len);
390 if (ssl) {
391 enum ssl_encryption_level_t level = SSL_quic_read_level(ssl);
Frédéric Lécaille57e6e9e2021-09-23 18:10:56 +0200392 chunk_appendf(&trace_buf, " rel=%c",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100393 quic_enc_level_char(ssl_to_quic_enc_level(level)));
394 }
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100395
396 if (qc->err_code)
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100397 chunk_appendf(&trace_buf, " err_code=0x%llx", (ull)qc->err_code);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100398 }
399
400 if (mask & (QUIC_EV_CONN_PRSFRM|QUIC_EV_CONN_BFRM)) {
401 const struct quic_frame *frm = a2;
402
403 if (frm)
404 chunk_appendf(&trace_buf, " %s", quic_frame_type_string(frm->type));
405 }
406
407 if (mask & QUIC_EV_CONN_PHPKTS) {
408 const struct quic_enc_level *qel = a2;
409
410 if (qel) {
Frédéric Lécailledd51da52021-12-29 15:36:25 +0100411 const struct quic_pktns *pktns = qel->pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100412 chunk_appendf(&trace_buf,
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100413 " 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 +0100414 quic_enc_level_char_from_qel(qel, qc),
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200415 quic_hdshk_state_str(qc->state),
Frédéric Lécaille205e4f32022-03-28 17:38:27 +0200416 !!(qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED),
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100417 (unsigned long long)qc->path->cwnd,
418 (unsigned long long)qc->path->prep_in_flight,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100419 (unsigned long long)qc->path->in_flight,
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100420 (unsigned long long)pktns->tx.in_flight,
421 pktns->tx.pto_probe);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100422 }
423 }
424
Frédéric Lécaillef63921f2020-12-18 09:48:20 +0100425 if (mask & QUIC_EV_CONN_ENCPKT) {
426 const struct enc_debug_info *edi = a2;
427
428 if (edi)
429 chunk_appendf(&trace_buf,
430 " payload=@%p payload_len=%llu"
431 " aad=@%p aad_len=%llu pn=%llu",
432 edi->payload, (unsigned long long)edi->payload_len,
433 edi->aad, (unsigned long long)edi->aad_len,
434 (unsigned long long)edi->pn);
435 }
436
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100437 if (mask & QUIC_EV_CONN_RMHP) {
438 const struct quic_rx_packet *pkt = a2;
439
440 if (pkt) {
441 const int *ret = a3;
442
443 chunk_appendf(&trace_buf, " pkt@%p", pkt);
444 if (ret && *ret)
445 chunk_appendf(&trace_buf, " pnl=%u pn=%llu",
446 pkt->pnl, (unsigned long long)pkt->pn);
447 }
448 }
449
450 if (mask & QUIC_EV_CONN_PRSAFRM) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +0200451 const struct quic_frame *frm = a2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100452 const unsigned long *val1 = a3;
453 const unsigned long *val2 = a4;
454
455 if (frm)
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100456 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100457 if (val1)
458 chunk_appendf(&trace_buf, " %lu", *val1);
459 if (val2)
460 chunk_appendf(&trace_buf, "..%lu", *val2);
461 }
462
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100463 if (mask & QUIC_EV_CONN_ACKSTRM) {
464 const struct quic_stream *s = a2;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +0200465 const struct qc_stream_desc *stream = a3;
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100466
467 if (s)
468 chunk_appendf(&trace_buf, " off=%llu len=%llu", (ull)s->offset.key, (ull)s->len);
Amaury Denoyelle7272cd72022-03-29 15:15:54 +0200469 if (stream)
470 chunk_appendf(&trace_buf, " ack_offset=%llu", (ull)stream->ack_offset);
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100471 }
472
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100473 if (mask & QUIC_EV_CONN_RTTUPDT) {
474 const unsigned int *rtt_sample = a2;
475 const unsigned int *ack_delay = a3;
476 const struct quic_loss *ql = a4;
477
478 if (rtt_sample)
479 chunk_appendf(&trace_buf, " rtt_sample=%ums", *rtt_sample);
480 if (ack_delay)
481 chunk_appendf(&trace_buf, " ack_delay=%ums", *ack_delay);
482 if (ql)
483 chunk_appendf(&trace_buf,
484 " srtt=%ums rttvar=%ums min_rtt=%ums",
485 ql->srtt >> 3, ql->rtt_var >> 2, ql->rtt_min);
486 }
487 if (mask & QUIC_EV_CONN_CC) {
488 const struct quic_cc_event *ev = a2;
489 const struct quic_cc *cc = a3;
490
491 if (a2)
492 quic_cc_event_trace(&trace_buf, ev);
493 if (a3)
494 quic_cc_state_trace(&trace_buf, cc);
495 }
496
497 if (mask & QUIC_EV_CONN_PKTLOSS) {
498 const struct quic_pktns *pktns = a2;
499 const struct list *lost_pkts = a3;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100500
501 if (pktns) {
502 chunk_appendf(&trace_buf, " pktns=%s",
503 pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
504 pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H");
505 if (pktns->tx.loss_time)
506 chunk_appendf(&trace_buf, " loss_time=%dms",
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100507 TICKS_TO_MS(tick_remain(now_ms, pktns->tx.loss_time)));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100508 }
509 if (lost_pkts && !LIST_ISEMPTY(lost_pkts)) {
510 struct quic_tx_packet *pkt;
511
512 chunk_appendf(&trace_buf, " lost_pkts:");
513 list_for_each_entry(pkt, lost_pkts, list)
514 chunk_appendf(&trace_buf, " %lu", (unsigned long)pkt->pn_node.key);
515 }
516 }
517
518 if (mask & (QUIC_EV_CONN_STIMER|QUIC_EV_CONN_PTIMER|QUIC_EV_CONN_SPTO)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100519 const struct quic_pktns *pktns = a2;
520 const int *duration = a3;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100521 const uint64_t *ifae_pkts = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100522
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100523 if (ifae_pkts)
524 chunk_appendf(&trace_buf, " ifae_pkts=%llu",
525 (unsigned long long)*ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100526 if (pktns) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100527 chunk_appendf(&trace_buf, " pktns=%s pp=%d",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100528 pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100529 pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H",
530 pktns->tx.pto_probe);
Frédéric Lécaille22cfd832021-12-27 17:42:51 +0100531 if (mask & (QUIC_EV_CONN_STIMER|QUIC_EV_CONN_SPTO)) {
532 if (pktns->tx.in_flight)
533 chunk_appendf(&trace_buf, " if=%llu", (ull)pktns->tx.in_flight);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100534 if (pktns->tx.loss_time)
535 chunk_appendf(&trace_buf, " loss_time=%dms",
536 TICKS_TO_MS(pktns->tx.loss_time - now_ms));
537 }
538 if (mask & QUIC_EV_CONN_SPTO) {
539 if (pktns->tx.time_of_last_eliciting)
540 chunk_appendf(&trace_buf, " tole=%dms",
541 TICKS_TO_MS(pktns->tx.time_of_last_eliciting - now_ms));
542 if (duration)
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100543 chunk_appendf(&trace_buf, " dur=%dms", TICKS_TO_MS(*duration));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100544 }
545 }
546
Frédéric Lécaille03235d72022-03-30 14:36:40 +0200547 if (!(mask & (QUIC_EV_CONN_SPTO|QUIC_EV_CONN_PTIMER)) && qc->timer_task) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100548 chunk_appendf(&trace_buf,
549 " expire=%dms", TICKS_TO_MS(qc->timer - now_ms));
550 }
551 }
552
553 if (mask & QUIC_EV_CONN_SPPKTS) {
554 const struct quic_tx_packet *pkt = a2;
555
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100556 chunk_appendf(&trace_buf, " cwnd=%llu ppif=%llu pif=%llu",
557 (unsigned long long)qc->path->cwnd,
558 (unsigned long long)qc->path->prep_in_flight,
559 (unsigned long long)qc->path->in_flight);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100560 if (pkt) {
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100561 chunk_appendf(&trace_buf, " pn=%lu(%s) iflen=%llu",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100562 (unsigned long)pkt->pn_node.key,
563 pkt->pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
564 pkt->pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H",
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100565 (unsigned long long)pkt->in_flight_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100566 }
567 }
Frédéric Lécaille47c433f2020-12-10 17:03:11 +0100568
569 if (mask & QUIC_EV_CONN_SSLALERT) {
570 const uint8_t *alert = a2;
571 const enum ssl_encryption_level_t *level = a3;
572
573 if (alert)
574 chunk_appendf(&trace_buf, " alert=0x%02x", *alert);
575 if (level)
576 chunk_appendf(&trace_buf, " el=%c",
577 quic_enc_level_char(ssl_to_quic_enc_level(*level)));
578 }
Frédéric Lécailleea604992020-12-24 13:01:37 +0100579
580 if (mask & QUIC_EV_CONN_BCFRMS) {
581 const size_t *sz1 = a2;
582 const size_t *sz2 = a3;
583 const size_t *sz3 = a4;
584
585 if (sz1)
586 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz1);
587 if (sz2)
588 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz2);
589 if (sz3)
590 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz3);
591 }
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100592
593 if (mask & QUIC_EV_CONN_PSTRM) {
594 const struct quic_frame *frm = a2;
Frédéric Lécaille577fe482021-01-11 15:10:06 +0100595
Frédéric Lécailled8b84432021-12-10 15:18:36 +0100596 if (frm)
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100597 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100598 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100599 }
600 if (mask & QUIC_EV_CONN_LPKT) {
601 const struct quic_rx_packet *pkt = a2;
Frédéric Lécaille865b0782021-09-23 07:33:20 +0200602 const uint64_t *len = a3;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100603
Frédéric Lécaille8678eb02021-12-16 18:03:52 +0100604 if (pkt) {
605 chunk_appendf(&trace_buf, " pkt@%p type=0x%02x %s",
606 pkt, pkt->type, qc_pkt_long(pkt) ? "long" : "short");
607 if (pkt->pn_node.key != (uint64_t)-1)
608 chunk_appendf(&trace_buf, " pn=%llu", pkt->pn_node.key);
609 }
610
Frédéric Lécaille865b0782021-09-23 07:33:20 +0200611 if (len)
612 chunk_appendf(&trace_buf, " len=%llu", (ull)*len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100613 }
614
615}
616
617/* Returns 1 if the peer has validated <qc> QUIC connection address, 0 if not. */
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100618static inline int quic_peer_validated_addr(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100619{
Frédéric Lécaille67f47d02021-08-19 15:19:09 +0200620 struct quic_pktns *hdshk_pktns, *app_pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100621
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +0100622 if (!qc_is_listener(qc))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100623 return 1;
624
Frédéric Lécaille67f47d02021-08-19 15:19:09 +0200625 hdshk_pktns = qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns;
626 app_pktns = qc->els[QUIC_TLS_ENC_LEVEL_APP].pktns;
Frédéric Lécaille205e4f32022-03-28 17:38:27 +0200627 if ((hdshk_pktns->flags & QUIC_FL_PKTNS_PKT_RECEIVED) ||
628 (app_pktns->flags & QUIC_FL_PKTNS_PKT_RECEIVED) ||
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200629 qc->state >= QUIC_HS_ST_COMPLETE)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100630 return 1;
631
632 return 0;
633}
634
635/* Set the timer attached to the QUIC connection with <ctx> as I/O handler and used for
636 * both loss detection and PTO and schedule the task assiated to this timer if needed.
637 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100638static inline void qc_set_timer(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100639{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100640 struct quic_pktns *pktns;
641 unsigned int pto;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +0200642 int handshake_complete;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100643
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100644 TRACE_ENTER(QUIC_EV_CONN_STIMER, qc,
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100645 NULL, NULL, &qc->path->ifae_pkts);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100646
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100647 pktns = quic_loss_pktns(qc);
648 if (tick_isset(pktns->tx.loss_time)) {
649 qc->timer = pktns->tx.loss_time;
650 goto out;
651 }
652
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +0100653 /* anti-amplification: the timer must be
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100654 * cancelled for a server which reached the anti-amplification limit.
655 */
Frédéric Lécaille078634d2022-01-04 16:59:42 +0100656 if (!quic_peer_validated_addr(qc) &&
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200657 (qc->flags & QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100658 TRACE_PROTO("anti-amplification reached", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +0100659 qc->timer = TICK_ETERNITY;
660 goto out;
661 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100662
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100663 if (!qc->path->ifae_pkts && quic_peer_validated_addr(qc)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100664 TRACE_PROTO("timer cancellation", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100665 /* Timer cancellation. */
666 qc->timer = TICK_ETERNITY;
667 goto out;
668 }
669
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200670 handshake_complete = qc->state >= QUIC_HS_ST_COMPLETE;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +0200671 pktns = quic_pto_pktns(qc, handshake_complete, &pto);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100672 if (tick_isset(pto))
673 qc->timer = pto;
674 out:
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100675 if (qc->timer_task && qc->timer != TICK_ETERNITY) {
Frédéric Lécailleaaf1f192022-03-22 15:37:41 +0100676 if (tick_is_expired(qc->timer, now_ms)) {
677 TRACE_PROTO("wakeup asap timer task", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100678 task_wakeup(qc->timer_task, TASK_WOKEN_MSG);
Frédéric Lécailleaaf1f192022-03-22 15:37:41 +0100679 }
680 else {
681 TRACE_PROTO("timer task scheduling", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100682 task_schedule(qc->timer_task, qc->timer);
Frédéric Lécailleaaf1f192022-03-22 15:37:41 +0100683 }
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100684 }
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100685 TRACE_LEAVE(QUIC_EV_CONN_STIMER, qc, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100686}
687
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100688/* Derive new keys and ivs required for Key Update feature for <qc> QUIC
689 * connection.
690 * Return 1 if succeeded, 0 if not.
691 */
692static int quic_tls_key_update(struct quic_conn *qc)
693{
694 struct quic_tls_ctx *tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
695 struct quic_tls_secrets *rx, *tx;
696 struct quic_tls_kp *nxt_rx = &qc->ku.nxt_rx;
697 struct quic_tls_kp *nxt_tx = &qc->ku.nxt_tx;
698
699 tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
700 rx = &tls_ctx->rx;
701 tx = &tls_ctx->tx;
702 nxt_rx = &qc->ku.nxt_rx;
703 nxt_tx = &qc->ku.nxt_tx;
704
705 /* Prepare new RX secrets */
706 if (!quic_tls_sec_update(rx->md, nxt_rx->secret, nxt_rx->secretlen,
707 rx->secret, rx->secretlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100708 TRACE_DEVEL("New RX secret update failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100709 return 0;
710 }
711
712 if (!quic_tls_derive_keys(rx->aead, NULL, rx->md,
713 nxt_rx->key, nxt_rx->keylen,
714 nxt_rx->iv, nxt_rx->ivlen, NULL, 0,
715 nxt_rx->secret, nxt_rx->secretlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100716 TRACE_DEVEL("New RX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100717 return 0;
718 }
719
720 /* Prepare new TX secrets */
721 if (!quic_tls_sec_update(tx->md, nxt_tx->secret, nxt_tx->secretlen,
722 tx->secret, tx->secretlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100723 TRACE_DEVEL("New TX secret update failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100724 return 0;
725 }
726
727 if (!quic_tls_derive_keys(tx->aead, NULL, tx->md,
728 nxt_tx->key, nxt_tx->keylen,
729 nxt_tx->iv, nxt_tx->ivlen, NULL, 0,
730 nxt_tx->secret, nxt_tx->secretlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100731 TRACE_DEVEL("New TX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100732 return 0;
733 }
734
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200735 if (nxt_rx->ctx) {
736 EVP_CIPHER_CTX_free(nxt_rx->ctx);
737 nxt_rx->ctx = NULL;
738 }
739
740 if (!quic_tls_rx_ctx_init(&nxt_rx->ctx, tls_ctx->rx.aead, nxt_rx->key)) {
741 TRACE_DEVEL("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
742 return 0;
743 }
744
745 if (nxt_tx->ctx) {
746 EVP_CIPHER_CTX_free(nxt_tx->ctx);
747 nxt_tx->ctx = NULL;
748 }
749
750 if (!quic_tls_rx_ctx_init(&nxt_tx->ctx, tls_ctx->tx.aead, nxt_tx->key)) {
751 TRACE_DEVEL("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
752 return 0;
753 }
754
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100755 return 1;
756}
757
758/* Rotate the Key Update information for <qc> QUIC connection.
759 * Must be used after having updated them.
760 * Always succeeds.
761 */
762static void quic_tls_rotate_keys(struct quic_conn *qc)
763{
764 struct quic_tls_ctx *tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
765 unsigned char *curr_secret, *curr_iv, *curr_key;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200766 EVP_CIPHER_CTX *curr_ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100767
768 /* Rotate the RX secrets */
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200769 curr_ctx = tls_ctx->rx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100770 curr_secret = tls_ctx->rx.secret;
771 curr_iv = tls_ctx->rx.iv;
772 curr_key = tls_ctx->rx.key;
773
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200774 tls_ctx->rx.ctx = qc->ku.nxt_rx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100775 tls_ctx->rx.secret = qc->ku.nxt_rx.secret;
776 tls_ctx->rx.iv = qc->ku.nxt_rx.iv;
777 tls_ctx->rx.key = qc->ku.nxt_rx.key;
778
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200779 qc->ku.nxt_rx.ctx = qc->ku.prv_rx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100780 qc->ku.nxt_rx.secret = qc->ku.prv_rx.secret;
781 qc->ku.nxt_rx.iv = qc->ku.prv_rx.iv;
782 qc->ku.nxt_rx.key = qc->ku.prv_rx.key;
783
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200784 qc->ku.prv_rx.ctx = curr_ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100785 qc->ku.prv_rx.secret = curr_secret;
786 qc->ku.prv_rx.iv = curr_iv;
787 qc->ku.prv_rx.key = curr_key;
788 qc->ku.prv_rx.pn = tls_ctx->rx.pn;
789
790 /* Update the TX secrets */
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200791 curr_ctx = tls_ctx->tx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100792 curr_secret = tls_ctx->tx.secret;
793 curr_iv = tls_ctx->tx.iv;
794 curr_key = tls_ctx->tx.key;
795
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200796 tls_ctx->tx.ctx = qc->ku.nxt_tx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100797 tls_ctx->tx.secret = qc->ku.nxt_tx.secret;
798 tls_ctx->tx.iv = qc->ku.nxt_tx.iv;
799 tls_ctx->tx.key = qc->ku.nxt_tx.key;
800
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200801 qc->ku.nxt_tx.ctx = curr_ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100802 qc->ku.nxt_tx.secret = curr_secret;
803 qc->ku.nxt_tx.iv = curr_iv;
804 qc->ku.nxt_tx.key = curr_key;
805}
806
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100807#ifndef OPENSSL_IS_BORINGSSL
808int ha_quic_set_encryption_secrets(SSL *ssl, enum ssl_encryption_level_t level,
809 const uint8_t *read_secret,
810 const uint8_t *write_secret, size_t secret_len)
811{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100812 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
813 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 +0100814 const SSL_CIPHER *cipher = SSL_get_current_cipher(ssl);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100815 struct quic_tls_secrets *rx, *tx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100816
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100817 TRACE_ENTER(QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100818 BUG_ON(secret_len > QUIC_TLS_SECRET_LEN);
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200819 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100820 TRACE_PROTO("CC required", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillef44d19e2022-03-26 12:22:41 +0100821 goto no_secret;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100822 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100823
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100824 if (!quic_tls_ctx_keys_alloc(tls_ctx)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100825 TRACE_DEVEL("keys allocation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100826 goto err;
827 }
828
829 rx = &tls_ctx->rx;
830 tx = &tls_ctx->tx;
831
832 rx->aead = tx->aead = tls_aead(cipher);
833 rx->md = tx->md = tls_md(cipher);
834 rx->hp = tx->hp = tls_hp(cipher);
835
836 if (!quic_tls_derive_keys(rx->aead, rx->hp, rx->md, rx->key, rx->keylen,
837 rx->iv, rx->ivlen, rx->hp_key, sizeof rx->hp_key,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100838 read_secret, secret_len)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100839 TRACE_DEVEL("RX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100840 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100841 }
842
Frédéric Lécaillef4605742022-04-05 10:28:29 +0200843 if (!quic_tls_rx_ctx_init(&rx->ctx, rx->aead, rx->key)) {
844 TRACE_DEVEL("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
845 goto err;
846 }
847
Frédéric Lécaille61b851d2022-01-28 21:38:45 +0100848 /* Enqueue this connection asap if we could derive O-RTT secrets as
849 * listener. Note that a listener derives only RX secrets for this
850 * level.
851 */
852 if (qc_is_listener(qc) && level == ssl_encryption_early_data)
853 quic_accept_push_qc(qc);
Frédéric Lécaille4015cbb2021-12-14 19:29:34 +0100854
855 if (!write_secret)
Frédéric Lécailleee4508d2022-02-14 17:54:04 +0100856 goto out;
Frédéric Lécaille4015cbb2021-12-14 19:29:34 +0100857
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100858 if (!quic_tls_derive_keys(tx->aead, tx->hp, tx->md, tx->key, tx->keylen,
859 tx->iv, tx->ivlen, tx->hp_key, sizeof tx->hp_key,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100860 write_secret, secret_len)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100861 TRACE_DEVEL("TX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100862 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100863 }
864
Frédéric Lécaillef4605742022-04-05 10:28:29 +0200865 if (!quic_tls_tx_ctx_init(&tx->ctx, tx->aead, tx->key)) {
866 TRACE_DEVEL("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
867 goto err;
868 }
869
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100870 if (level == ssl_encryption_application) {
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100871 struct quic_tls_kp *prv_rx = &qc->ku.prv_rx;
872 struct quic_tls_kp *nxt_rx = &qc->ku.nxt_rx;
873 struct quic_tls_kp *nxt_tx = &qc->ku.nxt_tx;
874
Frédéric Lécaille96fd1632022-04-01 11:21:47 +0200875 /* These secrets must be stored only for Application encryption level */
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100876 if (!(rx->secret = pool_alloc(pool_head_quic_tls_secret)) ||
877 !(tx->secret = pool_alloc(pool_head_quic_tls_secret))) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100878 TRACE_DEVEL("Could not allocate secrete keys", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100879 goto err;
880 }
881
882 memcpy(rx->secret, read_secret, secret_len);
883 rx->secretlen = secret_len;
884 memcpy(tx->secret, write_secret, secret_len);
885 tx->secretlen = secret_len;
886 /* Initialize all the secret keys lengths */
887 prv_rx->secretlen = nxt_rx->secretlen = nxt_tx->secretlen = secret_len;
888 /* Prepare the next key update */
889 if (!quic_tls_key_update(qc))
890 goto err;
891 }
Frédéric Lécailleee4508d2022-02-14 17:54:04 +0100892
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100893 out:
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100894 tls_ctx->flags |= QUIC_FL_TLS_SECRETS_SET;
Frédéric Lécaillef44d19e2022-03-26 12:22:41 +0100895 no_secret:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100896 TRACE_LEAVE(QUIC_EV_CONN_RWSEC, qc, &level);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100897 return 1;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100898
899 err:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100900 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100901 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100902}
903#else
904/* ->set_read_secret callback to derive the RX secrets at <level> encryption
905 * level.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +0500906 * Returns 1 if succeeded, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100907 */
908int ha_set_rsec(SSL *ssl, enum ssl_encryption_level_t level,
909 const SSL_CIPHER *cipher,
910 const uint8_t *secret, size_t secret_len)
911{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100912 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100913 struct quic_tls_ctx *tls_ctx =
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100914 &qc->els[ssl_to_quic_enc_level(level)].tls_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100915
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100916 TRACE_ENTER(QUIC_EV_CONN_RSEC, qc);
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200917 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100918 TRACE_PROTO("CC required", QUIC_EV_CONN_RSEC, qc);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100919 goto out;
920 }
921
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100922 tls_ctx->rx.aead = tls_aead(cipher);
923 tls_ctx->rx.md = tls_md(cipher);
924 tls_ctx->rx.hp = tls_hp(cipher);
925
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100926 if (!(ctx->rx.key = pool_alloc(pool_head_quic_tls_key)))
927 goto err;
928
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100929 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 +0100930 tls_ctx->rx.key, tls_ctx->rx.keylen,
931 tls_ctx->rx.iv, tls_ctx->rx.ivlen,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100932 tls_ctx->rx.hp_key, sizeof tls_ctx->rx.hp_key,
933 secret, secret_len)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100934 TRACE_DEVEL("RX key derivation failed", QUIC_EV_CONN_RSEC, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100935 goto err;
936 }
937
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100938 if (!qc_is_listener(qc) && level == ssl_encryption_application) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100939 const unsigned char *buf;
940 size_t buflen;
941
942 SSL_get_peer_quic_transport_params(ssl, &buf, &buflen);
943 if (!buflen)
944 goto err;
945
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100946 if (!quic_transport_params_store(qc, 1, buf, buf + buflen))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100947 goto err;
948 }
949
950 tls_ctx->rx.flags |= QUIC_FL_TLS_SECRETS_SET;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100951 out:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100952 TRACE_LEAVE(QUIC_EV_CONN_RSEC, qc, &level, secret, &secret_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100953
954 return 1;
955
956 err:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100957 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RSEC, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100958 return 0;
959}
960
961/* ->set_write_secret callback to derive the TX secrets at <level>
962 * encryption level.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +0500963 * Returns 1 if succeeded, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100964 */
965int ha_set_wsec(SSL *ssl, enum ssl_encryption_level_t level,
966 const SSL_CIPHER *cipher,
967 const uint8_t *secret, size_t secret_len)
968{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100969 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
970 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 +0100971
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100972 TRACE_ENTER(QUIC_EV_CONN_WSEC, qc);
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200973 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100974 TRACE_PROTO("CC required", QUIC_EV_CONN_WSEC, qc);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100975 goto out;
976 }
977
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100978 if (!(ctx->tx.key = pool_alloc(pool_head_quic_tls_key)))
979 goto err;
980
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100981 tls_ctx->tx.aead = tls_aead(cipher);
982 tls_ctx->tx.md = tls_md(cipher);
983 tls_ctx->tx.hp = tls_hp(cipher);
984
985 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 +0100986 tls_ctx->tx.key, tls_ctx->tx.keylen,
987 tls_ctx->tx.iv, tls_ctx->tx.ivlen,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100988 tls_ctx->tx.hp_key, sizeof tls_ctx->tx.hp_key,
989 secret, secret_len)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100990 TRACE_DEVEL("TX key derivation failed", QUIC_EV_CONN_WSEC, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100991 goto err;
992 }
993
994 tls_ctx->tx.flags |= QUIC_FL_TLS_SECRETS_SET;
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100995 TRACE_LEAVE(QUIC_EV_CONN_WSEC, qc, &level, secret, &secret_len);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100996 out:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100997 return 1;
998
999 err:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001000 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_WSEC, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001001 return 0;
1002}
1003#endif
1004
1005/* This function copies the CRYPTO data provided by the TLS stack found at <data>
1006 * with <len> as size in CRYPTO buffers dedicated to store the information about
1007 * outgoing CRYPTO frames so that to be able to replay the CRYPTO data streams.
1008 * It fails only if it could not managed to allocate enough CRYPTO buffers to
1009 * store all the data.
1010 * Note that CRYPTO data may exist at any encryption level except at 0-RTT.
1011 */
1012static int quic_crypto_data_cpy(struct quic_enc_level *qel,
1013 const unsigned char *data, size_t len)
1014{
1015 struct quic_crypto_buf **qcb;
1016 /* The remaining byte to store in CRYPTO buffers. */
1017 size_t cf_offset, cf_len, *nb_buf;
1018 unsigned char *pos;
1019
1020 nb_buf = &qel->tx.crypto.nb_buf;
1021 qcb = &qel->tx.crypto.bufs[*nb_buf - 1];
1022 cf_offset = (*nb_buf - 1) * QUIC_CRYPTO_BUF_SZ + (*qcb)->sz;
1023 cf_len = len;
1024
1025 while (len) {
1026 size_t to_copy, room;
1027
1028 pos = (*qcb)->data + (*qcb)->sz;
1029 room = QUIC_CRYPTO_BUF_SZ - (*qcb)->sz;
1030 to_copy = len > room ? room : len;
1031 if (to_copy) {
1032 memcpy(pos, data, to_copy);
1033 /* Increment the total size of this CRYPTO buffers by <to_copy>. */
1034 qel->tx.crypto.sz += to_copy;
1035 (*qcb)->sz += to_copy;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001036 len -= to_copy;
1037 data += to_copy;
1038 }
1039 else {
1040 struct quic_crypto_buf **tmp;
1041
1042 tmp = realloc(qel->tx.crypto.bufs,
1043 (*nb_buf + 1) * sizeof *qel->tx.crypto.bufs);
1044 if (tmp) {
1045 qel->tx.crypto.bufs = tmp;
1046 qcb = &qel->tx.crypto.bufs[*nb_buf];
1047 *qcb = pool_alloc(pool_head_quic_crypto_buf);
1048 if (!*qcb)
1049 return 0;
1050
1051 (*qcb)->sz = 0;
1052 ++*nb_buf;
1053 }
1054 else {
1055 break;
1056 }
1057 }
1058 }
1059
1060 /* Allocate a TX CRYPTO frame only if all the CRYPTO data
1061 * have been buffered.
1062 */
1063 if (!len) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02001064 struct quic_frame *frm;
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +01001065 struct quic_frame *found = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001066
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +01001067 /* There is at most one CRYPTO frame in this packet number
1068 * space. Let's look for it.
1069 */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001070 list_for_each_entry(frm, &qel->pktns->tx.frms, list) {
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +01001071 if (frm->type != QUIC_FT_CRYPTO)
1072 continue;
1073
1074 /* Found */
1075 found = frm;
1076 break;
1077 }
1078
1079 if (found) {
1080 found->crypto.len += cf_len;
1081 }
1082 else {
Frédéric Lécailled4ecf942022-01-04 23:15:40 +01001083 frm = pool_alloc(pool_head_quic_frame);
1084 if (!frm)
1085 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001086
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
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001432/* Remove from <stream> the acknowledged frames.
Amaury Denoyelle95e50fb2022-03-29 14:50:25 +02001433 *
1434 * Returns 1 if at least one frame was removed else 0.
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001435 */
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001436static int quic_stream_try_to_consume(struct quic_conn *qc,
1437 struct qc_stream_desc *stream)
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001438{
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001439 int ret;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001440 struct eb64_node *frm_node;
1441
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001442 ret = 0;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001443 frm_node = eb64_first(&stream->acked_frms);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001444 while (frm_node) {
1445 struct quic_stream *strm;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001446 struct quic_frame *frm;
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001447 size_t offset, len;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001448
1449 strm = eb64_entry(&frm_node->node, struct quic_stream, offset);
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001450 offset = strm->offset.key;
1451 len = strm->len;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001452
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001453 if (offset > stream->ack_offset)
1454 break;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001455
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001456 if (qc_stream_desc_ack(&stream, offset, len)) {
Amaury Denoyelle7586bef2022-04-25 14:26:54 +02001457 /* cf. next comment : frame may be freed at this stage. */
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001458 TRACE_PROTO("stream consumed", QUIC_EV_CONN_ACKSTRM,
Amaury Denoyelle7586bef2022-04-25 14:26:54 +02001459 qc, stream ? strm : NULL, stream);
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001460 ret = 1;
1461 }
1462
Amaury Denoyelle7586bef2022-04-25 14:26:54 +02001463 /* If stream is NULL after qc_stream_desc_ack(), it means frame
1464 * has been freed. with the stream frames tree. Nothing to do
1465 * anymore in here.
1466 */
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001467 if (!stream)
1468 return 1;
1469
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001470 frm_node = eb64_next(frm_node);
1471 eb64_delete(&strm->offset);
Amaury Denoyelle7b4c9d62022-02-24 10:50:58 +01001472
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001473 frm = container_of(strm, struct quic_frame, stream);
1474 LIST_DELETE(&frm->list);
1475 quic_tx_packet_refdec(frm->pkt);
1476 pool_free(pool_head_quic_frame, frm);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001477 }
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001478
1479 return ret;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001480}
1481
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001482/* Treat <frm> frame whose packet it is attached to has just been acknowledged. */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001483static inline void qc_treat_acked_tx_frm(struct quic_conn *qc,
1484 struct quic_frame *frm)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001485{
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001486 int stream_acked;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001487
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001488 TRACE_PROTO("Removing frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001489 stream_acked = 0;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001490 switch (frm->type) {
1491 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
1492 {
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001493 struct quic_stream *strm_frm = &frm->stream;
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001494 struct eb64_node *node = NULL;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001495 struct qc_stream_desc *stream = NULL;
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001496 const size_t offset = strm_frm->offset.key;
1497 const size_t len = strm_frm->len;
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001498
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001499 /* do not use strm_frm->stream as the qc_stream_desc instance
1500 * might be freed at this stage. Use the id to do a proper
Amaury Denoyellee4301da2022-04-19 17:59:50 +02001501 * lookup.
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001502 *
1503 * TODO if lookup operation impact on the perf is noticeable,
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001504 * implement a refcount on qc_stream_desc instances.
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001505 */
Amaury Denoyellee4301da2022-04-19 17:59:50 +02001506 node = eb64_lookup(&qc->streams_by_id, strm_frm->id);
1507 if (!node) {
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001508 TRACE_PROTO("acked stream for released stream", QUIC_EV_CONN_ACKSTRM, qc, strm_frm);
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001509 LIST_DELETE(&frm->list);
1510 quic_tx_packet_refdec(frm->pkt);
1511 pool_free(pool_head_quic_frame, frm);
1512
1513 /* early return */
1514 return;
1515 }
Amaury Denoyellee4301da2022-04-19 17:59:50 +02001516 stream = eb64_entry(node, struct qc_stream_desc, by_id);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001517
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001518 TRACE_PROTO("acked stream", QUIC_EV_CONN_ACKSTRM, qc, strm_frm, stream);
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001519 if (offset <= stream->ack_offset) {
1520 if (qc_stream_desc_ack(&stream, offset, len)) {
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001521 stream_acked = 1;
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001522 TRACE_PROTO("stream consumed", QUIC_EV_CONN_ACKSTRM,
1523 qc, strm_frm, stream);
1524 }
Amaury Denoyelle0c7679d2022-02-24 10:56:33 +01001525
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001526 if (!stream) {
1527 /* no need to continue if stream freed. */
1528 TRACE_PROTO("stream released and freed", QUIC_EV_CONN_ACKSTRM, qc);
1529 LIST_DELETE(&frm->list);
1530 quic_tx_packet_refdec(frm->pkt);
1531 pool_free(pool_head_quic_frame, frm);
1532 break;
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001533 }
1534
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001535 LIST_DELETE(&frm->list);
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001536 quic_tx_packet_refdec(frm->pkt);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001537 pool_free(pool_head_quic_frame, frm);
1538 }
1539 else {
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001540 eb64_insert(&stream->acked_frms, &strm_frm->offset);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001541 }
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001542
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001543 stream_acked |= quic_stream_try_to_consume(qc, stream);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001544 }
1545 break;
1546 default:
1547 LIST_DELETE(&frm->list);
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001548 quic_tx_packet_refdec(frm->pkt);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001549 pool_free(pool_head_quic_frame, frm);
1550 }
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001551
Frédéric Lécaille89a2ceb2022-04-20 15:59:07 +02001552 if (stream_acked && qc->mux_state == QC_MUX_READY) {
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001553 struct qcc *qcc = qc->qcc;
1554
1555 if (qcc->subs && qcc->subs->events & SUB_RETRY_SEND) {
1556 tasklet_wakeup(qcc->subs->tasklet);
1557 qcc->subs->events &= ~SUB_RETRY_SEND;
1558 if (!qcc->subs->events)
1559 qcc->subs = NULL;
1560 }
1561 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001562}
1563
1564/* Remove <largest> down to <smallest> node entries from <pkts> tree of TX packet,
1565 * deallocating them, and their TX frames.
1566 * Returns the last node reached to be used for the next range.
1567 * May be NULL if <largest> node could not be found.
1568 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001569static inline struct eb64_node *qc_ackrng_pkts(struct quic_conn *qc,
1570 struct eb_root *pkts,
1571 unsigned int *pkt_flags,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001572 struct list *newly_acked_pkts,
1573 struct eb64_node *largest_node,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001574 uint64_t largest, uint64_t smallest)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001575{
1576 struct eb64_node *node;
1577 struct quic_tx_packet *pkt;
1578
1579 if (largest_node)
1580 node = largest_node;
1581 else {
1582 node = eb64_lookup(pkts, largest);
1583 while (!node && largest > smallest) {
1584 node = eb64_lookup(pkts, --largest);
1585 }
1586 }
1587
1588 while (node && node->key >= smallest) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02001589 struct quic_frame *frm, *frmbak;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001590
1591 pkt = eb64_entry(&node->node, struct quic_tx_packet, pn_node);
1592 *pkt_flags |= pkt->flags;
Willy Tarreau2b718102021-04-21 07:32:39 +02001593 LIST_INSERT(newly_acked_pkts, &pkt->list);
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001594 TRACE_PROTO("Removing packet #", QUIC_EV_CONN_PRSAFRM, qc, NULL, &pkt->pn_node.key);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001595 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list)
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001596 qc_treat_acked_tx_frm(qc, frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001597 node = eb64_prev(node);
1598 eb64_delete(&pkt->pn_node);
1599 }
1600
1601 return node;
1602}
1603
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001604/* Remove all frames from <pkt_frm_list> and reinsert them in the
1605 * same order they have been sent into <pktns_frm_list>.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001606 */
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001607static inline void qc_requeue_nacked_pkt_tx_frms(struct quic_conn *qc,
1608 struct list *pkt_frm_list,
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001609 struct list *pktns_frm_list)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001610{
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001611 struct quic_frame *frm, *frmbak;
1612 struct list tmp = LIST_HEAD_INIT(tmp);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001613
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001614 list_for_each_entry_safe(frm, frmbak, pkt_frm_list, list) {
1615 LIST_DELETE(&frm->list);
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001616 quic_tx_packet_refdec(frm->pkt);
1617 /* This frame is not freed but removed from its packet */
1618 frm->pkt = NULL;
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001619 TRACE_PROTO("to resend frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001620 LIST_APPEND(&tmp, &frm->list);
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001621 }
1622
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001623 LIST_SPLICE(pktns_frm_list, &tmp);
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001624}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001625
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001626/* Free <pkt> TX packet and its attached frames.
1627 * This is the responsability of the caller to remove this packet of
1628 * any data structure it was possibly attached to.
1629 */
1630static inline void free_quic_tx_packet(struct quic_tx_packet *pkt)
1631{
1632 struct quic_frame *frm, *frmbak;
1633
1634 if (!pkt)
1635 return;
1636
1637 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list) {
1638 LIST_DELETE(&frm->list);
1639 pool_free(pool_head_quic_frame, frm);
1640 }
1641 pool_free(pool_head_quic_tx_packet, pkt);
1642}
1643
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001644/* Free the TX packets of <pkts> list */
1645static inline void free_quic_tx_pkts(struct list *pkts)
1646{
1647 struct quic_tx_packet *pkt, *tmp;
1648
1649 list_for_each_entry_safe(pkt, tmp, pkts, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001650 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001651 eb64_delete(&pkt->pn_node);
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001652 free_quic_tx_packet(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001653 }
1654}
1655
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001656/* Remove already sent ranges of acknowledged packet numbers from
1657 * <pktns> packet number space tree below <largest_acked_pn> possibly
1658 * updating the range which contains <largest_acked_pn>.
1659 * Never fails.
1660 */
1661static void qc_treat_ack_of_ack(struct quic_pktns *pktns,
1662 int64_t largest_acked_pn)
1663{
1664 struct eb64_node *ar, *next_ar;
1665 struct quic_arngs *arngs = &pktns->rx.arngs;
1666
1667 ar = eb64_first(&arngs->root);
1668 while (ar) {
1669 struct quic_arng_node *ar_node;
1670
1671 next_ar = eb64_next(ar);
1672 ar_node = eb64_entry(&ar->node, struct quic_arng_node, first);
1673 if ((int64_t)ar_node->first.key > largest_acked_pn)
1674 break;
1675
1676 if (largest_acked_pn < ar_node->last) {
1677 eb64_delete(ar);
1678 ar_node->first.key = largest_acked_pn + 1;
1679 eb64_insert(&arngs->root, ar);
1680 break;
1681 }
1682
1683 eb64_delete(ar);
1684 pool_free(pool_head_quic_arng, ar_node);
1685 arngs->sz--;
1686 ar = next_ar;
1687 }
1688}
1689
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001690/* Send a packet ack event nofication for each newly acked packet of
1691 * <newly_acked_pkts> list and free them.
1692 * Always succeeds.
1693 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001694static inline void qc_treat_newly_acked_pkts(struct quic_conn *qc,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001695 struct list *newly_acked_pkts)
1696{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001697 struct quic_tx_packet *pkt, *tmp;
1698 struct quic_cc_event ev = { .type = QUIC_CC_EVT_ACK, };
1699
1700 list_for_each_entry_safe(pkt, tmp, newly_acked_pkts, list) {
1701 pkt->pktns->tx.in_flight -= pkt->in_flight_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01001702 qc->path->prep_in_flight -= pkt->in_flight_len;
Frédéric Lécailleba9db402022-03-01 17:06:50 +01001703 qc->path->in_flight -= pkt->in_flight_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001704 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01001705 qc->path->ifae_pkts--;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001706 /* If this packet contained an ACK frame, proceed to the
1707 * acknowledging of range of acks from the largest acknowledged
1708 * packet number which was sent in an ACK frame by this packet.
1709 */
1710 if (pkt->largest_acked_pn != -1)
1711 qc_treat_ack_of_ack(pkt->pktns, pkt->largest_acked_pn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001712 ev.ack.acked = pkt->in_flight_len;
1713 ev.ack.time_sent = pkt->time_sent;
1714 quic_cc_event(&qc->path->cc, &ev);
Willy Tarreau2b718102021-04-21 07:32:39 +02001715 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001716 eb64_delete(&pkt->pn_node);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001717 quic_tx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001718 }
1719
1720}
1721
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01001722/* Release all the frames attached to <pktns> packet number space */
1723static inline void qc_release_pktns_frms(struct quic_pktns *pktns)
1724{
1725 struct quic_frame *frm, *frmbak;
1726
1727 list_for_each_entry_safe(frm, frmbak, &pktns->tx.frms, list) {
1728 LIST_DELETE(&frm->list);
1729 pool_free(pool_head_quic_frame, frm);
1730 }
1731}
1732
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001733/* Handle <pkts> list of lost packets detected at <now_us> handling
1734 * their TX frames.
1735 * Send a packet loss event to the congestion controller if
1736 * in flight packet have been lost.
1737 * Also frees the packet in <pkts> list.
1738 * Never fails.
1739 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001740static inline void qc_release_lost_pkts(struct quic_conn *qc,
1741 struct quic_pktns *pktns,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001742 struct list *pkts,
1743 uint64_t now_us)
1744{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001745 struct quic_tx_packet *pkt, *tmp, *oldest_lost, *newest_lost;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001746 uint64_t lost_bytes;
1747
1748 lost_bytes = 0;
1749 oldest_lost = newest_lost = NULL;
1750 list_for_each_entry_safe(pkt, tmp, pkts, list) {
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001751 struct list tmp = LIST_HEAD_INIT(tmp);
1752
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001753 lost_bytes += pkt->in_flight_len;
1754 pkt->pktns->tx.in_flight -= pkt->in_flight_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01001755 qc->path->prep_in_flight -= pkt->in_flight_len;
Frédéric Lécailleba9db402022-03-01 17:06:50 +01001756 qc->path->in_flight -= pkt->in_flight_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001757 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01001758 qc->path->ifae_pkts--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001759 /* Treat the frames of this lost packet. */
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001760 qc_requeue_nacked_pkt_tx_frms(qc, &pkt->frms, &pktns->tx.frms);
Willy Tarreau2b718102021-04-21 07:32:39 +02001761 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001762 if (!oldest_lost) {
1763 oldest_lost = newest_lost = pkt;
1764 }
1765 else {
1766 if (newest_lost != oldest_lost)
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001767 quic_tx_packet_refdec(newest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001768 newest_lost = pkt;
1769 }
1770 }
1771
Frédéric Lécaillea5ee0ae2022-03-02 14:52:56 +01001772 if (newest_lost) {
1773 /* Sent a congestion event to the controller */
1774 struct quic_cc_event ev = {
1775 .type = QUIC_CC_EVT_LOSS,
1776 .loss.time_sent = newest_lost->time_sent,
1777 };
1778
1779 quic_cc_event(&qc->path->cc, &ev);
1780 }
1781
1782 /* If an RTT have been already sampled, <rtt_min> has been set.
1783 * We must check if we are experiencing a persistent congestion.
1784 * If this is the case, the congestion controller must re-enter
1785 * slow start state.
1786 */
1787 if (qc->path->loss.rtt_min && newest_lost != oldest_lost) {
1788 unsigned int period = newest_lost->time_sent - oldest_lost->time_sent;
1789
1790 if (quic_loss_persistent_congestion(&qc->path->loss, period,
1791 now_ms, qc->max_ack_delay))
1792 qc->path->cc.algo->slow_start(&qc->path->cc);
1793 }
1794
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001795 if (lost_bytes) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001796 quic_tx_packet_refdec(oldest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001797 if (newest_lost != oldest_lost)
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001798 quic_tx_packet_refdec(newest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001799 }
1800}
1801
1802/* Look for packet loss from sent packets for <qel> encryption level of a
1803 * connection with <ctx> as I/O handler context. If remove is true, remove them from
1804 * their tree if deemed as lost or set the <loss_time> value the packet number
1805 * space if any not deemed lost.
1806 * Should be called after having received an ACK frame with newly acknowledged
1807 * packets or when the the loss detection timer has expired.
1808 * Always succeeds.
1809 */
1810static void qc_packet_loss_lookup(struct quic_pktns *pktns,
1811 struct quic_conn *qc,
1812 struct list *lost_pkts)
1813{
1814 struct eb_root *pkts;
1815 struct eb64_node *node;
1816 struct quic_loss *ql;
1817 unsigned int loss_delay;
1818
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001819 TRACE_ENTER(QUIC_EV_CONN_PKTLOSS, qc, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001820 pkts = &pktns->tx.pkts;
1821 pktns->tx.loss_time = TICK_ETERNITY;
1822 if (eb_is_empty(pkts))
1823 goto out;
1824
1825 ql = &qc->path->loss;
1826 loss_delay = QUIC_MAX(ql->latest_rtt, ql->srtt >> 3);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001827 loss_delay = QUIC_MAX(loss_delay, MS_TO_TICKS(QUIC_TIMER_GRANULARITY));
1828
1829 node = eb64_first(pkts);
1830 while (node) {
1831 struct quic_tx_packet *pkt;
1832 int64_t largest_acked_pn;
1833 unsigned int loss_time_limit, time_sent;
1834
1835 pkt = eb64_entry(&node->node, struct quic_tx_packet, pn_node);
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02001836 largest_acked_pn = pktns->rx.largest_acked_pn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001837 node = eb64_next(node);
1838 if ((int64_t)pkt->pn_node.key > largest_acked_pn)
1839 break;
1840
1841 time_sent = pkt->time_sent;
1842 loss_time_limit = tick_add(time_sent, loss_delay);
1843 if (tick_is_le(time_sent, now_ms) ||
1844 (int64_t)largest_acked_pn >= pkt->pn_node.key + QUIC_LOSS_PACKET_THRESHOLD) {
1845 eb64_delete(&pkt->pn_node);
Willy Tarreau2b718102021-04-21 07:32:39 +02001846 LIST_APPEND(lost_pkts, &pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001847 }
1848 else {
Frédéric Lécailledc90c072021-12-27 18:15:27 +01001849 if (tick_isset(pktns->tx.loss_time))
1850 pktns->tx.loss_time = tick_first(pktns->tx.loss_time, loss_time_limit);
1851 else
1852 pktns->tx.loss_time = loss_time_limit;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001853 }
1854 }
1855
1856 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001857 TRACE_LEAVE(QUIC_EV_CONN_PKTLOSS, qc, pktns, lost_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001858}
1859
1860/* Parse ACK frame into <frm> from a buffer at <buf> address with <end> being at
1861 * one byte past the end of this buffer. Also update <rtt_sample> if needed, i.e.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05001862 * 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 +01001863 * acked ack-eliciting packet.
1864 * Return 1, if succeeded, 0 if not.
1865 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001866static inline int qc_parse_ack_frm(struct quic_conn *qc,
1867 struct quic_frame *frm,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001868 struct quic_enc_level *qel,
1869 unsigned int *rtt_sample,
1870 const unsigned char **pos, const unsigned char *end)
1871{
1872 struct quic_ack *ack = &frm->ack;
1873 uint64_t smallest, largest;
1874 struct eb_root *pkts;
1875 struct eb64_node *largest_node;
1876 unsigned int time_sent, pkt_flags;
1877 struct list newly_acked_pkts = LIST_HEAD_INIT(newly_acked_pkts);
1878 struct list lost_pkts = LIST_HEAD_INIT(lost_pkts);
1879
1880 if (ack->largest_ack > qel->pktns->tx.next_pn) {
1881 TRACE_DEVEL("ACK for not sent packet", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001882 qc, NULL, &ack->largest_ack);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001883 goto err;
1884 }
1885
1886 if (ack->first_ack_range > ack->largest_ack) {
1887 TRACE_DEVEL("too big first ACK range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001888 qc, NULL, &ack->first_ack_range);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001889 goto err;
1890 }
1891
1892 largest = ack->largest_ack;
1893 smallest = largest - ack->first_ack_range;
1894 pkts = &qel->pktns->tx.pkts;
1895 pkt_flags = 0;
1896 largest_node = NULL;
1897 time_sent = 0;
1898
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02001899 if ((int64_t)ack->largest_ack > qel->pktns->rx.largest_acked_pn) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001900 largest_node = eb64_lookup(pkts, largest);
1901 if (!largest_node) {
1902 TRACE_DEVEL("Largest acked packet not found",
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001903 QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille83b7a5b2021-11-17 16:16:04 +01001904 }
1905 else {
1906 time_sent = eb64_entry(&largest_node->node,
1907 struct quic_tx_packet, pn_node)->time_sent;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001908 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001909 }
1910
1911 TRACE_PROTO("ack range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001912 qc, NULL, &largest, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001913 do {
1914 uint64_t gap, ack_range;
1915
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001916 qc_ackrng_pkts(qc, pkts, &pkt_flags, &newly_acked_pkts,
1917 largest_node, largest, smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001918 if (!ack->ack_range_num--)
1919 break;
1920
1921 if (!quic_dec_int(&gap, pos, end))
1922 goto err;
1923
1924 if (smallest < gap + 2) {
1925 TRACE_DEVEL("wrong gap value", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001926 qc, NULL, &gap, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001927 goto err;
1928 }
1929
1930 largest = smallest - gap - 2;
1931 if (!quic_dec_int(&ack_range, pos, end))
1932 goto err;
1933
1934 if (largest < ack_range) {
1935 TRACE_DEVEL("wrong ack range value", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001936 qc, NULL, &largest, &ack_range);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001937 goto err;
1938 }
1939
1940 /* Do not use this node anymore. */
1941 largest_node = NULL;
1942 /* Next range */
1943 smallest = largest - ack_range;
1944
1945 TRACE_PROTO("ack range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001946 qc, NULL, &largest, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001947 } while (1);
1948
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001949 if (time_sent && (pkt_flags & QUIC_FL_TX_PACKET_ACK_ELICITING)) {
1950 *rtt_sample = tick_remain(time_sent, now_ms);
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02001951 qel->pktns->rx.largest_acked_pn = ack->largest_ack;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001952 }
1953
1954 if (!LIST_ISEMPTY(&newly_acked_pkts)) {
1955 if (!eb_is_empty(&qel->pktns->tx.pkts)) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001956 qc_packet_loss_lookup(qel->pktns, qc, &lost_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001957 if (!LIST_ISEMPTY(&lost_pkts))
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001958 qc_release_lost_pkts(qc, qel->pktns, &lost_pkts, now_ms);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001959 }
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001960 qc_treat_newly_acked_pkts(qc, &newly_acked_pkts);
1961 if (quic_peer_validated_addr(qc))
1962 qc->path->loss.pto_count = 0;
1963 qc_set_timer(qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001964 }
1965
1966
1967 return 1;
1968
1969 err:
1970 free_quic_tx_pkts(&newly_acked_pkts);
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001971 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001972 return 0;
1973}
1974
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02001975/* This function gives the detail of the SSL error. It is used only
1976 * if the debug mode and the verbose mode are activated. It dump all
1977 * the SSL error until the stack was empty.
1978 */
1979static forceinline void qc_ssl_dump_errors(struct connection *conn)
1980{
1981 if (unlikely(global.mode & MODE_DEBUG)) {
1982 while (1) {
Willy Tarreau325fc632022-04-11 18:47:38 +02001983 const char *func = NULL;
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02001984 unsigned long ret;
1985
Willy Tarreau325fc632022-04-11 18:47:38 +02001986 ERR_peek_error_func(&func);
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02001987 ret = ERR_get_error();
1988 if (!ret)
1989 return;
1990
1991 fprintf(stderr, "conn. @%p OpenSSL error[0x%lx] %s: %s\n", conn, ret,
Willy Tarreau325fc632022-04-11 18:47:38 +02001992 func, ERR_reason_error_string(ret));
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02001993 }
1994 }
1995}
1996
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01001997int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx,
1998 const char **str, int *len);
1999
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002000/* Provide CRYPTO data to the TLS stack found at <data> with <len> as length
2001 * from <qel> encryption level with <ctx> as QUIC connection context.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05002002 * Remaining parameter are there for debugging purposes.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002003 * Return 1 if succeeded, 0 if not.
2004 */
2005static inline int qc_provide_cdata(struct quic_enc_level *el,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002006 struct ssl_sock_ctx *ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002007 const unsigned char *data, size_t len,
2008 struct quic_rx_packet *pkt,
2009 struct quic_rx_crypto_frm *cf)
2010{
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02002011 int ssl_err, state;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002012 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002013
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002014 ssl_err = SSL_ERROR_NONE;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01002015 qc = ctx->qc;
2016
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002017 TRACE_ENTER(QUIC_EV_CONN_SSLDATA, qc);
2018
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002019 if (SSL_provide_quic_data(ctx->ssl, el->level, data, len) != 1) {
2020 TRACE_PROTO("SSL_provide_quic_data() error",
Frédéric Lécaillefde2a982021-12-27 15:12:09 +01002021 QUIC_EV_CONN_SSLDATA, qc, pkt, cf, ctx->ssl);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002022 goto err;
2023 }
2024
2025 el->rx.crypto.offset += len;
2026 TRACE_PROTO("in order CRYPTO data",
Frédéric Lécaillee7ff2b22021-12-22 17:40:38 +01002027 QUIC_EV_CONN_SSLDATA, qc, NULL, cf, ctx->ssl);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002028
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002029 state = qc->state;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02002030 if (state < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002031 ssl_err = SSL_do_handshake(ctx->ssl);
2032 if (ssl_err != 1) {
2033 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
2034 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
2035 TRACE_PROTO("SSL handshake",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002036 QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002037 goto out;
2038 }
2039
2040 TRACE_DEVEL("SSL handshake error",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002041 QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaille7c881bd2021-09-28 09:05:59 +02002042 qc_ssl_dump_errors(ctx->conn);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01002043 ERR_clear_error();
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002044 goto err;
2045 }
2046
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002047 TRACE_PROTO("SSL handshake OK", QUIC_EV_CONN_IO_CB, qc, &state);
Frédéric Lécaillebc964bd2022-04-13 16:20:09 +02002048
2049 /* Check the alpn could be negotiated */
2050 if (!qc->app_ops) {
2051 TRACE_PROTO("No ALPN", QUIC_EV_CONN_IO_CB, qc, &state);
2052 quic_set_tls_alert(qc, SSL_AD_NO_APPLICATION_PROTOCOL);
2053 goto err;
2054 }
2055
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002056 /* I/O callback switch */
2057 ctx->wait_event.tasklet->process = quic_conn_app_io_cb;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01002058 if (qc_is_listener(ctx->qc)) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002059 qc->state = QUIC_HS_ST_CONFIRMED;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01002060 /* The connection is ready to be accepted. */
2061 quic_accept_push_qc(qc);
2062 }
2063 else {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002064 qc->state = QUIC_HS_ST_COMPLETE;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01002065 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002066 } else {
2067 ssl_err = SSL_process_quic_post_handshake(ctx->ssl);
2068 if (ssl_err != 1) {
2069 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
2070 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
2071 TRACE_DEVEL("SSL post handshake",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002072 QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002073 goto out;
2074 }
2075
2076 TRACE_DEVEL("SSL post handshake error",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002077 QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002078 goto err;
2079 }
2080
2081 TRACE_PROTO("SSL post handshake succeeded",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002082 QUIC_EV_CONN_IO_CB, qc, &state);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002083 }
Amaury Denoyellee2288c32021-12-03 14:44:21 +01002084
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002085 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002086 TRACE_LEAVE(QUIC_EV_CONN_SSLDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002087 return 1;
2088
2089 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002090 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_SSLDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002091 return 0;
2092}
2093
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002094/* Allocate a new STREAM RX frame from <stream_fm> STREAM frame attached to
2095 * <pkt> RX packet.
2096 * Return it if succeeded, NULL if not.
2097 */
2098static inline
2099struct quic_rx_strm_frm *new_quic_rx_strm_frm(struct quic_stream *stream_frm,
2100 struct quic_rx_packet *pkt)
2101{
2102 struct quic_rx_strm_frm *frm;
2103
2104 frm = pool_alloc(pool_head_quic_rx_strm_frm);
2105 if (frm) {
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02002106 frm->offset_node.key = stream_frm->offset.key;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002107 frm->len = stream_frm->len;
2108 frm->data = stream_frm->data;
2109 frm->pkt = pkt;
Amaury Denoyelle3c430392022-02-28 11:38:36 +01002110 frm->fin = stream_frm->fin;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002111 }
2112
2113 return frm;
2114}
2115
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002116/* Copy as most as possible STREAM data from <strm_frm> into <strm> stream.
Frédéric Lécaille3fe7df82021-12-15 15:32:55 +01002117 * Also update <strm_frm> frame to reflect the data which have been consumed.
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002118 */
2119static size_t qc_strm_cpy(struct buffer *buf, struct quic_stream *strm_frm)
2120{
2121 size_t ret;
2122
Amaury Denoyelle2d2d0302022-02-28 10:00:54 +01002123 ret = b_putblk(buf, (char *)strm_frm->data, strm_frm->len);
2124 strm_frm->len -= ret;
2125 strm_frm->offset.key += ret;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002126
2127 return ret;
2128}
2129
2130/* Handle <strm_frm> bidirectional STREAM frame. Depending on its ID, several
2131 * streams may be open. The data are copied to the stream RX buffer if possible.
2132 * If not, the STREAM frame is stored to be treated again later.
2133 * We rely on the flow control so that not to store too much STREAM frames.
2134 * Return 1 if succeeded, 0 if not.
2135 */
2136static int qc_handle_bidi_strm_frm(struct quic_rx_packet *pkt,
2137 struct quic_stream *strm_frm,
2138 struct quic_conn *qc)
2139{
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002140 struct quic_rx_strm_frm *frm;
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002141 struct eb64_node *frm_node;
2142 struct qcs *qcs = NULL;
2143 int ret;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002144
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002145 ret = qcc_recv(qc->qcc, strm_frm->id, strm_frm->len,
2146 strm_frm->offset.key, strm_frm->fin,
2147 (char *)strm_frm->data, &qcs);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002148
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002149 /* invalid or already received frame */
2150 if (ret == 1)
Amaury Denoyelle20f89ca2022-03-08 10:48:35 +01002151 return 1;
Frédéric Lécaille10250b22021-12-22 16:13:43 +01002152
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002153 if (ret == 2) {
2154 /* frame cannot be parsed at the moment and should be
2155 * buffered.
2156 */
2157 frm = new_quic_rx_strm_frm(strm_frm, pkt);
2158 if (!frm) {
2159 TRACE_PROTO("Could not alloc RX STREAM frame",
Frédéric Lécaille10250b22021-12-22 16:13:43 +01002160 QUIC_EV_CONN_PSTRM, qc);
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002161 return 0;
Frédéric Lécaille10250b22021-12-22 16:13:43 +01002162 }
2163
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002164 eb64_insert(&qcs->rx.frms, &frm->offset_node);
2165 quic_rx_packet_refinc(pkt);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002166
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002167 return 1;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002168 }
2169
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002170 /* Frame correctly received by the mux.
2171 * If there is buffered frame for next offset, it may be possible to
2172 * receive them now.
2173 */
2174 frm_node = eb64_first(&qcs->rx.frms);
2175 while (frm_node) {
2176 frm = eb64_entry(&frm_node->node,
2177 struct quic_rx_strm_frm, offset_node);
Amaury Denoyelle3c430392022-02-28 11:38:36 +01002178
Amaury Denoyelled8e680c2022-03-29 15:18:44 +02002179 ret = qcc_recv(qc->qcc, qcs->id, frm->len,
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002180 frm->offset_node.key, frm->fin,
2181 (char *)frm->data, &qcs);
Frédéric Lécaillef1d38cb2021-12-20 12:02:13 +01002182
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002183 /* interrupt the parsing if the frame cannot be handled for the
2184 * moment only by the MUX.
2185 */
2186 if (ret == 2)
2187 break;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002188
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002189 /* Remove a newly received frame or an invalid one. */
2190 frm_node = eb64_next(frm_node);
2191 eb64_delete(&frm->offset_node);
2192 quic_rx_packet_refdec(frm->pkt);
2193 pool_free(pool_head_quic_rx_strm_frm, frm);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002194 }
2195
Amaury Denoyelle0e3010b2022-02-28 11:37:48 +01002196 /* Decode the received data. */
Amaury Denoyelle20f89ca2022-03-08 10:48:35 +01002197 qcc_decode_qcs(qc->qcc, qcs);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002198
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002199 return 1;
2200}
2201
2202/* Handle <strm_frm> unidirectional STREAM frame. Depending on its ID, several
2203 * streams may be open. The data are copied to the stream RX buffer if possible.
2204 * If not, the STREAM frame is stored to be treated again later.
2205 * We rely on the flow control so that not to store too much STREAM frames.
2206 * Return 1 if succeeded, 0 if not.
2207 */
2208static int qc_handle_uni_strm_frm(struct quic_rx_packet *pkt,
2209 struct quic_stream *strm_frm,
2210 struct quic_conn *qc)
2211{
2212 struct qcs *strm;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002213 struct quic_rx_strm_frm *frm;
2214 size_t strm_frm_len;
2215
Amaury Denoyelle50742292022-03-29 14:57:19 +02002216 strm = qcc_get_qcs(qc->qcc, strm_frm->id);
2217 if (!strm) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002218 TRACE_PROTO("Stream not found", QUIC_EV_CONN_PSTRM, qc);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002219 return 0;
2220 }
2221
Frédéric Lécaille10250b22021-12-22 16:13:43 +01002222 if (strm_frm->offset.key < strm->rx.offset) {
2223 size_t diff;
2224
2225 if (strm_frm->offset.key + strm_frm->len <= strm->rx.offset) {
2226 TRACE_PROTO("Already received STREAM data",
2227 QUIC_EV_CONN_PSTRM, qc);
2228 goto out;
2229 }
2230
2231 TRACE_PROTO("Partially already received STREAM data", QUIC_EV_CONN_PSTRM, qc);
2232 diff = strm->rx.offset - strm_frm->offset.key;
2233 strm_frm->offset.key = strm->rx.offset;
2234 strm_frm->len -= diff;
2235 strm_frm->data += diff;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002236 }
2237
2238 strm_frm_len = strm_frm->len;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02002239 if (strm_frm->offset.key == strm->rx.offset) {
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002240 int ret;
2241
Amaury Denoyelle1e308ff2021-10-12 18:14:12 +02002242 if (!qc_get_buf(strm, &strm->rx.buf))
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002243 goto store_frm;
2244
2245 /* qc_strm_cpy() will modify the offset, depending on the number
2246 * of bytes copied.
2247 */
2248 ret = qc_strm_cpy(&strm->rx.buf, strm_frm);
2249 /* Inform the application of the arrival of this new stream */
2250 if (!strm->rx.offset && !qc->qcc->app_ops->attach_ruqs(strm, qc->qcc->ctx)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002251 TRACE_PROTO("Could not set an uni-stream", QUIC_EV_CONN_PSTRM, qc);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002252 return 0;
2253 }
2254
Amaury Denoyellea3f222d2021-12-06 11:24:00 +01002255 if (ret)
2256 qcs_notify_recv(strm);
2257
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02002258 strm_frm->offset.key += ret;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002259 }
2260 /* Take this frame into an account for the stream flow control */
2261 strm->rx.offset += strm_frm_len;
2262 /* It all the data were provided to the application, there is no need to
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +05002263 * store any more information for it.
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002264 */
2265 if (!strm_frm->len)
2266 goto out;
2267
2268 store_frm:
2269 frm = new_quic_rx_strm_frm(strm_frm, pkt);
2270 if (!frm) {
2271 TRACE_PROTO("Could not alloc RX STREAM frame",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002272 QUIC_EV_CONN_PSTRM, qc);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002273 return 0;
2274 }
2275
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02002276 eb64_insert(&strm->rx.frms, &frm->offset_node);
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002277 quic_rx_packet_refinc(pkt);
2278
2279 out:
2280 return 1;
2281}
2282
2283static inline int qc_handle_strm_frm(struct quic_rx_packet *pkt,
2284 struct quic_stream *strm_frm,
2285 struct quic_conn *qc)
2286{
2287 if (strm_frm->id & QCS_ID_DIR_BIT)
2288 return qc_handle_uni_strm_frm(pkt, strm_frm, qc);
2289 else
2290 return qc_handle_bidi_strm_frm(pkt, strm_frm, qc);
2291}
2292
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002293/* Prepare a fast retransmission from <qel> encryption level */
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002294static void qc_prep_fast_retrans(struct quic_enc_level *qel,
2295 struct quic_conn *qc)
2296{
2297 struct eb_root *pkts = &qel->pktns->tx.pkts;
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002298 struct eb64_node *node;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002299 struct quic_tx_packet *pkt;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002300
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002301 pkt = NULL;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002302 pkts = &qel->pktns->tx.pkts;
2303 node = eb64_first(pkts);
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002304 /* Skip the empty packet (they have already been retransmitted) */
2305 while (node) {
2306 pkt = eb64_entry(&node->node, struct quic_tx_packet, pn_node);
2307 if (!LIST_ISEMPTY(&pkt->frms))
2308 break;
2309 node = eb64_next(node);
2310 }
2311
2312 if (!pkt)
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002313 return;
2314
Frédéric Lécaille12fd2592022-03-31 08:42:06 +02002315 /* When building a packet from another one, the field which may increase the
2316 * packet size is the packet number. And the maximum increase is 4 bytes.
2317 */
2318 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc) &&
2319 pkt->len + 4 > 3 * qc->rx.bytes - qc->tx.prep_bytes) {
2320 TRACE_PROTO("anti-amplification limit would be reached", QUIC_EV_CONN_PRSAFRM, qc);
2321 return;
2322 }
2323
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01002324 qc_requeue_nacked_pkt_tx_frms(qc, &pkt->frms, &qel->pktns->tx.frms);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002325}
2326
2327/* Prepare a fast retransmission during handshake after a client
2328 * has resent Initial packets. According to the RFC a server may retransmit
2329 * up to two datagrams of Initial packets if did not receive all Initial packets
2330 * and resend them coalescing with others (Handshake here).
2331 * (Listener only).
2332 */
2333static void qc_prep_hdshk_fast_retrans(struct quic_conn *qc)
2334{
2335 struct list itmp = LIST_HEAD_INIT(itmp);
2336 struct list htmp = LIST_HEAD_INIT(htmp);
2337 struct quic_frame *frm, *frmbak;
2338
2339 struct quic_enc_level *iqel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
2340 struct quic_enc_level *hqel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
2341 struct quic_enc_level *qel = iqel;
2342 struct eb_root *pkts;
2343 struct eb64_node *node;
2344 struct quic_tx_packet *pkt;
2345 struct list *tmp = &itmp;
2346
Frédéric Lécaille5cfb4ed2022-03-30 14:44:49 +02002347 /* Do not probe from a packet number space if some probing
2348 * was already asked.
2349 */
2350 if (qel->pktns->tx.pto_probe) {
2351 qel = hqel;
2352 if (qel->pktns->tx.pto_probe)
2353 return;
2354 }
2355
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002356 start:
2357 pkt = NULL;
2358 pkts = &qel->pktns->tx.pkts;
2359 node = eb64_first(pkts);
2360 /* Skip the empty packet (they have already been retransmitted) */
2361 while (node) {
2362 pkt = eb64_entry(&node->node, struct quic_tx_packet, pn_node);
2363 if (!LIST_ISEMPTY(&pkt->frms))
2364 break;
2365 node = eb64_next(node);
2366 }
2367
2368 if (!pkt)
2369 goto end;
2370
Frédéric Lécaille12fd2592022-03-31 08:42:06 +02002371 /* When building a packet from another one, the field which may increase the
2372 * packet size is the packet number. And the maximum increase is 4 bytes.
2373 */
2374 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc) &&
2375 pkt->len + 4 > 3 * qc->rx.bytes - qc->tx.prep_bytes) {
2376 TRACE_PROTO("anti-amplification limit would be reached", QUIC_EV_CONN_PRSAFRM, qc);
2377 goto end;
2378 }
2379
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002380 qel->pktns->tx.pto_probe += 1;
2381 requeue:
2382 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list) {
Frédéric Lécaille009016c2022-03-30 14:58:55 +02002383 struct quic_frame *dup_frm;
2384
2385
2386 dup_frm = pool_alloc(pool_head_quic_frame);
2387 if (!dup_frm) {
2388 TRACE_PROTO("could not duplicate frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
2389 break;
2390 }
2391
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002392 TRACE_PROTO("to resend frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaille009016c2022-03-30 14:58:55 +02002393 *dup_frm = *frm;
2394 LIST_APPEND(tmp, &dup_frm->list);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002395 }
2396
2397 if (qel == iqel) {
2398 if (pkt->next && pkt->next->type == QUIC_PACKET_TYPE_HANDSHAKE) {
2399 pkt = pkt->next;
2400 tmp = &htmp;
2401 hqel->pktns->tx.pto_probe += 1;
2402 goto requeue;
2403 }
2404
2405 qel = hqel;
2406 tmp = &htmp;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002407 goto start;
2408 }
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002409
2410 end:
2411 LIST_SPLICE(&iqel->pktns->tx.frms, &itmp);
2412 LIST_SPLICE(&hqel->pktns->tx.frms, &htmp);
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002413}
2414
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002415/* Parse all the frames of <pkt> QUIC packet for QUIC connection with <ctx>
2416 * as I/O handler context and <qel> as encryption level.
2417 * Returns 1 if succeeded, 0 if failed.
2418 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002419static 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 +01002420 struct quic_enc_level *qel)
2421{
2422 struct quic_frame frm;
2423 const unsigned char *pos, *end;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01002424 struct quic_conn *qc = ctx->qc;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002425 int fast_retrans = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002426
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002427 TRACE_ENTER(QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002428 /* Skip the AAD */
2429 pos = pkt->data + pkt->aad_len;
2430 end = pkt->data + pkt->len;
2431
2432 while (pos < end) {
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002433 if (!qc_parse_frm(&frm, pkt, &pos, end, qc))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002434 goto err;
2435
Frédéric Lécaille1ede8232021-12-23 14:11:25 +01002436 TRACE_PROTO("RX frame", QUIC_EV_CONN_PSTRM, qc, &frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002437 switch (frm.type) {
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002438 case QUIC_FT_PADDING:
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002439 break;
2440 case QUIC_FT_PING:
2441 break;
2442 case QUIC_FT_ACK:
2443 {
2444 unsigned int rtt_sample;
2445
2446 rtt_sample = 0;
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002447 if (!qc_parse_ack_frm(qc, &frm, qel, &rtt_sample, &pos, end))
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002448 goto err;
2449
2450 if (rtt_sample) {
2451 unsigned int ack_delay;
2452
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002453 ack_delay = !quic_application_pktns(qel->pktns, qc) ? 0 :
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002454 qc->state >= QUIC_HS_ST_CONFIRMED ?
Frédéric Lécaille22576a22021-12-28 14:27:43 +01002455 MS_TO_TICKS(QUIC_MIN(quic_ack_delay_ms(&frm.ack, qc), qc->max_ack_delay)) :
2456 MS_TO_TICKS(quic_ack_delay_ms(&frm.ack, qc));
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002457 quic_loss_srtt_update(&qc->path->loss, rtt_sample, ack_delay, qc);
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002458 }
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002459 break;
2460 }
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002461 case QUIC_FT_STOP_SENDING:
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002462 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002463 case QUIC_FT_CRYPTO:
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002464 {
2465 struct quic_rx_crypto_frm *cf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002466
Frédéric Lécaillebd242082022-02-25 17:17:59 +01002467 if (unlikely(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD)) {
Frédéric Lécaille917a7db2022-01-03 17:00:35 +01002468 /* XXX TO DO: <cfdebug> is used only for the traces. */
2469 struct quic_rx_crypto_frm cfdebug = { };
2470
2471 cfdebug.offset_node.key = frm.crypto.offset;
2472 cfdebug.len = frm.crypto.len;
2473 TRACE_PROTO("CRYPTO data discarded",
2474 QUIC_EV_CONN_ELRXPKTS, qc, pkt, &cfdebug);
2475 break;
2476 }
2477
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002478 if (unlikely(frm.crypto.offset < qel->rx.crypto.offset)) {
2479 if (frm.crypto.offset + frm.crypto.len <= qel->rx.crypto.offset) {
2480 /* XXX TO DO: <cfdebug> is used only for the traces. */
2481 struct quic_rx_crypto_frm cfdebug = { };
2482
2483 cfdebug.offset_node.key = frm.crypto.offset;
2484 cfdebug.len = frm.crypto.len;
2485 /* Nothing to do */
2486 TRACE_PROTO("Already received CRYPTO data",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002487 QUIC_EV_CONN_ELRXPKTS, qc, pkt, &cfdebug);
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002488 if (qc_is_listener(ctx->qc) &&
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002489 qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL])
2490 fast_retrans = 1;
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002491 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002492 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002493 else {
2494 size_t diff = qel->rx.crypto.offset - frm.crypto.offset;
2495 /* XXX TO DO: <cfdebug> is used only for the traces. */
2496 struct quic_rx_crypto_frm cfdebug = { };
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002497
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002498 cfdebug.offset_node.key = frm.crypto.offset;
2499 cfdebug.len = frm.crypto.len;
2500 TRACE_PROTO("Partially already received CRYPTO data",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002501 QUIC_EV_CONN_ELRXPKTS, qc, pkt, &cfdebug);
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002502 frm.crypto.len -= diff;
2503 frm.crypto.data += diff;
2504 frm.crypto.offset = qel->rx.crypto.offset;
2505 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002506 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002507
2508 if (frm.crypto.offset == qel->rx.crypto.offset) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002509 /* XXX TO DO: <cf> is used only for the traces. */
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002510 struct quic_rx_crypto_frm cfdebug = { };
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002511
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002512 cfdebug.offset_node.key = frm.crypto.offset;
2513 cfdebug.len = frm.crypto.len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002514 if (!qc_provide_cdata(qel, ctx,
2515 frm.crypto.data, frm.crypto.len,
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002516 pkt, &cfdebug))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002517 goto err;
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002518
2519 break;
2520 }
2521
2522 /* frm.crypto.offset > qel->rx.crypto.offset */
2523 cf = pool_alloc(pool_head_quic_rx_crypto_frm);
2524 if (!cf) {
2525 TRACE_DEVEL("CRYPTO frame allocation failed",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002526 QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002527 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002528 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002529
2530 cf->offset_node.key = frm.crypto.offset;
2531 cf->len = frm.crypto.len;
2532 cf->data = frm.crypto.data;
2533 cf->pkt = pkt;
2534 eb64_insert(&qel->rx.crypto.frms, &cf->offset_node);
2535 quic_rx_packet_refinc(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002536 break;
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002537 }
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002538 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002539 {
2540 struct quic_stream *stream = &frm.stream;
2541
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002542 if (qc_is_listener(ctx->qc)) {
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002543 if (stream->id & QUIC_STREAM_FRAME_ID_INITIATOR_BIT)
2544 goto err;
2545 } else if (!(stream->id & QUIC_STREAM_FRAME_ID_INITIATOR_BIT))
2546 goto err;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002547
Frédéric Lécaille12aa26b2022-03-21 11:37:13 +01002548 /* At the application layer the connection may have already been closed. */
2549 if (qc->mux_state != QC_MUX_READY)
2550 break;
2551
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002552 if (!qc_handle_strm_frm(pkt, stream, qc))
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002553 goto err;
2554
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002555 break;
2556 }
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002557 case QUIC_FT_MAX_DATA:
Amaury Denoyelle1e5e5132022-03-08 16:23:03 +01002558 if (qc->mux_state == QC_MUX_READY) {
2559 struct quic_max_data *data = &frm.max_data;
2560 qcc_recv_max_data(qc->qcc, data->max_data);
2561 }
2562 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002563 case QUIC_FT_MAX_STREAM_DATA:
Amaury Denoyelle8727ff42022-03-08 10:39:55 +01002564 if (qc->mux_state == QC_MUX_READY) {
2565 struct quic_max_stream_data *data = &frm.max_stream_data;
2566 qcc_recv_max_stream_data(qc->qcc, data->id,
2567 data->max_stream_data);
2568 }
2569 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002570 case QUIC_FT_MAX_STREAMS_BIDI:
2571 case QUIC_FT_MAX_STREAMS_UNI:
2572 case QUIC_FT_DATA_BLOCKED:
2573 case QUIC_FT_STREAM_DATA_BLOCKED:
2574 case QUIC_FT_STREAMS_BLOCKED_BIDI:
2575 case QUIC_FT_STREAMS_BLOCKED_UNI:
2576 break;
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002577 case QUIC_FT_NEW_CONNECTION_ID:
Frédéric Lécaille2cca2412022-01-21 13:55:03 +01002578 case QUIC_FT_RETIRE_CONNECTION_ID:
2579 /* XXX TO DO XXX */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002580 break;
2581 case QUIC_FT_CONNECTION_CLOSE:
2582 case QUIC_FT_CONNECTION_CLOSE_APP:
Frédéric Lécaille47756802022-03-25 09:12:16 +01002583 if (!(qc->flags & QUIC_FL_CONN_DRAINING)) {
2584 TRACE_PROTO("Entering draining state", QUIC_EV_CONN_PRSHPKT, qc);
2585 /* RFC 9000 10.2. Immediate Close:
2586 * The closing and draining connection states exist to ensure
2587 * that connections close cleanly and that delayed or reordered
2588 * packets are properly discarded. These states SHOULD persist
2589 * for at least three times the current PTO interval...
2590 *
2591 * Rearm the idle timeout only one time when entering draining
2592 * state.
2593 */
2594 qc_idle_timer_do_rearm(qc);
2595 qc->flags |= QUIC_FL_CONN_DRAINING|QUIC_FL_CONN_IMMEDIATE_CLOSE;
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02002596 qc_notify_close(qc);
Frédéric Lécaille47756802022-03-25 09:12:16 +01002597 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002598 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002599 case QUIC_FT_HANDSHAKE_DONE:
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002600 if (qc_is_listener(ctx->qc))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002601 goto err;
2602
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002603 qc->state = QUIC_HS_ST_CONFIRMED;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002604 break;
2605 default:
2606 goto err;
2607 }
2608 }
2609
Frédéric Lécaille44ae7522022-03-21 12:18:00 +01002610 /* Flag this packet number space as having received a packet. */
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02002611 qel->pktns->flags |= QUIC_FL_PKTNS_PKT_RECEIVED;
Frédéric Lécaille44ae7522022-03-21 12:18:00 +01002612
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002613 if (fast_retrans)
2614 qc_prep_hdshk_fast_retrans(qc);
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002615
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002616 /* The server must switch from INITIAL to HANDSHAKE handshake state when it
2617 * has successfully parse a Handshake packet. The Initial encryption must also
2618 * be discarded.
2619 */
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002620 if (pkt->type == QUIC_PACKET_TYPE_HANDSHAKE && qc_is_listener(ctx->qc)) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002621 if (qc->state >= QUIC_HS_ST_SERVER_INITIAL) {
Frédéric Lécaille05bd92b2022-03-29 19:09:46 +02002622 if (!(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].tls_ctx.flags &
2623 QUIC_FL_TLS_SECRETS_DCD)) {
2624 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
2625 TRACE_PROTO("discarding Initial pktns", QUIC_EV_CONN_PRSHPKT, qc);
2626 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, qc);
2627 qc_set_timer(ctx->qc);
2628 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
2629 qc_release_pktns_frms(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns);
2630 }
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002631 if (qc->state < QUIC_HS_ST_SERVER_HANDSHAKE)
2632 qc->state = QUIC_HS_ST_SERVER_HANDSHAKE;
Frédéric Lécaille8c27de72021-09-20 11:00:46 +02002633 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002634 }
2635
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002636 TRACE_LEAVE(QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002637 return 1;
2638
2639 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002640 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002641 return 0;
2642}
2643
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01002644/* Must be called only by a <cbuf> writer (packet builder).
2645 * Return 1 if <cbuf> may be reused to build packets, depending on its <rd> and
2646 * <wr> internal indexes, 0 if not. When this is the case, reset <wr> writer
2647 * index after having marked the end of written data. This the responsability
2648 * of the caller to ensure there is enough room in <cbuf> to write the end of
2649 * data made of a uint16_t null field.
2650 *
2651 * +XXXXXXXXXXXXXXXXXXXXXXX---------------+ (cannot be reused)
2652 * ^ ^
2653 * r w
2654 *
2655 * +-------XXXXXXXXXXXXXXXX---------------+ (can be reused)
2656 * ^ ^
2657 * r w
2658
2659 * +--------------------------------------+ (empty buffer, can be reused)
2660 * ^
2661 * (r = w)
2662 *
2663 * +XXXXXXXXXXXXXXXXXXXXX-XXXXXXXXXXXXXXXX+ (full buffer, cannot be reused)
2664 * ^ ^
2665 * w r
2666 */
2667static int qc_may_reuse_cbuf(struct cbuf *cbuf)
2668{
2669 int rd = HA_ATOMIC_LOAD(&cbuf->rd);
2670
2671 /* We can reset the writer index only if in front of the reader index and
2672 * if the reader index is not null. Resetting the writer when the reader
2673 * index is null would empty the buffer.
2674 * XXX Note than the writer index cannot reach the reader index.
2675 * Only the reader index can reach the writer index.
2676 */
2677 if (rd && rd <= cbuf->wr) {
2678 /* Mark the end of contiguous data for the reader */
2679 write_u16(cb_wr(cbuf), 0);
2680 cb_add(cbuf, sizeof(uint16_t));
2681 cb_wr_reset(cbuf);
2682 return 1;
2683 }
2684
2685 return 0;
2686}
2687
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002688/* Write <dglen> datagram length and <pkt> first packet address into <cbuf> ring
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +05002689 * buffer. This is the responsibility of the caller to check there is enough
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002690 * room in <cbuf>. Also increase the <cbuf> write index consequently.
2691 * This function must be called only after having built a correct datagram.
2692 * Always succeeds.
2693 */
2694static inline void qc_set_dg(struct cbuf *cbuf,
2695 uint16_t dglen, struct quic_tx_packet *pkt)
2696{
2697 write_u16(cb_wr(cbuf), dglen);
2698 write_ptr(cb_wr(cbuf) + sizeof dglen, pkt);
2699 cb_add(cbuf, dglen + sizeof dglen + sizeof pkt);
2700}
2701
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002702/* Returns 1 if a packet may be built for <qc> from <qel> encryption level
2703 * with <frms> as ack-eliciting frame list to send, 0 if not.
2704 * <cc> must equal to 1 if an immediate close was asked, 0 if not.
2705 * <probe> must equalt to 1 if a probing packet is required, 0 if not.
2706 */
2707static int qc_may_build_pkt(struct quic_conn *qc, struct list *frms,
2708 struct quic_enc_level *qel, int cc, int probe)
2709{
2710 unsigned int must_ack =
2711 qel->pktns->rx.nb_aepkts_since_last_ack >= QUIC_MAX_RX_AEPKTS_SINCE_LAST_ACK;
2712
2713 /* Do not build any more packet if the TX secrets are not available or
2714 * if there is nothing to send, i.e. if no CONNECTION_CLOSE or ACK are required
2715 * and if there is no more packets to send upon PTO expiration
2716 * and if there is no more ack-eliciting frames to send or in flight
2717 * congestion control limit is reached for prepared data
2718 */
2719 if (!(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET) ||
2720 (!cc && !probe && !must_ack &&
2721 (LIST_ISEMPTY(frms) || qc->path->prep_in_flight >= qc->path->cwnd))) {
2722 TRACE_DEVEL("nothing more to do", QUIC_EV_CONN_PHPKTS, qc);
2723 return 0;
2724 }
2725
2726 return 1;
2727}
2728
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002729/* Prepare as much as possible short packets which are also datagrams into <qr>
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01002730 * ring buffer for the QUIC connection with <ctx> as I/O handler context from
2731 * <frms> list of prebuilt frames.
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002732 * A header made of two fields is added to each datagram: the datagram length followed
2733 * by the address of the first packet in this datagram.
Frédéric Lécaille728b30d2022-03-10 17:42:58 +01002734 * Returns the number of bytes prepared in packets if succeeded (may be 0),
2735 * or -1 if something wrong happened.
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002736 */
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01002737static int qc_prep_app_pkts(struct quic_conn *qc, struct qring *qr,
2738 struct list *frms)
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002739{
2740 struct quic_enc_level *qel;
2741 struct cbuf *cbuf;
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01002742 unsigned char *end_buf, *end, *pos;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002743 struct quic_tx_packet *pkt;
2744 size_t total;
2745 size_t dg_headlen;
2746
2747 TRACE_ENTER(QUIC_EV_CONN_PHPKTS, qc);
2748 /* Each datagram is prepended with its length followed by the
2749 * address of the first packet in the datagram.
2750 */
2751 dg_headlen = sizeof(uint16_t) + sizeof pkt;
2752 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
2753 total = 0;
2754 start:
2755 cbuf = qr->cbuf;
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01002756 pos = cb_wr(cbuf);
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002757 /* Leave at least <sizeof(uint16_t)> bytes at the end of this buffer
2758 * to ensure there is enough room to mark the end of prepared
2759 * contiguous data with a zero length.
2760 */
2761 end_buf = pos + cb_contig_space(cbuf) - sizeof(uint16_t);
2762 while (end_buf - pos >= (int)qc->path->mtu + dg_headlen) {
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002763 int err, probe, cc;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002764
2765 TRACE_POINT(QUIC_EV_CONN_PHPKTS, qc, qel);
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002766 probe = 0;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002767 cc = qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002768 /* We do not probe if an immediate close was asked */
2769 if (!cc)
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002770 probe = qel->pktns->tx.pto_probe;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002771
2772 if (!qc_may_build_pkt(qc, frms, qel, cc, probe))
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002773 break;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002774
2775 /* Leave room for the datagram header */
2776 pos += dg_headlen;
2777 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc)) {
2778 end = pos + QUIC_MIN(qc->path->mtu, 3 * qc->rx.bytes - qc->tx.prep_bytes);
2779 }
2780 else {
2781 end = pos + qc->path->mtu;
2782 }
2783
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01002784 pkt = qc_build_pkt(&pos, end, qel, frms, qc, 0, 0,
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002785 QUIC_PACKET_TYPE_SHORT, probe, cc, &err);
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002786 switch (err) {
2787 case -2:
2788 goto err;
2789 case -1:
Frédéric Lécaillee9a974a2022-03-13 19:19:12 +01002790 /* As we provide qc_build_pkt() with an enough big buffer to fulfill an
2791 * MTU, we are here because of the congestion control window. There is
2792 * no need to try to reuse this buffer.
2793 */
2794 goto out;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002795 default:
2796 break;
2797 }
2798
2799 /* This is to please to GCC. We cannot have (err >= 0 && !pkt) */
2800 if (!pkt)
2801 goto err;
2802
2803 total += pkt->len;
2804 /* Set the current datagram as prepared into <cbuf>. */
2805 qc_set_dg(cbuf, pkt->len, pkt);
2806 }
2807
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002808 /* Reset <wr> writer index if in front of <rd> index */
2809 if (end_buf - pos < (int)qc->path->mtu + dg_headlen) {
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002810 TRACE_DEVEL("buffer full", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01002811 if (qc_may_reuse_cbuf(cbuf))
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002812 goto start;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002813 }
2814
2815 out:
2816 TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, qc);
2817 return total;
2818
2819 err:
2820 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PHPKTS, qc);
2821 return -1;
2822}
2823
Frédéric Lécaillee2660e62021-11-23 11:36:51 +01002824/* Prepare as much as possible packets into <qr> ring buffer for
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002825 * the QUIC connection with <ctx> as I/O handler context, possibly concatenating
2826 * several packets in the same datagram. A header made of two fields is added
2827 * to each datagram: the datagram length followed by the address of the first
2828 * packet in this datagram.
Frédéric Lécaille728b30d2022-03-10 17:42:58 +01002829 * Returns the number of bytes prepared in packets if succeeded (may be 0),
2830 * or -1 if something wrong happened.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002831 */
Frédéric Lécailleee2b8b32022-01-03 11:14:30 +01002832static int qc_prep_pkts(struct quic_conn *qc, struct qring *qr,
2833 enum quic_tls_enc_level tel,
2834 enum quic_tls_enc_level next_tel)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002835{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002836 struct quic_enc_level *qel;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002837 struct cbuf *cbuf;
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01002838 unsigned char *end_buf, *end, *pos;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002839 struct quic_tx_packet *first_pkt, *cur_pkt, *prv_pkt;
2840 /* length of datagrams */
2841 uint16_t dglen;
2842 size_t total;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01002843 int padding;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002844 /* Each datagram is prepended with its length followed by the
2845 * address of the first packet in the datagram.
2846 */
2847 size_t dg_headlen = sizeof dglen + sizeof first_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002848
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002849 TRACE_ENTER(QUIC_EV_CONN_PHPKTS, qc);
2850
Frédéric Lécaille99942d62022-01-07 14:32:31 +01002851 total = 0;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002852 start:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002853 dglen = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01002854 padding = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002855 qel = &qc->els[tel];
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002856 cbuf = qr->cbuf;
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01002857 pos = cb_wr(cbuf);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002858 /* Leave at least <dglen> bytes at the end of this buffer
2859 * to ensure there is enough room to mark the end of prepared
2860 * contiguous data with a zero length.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002861 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002862 end_buf = pos + cb_contig_space(cbuf) - sizeof dglen;
2863 first_pkt = prv_pkt = NULL;
2864 while (end_buf - pos >= (int)qc->path->mtu + dg_headlen || prv_pkt) {
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002865 int err, probe, cc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002866 enum quic_pkt_type pkt_type;
2867
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002868 TRACE_POINT(QUIC_EV_CONN_PHPKTS, qc, qel);
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002869 probe = 0;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002870 cc = qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002871 /* We do not probe if an immediate close was asked */
2872 if (!cc)
Frédéric Lécaille94fca872022-01-19 18:54:18 +01002873 probe = qel->pktns->tx.pto_probe;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002874
2875 if (!qc_may_build_pkt(qc, &qel->pktns->tx.frms, qel, cc, probe)) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002876 if (prv_pkt)
2877 qc_set_dg(cbuf, dglen, first_pkt);
Frédéric Lécaille39ba1c32022-01-21 16:52:56 +01002878 /* Let's select the next encryption level */
2879 if (tel != next_tel && next_tel != QUIC_TLS_ENC_LEVEL_NONE) {
2880 tel = next_tel;
2881 qel = &qc->els[tel];
2882 /* Build a new datagram */
2883 prv_pkt = NULL;
2884 continue;
2885 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002886 break;
2887 }
2888
2889 pkt_type = quic_tls_level_pkt_type(tel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002890 if (!prv_pkt) {
2891 /* Leave room for the datagram header */
2892 pos += dg_headlen;
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002893 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc)) {
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +01002894 end = pos + QUIC_MIN(qc->path->mtu, 3 * qc->rx.bytes - qc->tx.prep_bytes);
2895 }
2896 else {
2897 end = pos + qc->path->mtu;
2898 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002899 }
2900
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01002901 cur_pkt = qc_build_pkt(&pos, end, qel, &qel->pktns->tx.frms,
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002902 qc, dglen, padding, pkt_type, probe, cc, &err);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002903 switch (err) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002904 case -2:
2905 goto err;
2906 case -1:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002907 /* If there was already a correct packet present, set the
2908 * current datagram as prepared into <cbuf>.
2909 */
Frédéric Lécaille05e30ee2022-02-28 16:55:32 +01002910 if (prv_pkt)
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002911 qc_set_dg(cbuf, dglen, first_pkt);
Frédéric Lécaille05e30ee2022-02-28 16:55:32 +01002912 goto stop_build;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002913 default:
Frédéric Lécaille63556772021-12-29 17:18:21 +01002914 break;
2915 }
Frédéric Lécaille67f47d02021-08-19 15:19:09 +02002916
Frédéric Lécaille63556772021-12-29 17:18:21 +01002917 /* This is to please to GCC. We cannot have (err >= 0 && !cur_pkt) */
2918 if (!cur_pkt)
2919 goto err;
2920
2921 total += cur_pkt->len;
2922 /* keep trace of the first packet in the datagram */
2923 if (!first_pkt)
2924 first_pkt = cur_pkt;
2925 /* Attach the current one to the previous one */
2926 if (prv_pkt)
2927 prv_pkt->next = cur_pkt;
2928 /* Let's say we have to build a new dgram */
2929 prv_pkt = NULL;
2930 dglen += cur_pkt->len;
2931 /* Client: discard the Initial encryption keys as soon as
2932 * a handshake packet could be built.
2933 */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002934 if (qc->state == QUIC_HS_ST_CLIENT_INITIAL &&
Frédéric Lécaille63556772021-12-29 17:18:21 +01002935 pkt_type == QUIC_PACKET_TYPE_HANDSHAKE) {
2936 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
2937 TRACE_PROTO("discarding Initial pktns", QUIC_EV_CONN_PHPKTS, qc);
2938 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, qc);
2939 qc_set_timer(qc);
Frédéric Lécaillea6255f52022-01-19 17:29:48 +01002940 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01002941 qc_release_pktns_frms(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns);
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002942 qc->state = QUIC_HS_ST_CLIENT_HANDSHAKE;
Frédéric Lécaille63556772021-12-29 17:18:21 +01002943 }
2944 /* If the data for the current encryption level have all been sent,
2945 * select the next level.
2946 */
2947 if ((tel == QUIC_TLS_ENC_LEVEL_INITIAL || tel == QUIC_TLS_ENC_LEVEL_HANDSHAKE) &&
Frédéric Lécailled6570e12022-03-29 17:41:57 +02002948 (LIST_ISEMPTY(&qel->pktns->tx.frms) && !qel->pktns->tx.pto_probe)) {
Frédéric Lécaille63556772021-12-29 17:18:21 +01002949 /* If QUIC_TLS_ENC_LEVEL_HANDSHAKE was already reached let's try QUIC_TLS_ENC_LEVEL_APP */
2950 if (tel == QUIC_TLS_ENC_LEVEL_HANDSHAKE && next_tel == tel)
2951 next_tel = QUIC_TLS_ENC_LEVEL_APP;
2952 tel = next_tel;
2953 qel = &qc->els[tel];
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01002954 if (!LIST_ISEMPTY(&qel->pktns->tx.frms)) {
Frédéric Lécaille63556772021-12-29 17:18:21 +01002955 /* If there is data for the next level, do not
2956 * consume a datagram.
2957 */
2958 prv_pkt = cur_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002959 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002960 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002961 /* If we have to build a new datagram, set the current datagram as
2962 * prepared into <cbuf>.
2963 */
2964 if (!prv_pkt) {
2965 qc_set_dg(cbuf, dglen, first_pkt);
2966 first_pkt = NULL;
2967 dglen = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01002968 padding = 0;
2969 }
2970 else if (prv_pkt->type == QUIC_TLS_ENC_LEVEL_INITIAL &&
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +01002971 (!qc_is_listener(qc) ||
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01002972 prv_pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)) {
2973 padding = 1;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002974 }
2975 }
2976
2977 stop_build:
2978 /* Reset <wr> writer index if in front of <rd> index */
2979 if (end_buf - pos < (int)qc->path->mtu + dg_headlen) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002980 TRACE_DEVEL("buffer full", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01002981 if (qc_may_reuse_cbuf(cbuf))
Frédéric Lécaille99942d62022-01-07 14:32:31 +01002982 goto start;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002983 }
2984
2985 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002986 TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002987 return total;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002988
2989 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002990 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002991 return -1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002992}
2993
2994/* Send the QUIC packets which have been prepared for QUIC connections
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002995 * from <qr> ring buffer with <ctx> as I/O handler context.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002996 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002997int qc_send_ppkts(struct qring *qr, struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002998{
2999 struct quic_conn *qc;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003000 struct cbuf *cbuf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003001
Amaury Denoyellec15dd922021-12-21 11:41:52 +01003002 qc = ctx->qc;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003003 cbuf = qr->cbuf;
3004 while (cb_contig_data(cbuf)) {
3005 unsigned char *pos;
3006 struct buffer tmpbuf = { };
3007 struct quic_tx_packet *first_pkt, *pkt, *next_pkt;
3008 uint16_t dglen;
3009 size_t headlen = sizeof dglen + sizeof first_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003010 unsigned int time_sent;
3011
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003012 pos = cb_rd(cbuf);
3013 dglen = read_u16(pos);
3014 /* End of prepared datagrams.
3015 * Reset the reader index only if in front of the writer index.
3016 */
3017 if (!dglen) {
3018 int wr = HA_ATOMIC_LOAD(&cbuf->wr);
3019
3020 if (wr && wr < cbuf->rd) {
3021 cb_rd_reset(cbuf);
3022 continue;
3023 }
3024 break;
3025 }
3026
3027 pos += sizeof dglen;
3028 first_pkt = read_ptr(pos);
3029 pos += sizeof first_pkt;
3030 tmpbuf.area = (char *)pos;
3031 tmpbuf.size = tmpbuf.data = dglen;
3032
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003033 TRACE_PROTO("to send", QUIC_EV_CONN_SPPKTS, qc);
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01003034 if(qc_snd_buf(qc, &tmpbuf, tmpbuf.data, 0) <= 0)
Amaury Denoyelle74f22922022-01-18 16:48:17 +01003035 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003036
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003037 cb_del(cbuf, dglen + headlen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003038 qc->tx.bytes += tmpbuf.data;
3039 time_sent = now_ms;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003040
3041 for (pkt = first_pkt; pkt; pkt = next_pkt) {
3042 pkt->time_sent = time_sent;
3043 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING) {
3044 pkt->pktns->tx.time_of_last_eliciting = time_sent;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01003045 qc->path->ifae_pkts++;
Frédéric Lécaille530601c2022-03-10 15:11:57 +01003046 if (qc->flags & QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ)
3047 qc_idle_timer_rearm(qc, 0);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003048 }
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02003049 if (!(qc->flags & QUIC_FL_CONN_CLOSING) &&
3050 (pkt->flags & QUIC_FL_TX_PACKET_CC)) {
3051 qc->flags |= QUIC_FL_CONN_CLOSING;
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02003052 qc_notify_close(qc);
3053
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02003054 /* RFC 9000 10.2. Immediate Close:
3055 * The closing and draining connection states exist to ensure
3056 * that connections close cleanly and that delayed or reordered
3057 * packets are properly discarded. These states SHOULD persist
3058 * for at least three times the current PTO interval...
3059 *
3060 * Rearm the idle timeout only one time when entering closing
3061 * state.
3062 */
3063 qc_idle_timer_do_rearm(qc);
3064 if (qc->timer_task) {
3065 task_destroy(qc->timer_task);
3066 qc->timer_task = NULL;
3067 }
3068 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003069 qc->path->in_flight += pkt->in_flight_len;
3070 pkt->pktns->tx.in_flight += pkt->in_flight_len;
3071 if (pkt->in_flight_len)
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003072 qc_set_timer(qc);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003073 TRACE_PROTO("sent pkt", QUIC_EV_CONN_SPPKTS, qc, pkt);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003074 next_pkt = pkt->next;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01003075 quic_tx_packet_refinc(pkt);
Frédéric Lécaille0eb60c52021-07-19 14:48:36 +02003076 eb64_insert(&pkt->pktns->tx.pkts, &pkt->pn_node);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003077 }
3078 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003079
3080 return 1;
3081}
3082
3083/* Build all the frames which must be sent just after the handshake have succeeded.
3084 * This is essentially NEW_CONNECTION_ID frames. A QUIC server must also send
3085 * a HANDSHAKE_DONE frame.
3086 * Return 1 if succeeded, 0 if not.
3087 */
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02003088static int quic_build_post_handshake_frames(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003089{
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003090 int i, first, max;
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02003091 struct quic_enc_level *qel;
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003092 struct quic_frame *frm, *frmbak;
3093 struct list frm_list = LIST_HEAD_INIT(frm_list);
3094 struct eb64_node *node;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003095
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02003096 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003097 /* Only servers must send a HANDSHAKE_DONE frame. */
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +01003098 if (qc_is_listener(qc)) {
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003099 frm = pool_zalloc(pool_head_quic_frame);
Frédéric Lécaille153d4a82021-01-06 12:12:39 +01003100 if (!frm)
3101 return 0;
3102
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003103 frm->type = QUIC_FT_HANDSHAKE_DONE;
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003104 LIST_APPEND(&frm_list, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003105 }
3106
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003107 first = 1;
3108 max = qc->tx.params.active_connection_id_limit;
3109 for (i = first; i < max; i++) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003110 struct quic_connection_id *cid;
3111
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003112 frm = pool_zalloc(pool_head_quic_frame);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003113 if (!frm)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003114 goto err;
3115
Amaury Denoyelle0442efd2022-01-28 16:02:13 +01003116 cid = new_quic_cid(&qc->cids, qc, i);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003117 if (!cid)
3118 goto err;
3119
Frédéric Lécaille74904a42022-01-27 15:35:56 +01003120 /* insert the allocated CID in the receiver datagram handler tree */
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01003121 ebmb_insert(&quic_dghdlrs[tid].cids, &cid->node, cid->cid.len);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003122
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003123 quic_connection_id_to_frm_cpy(frm, cid);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003124 LIST_APPEND(&frm_list, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003125 }
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003126
3127 LIST_SPLICE(&qel->pktns->tx.frms, &frm_list);
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003128 qc->flags |= QUIC_FL_CONN_POST_HANDSHAKE_FRAMES_BUILT;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003129
3130 return 1;
3131
3132 err:
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003133 /* free the frames */
3134 list_for_each_entry_safe(frm, frmbak, &frm_list, list)
3135 pool_free(pool_head_quic_frame, frm);
3136
3137 node = eb64_first(&qc->cids);
3138 while (node) {
3139 struct quic_connection_id *cid;
3140
Frédéric Lécaille411aa6d2022-03-21 12:01:22 +01003141
3142 cid = eb64_entry(&node->node, struct quic_connection_id, seq_num);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003143 if (cid->seq_num.key >= max)
3144 break;
3145
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003146 if (cid->seq_num.key < first)
3147 continue;
3148
Frédéric Lécaille411aa6d2022-03-21 12:01:22 +01003149 node = eb64_next(node);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003150 ebmb_delete(&cid->node);
3151 eb64_delete(&cid->seq_num);
3152 pool_free(pool_head_quic_connection_id, cid);
3153 }
3154
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003155 return 0;
3156}
3157
3158/* Deallocate <l> list of ACK ranges. */
Frédéric Lécaille64670882022-04-01 11:57:19 +02003159void quic_free_arngs(struct quic_arngs *arngs)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003160{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003161 struct eb64_node *n;
3162 struct quic_arng_node *ar;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003163
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003164 n = eb64_first(&arngs->root);
3165 while (n) {
3166 struct eb64_node *next;
3167
3168 ar = eb64_entry(&n->node, struct quic_arng_node, first);
3169 next = eb64_next(n);
3170 eb64_delete(n);
Frédéric Lécaille82851bd2022-04-04 13:43:58 +02003171 pool_free(pool_head_quic_arng, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003172 n = next;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003173 }
3174}
3175
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003176/* Return the gap value between <p> and <q> ACK ranges where <q> follows <p> in
3177 * descending order.
3178 */
3179static inline size_t sack_gap(struct quic_arng_node *p,
3180 struct quic_arng_node *q)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003181{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003182 return p->first.key - q->last - 2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003183}
3184
3185
3186/* Remove the last elements of <ack_ranges> list of ack range updating its
3187 * encoded size until it goes below <limit>.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003188 * Returns 1 if succeeded, 0 if not (no more element to remove).
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003189 */
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003190static int quic_rm_last_ack_ranges(struct quic_arngs *arngs, size_t limit)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003191{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003192 struct eb64_node *last, *prev;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003193
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003194 last = eb64_last(&arngs->root);
3195 while (last && arngs->enc_sz > limit) {
3196 struct quic_arng_node *last_node, *prev_node;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003197
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003198 prev = eb64_prev(last);
3199 if (!prev)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003200 return 0;
3201
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003202 last_node = eb64_entry(&last->node, struct quic_arng_node, first);
3203 prev_node = eb64_entry(&prev->node, struct quic_arng_node, first);
3204 arngs->enc_sz -= quic_int_getsize(last_node->last - last_node->first.key);
3205 arngs->enc_sz -= quic_int_getsize(sack_gap(prev_node, last_node));
3206 arngs->enc_sz -= quic_decint_size_diff(arngs->sz);
3207 --arngs->sz;
3208 eb64_delete(last);
3209 pool_free(pool_head_quic_arng, last);
3210 last = prev;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003211 }
3212
3213 return 1;
3214}
3215
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003216/* Set the encoded size of <arngs> QUIC ack ranges. */
3217static void quic_arngs_set_enc_sz(struct quic_arngs *arngs)
3218{
3219 struct eb64_node *node, *next;
3220 struct quic_arng_node *ar, *ar_next;
3221
3222 node = eb64_last(&arngs->root);
3223 if (!node)
3224 return;
3225
3226 ar = eb64_entry(&node->node, struct quic_arng_node, first);
3227 arngs->enc_sz = quic_int_getsize(ar->last) +
3228 quic_int_getsize(ar->last - ar->first.key) + quic_int_getsize(arngs->sz - 1);
3229
3230 while ((next = eb64_prev(node))) {
3231 ar_next = eb64_entry(&next->node, struct quic_arng_node, first);
3232 arngs->enc_sz += quic_int_getsize(sack_gap(ar, ar_next)) +
3233 quic_int_getsize(ar_next->last - ar_next->first.key);
3234 node = next;
3235 ar = eb64_entry(&node->node, struct quic_arng_node, first);
3236 }
3237}
3238
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003239/* Insert <ar> ack range into <argns> tree of ack ranges.
3240 * Returns the ack range node which has been inserted if succeeded, NULL if not.
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003241 */
3242static inline
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003243struct quic_arng_node *quic_insert_new_range(struct quic_arngs *arngs,
3244 struct quic_arng *ar)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003245{
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003246 struct quic_arng_node *new_ar;
3247
3248 new_ar = pool_alloc(pool_head_quic_arng);
3249 if (new_ar) {
3250 new_ar->first.key = ar->first;
3251 new_ar->last = ar->last;
3252 eb64_insert(&arngs->root, &new_ar->first);
3253 arngs->sz++;
3254 }
3255
3256 return new_ar;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003257}
3258
3259/* Update <arngs> tree of ACK ranges with <ar> as new ACK range value.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003260 * Note that this function computes the number of bytes required to encode
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003261 * this tree of ACK ranges in descending order.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003262 *
3263 * Descending order
3264 * ------------->
3265 * range1 range2
3266 * ..........|--------|..............|--------|
3267 * ^ ^ ^ ^
3268 * | | | |
3269 * last1 first1 last2 first2
3270 * ..........+--------+--------------+--------+......
3271 * diff1 gap12 diff2
3272 *
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003273 * To encode the previous list of ranges we must encode integers as follows in
3274 * descending order:
3275 * enc(last2),enc(diff2),enc(gap12),enc(diff1)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003276 * with diff1 = last1 - first1
3277 * diff2 = last2 - first2
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003278 * gap12 = first1 - last2 - 2 (>= 0)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003279 *
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003280 */
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003281int quic_update_ack_ranges_list(struct quic_arngs *arngs,
3282 struct quic_arng *ar)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003283{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003284 struct eb64_node *le;
3285 struct quic_arng_node *new_node;
3286 struct eb64_node *new;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003287
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003288 new = NULL;
3289 if (eb_is_empty(&arngs->root)) {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003290 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003291 if (!new_node)
3292 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003293
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003294 goto out;
3295 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003296
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003297 le = eb64_lookup_le(&arngs->root, ar->first);
3298 if (!le) {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003299 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003300 if (!new_node)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003301 return 0;
Frédéric Lécaille0e257832021-11-16 10:54:19 +01003302
3303 new = &new_node->first;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003304 }
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003305 else {
3306 struct quic_arng_node *le_ar =
3307 eb64_entry(&le->node, struct quic_arng_node, first);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003308
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003309 /* Already existing range */
Frédéric Lécailled3f4dd82021-06-02 15:36:12 +02003310 if (le_ar->last >= ar->last)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003311 return 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003312
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003313 if (le_ar->last + 1 >= ar->first) {
3314 le_ar->last = ar->last;
3315 new = le;
3316 new_node = le_ar;
3317 }
3318 else {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003319 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003320 if (!new_node)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003321 return 0;
Frédéric Lécaille8ba42762021-06-02 17:40:09 +02003322
3323 new = &new_node->first;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003324 }
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003325 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003326
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003327 /* Verify that the new inserted node does not overlap the nodes
3328 * which follow it.
3329 */
3330 if (new) {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003331 struct eb64_node *next;
3332 struct quic_arng_node *next_node;
3333
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003334 while ((next = eb64_next(new))) {
3335 next_node =
3336 eb64_entry(&next->node, struct quic_arng_node, first);
Frédéric Lécaillec825eba2021-06-02 17:38:13 +02003337 if (new_node->last + 1 < next_node->first.key)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003338 break;
3339
3340 if (next_node->last > new_node->last)
3341 new_node->last = next_node->last;
3342 eb64_delete(next);
Frédéric Lécaillebaea2842021-06-02 15:04:03 +02003343 pool_free(pool_head_quic_arng, next_node);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003344 /* Decrement the size of these ranges. */
3345 arngs->sz--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003346 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003347 }
3348
Frédéric Lécaille82b86522021-08-10 09:54:03 +02003349 out:
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003350 quic_arngs_set_enc_sz(arngs);
3351
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003352 return 1;
3353}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003354/* Remove the header protection of packets at <el> encryption level.
3355 * Always succeeds.
3356 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003357static 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 +01003358{
3359 struct quic_tls_ctx *tls_ctx;
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003360 struct quic_rx_packet *pqpkt;
3361 struct mt_list *pkttmp1, pkttmp2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003362 struct quic_enc_level *app_qel;
3363
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003364 TRACE_ENTER(QUIC_EV_CONN_ELRMHP, qc);
3365 app_qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003366 /* A server must not process incoming 1-RTT packets before the handshake is complete. */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003367 if (el == app_qel && qc_is_listener(qc) && qc->state < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003368 TRACE_PROTO("hp not removed (handshake not completed)",
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003369 QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003370 goto out;
3371 }
3372 tls_ctx = &el->tls_ctx;
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003373 mt_list_for_each_entry_safe(pqpkt, &el->rx.pqpkts, list, pkttmp1, pkttmp2) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003374 if (!qc_do_rm_hp(qc, pqpkt, tls_ctx, el->pktns->rx.largest_pn,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003375 pqpkt->data + pqpkt->pn_offset,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003376 pqpkt->data, pqpkt->data + pqpkt->len)) {
3377 TRACE_PROTO("hp removing error", QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003378 /* XXX TO DO XXX */
3379 }
3380 else {
3381 /* The AAD includes the packet number field */
3382 pqpkt->aad_len = pqpkt->pn_offset + pqpkt->pnl;
3383 /* Store the packet into the tree of packets to decrypt. */
3384 pqpkt->pn_node.key = pqpkt->pn;
Frédéric Lécaille98cdeb22021-07-26 16:38:14 +02003385 HA_RWLOCK_WRLOCK(QUIC_LOCK, &el->rx.pkts_rwlock);
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02003386 eb64_insert(&el->rx.pkts, &pqpkt->pn_node);
3387 quic_rx_packet_refinc(pqpkt);
Frédéric Lécaille98cdeb22021-07-26 16:38:14 +02003388 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &el->rx.pkts_rwlock);
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003389 TRACE_PROTO("hp removed", QUIC_EV_CONN_ELRMHP, qc, pqpkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003390 }
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003391 MT_LIST_DELETE_SAFE(pkttmp1);
3392 quic_rx_packet_refdec(pqpkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003393 }
3394
3395 out:
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003396 TRACE_LEAVE(QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003397}
3398
3399/* Process all the CRYPTO frame at <el> encryption level.
3400 * Return 1 if succeeded, 0 if not.
3401 */
3402static inline int qc_treat_rx_crypto_frms(struct quic_enc_level *el,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02003403 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003404{
3405 struct eb64_node *node;
3406
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003407 node = eb64_first(&el->rx.crypto.frms);
3408 while (node) {
3409 struct quic_rx_crypto_frm *cf;
3410
3411 cf = eb64_entry(&node->node, struct quic_rx_crypto_frm, offset_node);
3412 if (cf->offset_node.key != el->rx.crypto.offset)
3413 break;
3414
3415 if (!qc_provide_cdata(el, ctx, cf->data, cf->len, cf->pkt, cf))
3416 goto err;
3417
3418 node = eb64_next(node);
3419 quic_rx_packet_refdec(cf->pkt);
3420 eb64_delete(&cf->offset_node);
3421 pool_free(pool_head_quic_rx_crypto_frm, cf);
3422 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003423 return 1;
3424
3425 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003426 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RXCDATA, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003427 return 0;
3428}
3429
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003430/* Process all the packets at <el> and <next_el> encryption level.
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +05003431 * 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 +02003432 * as pointer value.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003433 * Return 1 if succeeded, 0 if not.
3434 */
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003435int qc_treat_rx_pkts(struct quic_enc_level *cur_el, struct quic_enc_level *next_el,
3436 struct ssl_sock_ctx *ctx, int force_ack)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003437{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003438 struct eb64_node *node;
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003439 int64_t largest_pn = -1;
Amaury Denoyelle29632b82022-01-18 16:50:58 +01003440 struct quic_conn *qc = ctx->qc;
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003441 struct quic_enc_level *qel = cur_el;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003442
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003443 TRACE_ENTER(QUIC_EV_CONN_ELRXPKTS, ctx->qc);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003444 qel = cur_el;
3445 next_tel:
3446 if (!qel)
3447 goto out;
3448
3449 HA_RWLOCK_WRLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock);
3450 node = eb64_first(&qel->rx.pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003451 while (node) {
3452 struct quic_rx_packet *pkt;
3453
3454 pkt = eb64_entry(&node->node, struct quic_rx_packet, pn_node);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003455 TRACE_PROTO("new packet", QUIC_EV_CONN_ELRXPKTS,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003456 ctx->qc, pkt, NULL, ctx->ssl);
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01003457 if (!qc_pkt_decrypt(pkt, qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003458 /* Drop the packet */
3459 TRACE_PROTO("packet decryption failed -> dropped",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003460 QUIC_EV_CONN_ELRXPKTS, ctx->qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003461 }
3462 else {
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003463 if (!qc_parse_pkt_frms(pkt, ctx, qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003464 /* Drop the packet */
3465 TRACE_PROTO("packet parsing failed -> dropped",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003466 QUIC_EV_CONN_ELRXPKTS, ctx->qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003467 }
3468 else {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003469 struct quic_arng ar = { .first = pkt->pn, .last = pkt->pn };
3470
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003471 if (pkt->flags & QUIC_FL_RX_PACKET_ACK_ELICITING || force_ack) {
3472 qel->pktns->flags |= QUIC_FL_PKTNS_ACK_REQUIRED;
3473 qel->pktns->rx.nb_aepkts_since_last_ack++;
Frédéric Lécaille530601c2022-03-10 15:11:57 +01003474 qc_idle_timer_rearm(qc, 1);
3475 }
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003476 if (pkt->pn > largest_pn)
3477 largest_pn = pkt->pn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003478 /* Update the list of ranges to acknowledge. */
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003479 if (!quic_update_ack_ranges_list(&qel->pktns->rx.arngs, &ar))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003480 TRACE_DEVEL("Could not update ack range list",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003481 QUIC_EV_CONN_ELRXPKTS, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003482 }
3483 }
3484 node = eb64_next(node);
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02003485 eb64_delete(&pkt->pn_node);
3486 quic_rx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003487 }
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003488 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003489
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003490 /* Update the largest packet number. */
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02003491 if (largest_pn != -1 && largest_pn > qel->pktns->rx.largest_pn)
3492 qel->pktns->rx.largest_pn = largest_pn;
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003493 if (!qc_treat_rx_crypto_frms(qel, ctx))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003494 goto err;
3495
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003496 if (qel == cur_el) {
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003497 BUG_ON(qel == next_el);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003498 qel = next_el;
3499 goto next_tel;
3500 }
3501
3502 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003503 TRACE_LEAVE(QUIC_EV_CONN_ELRXPKTS, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003504 return 1;
3505
3506 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003507 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ELRXPKTS, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003508 return 0;
3509}
3510
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003511/* Check if it's possible to remove header protection for packets related to
3512 * encryption level <qel>. If <qel> is NULL, assume it's false.
3513 *
3514 * Return true if the operation is possible else false.
3515 */
3516static int qc_qel_may_rm_hp(struct quic_conn *qc, struct quic_enc_level *qel)
3517{
3518 enum quic_tls_enc_level tel;
3519
3520 if (!qel)
3521 return 0;
3522
3523 tel = ssl_to_quic_enc_level(qel->level);
3524
3525 /* check if tls secrets are available */
Frédéric Lécaillebd242082022-02-25 17:17:59 +01003526 if (qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD) {
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003527 TRACE_DEVEL("Discarded keys", QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaille51c90652022-02-22 11:39:14 +01003528 return 0;
3529 }
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003530
Frédéric Lécaillebd242082022-02-25 17:17:59 +01003531 if (!(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET))
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003532 return 0;
3533
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01003534 /* check if the connection layer is ready before using app level */
Frédéric Lécaille298931d2022-01-28 21:41:06 +01003535 if ((tel == QUIC_TLS_ENC_LEVEL_APP || tel == QUIC_TLS_ENC_LEVEL_EARLY_DATA) &&
Frédéric Lécaille12aa26b2022-03-21 11:37:13 +01003536 qc->mux_state == QC_MUX_NULL)
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003537 return 0;
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003538
3539 return 1;
3540}
3541
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003542/* Sends application level packets from <qc> QUIC connection */
Frédéric Lécaillec2f561c2022-02-25 17:46:07 +01003543int qc_send_app_pkts(struct quic_conn *qc, struct list *frms)
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003544{
3545 int ret;
3546 struct qring *qr;
3547
3548 qr = MT_LIST_POP(qc->tx.qring_list, typeof(qr), mt_list);
3549 if (!qr)
3550 /* Never happens */
3551 return 1;
3552
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01003553 ret = qc_prep_app_pkts(qc, qr, frms);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003554 if (ret == -1)
3555 goto err;
3556 else if (ret == 0)
3557 goto out;
3558
3559 if (!qc_send_ppkts(qr, qc->xprt_ctx))
3560 goto err;
3561
3562 out:
3563 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
3564 return 1;
3565
3566 err:
3567 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
3568 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_IO_CB, qc);
3569 return 0;
3570}
3571
3572/* QUIC connection packet handler task (post handshake) */
3573static struct task *quic_conn_app_io_cb(struct task *t, void *context, unsigned int state)
3574{
3575 struct ssl_sock_ctx *ctx;
3576 struct quic_conn *qc;
3577 struct quic_enc_level *qel;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003578
3579
3580 ctx = context;
3581 qc = ctx->qc;
3582 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003583
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003584 TRACE_PROTO("state", QUIC_EV_CONN_IO_CB, qc, &qc->state);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003585
3586 if (!MT_LIST_ISEMPTY(&qel->rx.pqpkts) && qc_qel_may_rm_hp(qc, qel))
3587 qc_rm_hp_pkts(qc, qel);
3588
3589 if (!qc_treat_rx_pkts(qel, NULL, ctx, 0))
3590 goto err;
3591
Frédéric Lécaille47756802022-03-25 09:12:16 +01003592 if ((qc->flags & QUIC_FL_CONN_DRAINING) &&
3593 !(qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE))
3594 goto out;
3595
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01003596 if (!qc_send_app_pkts(qc, &qel->pktns->tx.frms))
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003597 goto err;
3598
Frédéric Lécaille47756802022-03-25 09:12:16 +01003599out:
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003600 return t;
3601
3602 err:
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003603 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_IO_CB, qc, &qc->state);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003604 return t;
3605}
3606
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003607/* QUIC connection packet handler task. */
3608struct task *quic_conn_io_cb(struct task *t, void *context, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003609{
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003610 int ret, ssl_err;
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003611 struct ssl_sock_ctx *ctx;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02003612 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003613 enum quic_tls_enc_level tel, next_tel;
3614 struct quic_enc_level *qel, *next_qel;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003615 struct qring *qr; // Tx ring
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01003616 int st, force_ack, zero_rtt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003617
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003618 ctx = context;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01003619 qc = ctx->qc;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003620 TRACE_ENTER(QUIC_EV_CONN_IO_CB, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003621 qr = NULL;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003622 st = qc->state;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003623 TRACE_PROTO("state", QUIC_EV_CONN_IO_CB, qc, &st);
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003624 if (qc->flags & QUIC_FL_CONN_IO_CB_WAKEUP) {
3625 qc->flags &= ~QUIC_FL_CONN_IO_CB_WAKEUP;
Frédéric Lécaille6b663152022-01-04 17:03:11 +01003626 /* The I/O handler has been woken up by the dgram listener
3627 * after the anti-amplification was reached.
3628 */
3629 qc_set_timer(qc);
3630 if (tick_isset(qc->timer) && tick_is_lt(qc->timer, now_ms))
3631 task_wakeup(qc->timer_task, TASK_WOKEN_MSG);
3632 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003633 ssl_err = SSL_ERROR_NONE;
Frédéric Lécaille4137b2d2021-12-17 18:24:16 +01003634 zero_rtt = st < QUIC_HS_ST_COMPLETE &&
3635 (!MT_LIST_ISEMPTY(&qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA].rx.pqpkts) ||
3636 qc_el_rx_pkts(&qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA]));
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003637 start:
Frédéric Lécaille917a7db2022-01-03 17:00:35 +01003638 if (st >= QUIC_HS_ST_COMPLETE &&
3639 qc_el_rx_pkts(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE])) {
3640 TRACE_PROTO("remaining Handshake packets", QUIC_EV_CONN_PHPKTS, qc);
3641 /* There may be remaining Handshake packets to treat and acknowledge. */
3642 tel = QUIC_TLS_ENC_LEVEL_HANDSHAKE;
3643 next_tel = QUIC_TLS_ENC_LEVEL_APP;
3644 }
3645 else if (!quic_get_tls_enc_levels(&tel, &next_tel, st, zero_rtt))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003646 goto err;
3647
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02003648 qel = &qc->els[tel];
Frédéric Lécaillef7980962021-08-19 17:35:21 +02003649 next_qel = next_tel == QUIC_TLS_ENC_LEVEL_NONE ? NULL : &qc->els[next_tel];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003650
3651 next_level:
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003652 /* Treat packets waiting for header packet protection decryption */
3653 if (!MT_LIST_ISEMPTY(&qel->rx.pqpkts) && qc_qel_may_rm_hp(qc, qel))
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003654 qc_rm_hp_pkts(qc, qel);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003655
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003656 force_ack = qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL] ||
3657 qel == &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
3658 if (!qc_treat_rx_pkts(qel, next_qel, ctx, force_ack))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003659 goto err;
3660
Frédéric Lécaille47756802022-03-25 09:12:16 +01003661 if ((qc->flags & QUIC_FL_CONN_DRAINING) &&
3662 !(qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE))
3663 goto out;
3664
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01003665 if (zero_rtt && next_qel && !MT_LIST_ISEMPTY(&next_qel->rx.pqpkts) &&
Frédéric Lécaillebd242082022-02-25 17:17:59 +01003666 (next_qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET)) {
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01003667 qel = next_qel;
3668 next_qel = NULL;
3669 goto next_level;
3670 }
3671
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003672 st = qc->state;
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01003673 if (st >= QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003674 if (!(qc->flags & QUIC_FL_CONN_POST_HANDSHAKE_FRAMES_BUILT) &&
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01003675 !quic_build_post_handshake_frames(qc))
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003676 goto err;
Frédéric Lécaillefee7ba62021-12-06 12:09:08 +01003677
Frédéric Lécaillebd242082022-02-25 17:17:59 +01003678 if (!(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].tls_ctx.flags &
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01003679 QUIC_FL_TLS_SECRETS_DCD)) {
3680 /* Discard the Handshake keys. */
3681 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
3682 TRACE_PROTO("discarding Handshake pktns", QUIC_EV_CONN_PHPKTS, qc);
3683 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns, qc);
3684 qc_set_timer(qc);
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01003685 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01003686 qc_release_pktns_frms(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns);
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01003687 }
3688
3689 if (qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) {
3690 /* There may be remaining handshake to build (acks) */
3691 st = QUIC_HS_ST_SERVER_HANDSHAKE;
3692 }
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003693 }
3694
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003695 if (!qr)
3696 qr = MT_LIST_POP(qc->tx.qring_list, typeof(qr), mt_list);
Frédéric Lécaillebec186d2022-01-12 15:32:55 +01003697 /* A listener does not send any O-RTT packet. O-RTT packet number space must not
3698 * be considered.
3699 */
3700 if (!quic_get_tls_enc_levels(&tel, &next_tel, st, 0))
Frédéric Lécailleee2b8b32022-01-03 11:14:30 +01003701 goto err;
3702 ret = qc_prep_pkts(qc, qr, tel, next_tel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003703 if (ret == -1)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003704 goto err;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003705 else if (ret == 0)
3706 goto skip_send;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003707
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003708 if (!qc_send_ppkts(qr, ctx))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003709 goto err;
3710
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003711 skip_send:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003712 /* Check if there is something to do for the next level.
3713 */
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003714 if (next_qel && next_qel != qel &&
Frédéric Lécaillebd242082022-02-25 17:17:59 +01003715 (next_qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET) &&
Frédéric Lécaille7d807c92021-12-06 08:56:38 +01003716 (!MT_LIST_ISEMPTY(&next_qel->rx.pqpkts) || qc_el_rx_pkts(next_qel))) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003717 qel = next_qel;
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003718 next_qel = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003719 goto next_level;
3720 }
3721
Frédéric Lécaille47756802022-03-25 09:12:16 +01003722 out:
3723 if (qr)
3724 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003725 TRACE_LEAVE(QUIC_EV_CONN_IO_CB, qc, &st);
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003726 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003727
3728 err:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003729 if (qr)
3730 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003731 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_IO_CB, qc, &st, &ssl_err);
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003732 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003733}
3734
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003735/* Uninitialize <qel> QUIC encryption level. Never fails. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003736static void quic_conn_enc_level_uninit(struct quic_enc_level *qel)
3737{
3738 int i;
3739
3740 for (i = 0; i < qel->tx.crypto.nb_buf; i++) {
3741 if (qel->tx.crypto.bufs[i]) {
3742 pool_free(pool_head_quic_crypto_buf, qel->tx.crypto.bufs[i]);
3743 qel->tx.crypto.bufs[i] = NULL;
3744 }
3745 }
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003746 ha_free(&qel->tx.crypto.bufs);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003747}
3748
3749/* Initialize QUIC TLS encryption level with <level<> as level for <qc> QUIC
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003750 * connection allocating everything needed.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003751 * Returns 1 if succeeded, 0 if not.
3752 */
3753static int quic_conn_enc_level_init(struct quic_conn *qc,
3754 enum quic_tls_enc_level level)
3755{
3756 struct quic_enc_level *qel;
3757
3758 qel = &qc->els[level];
3759 qel->level = quic_to_ssl_enc_level(level);
3760 qel->tls_ctx.rx.aead = qel->tls_ctx.tx.aead = NULL;
3761 qel->tls_ctx.rx.md = qel->tls_ctx.tx.md = NULL;
3762 qel->tls_ctx.rx.hp = qel->tls_ctx.tx.hp = NULL;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +01003763 qel->tls_ctx.flags = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003764
3765 qel->rx.pkts = EB_ROOT;
Frédéric Lécaille98cdeb22021-07-26 16:38:14 +02003766 HA_RWLOCK_INIT(&qel->rx.pkts_rwlock);
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003767 MT_LIST_INIT(&qel->rx.pqpkts);
Frédéric Lécaille9054d1b2021-07-26 16:23:53 +02003768 qel->rx.crypto.offset = 0;
3769 qel->rx.crypto.frms = EB_ROOT_UNIQUE;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003770
3771 /* Allocate only one buffer. */
3772 qel->tx.crypto.bufs = malloc(sizeof *qel->tx.crypto.bufs);
3773 if (!qel->tx.crypto.bufs)
3774 goto err;
3775
3776 qel->tx.crypto.bufs[0] = pool_alloc(pool_head_quic_crypto_buf);
3777 if (!qel->tx.crypto.bufs[0])
3778 goto err;
3779
3780 qel->tx.crypto.bufs[0]->sz = 0;
3781 qel->tx.crypto.nb_buf = 1;
3782
3783 qel->tx.crypto.sz = 0;
3784 qel->tx.crypto.offset = 0;
3785
3786 return 1;
3787
3788 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003789 ha_free(&qel->tx.crypto.bufs);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003790 return 0;
3791}
3792
Frédéric Lécaillef293b692022-03-08 16:59:54 +01003793/* Release the quic_conn <qc>. The connection is removed from the CIDs tree.
3794 * The connection tasklet is killed.
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01003795 *
Frédéric Lécaillef293b692022-03-08 16:59:54 +01003796 * This function must only be called by the thread responsible of the quic_conn
3797 * tasklet.
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01003798 */
Frédéric Lécaillef293b692022-03-08 16:59:54 +01003799static void quic_conn_release(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003800{
3801 int i;
Frédéric Lécaillef293b692022-03-08 16:59:54 +01003802 struct ssl_sock_ctx *conn_ctx;
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02003803 struct eb64_node *node;
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02003804 struct quic_tls_ctx *app_tls_ctx;
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02003805
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02003806 /* We must not free the quic-conn if the MUX is still allocated. */
3807 BUG_ON(qc->mux_state == QC_MUX_READY);
3808
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02003809 /* free remaining stream descriptors */
3810 node = eb64_first(&qc->streams_by_id);
3811 while (node) {
3812 struct qc_stream_desc *stream;
3813
3814 stream = eb64_entry(node, struct qc_stream_desc, by_id);
3815 node = eb64_next(node);
3816
Amaury Denoyellec9acc312022-04-01 16:41:21 +02003817 /* all streams attached to the quic-conn are released, so
3818 * qc_stream_desc_free will liberate the stream instance.
3819 */
3820 BUG_ON(!stream->release);
3821 qc_stream_desc_free(stream);
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02003822 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003823
Frédéric Lécaille530601c2022-03-10 15:11:57 +01003824 if (qc->idle_timer_task) {
3825 task_destroy(qc->idle_timer_task);
3826 qc->idle_timer_task = NULL;
3827 }
3828
Frédéric Lécaillef293b692022-03-08 16:59:54 +01003829 if (qc->timer_task) {
3830 task_destroy(qc->timer_task);
3831 qc->timer_task = NULL;
3832 }
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003833
Frédéric Lécaillef293b692022-03-08 16:59:54 +01003834 /* remove the connection from receiver cids trees */
3835 ebmb_delete(&qc->odcid_node);
3836 ebmb_delete(&qc->scid_node);
3837 free_quic_conn_cids(qc);
Amaury Denoyelle2af19852021-09-30 11:03:28 +02003838
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003839 conn_ctx = qc->xprt_ctx;
Amaury Denoyelle2d9794b2022-01-20 17:43:20 +01003840 if (conn_ctx) {
Frédéric Lécaillef293b692022-03-08 16:59:54 +01003841 tasklet_free(conn_ctx->wait_event.tasklet);
Amaury Denoyelle2d9794b2022-01-20 17:43:20 +01003842 SSL_free(conn_ctx->ssl);
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01003843 pool_free(pool_head_quic_conn_ctx, conn_ctx);
Amaury Denoyelle2d9794b2022-01-20 17:43:20 +01003844 }
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01003845
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02003846 quic_tls_ku_free(qc);
3847 for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++) {
3848 quic_tls_ctx_secs_free(&qc->els[i].tls_ctx);
Amaury Denoyelle67e6cd52021-12-13 17:07:03 +01003849 quic_conn_enc_level_uninit(&qc->els[i]);
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02003850 }
3851
3852 app_tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
3853 pool_free(pool_head_quic_tls_secret, app_tls_ctx->rx.secret);
3854 pool_free(pool_head_quic_tls_secret, app_tls_ctx->tx.secret);
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01003855
Frédéric Lécailleeb2a2da2022-04-01 12:15:24 +02003856 for (i = 0; i < QUIC_TLS_PKTNS_MAX; i++) {
3857 quic_pktns_tx_pkts_release(&qc->pktns[i]);
Frédéric Lécaille64670882022-04-01 11:57:19 +02003858 quic_free_arngs(&qc->pktns[i].rx.arngs);
Frédéric Lécailleeb2a2da2022-04-01 12:15:24 +02003859 }
Frédéric Lécaille64670882022-04-01 11:57:19 +02003860
Amaury Denoyelle67e6cd52021-12-13 17:07:03 +01003861 pool_free(pool_head_quic_conn_rxbuf, qc->rx.buf.area);
3862 pool_free(pool_head_quic_conn, qc);
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01003863 TRACE_PROTO("QUIC conn. freed", QUIC_EV_CONN_FREED, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003864}
3865
Amaury Denoyellee0be5732022-04-05 17:34:18 +02003866static void quic_close(struct connection *conn, void *xprt_ctx)
Amaury Denoyelle414cac52021-09-22 11:14:37 +02003867{
3868 struct ssl_sock_ctx *conn_ctx = xprt_ctx;
Amaury Denoyelle29632b82022-01-18 16:50:58 +01003869 struct quic_conn *qc = conn_ctx->qc;
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01003870
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01003871 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01003872
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01003873 /* Next application data can be dropped. */
3874 qc->mux_state = QC_MUX_RELEASED;
3875
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02003876 /* If the quic-conn timer has already expired free the quic-conn. */
3877 if (qc->flags & QUIC_FL_CONN_EXP_TIMER) {
3878 quic_conn_release(qc);
3879 TRACE_LEAVE(QUIC_EV_CONN_CLOSE);
3880 return;
3881 }
3882
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01003883 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle414cac52021-09-22 11:14:37 +02003884}
3885
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003886/* Callback called upon loss detection and PTO timer expirations. */
Willy Tarreau144f84a2021-03-02 16:09:26 +01003887static struct task *process_timer(struct task *task, void *ctx, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003888{
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02003889 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003890 struct quic_conn *qc;
3891 struct quic_pktns *pktns;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003892 int i;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003893
3894 conn_ctx = task->context;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01003895 qc = conn_ctx->qc;
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003896 TRACE_ENTER(QUIC_EV_CONN_PTIMER, qc,
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01003897 NULL, NULL, &qc->path->ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003898 task->expire = TICK_ETERNITY;
3899 pktns = quic_loss_pktns(qc);
3900 if (tick_isset(pktns->tx.loss_time)) {
3901 struct list lost_pkts = LIST_HEAD_INIT(lost_pkts);
3902
3903 qc_packet_loss_lookup(pktns, qc, &lost_pkts);
3904 if (!LIST_ISEMPTY(&lost_pkts))
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003905 qc_release_lost_pkts(qc, pktns, &lost_pkts, now_ms);
3906 qc_set_timer(qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003907 goto out;
3908 }
3909
3910 if (qc->path->in_flight) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003911 pktns = quic_pto_pktns(qc, qc->state >= QUIC_HS_ST_COMPLETE, NULL);
Frédéric Lécaille0fa553d2022-01-17 14:26:12 +01003912 if (pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL]) {
3913 pktns->tx.pto_probe = 1;
3914 if (qc->pktns[QUIC_TLS_PKTNS_HANDSHAKE].tx.in_flight)
3915 qc->pktns[QUIC_TLS_PKTNS_HANDSHAKE].tx.pto_probe = 1;
3916 }
3917 else {
3918 pktns->tx.pto_probe = 2;
3919 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003920 }
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003921 else if (!qc_is_listener(qc) && qc->state <= QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003922 struct quic_enc_level *iel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
3923 struct quic_enc_level *hel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
3924
Frédéric Lécaillebd242082022-02-25 17:17:59 +01003925 if (hel->tls_ctx.flags == QUIC_FL_TLS_SECRETS_SET)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003926 hel->pktns->tx.pto_probe = 1;
Frédéric Lécaillebd242082022-02-25 17:17:59 +01003927 if (iel->tls_ctx.flags == QUIC_FL_TLS_SECRETS_SET)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003928 iel->pktns->tx.pto_probe = 1;
3929 }
Frédéric Lécaillea56054e2021-12-31 16:35:28 +01003930
3931 for (i = QUIC_TLS_ENC_LEVEL_INITIAL; i < QUIC_TLS_ENC_LEVEL_MAX; i++) {
Frédéric Lécaillea56054e2021-12-31 16:35:28 +01003932 if (i == QUIC_TLS_ENC_LEVEL_APP && !quic_peer_validated_addr(qc))
3933 continue;
3934
Frédéric Lécaille53c7d8d2022-02-15 12:00:55 +01003935 qc_prep_fast_retrans(&qc->els[i], qc);
Frédéric Lécaillea56054e2021-12-31 16:35:28 +01003936 }
3937
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003938 tasklet_wakeup(conn_ctx->wait_event.tasklet);
3939 qc->path->loss.pto_count++;
3940
3941 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003942 TRACE_LEAVE(QUIC_EV_CONN_PTIMER, qc, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003943
3944 return task;
3945}
3946
3947/* Initialize <conn> QUIC connection with <quic_initial_clients> as root of QUIC
3948 * connections used to identify the first Initial packets of client connecting
3949 * to listeners. This parameter must be NULL for QUIC connections attached
3950 * to listeners. <dcid> is the destination connection ID with <dcid_len> as length.
3951 * <scid> is the source connection ID with <scid_len> as length.
3952 * Returns 1 if succeeded, 0 if not.
3953 */
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003954static struct quic_conn *qc_new_conn(unsigned int version, int ipv4,
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01003955 unsigned char *dcid, size_t dcid_len, size_t dcid_addr_len,
Frédéric Lécaille6b197642021-07-06 16:25:08 +02003956 unsigned char *scid, size_t scid_len, int server, void *owner)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003957{
3958 int i;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003959 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003960 /* Initial CID. */
3961 struct quic_connection_id *icid;
Frédéric Lécaillec0b481f2022-02-02 15:39:55 +01003962 char *buf_area = NULL;
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003963 struct listener *l = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003964
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02003965 TRACE_ENTER(QUIC_EV_CONN_INIT);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02003966 qc = pool_zalloc(pool_head_quic_conn);
3967 if (!qc) {
3968 TRACE_PROTO("Could not allocate a new connection", QUIC_EV_CONN_INIT);
3969 goto err;
3970 }
3971
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003972 buf_area = pool_alloc(pool_head_quic_conn_rxbuf);
3973 if (!buf_area) {
Amaury Denoyellee770ce32021-12-21 14:51:56 +01003974 TRACE_PROTO("Could not allocate a new RX buffer", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01003975 goto err;
3976 }
3977
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003978 qc->cids = EB_ROOT;
3979 /* QUIC Server (or listener). */
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02003980 if (server) {
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003981 l = owner;
Frédéric Lécaille6b197642021-07-06 16:25:08 +02003982
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01003983 qc->flags |= QUIC_FL_CONN_LISTENER;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003984 qc->state = QUIC_HS_ST_SERVER_INITIAL;
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01003985 /* Copy the initial DCID with the address. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003986 qc->odcid.len = dcid_len;
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01003987 qc->odcid.addrlen = dcid_addr_len;
3988 memcpy(qc->odcid.data, dcid, dcid_len + dcid_addr_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003989
Amaury Denoyelle42b9f1c2021-11-24 15:29:53 +01003990 /* copy the packet SCID to reuse it as DCID for sending */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003991 if (scid_len)
3992 memcpy(qc->dcid.data, scid, scid_len);
3993 qc->dcid.len = scid_len;
Frédéric Lécaillec1029f62021-10-20 11:09:58 +02003994 qc->tx.qring_list = &l->rx.tx_qring_list;
Amaury Denoyelle2af19852021-09-30 11:03:28 +02003995 qc->li = l;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003996 }
3997 /* QUIC Client (outgoing connection to servers) */
3998 else {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003999 qc->state = QUIC_HS_ST_CLIENT_INITIAL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004000 if (dcid_len)
4001 memcpy(qc->dcid.data, dcid, dcid_len);
4002 qc->dcid.len = dcid_len;
4003 }
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01004004 qc->mux_state = QC_MUX_NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004005
4006 /* Initialize the output buffer */
4007 qc->obuf.pos = qc->obuf.data;
4008
Amaury Denoyelle0442efd2022-01-28 16:02:13 +01004009 icid = new_quic_cid(&qc->cids, qc, 0);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004010 if (!icid) {
Amaury Denoyellee770ce32021-12-21 14:51:56 +01004011 TRACE_PROTO("Could not allocate a new connection ID", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004012 goto err;
4013 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004014
Frédéric Lécaille74904a42022-01-27 15:35:56 +01004015 /* insert the allocated CID in the receiver datagram handler tree */
4016 if (server)
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01004017 ebmb_insert(&quic_dghdlrs[tid].cids, &icid->node, icid->cid.len);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01004018
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004019 /* Select our SCID which is the first CID with 0 as sequence number. */
4020 qc->scid = icid->cid;
4021
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004022 /* Packet number spaces initialization. */
4023 for (i = 0; i < QUIC_TLS_PKTNS_MAX; i++)
4024 quic_pktns_init(&qc->pktns[i]);
4025 /* QUIC encryption level context initialization. */
4026 for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++) {
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004027 if (!quic_conn_enc_level_init(qc, i)) {
Amaury Denoyellee770ce32021-12-21 14:51:56 +01004028 TRACE_PROTO("Could not initialize an encryption level", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004029 goto err;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004030 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004031 /* Initialize the packet number space. */
4032 qc->els[i].pktns = &qc->pktns[quic_tls_pktns(i)];
4033 }
4034
Frédéric Lécaillec8d3f872021-07-06 17:19:44 +02004035 qc->version = version;
Frédéric Lécaillea956d152021-11-10 09:24:22 +01004036 qc->tps_tls_ext = qc->version & 0xff000000 ?
4037 TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS_DRAFT:
4038 TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004039 /* TX part. */
4040 LIST_INIT(&qc->tx.frms_to_send);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004041 qc->tx.nb_buf = QUIC_CONN_TX_BUFS_NB;
4042 qc->tx.wbuf = qc->tx.rbuf = 0;
4043 qc->tx.bytes = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004044 /* RX part. */
4045 qc->rx.bytes = 0;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004046 qc->rx.buf = b_make(buf_area, QUIC_CONN_RX_BUFSZ, 0, 0);
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02004047
4048 qc->nb_pkt_for_cc = 1;
4049 qc->nb_pkt_since_cc = 0;
4050
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004051 LIST_INIT(&qc->rx.pkt_list);
Frédéric Lécaille40df78f2021-11-30 10:59:37 +01004052 if (!quic_tls_ku_init(qc)) {
Amaury Denoyellee770ce32021-12-21 14:51:56 +01004053 TRACE_PROTO("Key update initialization failed", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille40df78f2021-11-30 10:59:37 +01004054 goto err;
4055 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004056
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004057 /* XXX TO DO: Only one path at this time. */
4058 qc->path = &qc->paths[0];
4059 quic_path_init(qc->path, ipv4, default_quic_cc_algo, qc);
4060
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01004061 /* required to use MTLIST_IN_LIST */
4062 MT_LIST_INIT(&qc->accept_list);
4063
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004064 qc->streams_by_id = EB_ROOT_UNIQUE;
Amaury Denoyelled2f80a22022-04-15 17:30:49 +02004065 qc->stream_buf_count = 0;
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004066
Amaury Denoyellee770ce32021-12-21 14:51:56 +01004067 TRACE_LEAVE(QUIC_EV_CONN_INIT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004068
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004069 return qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004070
4071 err:
Amaury Denoyellee770ce32021-12-21 14:51:56 +01004072 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_INIT, qc ? qc : NULL);
Frédéric Lécaillec0b481f2022-02-02 15:39:55 +01004073 pool_free(pool_head_quic_conn_rxbuf, buf_area);
4074 if (qc)
4075 qc->rx.buf.area = NULL;
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004076 quic_conn_release(qc);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004077 return NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004078}
4079
4080/* Initialize the timer task of <qc> QUIC connection.
4081 * Returns 1 if succeeded, 0 if not.
4082 */
4083static int quic_conn_init_timer(struct quic_conn *qc)
4084{
Frédéric Lécaillef57c3332021-12-09 10:06:21 +01004085 /* Attach this task to the same thread ID used for the connection */
4086 qc->timer_task = task_new(1UL << qc->tid);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004087 if (!qc->timer_task)
4088 return 0;
4089
4090 qc->timer = TICK_ETERNITY;
4091 qc->timer_task->process = process_timer;
Frédéric Lécaille7fbb94d2022-01-31 10:37:07 +01004092 qc->timer_task->context = qc->xprt_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004093
4094 return 1;
4095}
4096
Frédéric Lécaille47756802022-03-25 09:12:16 +01004097/* Rearm the idle timer for <qc> QUIC connection. */
4098static void qc_idle_timer_do_rearm(struct quic_conn *qc)
4099{
4100 unsigned int expire;
4101
4102 expire = QUIC_MAX(3 * quic_pto(qc), qc->max_idle_timeout);
4103 qc->idle_timer_task->expire = tick_add(now_ms, MS_TO_TICKS(expire));
4104}
4105
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004106/* Rearm the idle timer for <qc> QUIC connection depending on <read> boolean
4107 * which is set to 1 when receiving a packet , and 0 when sending packet
4108 */
4109static void qc_idle_timer_rearm(struct quic_conn *qc, int read)
4110{
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004111 if (read) {
4112 qc->flags |= QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ;
4113 }
4114 else {
4115 qc->flags &= ~QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ;
4116 }
Frédéric Lécaille47756802022-03-25 09:12:16 +01004117 qc_idle_timer_do_rearm(qc);
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004118}
4119
4120/* The task handling the idle timeout */
4121static struct task *qc_idle_timer_task(struct task *t, void *ctx, unsigned int state)
4122{
4123 struct quic_conn *qc = ctx;
4124
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02004125 /* Notify the MUX before settings QUIC_FL_CONN_EXP_TIMER or the MUX
4126 * might free the quic-conn too early via quic_close().
4127 */
4128 qc_notify_close(qc);
4129
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02004130 /* If the MUX is still alive, keep the quic-conn. The MUX is
4131 * responsible to call quic_close to release it.
4132 */
4133 qc->flags |= QUIC_FL_CONN_EXP_TIMER;
4134 if (qc->mux_state != QC_MUX_READY)
4135 quic_conn_release(qc);
4136
4137 /* TODO if the quic-conn cannot be freed because of the MUX, we may at
4138 * least clean some parts of it such as the tasklet.
4139 */
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004140
4141 return NULL;
4142}
4143
4144/* Initialize the idle timeout task for <qc>.
4145 * Returns 1 if succeeded, 0 if not.
4146 */
4147static int quic_conn_init_idle_timer_task(struct quic_conn *qc)
4148{
4149 qc->idle_timer_task = task_new_here();
4150 if (!qc->idle_timer_task)
4151 return 0;
4152
4153 qc->idle_timer_task->process = qc_idle_timer_task;
4154 qc->idle_timer_task->context = qc;
4155 qc_idle_timer_rearm(qc, 1);
4156 task_queue(qc->idle_timer_task);
4157
4158 return 1;
4159}
4160
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004161/* Parse into <pkt> a long header located at <*buf> buffer, <end> begin a pointer to the end
4162 * past one byte of this buffer.
4163 */
4164static inline int quic_packet_read_long_header(unsigned char **buf, const unsigned char *end,
4165 struct quic_rx_packet *pkt)
4166{
4167 unsigned char dcid_len, scid_len;
4168
4169 /* Version */
4170 if (!quic_read_uint32(&pkt->version, (const unsigned char **)buf, end))
4171 return 0;
4172
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004173 /* Destination Connection ID Length */
4174 dcid_len = *(*buf)++;
4175 /* We want to be sure we can read <dcid_len> bytes and one more for <scid_len> value */
4176 if (dcid_len > QUIC_CID_MAXLEN || end - *buf < dcid_len + 1)
4177 /* XXX MUST BE DROPPED */
4178 return 0;
4179
4180 if (dcid_len) {
4181 /* Check that the length of this received DCID matches the CID lengths
4182 * of our implementation for non Initials packets only.
4183 */
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01004184 if (pkt->type != QUIC_PACKET_TYPE_INITIAL &&
4185 pkt->type != QUIC_PACKET_TYPE_0RTT &&
Amaury Denoyelled4962512021-12-14 17:17:28 +01004186 dcid_len != QUIC_HAP_CID_LEN)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004187 return 0;
4188
4189 memcpy(pkt->dcid.data, *buf, dcid_len);
4190 }
4191
4192 pkt->dcid.len = dcid_len;
4193 *buf += dcid_len;
4194
4195 /* Source Connection ID Length */
4196 scid_len = *(*buf)++;
4197 if (scid_len > QUIC_CID_MAXLEN || end - *buf < scid_len)
4198 /* XXX MUST BE DROPPED */
4199 return 0;
4200
4201 if (scid_len)
4202 memcpy(pkt->scid.data, *buf, scid_len);
4203 pkt->scid.len = scid_len;
4204 *buf += scid_len;
4205
4206 return 1;
4207}
4208
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004209/* Insert <pkt> RX packet in its <qel> RX packets tree */
4210static void qc_pkt_insert(struct quic_rx_packet *pkt, struct quic_enc_level *qel)
4211{
4212 pkt->pn_node.key = pkt->pn;
Frédéric Lécaille2ce5acf2021-12-20 14:41:19 +01004213 quic_rx_packet_refinc(pkt);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004214 HA_RWLOCK_WRLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock);
4215 eb64_insert(&qel->rx.pkts, &pkt->pn_node);
4216 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004217}
4218
4219/* Try to remove the header protection of <pkt> QUIC packet attached to <qc>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004220 * QUIC connection with <buf> as packet number field address, <end> a pointer to one
4221 * byte past the end of the buffer containing this packet and <beg> the address of
4222 * the packet first byte.
4223 * If succeeded, this function updates <*buf> to point to the next packet in the buffer.
4224 * Returns 1 if succeeded, 0 if not.
4225 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004226static inline int qc_try_rm_hp(struct quic_conn *qc,
4227 struct quic_rx_packet *pkt,
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004228 unsigned char *buf, unsigned char *beg,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004229 const unsigned char *end,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004230 struct quic_enc_level **el)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004231{
4232 unsigned char *pn = NULL; /* Packet number field */
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01004233 enum quic_tls_enc_level tel;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004234 struct quic_enc_level *qel;
4235 /* Only for traces. */
4236 struct quic_rx_packet *qpkt_trace;
4237
4238 qpkt_trace = NULL;
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004239 TRACE_ENTER(QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004240 /* The packet number is here. This is also the start minus
4241 * QUIC_PACKET_PN_MAXLEN of the sample used to add/remove the header
4242 * protection.
4243 */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004244 pn = buf;
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01004245
4246 tel = quic_packet_type_enc_level(pkt->type);
4247 qel = &qc->els[tel];
4248
4249 if (qc_qel_may_rm_hp(qc, qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004250 /* Note that the following function enables us to unprotect the packet
4251 * number and its length subsequently used to decrypt the entire
4252 * packets.
4253 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004254 if (!qc_do_rm_hp(qc, pkt, &qel->tls_ctx,
4255 qel->pktns->rx.largest_pn, pn, beg, end)) {
4256 TRACE_PROTO("hp error", QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004257 goto err;
4258 }
4259
4260 /* The AAD includes the packet number field found at <pn>. */
4261 pkt->aad_len = pn - beg + pkt->pnl;
4262 qpkt_trace = pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004263 }
Frédéric Lécaille7d845f12022-02-21 19:22:09 +01004264 else {
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004265 if (qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD) {
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004266 /* If the packet number space has been discarded, this packet
4267 * will be not parsed.
4268 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004269 TRACE_PROTO("Discarded pktns", QUIC_EV_CONN_TRMHP, qc, pkt);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004270 goto out;
4271 }
4272
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004273 TRACE_PROTO("hp not removed", QUIC_EV_CONN_TRMHP, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004274 pkt->pn_offset = pn - beg;
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02004275 MT_LIST_APPEND(&qel->rx.pqpkts, &pkt->list);
4276 quic_rx_packet_refinc(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004277 }
4278
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004279 *el = qel;
4280 /* No reference counter incrementation here!!! */
4281 LIST_APPEND(&qc->rx.pkt_list, &pkt->qc_rx_pkt_list);
4282 memcpy(b_tail(&qc->rx.buf), beg, pkt->len);
4283 pkt->data = (unsigned char *)b_tail(&qc->rx.buf);
4284 b_add(&qc->rx.buf, pkt->len);
4285 out:
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004286 TRACE_LEAVE(QUIC_EV_CONN_TRMHP, qc, qpkt_trace);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004287 return 1;
4288
4289 err:
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004290 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_TRMHP, qc, qpkt_trace);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004291 return 0;
4292}
4293
4294/* Parse the header form from <byte0> first byte of <pkt> pacekt to set type.
4295 * Also set <*long_header> to 1 if this form is long, 0 if not.
4296 */
4297static inline void qc_parse_hd_form(struct quic_rx_packet *pkt,
4298 unsigned char byte0, int *long_header)
4299{
4300 if (byte0 & QUIC_PACKET_LONG_HEADER_BIT) {
4301 pkt->type =
4302 (byte0 >> QUIC_PACKET_TYPE_SHIFT) & QUIC_PACKET_TYPE_BITMASK;
4303 *long_header = 1;
4304 }
4305 else {
4306 pkt->type = QUIC_PACKET_TYPE_SHORT;
4307 *long_header = 0;
4308 }
4309}
4310
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004311/*
4312 * Check if the QUIC version in packet <pkt> is supported. Returns a boolean.
4313 */
4314static inline int qc_pkt_is_supported_version(struct quic_rx_packet *pkt)
4315{
4316 int j = 0, version;
4317
4318 do {
4319 version = quic_supported_version[j];
4320 if (version == pkt->version)
4321 return 1;
4322
4323 version = quic_supported_version[++j];
4324 } while(version);
4325
4326 return 0;
4327}
4328
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004329/*
4330 * Send a Version Negotiation packet on response to <pkt> on socket <fd> to
4331 * address <addr>.
4332 * Implementation of RFC9000 6. Version Negotiation
4333 *
4334 * TODO implement a rate-limiting sending of Version Negotiation packets
4335 *
4336 * Returns 0 on success else non-zero
4337 */
Amaury Denoyelled6b16672021-12-23 10:37:19 +01004338static int send_version_negotiation(int fd, struct sockaddr_storage *addr,
4339 struct quic_rx_packet *pkt)
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004340{
4341 char buf[256];
4342 int i = 0, j, version;
4343 const socklen_t addrlen = get_addr_len(addr);
4344
4345 /*
4346 * header form
4347 * long header, fixed bit to 0 for Version Negotiation
4348 */
Frédéric Lécailleea78ee12021-11-18 13:54:43 +01004349 if (RAND_bytes((unsigned char *)buf, 1) != 1)
4350 return 1;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004351
Frédéric Lécailleea78ee12021-11-18 13:54:43 +01004352 buf[i++] |= '\x80';
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004353 /* null version for Version Negotiation */
4354 buf[i++] = '\x00';
4355 buf[i++] = '\x00';
4356 buf[i++] = '\x00';
4357 buf[i++] = '\x00';
4358
4359 /* source connection id */
4360 buf[i++] = pkt->scid.len;
Amaury Denoyelle10eed8e2021-11-18 13:48:57 +01004361 memcpy(&buf[i], pkt->scid.data, pkt->scid.len);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004362 i += pkt->scid.len;
4363
4364 /* destination connection id */
4365 buf[i++] = pkt->dcid.len;
Amaury Denoyelle10eed8e2021-11-18 13:48:57 +01004366 memcpy(&buf[i], pkt->dcid.data, pkt->dcid.len);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004367 i += pkt->dcid.len;
4368
4369 /* supported version */
4370 j = 0;
4371 do {
4372 version = htonl(quic_supported_version[j]);
4373 memcpy(&buf[i], &version, sizeof(version));
4374 i += sizeof(version);
4375
4376 version = quic_supported_version[++j];
4377 } while (version);
4378
4379 if (sendto(fd, buf, i, 0, (struct sockaddr *)addr, addrlen) < 0)
4380 return 1;
4381
4382 return 0;
4383}
4384
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01004385/* Generate the token to be used in Retry packets. The token is written to
4386 * <buf> which is expected to be <len> bytes.
4387 *
4388 * Various parameters are expected to be encoded in the token. For now, only
4389 * the DCID from <pkt> is stored. This is useful to implement a stateless Retry
4390 * as this CID must be repeated by the server in the transport parameters.
4391 *
4392 * TODO add the client address to validate the token origin.
4393 *
4394 * Returns the length of the encoded token or 0 on error.
4395 */
4396static int generate_retry_token(unsigned char *buf, unsigned char len,
4397 struct quic_rx_packet *pkt)
4398{
4399 const size_t token_len = 1 + pkt->dcid.len;
4400 unsigned char i = 0;
4401
4402 if (token_len > len)
4403 return 0;
4404
4405 buf[i++] = pkt->dcid.len;
4406 memcpy(&buf[i], pkt->dcid.data, pkt->dcid.len);
4407 i += pkt->dcid.len;
4408
4409 return i;
4410}
4411
4412/* Generate a Retry packet and send it on <fd> socket to <addr> in response to
4413 * the Initial <pkt> packet.
4414 *
4415 * Returns 0 on success else non-zero.
4416 */
4417static int send_retry(int fd, struct sockaddr_storage *addr,
4418 struct quic_rx_packet *pkt)
4419{
4420 unsigned char buf[128];
4421 int i = 0, token_len;
4422 const socklen_t addrlen = get_addr_len(addr);
4423 struct quic_cid scid;
4424
4425 /* long header + fixed bit + packet type 0x3 */
4426 buf[i++] = 0xf0;
4427 /* version */
4428 buf[i++] = 0x00;
4429 buf[i++] = 0x00;
4430 buf[i++] = 0x00;
4431 buf[i++] = 0x01;
4432
4433 /* Use the SCID from <pkt> for Retry DCID. */
4434 buf[i++] = pkt->scid.len;
4435 memcpy(&buf[i], pkt->scid.data, pkt->scid.len);
4436 i += pkt->scid.len;
4437
4438 /* Generate a new CID to be used as SCID for the Retry packet. */
4439 scid.len = QUIC_HAP_CID_LEN;
4440 if (RAND_bytes(scid.data, scid.len) != 1)
4441 return 1;
4442
4443 buf[i++] = scid.len;
4444 memcpy(&buf[i], scid.data, scid.len);
4445 i += scid.len;
4446
4447 /* token */
Frédéric Lécaillecc2764e2022-03-23 14:09:09 +01004448 if (!(token_len = generate_retry_token(&buf[i], sizeof(buf) - i, pkt)))
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01004449 return 1;
Frédéric Lécaillecc2764e2022-03-23 14:09:09 +01004450
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01004451 i += token_len;
4452
4453 /* token integrity tag */
4454 if ((&buf[i] - buf < QUIC_TLS_TAG_LEN) ||
4455 !quic_tls_generate_retry_integrity_tag(pkt->dcid.data,
4456 pkt->dcid.len, buf, i)) {
4457 return 1;
4458 }
4459
4460 i += QUIC_TLS_TAG_LEN;
4461
4462 if (sendto(fd, buf, i, 0, (struct sockaddr *)addr, addrlen) < 0)
4463 return 1;
4464
4465 return 0;
4466}
4467
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004468/* Retrieve a quic_conn instance from the <pkt> DCID field. If the packet is of
4469 * type INITIAL, the ODCID tree is first used. In this case, <saddr> is
4470 * concatenated to the <pkt> DCID field.
4471 *
4472 * Returns the instance or NULL if not found.
4473 */
Amaury Denoyelled6b16672021-12-23 10:37:19 +01004474static struct quic_conn *retrieve_qc_conn_from_cid(struct quic_rx_packet *pkt,
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004475 struct listener *l,
4476 struct sockaddr_storage *saddr)
4477{
4478 struct quic_conn *qc = NULL;
4479 struct ebmb_node *node;
4480 struct quic_connection_id *id;
Amaury Denoyelle250ac422021-12-22 11:29:05 +01004481 /* set if the quic_conn is found in the second DCID tree */
4482 int found_in_dcid = 0;
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004483
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004484 /* Look first into ODCIDs tree for INITIAL/0-RTT packets. */
4485 if (pkt->type == QUIC_PACKET_TYPE_INITIAL ||
4486 pkt->type == QUIC_PACKET_TYPE_0RTT) {
4487 /* DCIDs of first packets coming from multiple clients may have
4488 * the same values. Let's distinguish them by concatenating the
4489 * socket addresses.
4490 */
4491 quic_cid_saddr_cat(&pkt->dcid, saddr);
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01004492 node = ebmb_lookup(&quic_dghdlrs[tid].odcids, pkt->dcid.data,
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004493 pkt->dcid.len + pkt->dcid.addrlen);
4494 if (node) {
4495 qc = ebmb_entry(node, struct quic_conn, odcid_node);
4496 goto end;
4497 }
4498 }
4499
4500 /* Look into DCIDs tree for non-INITIAL/0-RTT packets. This may be used
4501 * also for INITIAL/0-RTT non-first packets with the final DCID in
4502 * used.
4503 */
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01004504 node = ebmb_lookup(&quic_dghdlrs[tid].cids, pkt->dcid.data, pkt->dcid.len);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004505 if (!node)
4506 goto end;
4507
4508 id = ebmb_entry(node, struct quic_connection_id, node);
4509 qc = id->qc;
Amaury Denoyelle250ac422021-12-22 11:29:05 +01004510 found_in_dcid = 1;
4511
4512 end:
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004513 /* If found in DCIDs tree, remove the quic_conn from the ODCIDs tree.
4514 * If already done, this is a noop.
4515 */
Frédéric Lécaille74904a42022-01-27 15:35:56 +01004516 if (qc && found_in_dcid)
Amaury Denoyelle250ac422021-12-22 11:29:05 +01004517 ebmb_delete(&qc->odcid_node);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004518
4519 return qc;
4520}
4521
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01004522/* Parse the Retry token from buffer <token> whose size is <token_len>. This
4523 * will extract the parameters stored in the token : <odcid>.
4524 *
4525 * Returns 0 on success else non-zero.
4526 */
4527static int parse_retry_token(const unsigned char *token, uint64_t token_len,
4528 struct quic_cid *odcid)
4529{
4530 uint64_t odcid_len;
4531
4532 if (!quic_dec_int(&odcid_len, &token, token + token_len))
4533 return 1;
4534
Frédéric Lécaillef1f812b2022-03-17 16:22:02 +01004535 if (odcid_len > QUIC_CID_MAXLEN)
4536 return 1;
4537
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01004538 memcpy(odcid->data, token, odcid_len);
4539 odcid->len = odcid_len;
4540
4541 return 0;
4542}
4543
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01004544/* Try to allocate the <*ssl> SSL session object for <qc> QUIC connection
4545 * with <ssl_ctx> as SSL context inherited settings. Also set the transport
4546 * parameters of this session.
4547 * This is the responsibility of the caller to check the validity of all the
4548 * pointers passed as parameter to this function.
4549 * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <qc->conn> to
4550 * CO_ER_SSL_NO_MEM.
4551 */
4552static int qc_ssl_sess_init(struct quic_conn *qc, SSL_CTX *ssl_ctx, SSL **ssl,
4553 unsigned char *params, size_t params_len)
4554{
4555 int retry;
4556
4557 retry = 1;
4558 retry:
4559 *ssl = SSL_new(ssl_ctx);
4560 if (!*ssl) {
4561 if (!retry--)
4562 goto err;
4563
4564 pool_gc(NULL);
4565 goto retry;
4566 }
4567
4568 if (!SSL_set_quic_method(*ssl, &ha_quic_method) ||
4569 !SSL_set_ex_data(*ssl, ssl_qc_app_data_index, qc) ||
4570 !SSL_set_quic_transport_params(*ssl, qc->enc_params, qc->enc_params_len)) {
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01004571 SSL_free(*ssl);
4572 *ssl = NULL;
4573 if (!retry--)
4574 goto err;
4575
4576 pool_gc(NULL);
4577 goto retry;
4578 }
4579
4580 return 0;
4581
4582 err:
4583 qc->conn->err_code = CO_ER_SSL_NO_MEM;
4584 return -1;
4585}
4586
4587/* Allocate the ssl_sock_ctx from connection <qc>. This creates the tasklet
4588 * used to process <qc> received packets. The allocated context is stored in
4589 * <qc.xprt_ctx>.
4590 *
4591 * Returns 0 on success else non-zero.
4592 */
4593int qc_conn_alloc_ssl_ctx(struct quic_conn *qc)
4594{
4595 struct bind_conf *bc = qc->li->bind_conf;
4596 struct ssl_sock_ctx *ctx = NULL;
4597
4598 ctx = pool_zalloc(pool_head_quic_conn_ctx);
4599 if (!ctx)
4600 goto err;
4601
4602 ctx->wait_event.tasklet = tasklet_new();
4603 if (!ctx->wait_event.tasklet)
4604 goto err;
4605
4606 ctx->wait_event.tasklet->process = quic_conn_io_cb;
4607 ctx->wait_event.tasklet->context = ctx;
4608 ctx->wait_event.events = 0;
4609 ctx->subs = NULL;
4610 ctx->xprt_ctx = NULL;
4611 ctx->qc = qc;
4612
4613 /* Set tasklet tid based on the SCID selected by us for this
4614 * connection. The upper layer will also be binded on the same thread.
4615 */
Frédéric Lécaille220894a2022-01-26 18:04:50 +01004616 qc->tid = ctx->wait_event.tasklet->tid = quic_get_cid_tid(qc->scid.data);
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01004617
4618 if (qc_is_listener(qc)) {
4619 if (qc_ssl_sess_init(qc, bc->initial_ctx, &ctx->ssl,
4620 qc->enc_params, qc->enc_params_len) == -1) {
4621 goto err;
4622 }
4623
4624 /* Enabling 0-RTT */
4625 if (bc->ssl_conf.early_data)
4626 SSL_set_quic_early_data_enabled(ctx->ssl, 1);
4627
4628 SSL_set_accept_state(ctx->ssl);
4629 }
4630
4631 ctx->xprt = xprt_get(XPRT_QUIC);
4632
4633 /* Store the allocated context in <qc>. */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004634 qc->xprt_ctx = ctx;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01004635
4636 return 0;
4637
4638 err:
4639 if (ctx && ctx->wait_event.tasklet)
4640 tasklet_free(ctx->wait_event.tasklet);
4641 pool_free(pool_head_quic_conn_ctx, ctx);
4642
4643 return 1;
4644}
4645
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004646static ssize_t qc_lstnr_pkt_rcv(unsigned char *buf, const unsigned char *end,
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004647 struct quic_rx_packet *pkt, int first_pkt,
4648 struct quic_dgram *dgram)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004649{
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004650 unsigned char *beg, *payload;
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004651 struct quic_conn *qc, *qc_to_purge = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004652 struct listener *l;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02004653 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaille6b663152022-01-04 17:03:11 +01004654 int long_header = 0, io_cb_wakeup = 0;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004655 size_t b_cspace;
4656 struct quic_enc_level *qel;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004657
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004658 beg = buf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004659 qc = NULL;
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02004660 conn_ctx = NULL;
Frédéric Lécaillec4becf52021-11-08 11:23:17 +01004661 qel = NULL;
Frédéric Lécaille8678eb02021-12-16 18:03:52 +01004662 TRACE_ENTER(QUIC_EV_CONN_LPKT);
4663 /* This ist only to please to traces and distinguish the
4664 * packet with parsed packet number from others.
4665 */
4666 pkt->pn_node.key = (uint64_t)-1;
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004667 if (end <= buf)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004668 goto err;
4669
4670 /* Fixed bit */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004671 if (!(*buf & QUIC_PACKET_FIXED_BIT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004672 /* XXX TO BE DISCARDED */
4673 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
4674 goto err;
4675 }
4676
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004677 l = dgram->owner;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004678 /* Header form */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004679 qc_parse_hd_form(pkt, *buf++, &long_header);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004680 if (long_header) {
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01004681 uint64_t len;
4682
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004683 if (!quic_packet_read_long_header(&buf, end, pkt)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004684 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
4685 goto err;
4686 }
4687
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004688 /* When multiple QUIC packets are coalesced on the same UDP datagram,
4689 * they must have the same DCID.
4690 */
4691 if (!first_pkt &&
4692 (pkt->dcid.len != dgram->dcid_len ||
4693 memcmp(dgram->dcid, pkt->dcid.data, pkt->dcid.len))) {
4694 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
4695 goto err;
4696 }
4697
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01004698 /* Retry of Version Negotiation packets are only sent by servers */
4699 if (pkt->type == QUIC_PACKET_TYPE_RETRY || !pkt->version) {
4700 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
4701 goto err;
4702 }
4703
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004704 /* RFC9000 6. Version Negotiation */
4705 if (!qc_pkt_is_supported_version(pkt)) {
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004706 /* unsupported version, send Negotiation packet */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004707 if (send_version_negotiation(l->rx.fd, &dgram->saddr, pkt)) {
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004708 TRACE_PROTO("Error on Version Negotiation sending", QUIC_EV_CONN_LPKT);
4709 goto err;
4710 }
4711
4712 TRACE_PROTO("Unsupported QUIC version, send Version Negotiation packet", QUIC_EV_CONN_LPKT);
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004713 goto err;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004714 }
4715
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004716 /* For Initial packets, and for servers (QUIC clients connections),
4717 * there is no Initial connection IDs storage.
4718 */
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004719 if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02004720 uint64_t token_len;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02004721
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004722 if (!quic_dec_int(&token_len, (const unsigned char **)&buf, end) ||
4723 end - buf < token_len) {
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004724 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
4725 goto err;
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01004726 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004727
Frédéric Lécaille055ee6c2022-01-25 21:21:56 +01004728 /* The token may be provided in a Retry packet or NEW_TOKEN frame
4729 * only by the QUIC server.
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004730 */
4731 pkt->token_len = token_len;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01004732
4733 /* TODO Retry should be automatically activated if
4734 * suspect network usage is detected.
4735 */
4736 if (!token_len && l->bind_conf->quic_force_retry) {
4737 TRACE_PROTO("Initial without token, sending retry", QUIC_EV_CONN_LPKT);
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004738 if (send_retry(l->rx.fd, &dgram->saddr, pkt)) {
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01004739 TRACE_PROTO("Error during Retry generation", QUIC_EV_CONN_LPKT);
4740 goto err;
4741 }
4742
4743 goto err;
4744 }
4745 else {
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01004746 pkt->token = buf;
4747 buf += pkt->token_len;
4748 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004749 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004750 else if (pkt->type != QUIC_PACKET_TYPE_0RTT) {
Amaury Denoyelled4962512021-12-14 17:17:28 +01004751 if (pkt->dcid.len != QUIC_HAP_CID_LEN) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004752 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
4753 goto err;
4754 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004755 }
4756
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01004757 if (!quic_dec_int(&len, (const unsigned char **)&buf, end) ||
4758 end - buf < len) {
4759 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
4760 goto err;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02004761 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004762
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01004763 payload = buf;
4764 pkt->len = len + payload - beg;
4765
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004766 qc = retrieve_qc_conn_from_cid(pkt, l, &dgram->saddr);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01004767 if (!qc) {
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004768 int ipv4;
4769 struct quic_cid *odcid;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02004770 struct ebmb_node *n = NULL;
Frédéric Lécaille2fc76cf2021-08-31 19:10:40 +02004771 const unsigned char *salt = initial_salt_v1;
4772 size_t salt_len = sizeof initial_salt_v1;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004773
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004774 if (pkt->type != QUIC_PACKET_TYPE_INITIAL) {
Amaury Denoyelle47e1f6d2021-12-17 10:58:05 +01004775 TRACE_PROTO("Non Initial packet", QUIC_EV_CONN_LPKT);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004776 goto err;
4777 }
4778
Frédéric Lécailledc364042022-01-27 16:51:54 +01004779 if (pkt->dcid.len < QUIC_ODCID_MINLEN) {
4780 TRACE_PROTO("dropped packet", QUIC_EV_CONN_LPKT);
4781 goto err;
4782 }
4783
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004784 pkt->saddr = dgram->saddr;
4785 ipv4 = dgram->saddr.ss_family == AF_INET;
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01004786 qc = qc_new_conn(pkt->version, ipv4,
4787 pkt->dcid.data, pkt->dcid.len, pkt->dcid.addrlen,
Frédéric Lécaille6b197642021-07-06 16:25:08 +02004788 pkt->scid.data, pkt->scid.len, 1, l);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004789 if (qc == NULL)
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004790 goto err;
4791
Amaury Denoyelle9fa15e52022-01-19 15:54:23 +01004792 memcpy(&qc->peer_addr, &pkt->saddr, sizeof(pkt->saddr));
4793
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004794 odcid = &qc->rx.params.original_destination_connection_id;
4795 /* Copy the transport parameters. */
4796 qc->rx.params = l->bind_conf->quic_params;
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01004797
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004798 /* Copy original_destination_connection_id transport parameter. */
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01004799 if (pkt->token_len) {
4800 if (parse_retry_token(pkt->token, pkt->token_len, odcid)) {
4801 TRACE_PROTO("Error during Initial token parsing", QUIC_EV_CONN_LPKT, qc);
4802 goto err;
4803 }
Amaury Denoyellec3b6f4d2022-01-11 12:03:09 +01004804 /* Copy retry_source_connection_id transport parameter. */
4805 quic_cid_cpy(&qc->rx.params.retry_source_connection_id,
4806 &pkt->dcid);
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01004807 }
4808 else {
4809 memcpy(odcid->data, &pkt->dcid.data, pkt->dcid.len);
4810 odcid->len = pkt->dcid.len;
4811 }
4812
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004813 /* Copy the initial source connection ID. */
4814 quic_cid_cpy(&qc->rx.params.initial_source_connection_id, &qc->scid);
4815 qc->enc_params_len =
4816 quic_transport_params_encode(qc->enc_params,
4817 qc->enc_params + sizeof qc->enc_params,
4818 &qc->rx.params, 1);
4819 if (!qc->enc_params_len)
4820 goto err;
4821
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01004822 if (qc_conn_alloc_ssl_ctx(qc))
4823 goto err;
4824
Frédéric Lécaille789413c2022-01-31 10:16:18 +01004825 if (!quic_conn_init_timer(qc))
4826 goto err;
4827
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004828 if (!quic_conn_init_idle_timer_task(qc))
4829 goto err;
4830
Frédéric Lécaille497fa782021-05-31 15:16:13 +02004831 /* NOTE: the socket address has been concatenated to the destination ID
4832 * chosen by the client for Initial packets.
4833 */
Frédéric Lécaille2fc76cf2021-08-31 19:10:40 +02004834 if (pkt->version == QUIC_PROTOCOL_VERSION_DRAFT_29) {
4835 salt = initial_salt_draft_29;
4836 salt_len = sizeof initial_salt_draft_29;
4837 }
4838 if (!qc_new_isecs(qc, salt, salt_len,
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01004839 pkt->dcid.data, pkt->dcid.len, 1)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004840 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille497fa782021-05-31 15:16:13 +02004841 goto err;
4842 }
4843
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02004844 /* Insert the DCID the QUIC client has chosen (only for listeners) */
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01004845 n = ebmb_insert(&quic_dghdlrs[tid].odcids, &qc->odcid_node,
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01004846 qc->odcid.len + qc->odcid.addrlen);
Frédéric Lécaille8370c932021-11-08 17:01:46 +01004847
Amaury Denoyelleaff4ec82021-11-24 15:16:08 +01004848 /* If the insertion failed, it means that another
4849 * thread has already allocated a QUIC connection for
4850 * the same CID. Liberate our allocated connection.
4851 */
4852 if (unlikely(n != &qc->odcid_node)) {
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004853 qc_to_purge = qc;
4854
Amaury Denoyelleaff4ec82021-11-24 15:16:08 +01004855 qc = ebmb_entry(n, struct quic_conn, odcid_node);
4856 pkt->qc = qc;
4857 }
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004858
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004859 if (likely(!qc_to_purge)) {
Frédéric Lécaille8370c932021-11-08 17:01:46 +01004860 /* Enqueue this packet. */
Frédéric Lécaillef67b3562021-11-15 16:21:40 +01004861 pkt->qc = qc;
Frédéric Lécaille8370c932021-11-08 17:01:46 +01004862 }
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004863 else {
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004864 quic_conn_release(qc_to_purge);
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004865 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004866 }
4867 else {
Frédéric Lécaille8370c932021-11-08 17:01:46 +01004868 pkt->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004869 }
4870 }
4871 else {
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004872 if (end - buf < QUIC_HAP_CID_LEN) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004873 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
4874 goto err;
4875 }
4876
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004877 memcpy(pkt->dcid.data, buf, QUIC_HAP_CID_LEN);
Amaury Denoyelleadb22762021-12-14 15:04:14 +01004878 pkt->dcid.len = QUIC_HAP_CID_LEN;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004879
4880 /* When multiple QUIC packets are coalesced on the same UDP datagram,
4881 * they must have the same DCID.
4882 */
4883 if (!first_pkt &&
4884 (pkt->dcid.len != dgram->dcid_len ||
4885 memcmp(dgram->dcid, pkt->dcid.data, pkt->dcid.len))) {
4886 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
4887 goto err;
4888 }
4889
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004890 buf += QUIC_HAP_CID_LEN;
4891
4892 /* A short packet is the last one of a UDP datagram. */
4893 payload = buf;
4894 pkt->len = end - beg;
Amaury Denoyelleadb22762021-12-14 15:04:14 +01004895
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004896 qc = retrieve_qc_conn_from_cid(pkt, l, &dgram->saddr);
Frédéric Lécaille4d118d62021-12-21 14:48:58 +01004897 if (!qc) {
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004898 size_t pktlen = end - buf;
Frédéric Lécaille4d118d62021-12-21 14:48:58 +01004899 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, NULL, pkt, &pktlen);
4900 goto err;
4901 }
4902
Frédéric Lécaille8370c932021-11-08 17:01:46 +01004903 pkt->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004904 }
4905
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02004906 if (qc->flags & QUIC_FL_CONN_CLOSING) {
4907 if (++qc->nb_pkt_since_cc >= qc->nb_pkt_for_cc) {
4908 qc->flags |= QUIC_FL_CONN_IMMEDIATE_CLOSE;
4909 qc->nb_pkt_for_cc++;
4910 qc->nb_pkt_since_cc = 0;
4911 }
4912 /* Skip the entire datagram */
4913 pkt->len = end - beg;
4914 TRACE_PROTO("Closing state connection", QUIC_EV_CONN_LPKT, pkt->qc);
4915 goto out;
4916 }
Amaury Denoyelleadb22762021-12-14 15:04:14 +01004917
4918 /* When multiple QUIC packets are coalesced on the same UDP datagram,
4919 * they must have the same DCID.
4920 *
4921 * This check must be done after the final update to pkt.len to
4922 * properly drop the packet on failure.
4923 */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004924 if (first_pkt && !quic_peer_validated_addr(qc) &&
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004925 qc->flags & QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED) {
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004926 TRACE_PROTO("PTO timer must be armed after anti-amplication was reached",
4927 QUIC_EV_CONN_LPKT, qc);
4928 /* Reset the anti-amplification bit. It will be set again
4929 * when sending the next packet if reached again.
4930 */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004931 qc->flags &= ~QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED;
4932 qc->flags |= QUIC_FL_CONN_IO_CB_WAKEUP;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004933 io_cb_wakeup = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004934 }
Amaury Denoyelleadb22762021-12-14 15:04:14 +01004935
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01004936 dgram->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004937
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004938 if (qc->err_code) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004939 TRACE_PROTO("Connection error", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01004940 goto out;
4941 }
4942
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004943 pkt->raw_len = pkt->len;
Frédéric Lécailled61bc8d2021-12-02 14:46:19 +01004944 quic_rx_pkts_del(qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004945 b_cspace = b_contig_space(&qc->rx.buf);
4946 if (b_cspace < pkt->len) {
4947 /* Let us consume the remaining contiguous space. */
Frédéric Lécailled61bc8d2021-12-02 14:46:19 +01004948 if (b_cspace) {
4949 b_putchr(&qc->rx.buf, 0x00);
4950 b_cspace--;
4951 }
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004952 b_add(&qc->rx.buf, b_cspace);
4953 if (b_contig_space(&qc->rx.buf) < pkt->len) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004954 TRACE_PROTO("Too big packet", QUIC_EV_CONN_LPKT, qc, pkt, &pkt->len);
Frédéric Lécaille91ac6c32021-12-17 16:11:54 +01004955 qc_list_all_rx_pkts(qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004956 goto err;
4957 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004958 }
4959
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004960 if (!qc_try_rm_hp(qc, pkt, payload, beg, end, &qel)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004961 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02004962 goto err;
4963 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004964
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004965 TRACE_PROTO("New packet", QUIC_EV_CONN_LPKT, qc, pkt);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004966 if (pkt->aad_len)
4967 qc_pkt_insert(pkt, qel);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01004968 out:
Frédéric Lécaille01abc462021-07-21 09:34:27 +02004969 /* Wake up the connection packet handler task from here only if all
4970 * the contexts have been initialized, especially the mux context
4971 * conn_ctx->conn->ctx. Note that this is ->start xprt callback which
4972 * will start it if these contexts for the connection are not already
4973 * initialized.
4974 */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004975 conn_ctx = qc->xprt_ctx;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01004976 if (conn_ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004977 tasklet_wakeup(conn_ctx->wait_event.tasklet);
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02004978
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004979 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc ? qc : NULL, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004980
4981 return pkt->len;
4982
4983 err:
Frédéric Lécaille6b663152022-01-04 17:03:11 +01004984 /* Wakeup the I/O handler callback if the PTO timer must be armed.
4985 * This cannot be done by this thread.
4986 */
4987 if (io_cb_wakeup) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004988 conn_ctx = qc->xprt_ctx;
Frédéric Lécaille6b663152022-01-04 17:03:11 +01004989 if (conn_ctx && conn_ctx->wait_event.tasklet)
4990 tasklet_wakeup(conn_ctx->wait_event.tasklet);
4991 }
Frédéric Lécaillef7ef9762021-12-31 16:37:58 +01004992 /* If length not found, consume the entire datagram */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004993 if (!pkt->len)
4994 pkt->len = end - beg;
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +01004995 TRACE_DEVEL("Leaving in error", QUIC_EV_CONN_LPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004996 qc ? qc : NULL, pkt);
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004997
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004998 return -1;
4999}
5000
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005001/* This function builds into <buf> buffer a QUIC long packet header.
5002 * Return 1 if enough room to build this header, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005003 */
5004static int quic_build_packet_long_header(unsigned char **buf, const unsigned char *end,
5005 int type, size_t pn_len, struct quic_conn *conn)
5006{
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005007 if (end - *buf < sizeof conn->version + conn->dcid.len + conn->scid.len + 3)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005008 return 0;
5009
5010 /* #0 byte flags */
5011 *(*buf)++ = QUIC_PACKET_FIXED_BIT | QUIC_PACKET_LONG_HEADER_BIT |
5012 (type << QUIC_PACKET_TYPE_SHIFT) | (pn_len - 1);
5013 /* Version */
5014 quic_write_uint32(buf, end, conn->version);
5015 *(*buf)++ = conn->dcid.len;
5016 /* Destination connection ID */
5017 if (conn->dcid.len) {
5018 memcpy(*buf, conn->dcid.data, conn->dcid.len);
5019 *buf += conn->dcid.len;
5020 }
5021 /* Source connection ID */
5022 *(*buf)++ = conn->scid.len;
5023 if (conn->scid.len) {
5024 memcpy(*buf, conn->scid.data, conn->scid.len);
5025 *buf += conn->scid.len;
5026 }
5027
5028 return 1;
5029}
5030
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005031/* This function builds into <buf> buffer a QUIC short packet header.
5032 * Return 1 if enough room to build this header, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005033 */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005034static int quic_build_packet_short_header(unsigned char **buf, const unsigned char *end,
5035 size_t pn_len, struct quic_conn *conn,
5036 unsigned char tls_flags)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005037{
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005038 if (end - *buf < 1 + conn->dcid.len)
5039 return 0;
5040
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005041 /* #0 byte flags */
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01005042 *(*buf)++ = QUIC_PACKET_FIXED_BIT |
5043 ((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 +01005044 /* Destination connection ID */
5045 if (conn->dcid.len) {
5046 memcpy(*buf, conn->dcid.data, conn->dcid.len);
5047 *buf += conn->dcid.len;
5048 }
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005049
5050 return 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005051}
5052
5053/* Apply QUIC header protection to the packet with <buf> as first byte address,
5054 * <pn> as address of the Packet number field, <pnlen> being this field length
5055 * with <aead> as AEAD cipher and <key> as secret key.
5056 * Returns 1 if succeeded or 0 if failed.
5057 */
5058static int quic_apply_header_protection(unsigned char *buf, unsigned char *pn, size_t pnlen,
5059 const EVP_CIPHER *aead, const unsigned char *key)
5060{
5061 int i, ret, outlen;
5062 EVP_CIPHER_CTX *ctx;
5063 /* We need an IV of at least 5 bytes: one byte for bytes #0
5064 * and at most 4 bytes for the packet number
5065 */
5066 unsigned char mask[5] = {0};
5067
5068 ret = 0;
5069 ctx = EVP_CIPHER_CTX_new();
5070 if (!ctx)
5071 return 0;
5072
5073 if (!EVP_EncryptInit_ex(ctx, aead, NULL, key, pn + QUIC_PACKET_PN_MAXLEN) ||
5074 !EVP_EncryptUpdate(ctx, mask, &outlen, mask, sizeof mask) ||
5075 !EVP_EncryptFinal_ex(ctx, mask, &outlen))
5076 goto out;
5077
5078 *buf ^= mask[0] & (*buf & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f);
5079 for (i = 0; i < pnlen; i++)
5080 pn[i] ^= mask[i + 1];
5081
5082 ret = 1;
5083
5084 out:
5085 EVP_CIPHER_CTX_free(ctx);
5086
5087 return ret;
5088}
5089
5090/* Reduce the encoded size of <ack_frm> ACK frame removing the last
5091 * ACK ranges if needed to a value below <limit> in bytes.
5092 * Return 1 if succeeded, 0 if not.
5093 */
5094static int quic_ack_frm_reduce_sz(struct quic_frame *ack_frm, size_t limit)
5095{
5096 size_t room, ack_delay_sz;
5097
5098 ack_delay_sz = quic_int_getsize(ack_frm->tx_ack.ack_delay);
5099 /* A frame is made of 1 byte for the frame type. */
5100 room = limit - ack_delay_sz - 1;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01005101 if (!quic_rm_last_ack_ranges(ack_frm->tx_ack.arngs, room))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005102 return 0;
5103
Frédéric Lécaille8090b512020-11-30 16:19:22 +01005104 return 1 + ack_delay_sz + ack_frm->tx_ack.arngs->enc_sz;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005105}
5106
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005107/* Prepare into <outlist> as most as possible ack-eliciting frame from their
5108 * <inlist> prebuilt frames for <qel> encryption level to be encoded in a buffer
5109 * with <room> as available room, and <*len> the packet Length field initialized
5110 * with the number of bytes already present in this buffer which must be taken
5111 * into an account for the Length packet field value. <headlen> is the number of
5112 * bytes already present in this packet before building frames.
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02005113 *
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02005114 * Update consequently <*len> to reflect the size of these frames built
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01005115 * by this function. Also attach these frames to <l> frame list.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005116 * Return 1 if succeeded, 0 if not.
5117 */
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005118static inline int qc_build_frms(struct list *outlist, struct list *inlist,
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02005119 size_t room, size_t *len, size_t headlen,
5120 struct quic_enc_level *qel,
Amaury Denoyelle17a74162021-12-21 14:45:39 +01005121 struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005122{
Frédéric Lécailleea604992020-12-24 13:01:37 +01005123 int ret;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01005124 struct quic_frame *cf, *cfbak;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005125
Frédéric Lécailleea604992020-12-24 13:01:37 +01005126 ret = 0;
Frédéric Lécaillef4e5a7c2022-01-17 17:56:20 +01005127 if (*len > room)
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005128 return 0;
5129
Frédéric Lécailleea604992020-12-24 13:01:37 +01005130 /* If we are not probing we must take into an account the congestion
5131 * control window.
5132 */
Frédéric Lécaillef4e5a7c2022-01-17 17:56:20 +01005133 if (!qel->pktns->tx.pto_probe) {
5134 size_t remain = quic_path_prep_data(qc->path);
5135
5136 if (headlen > remain)
5137 return 0;
5138
5139 room = QUIC_MIN(room, remain - headlen);
5140 }
5141
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005142 TRACE_PROTO("************** frames build (headlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005143 QUIC_EV_CONN_BCFRMS, qc, &headlen);
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005144 list_for_each_entry_safe(cf, cfbak, inlist, list) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005145 /* header length, data length, frame length. */
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005146 size_t hlen, dlen, dlen_sz, avail_room, flen;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005147
Frédéric Lécailleea604992020-12-24 13:01:37 +01005148 if (!room)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005149 break;
5150
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005151 switch (cf->type) {
5152 case QUIC_FT_CRYPTO:
5153 TRACE_PROTO(" New CRYPTO frame build (room, len)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005154 QUIC_EV_CONN_BCFRMS, qc, &room, len);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005155 /* Compute the length of this CRYPTO frame header */
5156 hlen = 1 + quic_int_getsize(cf->crypto.offset);
5157 /* Compute the data length of this CRyPTO frame. */
5158 dlen = max_stream_data_size(room, *len + hlen, cf->crypto.len);
5159 TRACE_PROTO(" CRYPTO data length (hlen, crypto.len, dlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005160 QUIC_EV_CONN_BCFRMS, qc, &hlen, &cf->crypto.len, &dlen);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005161 if (!dlen)
5162 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005163
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005164 /* CRYPTO frame length. */
5165 flen = hlen + quic_int_getsize(dlen) + dlen;
5166 TRACE_PROTO(" CRYPTO frame length (flen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005167 QUIC_EV_CONN_BCFRMS, qc, &flen);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005168 /* Add the CRYPTO data length and its encoded length to the packet
5169 * length and the length of this length.
5170 */
5171 *len += flen;
5172 room -= flen;
5173 if (dlen == cf->crypto.len) {
5174 /* <cf> CRYPTO data have been consumed. */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01005175 LIST_DELETE(&cf->list);
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005176 LIST_APPEND(outlist, &cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005177 }
5178 else {
5179 struct quic_frame *new_cf;
5180
5181 new_cf = pool_alloc(pool_head_quic_frame);
5182 if (!new_cf) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005183 TRACE_PROTO("No memory for new crypto frame", QUIC_EV_CONN_BCFRMS, qc);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005184 return 0;
5185 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005186
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005187 new_cf->type = QUIC_FT_CRYPTO;
5188 new_cf->crypto.len = dlen;
5189 new_cf->crypto.offset = cf->crypto.offset;
5190 new_cf->crypto.qel = qel;
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005191 LIST_APPEND(outlist, &new_cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005192 /* Consume <dlen> bytes of the current frame. */
5193 cf->crypto.len -= dlen;
5194 cf->crypto.offset += dlen;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005195 }
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005196 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005197
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005198 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005199 /* Note that these frames are accepted in short packets only without
5200 * "Length" packet field. Here, <*len> is used only to compute the
5201 * sum of the lengths of the already built frames for this packet.
Frédéric Lécailled8b84432021-12-10 15:18:36 +01005202 *
5203 * Compute the length of this STREAM frame "header" made a all the field
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005204 * excepting the variable ones. Note that +1 is for the type of this frame.
5205 */
5206 hlen = 1 + quic_int_getsize(cf->stream.id) +
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02005207 ((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 +02005208 /* Compute the data length of this STREAM frame. */
5209 avail_room = room - hlen - *len;
5210 if ((ssize_t)avail_room <= 0)
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02005211 break;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005212
Frédéric Lécailled8b84432021-12-10 15:18:36 +01005213 TRACE_PROTO(" New STREAM frame build (room, len)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005214 QUIC_EV_CONN_BCFRMS, qc, &room, len);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005215 if (cf->type & QUIC_STREAM_FRAME_TYPE_LEN_BIT) {
5216 dlen = max_available_room(avail_room, &dlen_sz);
5217 if (dlen > cf->stream.len) {
5218 dlen = cf->stream.len;
5219 }
5220 dlen_sz = quic_int_getsize(dlen);
5221 flen = hlen + dlen_sz + dlen;
5222 }
5223 else {
5224 dlen = QUIC_MIN(avail_room, cf->stream.len);
5225 flen = hlen + dlen;
5226 }
5227 TRACE_PROTO(" STREAM data length (hlen, stream.len, dlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005228 QUIC_EV_CONN_BCFRMS, qc, &hlen, &cf->stream.len, &dlen);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005229 TRACE_PROTO(" STREAM frame length (flen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005230 QUIC_EV_CONN_BCFRMS, qc, &flen);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005231 /* Add the STREAM data length and its encoded length to the packet
5232 * length and the length of this length.
5233 */
5234 *len += flen;
5235 room -= flen;
5236 if (dlen == cf->stream.len) {
5237 /* <cf> STREAM data have been consumed. */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01005238 LIST_DELETE(&cf->list);
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005239 LIST_APPEND(outlist, &cf->list);
Amaury Denoyelle54445d02022-03-10 16:44:14 +01005240
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02005241 /* The MUX stream might be released at this
5242 * stage. This can most notably happen on
5243 * retransmission.
5244 */
5245 if (qc->mux_state == QC_MUX_READY &&
5246 !cf->stream.stream->release) {
5247 qcc_streams_sent_done(cf->stream.stream->ctx,
5248 cf->stream.len,
5249 cf->stream.offset.key);
5250 }
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005251 }
5252 else {
5253 struct quic_frame *new_cf;
Amaury Denoyelle642ab062022-02-23 10:54:42 +01005254 struct buffer cf_buf;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005255
5256 new_cf = pool_zalloc(pool_head_quic_frame);
5257 if (!new_cf) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005258 TRACE_PROTO("No memory for new STREAM frame", QUIC_EV_CONN_BCFRMS, qc);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005259 return 0;
5260 }
5261
5262 new_cf->type = cf->type;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02005263 new_cf->stream.stream = cf->stream.stream;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02005264 new_cf->stream.buf = cf->stream.buf;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005265 new_cf->stream.id = cf->stream.id;
5266 if (cf->type & QUIC_STREAM_FRAME_TYPE_OFF_BIT)
5267 new_cf->stream.offset = cf->stream.offset;
5268 new_cf->stream.len = dlen;
5269 new_cf->type |= QUIC_STREAM_FRAME_TYPE_LEN_BIT;
5270 /* FIN bit reset */
5271 new_cf->type &= ~QUIC_STREAM_FRAME_TYPE_FIN_BIT;
5272 new_cf->stream.data = cf->stream.data;
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005273 LIST_APPEND(outlist, &new_cf->list);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005274 cf->type |= QUIC_STREAM_FRAME_TYPE_OFF_BIT;
5275 /* Consume <dlen> bytes of the current frame. */
Amaury Denoyelle642ab062022-02-23 10:54:42 +01005276 cf_buf = b_make(b_orig(cf->stream.buf),
5277 b_size(cf->stream.buf),
5278 (char *)cf->stream.data - b_orig(cf->stream.buf), 0);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005279 cf->stream.len -= dlen;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02005280 cf->stream.offset.key += dlen;
Amaury Denoyelle642ab062022-02-23 10:54:42 +01005281 cf->stream.data = (unsigned char *)b_peek(&cf_buf, dlen);
Amaury Denoyelle54445d02022-03-10 16:44:14 +01005282
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02005283 /* The MUX stream might be released at this
5284 * stage. This can most notably happen on
5285 * retransmission.
5286 */
5287 if (qc->mux_state == QC_MUX_READY &&
5288 !cf->stream.stream->release) {
5289 qcc_streams_sent_done(new_cf->stream.stream->ctx,
5290 new_cf->stream.len,
5291 new_cf->stream.offset.key);
5292 }
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005293 }
Amaury Denoyelle54445d02022-03-10 16:44:14 +01005294
5295 /* TODO the MUX is notified about the frame sending via
5296 * previous qcc_streams_sent_done call. However, the
5297 * sending can fail later, for example if the sendto
5298 * system call returns an error. As the MUX has been
5299 * notified, the transport layer is responsible to
5300 * bufferize and resent the announced data later.
5301 */
5302
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005303 break;
5304
5305 default:
5306 flen = qc_frm_len(cf);
5307 BUG_ON(!flen);
5308 if (flen > room)
5309 continue;
5310
5311 *len += flen;
5312 room -= flen;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01005313 LIST_DELETE(&cf->list);
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005314 LIST_APPEND(outlist, &cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005315 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005316 }
Frédéric Lécailleea604992020-12-24 13:01:37 +01005317 ret = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005318 }
5319
Frédéric Lécailleea604992020-12-24 13:01:37 +01005320 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005321}
5322
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005323/* This function builds a clear packet from <pkt> information (its type)
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02005324 * into a buffer with <pos> as position pointer and <qel> as QUIC TLS encryption
5325 * level for <conn> QUIC connection and <qel> as QUIC TLS encryption level,
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01005326 * filling the buffer with as much frames as possible from <frms> list of
5327 * prebuilt frames.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005328 * 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 +02005329 * 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 +02005330 * having returned from this function.
5331 * 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 +01005332 * number field in this packet. <pn_len> will also have the packet number
5333 * length as value.
5334 *
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005335 * Return 1 if succeeded (enough room to buile this packet), O if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005336 */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005337static int qc_do_build_pkt(unsigned char *pos, const unsigned char *end,
5338 size_t dglen, struct quic_tx_packet *pkt,
5339 int64_t pn, size_t *pn_len, unsigned char **buf_pn,
Frédéric Lécailleb0021452022-03-29 11:42:03 +02005340 int padding, int cc, int probe,
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01005341 struct quic_enc_level *qel, struct quic_conn *qc,
5342 struct list *frms)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005343{
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005344 unsigned char *beg;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01005345 size_t len, len_sz, len_frms, padding_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005346 struct quic_frame frm = { .type = QUIC_FT_CRYPTO, };
5347 struct quic_frame ack_frm = { .type = QUIC_FT_ACK, };
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01005348 struct quic_frame cc_frm = { . type = QUIC_FT_CONNECTION_CLOSE, };
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01005349 size_t ack_frm_len, head_len;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01005350 int64_t rx_largest_acked_pn;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01005351 int add_ping_frm;
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01005352 struct list frm_list = LIST_HEAD_INIT(frm_list);
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01005353 struct quic_frame *cf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005354
Frédéric Lécailleea604992020-12-24 13:01:37 +01005355 /* Length field value with CRYPTO frames if present. */
5356 len_frms = 0;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005357 beg = pos;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02005358 /* When not probing, and no immediate close is required, reduce the size of this
5359 * buffer to respect the congestion controller window.
5360 * 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 +01005361 */
Frédéric Lécailleb0021452022-03-29 11:42:03 +02005362 if (!probe && !LIST_ISEMPTY(frms) && !cc) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01005363 size_t path_room;
5364
Amaury Denoyelle17a74162021-12-21 14:45:39 +01005365 path_room = quic_path_prep_data(qc->path);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01005366 if (end - beg > path_room)
5367 end = beg + path_room;
5368 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005369
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005370 /* Ensure there is enough room for the TLS encryption tag and a zero token
5371 * length field if any.
5372 */
5373 if (end - pos < QUIC_TLS_TAG_LEN +
5374 (pkt->type == QUIC_PACKET_TYPE_INITIAL ? 1 : 0))
5375 goto no_room;
5376
5377 end -= QUIC_TLS_TAG_LEN;
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02005378 rx_largest_acked_pn = qel->pktns->rx.largest_acked_pn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005379 /* packet number length */
Frédéric Lécaille141982a2022-03-15 18:44:20 +01005380 *pn_len = quic_packet_number_length(pn, rx_largest_acked_pn);
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005381 /* Build the header */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005382 if ((pkt->type == QUIC_PACKET_TYPE_SHORT &&
Amaury Denoyelle17a74162021-12-21 14:45:39 +01005383 !quic_build_packet_short_header(&pos, end, *pn_len, qc, qel->tls_ctx.flags)) ||
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005384 (pkt->type != QUIC_PACKET_TYPE_SHORT &&
Amaury Denoyelle17a74162021-12-21 14:45:39 +01005385 !quic_build_packet_long_header(&pos, end, pkt->type, *pn_len, qc)))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005386 goto no_room;
5387
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005388 /* XXX FIXME XXX Encode the token length (0) for an Initial packet. */
5389 if (pkt->type == QUIC_PACKET_TYPE_INITIAL)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005390 *pos++ = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01005391 head_len = pos - beg;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005392 /* Build an ACK frame if required. */
5393 ack_frm_len = 0;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02005394 if ((qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED)) {
5395 BUG_ON(eb_is_empty(&qel->pktns->rx.arngs.root));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005396 ack_frm.tx_ack.ack_delay = 0;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01005397 ack_frm.tx_ack.arngs = &qel->pktns->rx.arngs;
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005398 /* XXX BE CAREFUL XXX : here we reserved at least one byte for the
5399 * smallest frame (PING) and <*pn_len> more for the packet number. Note
5400 * that from here, we do not know if we will have to send a PING frame.
5401 * This will be decided after having computed the ack-eliciting frames
5402 * to be added to this packet.
5403 */
5404 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 +01005405 if (!ack_frm_len)
5406 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005407 }
5408
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005409 /* Length field value without the ack-eliciting frames. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005410 len = ack_frm_len + *pn_len;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01005411 len_frms = 0;
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01005412 if (!cc && !LIST_ISEMPTY(frms)) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01005413 ssize_t room = end - pos;
Frédéric Lécailleea604992020-12-24 13:01:37 +01005414
Frédéric Lécailleb823bb72022-03-31 20:26:18 +02005415 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, frms);
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005416 /* Initialize the length of the frames built below to <len>.
5417 * If any frame could be successfully built by qc_build_frms(),
5418 * we will have len_frms > len.
5419 */
5420 len_frms = len;
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005421 if (!qc_build_frms(&frm_list, frms,
5422 end - pos, &len_frms, pos - beg, qel, qc)) {
Frédéric Lécailleea604992020-12-24 13:01:37 +01005423 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005424 qc, NULL, NULL, &room);
Amaury Denoyelle17a74162021-12-21 14:45:39 +01005425 }
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01005426 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005427
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01005428 /* Length (of the remaining data). Must not fail because, the buffer size
5429 * has been checked above. Note that we have reserved QUIC_TLS_TAG_LEN bytes
5430 * for the encryption tag. It must be taken into an account for the length
5431 * of this packet.
5432 */
5433 if (len_frms)
5434 len = len_frms + QUIC_TLS_TAG_LEN;
5435 else
5436 len += QUIC_TLS_TAG_LEN;
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01005437 /* CONNECTION_CLOSE frame */
5438 if (cc) {
5439 struct quic_connection_close *cc = &cc_frm.connection_close;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01005440
Amaury Denoyelle17a74162021-12-21 14:45:39 +01005441 cc->error_code = qc->err_code;
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01005442 len += qc_frm_len(&cc_frm);
5443 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005444 add_ping_frm = 0;
5445 padding_len = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01005446 len_sz = quic_int_getsize(len);
5447 /* Add this packet size to <dglen> */
5448 dglen += head_len + len_sz + len;
5449 if (padding && dglen < QUIC_INITIAL_PACKET_MINLEN) {
5450 /* This is a maximum padding size */
5451 padding_len = QUIC_INITIAL_PACKET_MINLEN - dglen;
5452 /* The length field value is of this packet is <len> + <padding_len>
5453 * the size of which may be greater than the initial computed size
Ilya Shipitsin5e87bcf2021-12-25 11:45:52 +05005454 * <len_sz>. So, let's deduce the difference between these to packet
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01005455 * sizes from <padding_len>.
5456 */
5457 padding_len -= quic_int_getsize(len + padding_len) - len_sz;
5458 len += padding_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005459 }
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01005460 else if (LIST_ISEMPTY(&frm_list) || len_frms == len) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005461 if (qel->pktns->tx.pto_probe) {
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005462 /* If we cannot send a frame, we send a PING frame. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005463 add_ping_frm = 1;
5464 len += 1;
5465 }
5466 /* 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 +01005467 if (!ack_frm_len && !cc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005468 len += padding_len = QUIC_PACKET_PN_MAXLEN - *pn_len;
5469 }
5470
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005471 if (pkt->type != QUIC_PACKET_TYPE_SHORT && !quic_enc_int(&pos, end, len))
5472 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005473
5474 /* Packet number field address. */
5475 *buf_pn = pos;
5476
5477 /* Packet number encoding. */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005478 if (!quic_packet_number_encode(&pos, end, pn, *pn_len))
5479 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005480
Frédéric Lécaille141982a2022-03-15 18:44:20 +01005481 if (ack_frm_len) {
5482 if (!qc_build_frm(&pos, end, &ack_frm, pkt, qc))
5483 goto no_room;
5484
5485 pkt->largest_acked_pn = quic_pktns_get_largest_acked_pn(qel->pktns);
Frédéric Lécailleb0021452022-03-29 11:42:03 +02005486 pkt->flags |= QUIC_FL_TX_PACKET_ACK;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01005487 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005488
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005489 /* Ack-eliciting frames */
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01005490 if (!LIST_ISEMPTY(&frm_list)) {
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01005491 list_for_each_entry(cf, &frm_list, list) {
Frédéric Lécailledcc74ff2022-03-18 17:49:29 +01005492 unsigned char *spos = pos;
5493
5494 if (!qc_build_frm(&spos, end, cf, pkt, qc)) {
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01005495 ssize_t room = end - pos;
5496 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005497 qc, NULL, NULL, &room);
Frédéric Lécailledcc74ff2022-03-18 17:49:29 +01005498 /* TODO: this should not have happened if qc_build_frms()
5499 * had correctly computed and sized the frames to be
5500 * added to this packet. Note that <cf> was added
5501 * from <frm_list> to <frms> list by qc_build_frms().
5502 */
5503 LIST_DELETE(&cf->list);
5504 LIST_INSERT(frms, &cf->list);
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005505 break;
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01005506 }
Frédéric Lécailledcc74ff2022-03-18 17:49:29 +01005507
5508 pos = spos;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01005509 quic_tx_packet_refinc(pkt);
5510 cf->pkt = pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005511 }
5512 }
5513
5514 /* Build a PING frame if needed. */
5515 if (add_ping_frm) {
5516 frm.type = QUIC_FT_PING;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01005517 if (!qc_build_frm(&pos, end, &frm, pkt, qc))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005518 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005519 }
5520
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01005521 /* Build a CONNECTION_CLOSE frame if needed. */
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02005522 if (cc) {
5523 if (!qc_build_frm(&pos, end, &cc_frm, pkt, qc))
5524 goto no_room;
5525
5526 pkt->flags |= QUIC_FL_TX_PACKET_CC;
5527 }
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01005528
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005529 /* Build a PADDING frame if needed. */
5530 if (padding_len) {
5531 frm.type = QUIC_FT_PADDING;
5532 frm.padding.len = padding_len;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01005533 if (!qc_build_frm(&pos, end, &frm, pkt, qc))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005534 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005535 }
5536
Frédéric Lécaille466e9da2021-12-29 12:04:13 +01005537 /* If this packet is ack-eliciting and we are probing let's
5538 * decrement the PTO probe counter.
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01005539 */
Frédéric Lécaille466e9da2021-12-29 12:04:13 +01005540 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING &&
5541 qel->pktns->tx.pto_probe)
5542 qel->pktns->tx.pto_probe--;
5543
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005544 pkt->len = pos - beg;
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01005545 LIST_SPLICE(&pkt->frms, &frm_list);
Frédéric Lécailleb823bb72022-03-31 20:26:18 +02005546 TRACE_PROTO("Packet ack-eliciting frames", QUIC_EV_CONN_HPKT, qc, pkt);
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005547
5548 return 1;
5549
5550 no_room:
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01005551 /* Replace the pre-built frames which could not be add to this packet */
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01005552 LIST_SPLICE(frms, &frm_list);
Frédéric Lécailleb823bb72022-03-31 20:26:18 +02005553 TRACE_PROTO("Remaining ack-eliciting frames", QUIC_EV_CONN_HPKT, qc, pkt);
5554
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005555 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005556}
5557
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02005558static inline void quic_tx_packet_init(struct quic_tx_packet *pkt, int type)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005559{
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02005560 pkt->type = type;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005561 pkt->len = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005562 pkt->in_flight_len = 0;
Frédéric Lécaille0371cd52021-12-13 12:30:54 +01005563 pkt->pn_node.key = (uint64_t)-1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005564 LIST_INIT(&pkt->frms);
Frédéric Lécaille2899fe22022-03-21 10:43:53 +01005565 pkt->time_sent = TICK_ETERNITY;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005566 pkt->next = NULL;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01005567 pkt->largest_acked_pn = -1;
Frédéric Lécaille2899fe22022-03-21 10:43:53 +01005568 pkt->flags = 0;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01005569 pkt->refcnt = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005570}
5571
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02005572/* Build a packet into <buf> packet buffer with <pkt_type> as packet
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01005573 * type for <qc> QUIC connection from <qel> encryption level from <frms> list
5574 * of prebuilt frames.
5575 *
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02005576 * Return -2 if the packet could not be allocated or encrypted for any reason,
5577 * -1 if there was not enough room to build a packet.
Frédéric Lécaillee9a974a2022-03-13 19:19:12 +01005578 * XXX NOTE XXX
5579 * If you provide provide qc_build_pkt() with a big enough buffer to build a packet as big as
5580 * possible (to fill an MTU), the unique reason why this function may fail is the congestion
5581 * control window limitation.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005582 */
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02005583static struct quic_tx_packet *qc_build_pkt(unsigned char **pos,
5584 const unsigned char *buf_end,
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01005585 struct quic_enc_level *qel, struct list *frms,
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01005586 struct quic_conn *qc, size_t dglen, int padding,
Frédéric Lécailleb0021452022-03-29 11:42:03 +02005587 int pkt_type, int probe, int cc, int *err)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005588{
5589 /* The pointer to the packet number field. */
5590 unsigned char *buf_pn;
5591 unsigned char *beg, *end, *payload;
5592 int64_t pn;
5593 size_t pn_len, payload_len, aad_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005594 struct quic_tls_ctx *tls_ctx;
5595 struct quic_tx_packet *pkt;
5596
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005597 TRACE_ENTER(QUIC_EV_CONN_HPKT, qc, NULL, qel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005598 *err = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005599 pkt = pool_alloc(pool_head_quic_tx_packet);
5600 if (!pkt) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005601 TRACE_DEVEL("Not enough memory for a new packet", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005602 *err = -2;
5603 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005604 }
5605
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02005606 quic_tx_packet_init(pkt, pkt_type);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005607 beg = *pos;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005608 pn_len = 0;
5609 buf_pn = NULL;
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005610
5611 pn = qel->pktns->tx.next_pn + 1;
5612 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 +02005613 padding, cc, probe, qel, qc, frms)) {
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005614 *err = -1;
5615 goto err;
5616 }
5617
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005618 end = beg + pkt->len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005619 payload = buf_pn + pn_len;
5620 payload_len = end - payload;
5621 aad_len = payload - beg;
5622
5623 tls_ctx = &qel->tls_ctx;
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01005624 if (!quic_packet_encrypt(payload, payload_len, beg, aad_len, pn, tls_ctx, qc)) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005625 *err = -2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005626 goto err;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005627 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005628
5629 end += QUIC_TLS_TAG_LEN;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005630 pkt->len += QUIC_TLS_TAG_LEN;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005631 if (!quic_apply_header_protection(beg, buf_pn, pn_len,
5632 tls_ctx->tx.hp, tls_ctx->tx.hp_key)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005633 TRACE_DEVEL("Could not apply the header protection", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005634 *err = -2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005635 goto err;
5636 }
5637
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005638 /* Consume a packet number */
5639 qel->pktns->tx.next_pn++;
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +01005640 qc->tx.prep_bytes += pkt->len;
Frédéric Lécaille676b8492022-03-10 10:38:20 +01005641 if (qc->tx.prep_bytes >= 3 * qc->rx.bytes && !quic_peer_validated_addr(qc))
Frédéric Lécaillefc790062022-03-28 17:10:31 +02005642 qc->flags |= QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005643 /* Now that a correct packet is built, let us consume <*pos> buffer. */
5644 *pos = end;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005645 /* Attach the built packet to its tree. */
Frédéric Lécaillea7348f62021-08-03 16:50:14 +02005646 pkt->pn_node.key = pn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005647 /* Set the packet in fligth length for in flight packet only. */
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01005648 if (pkt->flags & QUIC_FL_TX_PACKET_IN_FLIGHT) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005649 pkt->in_flight_len = pkt->len;
5650 qc->path->prep_in_flight += pkt->len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01005651 }
Frédéric Lécaille47756802022-03-25 09:12:16 +01005652 /* Always reset this flags */
5653 qc->flags &= ~QUIC_FL_CONN_IMMEDIATE_CLOSE;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02005654 if (pkt->flags & QUIC_FL_TX_PACKET_ACK) {
5655 qel->pktns->flags &= ~QUIC_FL_PKTNS_ACK_REQUIRED;
5656 qel->pktns->rx.nb_aepkts_since_last_ack = 0;
5657 }
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02005658
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005659 pkt->pktns = qel->pktns;
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005660 TRACE_LEAVE(QUIC_EV_CONN_HPKT, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005661
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005662 return pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005663
5664 err:
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01005665 /* TODO: what about the frames which have been built
5666 * for this packet.
5667 */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005668 free_quic_tx_packet(pkt);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005669 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02005670 return NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005671}
5672
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005673
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01005674/* Called from the upper layer, to subscribe <es> to events <event_type>. The
5675 * event subscriber <es> is not allowed to change from a previous call as long
5676 * as at least one event is still subscribed. The <event_type> must only be a
5677 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
5678 */
5679static int quic_conn_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
5680{
Willy Tarreau784b8682022-04-11 14:18:10 +02005681 struct qcc *qcc = conn->handle.qc->qcc;
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02005682
5683 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
5684 BUG_ON(qcc->subs && qcc->subs != es);
5685
5686 es->events |= event_type;
5687 qcc->subs = es;
5688
5689 if (event_type & SUB_RETRY_RECV)
Willy Tarreau784b8682022-04-11 14:18:10 +02005690 TRACE_DEVEL("subscribe(recv)", QUIC_EV_CONN_XPRTRECV, conn->handle.qc, qcc);
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02005691
5692 if (event_type & SUB_RETRY_SEND)
Willy Tarreau784b8682022-04-11 14:18:10 +02005693 TRACE_DEVEL("subscribe(send)", QUIC_EV_CONN_XPRTSEND, conn->handle.qc, qcc);
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02005694
5695 return 0;
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01005696}
5697
5698/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
5699 * The <es> pointer is not allowed to differ from the one passed to the
5700 * subscribe() call. It always returns zero.
5701 */
5702static int quic_conn_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
5703{
5704 return conn_unsubscribe(conn, xprt_ctx, event_type, es);
5705}
5706
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005707/* Store in <xprt_ctx> the context attached to <conn>.
5708 * Returns always 0.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005709 */
5710static int qc_conn_init(struct connection *conn, void **xprt_ctx)
5711{
Amaury Denoyelle7ca7c842021-12-22 18:20:38 +01005712 struct quic_conn *qc = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005713
5714 TRACE_ENTER(QUIC_EV_CONN_NEW, conn);
5715
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005716 /* do not store the context if already set */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005717 if (*xprt_ctx)
5718 goto out;
5719
Willy Tarreau784b8682022-04-11 14:18:10 +02005720 *xprt_ctx = conn->handle.qc->xprt_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005721
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005722 out:
Frédéric Lécaillefde2a982021-12-27 15:12:09 +01005723 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005724
5725 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005726}
5727
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005728/* Start the QUIC transport layer */
5729static int qc_xprt_start(struct connection *conn, void *ctx)
5730{
5731 struct quic_conn *qc;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02005732 struct ssl_sock_ctx *qctx = ctx;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005733
Willy Tarreau784b8682022-04-11 14:18:10 +02005734 qc = conn->handle.qc;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01005735 if (qcc_install_app_ops(qc->qcc, qc->app_ops)) {
5736 TRACE_PROTO("Cannot install app layer", QUIC_EV_CONN_LPKT, qc);
Amaury Denoyelle5d774de2022-04-14 14:59:35 +02005737 /* prepare a CONNECTION_CLOSE frame */
5738 qc->err_code = QC_ERR_APPLICATION_ERROR;
5739 qc->flags |= QUIC_FL_CONN_IMMEDIATE_CLOSE;
Amaury Denoyelle05d4ae62022-04-13 17:40:26 +02005740 return -1;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01005741 }
5742
5743 /* mux-quic can now be considered ready. */
5744 qc->mux_state = QC_MUX_READY;
5745
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005746 tasklet_wakeup(qctx->wait_event.tasklet);
5747 return 1;
5748}
5749
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02005750static struct ssl_sock_ctx *qc_get_ssl_sock_ctx(struct connection *conn)
5751{
Willy Tarreau784b8682022-04-11 14:18:10 +02005752 if (!conn || conn->xprt != xprt_get(XPRT_QUIC) || !conn->handle.qc || !conn->xprt_ctx)
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02005753 return NULL;
5754
Willy Tarreau784b8682022-04-11 14:18:10 +02005755 return conn->handle.qc->xprt_ctx;
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02005756}
5757
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005758/* transport-layer operations for QUIC connections. */
5759static struct xprt_ops ssl_quic = {
Amaury Denoyelle414cac52021-09-22 11:14:37 +02005760 .close = quic_close,
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01005761 .subscribe = quic_conn_subscribe,
5762 .unsubscribe = quic_conn_unsubscribe,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005763 .init = qc_conn_init,
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005764 .start = qc_xprt_start,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005765 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
5766 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01005767 .get_alpn = ssl_sock_get_alpn,
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02005768 .get_ssl_sock_ctx = qc_get_ssl_sock_ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005769 .name = "QUIC",
5770};
5771
5772__attribute__((constructor))
5773static void __quic_conn_init(void)
5774{
5775 ha_quic_meth = BIO_meth_new(0x666, "ha QUIC methods");
5776 xprt_register(XPRT_QUIC, &ssl_quic);
5777}
5778
5779__attribute__((destructor))
5780static void __quic_conn_deinit(void)
5781{
5782 BIO_meth_free(ha_quic_meth);
5783}
5784
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005785/* Read all the QUIC packets found in <buf> from QUIC connection with <owner>
5786 * as owner calling <func> function.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05005787 * Return the number of bytes read if succeeded, -1 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005788 */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005789struct task *quic_lstnr_dghdlr(struct task *t, void *ctx, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005790{
5791 unsigned char *pos;
5792 const unsigned char *end;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005793 struct quic_dghdlr *dghdlr = ctx;
5794 struct quic_dgram *dgram;
5795 int first_pkt = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005796
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01005797 while ((dgram = MT_LIST_POP(&dghdlr->dgrams, typeof(dgram), mt_list))) {
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01005798 pos = dgram->buf;
5799 end = pos + dgram->len;
5800 do {
5801 int ret;
5802 struct quic_rx_packet *pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005803
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01005804 pkt = pool_zalloc(pool_head_quic_rx_packet);
5805 if (!pkt)
5806 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005807
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01005808 quic_rx_packet_refinc(pkt);
5809 ret = qc_lstnr_pkt_rcv(pos, end, pkt, first_pkt, dgram);
5810 first_pkt = 0;
5811 pos += pkt->len;
5812 quic_rx_packet_refdec(pkt);
5813 if (ret == -1)
5814 /* If the packet length could not be found, we cannot continue. */
5815 break;
5816 } while (pos < end);
5817
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01005818 /* Increasing the received bytes counter by the UDP datagram length
5819 * if this datagram could be associated to a connection.
5820 */
5821 if (dgram->qc)
5822 dgram->qc->rx.bytes += dgram->len;
Frédéric Lécaille841bf5e2022-02-02 09:41:27 +01005823
5824 /* Mark this datagram as consumed */
5825 HA_ATOMIC_STORE(&dgram->buf, NULL);
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01005826 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005827
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005828 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005829
5830 err:
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005831 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005832}
5833
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005834/* Retreive the DCID from a QUIC datagram or packet with <buf> as first octet.
5835 * Returns 1 if succeeded, 0 if not.
5836 */
5837static int quic_get_dgram_dcid(unsigned char *buf, const unsigned char *end,
5838 unsigned char **dcid, size_t *dcid_len)
5839{
5840 int long_header;
5841 size_t minlen, skip;
5842
5843 if (!(*buf & QUIC_PACKET_FIXED_BIT))
5844 goto err;
5845
5846 long_header = *buf & QUIC_PACKET_LONG_HEADER_BIT;
5847 minlen = long_header ?
5848 QUIC_LONG_PACKET_MINLEN : QUIC_SHORT_PACKET_MINLEN + QUIC_HAP_CID_LEN;
5849 skip = long_header ? QUIC_LONG_PACKET_DCID_OFF : QUIC_SHORT_PACKET_DCID_OFF;
Frédéric Lécaillebfa32362022-02-02 10:44:36 +01005850 if (end - buf <= minlen)
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005851 goto err;
5852
5853 buf += skip;
5854 *dcid_len = long_header ? *buf++ : QUIC_HAP_CID_LEN;
5855 if (*dcid_len > QUIC_CID_MAXLEN || end - buf <= *dcid_len)
5856 goto err;
5857
5858 *dcid = buf;
5859
5860 return 1;
5861
5862 err:
5863 TRACE_PROTO("wrong datagram", QUIC_EV_CONN_LPKT);
5864 return 0;
5865}
5866
Frédéric Lécaille37ae5052022-01-27 11:31:50 +01005867/* Retrieve the DCID from the datagram found in <buf> and deliver it to the
5868 * correct datagram handler.
5869 * Return 1 if a correct datagram could be found, 0 if not.
5870 */
5871int quic_lstnr_dgram_dispatch(unsigned char *buf, size_t len, void *owner,
5872 struct sockaddr_storage *saddr,
5873 struct quic_dgram *new_dgram, struct list *dgrams)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005874{
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005875 struct quic_dgram *dgram;
5876 unsigned char *dcid;
5877 size_t dcid_len;
Amaury Denoyellef6dcbce2022-02-08 15:05:58 +01005878 int cid_tid;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005879
5880 if (!len || !quic_get_dgram_dcid(buf, buf + len, &dcid, &dcid_len))
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005881 goto err;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005882
Frédéric Lécaille37ae5052022-01-27 11:31:50 +01005883 dgram = new_dgram ? new_dgram : pool_alloc(pool_head_quic_dgram);
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005884 if (!dgram)
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005885 goto err;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005886
Amaury Denoyellef6dcbce2022-02-08 15:05:58 +01005887 cid_tid = quic_get_cid_tid(dcid);
5888
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005889 /* All the members must be initialized! */
5890 dgram->owner = owner;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005891 dgram->buf = buf;
5892 dgram->len = len;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005893 dgram->dcid = dcid;
5894 dgram->dcid_len = dcid_len;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005895 dgram->saddr = *saddr;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005896 dgram->qc = NULL;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005897 LIST_APPEND(dgrams, &dgram->list);
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01005898 MT_LIST_APPEND(&quic_dghdlrs[cid_tid].dgrams, &dgram->mt_list);
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005899
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01005900 tasklet_wakeup(quic_dghdlrs[cid_tid].task);
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005901
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005902 return 1;
5903
5904 err:
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01005905 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005906}
5907
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02005908/* Notify the MUX layer if alive about an imminent close of <qc>. */
5909void qc_notify_close(struct quic_conn *qc)
5910{
5911 if (qc->flags & QUIC_FL_CONN_NOTIFY_CLOSE)
5912 return;
5913
5914 qc->flags |= QUIC_FL_CONN_NOTIFY_CLOSE;
5915
5916 /* wake up the MUX */
5917 if (qc->mux_state == QC_MUX_READY && qc->conn->mux->wake)
5918 qc->conn->mux->wake(qc->conn);
5919}
5920
Amaury Denoyelle118b2cb2021-11-25 16:05:16 +01005921/* Function to automatically activate QUIC traces on stdout.
5922 * Activated via the compilation flag -DENABLE_QUIC_STDOUT_TRACES.
5923 * Main use for now is in the docker image for QUIC interop testing.
5924 */
5925static void quic_init_stdout_traces(void)
5926{
5927#ifdef ENABLE_QUIC_STDOUT_TRACES
5928 trace_quic.sink = sink_find("stdout");
5929 trace_quic.level = TRACE_LEVEL_DEVELOPER;
Amaury Denoyelle118b2cb2021-11-25 16:05:16 +01005930 trace_quic.state = TRACE_STATE_RUNNING;
5931#endif
5932}
5933INITCALL0(STG_INIT, quic_init_stdout_traces);
5934
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005935/*
5936 * Local variables:
5937 * c-indent-level: 8
5938 * c-basic-offset: 8
5939 * End:
5940 */