blob: 8e3c5c22c683e4565024a52f36265ea835764196 [file] [log] [blame]
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001/*
2 * QUIC transport layer over SOCK_DGRAM sockets.
3 *
Willy Tarreau3dfb7da2022-03-02 22:33:39 +01004 * Copyright 2020 HAProxy Technologies, Frederic Lecaille <flecaille@haproxy.com>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#define _GNU_SOURCE
14#include <errno.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010015#include <stdio.h>
16#include <stdlib.h>
17
18#include <sys/socket.h>
19#include <sys/stat.h>
20#include <sys/types.h>
21
22#include <netinet/tcp.h>
23
Amaury Denoyelleeb01f592021-10-07 16:44:05 +020024#include <import/ebmbtree.h>
25
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010026#include <haproxy/buf-t.h>
27#include <haproxy/compat.h>
28#include <haproxy/api.h>
29#include <haproxy/debug.h>
30#include <haproxy/tools.h>
31#include <haproxy/ticks.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010032
33#include <haproxy/connection.h>
34#include <haproxy/fd.h>
35#include <haproxy/freq_ctr.h>
36#include <haproxy/global.h>
Frédéric Lécailledfbae762021-02-18 09:59:01 +010037#include <haproxy/h3.h>
Amaury Denoyelle154bc7f2021-11-12 16:09:54 +010038#include <haproxy/hq_interop.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010039#include <haproxy/log.h>
Frédéric Lécailledfbae762021-02-18 09:59:01 +010040#include <haproxy/mux_quic.h>
Amaury Denoyelle3db98e92022-05-13 15:41:04 +020041#include <haproxy/ncbuf.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010042#include <haproxy/pipe.h>
43#include <haproxy/proxy.h>
44#include <haproxy/quic_cc.h>
45#include <haproxy/quic_frame.h>
46#include <haproxy/quic_loss.h>
Amaury Denoyellecfa2d562022-01-19 16:01:05 +010047#include <haproxy/quic_sock.h>
Frédéric Lécaille3ccea6d2022-05-23 22:54:54 +020048#include <haproxy/quic_stats.h>
Amaury Denoyelle0cc02a32022-04-19 17:21:11 +020049#include <haproxy/quic_stream.h>
Frédéric Lécaille748ece62022-05-21 23:58:40 +020050#include <haproxy/quic_tp.h>
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +020051#include <haproxy/cbuf.h>
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +010052#include <haproxy/proto_quic.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010053#include <haproxy/quic_tls.h>
54#include <haproxy/ssl_sock.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010055#include <haproxy/task.h>
56#include <haproxy/trace.h>
57#include <haproxy/xprt_quic.h>
58
Amaury Denoyellea22d8602021-11-10 15:17:56 +010059/* list of supported QUIC versions by this implementation */
Frédéric Lécaille301425b2022-06-14 17:40:39 +020060const struct quic_version quic_versions[] = {
Frédéric Lécaille86845c52022-06-08 19:28:36 +020061 {
62 .num = QUIC_PROTOCOL_VERSION_DRAFT_29,
63 .initial_salt = initial_salt_draft_29,
64 .initial_salt_len = sizeof initial_salt_draft_29,
65 .key_label = (const unsigned char *)QUIC_HKDF_KEY_LABEL_V1,
Frédéric Lécailleb1cb9582022-06-16 17:53:46 +020066 .key_label_len = sizeof(QUIC_HKDF_KEY_LABEL_V1) - 1,
Frédéric Lécaille86845c52022-06-08 19:28:36 +020067 .iv_label = (const unsigned char *)QUIC_HKDF_IV_LABEL_V1,
Frédéric Lécailleb1cb9582022-06-16 17:53:46 +020068 .iv_label_len = sizeof(QUIC_HKDF_IV_LABEL_V1) - 1,
Frédéric Lécaille86845c52022-06-08 19:28:36 +020069 .hp_label = (const unsigned char *)QUIC_HKDF_HP_LABEL_V1,
Frédéric Lécailleb1cb9582022-06-16 17:53:46 +020070 .hp_label_len = sizeof(QUIC_HKDF_HP_LABEL_V1) - 1,
Frédéric Lécaille86845c52022-06-08 19:28:36 +020071 .ku_label = (const unsigned char *)QUIC_HKDF_KU_LABEL_V1,
Frédéric Lécailleb1cb9582022-06-16 17:53:46 +020072 .ku_label_len = sizeof(QUIC_HKDF_KU_LABEL_V1) - 1,
Frédéric Lécaille86845c52022-06-08 19:28:36 +020073 .retry_tag_key = (const unsigned char *)QUIC_TLS_RETRY_KEY_DRAFT,
74 .retry_tag_nonce = (const unsigned char *)QUIC_TLS_RETRY_NONCE_DRAFT,
75 },
76 {
77 .num = QUIC_PROTOCOL_VERSION_1,
78 .initial_salt = initial_salt_v1,
79 .initial_salt_len = sizeof initial_salt_v1,
80 .key_label = (const unsigned char *)QUIC_HKDF_KEY_LABEL_V1,
Frédéric Lécailleb1cb9582022-06-16 17:53:46 +020081 .key_label_len = sizeof(QUIC_HKDF_KEY_LABEL_V1) - 1,
Frédéric Lécaille86845c52022-06-08 19:28:36 +020082 .iv_label = (const unsigned char *)QUIC_HKDF_IV_LABEL_V1,
Frédéric Lécailleb1cb9582022-06-16 17:53:46 +020083 .iv_label_len = sizeof(QUIC_HKDF_IV_LABEL_V1) - 1,
Frédéric Lécaille86845c52022-06-08 19:28:36 +020084 .hp_label = (const unsigned char *)QUIC_HKDF_HP_LABEL_V1,
Frédéric Lécailleb1cb9582022-06-16 17:53:46 +020085 .hp_label_len = sizeof(QUIC_HKDF_HP_LABEL_V1) - 1,
Frédéric Lécaille86845c52022-06-08 19:28:36 +020086 .ku_label = (const unsigned char *)QUIC_HKDF_KU_LABEL_V1,
Frédéric Lécailleb1cb9582022-06-16 17:53:46 +020087 .ku_label_len = sizeof(QUIC_HKDF_KU_LABEL_V1) - 1,
Frédéric Lécaille86845c52022-06-08 19:28:36 +020088 .retry_tag_key = (const unsigned char *)QUIC_TLS_RETRY_KEY_V1,
89 .retry_tag_nonce = (const unsigned char *)QUIC_TLS_RETRY_NONCE_V1,
90 },
91 {
92 .num = QUIC_PROTOCOL_VERSION_2_DRAFT,
93 .initial_salt = initial_salt_v2_draft,
94 .initial_salt_len = sizeof initial_salt_v2_draft,
95 .key_label = (const unsigned char *)QUIC_HKDF_KEY_LABEL_V2,
Frédéric Lécailleb1cb9582022-06-16 17:53:46 +020096 .key_label_len = sizeof(QUIC_HKDF_KEY_LABEL_V2) - 1,
Frédéric Lécaille86845c52022-06-08 19:28:36 +020097 .iv_label = (const unsigned char *)QUIC_HKDF_IV_LABEL_V2,
Frédéric Lécailleb1cb9582022-06-16 17:53:46 +020098 .iv_label_len = sizeof(QUIC_HKDF_IV_LABEL_V2) - 1,
Frédéric Lécaille86845c52022-06-08 19:28:36 +020099 .hp_label = (const unsigned char *)QUIC_HKDF_HP_LABEL_V2,
Frédéric Lécailleb1cb9582022-06-16 17:53:46 +0200100 .hp_label_len = sizeof(QUIC_HKDF_HP_LABEL_V2) - 1,
Frédéric Lécaille86845c52022-06-08 19:28:36 +0200101 .ku_label = (const unsigned char *)QUIC_HKDF_KU_LABEL_V2,
Frédéric Lécailleb1cb9582022-06-16 17:53:46 +0200102 .ku_label_len = sizeof(QUIC_HKDF_KU_LABEL_V2) - 1,
Frédéric Lécaille86845c52022-06-08 19:28:36 +0200103 .retry_tag_key = (const unsigned char *)QUIC_TLS_RETRY_KEY_V2_DRAFT,
104 .retry_tag_nonce = (const unsigned char *)QUIC_TLS_RETRY_NONCE_V2_DRAFT,
105 },
Amaury Denoyellea22d8602021-11-10 15:17:56 +0100106};
107
Frédéric Lécaille86845c52022-06-08 19:28:36 +0200108/* The total number of supported versions */
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200109const size_t quic_versions_nb = sizeof quic_versions / sizeof *quic_versions;
110/* Listener only preferred version */
111const struct quic_version *preferred_version;
Frédéric Lécaille86845c52022-06-08 19:28:36 +0200112
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100113/* trace source and events */
114static void quic_trace(enum trace_level level, uint64_t mask, \
115 const struct trace_source *src,
116 const struct ist where, const struct ist func,
117 const void *a1, const void *a2, const void *a3, const void *a4);
118
119static const struct trace_event quic_trace_events[] = {
120 { .mask = QUIC_EV_CONN_NEW, .name = "new_conn", .desc = "new QUIC connection" },
121 { .mask = QUIC_EV_CONN_INIT, .name = "new_conn_init", .desc = "new QUIC connection initialization" },
122 { .mask = QUIC_EV_CONN_ISEC, .name = "init_secs", .desc = "initial secrets derivation" },
123 { .mask = QUIC_EV_CONN_RSEC, .name = "read_secs", .desc = "read secrets derivation" },
124 { .mask = QUIC_EV_CONN_WSEC, .name = "write_secs", .desc = "write secrets derivation" },
125 { .mask = QUIC_EV_CONN_LPKT, .name = "lstnr_packet", .desc = "new listener received packet" },
126 { .mask = QUIC_EV_CONN_SPKT, .name = "srv_packet", .desc = "new server received packet" },
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +0500127 { .mask = QUIC_EV_CONN_ENCPKT, .name = "enc_hdshk_pkt", .desc = "handhshake packet encryption" },
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100128 { .mask = QUIC_EV_CONN_HPKT, .name = "hdshk_pkt", .desc = "handhshake packet building" },
129 { .mask = QUIC_EV_CONN_PAPKT, .name = "phdshk_apkt", .desc = "post handhshake application packet preparation" },
130 { .mask = QUIC_EV_CONN_PAPKTS, .name = "phdshk_apkts", .desc = "post handhshake application packets preparation" },
Frédéric Lécaille00e24002022-02-18 17:13:45 +0100131 { .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 +0100132 { .mask = QUIC_EV_CONN_RMHP, .name = "rm_hp", .desc = "Remove header protection" },
133 { .mask = QUIC_EV_CONN_PRSHPKT, .name = "parse_hpkt", .desc = "parse handshake packet" },
134 { .mask = QUIC_EV_CONN_PRSAPKT, .name = "parse_apkt", .desc = "parse application packet" },
135 { .mask = QUIC_EV_CONN_PRSFRM, .name = "parse_frm", .desc = "parse frame" },
136 { .mask = QUIC_EV_CONN_PRSAFRM, .name = "parse_ack_frm", .desc = "parse ACK frame" },
137 { .mask = QUIC_EV_CONN_BFRM, .name = "build_frm", .desc = "build frame" },
138 { .mask = QUIC_EV_CONN_PHPKTS, .name = "phdshk_pkts", .desc = "handhshake packets preparation" },
139 { .mask = QUIC_EV_CONN_TRMHP, .name = "rm_hp_try", .desc = "header protection removing try" },
140 { .mask = QUIC_EV_CONN_ELRMHP, .name = "el_rm_hp", .desc = "handshake enc. level header protection removing" },
141 { .mask = QUIC_EV_CONN_ELRXPKTS, .name = "el_treat_rx_pkts", .desc = "handshake enc. level rx packets treatment" },
142 { .mask = QUIC_EV_CONN_SSLDATA, .name = "ssl_provide_data", .desc = "CRYPTO data provision to TLS stack" },
143 { .mask = QUIC_EV_CONN_RXCDATA, .name = "el_treat_rx_cfrms",.desc = "enc. level RX CRYPTO frames processing"},
144 { .mask = QUIC_EV_CONN_ADDDATA, .name = "add_hdshk_data", .desc = "TLS stack ->add_handshake_data() call"},
145 { .mask = QUIC_EV_CONN_FFLIGHT, .name = "flush_flight", .desc = "TLS stack ->flush_flight() call"},
146 { .mask = QUIC_EV_CONN_SSLALERT, .name = "send_alert", .desc = "TLS stack ->send_alert() call"},
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100147 { .mask = QUIC_EV_CONN_RTTUPDT, .name = "rtt_updt", .desc = "RTT sampling" },
148 { .mask = QUIC_EV_CONN_SPPKTS, .name = "sppkts", .desc = "send prepared packets" },
149 { .mask = QUIC_EV_CONN_PKTLOSS, .name = "pktloss", .desc = "detect packet loss" },
150 { .mask = QUIC_EV_CONN_STIMER, .name = "stimer", .desc = "set timer" },
151 { .mask = QUIC_EV_CONN_PTIMER, .name = "ptimer", .desc = "process timer" },
152 { .mask = QUIC_EV_CONN_SPTO, .name = "spto", .desc = "set PTO" },
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +0100153 { .mask = QUIC_EV_CONN_BCFRMS, .name = "bcfrms", .desc = "build CRYPTO data frames" },
Frédéric Lécaille513b4f22021-09-20 15:23:17 +0200154 { .mask = QUIC_EV_CONN_XPRTSEND, .name = "xprt_send", .desc = "sending XRPT subscription" },
155 { .mask = QUIC_EV_CONN_XPRTRECV, .name = "xprt_recv", .desc = "receiving XRPT subscription" },
Frédéric Lécailleba85acd2022-01-11 14:43:50 +0100156 { .mask = QUIC_EV_CONN_FREED, .name = "conn_freed", .desc = "releasing conn. memory" },
157 { .mask = QUIC_EV_CONN_CLOSE, .name = "conn_close", .desc = "closing conn." },
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100158 { .mask = QUIC_EV_CONN_ACKSTRM, .name = "ack_strm", .desc = "STREAM ack."},
Frédéric Lécailleb823bb72022-03-31 20:26:18 +0200159 { .mask = QUIC_EV_CONN_FRMLIST, .name = "frm_list", .desc = "frame list"},
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +0200160 { .mask = QUIC_EV_STATELESS_RST, .name = "stateless_reset", .desc = "stateless reset sent"},
Frédéric Lécaillec7785b52022-05-23 09:08:54 +0200161 { .mask = QUIC_EV_TRANSP_PARAMS, .name = "transport_params", .desc = "transport parameters"},
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100162 { /* end */ }
163};
164
165static const struct name_desc quic_trace_lockon_args[4] = {
166 /* arg1 */ { /* already used by the connection */ },
167 /* arg2 */ { .name="quic", .desc="QUIC transport" },
168 /* arg3 */ { },
169 /* arg4 */ { }
170};
171
172static const struct name_desc quic_trace_decoding[] = {
173#define QUIC_VERB_CLEAN 1
174 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
175 { /* end */ }
176};
177
178
179struct trace_source trace_quic = {
180 .name = IST("quic"),
181 .desc = "QUIC xprt",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100182 .arg_def = TRC_ARG1_QCON, /* TRACE()'s first argument is always a quic_conn */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100183 .default_cb = quic_trace,
184 .known_events = quic_trace_events,
185 .lockon_args = quic_trace_lockon_args,
186 .decoding = quic_trace_decoding,
187 .report_events = ~0, /* report everything by default */
188};
189
190#define TRACE_SOURCE &trace_quic
191INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
192
193static BIO_METHOD *ha_quic_meth;
194
Willy Tarreaub8dec4a2022-06-23 11:02:08 +0200195DECLARE_POOL(pool_head_quic_tx_ring, "quic_tx_ring", QUIC_TX_RING_BUFSZ);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +0100196DECLARE_POOL(pool_head_quic_conn_rxbuf, "quic_conn_rxbuf", QUIC_CONN_RX_BUFSZ);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100197DECLARE_STATIC_POOL(pool_head_quic_conn_ctx,
Willy Tarreaub8dec4a2022-06-23 11:02:08 +0200198 "quic_conn_ctx", sizeof(struct ssl_sock_ctx));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100199DECLARE_STATIC_POOL(pool_head_quic_conn, "quic_conn", sizeof(struct quic_conn));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100200DECLARE_POOL(pool_head_quic_connection_id,
Willy Tarreaub8dec4a2022-06-23 11:02:08 +0200201 "quic_connnection_id", sizeof(struct quic_connection_id));
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +0100202DECLARE_POOL(pool_head_quic_dgram, "quic_dgram", sizeof(struct quic_dgram));
Willy Tarreaub8dec4a2022-06-23 11:02:08 +0200203DECLARE_POOL(pool_head_quic_rx_packet, "quic_rx_packet", sizeof(struct quic_rx_packet));
204DECLARE_POOL(pool_head_quic_tx_packet, "quic_tx_packet", sizeof(struct quic_tx_packet));
205DECLARE_STATIC_POOL(pool_head_quic_rx_crypto_frm, "quic_rx_crypto_frm", sizeof(struct quic_rx_crypto_frm));
206DECLARE_STATIC_POOL(pool_head_quic_crypto_buf, "quic_crypto_buf", sizeof(struct quic_crypto_buf));
207DECLARE_POOL(pool_head_quic_frame, "quic_frame", sizeof(struct quic_frame));
208DECLARE_STATIC_POOL(pool_head_quic_arng, "quic_arng", sizeof(struct quic_arng_node));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100209
Frédéric Lécaille9445abc2021-08-04 10:49:51 +0200210static struct quic_tx_packet *qc_build_pkt(unsigned char **pos, const unsigned char *buf_end,
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200211 struct quic_enc_level *qel, struct quic_tls_ctx *ctx,
212 struct list *frms, struct quic_conn *qc,
213 const struct quic_version *ver, size_t dglen, int pkt_type,
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +0200214 int force_ack, int padding, int probe, int cc, int *err);
Frédéric Lécaille00e24002022-02-18 17:13:45 +0100215static 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 +0100216static void qc_idle_timer_do_rearm(struct quic_conn *qc);
Frédéric Lécaille530601c2022-03-10 15:11:57 +0100217static void qc_idle_timer_rearm(struct quic_conn *qc, int read);
Frédéric Lécaille3fd92f62022-05-19 14:35:20 +0200218static int qc_conn_alloc_ssl_ctx(struct quic_conn *qc);
219static int quic_conn_init_timer(struct quic_conn *qc);
220static int quic_conn_init_idle_timer_task(struct quic_conn *qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100221
Frédéric Lécaillef63921f2020-12-18 09:48:20 +0100222/* Only for debug purpose */
223struct enc_debug_info {
224 unsigned char *payload;
225 size_t payload_len;
226 unsigned char *aad;
227 size_t aad_len;
228 uint64_t pn;
229};
230
231/* Initializes a enc_debug_info struct (only for debug purpose) */
232static inline void enc_debug_info_init(struct enc_debug_info *edi,
233 unsigned char *payload, size_t payload_len,
234 unsigned char *aad, size_t aad_len, uint64_t pn)
235{
236 edi->payload = payload;
237 edi->payload_len = payload_len;
238 edi->aad = aad;
239 edi->aad_len = aad_len;
240 edi->pn = pn;
241}
242
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100243/* Trace callback for QUIC.
244 * These traces always expect that arg1, if non-null, is of type connection.
245 */
246static void quic_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
247 const struct ist where, const struct ist func,
248 const void *a1, const void *a2, const void *a3, const void *a4)
249{
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100250 const struct quic_conn *qc = a1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100251
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100252 if (qc) {
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100253 const struct quic_tls_ctx *tls_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100254
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100255 chunk_appendf(&trace_buf, " : qc@%p", qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100256 if ((mask & QUIC_EV_CONN_INIT) && qc) {
257 chunk_appendf(&trace_buf, "\n odcid");
258 quic_cid_dump(&trace_buf, &qc->odcid);
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100259 chunk_appendf(&trace_buf, "\n dcid");
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100260 quic_cid_dump(&trace_buf, &qc->dcid);
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100261 chunk_appendf(&trace_buf, "\n scid");
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100262 quic_cid_dump(&trace_buf, &qc->scid);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100263 }
264
Frédéric Lécaillec7785b52022-05-23 09:08:54 +0200265 if (mask & QUIC_EV_TRANSP_PARAMS) {
266 const struct quic_transport_params *p = a2;
Frédéric Lécaille4f5777a2022-06-20 19:39:26 +0200267 quic_transport_params_dump(&trace_buf, qc, p);
Frédéric Lécaillec7785b52022-05-23 09:08:54 +0200268 }
269
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100270 if (mask & QUIC_EV_CONN_ADDDATA) {
271 const enum ssl_encryption_level_t *level = a2;
272 const size_t *len = a3;
273
274 if (level) {
275 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
276
277 chunk_appendf(&trace_buf, " el=%c(%d)", quic_enc_level_char(lvl), lvl);
278 }
279 if (len)
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100280 chunk_appendf(&trace_buf, " len=%llu", (unsigned long long)*len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100281 }
282 if ((mask & QUIC_EV_CONN_ISEC) && qc) {
283 /* Initial read & write secrets. */
284 enum quic_tls_enc_level level = QUIC_TLS_ENC_LEVEL_INITIAL;
285 const unsigned char *rx_sec = a2;
286 const unsigned char *tx_sec = a3;
287
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100288 tls_ctx = &qc->els[level].tls_ctx;
289 if (tls_ctx->flags & QUIC_FL_TLS_SECRETS_SET) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100290 chunk_appendf(&trace_buf, "\n RX el=%c", quic_enc_level_char(level));
291 if (rx_sec)
292 quic_tls_secret_hexdump(&trace_buf, rx_sec, 32);
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100293 quic_tls_keys_hexdump(&trace_buf, &tls_ctx->rx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100294 chunk_appendf(&trace_buf, "\n TX el=%c", quic_enc_level_char(level));
295 if (tx_sec)
296 quic_tls_secret_hexdump(&trace_buf, tx_sec, 32);
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100297 quic_tls_keys_hexdump(&trace_buf, &tls_ctx->tx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100298 }
299 }
300 if (mask & (QUIC_EV_CONN_RSEC|QUIC_EV_CONN_RWSEC)) {
301 const enum ssl_encryption_level_t *level = a2;
302 const unsigned char *secret = a3;
303 const size_t *secret_len = a4;
304
305 if (level) {
306 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
307
308 chunk_appendf(&trace_buf, "\n RX el=%c", quic_enc_level_char(lvl));
309 if (secret && secret_len)
310 quic_tls_secret_hexdump(&trace_buf, secret, *secret_len);
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100311 tls_ctx = &qc->els[lvl].tls_ctx;
312 if (tls_ctx->flags & QUIC_FL_TLS_SECRETS_SET)
313 quic_tls_keys_hexdump(&trace_buf, &tls_ctx->rx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100314 }
315 }
316
317 if (mask & (QUIC_EV_CONN_WSEC|QUIC_EV_CONN_RWSEC)) {
318 const enum ssl_encryption_level_t *level = a2;
319 const unsigned char *secret = a3;
320 const size_t *secret_len = a4;
321
322 if (level) {
323 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
324
325 chunk_appendf(&trace_buf, "\n TX el=%c", quic_enc_level_char(lvl));
326 if (secret && secret_len)
327 quic_tls_secret_hexdump(&trace_buf, secret, *secret_len);
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100328 tls_ctx = &qc->els[lvl].tls_ctx;
329 if (tls_ctx->flags & QUIC_FL_TLS_SECRETS_SET)
330 quic_tls_keys_hexdump(&trace_buf, &tls_ctx->tx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100331 }
332
333 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100334
Frédéric Lécailleb823bb72022-03-31 20:26:18 +0200335 if (mask & QUIC_EV_CONN_FRMLIST) {
336 const struct list *l = a2;
337
338 if (l) {
339 const struct quic_frame *frm;
340 list_for_each_entry(frm, l, list)
341 chunk_frm_appendf(&trace_buf, frm);
342 }
343 }
344
Frédéric Lécaille133e8a72020-12-18 09:33:27 +0100345 if (mask & (QUIC_EV_CONN_HPKT|QUIC_EV_CONN_PAPKT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100346 const struct quic_tx_packet *pkt = a2;
347 const struct quic_enc_level *qel = a3;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100348 const ssize_t *room = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100349
350 if (qel) {
Amaury Denoyelle4fd53d72021-12-21 14:28:26 +0100351 const struct quic_pktns *pktns = qc->pktns;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100352 chunk_appendf(&trace_buf, " qel=%c cwnd=%llu ppif=%lld pif=%llu "
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100353 "if=%llu pp=%u",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100354 quic_enc_level_char_from_qel(qel, qc),
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100355 (unsigned long long)qc->path->cwnd,
356 (unsigned long long)qc->path->prep_in_flight,
357 (unsigned long long)qc->path->in_flight,
358 (unsigned long long)pktns->tx.in_flight,
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100359 pktns->tx.pto_probe);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100360 }
361 if (pkt) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +0200362 const struct quic_frame *frm;
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100363 if (pkt->pn_node.key != (uint64_t)-1)
364 chunk_appendf(&trace_buf, " pn=%llu",(ull)pkt->pn_node.key);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100365 list_for_each_entry(frm, &pkt->frms, list)
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100366 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaille8b6ea172022-01-17 10:51:43 +0100367 chunk_appendf(&trace_buf, " rx.bytes=%llu tx.bytes=%llu",
368 (unsigned long long)qc->rx.bytes,
369 (unsigned long long)qc->tx.bytes);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100370 }
371
372 if (room) {
373 chunk_appendf(&trace_buf, " room=%lld", (long long)*room);
374 chunk_appendf(&trace_buf, " dcid.len=%llu scid.len=%llu",
375 (unsigned long long)qc->dcid.len, (unsigned long long)qc->scid.len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100376 }
377 }
378
Frédéric Lécaille00e24002022-02-18 17:13:45 +0100379 if (mask & QUIC_EV_CONN_IO_CB) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100380 const enum quic_handshake_state *state = a2;
381 const int *err = a3;
382
383 if (state)
384 chunk_appendf(&trace_buf, " state=%s", quic_hdshk_state_str(*state));
385 if (err)
386 chunk_appendf(&trace_buf, " err=%s", ssl_error_str(*err));
387 }
388
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +0100389 if (mask & (QUIC_EV_CONN_TRMHP|QUIC_EV_CONN_ELRMHP|QUIC_EV_CONN_SPKT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100390 const struct quic_rx_packet *pkt = a2;
391 const unsigned long *pktlen = a3;
392 const SSL *ssl = a4;
393
394 if (pkt) {
Frédéric Lécaille3dfd4c42022-04-05 15:29:14 +0200395 chunk_appendf(&trace_buf, " pkt@%p", pkt);
396 if (pkt->type == QUIC_PACKET_TYPE_SHORT && pkt->data)
397 chunk_appendf(&trace_buf, " kp=%d",
398 !!(*pkt->data & QUIC_PACKET_KEY_PHASE_BIT));
399 chunk_appendf(&trace_buf, " el=%c",
400 quic_packet_type_enc_level_char(pkt->type));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100401 if (pkt->pnl)
402 chunk_appendf(&trace_buf, " pnl=%u pn=%llu", pkt->pnl,
403 (unsigned long long)pkt->pn);
404 if (pkt->token_len)
405 chunk_appendf(&trace_buf, " toklen=%llu",
406 (unsigned long long)pkt->token_len);
407 if (pkt->aad_len)
408 chunk_appendf(&trace_buf, " aadlen=%llu",
409 (unsigned long long)pkt->aad_len);
410 chunk_appendf(&trace_buf, " flags=0x%x len=%llu",
411 pkt->flags, (unsigned long long)pkt->len);
412 }
413 if (pktlen)
414 chunk_appendf(&trace_buf, " (%ld)", *pktlen);
415 if (ssl) {
416 enum ssl_encryption_level_t level = SSL_quic_read_level(ssl);
417 chunk_appendf(&trace_buf, " el=%c",
418 quic_enc_level_char(ssl_to_quic_enc_level(level)));
419 }
420 }
421
422 if (mask & (QUIC_EV_CONN_ELRXPKTS|QUIC_EV_CONN_PRSHPKT|QUIC_EV_CONN_SSLDATA)) {
423 const struct quic_rx_packet *pkt = a2;
424 const struct quic_rx_crypto_frm *cf = a3;
425 const SSL *ssl = a4;
426
427 if (pkt)
428 chunk_appendf(&trace_buf, " pkt@%p el=%c pn=%llu", pkt,
429 quic_packet_type_enc_level_char(pkt->type),
430 (unsigned long long)pkt->pn);
431 if (cf)
432 chunk_appendf(&trace_buf, " cfoff=%llu cflen=%llu",
433 (unsigned long long)cf->offset_node.key,
434 (unsigned long long)cf->len);
435 if (ssl) {
436 enum ssl_encryption_level_t level = SSL_quic_read_level(ssl);
Frédéric Lécaille57e6e9e2021-09-23 18:10:56 +0200437 chunk_appendf(&trace_buf, " rel=%c",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100438 quic_enc_level_char(ssl_to_quic_enc_level(level)));
439 }
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100440
Amaury Denoyelle57e6db72022-07-13 15:07:56 +0200441 if (qc->err.code)
442 chunk_appendf(&trace_buf, " err_code=0x%llx", (ull)qc->err.code);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100443 }
444
445 if (mask & (QUIC_EV_CONN_PRSFRM|QUIC_EV_CONN_BFRM)) {
446 const struct quic_frame *frm = a2;
447
448 if (frm)
449 chunk_appendf(&trace_buf, " %s", quic_frame_type_string(frm->type));
450 }
451
452 if (mask & QUIC_EV_CONN_PHPKTS) {
453 const struct quic_enc_level *qel = a2;
454
455 if (qel) {
Frédéric Lécailledd51da52021-12-29 15:36:25 +0100456 const struct quic_pktns *pktns = qel->pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100457 chunk_appendf(&trace_buf,
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100458 " 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 +0100459 quic_enc_level_char_from_qel(qel, qc),
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200460 quic_hdshk_state_str(qc->state),
Frédéric Lécaille205e4f32022-03-28 17:38:27 +0200461 !!(qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED),
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100462 (unsigned long long)qc->path->cwnd,
463 (unsigned long long)qc->path->prep_in_flight,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100464 (unsigned long long)qc->path->in_flight,
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100465 (unsigned long long)pktns->tx.in_flight,
466 pktns->tx.pto_probe);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100467 }
468 }
469
Frédéric Lécaillef63921f2020-12-18 09:48:20 +0100470 if (mask & QUIC_EV_CONN_ENCPKT) {
471 const struct enc_debug_info *edi = a2;
472
473 if (edi)
474 chunk_appendf(&trace_buf,
475 " payload=@%p payload_len=%llu"
476 " aad=@%p aad_len=%llu pn=%llu",
477 edi->payload, (unsigned long long)edi->payload_len,
478 edi->aad, (unsigned long long)edi->aad_len,
479 (unsigned long long)edi->pn);
480 }
481
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100482 if (mask & QUIC_EV_CONN_RMHP) {
483 const struct quic_rx_packet *pkt = a2;
484
485 if (pkt) {
486 const int *ret = a3;
487
488 chunk_appendf(&trace_buf, " pkt@%p", pkt);
489 if (ret && *ret)
490 chunk_appendf(&trace_buf, " pnl=%u pn=%llu",
491 pkt->pnl, (unsigned long long)pkt->pn);
492 }
493 }
494
495 if (mask & QUIC_EV_CONN_PRSAFRM) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +0200496 const struct quic_frame *frm = a2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100497 const unsigned long *val1 = a3;
498 const unsigned long *val2 = a4;
499
500 if (frm)
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100501 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100502 if (val1)
503 chunk_appendf(&trace_buf, " %lu", *val1);
504 if (val2)
505 chunk_appendf(&trace_buf, "..%lu", *val2);
506 }
507
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100508 if (mask & QUIC_EV_CONN_ACKSTRM) {
509 const struct quic_stream *s = a2;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +0200510 const struct qc_stream_desc *stream = a3;
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100511
512 if (s)
513 chunk_appendf(&trace_buf, " off=%llu len=%llu", (ull)s->offset.key, (ull)s->len);
Amaury Denoyelle7272cd72022-03-29 15:15:54 +0200514 if (stream)
515 chunk_appendf(&trace_buf, " ack_offset=%llu", (ull)stream->ack_offset);
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100516 }
517
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100518 if (mask & QUIC_EV_CONN_RTTUPDT) {
519 const unsigned int *rtt_sample = a2;
520 const unsigned int *ack_delay = a3;
521 const struct quic_loss *ql = a4;
522
523 if (rtt_sample)
524 chunk_appendf(&trace_buf, " rtt_sample=%ums", *rtt_sample);
525 if (ack_delay)
526 chunk_appendf(&trace_buf, " ack_delay=%ums", *ack_delay);
527 if (ql)
528 chunk_appendf(&trace_buf,
529 " srtt=%ums rttvar=%ums min_rtt=%ums",
530 ql->srtt >> 3, ql->rtt_var >> 2, ql->rtt_min);
531 }
532 if (mask & QUIC_EV_CONN_CC) {
533 const struct quic_cc_event *ev = a2;
534 const struct quic_cc *cc = a3;
535
536 if (a2)
537 quic_cc_event_trace(&trace_buf, ev);
538 if (a3)
539 quic_cc_state_trace(&trace_buf, cc);
540 }
541
542 if (mask & QUIC_EV_CONN_PKTLOSS) {
543 const struct quic_pktns *pktns = a2;
544 const struct list *lost_pkts = a3;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100545
546 if (pktns) {
547 chunk_appendf(&trace_buf, " pktns=%s",
548 pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
549 pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H");
550 if (pktns->tx.loss_time)
551 chunk_appendf(&trace_buf, " loss_time=%dms",
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100552 TICKS_TO_MS(tick_remain(now_ms, pktns->tx.loss_time)));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100553 }
554 if (lost_pkts && !LIST_ISEMPTY(lost_pkts)) {
555 struct quic_tx_packet *pkt;
556
557 chunk_appendf(&trace_buf, " lost_pkts:");
558 list_for_each_entry(pkt, lost_pkts, list)
559 chunk_appendf(&trace_buf, " %lu", (unsigned long)pkt->pn_node.key);
560 }
561 }
562
563 if (mask & (QUIC_EV_CONN_STIMER|QUIC_EV_CONN_PTIMER|QUIC_EV_CONN_SPTO)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100564 const struct quic_pktns *pktns = a2;
565 const int *duration = a3;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100566 const uint64_t *ifae_pkts = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100567
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100568 if (ifae_pkts)
569 chunk_appendf(&trace_buf, " ifae_pkts=%llu",
570 (unsigned long long)*ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100571 if (pktns) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100572 chunk_appendf(&trace_buf, " pktns=%s pp=%d",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100573 pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100574 pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H",
575 pktns->tx.pto_probe);
Frédéric Lécaille22cfd832021-12-27 17:42:51 +0100576 if (mask & (QUIC_EV_CONN_STIMER|QUIC_EV_CONN_SPTO)) {
577 if (pktns->tx.in_flight)
578 chunk_appendf(&trace_buf, " if=%llu", (ull)pktns->tx.in_flight);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100579 if (pktns->tx.loss_time)
580 chunk_appendf(&trace_buf, " loss_time=%dms",
581 TICKS_TO_MS(pktns->tx.loss_time - now_ms));
582 }
583 if (mask & QUIC_EV_CONN_SPTO) {
584 if (pktns->tx.time_of_last_eliciting)
585 chunk_appendf(&trace_buf, " tole=%dms",
586 TICKS_TO_MS(pktns->tx.time_of_last_eliciting - now_ms));
587 if (duration)
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100588 chunk_appendf(&trace_buf, " dur=%dms", TICKS_TO_MS(*duration));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100589 }
590 }
591
Frédéric Lécaille03235d72022-03-30 14:36:40 +0200592 if (!(mask & (QUIC_EV_CONN_SPTO|QUIC_EV_CONN_PTIMER)) && qc->timer_task) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100593 chunk_appendf(&trace_buf,
594 " expire=%dms", TICKS_TO_MS(qc->timer - now_ms));
595 }
596 }
597
598 if (mask & QUIC_EV_CONN_SPPKTS) {
599 const struct quic_tx_packet *pkt = a2;
600
Frédéric Lécaille8726d632022-05-03 10:32:21 +0200601 chunk_appendf(&trace_buf, " err=%u cwnd=%llu ppif=%llu pif=%llu", qc->sendto_err,
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100602 (unsigned long long)qc->path->cwnd,
603 (unsigned long long)qc->path->prep_in_flight,
604 (unsigned long long)qc->path->in_flight);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100605 if (pkt) {
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100606 chunk_appendf(&trace_buf, " pn=%lu(%s) iflen=%llu",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100607 (unsigned long)pkt->pn_node.key,
608 pkt->pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
609 pkt->pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H",
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100610 (unsigned long long)pkt->in_flight_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100611 }
612 }
Frédéric Lécaille47c433f2020-12-10 17:03:11 +0100613
614 if (mask & QUIC_EV_CONN_SSLALERT) {
615 const uint8_t *alert = a2;
616 const enum ssl_encryption_level_t *level = a3;
617
618 if (alert)
619 chunk_appendf(&trace_buf, " alert=0x%02x", *alert);
620 if (level)
621 chunk_appendf(&trace_buf, " el=%c",
622 quic_enc_level_char(ssl_to_quic_enc_level(*level)));
623 }
Frédéric Lécailleea604992020-12-24 13:01:37 +0100624
625 if (mask & QUIC_EV_CONN_BCFRMS) {
626 const size_t *sz1 = a2;
627 const size_t *sz2 = a3;
628 const size_t *sz3 = a4;
629
630 if (sz1)
631 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz1);
632 if (sz2)
633 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz2);
634 if (sz3)
635 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz3);
636 }
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100637
638 if (mask & QUIC_EV_CONN_PSTRM) {
639 const struct quic_frame *frm = a2;
Frédéric Lécaille577fe482021-01-11 15:10:06 +0100640
Frédéric Lécailled8b84432021-12-10 15:18:36 +0100641 if (frm)
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100642 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100643 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100644 }
645 if (mask & QUIC_EV_CONN_LPKT) {
646 const struct quic_rx_packet *pkt = a2;
Frédéric Lécaille865b0782021-09-23 07:33:20 +0200647 const uint64_t *len = a3;
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200648 const struct quic_version *ver = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100649
Frédéric Lécaille8678eb02021-12-16 18:03:52 +0100650 if (pkt) {
651 chunk_appendf(&trace_buf, " pkt@%p type=0x%02x %s",
652 pkt, pkt->type, qc_pkt_long(pkt) ? "long" : "short");
653 if (pkt->pn_node.key != (uint64_t)-1)
654 chunk_appendf(&trace_buf, " pn=%llu", pkt->pn_node.key);
655 }
656
Frédéric Lécaille865b0782021-09-23 07:33:20 +0200657 if (len)
658 chunk_appendf(&trace_buf, " len=%llu", (ull)*len);
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200659
660 if (ver)
661 chunk_appendf(&trace_buf, " ver=0x%08x", ver->num);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100662 }
663
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +0200664 if (mask & QUIC_EV_STATELESS_RST) {
665 const struct quic_cid *cid = a2;
666
667 if (cid)
668 quic_cid_dump(&trace_buf, cid);
669 }
670
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100671}
672
673/* Returns 1 if the peer has validated <qc> QUIC connection address, 0 if not. */
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100674static inline int quic_peer_validated_addr(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100675{
Frédéric Lécaille67f47d02021-08-19 15:19:09 +0200676 struct quic_pktns *hdshk_pktns, *app_pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100677
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +0100678 if (!qc_is_listener(qc))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100679 return 1;
680
Frédéric Lécaille67f47d02021-08-19 15:19:09 +0200681 hdshk_pktns = qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns;
682 app_pktns = qc->els[QUIC_TLS_ENC_LEVEL_APP].pktns;
Frédéric Lécaille205e4f32022-03-28 17:38:27 +0200683 if ((hdshk_pktns->flags & QUIC_FL_PKTNS_PKT_RECEIVED) ||
684 (app_pktns->flags & QUIC_FL_PKTNS_PKT_RECEIVED) ||
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200685 qc->state >= QUIC_HS_ST_COMPLETE)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100686 return 1;
687
688 return 0;
689}
690
691/* Set the timer attached to the QUIC connection with <ctx> as I/O handler and used for
692 * both loss detection and PTO and schedule the task assiated to this timer if needed.
693 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100694static inline void qc_set_timer(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100695{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100696 struct quic_pktns *pktns;
697 unsigned int pto;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +0200698 int handshake_complete;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100699
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100700 TRACE_ENTER(QUIC_EV_CONN_STIMER, qc,
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100701 NULL, NULL, &qc->path->ifae_pkts);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100702
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100703 pktns = quic_loss_pktns(qc);
704 if (tick_isset(pktns->tx.loss_time)) {
705 qc->timer = pktns->tx.loss_time;
706 goto out;
707 }
708
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +0100709 /* anti-amplification: the timer must be
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100710 * cancelled for a server which reached the anti-amplification limit.
711 */
Frédéric Lécaille078634d2022-01-04 16:59:42 +0100712 if (!quic_peer_validated_addr(qc) &&
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200713 (qc->flags & QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100714 TRACE_PROTO("anti-amplification reached", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +0100715 qc->timer = TICK_ETERNITY;
716 goto out;
717 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100718
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100719 if (!qc->path->ifae_pkts && quic_peer_validated_addr(qc)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100720 TRACE_PROTO("timer cancellation", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100721 /* Timer cancellation. */
722 qc->timer = TICK_ETERNITY;
723 goto out;
724 }
725
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200726 handshake_complete = qc->state >= QUIC_HS_ST_COMPLETE;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +0200727 pktns = quic_pto_pktns(qc, handshake_complete, &pto);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100728 if (tick_isset(pto))
729 qc->timer = pto;
730 out:
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100731 if (qc->timer_task && qc->timer != TICK_ETERNITY) {
Frédéric Lécailleaaf1f192022-03-22 15:37:41 +0100732 if (tick_is_expired(qc->timer, now_ms)) {
733 TRACE_PROTO("wakeup asap timer task", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100734 task_wakeup(qc->timer_task, TASK_WOKEN_MSG);
Frédéric Lécailleaaf1f192022-03-22 15:37:41 +0100735 }
736 else {
737 TRACE_PROTO("timer task scheduling", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100738 task_schedule(qc->timer_task, qc->timer);
Frédéric Lécailleaaf1f192022-03-22 15:37:41 +0100739 }
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100740 }
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100741 TRACE_LEAVE(QUIC_EV_CONN_STIMER, qc, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100742}
743
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100744/* Derive new keys and ivs required for Key Update feature for <qc> QUIC
745 * connection.
746 * Return 1 if succeeded, 0 if not.
747 */
748static int quic_tls_key_update(struct quic_conn *qc)
749{
750 struct quic_tls_ctx *tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
751 struct quic_tls_secrets *rx, *tx;
752 struct quic_tls_kp *nxt_rx = &qc->ku.nxt_rx;
753 struct quic_tls_kp *nxt_tx = &qc->ku.nxt_tx;
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200754 const struct quic_version *ver =
755 qc->negotiated_version ? qc->negotiated_version : qc->original_version;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100756
757 tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
758 rx = &tls_ctx->rx;
759 tx = &tls_ctx->tx;
760 nxt_rx = &qc->ku.nxt_rx;
761 nxt_tx = &qc->ku.nxt_tx;
762
763 /* Prepare new RX secrets */
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200764 if (!quic_tls_sec_update(rx->md, ver, nxt_rx->secret, nxt_rx->secretlen,
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100765 rx->secret, rx->secretlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100766 TRACE_DEVEL("New RX secret update failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100767 return 0;
768 }
769
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200770 if (!quic_tls_derive_keys(rx->aead, NULL, rx->md, ver,
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100771 nxt_rx->key, nxt_rx->keylen,
772 nxt_rx->iv, nxt_rx->ivlen, NULL, 0,
773 nxt_rx->secret, nxt_rx->secretlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100774 TRACE_DEVEL("New RX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100775 return 0;
776 }
777
778 /* Prepare new TX secrets */
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200779 if (!quic_tls_sec_update(tx->md, ver, nxt_tx->secret, nxt_tx->secretlen,
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100780 tx->secret, tx->secretlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100781 TRACE_DEVEL("New TX secret update failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100782 return 0;
783 }
784
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200785 if (!quic_tls_derive_keys(tx->aead, NULL, tx->md, ver,
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100786 nxt_tx->key, nxt_tx->keylen,
787 nxt_tx->iv, nxt_tx->ivlen, NULL, 0,
788 nxt_tx->secret, nxt_tx->secretlen)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100789 TRACE_DEVEL("New TX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100790 return 0;
791 }
792
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200793 if (nxt_rx->ctx) {
794 EVP_CIPHER_CTX_free(nxt_rx->ctx);
795 nxt_rx->ctx = NULL;
796 }
797
798 if (!quic_tls_rx_ctx_init(&nxt_rx->ctx, tls_ctx->rx.aead, nxt_rx->key)) {
799 TRACE_DEVEL("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
800 return 0;
801 }
802
803 if (nxt_tx->ctx) {
804 EVP_CIPHER_CTX_free(nxt_tx->ctx);
805 nxt_tx->ctx = NULL;
806 }
807
808 if (!quic_tls_rx_ctx_init(&nxt_tx->ctx, tls_ctx->tx.aead, nxt_tx->key)) {
809 TRACE_DEVEL("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
810 return 0;
811 }
812
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100813 return 1;
814}
815
816/* Rotate the Key Update information for <qc> QUIC connection.
817 * Must be used after having updated them.
818 * Always succeeds.
819 */
820static void quic_tls_rotate_keys(struct quic_conn *qc)
821{
822 struct quic_tls_ctx *tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
823 unsigned char *curr_secret, *curr_iv, *curr_key;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200824 EVP_CIPHER_CTX *curr_ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100825
826 /* Rotate the RX secrets */
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200827 curr_ctx = tls_ctx->rx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100828 curr_secret = tls_ctx->rx.secret;
829 curr_iv = tls_ctx->rx.iv;
830 curr_key = tls_ctx->rx.key;
831
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200832 tls_ctx->rx.ctx = qc->ku.nxt_rx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100833 tls_ctx->rx.secret = qc->ku.nxt_rx.secret;
834 tls_ctx->rx.iv = qc->ku.nxt_rx.iv;
835 tls_ctx->rx.key = qc->ku.nxt_rx.key;
836
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200837 qc->ku.nxt_rx.ctx = qc->ku.prv_rx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100838 qc->ku.nxt_rx.secret = qc->ku.prv_rx.secret;
839 qc->ku.nxt_rx.iv = qc->ku.prv_rx.iv;
840 qc->ku.nxt_rx.key = qc->ku.prv_rx.key;
841
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200842 qc->ku.prv_rx.ctx = curr_ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100843 qc->ku.prv_rx.secret = curr_secret;
844 qc->ku.prv_rx.iv = curr_iv;
845 qc->ku.prv_rx.key = curr_key;
846 qc->ku.prv_rx.pn = tls_ctx->rx.pn;
847
848 /* Update the TX secrets */
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200849 curr_ctx = tls_ctx->tx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100850 curr_secret = tls_ctx->tx.secret;
851 curr_iv = tls_ctx->tx.iv;
852 curr_key = tls_ctx->tx.key;
853
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200854 tls_ctx->tx.ctx = qc->ku.nxt_tx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100855 tls_ctx->tx.secret = qc->ku.nxt_tx.secret;
856 tls_ctx->tx.iv = qc->ku.nxt_tx.iv;
857 tls_ctx->tx.key = qc->ku.nxt_tx.key;
858
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200859 qc->ku.nxt_tx.ctx = curr_ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100860 qc->ku.nxt_tx.secret = curr_secret;
861 qc->ku.nxt_tx.iv = curr_iv;
862 qc->ku.nxt_tx.key = curr_key;
863}
864
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100865int ha_quic_set_encryption_secrets(SSL *ssl, enum ssl_encryption_level_t level,
866 const uint8_t *read_secret,
867 const uint8_t *write_secret, size_t secret_len)
868{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100869 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
870 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 +0100871 const SSL_CIPHER *cipher = SSL_get_current_cipher(ssl);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100872 struct quic_tls_secrets *rx, *tx;
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200873 const struct quic_version *ver =
874 qc->negotiated_version ? qc->negotiated_version : qc->original_version;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100875
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100876 TRACE_ENTER(QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100877 BUG_ON(secret_len > QUIC_TLS_SECRET_LEN);
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200878 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100879 TRACE_PROTO("CC required", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillef44d19e2022-03-26 12:22:41 +0100880 goto no_secret;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100881 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100882
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100883 if (!quic_tls_ctx_keys_alloc(tls_ctx)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100884 TRACE_DEVEL("keys allocation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100885 goto err;
886 }
887
888 rx = &tls_ctx->rx;
889 tx = &tls_ctx->tx;
890
891 rx->aead = tx->aead = tls_aead(cipher);
892 rx->md = tx->md = tls_md(cipher);
893 rx->hp = tx->hp = tls_hp(cipher);
894
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200895 if (!quic_tls_derive_keys(rx->aead, rx->hp, rx->md, ver, rx->key, rx->keylen,
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100896 rx->iv, rx->ivlen, rx->hp_key, sizeof rx->hp_key,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100897 read_secret, secret_len)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100898 TRACE_DEVEL("RX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100899 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100900 }
901
Frédéric Lécaillef4605742022-04-05 10:28:29 +0200902 if (!quic_tls_rx_ctx_init(&rx->ctx, rx->aead, rx->key)) {
903 TRACE_DEVEL("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
904 goto err;
905 }
906
Frédéric Lécaille61b851d2022-01-28 21:38:45 +0100907 /* Enqueue this connection asap if we could derive O-RTT secrets as
908 * listener. Note that a listener derives only RX secrets for this
909 * level.
910 */
911 if (qc_is_listener(qc) && level == ssl_encryption_early_data)
912 quic_accept_push_qc(qc);
Frédéric Lécaille4015cbb2021-12-14 19:29:34 +0100913
914 if (!write_secret)
Frédéric Lécailleee4508d2022-02-14 17:54:04 +0100915 goto out;
Frédéric Lécaille4015cbb2021-12-14 19:29:34 +0100916
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200917 if (!quic_tls_derive_keys(tx->aead, tx->hp, tx->md, ver, tx->key, tx->keylen,
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100918 tx->iv, tx->ivlen, tx->hp_key, sizeof tx->hp_key,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100919 write_secret, secret_len)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100920 TRACE_DEVEL("TX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100921 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100922 }
923
Frédéric Lécaillef4605742022-04-05 10:28:29 +0200924 if (!quic_tls_tx_ctx_init(&tx->ctx, tx->aead, tx->key)) {
925 TRACE_DEVEL("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
926 goto err;
927 }
928
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100929 if (level == ssl_encryption_application) {
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100930 struct quic_tls_kp *prv_rx = &qc->ku.prv_rx;
931 struct quic_tls_kp *nxt_rx = &qc->ku.nxt_rx;
932 struct quic_tls_kp *nxt_tx = &qc->ku.nxt_tx;
933
Frédéric Lécaille96fd1632022-04-01 11:21:47 +0200934 /* These secrets must be stored only for Application encryption level */
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100935 if (!(rx->secret = pool_alloc(pool_head_quic_tls_secret)) ||
936 !(tx->secret = pool_alloc(pool_head_quic_tls_secret))) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100937 TRACE_DEVEL("Could not allocate secrete keys", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100938 goto err;
939 }
940
941 memcpy(rx->secret, read_secret, secret_len);
942 rx->secretlen = secret_len;
943 memcpy(tx->secret, write_secret, secret_len);
944 tx->secretlen = secret_len;
945 /* Initialize all the secret keys lengths */
946 prv_rx->secretlen = nxt_rx->secretlen = nxt_tx->secretlen = secret_len;
947 /* Prepare the next key update */
948 if (!quic_tls_key_update(qc))
949 goto err;
950 }
Frédéric Lécailleee4508d2022-02-14 17:54:04 +0100951
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100952 out:
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100953 tls_ctx->flags |= QUIC_FL_TLS_SECRETS_SET;
Frédéric Lécaillef44d19e2022-03-26 12:22:41 +0100954 no_secret:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100955 TRACE_LEAVE(QUIC_EV_CONN_RWSEC, qc, &level);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100956 return 1;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100957
958 err:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100959 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100960 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100961}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100962
963/* This function copies the CRYPTO data provided by the TLS stack found at <data>
964 * with <len> as size in CRYPTO buffers dedicated to store the information about
965 * outgoing CRYPTO frames so that to be able to replay the CRYPTO data streams.
966 * It fails only if it could not managed to allocate enough CRYPTO buffers to
967 * store all the data.
968 * Note that CRYPTO data may exist at any encryption level except at 0-RTT.
969 */
970static int quic_crypto_data_cpy(struct quic_enc_level *qel,
971 const unsigned char *data, size_t len)
972{
973 struct quic_crypto_buf **qcb;
974 /* The remaining byte to store in CRYPTO buffers. */
975 size_t cf_offset, cf_len, *nb_buf;
976 unsigned char *pos;
977
978 nb_buf = &qel->tx.crypto.nb_buf;
979 qcb = &qel->tx.crypto.bufs[*nb_buf - 1];
980 cf_offset = (*nb_buf - 1) * QUIC_CRYPTO_BUF_SZ + (*qcb)->sz;
981 cf_len = len;
982
983 while (len) {
984 size_t to_copy, room;
985
986 pos = (*qcb)->data + (*qcb)->sz;
987 room = QUIC_CRYPTO_BUF_SZ - (*qcb)->sz;
988 to_copy = len > room ? room : len;
989 if (to_copy) {
990 memcpy(pos, data, to_copy);
991 /* Increment the total size of this CRYPTO buffers by <to_copy>. */
992 qel->tx.crypto.sz += to_copy;
993 (*qcb)->sz += to_copy;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100994 len -= to_copy;
995 data += to_copy;
996 }
997 else {
998 struct quic_crypto_buf **tmp;
999
1000 tmp = realloc(qel->tx.crypto.bufs,
1001 (*nb_buf + 1) * sizeof *qel->tx.crypto.bufs);
1002 if (tmp) {
1003 qel->tx.crypto.bufs = tmp;
1004 qcb = &qel->tx.crypto.bufs[*nb_buf];
1005 *qcb = pool_alloc(pool_head_quic_crypto_buf);
1006 if (!*qcb)
1007 return 0;
1008
1009 (*qcb)->sz = 0;
1010 ++*nb_buf;
1011 }
1012 else {
1013 break;
1014 }
1015 }
1016 }
1017
1018 /* Allocate a TX CRYPTO frame only if all the CRYPTO data
1019 * have been buffered.
1020 */
1021 if (!len) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02001022 struct quic_frame *frm;
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +01001023 struct quic_frame *found = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001024
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +01001025 /* There is at most one CRYPTO frame in this packet number
1026 * space. Let's look for it.
1027 */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001028 list_for_each_entry(frm, &qel->pktns->tx.frms, list) {
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +01001029 if (frm->type != QUIC_FT_CRYPTO)
1030 continue;
1031
1032 /* Found */
1033 found = frm;
1034 break;
1035 }
1036
1037 if (found) {
1038 found->crypto.len += cf_len;
1039 }
1040 else {
Frédéric Lécailleb9171912022-04-21 17:32:10 +02001041 frm = pool_zalloc(pool_head_quic_frame);
Frédéric Lécailled4ecf942022-01-04 23:15:40 +01001042 if (!frm)
1043 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001044
Frédéric Lécailleb9171912022-04-21 17:32:10 +02001045 LIST_INIT(&frm->reflist);
Frédéric Lécailled4ecf942022-01-04 23:15:40 +01001046 frm->type = QUIC_FT_CRYPTO;
1047 frm->crypto.offset = cf_offset;
1048 frm->crypto.len = cf_len;
1049 frm->crypto.qel = qel;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001050 LIST_APPEND(&qel->pktns->tx.frms, &frm->list);
Frédéric Lécailled4ecf942022-01-04 23:15:40 +01001051 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001052 }
1053
1054 return len == 0;
1055}
1056
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001057/* Prepare the emission of CONNECTION_CLOSE with error <err>. All send/receive
1058 * activity for <qc> will be interrupted.
1059 */
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02001060void quic_set_connection_close(struct quic_conn *qc, const struct quic_err err)
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001061{
1062 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE)
1063 return;
1064
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001065 qc->flags |= QUIC_FL_CONN_IMMEDIATE_CLOSE;
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02001066 qc->err.code = err.code;
1067 qc->err.app = err.app;
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001068}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001069
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01001070/* Set <alert> TLS alert as QUIC CRYPTO_ERROR error */
1071void quic_set_tls_alert(struct quic_conn *qc, int alert)
1072{
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02001073 if (!(qc->flags & QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED)) {
1074 qc->flags |= QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED;
1075 HA_ATOMIC_DEC(&qc->prx_counters->half_open_conn);
1076 }
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02001077 quic_set_connection_close(qc, quic_err_tls(alert));
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001078 qc->flags |= QUIC_FL_CONN_TLS_ALERT;
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001079 TRACE_PROTO("Alert set", QUIC_EV_CONN_SSLDATA, qc);
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01001080}
1081
Frédéric Lécailleb0bd62d2021-12-14 19:34:08 +01001082/* Set the application for <qc> QUIC connection.
1083 * Return 1 if succeeded, 0 if not.
1084 */
1085int quic_set_app_ops(struct quic_conn *qc, const unsigned char *alpn, size_t alpn_len)
1086{
Amaury Denoyelle4b40f192022-01-19 11:29:25 +01001087 if (alpn_len >= 2 && memcmp(alpn, "h3", 2) == 0)
1088 qc->app_ops = &h3_ops;
1089 else if (alpn_len >= 10 && memcmp(alpn, "hq-interop", 10) == 0)
1090 qc->app_ops = &hq_interop_ops;
Frédéric Lécailleb0bd62d2021-12-14 19:34:08 +01001091 else
1092 return 0;
1093
Frédéric Lécailleb0bd62d2021-12-14 19:34:08 +01001094 return 1;
1095}
1096
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001097/* ->add_handshake_data QUIC TLS callback used by the QUIC TLS stack when it
1098 * wants to provide the QUIC layer with CRYPTO data.
1099 * Returns 1 if succeeded, 0 if not.
1100 */
1101int ha_quic_add_handshake_data(SSL *ssl, enum ssl_encryption_level_t level,
1102 const uint8_t *data, size_t len)
1103{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001104 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001105 enum quic_tls_enc_level tel;
1106 struct quic_enc_level *qel;
1107
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001108 qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
1109 TRACE_ENTER(QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaillefc790062022-03-28 17:10:31 +02001110 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001111 TRACE_PROTO("CC required", QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01001112 goto out;
1113 }
1114
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001115 tel = ssl_to_quic_enc_level(level);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001116 if (tel == -1) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001117 TRACE_PROTO("Wrong encryption level", QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001118 goto err;
1119 }
1120
Frédéric Lécaille3916ca12022-02-02 14:09:05 +01001121 qel = &qc->els[tel];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001122 if (!quic_crypto_data_cpy(qel, data, len)) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001123 TRACE_PROTO("Could not bufferize", QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001124 goto err;
1125 }
1126
1127 TRACE_PROTO("CRYPTO data buffered", QUIC_EV_CONN_ADDDATA,
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001128 qc, &level, &len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001129
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01001130 out:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001131 TRACE_LEAVE(QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001132 return 1;
1133
1134 err:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001135 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001136 return 0;
1137}
1138
1139int ha_quic_flush_flight(SSL *ssl)
1140{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001141 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001142
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001143 TRACE_ENTER(QUIC_EV_CONN_FFLIGHT, qc);
1144 TRACE_LEAVE(QUIC_EV_CONN_FFLIGHT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001145
1146 return 1;
1147}
1148
1149int ha_quic_send_alert(SSL *ssl, enum ssl_encryption_level_t level, uint8_t alert)
1150{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001151 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001152
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001153 TRACE_DEVEL("SSL alert", QUIC_EV_CONN_SSLALERT, qc, &alert, &level);
1154 quic_set_tls_alert(qc, alert);
Frédéric Lécaillefc790062022-03-28 17:10:31 +02001155 qc->flags |= QUIC_FL_CONN_IMMEDIATE_CLOSE;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001156 return 1;
1157}
1158
1159/* QUIC TLS methods */
1160static SSL_QUIC_METHOD ha_quic_method = {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001161 .set_encryption_secrets = ha_quic_set_encryption_secrets,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001162 .add_handshake_data = ha_quic_add_handshake_data,
1163 .flush_flight = ha_quic_flush_flight,
1164 .send_alert = ha_quic_send_alert,
1165};
1166
1167/* Initialize the TLS context of a listener with <bind_conf> as configuration.
1168 * Returns an error count.
1169 */
1170int ssl_quic_initial_ctx(struct bind_conf *bind_conf)
1171{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001172 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
1173 int cfgerr = 0;
1174
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001175 long options =
1176 (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) |
1177 SSL_OP_SINGLE_ECDH_USE |
1178 SSL_OP_CIPHER_SERVER_PREFERENCE;
1179 SSL_CTX *ctx;
1180
1181 ctx = SSL_CTX_new(TLS_server_method());
1182 bind_conf->initial_ctx = ctx;
1183
1184 SSL_CTX_set_options(ctx, options);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001185 SSL_CTX_set_mode(ctx, SSL_MODE_RELEASE_BUFFERS);
1186 SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
1187 SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001188
1189#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaillee06f7452022-06-16 15:06:44 +02001190#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001191 if (bind_conf->ssl_conf.early_data) {
1192 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
Frédéric Lécaillead3c07a2021-12-14 19:23:43 +01001193 SSL_CTX_set_max_early_data(ctx, 0xffffffff);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001194 }
1195 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
1196 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
1197#else
1198 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
1199#endif
1200 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
1201#endif
1202 SSL_CTX_set_quic_method(ctx, &ha_quic_method);
1203
1204 return cfgerr;
1205}
1206
1207/* Decode an expected packet number from <truncated_on> its truncated value,
1208 * depending on <largest_pn> the largest received packet number, and <pn_nbits>
1209 * the number of bits used to encode this packet number (its length in bytes * 8).
1210 * See https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#packet-encoding
1211 */
1212static uint64_t decode_packet_number(uint64_t largest_pn,
1213 uint32_t truncated_pn, unsigned int pn_nbits)
1214{
1215 uint64_t expected_pn = largest_pn + 1;
1216 uint64_t pn_win = (uint64_t)1 << pn_nbits;
1217 uint64_t pn_hwin = pn_win / 2;
1218 uint64_t pn_mask = pn_win - 1;
1219 uint64_t candidate_pn;
1220
1221
1222 candidate_pn = (expected_pn & ~pn_mask) | truncated_pn;
1223 /* Note that <pn_win> > <pn_hwin>. */
1224 if (candidate_pn < QUIC_MAX_PACKET_NUM - pn_win &&
1225 candidate_pn + pn_hwin <= expected_pn)
1226 return candidate_pn + pn_win;
1227
1228 if (candidate_pn > expected_pn + pn_hwin && candidate_pn >= pn_win)
1229 return candidate_pn - pn_win;
1230
1231 return candidate_pn;
1232}
1233
1234/* Remove the header protection of <pkt> QUIC packet using <tls_ctx> as QUIC TLS
1235 * cryptographic context.
1236 * <largest_pn> is the largest received packet number and <pn> the address of
1237 * the packet number field for this packet with <byte0> address of its first byte.
1238 * <end> points to one byte past the end of this packet.
1239 * Returns 1 if succeeded, 0 if not.
1240 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001241static int qc_do_rm_hp(struct quic_conn *qc,
1242 struct quic_rx_packet *pkt, struct quic_tls_ctx *tls_ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001243 int64_t largest_pn, unsigned char *pn,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001244 unsigned char *byte0, const unsigned char *end)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001245{
1246 int ret, outlen, i, pnlen;
1247 uint64_t packet_number;
1248 uint32_t truncated_pn = 0;
1249 unsigned char mask[5] = {0};
1250 unsigned char *sample;
1251 EVP_CIPHER_CTX *cctx;
1252 unsigned char *hp_key;
1253
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001254 /* Check there is enough data in this packet. */
1255 if (end - pn < QUIC_PACKET_PN_MAXLEN + sizeof mask) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001256 TRACE_DEVEL("too short packet", QUIC_EV_CONN_RMHP, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001257 return 0;
1258 }
1259
1260 cctx = EVP_CIPHER_CTX_new();
1261 if (!cctx) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001262 TRACE_DEVEL("memory allocation failed", QUIC_EV_CONN_RMHP, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001263 return 0;
1264 }
1265
1266 ret = 0;
1267 sample = pn + QUIC_PACKET_PN_MAXLEN;
1268
1269 hp_key = tls_ctx->rx.hp_key;
1270 if (!EVP_DecryptInit_ex(cctx, tls_ctx->rx.hp, NULL, hp_key, sample) ||
1271 !EVP_DecryptUpdate(cctx, mask, &outlen, mask, sizeof mask) ||
1272 !EVP_DecryptFinal_ex(cctx, mask, &outlen)) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001273 TRACE_DEVEL("decryption failed", QUIC_EV_CONN_RMHP, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001274 goto out;
1275 }
1276
1277 *byte0 ^= mask[0] & (*byte0 & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f);
1278 pnlen = (*byte0 & QUIC_PACKET_PNL_BITMASK) + 1;
1279 for (i = 0; i < pnlen; i++) {
1280 pn[i] ^= mask[i + 1];
1281 truncated_pn = (truncated_pn << 8) | pn[i];
1282 }
1283
1284 packet_number = decode_packet_number(largest_pn, truncated_pn, pnlen * 8);
1285 /* Store remaining information for this unprotected header */
1286 pkt->pn = packet_number;
1287 pkt->pnl = pnlen;
1288
1289 ret = 1;
1290
1291 out:
1292 EVP_CIPHER_CTX_free(cctx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001293
1294 return ret;
1295}
1296
1297/* Encrypt the payload of a QUIC packet with <pn> as number found at <payload>
1298 * address, with <payload_len> as payload length, <aad> as address of
1299 * the ADD and <aad_len> as AAD length depending on the <tls_ctx> QUIC TLS
1300 * context.
1301 * Returns 1 if succeeded, 0 if not.
1302 */
1303static int quic_packet_encrypt(unsigned char *payload, size_t payload_len,
1304 unsigned char *aad, size_t aad_len, uint64_t pn,
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01001305 struct quic_tls_ctx *tls_ctx, struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001306{
Frédéric Lécaillef2f4a4e2022-04-05 12:18:46 +02001307 unsigned char iv[QUIC_TLS_IV_LEN];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001308 unsigned char *tx_iv = tls_ctx->tx.iv;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +01001309 size_t tx_iv_sz = tls_ctx->tx.ivlen;
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001310 struct enc_debug_info edi;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001311
1312 if (!quic_aead_iv_build(iv, sizeof iv, tx_iv, tx_iv_sz, pn)) {
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01001313 TRACE_DEVEL("AEAD IV building for encryption failed", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001314 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001315 }
1316
1317 if (!quic_tls_encrypt(payload, payload_len, aad, aad_len,
Frédéric Lécaillef4605742022-04-05 10:28:29 +02001318 tls_ctx->tx.ctx, tls_ctx->tx.aead, tls_ctx->tx.key, iv)) {
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01001319 TRACE_DEVEL("QUIC packet encryption failed", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001320 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001321 }
1322
1323 return 1;
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001324
1325 err:
1326 enc_debug_info_init(&edi, payload, payload_len, aad, aad_len, pn);
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01001327 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ENCPKT, qc, &edi);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001328 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001329}
1330
1331/* Decrypt <pkt> QUIC packet with <tls_ctx> as QUIC TLS cryptographic context.
1332 * Returns 1 if succeeded, 0 if not.
1333 */
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001334static int qc_pkt_decrypt(struct quic_rx_packet *pkt, struct quic_enc_level *qel)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001335{
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001336 int ret, kp_changed;
Frédéric Lécaillef2f4a4e2022-04-05 12:18:46 +02001337 unsigned char iv[QUIC_TLS_IV_LEN];
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001338 struct quic_tls_ctx *tls_ctx = &qel->tls_ctx;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +02001339 EVP_CIPHER_CTX *rx_ctx = tls_ctx->rx.ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001340 unsigned char *rx_iv = tls_ctx->rx.iv;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001341 size_t rx_iv_sz = tls_ctx->rx.ivlen;
1342 unsigned char *rx_key = tls_ctx->rx.key;
1343
1344 kp_changed = 0;
1345 if (pkt->type == QUIC_PACKET_TYPE_SHORT) {
1346 /* The two tested bits are not at the same position,
1347 * this is why they are first both inversed.
1348 */
1349 if (!(*pkt->data & QUIC_PACKET_KEY_PHASE_BIT) ^ !(tls_ctx->flags & QUIC_FL_TLS_KP_BIT_SET)) {
1350 if (pkt->pn < tls_ctx->rx.pn) {
1351 /* The lowest packet number of a previous key phase
1352 * cannot be null if it really stores previous key phase
1353 * secrets.
1354 */
1355 if (!pkt->qc->ku.prv_rx.pn)
1356 return 0;
1357
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +02001358 rx_ctx = pkt->qc->ku.prv_rx.ctx;
1359 rx_iv = pkt->qc->ku.prv_rx.iv;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001360 rx_key = pkt->qc->ku.prv_rx.key;
1361 }
1362 else if (pkt->pn > qel->pktns->rx.largest_pn) {
1363 /* Next key phase */
1364 kp_changed = 1;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +02001365 rx_ctx = pkt->qc->ku.nxt_rx.ctx;
1366 rx_iv = pkt->qc->ku.nxt_rx.iv;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001367 rx_key = pkt->qc->ku.nxt_rx.key;
1368 }
1369 }
1370 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001371
1372 if (!quic_aead_iv_build(iv, sizeof iv, rx_iv, rx_iv_sz, pkt->pn))
1373 return 0;
1374
1375 ret = quic_tls_decrypt(pkt->data + pkt->aad_len, pkt->len - pkt->aad_len,
1376 pkt->data, pkt->aad_len,
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +02001377 rx_ctx, tls_ctx->rx.aead, rx_key, iv);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001378 if (!ret)
1379 return 0;
1380
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001381 /* Update the keys only if the packet decryption succeeded. */
1382 if (kp_changed) {
1383 quic_tls_rotate_keys(pkt->qc);
1384 /* Toggle the Key Phase bit */
1385 tls_ctx->flags ^= QUIC_FL_TLS_KP_BIT_SET;
1386 /* Store the lowest packet number received for the current key phase */
1387 tls_ctx->rx.pn = pkt->pn;
1388 /* Prepare the next key update */
1389 if (!quic_tls_key_update(pkt->qc))
1390 return 0;
1391 }
1392
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001393 /* Update the packet length (required to parse the frames). */
Frédéric Lécaillef4605742022-04-05 10:28:29 +02001394 pkt->len -= QUIC_TLS_TAG_LEN;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001395
1396 return 1;
1397}
1398
Frédéric Lécaille96367152022-04-25 09:40:19 +02001399
1400/* Remove references to <frm> frame */
1401static void qc_frm_unref(struct quic_conn *qc, struct quic_frame *frm)
1402{
1403 uint64_t pn;
1404 struct quic_frame *f, *tmp;
1405
1406 list_for_each_entry_safe(f, tmp, &frm->reflist, ref) {
1407 pn = f->pkt->pn_node.key;
1408 f->origin = NULL;
1409 LIST_DELETE(&f->ref);
1410 TRACE_PROTO("remove frame reference", QUIC_EV_CONN_PRSAFRM, qc, f, &pn);
1411 }
1412}
1413
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001414/* Release <frm> frame and mark its copies as acknowledged */
Frédéric Lécailleda342552022-04-25 10:28:49 +02001415void qc_release_frm(struct quic_conn *qc, struct quic_frame *frm)
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001416{
1417 uint64_t pn;
1418 struct quic_frame *origin, *f, *tmp;
1419
1420 /* Identify this frame: a frame copy or one of its copies */
1421 origin = frm->origin ? frm->origin : frm;
1422 /* Ensure the source of the copies is flagged as acked, <frm> being
1423 * possibly a copy of <origin>
1424 */
1425 origin->flags |= QUIC_FL_TX_FRAME_ACKED;
1426 /* Mark all the copy of <origin> as acknowledged. We must
1427 * not release the packets (releasing the frames) at this time as
1428 * they are possibly also to be acknowledged alongside the
1429 * the current one.
1430 */
1431 list_for_each_entry_safe(f, tmp, &origin->reflist, ref) {
1432 pn = f->pkt->pn_node.key;
1433 TRACE_PROTO("mark frame as acked from packet",
1434 QUIC_EV_CONN_PRSAFRM, qc, f, &pn);
1435 f->flags |= QUIC_FL_TX_FRAME_ACKED;
1436 f->origin = NULL;
1437 LIST_DELETE(&f->ref);
1438 }
1439 LIST_DELETE(&frm->list);
1440 pn = frm->pkt->pn_node.key;
1441 quic_tx_packet_refdec(frm->pkt);
1442 TRACE_PROTO("freeing frame from packet",
1443 QUIC_EV_CONN_PRSAFRM, qc, frm, &pn);
1444 pool_free(pool_head_quic_frame, frm);
1445}
1446
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001447/* Schedule a CONNECTION_CLOSE emission on <qc> if the MUX has been released
1448 * and all STREAM data are acknowledged. The MUX is responsible to have set
1449 * <qc.err> before as it is reused for the CONNECTION_CLOSE frame.
1450 *
1451 * TODO this should also be called on lost packet detection
1452 */
1453static void qc_check_close_on_released_mux(struct quic_conn *qc)
1454{
1455 struct ssl_sock_ctx *ctx = qc->xprt_ctx;
1456
1457 if (qc->mux_state == QC_MUX_RELEASED && eb_is_empty(&qc->streams_by_id)) {
1458 /* Reuse errcode which should have been previously set by the MUX on release. */
1459 quic_set_connection_close(qc, qc->err);
1460 tasklet_wakeup(ctx->wait_event.tasklet);
1461 }
1462}
1463
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001464/* Remove from <stream> the acknowledged frames.
Amaury Denoyelle95e50fb2022-03-29 14:50:25 +02001465 *
1466 * Returns 1 if at least one frame was removed else 0.
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001467 */
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001468static int quic_stream_try_to_consume(struct quic_conn *qc,
1469 struct qc_stream_desc *stream)
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001470{
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001471 int ret;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001472 struct eb64_node *frm_node;
1473
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001474 ret = 0;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001475 frm_node = eb64_first(&stream->acked_frms);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001476 while (frm_node) {
1477 struct quic_stream *strm;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001478 struct quic_frame *frm;
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001479 size_t offset, len;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001480
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02001481 strm = eb64_entry(frm_node, struct quic_stream, offset);
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001482 offset = strm->offset.key;
1483 len = strm->len;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001484
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001485 if (offset > stream->ack_offset)
1486 break;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001487
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001488 if (qc_stream_desc_ack(&stream, offset, len)) {
Amaury Denoyelle7586bef2022-04-25 14:26:54 +02001489 /* cf. next comment : frame may be freed at this stage. */
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001490 TRACE_PROTO("stream consumed", QUIC_EV_CONN_ACKSTRM,
Amaury Denoyelle7586bef2022-04-25 14:26:54 +02001491 qc, stream ? strm : NULL, stream);
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001492 ret = 1;
1493 }
1494
Amaury Denoyelle7586bef2022-04-25 14:26:54 +02001495 /* If stream is NULL after qc_stream_desc_ack(), it means frame
1496 * has been freed. with the stream frames tree. Nothing to do
1497 * anymore in here.
1498 */
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001499 if (!stream) {
1500 qc_check_close_on_released_mux(qc);
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001501 return 1;
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001502 }
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001503
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001504 frm_node = eb64_next(frm_node);
1505 eb64_delete(&strm->offset);
Amaury Denoyelle7b4c9d62022-02-24 10:50:58 +01001506
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001507 frm = container_of(strm, struct quic_frame, stream);
Frédéric Lécailleda342552022-04-25 10:28:49 +02001508 qc_release_frm(qc, frm);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001509 }
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001510
1511 return ret;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001512}
1513
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001514/* Treat <frm> frame whose packet it is attached to has just been acknowledged. */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001515static inline void qc_treat_acked_tx_frm(struct quic_conn *qc,
1516 struct quic_frame *frm)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001517{
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001518 int stream_acked;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001519
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01001520 TRACE_PROTO("Removing frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001521 stream_acked = 0;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001522 switch (frm->type) {
1523 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
1524 {
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001525 struct quic_stream *strm_frm = &frm->stream;
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001526 struct eb64_node *node = NULL;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001527 struct qc_stream_desc *stream = NULL;
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001528 const size_t offset = strm_frm->offset.key;
1529 const size_t len = strm_frm->len;
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001530
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001531 /* do not use strm_frm->stream as the qc_stream_desc instance
1532 * might be freed at this stage. Use the id to do a proper
Amaury Denoyellee4301da2022-04-19 17:59:50 +02001533 * lookup.
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001534 *
1535 * TODO if lookup operation impact on the perf is noticeable,
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001536 * implement a refcount on qc_stream_desc instances.
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001537 */
Amaury Denoyellee4301da2022-04-19 17:59:50 +02001538 node = eb64_lookup(&qc->streams_by_id, strm_frm->id);
1539 if (!node) {
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001540 TRACE_PROTO("acked stream for released stream", QUIC_EV_CONN_ACKSTRM, qc, strm_frm);
Frédéric Lécailleda342552022-04-25 10:28:49 +02001541 qc_release_frm(qc, frm);
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001542 /* early return */
1543 return;
1544 }
Amaury Denoyellee4301da2022-04-19 17:59:50 +02001545 stream = eb64_entry(node, struct qc_stream_desc, by_id);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001546
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001547 TRACE_PROTO("acked stream", QUIC_EV_CONN_ACKSTRM, qc, strm_frm, stream);
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001548 if (offset <= stream->ack_offset) {
1549 if (qc_stream_desc_ack(&stream, offset, len)) {
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001550 stream_acked = 1;
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001551 TRACE_PROTO("stream consumed", QUIC_EV_CONN_ACKSTRM,
1552 qc, strm_frm, stream);
1553 }
Amaury Denoyelle0c7679d2022-02-24 10:56:33 +01001554
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001555 if (!stream) {
1556 /* no need to continue if stream freed. */
1557 TRACE_PROTO("stream released and freed", QUIC_EV_CONN_ACKSTRM, qc);
Frédéric Lécailleda342552022-04-25 10:28:49 +02001558 qc_release_frm(qc, frm);
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001559 qc_check_close_on_released_mux(qc);
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001560 break;
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001561 }
1562
Frédéric Lécailleda342552022-04-25 10:28:49 +02001563 TRACE_PROTO("stream consumed", QUIC_EV_CONN_ACKSTRM,
1564 qc, strm_frm, stream);
1565 qc_release_frm(qc, frm);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001566 }
1567 else {
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001568 eb64_insert(&stream->acked_frms, &strm_frm->offset);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001569 }
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001570
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001571 stream_acked |= quic_stream_try_to_consume(qc, stream);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001572 }
1573 break;
1574 default:
Frédéric Lécailleda342552022-04-25 10:28:49 +02001575 qc_release_frm(qc, frm);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001576 }
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001577
Frédéric Lécaille89a2ceb2022-04-20 15:59:07 +02001578 if (stream_acked && qc->mux_state == QC_MUX_READY) {
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001579 struct qcc *qcc = qc->qcc;
1580
1581 if (qcc->subs && qcc->subs->events & SUB_RETRY_SEND) {
1582 tasklet_wakeup(qcc->subs->tasklet);
1583 qcc->subs->events &= ~SUB_RETRY_SEND;
1584 if (!qcc->subs->events)
1585 qcc->subs = NULL;
1586 }
1587 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001588}
1589
1590/* Remove <largest> down to <smallest> node entries from <pkts> tree of TX packet,
1591 * deallocating them, and their TX frames.
1592 * Returns the last node reached to be used for the next range.
1593 * May be NULL if <largest> node could not be found.
1594 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001595static inline struct eb64_node *qc_ackrng_pkts(struct quic_conn *qc,
1596 struct eb_root *pkts,
1597 unsigned int *pkt_flags,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001598 struct list *newly_acked_pkts,
1599 struct eb64_node *largest_node,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001600 uint64_t largest, uint64_t smallest)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001601{
1602 struct eb64_node *node;
1603 struct quic_tx_packet *pkt;
1604
1605 if (largest_node)
1606 node = largest_node;
1607 else {
1608 node = eb64_lookup(pkts, largest);
1609 while (!node && largest > smallest) {
1610 node = eb64_lookup(pkts, --largest);
1611 }
1612 }
1613
1614 while (node && node->key >= smallest) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02001615 struct quic_frame *frm, *frmbak;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001616
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02001617 pkt = eb64_entry(node, struct quic_tx_packet, pn_node);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001618 *pkt_flags |= pkt->flags;
Willy Tarreau2b718102021-04-21 07:32:39 +02001619 LIST_INSERT(newly_acked_pkts, &pkt->list);
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001620 TRACE_PROTO("Removing packet #", QUIC_EV_CONN_PRSAFRM, qc, NULL, &pkt->pn_node.key);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001621 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list)
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001622 qc_treat_acked_tx_frm(qc, frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001623 node = eb64_prev(node);
1624 eb64_delete(&pkt->pn_node);
1625 }
1626
1627 return node;
1628}
1629
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001630/* Remove all frames from <pkt_frm_list> and reinsert them in the
1631 * same order they have been sent into <pktns_frm_list>.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001632 */
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001633static inline void qc_requeue_nacked_pkt_tx_frms(struct quic_conn *qc,
Frédéric Lécaille96367152022-04-25 09:40:19 +02001634 struct quic_tx_packet *pkt,
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001635 struct list *pktns_frm_list)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001636{
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001637 struct quic_frame *frm, *frmbak;
1638 struct list tmp = LIST_HEAD_INIT(tmp);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001639 struct list *pkt_frm_list = &pkt->frms;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001640
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001641 list_for_each_entry_safe(frm, frmbak, pkt_frm_list, list) {
Frédéric Lécaille96367152022-04-25 09:40:19 +02001642 /* Only for debug */
1643 uint64_t pn;
1644
1645 /* First remove this frame from the packet it was attached to */
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001646 LIST_DELETE(&frm->list);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001647 pn = frm->pkt->pn_node.key;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001648 quic_tx_packet_refdec(frm->pkt);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001649 /* At this time, this frame is not freed but removed from its packet */
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001650 frm->pkt = NULL;
Frédéric Lécaille96367152022-04-25 09:40:19 +02001651 /* Remove any reference to this frame */
1652 qc_frm_unref(qc, frm);
1653 switch (frm->type) {
1654 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
1655 {
1656 struct quic_stream *strm_frm = &frm->stream;
1657 struct eb64_node *node = NULL;
1658 struct qc_stream_desc *stream_desc;
1659
1660 node = eb64_lookup(&qc->streams_by_id, strm_frm->id);
1661 if (!node) {
Frédéric Lécaillefdc1b962022-05-31 12:04:42 +02001662 TRACE_PROTO("released stream", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001663 TRACE_PROTO("freeing frame from packet", QUIC_EV_CONN_PRSAFRM,
1664 qc, frm, &pn);
1665 pool_free(pool_head_quic_frame, frm);
1666 continue;
1667 }
1668
1669 stream_desc = eb64_entry(node, struct qc_stream_desc, by_id);
1670 /* Do not resend this frame if in the "already acked range" */
1671 if (strm_frm->offset.key + strm_frm->len <= stream_desc->ack_offset) {
1672 TRACE_PROTO("ignored frame in already acked range",
1673 QUIC_EV_CONN_PRSAFRM, qc, frm);
1674 continue;
1675 }
1676 else if (strm_frm->offset.key < stream_desc->ack_offset) {
1677 strm_frm->offset.key = stream_desc->ack_offset;
1678 TRACE_PROTO("updated partially acked frame",
1679 QUIC_EV_CONN_PRSAFRM, qc, frm);
1680 }
1681
1682 break;
1683 }
1684
1685 default:
1686 break;
1687 }
1688
1689 /* Do not resend probing packet with old data */
1690 if (pkt->flags & QUIC_FL_TX_PACKET_PROBE_WITH_OLD_DATA) {
1691 TRACE_PROTO("ignored frame with old data from packet", QUIC_EV_CONN_PRSAFRM,
1692 qc, frm, &pn);
1693 if (frm->origin)
1694 LIST_DELETE(&frm->ref);
1695 pool_free(pool_head_quic_frame, frm);
1696 continue;
1697 }
1698
1699 if (frm->flags & QUIC_FL_TX_FRAME_ACKED) {
1700 TRACE_PROTO("already acked frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
1701 TRACE_PROTO("freeing frame from packet", QUIC_EV_CONN_PRSAFRM,
1702 qc, frm, &pn);
1703 pool_free(pool_head_quic_frame, frm);
1704 }
1705 else {
1706 TRACE_PROTO("to resend frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02001707 if (QUIC_FT_STREAM_8 <= frm->type && frm->type <= QUIC_FT_STREAM_F) {
1708 /* Mark this STREAM frame as lost. A look up their stream descriptor
1709 * will be performed to check the stream is not consumed or released.
1710 */
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02001711 frm->flags = QUIC_FL_TX_FRAME_LOST;
1712 }
Frédéric Lécaille96367152022-04-25 09:40:19 +02001713 LIST_APPEND(&tmp, &frm->list);
1714 }
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001715 }
1716
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001717 LIST_SPLICE(pktns_frm_list, &tmp);
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001718}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001719
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001720/* Free <pkt> TX packet and its attached frames.
1721 * This is the responsability of the caller to remove this packet of
1722 * any data structure it was possibly attached to.
1723 */
1724static inline void free_quic_tx_packet(struct quic_tx_packet *pkt)
1725{
1726 struct quic_frame *frm, *frmbak;
1727
1728 if (!pkt)
1729 return;
1730
1731 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list) {
1732 LIST_DELETE(&frm->list);
1733 pool_free(pool_head_quic_frame, frm);
1734 }
1735 pool_free(pool_head_quic_tx_packet, pkt);
1736}
1737
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001738/* Free the TX packets of <pkts> list */
1739static inline void free_quic_tx_pkts(struct list *pkts)
1740{
1741 struct quic_tx_packet *pkt, *tmp;
1742
1743 list_for_each_entry_safe(pkt, tmp, pkts, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001744 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001745 eb64_delete(&pkt->pn_node);
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001746 free_quic_tx_packet(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001747 }
1748}
1749
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001750/* Remove already sent ranges of acknowledged packet numbers from
1751 * <pktns> packet number space tree below <largest_acked_pn> possibly
1752 * updating the range which contains <largest_acked_pn>.
1753 * Never fails.
1754 */
1755static void qc_treat_ack_of_ack(struct quic_pktns *pktns,
1756 int64_t largest_acked_pn)
1757{
1758 struct eb64_node *ar, *next_ar;
1759 struct quic_arngs *arngs = &pktns->rx.arngs;
1760
1761 ar = eb64_first(&arngs->root);
1762 while (ar) {
1763 struct quic_arng_node *ar_node;
1764
1765 next_ar = eb64_next(ar);
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02001766 ar_node = eb64_entry(ar, struct quic_arng_node, first);
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001767 if ((int64_t)ar_node->first.key > largest_acked_pn)
1768 break;
1769
1770 if (largest_acked_pn < ar_node->last) {
1771 eb64_delete(ar);
1772 ar_node->first.key = largest_acked_pn + 1;
1773 eb64_insert(&arngs->root, ar);
1774 break;
1775 }
1776
1777 eb64_delete(ar);
1778 pool_free(pool_head_quic_arng, ar_node);
1779 arngs->sz--;
1780 ar = next_ar;
1781 }
1782}
1783
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001784/* Send a packet ack event nofication for each newly acked packet of
1785 * <newly_acked_pkts> list and free them.
1786 * Always succeeds.
1787 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001788static inline void qc_treat_newly_acked_pkts(struct quic_conn *qc,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001789 struct list *newly_acked_pkts)
1790{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001791 struct quic_tx_packet *pkt, *tmp;
1792 struct quic_cc_event ev = { .type = QUIC_CC_EVT_ACK, };
1793
1794 list_for_each_entry_safe(pkt, tmp, newly_acked_pkts, list) {
1795 pkt->pktns->tx.in_flight -= pkt->in_flight_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01001796 qc->path->prep_in_flight -= pkt->in_flight_len;
Frédéric Lécailleba9db402022-03-01 17:06:50 +01001797 qc->path->in_flight -= pkt->in_flight_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001798 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01001799 qc->path->ifae_pkts--;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001800 /* If this packet contained an ACK frame, proceed to the
1801 * acknowledging of range of acks from the largest acknowledged
1802 * packet number which was sent in an ACK frame by this packet.
1803 */
1804 if (pkt->largest_acked_pn != -1)
1805 qc_treat_ack_of_ack(pkt->pktns, pkt->largest_acked_pn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001806 ev.ack.acked = pkt->in_flight_len;
1807 ev.ack.time_sent = pkt->time_sent;
1808 quic_cc_event(&qc->path->cc, &ev);
Willy Tarreau2b718102021-04-21 07:32:39 +02001809 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001810 eb64_delete(&pkt->pn_node);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001811 quic_tx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001812 }
1813
1814}
1815
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01001816/* Release all the frames attached to <pktns> packet number space */
1817static inline void qc_release_pktns_frms(struct quic_pktns *pktns)
1818{
1819 struct quic_frame *frm, *frmbak;
1820
1821 list_for_each_entry_safe(frm, frmbak, &pktns->tx.frms, list) {
1822 LIST_DELETE(&frm->list);
1823 pool_free(pool_head_quic_frame, frm);
1824 }
1825}
1826
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001827/* Handle <pkts> list of lost packets detected at <now_us> handling
1828 * their TX frames.
1829 * Send a packet loss event to the congestion controller if
1830 * in flight packet have been lost.
1831 * Also frees the packet in <pkts> list.
1832 * Never fails.
1833 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001834static inline void qc_release_lost_pkts(struct quic_conn *qc,
1835 struct quic_pktns *pktns,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001836 struct list *pkts,
1837 uint64_t now_us)
1838{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001839 struct quic_tx_packet *pkt, *tmp, *oldest_lost, *newest_lost;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001840 uint64_t lost_bytes;
1841
1842 lost_bytes = 0;
1843 oldest_lost = newest_lost = NULL;
1844 list_for_each_entry_safe(pkt, tmp, pkts, list) {
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001845 struct list tmp = LIST_HEAD_INIT(tmp);
1846
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001847 lost_bytes += pkt->in_flight_len;
1848 pkt->pktns->tx.in_flight -= pkt->in_flight_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01001849 qc->path->prep_in_flight -= pkt->in_flight_len;
Frédéric Lécailleba9db402022-03-01 17:06:50 +01001850 qc->path->in_flight -= pkt->in_flight_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001851 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01001852 qc->path->ifae_pkts--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001853 /* Treat the frames of this lost packet. */
Frédéric Lécaille96367152022-04-25 09:40:19 +02001854 qc_requeue_nacked_pkt_tx_frms(qc, pkt, &pktns->tx.frms);
Willy Tarreau2b718102021-04-21 07:32:39 +02001855 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001856 if (!oldest_lost) {
1857 oldest_lost = newest_lost = pkt;
1858 }
1859 else {
1860 if (newest_lost != oldest_lost)
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001861 quic_tx_packet_refdec(newest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001862 newest_lost = pkt;
1863 }
1864 }
1865
Frédéric Lécaillea5ee0ae2022-03-02 14:52:56 +01001866 if (newest_lost) {
1867 /* Sent a congestion event to the controller */
Benoit DOLEZ69e3f052022-06-08 09:28:56 +02001868 struct quic_cc_event ev = { };
1869
1870 ev.type = QUIC_CC_EVT_LOSS;
1871 ev.loss.time_sent = newest_lost->time_sent;
Frédéric Lécaillea5ee0ae2022-03-02 14:52:56 +01001872
1873 quic_cc_event(&qc->path->cc, &ev);
1874 }
1875
1876 /* If an RTT have been already sampled, <rtt_min> has been set.
1877 * We must check if we are experiencing a persistent congestion.
1878 * If this is the case, the congestion controller must re-enter
1879 * slow start state.
1880 */
1881 if (qc->path->loss.rtt_min && newest_lost != oldest_lost) {
1882 unsigned int period = newest_lost->time_sent - oldest_lost->time_sent;
1883
1884 if (quic_loss_persistent_congestion(&qc->path->loss, period,
1885 now_ms, qc->max_ack_delay))
1886 qc->path->cc.algo->slow_start(&qc->path->cc);
1887 }
1888
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001889 if (lost_bytes) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001890 quic_tx_packet_refdec(oldest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001891 if (newest_lost != oldest_lost)
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001892 quic_tx_packet_refdec(newest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001893 }
1894}
1895
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001896/* Parse ACK frame into <frm> from a buffer at <buf> address with <end> being at
1897 * one byte past the end of this buffer. Also update <rtt_sample> if needed, i.e.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05001898 * 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 +01001899 * acked ack-eliciting packet.
1900 * Return 1, if succeeded, 0 if not.
1901 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001902static inline int qc_parse_ack_frm(struct quic_conn *qc,
1903 struct quic_frame *frm,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001904 struct quic_enc_level *qel,
1905 unsigned int *rtt_sample,
1906 const unsigned char **pos, const unsigned char *end)
1907{
1908 struct quic_ack *ack = &frm->ack;
1909 uint64_t smallest, largest;
1910 struct eb_root *pkts;
1911 struct eb64_node *largest_node;
1912 unsigned int time_sent, pkt_flags;
1913 struct list newly_acked_pkts = LIST_HEAD_INIT(newly_acked_pkts);
1914 struct list lost_pkts = LIST_HEAD_INIT(lost_pkts);
1915
1916 if (ack->largest_ack > qel->pktns->tx.next_pn) {
1917 TRACE_DEVEL("ACK for not sent packet", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001918 qc, NULL, &ack->largest_ack);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001919 goto err;
1920 }
1921
1922 if (ack->first_ack_range > ack->largest_ack) {
1923 TRACE_DEVEL("too big first ACK range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001924 qc, NULL, &ack->first_ack_range);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001925 goto err;
1926 }
1927
1928 largest = ack->largest_ack;
1929 smallest = largest - ack->first_ack_range;
1930 pkts = &qel->pktns->tx.pkts;
1931 pkt_flags = 0;
1932 largest_node = NULL;
1933 time_sent = 0;
1934
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02001935 if ((int64_t)ack->largest_ack > qel->pktns->rx.largest_acked_pn) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001936 largest_node = eb64_lookup(pkts, largest);
1937 if (!largest_node) {
1938 TRACE_DEVEL("Largest acked packet not found",
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001939 QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille83b7a5b2021-11-17 16:16:04 +01001940 }
1941 else {
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02001942 time_sent = eb64_entry(largest_node,
Frédéric Lécaille83b7a5b2021-11-17 16:16:04 +01001943 struct quic_tx_packet, pn_node)->time_sent;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001944 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001945 }
1946
1947 TRACE_PROTO("ack range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001948 qc, NULL, &largest, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001949 do {
1950 uint64_t gap, ack_range;
1951
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001952 qc_ackrng_pkts(qc, pkts, &pkt_flags, &newly_acked_pkts,
1953 largest_node, largest, smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001954 if (!ack->ack_range_num--)
1955 break;
1956
1957 if (!quic_dec_int(&gap, pos, end))
1958 goto err;
1959
1960 if (smallest < gap + 2) {
1961 TRACE_DEVEL("wrong gap value", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001962 qc, NULL, &gap, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001963 goto err;
1964 }
1965
1966 largest = smallest - gap - 2;
1967 if (!quic_dec_int(&ack_range, pos, end))
1968 goto err;
1969
1970 if (largest < ack_range) {
1971 TRACE_DEVEL("wrong ack range value", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001972 qc, NULL, &largest, &ack_range);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001973 goto err;
1974 }
1975
1976 /* Do not use this node anymore. */
1977 largest_node = NULL;
1978 /* Next range */
1979 smallest = largest - ack_range;
1980
1981 TRACE_PROTO("ack range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001982 qc, NULL, &largest, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001983 } while (1);
1984
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001985 if (time_sent && (pkt_flags & QUIC_FL_TX_PACKET_ACK_ELICITING)) {
1986 *rtt_sample = tick_remain(time_sent, now_ms);
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02001987 qel->pktns->rx.largest_acked_pn = ack->largest_ack;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001988 }
1989
1990 if (!LIST_ISEMPTY(&newly_acked_pkts)) {
1991 if (!eb_is_empty(&qel->pktns->tx.pkts)) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001992 qc_packet_loss_lookup(qel->pktns, qc, &lost_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001993 if (!LIST_ISEMPTY(&lost_pkts))
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001994 qc_release_lost_pkts(qc, qel->pktns, &lost_pkts, now_ms);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001995 }
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001996 qc_treat_newly_acked_pkts(qc, &newly_acked_pkts);
1997 if (quic_peer_validated_addr(qc))
1998 qc->path->loss.pto_count = 0;
1999 qc_set_timer(qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002000 }
2001
2002
2003 return 1;
2004
2005 err:
2006 free_quic_tx_pkts(&newly_acked_pkts);
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002007 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002008 return 0;
2009}
2010
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02002011/* This function gives the detail of the SSL error. It is used only
2012 * if the debug mode and the verbose mode are activated. It dump all
2013 * the SSL error until the stack was empty.
2014 */
2015static forceinline void qc_ssl_dump_errors(struct connection *conn)
2016{
2017 if (unlikely(global.mode & MODE_DEBUG)) {
2018 while (1) {
Willy Tarreau325fc632022-04-11 18:47:38 +02002019 const char *func = NULL;
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02002020 unsigned long ret;
2021
Willy Tarreau325fc632022-04-11 18:47:38 +02002022 ERR_peek_error_func(&func);
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02002023 ret = ERR_get_error();
2024 if (!ret)
2025 return;
2026
2027 fprintf(stderr, "conn. @%p OpenSSL error[0x%lx] %s: %s\n", conn, ret,
Willy Tarreau325fc632022-04-11 18:47:38 +02002028 func, ERR_reason_error_string(ret));
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02002029 }
2030 }
2031}
2032
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01002033int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx,
2034 const char **str, int *len);
2035
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002036/* Provide CRYPTO data to the TLS stack found at <data> with <len> as length
2037 * from <qel> encryption level with <ctx> as QUIC connection context.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05002038 * Remaining parameter are there for debugging purposes.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002039 * Return 1 if succeeded, 0 if not.
2040 */
2041static inline int qc_provide_cdata(struct quic_enc_level *el,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002042 struct ssl_sock_ctx *ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002043 const unsigned char *data, size_t len,
2044 struct quic_rx_packet *pkt,
2045 struct quic_rx_crypto_frm *cf)
2046{
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02002047 int ssl_err, state;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002048 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002049
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002050 ssl_err = SSL_ERROR_NONE;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01002051 qc = ctx->qc;
2052
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002053 TRACE_ENTER(QUIC_EV_CONN_SSLDATA, qc);
2054
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002055 if (SSL_provide_quic_data(ctx->ssl, el->level, data, len) != 1) {
2056 TRACE_PROTO("SSL_provide_quic_data() error",
Frédéric Lécaillefde2a982021-12-27 15:12:09 +01002057 QUIC_EV_CONN_SSLDATA, qc, pkt, cf, ctx->ssl);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002058 goto err;
2059 }
2060
2061 el->rx.crypto.offset += len;
2062 TRACE_PROTO("in order CRYPTO data",
Frédéric Lécaillee7ff2b22021-12-22 17:40:38 +01002063 QUIC_EV_CONN_SSLDATA, qc, NULL, cf, ctx->ssl);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002064
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002065 state = qc->state;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02002066 if (state < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002067 ssl_err = SSL_do_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_PROTO("SSL 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
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02002076 /* TODO: Should close the connection asap */
2077 if (!(qc->flags & QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED)) {
2078 qc->flags |= QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED;
2079 HA_ATOMIC_DEC(&qc->prx_counters->half_open_conn);
2080 HA_ATOMIC_INC(&qc->prx_counters->hdshk_fail);
2081 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002082 TRACE_DEVEL("SSL handshake error",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002083 QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaille7c881bd2021-09-28 09:05:59 +02002084 qc_ssl_dump_errors(ctx->conn);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01002085 ERR_clear_error();
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002086 goto err;
2087 }
2088
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002089 TRACE_PROTO("SSL handshake OK", QUIC_EV_CONN_IO_CB, qc, &state);
Frédéric Lécaillebc964bd2022-04-13 16:20:09 +02002090
2091 /* Check the alpn could be negotiated */
2092 if (!qc->app_ops) {
2093 TRACE_PROTO("No ALPN", QUIC_EV_CONN_IO_CB, qc, &state);
2094 quic_set_tls_alert(qc, SSL_AD_NO_APPLICATION_PROTOCOL);
2095 goto err;
2096 }
2097
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02002098 if (!(qc->flags & QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED)) {
2099 qc->flags |= QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED;
2100 HA_ATOMIC_DEC(&qc->prx_counters->half_open_conn);
2101 }
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002102 /* I/O callback switch */
2103 ctx->wait_event.tasklet->process = quic_conn_app_io_cb;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01002104 if (qc_is_listener(ctx->qc)) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002105 qc->state = QUIC_HS_ST_CONFIRMED;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01002106 /* The connection is ready to be accepted. */
2107 quic_accept_push_qc(qc);
2108 }
2109 else {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002110 qc->state = QUIC_HS_ST_COMPLETE;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01002111 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002112 } else {
2113 ssl_err = SSL_process_quic_post_handshake(ctx->ssl);
2114 if (ssl_err != 1) {
2115 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
2116 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
2117 TRACE_DEVEL("SSL post handshake",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002118 QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002119 goto out;
2120 }
2121
2122 TRACE_DEVEL("SSL post handshake error",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002123 QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002124 goto err;
2125 }
2126
2127 TRACE_PROTO("SSL post handshake succeeded",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002128 QUIC_EV_CONN_IO_CB, qc, &state);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002129 }
Amaury Denoyellee2288c32021-12-03 14:44:21 +01002130
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002131 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002132 TRACE_LEAVE(QUIC_EV_CONN_SSLDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002133 return 1;
2134
2135 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002136 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_SSLDATA, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002137 return 0;
2138}
2139
Amaury Denoyellef8db5aa2022-05-24 15:26:07 +02002140/* Parse a STREAM frame <strm_frm>
2141 *
2142 * Return 1 on success. On error, 0 is returned. In this case, the packet
2143 * containing the frame must not be acknowledged.
Amaury Denoyelle74cf2372022-04-29 15:58:22 +02002144 */
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002145static inline int qc_handle_strm_frm(struct quic_rx_packet *pkt,
2146 struct quic_stream *strm_frm,
2147 struct quic_conn *qc)
2148{
Amaury Denoyellef8db5aa2022-05-24 15:26:07 +02002149 int ret;
2150
Amaury Denoyelle74cf2372022-04-29 15:58:22 +02002151 /* RFC9000 13.1. Packet Processing
2152 *
2153 * A packet MUST NOT be acknowledged until packet protection has been
2154 * successfully removed and all frames contained in the packet have
2155 * been processed. For STREAM frames, this means the data has been
2156 * enqueued in preparation to be received by the application protocol,
2157 * but it does not require that data be delivered and consumed.
2158 */
Amaury Denoyellef8db5aa2022-05-24 15:26:07 +02002159 ret = qcc_recv(qc->qcc, strm_frm->id, strm_frm->len,
2160 strm_frm->offset.key, strm_frm->fin,
2161 (char *)strm_frm->data);
Amaury Denoyelle74cf2372022-04-29 15:58:22 +02002162
Amaury Denoyellef8db5aa2022-05-24 15:26:07 +02002163 /* frame rejected - packet must not be acknowledeged */
2164 if (ret)
2165 return 0;
2166
2167 return 1;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002168}
2169
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002170/* Duplicate all frames from <pkt_frm_list> list into <out_frm_list> list
2171 * for <qc> QUIC connection.
2172 * This is a best effort function which never fails even if no memory could be
2173 * allocated to duplicate these frames.
2174 */
2175static void qc_dup_pkt_frms(struct quic_conn *qc,
2176 struct list *pkt_frm_list, struct list *out_frm_list)
2177{
2178 struct quic_frame *frm, *frmbak;
2179 struct list tmp = LIST_HEAD_INIT(tmp);
2180
2181 list_for_each_entry_safe(frm, frmbak, pkt_frm_list, list) {
2182 struct quic_frame *dup_frm, *origin;
2183
2184 switch (frm->type) {
2185 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
2186 {
2187 struct quic_stream *strm_frm = &frm->stream;
2188 struct eb64_node *node = NULL;
2189 struct qc_stream_desc *stream_desc;
2190
2191 node = eb64_lookup(&qc->streams_by_id, strm_frm->id);
2192 if (!node) {
Frédéric Lécaillefdc1b962022-05-31 12:04:42 +02002193 TRACE_PROTO("released stream", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002194 continue;
2195 }
2196
2197 stream_desc = eb64_entry(node, struct qc_stream_desc, by_id);
2198 /* Do not resend this frame if in the "already acked range" */
2199 if (strm_frm->offset.key + strm_frm->len <= stream_desc->ack_offset) {
2200 TRACE_PROTO("ignored frame frame in already acked range",
2201 QUIC_EV_CONN_PRSAFRM, qc, frm);
2202 continue;
2203 }
2204 else if (strm_frm->offset.key < stream_desc->ack_offset) {
2205 strm_frm->offset.key = stream_desc->ack_offset;
2206 TRACE_PROTO("updated partially acked frame",
2207 QUIC_EV_CONN_PRSAFRM, qc, frm);
2208 }
2209
2210 break;
2211 }
2212
2213 default:
2214 break;
2215 }
2216
2217 dup_frm = pool_zalloc(pool_head_quic_frame);
2218 if (!dup_frm) {
2219 TRACE_PROTO("could not duplicate frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
2220 break;
2221 }
2222
2223 /* If <frm> is already a copy of another frame, we must take
2224 * its original frame as source for the copy.
2225 */
2226 origin = frm->origin ? frm->origin : frm;
2227 TRACE_PROTO("probing frame", QUIC_EV_CONN_PRSAFRM, qc, origin);
2228 *dup_frm = *origin;
2229 LIST_INIT(&dup_frm->reflist);
2230 TRACE_PROTO("copied from packet", QUIC_EV_CONN_PRSAFRM,
2231 qc, NULL, &origin->pkt->pn_node.key);
2232 dup_frm->origin = origin;
2233 LIST_APPEND(&origin->reflist, &dup_frm->ref);
2234 LIST_APPEND(&tmp, &dup_frm->list);
2235 }
2236
2237 LIST_SPLICE(out_frm_list, &tmp);
2238}
2239
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002240/* Prepare a fast retransmission from <qel> encryption level */
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002241static void qc_prep_fast_retrans(struct quic_conn *qc,
2242 struct quic_enc_level *qel,
2243 struct list *frms1, struct list *frms2)
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002244{
2245 struct eb_root *pkts = &qel->pktns->tx.pkts;
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002246 struct list *frms = frms1;
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002247 struct eb64_node *node;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002248 struct quic_tx_packet *pkt;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002249
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002250 pkt = NULL;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002251 node = eb64_first(pkts);
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002252 start:
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002253 while (node) {
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002254 pkt = eb64_entry(node, struct quic_tx_packet, pn_node);
2255 node = eb64_next(node);
2256 /* Skip the empty and coalesced packets */
Frédéric Lécailleb44cbc62022-04-21 17:58:46 +02002257 if (!LIST_ISEMPTY(&pkt->frms) && !(pkt->flags & QUIC_FL_TX_PACKET_COALESCED))
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002258 break;
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002259 }
2260
2261 if (!pkt)
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002262 return;
2263
Frédéric Lécaille12fd2592022-03-31 08:42:06 +02002264 /* When building a packet from another one, the field which may increase the
2265 * packet size is the packet number. And the maximum increase is 4 bytes.
2266 */
2267 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc) &&
2268 pkt->len + 4 > 3 * qc->rx.bytes - qc->tx.prep_bytes) {
2269 TRACE_PROTO("anti-amplification limit would be reached", QUIC_EV_CONN_PRSAFRM, qc);
2270 return;
2271 }
2272
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002273 TRACE_PROTO("duplicating packet", QUIC_EV_CONN_PRSAFRM, qc, NULL, &pkt->pn_node.key);
2274 qc_dup_pkt_frms(qc, &pkt->frms, frms);
2275 if (frms == frms1 && frms2) {
2276 frms = frms2;
2277 goto start;
2278 }
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002279}
2280
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002281/* Prepare a fast retransmission during a handshake after a client
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002282 * has resent Initial packets. According to the RFC a server may retransmit
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002283 * Initial packets send them coalescing with others (Handshake here).
2284 * (Listener only function).
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002285 */
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002286static void qc_prep_hdshk_fast_retrans(struct quic_conn *qc,
2287 struct list *ifrms, struct list *hfrms)
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002288{
2289 struct list itmp = LIST_HEAD_INIT(itmp);
2290 struct list htmp = LIST_HEAD_INIT(htmp);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002291
2292 struct quic_enc_level *iqel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
2293 struct quic_enc_level *hqel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
2294 struct quic_enc_level *qel = iqel;
2295 struct eb_root *pkts;
2296 struct eb64_node *node;
2297 struct quic_tx_packet *pkt;
2298 struct list *tmp = &itmp;
2299
2300 start:
2301 pkt = NULL;
2302 pkts = &qel->pktns->tx.pkts;
2303 node = eb64_first(pkts);
2304 /* Skip the empty packet (they have already been retransmitted) */
2305 while (node) {
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02002306 pkt = eb64_entry(node, struct quic_tx_packet, pn_node);
Frédéric Lécailleb44cbc62022-04-21 17:58:46 +02002307 if (!LIST_ISEMPTY(&pkt->frms) && !(pkt->flags & QUIC_FL_TX_PACKET_COALESCED))
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002308 break;
2309 node = eb64_next(node);
2310 }
2311
2312 if (!pkt)
2313 goto end;
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 goto end;
2322 }
2323
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002324 qel->pktns->tx.pto_probe += 1;
2325 requeue:
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002326 TRACE_PROTO("duplicating packet", QUIC_EV_CONN_PRSAFRM, qc, NULL, &pkt->pn_node.key);
2327 qc_dup_pkt_frms(qc, &pkt->frms, tmp);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002328 if (qel == iqel) {
2329 if (pkt->next && pkt->next->type == QUIC_PACKET_TYPE_HANDSHAKE) {
2330 pkt = pkt->next;
2331 tmp = &htmp;
2332 hqel->pktns->tx.pto_probe += 1;
2333 goto requeue;
2334 }
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002335 }
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002336
2337 end:
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002338 LIST_SPLICE(ifrms, &itmp);
2339 LIST_SPLICE(hfrms, &htmp);
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002340}
2341
Frédéric Lécaille6f7607e2022-05-25 22:25:37 +02002342static void qc_cc_err_count_inc(struct quic_conn *qc, struct quic_frame *frm)
Frédéric Lécaille3ccea6d2022-05-23 22:54:54 +02002343{
Frédéric Lécaille6f7607e2022-05-25 22:25:37 +02002344 if (frm->type == QUIC_FT_CONNECTION_CLOSE)
2345 quic_stats_transp_err_count_inc(qc->prx_counters, frm->connection_close.error_code);
2346 else if (frm->type == QUIC_FT_CONNECTION_CLOSE_APP) {
2347 if (qc->mux_state != QC_MUX_READY || !qc->qcc->app_ops->inc_err_cnt)
2348 return;
2349
2350 qc->qcc->app_ops->inc_err_cnt(qc->qcc->ctx, frm->connection_close_app.error_code);
2351 }
Frédéric Lécaille3ccea6d2022-05-23 22:54:54 +02002352}
2353
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002354/* Enqueue a STOP_SENDING frame to send into 1RTT packet number space
2355 * frame list to send.
2356 * Return 1 if succeeded, 0 if not.
2357 */
2358static int qc_stop_sending_frm_enqueue(struct quic_conn *qc, uint64_t id)
2359{
2360 struct quic_frame *frm;
2361 struct quic_enc_level *qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
2362 uint64_t app_error_code;
2363
2364 /* TODO: the mux may be released, we cannot have more
2365 * information about the application error code to send
2366 * at this time.
2367 */
2368 app_error_code = H3_REQUEST_REJECTED;
2369
2370 frm = pool_zalloc(pool_head_quic_frame);
2371 if (!frm)
2372 return 0;
2373
2374 frm->type = QUIC_FT_STOP_SENDING;
2375 frm->stop_sending.id = id;
2376 frm->stop_sending.app_error_code = app_error_code;
2377 LIST_INIT(&frm->reflist);
2378 LIST_APPEND(&qel->pktns->tx.frms, &frm->list);
2379
2380 return 1;
2381}
2382
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002383/* Parse all the frames of <pkt> QUIC packet for QUIC connection with <ctx>
2384 * as I/O handler context and <qel> as encryption level.
2385 * Returns 1 if succeeded, 0 if failed.
2386 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002387static 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 +01002388 struct quic_enc_level *qel)
2389{
2390 struct quic_frame frm;
2391 const unsigned char *pos, *end;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01002392 struct quic_conn *qc = ctx->qc;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002393 int fast_retrans = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002394
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002395 TRACE_ENTER(QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002396 /* Skip the AAD */
2397 pos = pkt->data + pkt->aad_len;
2398 end = pkt->data + pkt->len;
2399
2400 while (pos < end) {
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002401 if (!qc_parse_frm(&frm, pkt, &pos, end, qc))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002402 goto err;
2403
Frédéric Lécaille1ede8232021-12-23 14:11:25 +01002404 TRACE_PROTO("RX frame", QUIC_EV_CONN_PSTRM, qc, &frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002405 switch (frm.type) {
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002406 case QUIC_FT_PADDING:
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002407 break;
2408 case QUIC_FT_PING:
2409 break;
2410 case QUIC_FT_ACK:
2411 {
2412 unsigned int rtt_sample;
2413
2414 rtt_sample = 0;
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002415 if (!qc_parse_ack_frm(qc, &frm, qel, &rtt_sample, &pos, end))
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002416 goto err;
2417
2418 if (rtt_sample) {
2419 unsigned int ack_delay;
2420
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002421 ack_delay = !quic_application_pktns(qel->pktns, qc) ? 0 :
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002422 qc->state >= QUIC_HS_ST_CONFIRMED ?
Frédéric Lécaille22576a22021-12-28 14:27:43 +01002423 MS_TO_TICKS(QUIC_MIN(quic_ack_delay_ms(&frm.ack, qc), qc->max_ack_delay)) :
2424 MS_TO_TICKS(quic_ack_delay_ms(&frm.ack, qc));
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002425 quic_loss_srtt_update(&qc->path->loss, rtt_sample, ack_delay, qc);
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002426 }
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002427 break;
2428 }
Frédéric Lécaillee06ca652022-05-29 11:48:58 +02002429 case QUIC_FT_RESET_STREAM:
2430 /* TODO: handle this frame at STREAM level */
2431 break;
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002432 case QUIC_FT_STOP_SENDING:
Amaury Denoyellea5b50752022-07-04 11:44:53 +02002433 {
2434 struct quic_stop_sending *stop_sending = &frm.stop_sending;
2435 if (qc->mux_state == QC_MUX_READY) {
2436 if (qcc_recv_stop_sending(qc->qcc, stop_sending->id,
2437 stop_sending->app_error_code)) {
2438 goto err;
2439 }
2440 }
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002441 break;
Amaury Denoyellea5b50752022-07-04 11:44:53 +02002442 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002443 case QUIC_FT_CRYPTO:
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002444 {
2445 struct quic_rx_crypto_frm *cf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002446
Frédéric Lécaillebd242082022-02-25 17:17:59 +01002447 if (unlikely(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD)) {
Frédéric Lécaille917a7db2022-01-03 17:00:35 +01002448 /* XXX TO DO: <cfdebug> is used only for the traces. */
2449 struct quic_rx_crypto_frm cfdebug = { };
2450
2451 cfdebug.offset_node.key = frm.crypto.offset;
2452 cfdebug.len = frm.crypto.len;
2453 TRACE_PROTO("CRYPTO data discarded",
2454 QUIC_EV_CONN_ELRXPKTS, qc, pkt, &cfdebug);
2455 break;
2456 }
2457
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002458 if (unlikely(frm.crypto.offset < qel->rx.crypto.offset)) {
2459 if (frm.crypto.offset + frm.crypto.len <= qel->rx.crypto.offset) {
2460 /* XXX TO DO: <cfdebug> is used only for the traces. */
2461 struct quic_rx_crypto_frm cfdebug = { };
2462
2463 cfdebug.offset_node.key = frm.crypto.offset;
2464 cfdebug.len = frm.crypto.len;
2465 /* Nothing to do */
2466 TRACE_PROTO("Already received CRYPTO data",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002467 QUIC_EV_CONN_ELRXPKTS, qc, pkt, &cfdebug);
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002468 if (qc_is_listener(ctx->qc) &&
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002469 qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL])
2470 fast_retrans = 1;
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002471 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002472 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002473 else {
2474 size_t diff = qel->rx.crypto.offset - frm.crypto.offset;
2475 /* XXX TO DO: <cfdebug> is used only for the traces. */
2476 struct quic_rx_crypto_frm cfdebug = { };
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002477
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002478 cfdebug.offset_node.key = frm.crypto.offset;
2479 cfdebug.len = frm.crypto.len;
2480 TRACE_PROTO("Partially already received CRYPTO data",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002481 QUIC_EV_CONN_ELRXPKTS, qc, pkt, &cfdebug);
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002482 frm.crypto.len -= diff;
2483 frm.crypto.data += diff;
2484 frm.crypto.offset = qel->rx.crypto.offset;
2485 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002486 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002487
2488 if (frm.crypto.offset == qel->rx.crypto.offset) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002489 /* XXX TO DO: <cf> is used only for the traces. */
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002490 struct quic_rx_crypto_frm cfdebug = { };
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002491
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002492 cfdebug.offset_node.key = frm.crypto.offset;
2493 cfdebug.len = frm.crypto.len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002494 if (!qc_provide_cdata(qel, ctx,
2495 frm.crypto.data, frm.crypto.len,
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002496 pkt, &cfdebug))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002497 goto err;
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002498
2499 break;
2500 }
2501
2502 /* frm.crypto.offset > qel->rx.crypto.offset */
2503 cf = pool_alloc(pool_head_quic_rx_crypto_frm);
2504 if (!cf) {
2505 TRACE_DEVEL("CRYPTO frame allocation failed",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002506 QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002507 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002508 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002509
2510 cf->offset_node.key = frm.crypto.offset;
2511 cf->len = frm.crypto.len;
2512 cf->data = frm.crypto.data;
2513 cf->pkt = pkt;
2514 eb64_insert(&qel->rx.crypto.frms, &cf->offset_node);
2515 quic_rx_packet_refinc(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002516 break;
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002517 }
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002518 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002519 {
2520 struct quic_stream *stream = &frm.stream;
Frédéric Lécailled62240c2022-05-02 18:52:58 +02002521 unsigned nb_streams = qc->rx.strms[qcs_id_type(stream->id)].nb_streams;
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002522
Frédéric Lécailled62240c2022-05-02 18:52:58 +02002523 /* The upper layer may not be allocated. */
2524 if (qc->mux_state != QC_MUX_READY) {
2525 if ((stream->id >> QCS_ID_TYPE_SHIFT) < nb_streams) {
2526 TRACE_PROTO("Already closed stream", QUIC_EV_CONN_PRSHPKT, qc);
2527 break;
2528 }
2529 else {
2530 TRACE_PROTO("Stream not found", QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002531 if (!qc_stop_sending_frm_enqueue(qc, stream->id))
2532 TRACE_PROTO("could not enqueue STOP_SENDING frame", QUIC_EV_CONN_PRSHPKT, qc);
2533
Frédéric Lécailled62240c2022-05-02 18:52:58 +02002534 goto err;
2535 }
2536 }
Frédéric Lécaille12aa26b2022-03-21 11:37:13 +01002537
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002538 if (!qc_handle_strm_frm(pkt, stream, qc))
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002539 goto err;
2540
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002541 break;
2542 }
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002543 case QUIC_FT_MAX_DATA:
Amaury Denoyelle1e5e5132022-03-08 16:23:03 +01002544 if (qc->mux_state == QC_MUX_READY) {
2545 struct quic_max_data *data = &frm.max_data;
2546 qcc_recv_max_data(qc->qcc, data->max_data);
2547 }
2548 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002549 case QUIC_FT_MAX_STREAM_DATA:
Amaury Denoyelle8727ff42022-03-08 10:39:55 +01002550 if (qc->mux_state == QC_MUX_READY) {
2551 struct quic_max_stream_data *data = &frm.max_stream_data;
Amaury Denoyelleb68559a2022-07-06 15:45:20 +02002552 if (qcc_recv_max_stream_data(qc->qcc, data->id,
2553 data->max_stream_data)) {
2554 goto err;
2555 }
Amaury Denoyelle8727ff42022-03-08 10:39:55 +01002556 }
2557 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002558 case QUIC_FT_MAX_STREAMS_BIDI:
2559 case QUIC_FT_MAX_STREAMS_UNI:
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02002560 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002561 case QUIC_FT_DATA_BLOCKED:
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02002562 HA_ATOMIC_INC(&qc->prx_counters->data_blocked);
2563 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002564 case QUIC_FT_STREAM_DATA_BLOCKED:
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02002565 HA_ATOMIC_INC(&qc->prx_counters->stream_data_blocked);
2566 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002567 case QUIC_FT_STREAMS_BLOCKED_BIDI:
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02002568 HA_ATOMIC_INC(&qc->prx_counters->streams_data_blocked_bidi);
2569 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002570 case QUIC_FT_STREAMS_BLOCKED_UNI:
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02002571 HA_ATOMIC_INC(&qc->prx_counters->streams_data_blocked_uni);
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002572 break;
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002573 case QUIC_FT_NEW_CONNECTION_ID:
Frédéric Lécaille2cca2412022-01-21 13:55:03 +01002574 case QUIC_FT_RETIRE_CONNECTION_ID:
2575 /* XXX TO DO XXX */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002576 break;
2577 case QUIC_FT_CONNECTION_CLOSE:
2578 case QUIC_FT_CONNECTION_CLOSE_APP:
Frédéric Lécaille6f7607e2022-05-25 22:25:37 +02002579 /* Increment the error counters */
2580 qc_cc_err_count_inc(qc, &frm);
Frédéric Lécaille47756802022-03-25 09:12:16 +01002581 if (!(qc->flags & QUIC_FL_CONN_DRAINING)) {
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02002582 if (!(qc->flags & QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED)) {
2583 qc->flags |= QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED;
Frédéric Lécailleeb791452022-05-24 16:01:39 +02002584 HA_ATOMIC_DEC(&qc->prx_counters->half_open_conn);
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02002585 }
Frédéric Lécaille47756802022-03-25 09:12:16 +01002586 TRACE_PROTO("Entering draining state", QUIC_EV_CONN_PRSHPKT, qc);
2587 /* RFC 9000 10.2. Immediate Close:
2588 * The closing and draining connection states exist to ensure
2589 * that connections close cleanly and that delayed or reordered
2590 * packets are properly discarded. These states SHOULD persist
2591 * for at least three times the current PTO interval...
2592 *
2593 * Rearm the idle timeout only one time when entering draining
2594 * state.
2595 */
2596 qc_idle_timer_do_rearm(qc);
2597 qc->flags |= QUIC_FL_CONN_DRAINING|QUIC_FL_CONN_IMMEDIATE_CLOSE;
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02002598 qc_notify_close(qc);
Frédéric Lécaille47756802022-03-25 09:12:16 +01002599 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002600 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002601 case QUIC_FT_HANDSHAKE_DONE:
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002602 if (qc_is_listener(ctx->qc))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002603 goto err;
2604
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002605 qc->state = QUIC_HS_ST_CONFIRMED;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002606 break;
2607 default:
2608 goto err;
2609 }
2610 }
2611
Frédéric Lécaille44ae7522022-03-21 12:18:00 +01002612 /* Flag this packet number space as having received a packet. */
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02002613 qel->pktns->flags |= QUIC_FL_PKTNS_PKT_RECEIVED;
Frédéric Lécaille44ae7522022-03-21 12:18:00 +01002614
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002615 if (fast_retrans) {
2616 struct quic_enc_level *iqel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
2617 struct quic_enc_level *hqel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
2618
2619 qc_prep_hdshk_fast_retrans(qc, &iqel->pktns->tx.frms, &hqel->pktns->tx.frms);
2620 }
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002621
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002622 /* The server must switch from INITIAL to HANDSHAKE handshake state when it
2623 * has successfully parse a Handshake packet. The Initial encryption must also
2624 * be discarded.
2625 */
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002626 if (pkt->type == QUIC_PACKET_TYPE_HANDSHAKE && qc_is_listener(ctx->qc)) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002627 if (qc->state >= QUIC_HS_ST_SERVER_INITIAL) {
Frédéric Lécaille05bd92b2022-03-29 19:09:46 +02002628 if (!(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].tls_ctx.flags &
2629 QUIC_FL_TLS_SECRETS_DCD)) {
2630 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
2631 TRACE_PROTO("discarding Initial pktns", QUIC_EV_CONN_PRSHPKT, qc);
2632 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, qc);
2633 qc_set_timer(ctx->qc);
2634 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
2635 qc_release_pktns_frms(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns);
2636 }
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002637 if (qc->state < QUIC_HS_ST_SERVER_HANDSHAKE)
2638 qc->state = QUIC_HS_ST_SERVER_HANDSHAKE;
Frédéric Lécaille8c27de72021-09-20 11:00:46 +02002639 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002640 }
2641
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002642 TRACE_LEAVE(QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002643 return 1;
2644
2645 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002646 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002647 return 0;
2648}
2649
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01002650/* Must be called only by a <cbuf> writer (packet builder).
2651 * Return 1 if <cbuf> may be reused to build packets, depending on its <rd> and
2652 * <wr> internal indexes, 0 if not. When this is the case, reset <wr> writer
2653 * index after having marked the end of written data. This the responsability
2654 * of the caller to ensure there is enough room in <cbuf> to write the end of
2655 * data made of a uint16_t null field.
2656 *
2657 * +XXXXXXXXXXXXXXXXXXXXXXX---------------+ (cannot be reused)
2658 * ^ ^
2659 * r w
2660 *
2661 * +-------XXXXXXXXXXXXXXXX---------------+ (can be reused)
2662 * ^ ^
2663 * r w
2664
2665 * +--------------------------------------+ (empty buffer, can be reused)
2666 * ^
2667 * (r = w)
2668 *
2669 * +XXXXXXXXXXXXXXXXXXXXX-XXXXXXXXXXXXXXXX+ (full buffer, cannot be reused)
2670 * ^ ^
2671 * w r
2672 */
2673static int qc_may_reuse_cbuf(struct cbuf *cbuf)
2674{
2675 int rd = HA_ATOMIC_LOAD(&cbuf->rd);
2676
2677 /* We can reset the writer index only if in front of the reader index and
2678 * if the reader index is not null. Resetting the writer when the reader
2679 * index is null would empty the buffer.
2680 * XXX Note than the writer index cannot reach the reader index.
2681 * Only the reader index can reach the writer index.
2682 */
2683 if (rd && rd <= cbuf->wr) {
2684 /* Mark the end of contiguous data for the reader */
2685 write_u16(cb_wr(cbuf), 0);
2686 cb_add(cbuf, sizeof(uint16_t));
2687 cb_wr_reset(cbuf);
2688 return 1;
2689 }
2690
2691 return 0;
2692}
2693
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002694/* Write <dglen> datagram length and <pkt> first packet address into <cbuf> ring
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +05002695 * buffer. This is the responsibility of the caller to check there is enough
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002696 * room in <cbuf>. Also increase the <cbuf> write index consequently.
2697 * This function must be called only after having built a correct datagram.
2698 * Always succeeds.
2699 */
2700static inline void qc_set_dg(struct cbuf *cbuf,
2701 uint16_t dglen, struct quic_tx_packet *pkt)
2702{
2703 write_u16(cb_wr(cbuf), dglen);
2704 write_ptr(cb_wr(cbuf) + sizeof dglen, pkt);
2705 cb_add(cbuf, dglen + sizeof dglen + sizeof pkt);
2706}
2707
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002708/* Returns 1 if a packet may be built for <qc> from <qel> encryption level
2709 * with <frms> as ack-eliciting frame list to send, 0 if not.
2710 * <cc> must equal to 1 if an immediate close was asked, 0 if not.
2711 * <probe> must equalt to 1 if a probing packet is required, 0 if not.
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02002712 * <force_ack> may be set to 1 if you want to force an ack.
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002713 */
2714static int qc_may_build_pkt(struct quic_conn *qc, struct list *frms,
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02002715 struct quic_enc_level *qel, int cc, int probe, int force_ack)
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002716{
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02002717 unsigned int must_ack = force_ack ||
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02002718 (LIST_ISEMPTY(frms) && (qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED));
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002719
2720 /* Do not build any more packet if the TX secrets are not available or
2721 * if there is nothing to send, i.e. if no CONNECTION_CLOSE or ACK are required
2722 * and if there is no more packets to send upon PTO expiration
2723 * and if there is no more ack-eliciting frames to send or in flight
2724 * congestion control limit is reached for prepared data
2725 */
2726 if (!(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET) ||
2727 (!cc && !probe && !must_ack &&
2728 (LIST_ISEMPTY(frms) || qc->path->prep_in_flight >= qc->path->cwnd))) {
2729 TRACE_DEVEL("nothing more to do", QUIC_EV_CONN_PHPKTS, qc);
2730 return 0;
2731 }
2732
2733 return 1;
2734}
2735
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002736/* Prepare as much as possible short packets which are also datagrams into <qr>
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01002737 * ring buffer for the QUIC connection with <ctx> as I/O handler context from
2738 * <frms> list of prebuilt frames.
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002739 * A header made of two fields is added to each datagram: the datagram length followed
2740 * by the address of the first packet in this datagram.
Frédéric Lécaille728b30d2022-03-10 17:42:58 +01002741 * Returns the number of bytes prepared in packets if succeeded (may be 0),
2742 * or -1 if something wrong happened.
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002743 */
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01002744static int qc_prep_app_pkts(struct quic_conn *qc, struct qring *qr,
2745 struct list *frms)
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002746{
2747 struct quic_enc_level *qel;
2748 struct cbuf *cbuf;
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01002749 unsigned char *end_buf, *end, *pos;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002750 struct quic_tx_packet *pkt;
2751 size_t total;
2752 size_t dg_headlen;
2753
2754 TRACE_ENTER(QUIC_EV_CONN_PHPKTS, qc);
2755 /* Each datagram is prepended with its length followed by the
2756 * address of the first packet in the datagram.
2757 */
2758 dg_headlen = sizeof(uint16_t) + sizeof pkt;
2759 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
2760 total = 0;
2761 start:
2762 cbuf = qr->cbuf;
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01002763 pos = cb_wr(cbuf);
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002764 /* Leave at least <sizeof(uint16_t)> bytes at the end of this buffer
2765 * to ensure there is enough room to mark the end of prepared
2766 * contiguous data with a zero length.
2767 */
2768 end_buf = pos + cb_contig_space(cbuf) - sizeof(uint16_t);
2769 while (end_buf - pos >= (int)qc->path->mtu + dg_headlen) {
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002770 int err, probe, cc;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002771
2772 TRACE_POINT(QUIC_EV_CONN_PHPKTS, qc, qel);
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002773 probe = 0;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002774 cc = qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002775 /* We do not probe if an immediate close was asked */
2776 if (!cc)
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002777 probe = qel->pktns->tx.pto_probe;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002778
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02002779 if (!qc_may_build_pkt(qc, frms, qel, cc, probe, 0))
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002780 break;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002781
2782 /* Leave room for the datagram header */
2783 pos += dg_headlen;
2784 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc)) {
Frédéric Lécaille628e89c2022-06-24 12:13:53 +02002785 end = pos + QUIC_MIN((uint64_t)qc->path->mtu, 3 * qc->rx.bytes - qc->tx.prep_bytes);
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002786 }
2787 else {
2788 end = pos + qc->path->mtu;
2789 }
2790
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02002791 pkt = qc_build_pkt(&pos, end, qel, &qel->tls_ctx, frms, qc, NULL, 0,
2792 QUIC_PACKET_TYPE_SHORT, 0, 0, probe, cc, &err);
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002793 switch (err) {
2794 case -2:
2795 goto err;
2796 case -1:
Frédéric Lécaillee9a974a2022-03-13 19:19:12 +01002797 /* As we provide qc_build_pkt() with an enough big buffer to fulfill an
2798 * MTU, we are here because of the congestion control window. There is
2799 * no need to try to reuse this buffer.
2800 */
2801 goto out;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002802 default:
2803 break;
2804 }
2805
2806 /* This is to please to GCC. We cannot have (err >= 0 && !pkt) */
2807 if (!pkt)
2808 goto err;
2809
Frédéric Lécaille1809c332022-04-25 10:24:12 +02002810 if (qc->flags & QUIC_FL_CONN_RETRANS_OLD_DATA)
2811 pkt->flags |= QUIC_FL_TX_PACKET_PROBE_WITH_OLD_DATA;
2812
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002813 total += pkt->len;
2814 /* Set the current datagram as prepared into <cbuf>. */
2815 qc_set_dg(cbuf, pkt->len, pkt);
2816 }
2817
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002818 /* Reset <wr> writer index if in front of <rd> index */
2819 if (end_buf - pos < (int)qc->path->mtu + dg_headlen) {
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002820 TRACE_DEVEL("buffer full", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01002821 if (qc_may_reuse_cbuf(cbuf))
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002822 goto start;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002823 }
2824
2825 out:
2826 TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, qc);
2827 return total;
2828
2829 err:
2830 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PHPKTS, qc);
2831 return -1;
2832}
2833
Frédéric Lécaillee2660e62021-11-23 11:36:51 +01002834/* Prepare as much as possible packets into <qr> ring buffer for
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002835 * the QUIC connection with <ctx> as I/O handler context, possibly concatenating
2836 * several packets in the same datagram. A header made of two fields is added
2837 * to each datagram: the datagram length followed by the address of the first
2838 * packet in this datagram.
Frédéric Lécaille728b30d2022-03-10 17:42:58 +01002839 * Returns the number of bytes prepared in packets if succeeded (may be 0),
2840 * or -1 if something wrong happened.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002841 */
Frédéric Lécailleee2b8b32022-01-03 11:14:30 +01002842static int qc_prep_pkts(struct quic_conn *qc, struct qring *qr,
Frédéric Lécaillefc888442022-04-11 15:39:34 +02002843 enum quic_tls_enc_level tel, struct list *tel_frms,
2844 enum quic_tls_enc_level next_tel, struct list *next_tel_frms)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002845{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002846 struct quic_enc_level *qel;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002847 struct cbuf *cbuf;
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01002848 unsigned char *end_buf, *end, *pos;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002849 struct quic_tx_packet *first_pkt, *cur_pkt, *prv_pkt;
2850 /* length of datagrams */
2851 uint16_t dglen;
2852 size_t total;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01002853 int padding;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002854 /* Each datagram is prepended with its length followed by the
2855 * address of the first packet in the datagram.
2856 */
2857 size_t dg_headlen = sizeof dglen + sizeof first_pkt;
Frédéric Lécaillefc888442022-04-11 15:39:34 +02002858 struct list *frms;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002859
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002860 TRACE_ENTER(QUIC_EV_CONN_PHPKTS, qc);
2861
Frédéric Lécaille99942d62022-01-07 14:32:31 +01002862 total = 0;
Frédéric Lécaillefc888442022-04-11 15:39:34 +02002863 qel = &qc->els[tel];
2864 frms = tel_frms;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002865 start:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002866 dglen = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01002867 padding = 0;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002868 cbuf = qr->cbuf;
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01002869 pos = cb_wr(cbuf);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002870 /* Leave at least <dglen> bytes at the end of this buffer
2871 * to ensure there is enough room to mark the end of prepared
2872 * contiguous data with a zero length.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002873 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002874 end_buf = pos + cb_contig_space(cbuf) - sizeof dglen;
2875 first_pkt = prv_pkt = NULL;
2876 while (end_buf - pos >= (int)qc->path->mtu + dg_headlen || prv_pkt) {
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002877 int err, probe, cc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002878 enum quic_pkt_type pkt_type;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02002879 struct quic_tls_ctx *tls_ctx;
2880 const struct quic_version *ver;
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02002881 int force_ack = (qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) &&
2882 (qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL] ||
2883 qel == &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002884
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002885 TRACE_POINT(QUIC_EV_CONN_PHPKTS, qc, qel);
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002886 probe = 0;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002887 cc = qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002888 /* We do not probe if an immediate close was asked */
2889 if (!cc)
Frédéric Lécaille94fca872022-01-19 18:54:18 +01002890 probe = qel->pktns->tx.pto_probe;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002891
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02002892 if (!qc_may_build_pkt(qc, frms, qel, cc, probe, force_ack)) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002893 if (prv_pkt)
2894 qc_set_dg(cbuf, dglen, first_pkt);
Frédéric Lécaille39ba1c32022-01-21 16:52:56 +01002895 /* Let's select the next encryption level */
2896 if (tel != next_tel && next_tel != QUIC_TLS_ENC_LEVEL_NONE) {
2897 tel = next_tel;
Frédéric Lécaillefc888442022-04-11 15:39:34 +02002898 frms = next_tel_frms;
Frédéric Lécaille39ba1c32022-01-21 16:52:56 +01002899 qel = &qc->els[tel];
2900 /* Build a new datagram */
2901 prv_pkt = NULL;
2902 continue;
2903 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002904 break;
2905 }
2906
2907 pkt_type = quic_tls_level_pkt_type(tel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002908 if (!prv_pkt) {
2909 /* Leave room for the datagram header */
2910 pos += dg_headlen;
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002911 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc)) {
Frédéric Lécaille628e89c2022-06-24 12:13:53 +02002912 end = pos + QUIC_MIN((uint64_t)qc->path->mtu, 3 * qc->rx.bytes - qc->tx.prep_bytes);
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +01002913 }
2914 else {
2915 end = pos + qc->path->mtu;
2916 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002917 }
2918
Frédéric Lécaille301425b2022-06-14 17:40:39 +02002919 if (qc->negotiated_version) {
2920 ver = qc->negotiated_version;
2921 if (qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL])
2922 tls_ctx = &qc->negotiated_ictx;
2923 else
2924 tls_ctx = &qel->tls_ctx;
2925 }
2926 else {
2927 ver = qc->original_version;
2928 tls_ctx = &qel->tls_ctx;
2929 }
2930
2931 cur_pkt = qc_build_pkt(&pos, end, qel, tls_ctx, frms,
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02002932 qc, ver, dglen, pkt_type,
2933 force_ack, padding, probe, cc, &err);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002934 switch (err) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002935 case -2:
2936 goto err;
2937 case -1:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002938 /* If there was already a correct packet present, set the
2939 * current datagram as prepared into <cbuf>.
2940 */
Frédéric Lécaille05e30ee2022-02-28 16:55:32 +01002941 if (prv_pkt)
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002942 qc_set_dg(cbuf, dglen, first_pkt);
Frédéric Lécaille05e30ee2022-02-28 16:55:32 +01002943 goto stop_build;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002944 default:
Frédéric Lécaille63556772021-12-29 17:18:21 +01002945 break;
2946 }
Frédéric Lécaille67f47d02021-08-19 15:19:09 +02002947
Frédéric Lécaille63556772021-12-29 17:18:21 +01002948 /* This is to please to GCC. We cannot have (err >= 0 && !cur_pkt) */
2949 if (!cur_pkt)
2950 goto err;
2951
Frédéric Lécaille1809c332022-04-25 10:24:12 +02002952 if (qc->flags & QUIC_FL_CONN_RETRANS_OLD_DATA)
2953 cur_pkt->flags |= QUIC_FL_TX_PACKET_PROBE_WITH_OLD_DATA;
2954
Frédéric Lécaille63556772021-12-29 17:18:21 +01002955 total += cur_pkt->len;
2956 /* keep trace of the first packet in the datagram */
2957 if (!first_pkt)
2958 first_pkt = cur_pkt;
2959 /* Attach the current one to the previous one */
Frédéric Lécailleb44cbc62022-04-21 17:58:46 +02002960 if (prv_pkt) {
Frédéric Lécaille63556772021-12-29 17:18:21 +01002961 prv_pkt->next = cur_pkt;
Frédéric Lécailleb44cbc62022-04-21 17:58:46 +02002962 cur_pkt->flags |= QUIC_FL_TX_PACKET_COALESCED;
2963 }
Frédéric Lécaille63556772021-12-29 17:18:21 +01002964 /* Let's say we have to build a new dgram */
2965 prv_pkt = NULL;
2966 dglen += cur_pkt->len;
2967 /* Client: discard the Initial encryption keys as soon as
2968 * a handshake packet could be built.
2969 */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002970 if (qc->state == QUIC_HS_ST_CLIENT_INITIAL &&
Frédéric Lécaille63556772021-12-29 17:18:21 +01002971 pkt_type == QUIC_PACKET_TYPE_HANDSHAKE) {
2972 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
2973 TRACE_PROTO("discarding Initial pktns", QUIC_EV_CONN_PHPKTS, qc);
2974 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, qc);
2975 qc_set_timer(qc);
Frédéric Lécaillea6255f52022-01-19 17:29:48 +01002976 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01002977 qc_release_pktns_frms(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns);
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002978 qc->state = QUIC_HS_ST_CLIENT_HANDSHAKE;
Frédéric Lécaille63556772021-12-29 17:18:21 +01002979 }
2980 /* If the data for the current encryption level have all been sent,
2981 * select the next level.
2982 */
2983 if ((tel == QUIC_TLS_ENC_LEVEL_INITIAL || tel == QUIC_TLS_ENC_LEVEL_HANDSHAKE) &&
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02002984 next_tel != QUIC_TLS_ENC_LEVEL_NONE && (LIST_ISEMPTY(frms) && !qel->pktns->tx.pto_probe)) {
Frédéric Lécaille63556772021-12-29 17:18:21 +01002985 /* If QUIC_TLS_ENC_LEVEL_HANDSHAKE was already reached let's try QUIC_TLS_ENC_LEVEL_APP */
2986 if (tel == QUIC_TLS_ENC_LEVEL_HANDSHAKE && next_tel == tel)
2987 next_tel = QUIC_TLS_ENC_LEVEL_APP;
2988 tel = next_tel;
Frédéric Lécaillefc888442022-04-11 15:39:34 +02002989 if (tel == QUIC_TLS_ENC_LEVEL_APP)
2990 frms = &qc->els[tel].pktns->tx.frms;
2991 else
2992 frms = next_tel_frms;
Frédéric Lécaille63556772021-12-29 17:18:21 +01002993 qel = &qc->els[tel];
Frédéric Lécaillefc888442022-04-11 15:39:34 +02002994 if (!LIST_ISEMPTY(frms)) {
Frédéric Lécaille63556772021-12-29 17:18:21 +01002995 /* If there is data for the next level, do not
2996 * consume a datagram.
2997 */
2998 prv_pkt = cur_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002999 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003000 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003001 /* If we have to build a new datagram, set the current datagram as
3002 * prepared into <cbuf>.
3003 */
3004 if (!prv_pkt) {
3005 qc_set_dg(cbuf, dglen, first_pkt);
3006 first_pkt = NULL;
3007 dglen = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01003008 padding = 0;
3009 }
3010 else if (prv_pkt->type == QUIC_TLS_ENC_LEVEL_INITIAL &&
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +01003011 (!qc_is_listener(qc) ||
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01003012 prv_pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)) {
3013 padding = 1;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003014 }
3015 }
3016
3017 stop_build:
3018 /* Reset <wr> writer index if in front of <rd> index */
3019 if (end_buf - pos < (int)qc->path->mtu + dg_headlen) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003020 TRACE_DEVEL("buffer full", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaille302c2b12022-03-14 12:21:03 +01003021 if (qc_may_reuse_cbuf(cbuf))
Frédéric Lécaille99942d62022-01-07 14:32:31 +01003022 goto start;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003023 }
3024
3025 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003026 TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003027 return total;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003028
3029 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003030 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003031 return -1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003032}
3033
3034/* Send the QUIC packets which have been prepared for QUIC connections
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003035 * from <qr> ring buffer with <ctx> as I/O handler context.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003036 */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003037int qc_send_ppkts(struct qring *qr, struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003038{
3039 struct quic_conn *qc;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003040 struct cbuf *cbuf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003041
Amaury Denoyellec15dd922021-12-21 11:41:52 +01003042 qc = ctx->qc;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003043 cbuf = qr->cbuf;
Frédéric Lécaille8726d632022-05-03 10:32:21 +02003044 TRACE_ENTER(QUIC_EV_CONN_SPPKTS, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003045 while (cb_contig_data(cbuf)) {
3046 unsigned char *pos;
3047 struct buffer tmpbuf = { };
3048 struct quic_tx_packet *first_pkt, *pkt, *next_pkt;
3049 uint16_t dglen;
3050 size_t headlen = sizeof dglen + sizeof first_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003051 unsigned int time_sent;
3052
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003053 pos = cb_rd(cbuf);
3054 dglen = read_u16(pos);
3055 /* End of prepared datagrams.
3056 * Reset the reader index only if in front of the writer index.
3057 */
3058 if (!dglen) {
3059 int wr = HA_ATOMIC_LOAD(&cbuf->wr);
3060
3061 if (wr && wr < cbuf->rd) {
3062 cb_rd_reset(cbuf);
3063 continue;
3064 }
3065 break;
3066 }
3067
3068 pos += sizeof dglen;
3069 first_pkt = read_ptr(pos);
3070 pos += sizeof first_pkt;
3071 tmpbuf.area = (char *)pos;
3072 tmpbuf.size = tmpbuf.data = dglen;
3073
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003074 TRACE_PROTO("to send", QUIC_EV_CONN_SPPKTS, qc);
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01003075 if(qc_snd_buf(qc, &tmpbuf, tmpbuf.data, 0) <= 0)
Amaury Denoyelle74f22922022-01-18 16:48:17 +01003076 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003077
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003078 cb_del(cbuf, dglen + headlen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003079 qc->tx.bytes += tmpbuf.data;
3080 time_sent = now_ms;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003081
3082 for (pkt = first_pkt; pkt; pkt = next_pkt) {
3083 pkt->time_sent = time_sent;
3084 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING) {
3085 pkt->pktns->tx.time_of_last_eliciting = time_sent;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01003086 qc->path->ifae_pkts++;
Frédéric Lécaille530601c2022-03-10 15:11:57 +01003087 if (qc->flags & QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ)
3088 qc_idle_timer_rearm(qc, 0);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003089 }
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02003090 if (!(qc->flags & QUIC_FL_CONN_CLOSING) &&
3091 (pkt->flags & QUIC_FL_TX_PACKET_CC)) {
3092 qc->flags |= QUIC_FL_CONN_CLOSING;
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02003093 qc_notify_close(qc);
3094
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02003095 /* RFC 9000 10.2. Immediate Close:
3096 * The closing and draining connection states exist to ensure
3097 * that connections close cleanly and that delayed or reordered
3098 * packets are properly discarded. These states SHOULD persist
3099 * for at least three times the current PTO interval...
3100 *
3101 * Rearm the idle timeout only one time when entering closing
3102 * state.
3103 */
3104 qc_idle_timer_do_rearm(qc);
3105 if (qc->timer_task) {
3106 task_destroy(qc->timer_task);
3107 qc->timer_task = NULL;
3108 }
3109 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003110 qc->path->in_flight += pkt->in_flight_len;
3111 pkt->pktns->tx.in_flight += pkt->in_flight_len;
3112 if (pkt->in_flight_len)
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003113 qc_set_timer(qc);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003114 TRACE_PROTO("sent pkt", QUIC_EV_CONN_SPPKTS, qc, pkt);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003115 next_pkt = pkt->next;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01003116 quic_tx_packet_refinc(pkt);
Frédéric Lécaille0eb60c52021-07-19 14:48:36 +02003117 eb64_insert(&pkt->pktns->tx.pkts, &pkt->pn_node);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003118 }
3119 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003120
Frédéric Lécaille8726d632022-05-03 10:32:21 +02003121 TRACE_LEAVE(QUIC_EV_CONN_SPPKTS, qc);
3122
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003123 return 1;
3124}
3125
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003126/* Copy into <buf> buffer a stateless reset token depending on the
3127 * <salt> salt input. This is the cluster secret which will be derived
3128 * as HKDF input secret to generate this token.
3129 * Return 1 if succeeded, 0 if not.
3130 */
3131static int quic_stateless_reset_token_cpy(unsigned char *buf, size_t len,
3132 const unsigned char *salt, size_t saltlen)
3133{
3134 /* Input secret */
3135 const unsigned char *key = (const unsigned char *)global.cluster_secret;
3136 size_t keylen = strlen(global.cluster_secret);
3137 /* Info */
3138 const unsigned char label[] = "stateless token";
3139 size_t labellen = sizeof label - 1;
3140
3141 return quic_hkdf_extract_and_expand(EVP_sha256(), buf, len,
3142 key, keylen, salt, saltlen, label, labellen);
3143}
3144
3145/* Initialize the stateless reset token attached to <cid> connection ID.
3146 * Returns 1 if succeeded, 0 if not.
3147 */
3148static int quic_stateless_reset_token_init(struct quic_connection_id *quic_cid)
3149{
3150 if (global.cluster_secret) {
3151 /* Output secret */
3152 unsigned char *token = quic_cid->stateless_reset_token;
3153 size_t tokenlen = sizeof quic_cid->stateless_reset_token;
3154 /* Salt */
3155 const unsigned char *cid = quic_cid->cid.data;
3156 size_t cidlen = quic_cid->cid.len;
3157
3158 return quic_stateless_reset_token_cpy(token, tokenlen, cid, cidlen);
3159 }
3160 else {
3161 return RAND_bytes(quic_cid->stateless_reset_token,
3162 sizeof quic_cid->stateless_reset_token) == 1;
3163 }
3164}
3165
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003166/* Allocate a new CID with <seq_num> as sequence number and attach it to <root>
3167 * ebtree.
3168 *
3169 * The CID is randomly generated in part with the result altered to be
3170 * associated with the current thread ID. This means this function must only
3171 * be called by the quic_conn thread.
3172 *
3173 * Returns the new CID if succeeded, NULL if not.
3174 */
3175static struct quic_connection_id *new_quic_cid(struct eb_root *root,
3176 struct quic_conn *qc,
3177 int seq_num)
3178{
3179 struct quic_connection_id *cid;
3180
3181 cid = pool_alloc(pool_head_quic_connection_id);
3182 if (!cid)
3183 return NULL;
3184
3185 cid->cid.len = QUIC_HAP_CID_LEN;
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003186 if (RAND_bytes(cid->cid.data, cid->cid.len) != 1)
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003187 goto err;
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003188
3189 quic_pin_cid_to_tid(cid->cid.data, tid);
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003190 if (quic_stateless_reset_token_init(cid) != 1)
3191 goto err;
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003192
3193 cid->qc = qc;
3194
3195 cid->seq_num.key = seq_num;
3196 cid->retire_prior_to = 0;
3197 /* insert the allocated CID in the quic_conn tree */
3198 eb64_insert(root, &cid->seq_num);
3199
3200 return cid;
3201
3202 err:
3203 pool_free(pool_head_quic_connection_id, cid);
3204 return NULL;
3205}
3206
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003207/* Build all the frames which must be sent just after the handshake have succeeded.
3208 * This is essentially NEW_CONNECTION_ID frames. A QUIC server must also send
3209 * a HANDSHAKE_DONE frame.
3210 * Return 1 if succeeded, 0 if not.
3211 */
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02003212static int quic_build_post_handshake_frames(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003213{
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003214 int i, first, max;
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02003215 struct quic_enc_level *qel;
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003216 struct quic_frame *frm, *frmbak;
3217 struct list frm_list = LIST_HEAD_INIT(frm_list);
3218 struct eb64_node *node;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003219
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02003220 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003221 /* Only servers must send a HANDSHAKE_DONE frame. */
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +01003222 if (qc_is_listener(qc)) {
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003223 frm = pool_zalloc(pool_head_quic_frame);
Frédéric Lécaille153d4a82021-01-06 12:12:39 +01003224 if (!frm)
3225 return 0;
3226
Frédéric Lécailleb9171912022-04-21 17:32:10 +02003227 LIST_INIT(&frm->reflist);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003228 frm->type = QUIC_FT_HANDSHAKE_DONE;
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003229 LIST_APPEND(&frm_list, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003230 }
3231
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003232 first = 1;
3233 max = qc->tx.params.active_connection_id_limit;
3234 for (i = first; i < max; i++) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003235 struct quic_connection_id *cid;
3236
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003237 frm = pool_zalloc(pool_head_quic_frame);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003238 if (!frm)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003239 goto err;
3240
Frédéric Lécailleb9171912022-04-21 17:32:10 +02003241 LIST_INIT(&frm->reflist);
Amaury Denoyelle0442efd2022-01-28 16:02:13 +01003242 cid = new_quic_cid(&qc->cids, qc, i);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003243 if (!cid)
3244 goto err;
3245
Frédéric Lécaille74904a42022-01-27 15:35:56 +01003246 /* insert the allocated CID in the receiver datagram handler tree */
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01003247 ebmb_insert(&quic_dghdlrs[tid].cids, &cid->node, cid->cid.len);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003248
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003249 quic_connection_id_to_frm_cpy(frm, cid);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003250 LIST_APPEND(&frm_list, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003251 }
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003252
3253 LIST_SPLICE(&qel->pktns->tx.frms, &frm_list);
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003254 qc->flags |= QUIC_FL_CONN_POST_HANDSHAKE_FRAMES_BUILT;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003255
3256 return 1;
3257
3258 err:
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003259 /* free the frames */
3260 list_for_each_entry_safe(frm, frmbak, &frm_list, list)
3261 pool_free(pool_head_quic_frame, frm);
3262
3263 node = eb64_first(&qc->cids);
3264 while (node) {
3265 struct quic_connection_id *cid;
3266
Frédéric Lécaille411aa6d2022-03-21 12:01:22 +01003267
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003268 cid = eb64_entry(node, struct quic_connection_id, seq_num);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003269 if (cid->seq_num.key >= max)
3270 break;
3271
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003272 if (cid->seq_num.key < first)
3273 continue;
3274
Frédéric Lécaille411aa6d2022-03-21 12:01:22 +01003275 node = eb64_next(node);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003276 ebmb_delete(&cid->node);
3277 eb64_delete(&cid->seq_num);
3278 pool_free(pool_head_quic_connection_id, cid);
3279 }
3280
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003281 return 0;
3282}
3283
3284/* Deallocate <l> list of ACK ranges. */
Frédéric Lécaille64670882022-04-01 11:57:19 +02003285void quic_free_arngs(struct quic_arngs *arngs)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003286{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003287 struct eb64_node *n;
3288 struct quic_arng_node *ar;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003289
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003290 n = eb64_first(&arngs->root);
3291 while (n) {
3292 struct eb64_node *next;
3293
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003294 ar = eb64_entry(n, struct quic_arng_node, first);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003295 next = eb64_next(n);
3296 eb64_delete(n);
Frédéric Lécaille82851bd2022-04-04 13:43:58 +02003297 pool_free(pool_head_quic_arng, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003298 n = next;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003299 }
3300}
3301
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003302/* Return the gap value between <p> and <q> ACK ranges where <q> follows <p> in
3303 * descending order.
3304 */
3305static inline size_t sack_gap(struct quic_arng_node *p,
3306 struct quic_arng_node *q)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003307{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003308 return p->first.key - q->last - 2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003309}
3310
3311
3312/* Remove the last elements of <ack_ranges> list of ack range updating its
3313 * encoded size until it goes below <limit>.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003314 * Returns 1 if succeeded, 0 if not (no more element to remove).
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003315 */
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003316static int quic_rm_last_ack_ranges(struct quic_arngs *arngs, size_t limit)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003317{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003318 struct eb64_node *last, *prev;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003319
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003320 last = eb64_last(&arngs->root);
3321 while (last && arngs->enc_sz > limit) {
3322 struct quic_arng_node *last_node, *prev_node;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003323
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003324 prev = eb64_prev(last);
3325 if (!prev)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003326 return 0;
3327
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003328 last_node = eb64_entry(last, struct quic_arng_node, first);
3329 prev_node = eb64_entry(prev, struct quic_arng_node, first);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003330 arngs->enc_sz -= quic_int_getsize(last_node->last - last_node->first.key);
3331 arngs->enc_sz -= quic_int_getsize(sack_gap(prev_node, last_node));
3332 arngs->enc_sz -= quic_decint_size_diff(arngs->sz);
3333 --arngs->sz;
3334 eb64_delete(last);
3335 pool_free(pool_head_quic_arng, last);
3336 last = prev;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003337 }
3338
3339 return 1;
3340}
3341
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003342/* Set the encoded size of <arngs> QUIC ack ranges. */
3343static void quic_arngs_set_enc_sz(struct quic_arngs *arngs)
3344{
3345 struct eb64_node *node, *next;
3346 struct quic_arng_node *ar, *ar_next;
3347
3348 node = eb64_last(&arngs->root);
3349 if (!node)
3350 return;
3351
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003352 ar = eb64_entry(node, struct quic_arng_node, first);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003353 arngs->enc_sz = quic_int_getsize(ar->last) +
3354 quic_int_getsize(ar->last - ar->first.key) + quic_int_getsize(arngs->sz - 1);
3355
3356 while ((next = eb64_prev(node))) {
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003357 ar_next = eb64_entry(next, struct quic_arng_node, first);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003358 arngs->enc_sz += quic_int_getsize(sack_gap(ar, ar_next)) +
3359 quic_int_getsize(ar_next->last - ar_next->first.key);
3360 node = next;
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003361 ar = eb64_entry(node, struct quic_arng_node, first);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003362 }
3363}
3364
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003365/* Insert <ar> ack range into <argns> tree of ack ranges.
3366 * Returns the ack range node which has been inserted if succeeded, NULL if not.
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003367 */
3368static inline
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003369struct quic_arng_node *quic_insert_new_range(struct quic_arngs *arngs,
3370 struct quic_arng *ar)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003371{
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003372 struct quic_arng_node *new_ar;
3373
3374 new_ar = pool_alloc(pool_head_quic_arng);
3375 if (new_ar) {
3376 new_ar->first.key = ar->first;
3377 new_ar->last = ar->last;
3378 eb64_insert(&arngs->root, &new_ar->first);
3379 arngs->sz++;
3380 }
3381
3382 return new_ar;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003383}
3384
3385/* Update <arngs> tree of ACK ranges with <ar> as new ACK range value.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003386 * Note that this function computes the number of bytes required to encode
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003387 * this tree of ACK ranges in descending order.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003388 *
3389 * Descending order
3390 * ------------->
3391 * range1 range2
3392 * ..........|--------|..............|--------|
3393 * ^ ^ ^ ^
3394 * | | | |
3395 * last1 first1 last2 first2
3396 * ..........+--------+--------------+--------+......
3397 * diff1 gap12 diff2
3398 *
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003399 * To encode the previous list of ranges we must encode integers as follows in
3400 * descending order:
3401 * enc(last2),enc(diff2),enc(gap12),enc(diff1)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003402 * with diff1 = last1 - first1
3403 * diff2 = last2 - first2
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003404 * gap12 = first1 - last2 - 2 (>= 0)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003405 *
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003406 */
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003407int quic_update_ack_ranges_list(struct quic_arngs *arngs,
3408 struct quic_arng *ar)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003409{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003410 struct eb64_node *le;
3411 struct quic_arng_node *new_node;
3412 struct eb64_node *new;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003413
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003414 new = NULL;
3415 if (eb_is_empty(&arngs->root)) {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003416 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003417 if (!new_node)
3418 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003419
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003420 goto out;
3421 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003422
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003423 le = eb64_lookup_le(&arngs->root, ar->first);
3424 if (!le) {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003425 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003426 if (!new_node)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003427 return 0;
Frédéric Lécaille0e257832021-11-16 10:54:19 +01003428
3429 new = &new_node->first;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003430 }
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003431 else {
3432 struct quic_arng_node *le_ar =
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003433 eb64_entry(le, struct quic_arng_node, first);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003434
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003435 /* Already existing range */
Frédéric Lécailled3f4dd82021-06-02 15:36:12 +02003436 if (le_ar->last >= ar->last)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003437 return 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003438
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003439 if (le_ar->last + 1 >= ar->first) {
3440 le_ar->last = ar->last;
3441 new = le;
3442 new_node = le_ar;
3443 }
3444 else {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003445 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003446 if (!new_node)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003447 return 0;
Frédéric Lécaille8ba42762021-06-02 17:40:09 +02003448
3449 new = &new_node->first;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003450 }
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003451 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003452
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003453 /* Verify that the new inserted node does not overlap the nodes
3454 * which follow it.
3455 */
3456 if (new) {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003457 struct eb64_node *next;
3458 struct quic_arng_node *next_node;
3459
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003460 while ((next = eb64_next(new))) {
3461 next_node =
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003462 eb64_entry(next, struct quic_arng_node, first);
Frédéric Lécaillec825eba2021-06-02 17:38:13 +02003463 if (new_node->last + 1 < next_node->first.key)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003464 break;
3465
3466 if (next_node->last > new_node->last)
3467 new_node->last = next_node->last;
3468 eb64_delete(next);
Frédéric Lécaillebaea2842021-06-02 15:04:03 +02003469 pool_free(pool_head_quic_arng, next_node);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003470 /* Decrement the size of these ranges. */
3471 arngs->sz--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003472 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003473 }
3474
Frédéric Lécaille82b86522021-08-10 09:54:03 +02003475 out:
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003476 quic_arngs_set_enc_sz(arngs);
3477
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003478 return 1;
3479}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003480/* Remove the header protection of packets at <el> encryption level.
3481 * Always succeeds.
3482 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003483static 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 +01003484{
3485 struct quic_tls_ctx *tls_ctx;
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003486 struct quic_rx_packet *pqpkt;
3487 struct mt_list *pkttmp1, pkttmp2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003488 struct quic_enc_level *app_qel;
3489
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003490 TRACE_ENTER(QUIC_EV_CONN_ELRMHP, qc);
3491 app_qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003492 /* A server must not process incoming 1-RTT packets before the handshake is complete. */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003493 if (el == app_qel && qc_is_listener(qc) && qc->state < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003494 TRACE_PROTO("hp not removed (handshake not completed)",
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003495 QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003496 goto out;
3497 }
3498 tls_ctx = &el->tls_ctx;
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003499 mt_list_for_each_entry_safe(pqpkt, &el->rx.pqpkts, list, pkttmp1, pkttmp2) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003500 if (!qc_do_rm_hp(qc, pqpkt, tls_ctx, el->pktns->rx.largest_pn,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003501 pqpkt->data + pqpkt->pn_offset,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003502 pqpkt->data, pqpkt->data + pqpkt->len)) {
3503 TRACE_PROTO("hp removing error", QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003504 /* XXX TO DO XXX */
3505 }
3506 else {
3507 /* The AAD includes the packet number field */
3508 pqpkt->aad_len = pqpkt->pn_offset + pqpkt->pnl;
3509 /* Store the packet into the tree of packets to decrypt. */
3510 pqpkt->pn_node.key = pqpkt->pn;
Frédéric Lécaille98cdeb22021-07-26 16:38:14 +02003511 HA_RWLOCK_WRLOCK(QUIC_LOCK, &el->rx.pkts_rwlock);
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02003512 eb64_insert(&el->rx.pkts, &pqpkt->pn_node);
3513 quic_rx_packet_refinc(pqpkt);
Frédéric Lécaille98cdeb22021-07-26 16:38:14 +02003514 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &el->rx.pkts_rwlock);
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003515 TRACE_PROTO("hp removed", QUIC_EV_CONN_ELRMHP, qc, pqpkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003516 }
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003517 MT_LIST_DELETE_SAFE(pkttmp1);
3518 quic_rx_packet_refdec(pqpkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003519 }
3520
3521 out:
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003522 TRACE_LEAVE(QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003523}
3524
3525/* Process all the CRYPTO frame at <el> encryption level.
3526 * Return 1 if succeeded, 0 if not.
3527 */
3528static inline int qc_treat_rx_crypto_frms(struct quic_enc_level *el,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02003529 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003530{
3531 struct eb64_node *node;
3532
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003533 node = eb64_first(&el->rx.crypto.frms);
3534 while (node) {
3535 struct quic_rx_crypto_frm *cf;
3536
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003537 cf = eb64_entry(node, struct quic_rx_crypto_frm, offset_node);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003538 if (cf->offset_node.key != el->rx.crypto.offset)
3539 break;
3540
3541 if (!qc_provide_cdata(el, ctx, cf->data, cf->len, cf->pkt, cf))
3542 goto err;
3543
3544 node = eb64_next(node);
3545 quic_rx_packet_refdec(cf->pkt);
3546 eb64_delete(&cf->offset_node);
3547 pool_free(pool_head_quic_rx_crypto_frm, cf);
3548 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003549 return 1;
3550
3551 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003552 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RXCDATA, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003553 return 0;
3554}
3555
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003556/* Process all the packets at <el> and <next_el> encryption level.
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +05003557 * 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 +02003558 * as pointer value.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003559 * Return 1 if succeeded, 0 if not.
3560 */
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003561int qc_treat_rx_pkts(struct quic_enc_level *cur_el, struct quic_enc_level *next_el,
3562 struct ssl_sock_ctx *ctx, int force_ack)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003563{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003564 struct eb64_node *node;
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003565 int64_t largest_pn = -1;
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02003566 unsigned int largest_pn_time_received = 0;
Amaury Denoyelle29632b82022-01-18 16:50:58 +01003567 struct quic_conn *qc = ctx->qc;
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003568 struct quic_enc_level *qel = cur_el;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003569
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003570 TRACE_ENTER(QUIC_EV_CONN_ELRXPKTS, ctx->qc);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003571 qel = cur_el;
3572 next_tel:
3573 if (!qel)
3574 goto out;
3575
3576 HA_RWLOCK_WRLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock);
3577 node = eb64_first(&qel->rx.pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003578 while (node) {
3579 struct quic_rx_packet *pkt;
3580
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003581 pkt = eb64_entry(node, struct quic_rx_packet, pn_node);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003582 TRACE_PROTO("new packet", QUIC_EV_CONN_ELRXPKTS,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003583 ctx->qc, pkt, NULL, ctx->ssl);
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01003584 if (!qc_pkt_decrypt(pkt, qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003585 /* Drop the packet */
3586 TRACE_PROTO("packet decryption failed -> dropped",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003587 QUIC_EV_CONN_ELRXPKTS, ctx->qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003588 }
3589 else {
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003590 if (!qc_parse_pkt_frms(pkt, ctx, qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003591 /* Drop the packet */
3592 TRACE_PROTO("packet parsing failed -> dropped",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003593 QUIC_EV_CONN_ELRXPKTS, ctx->qc, pkt);
Frédéric Lécailleeb791452022-05-24 16:01:39 +02003594 HA_ATOMIC_INC(&qc->prx_counters->dropped_parsing);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003595 }
3596 else {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003597 struct quic_arng ar = { .first = pkt->pn, .last = pkt->pn };
3598
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003599 if (pkt->flags & QUIC_FL_RX_PACKET_ACK_ELICITING || force_ack) {
3600 qel->pktns->flags |= QUIC_FL_PKTNS_ACK_REQUIRED;
3601 qel->pktns->rx.nb_aepkts_since_last_ack++;
Frédéric Lécaille530601c2022-03-10 15:11:57 +01003602 qc_idle_timer_rearm(qc, 1);
3603 }
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02003604 if (pkt->pn > largest_pn) {
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003605 largest_pn = pkt->pn;
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02003606 largest_pn_time_received = pkt->time_received;
3607 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003608 /* Update the list of ranges to acknowledge. */
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003609 if (!quic_update_ack_ranges_list(&qel->pktns->rx.arngs, &ar))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003610 TRACE_DEVEL("Could not update ack range list",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003611 QUIC_EV_CONN_ELRXPKTS, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003612 }
3613 }
3614 node = eb64_next(node);
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02003615 eb64_delete(&pkt->pn_node);
3616 quic_rx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003617 }
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003618 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003619
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02003620 if (largest_pn != -1 && largest_pn > qel->pktns->rx.largest_pn) {
3621 /* Update the largest packet number. */
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02003622 qel->pktns->rx.largest_pn = largest_pn;
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02003623 /* Update the largest acknowledged packet timestamps */
3624 qel->pktns->rx.largest_time_received = largest_pn_time_received;
3625 qel->pktns->flags |= QUIC_FL_PKTNS_NEW_LARGEST_PN;
3626 }
3627
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003628 if (!qc_treat_rx_crypto_frms(qel, ctx))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003629 goto err;
3630
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003631 if (qel == cur_el) {
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003632 BUG_ON(qel == next_el);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003633 qel = next_el;
Frédéric Lécaille91a211f2022-05-24 10:54:42 +02003634 largest_pn = -1;
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003635 goto next_tel;
3636 }
3637
3638 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003639 TRACE_LEAVE(QUIC_EV_CONN_ELRXPKTS, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003640 return 1;
3641
3642 err:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003643 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ELRXPKTS, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003644 return 0;
3645}
3646
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003647/* Check if it's possible to remove header protection for packets related to
3648 * encryption level <qel>. If <qel> is NULL, assume it's false.
3649 *
3650 * Return true if the operation is possible else false.
3651 */
3652static int qc_qel_may_rm_hp(struct quic_conn *qc, struct quic_enc_level *qel)
3653{
3654 enum quic_tls_enc_level tel;
3655
3656 if (!qel)
3657 return 0;
3658
3659 tel = ssl_to_quic_enc_level(qel->level);
3660
3661 /* check if tls secrets are available */
Frédéric Lécaillebd242082022-02-25 17:17:59 +01003662 if (qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD) {
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003663 TRACE_DEVEL("Discarded keys", QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaille51c90652022-02-22 11:39:14 +01003664 return 0;
3665 }
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003666
Frédéric Lécaillebd242082022-02-25 17:17:59 +01003667 if (!(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET))
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003668 return 0;
3669
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01003670 /* check if the connection layer is ready before using app level */
Frédéric Lécaille298931d2022-01-28 21:41:06 +01003671 if ((tel == QUIC_TLS_ENC_LEVEL_APP || tel == QUIC_TLS_ENC_LEVEL_EARLY_DATA) &&
Frédéric Lécaille12aa26b2022-03-21 11:37:13 +01003672 qc->mux_state == QC_MUX_NULL)
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003673 return 0;
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003674
3675 return 1;
3676}
3677
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003678/* Sends application level packets from <qc> QUIC connection */
Frédéric Lécaille3e3a6212022-04-25 10:17:00 +02003679int qc_send_app_pkts(struct quic_conn *qc, int old_data, struct list *frms)
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003680{
3681 int ret;
3682 struct qring *qr;
3683
3684 qr = MT_LIST_POP(qc->tx.qring_list, typeof(qr), mt_list);
3685 if (!qr)
3686 /* Never happens */
3687 return 1;
3688
Frédéric Lécaille3e3a6212022-04-25 10:17:00 +02003689 if (old_data)
3690 qc->flags |= QUIC_FL_CONN_RETRANS_OLD_DATA;
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01003691 ret = qc_prep_app_pkts(qc, qr, frms);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003692 if (ret == -1)
3693 goto err;
3694 else if (ret == 0)
3695 goto out;
3696
3697 if (!qc_send_ppkts(qr, qc->xprt_ctx))
3698 goto err;
3699
3700 out:
Frédéric Lécaille3e3a6212022-04-25 10:17:00 +02003701 qc->flags &= ~QUIC_FL_CONN_RETRANS_OLD_DATA;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003702 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
3703 return 1;
3704
3705 err:
Frédéric Lécaille3e3a6212022-04-25 10:17:00 +02003706 qc->flags &= ~QUIC_FL_CONN_RETRANS_OLD_DATA;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003707 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
3708 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_IO_CB, qc);
3709 return 0;
3710}
3711
Frédéric Lécaillea9568412022-04-25 08:58:04 +02003712/* Sends handshake packets from up to two encryption levels <tel> and <next_te>
3713 * with <tel_frms> and <next_tel_frms> as frame list respectively for <qc>
3714 * QUIC connection
3715 * Returns 1 if succeeded, 0 if not.
3716 */
3717int qc_send_hdshk_pkts(struct quic_conn *qc, int old_data,
3718 enum quic_tls_enc_level tel, struct list *tel_frms,
3719 enum quic_tls_enc_level next_tel, struct list *next_tel_frms)
3720{
3721 int ret;
3722 struct qring *qr;
3723
3724 qr = MT_LIST_POP(qc->tx.qring_list, typeof(qr), mt_list);
3725 if (!qr)
3726 /* Never happens */
3727 return 1;
3728
3729 if (old_data)
3730 qc->flags |= QUIC_FL_CONN_RETRANS_OLD_DATA;
3731 ret = qc_prep_pkts(qc, qr, tel, tel_frms, next_tel, next_tel_frms);
3732 if (ret == -1)
3733 goto err;
3734 else if (ret == 0)
3735 goto out;
3736
3737 if (!qc_send_ppkts(qr, qc->xprt_ctx))
3738 goto err;
3739
3740 out:
3741 qc->flags &= ~QUIC_FL_CONN_RETRANS_OLD_DATA;
3742 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
3743 return 1;
3744
3745 err:
3746 qc->flags &= ~QUIC_FL_CONN_RETRANS_OLD_DATA;
3747 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
3748 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_IO_CB, qc);
3749 return 0;
3750}
3751
3752/* Retransmit up to two datagrams depending on packet number space */
3753static void qc_dgrams_retransmit(struct quic_conn *qc)
3754{
3755 struct quic_enc_level *iqel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
3756 struct quic_enc_level *hqel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
3757 struct quic_enc_level *aqel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
3758
3759 if (iqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) {
3760 struct list ifrms = LIST_HEAD_INIT(ifrms);
3761 struct list hfrms = LIST_HEAD_INIT(hfrms);
3762
3763 qc_prep_hdshk_fast_retrans(qc, &ifrms, &hfrms);
3764 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &ifrms);
3765 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &hfrms);
3766 if (!LIST_ISEMPTY(&ifrms)) {
3767 iqel->pktns->tx.pto_probe = 1;
3768 if (!LIST_ISEMPTY(&hfrms)) {
3769 hqel->pktns->tx.pto_probe = 1;
3770 qc_send_hdshk_pkts(qc, 1, QUIC_TLS_ENC_LEVEL_INITIAL, &ifrms,
3771 QUIC_TLS_ENC_LEVEL_HANDSHAKE, &hfrms);
3772 }
3773 }
3774 if (hqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) {
3775 qc_prep_fast_retrans(qc, hqel, &hfrms, NULL);
3776 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &hfrms);
3777 if (!LIST_ISEMPTY(&hfrms)) {
3778 hqel->pktns->tx.pto_probe = 1;
3779 qc_send_hdshk_pkts(qc, 1, QUIC_TLS_ENC_LEVEL_HANDSHAKE, &hfrms,
3780 QUIC_TLS_ENC_LEVEL_NONE, NULL);
3781 }
3782 hqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED;
3783 }
3784 iqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED;
3785 }
3786 else {
3787 int i;
3788 struct list frms1 = LIST_HEAD_INIT(frms1);
3789 struct list frms2 = LIST_HEAD_INIT(frms2);
3790
3791 if (hqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) {
3792 hqel->pktns->tx.pto_probe = 0;
3793 for (i = 0; i < QUIC_MAX_NB_PTO_DGRAMS; i++) {
3794 qc_prep_fast_retrans(qc, hqel, &frms1, NULL);
3795 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &frms1);
3796 if (!LIST_ISEMPTY(&frms1)) {
3797 hqel->pktns->tx.pto_probe = 1;
3798 qc_send_hdshk_pkts(qc, 1, QUIC_TLS_ENC_LEVEL_HANDSHAKE, &frms1,
3799 QUIC_TLS_ENC_LEVEL_NONE, NULL);
3800 }
3801 }
3802 hqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED;
3803 }
3804 else if (aqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) {
3805 aqel->pktns->tx.pto_probe = 0;
3806 qc_prep_fast_retrans(qc, aqel, &frms1, &frms2);
3807 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &frms1);
3808 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &frms2);
3809 if (!LIST_ISEMPTY(&frms1)) {
3810 aqel->pktns->tx.pto_probe = 1;
3811 qc_send_app_pkts(qc, 1, &frms1);
3812 }
3813 if (!LIST_ISEMPTY(&frms2)) {
3814 aqel->pktns->tx.pto_probe = 1;
3815 qc_send_app_pkts(qc, 1, &frms2);
3816 }
3817 aqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED;
3818 }
3819 }
3820}
3821
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003822/* QUIC connection packet handler task (post handshake) */
3823static struct task *quic_conn_app_io_cb(struct task *t, void *context, unsigned int state)
3824{
3825 struct ssl_sock_ctx *ctx;
3826 struct quic_conn *qc;
3827 struct quic_enc_level *qel;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003828
3829
3830 ctx = context;
3831 qc = ctx->qc;
3832 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003833
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003834 TRACE_PROTO("state", QUIC_EV_CONN_IO_CB, qc, &qc->state);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003835
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02003836 /* Retranmissions */
3837 if (qc->flags & QUIC_FL_CONN_RETRANS_NEEDED) {
3838 TRACE_PROTO("retransmission needed", QUIC_EV_CONN_IO_CB, qc);
3839 qc->flags &= ~QUIC_FL_CONN_RETRANS_NEEDED;
3840 qc_dgrams_retransmit(qc);
3841 }
3842
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003843 if (!MT_LIST_ISEMPTY(&qel->rx.pqpkts) && qc_qel_may_rm_hp(qc, qel))
3844 qc_rm_hp_pkts(qc, qel);
3845
3846 if (!qc_treat_rx_pkts(qel, NULL, ctx, 0))
3847 goto err;
3848
Frédéric Lécaille47756802022-03-25 09:12:16 +01003849 if ((qc->flags & QUIC_FL_CONN_DRAINING) &&
3850 !(qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE))
3851 goto out;
3852
Frédéric Lécaille3e3a6212022-04-25 10:17:00 +02003853 if (!qc_send_app_pkts(qc, 0, &qel->pktns->tx.frms))
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003854 goto err;
3855
Frédéric Lécaille47756802022-03-25 09:12:16 +01003856out:
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003857 return t;
3858
3859 err:
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003860 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_IO_CB, qc, &qc->state);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003861 return t;
3862}
3863
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003864/* QUIC connection packet handler task. */
3865struct task *quic_conn_io_cb(struct task *t, void *context, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003866{
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003867 int ret, ssl_err;
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003868 struct ssl_sock_ctx *ctx;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02003869 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003870 enum quic_tls_enc_level tel, next_tel;
3871 struct quic_enc_level *qel, *next_qel;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003872 struct qring *qr; // Tx ring
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01003873 int st, force_ack, zero_rtt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003874
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003875 ctx = context;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01003876 qc = ctx->qc;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003877 TRACE_ENTER(QUIC_EV_CONN_IO_CB, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003878 qr = NULL;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003879 st = qc->state;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003880 TRACE_PROTO("state", QUIC_EV_CONN_IO_CB, qc, &st);
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02003881
3882 /* Retranmissions */
3883 if (qc->flags & QUIC_FL_CONN_RETRANS_NEEDED) {
3884 TRACE_PROTO("retransmission needed", QUIC_EV_CONN_PHPKTS, qc);
3885 qc->flags &= ~QUIC_FL_CONN_RETRANS_NEEDED;
3886 qc_dgrams_retransmit(qc);
3887 }
3888
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003889 if (qc->flags & QUIC_FL_CONN_IO_CB_WAKEUP) {
3890 qc->flags &= ~QUIC_FL_CONN_IO_CB_WAKEUP;
Frédéric Lécaille6b663152022-01-04 17:03:11 +01003891 /* The I/O handler has been woken up by the dgram listener
3892 * after the anti-amplification was reached.
3893 */
3894 qc_set_timer(qc);
3895 if (tick_isset(qc->timer) && tick_is_lt(qc->timer, now_ms))
3896 task_wakeup(qc->timer_task, TASK_WOKEN_MSG);
3897 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003898 ssl_err = SSL_ERROR_NONE;
Frédéric Lécaille4137b2d2021-12-17 18:24:16 +01003899 zero_rtt = st < QUIC_HS_ST_COMPLETE &&
3900 (!MT_LIST_ISEMPTY(&qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA].rx.pqpkts) ||
3901 qc_el_rx_pkts(&qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA]));
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003902 start:
Frédéric Lécaille917a7db2022-01-03 17:00:35 +01003903 if (st >= QUIC_HS_ST_COMPLETE &&
3904 qc_el_rx_pkts(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE])) {
3905 TRACE_PROTO("remaining Handshake packets", QUIC_EV_CONN_PHPKTS, qc);
3906 /* There may be remaining Handshake packets to treat and acknowledge. */
3907 tel = QUIC_TLS_ENC_LEVEL_HANDSHAKE;
3908 next_tel = QUIC_TLS_ENC_LEVEL_APP;
3909 }
3910 else if (!quic_get_tls_enc_levels(&tel, &next_tel, st, zero_rtt))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003911 goto err;
3912
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02003913 qel = &qc->els[tel];
Frédéric Lécaillef7980962021-08-19 17:35:21 +02003914 next_qel = next_tel == QUIC_TLS_ENC_LEVEL_NONE ? NULL : &qc->els[next_tel];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003915
3916 next_level:
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003917 /* Treat packets waiting for header packet protection decryption */
3918 if (!MT_LIST_ISEMPTY(&qel->rx.pqpkts) && qc_qel_may_rm_hp(qc, qel))
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003919 qc_rm_hp_pkts(qc, qel);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003920
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003921 force_ack = qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL] ||
3922 qel == &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
3923 if (!qc_treat_rx_pkts(qel, next_qel, ctx, force_ack))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003924 goto err;
3925
Frédéric Lécaille47756802022-03-25 09:12:16 +01003926 if ((qc->flags & QUIC_FL_CONN_DRAINING) &&
3927 !(qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE))
3928 goto out;
3929
Frédéric Lécaille1231d3c2022-04-28 15:43:46 +02003930 if (next_qel && next_qel == &qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA] &&
3931 !MT_LIST_ISEMPTY(&next_qel->rx.pqpkts)) {
3932 if ((next_qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET)) {
3933 qel = next_qel;
3934 next_qel = NULL;
3935 goto next_level;
3936 }
3937 else {
3938 struct quic_rx_packet *pkt;
3939 struct mt_list *elt1, elt2;
3940 struct quic_enc_level *aqel = &qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA];
3941
3942 /* Drop these 0-RTT packets */
3943 TRACE_PROTO("drop all 0-RTT packets", QUIC_EV_CONN_PHPKTS, qc);
3944 mt_list_for_each_entry_safe(pkt, &aqel->rx.pqpkts, list, elt1, elt2) {
3945 MT_LIST_DELETE_SAFE(elt1);
3946 quic_rx_packet_refdec(pkt);
3947 }
3948 }
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01003949 }
3950
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003951 st = qc->state;
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01003952 if (st >= QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003953 if (!(qc->flags & QUIC_FL_CONN_POST_HANDSHAKE_FRAMES_BUILT) &&
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01003954 !quic_build_post_handshake_frames(qc))
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003955 goto err;
Frédéric Lécaillefee7ba62021-12-06 12:09:08 +01003956
Frédéric Lécaillebd242082022-02-25 17:17:59 +01003957 if (!(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].tls_ctx.flags &
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01003958 QUIC_FL_TLS_SECRETS_DCD)) {
3959 /* Discard the Handshake keys. */
3960 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
3961 TRACE_PROTO("discarding Handshake pktns", QUIC_EV_CONN_PHPKTS, qc);
3962 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns, qc);
3963 qc_set_timer(qc);
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01003964 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01003965 qc_release_pktns_frms(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns);
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01003966 }
3967
3968 if (qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) {
3969 /* There may be remaining handshake to build (acks) */
3970 st = QUIC_HS_ST_SERVER_HANDSHAKE;
3971 }
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02003972 }
3973
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003974 if (!qr)
3975 qr = MT_LIST_POP(qc->tx.qring_list, typeof(qr), mt_list);
Frédéric Lécaillebec186d2022-01-12 15:32:55 +01003976 /* A listener does not send any O-RTT packet. O-RTT packet number space must not
3977 * be considered.
3978 */
3979 if (!quic_get_tls_enc_levels(&tel, &next_tel, st, 0))
Frédéric Lécailleee2b8b32022-01-03 11:14:30 +01003980 goto err;
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003981 ret = qc_prep_pkts(qc, qr, tel, &qc->els[tel].pktns->tx.frms,
3982 next_tel, &qc->els[next_tel].pktns->tx.frms);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003983 if (ret == -1)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003984 goto err;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003985 else if (ret == 0)
3986 goto skip_send;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003987
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003988 if (!qc_send_ppkts(qr, ctx))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003989 goto err;
3990
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003991 skip_send:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003992 /* Check if there is something to do for the next level.
3993 */
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003994 if (next_qel && next_qel != qel &&
Frédéric Lécaillebd242082022-02-25 17:17:59 +01003995 (next_qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET) &&
Frédéric Lécaille7d807c92021-12-06 08:56:38 +01003996 (!MT_LIST_ISEMPTY(&next_qel->rx.pqpkts) || qc_el_rx_pkts(next_qel))) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003997 qel = next_qel;
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003998 next_qel = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003999 goto next_level;
4000 }
4001
Frédéric Lécaille47756802022-03-25 09:12:16 +01004002 out:
4003 if (qr)
4004 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004005 TRACE_LEAVE(QUIC_EV_CONN_IO_CB, qc, &st);
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004006 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004007
4008 err:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004009 if (qr)
4010 MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004011 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_IO_CB, qc, &st, &ssl_err);
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004012 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004013}
4014
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05004015/* Uninitialize <qel> QUIC encryption level. Never fails. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004016static void quic_conn_enc_level_uninit(struct quic_enc_level *qel)
4017{
4018 int i;
4019
4020 for (i = 0; i < qel->tx.crypto.nb_buf; i++) {
4021 if (qel->tx.crypto.bufs[i]) {
4022 pool_free(pool_head_quic_crypto_buf, qel->tx.crypto.bufs[i]);
4023 qel->tx.crypto.bufs[i] = NULL;
4024 }
4025 }
Willy Tarreau61cfdf42021-02-20 10:46:51 +01004026 ha_free(&qel->tx.crypto.bufs);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004027}
4028
4029/* Initialize QUIC TLS encryption level with <level<> as level for <qc> QUIC
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05004030 * connection allocating everything needed.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004031 * Returns 1 if succeeded, 0 if not.
4032 */
4033static int quic_conn_enc_level_init(struct quic_conn *qc,
4034 enum quic_tls_enc_level level)
4035{
4036 struct quic_enc_level *qel;
4037
4038 qel = &qc->els[level];
4039 qel->level = quic_to_ssl_enc_level(level);
4040 qel->tls_ctx.rx.aead = qel->tls_ctx.tx.aead = NULL;
4041 qel->tls_ctx.rx.md = qel->tls_ctx.tx.md = NULL;
4042 qel->tls_ctx.rx.hp = qel->tls_ctx.tx.hp = NULL;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +01004043 qel->tls_ctx.flags = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004044
4045 qel->rx.pkts = EB_ROOT;
Frédéric Lécaille98cdeb22021-07-26 16:38:14 +02004046 HA_RWLOCK_INIT(&qel->rx.pkts_rwlock);
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02004047 MT_LIST_INIT(&qel->rx.pqpkts);
Frédéric Lécaille9054d1b2021-07-26 16:23:53 +02004048 qel->rx.crypto.offset = 0;
4049 qel->rx.crypto.frms = EB_ROOT_UNIQUE;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004050
4051 /* Allocate only one buffer. */
4052 qel->tx.crypto.bufs = malloc(sizeof *qel->tx.crypto.bufs);
4053 if (!qel->tx.crypto.bufs)
4054 goto err;
4055
4056 qel->tx.crypto.bufs[0] = pool_alloc(pool_head_quic_crypto_buf);
4057 if (!qel->tx.crypto.bufs[0])
4058 goto err;
4059
4060 qel->tx.crypto.bufs[0]->sz = 0;
4061 qel->tx.crypto.nb_buf = 1;
4062
4063 qel->tx.crypto.sz = 0;
4064 qel->tx.crypto.offset = 0;
4065
4066 return 1;
4067
4068 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01004069 ha_free(&qel->tx.crypto.bufs);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004070 return 0;
4071}
4072
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004073/* Release the quic_conn <qc>. The connection is removed from the CIDs tree.
4074 * The connection tasklet is killed.
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004075 *
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004076 * This function must only be called by the thread responsible of the quic_conn
4077 * tasklet.
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004078 */
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004079static void quic_conn_release(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004080{
4081 int i;
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004082 struct ssl_sock_ctx *conn_ctx;
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004083 struct eb64_node *node;
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02004084 struct quic_tls_ctx *app_tls_ctx;
Amaury Denoyelle2c31e122022-06-20 10:52:55 +02004085 struct quic_rx_packet *pkt, *pktback;
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004086
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02004087 /* We must not free the quic-conn if the MUX is still allocated. */
4088 BUG_ON(qc->mux_state == QC_MUX_READY);
4089
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004090 /* free remaining stream descriptors */
4091 node = eb64_first(&qc->streams_by_id);
4092 while (node) {
4093 struct qc_stream_desc *stream;
4094
4095 stream = eb64_entry(node, struct qc_stream_desc, by_id);
4096 node = eb64_next(node);
4097
Amaury Denoyellec9acc312022-04-01 16:41:21 +02004098 /* all streams attached to the quic-conn are released, so
4099 * qc_stream_desc_free will liberate the stream instance.
4100 */
4101 BUG_ON(!stream->release);
4102 qc_stream_desc_free(stream);
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004103 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004104
Amaury Denoyelle2c31e122022-06-20 10:52:55 +02004105 /* Purge Rx packet list. */
4106 list_for_each_entry_safe(pkt, pktback, &qc->rx.pkt_list, qc_rx_pkt_list) {
4107 LIST_DELETE(&pkt->qc_rx_pkt_list);
4108 pool_free(pool_head_quic_rx_packet, pkt);
4109 }
4110
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004111 if (qc->idle_timer_task) {
4112 task_destroy(qc->idle_timer_task);
4113 qc->idle_timer_task = NULL;
4114 }
4115
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004116 if (qc->timer_task) {
4117 task_destroy(qc->timer_task);
4118 qc->timer_task = NULL;
4119 }
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004120
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004121 /* remove the connection from receiver cids trees */
4122 ebmb_delete(&qc->odcid_node);
4123 ebmb_delete(&qc->scid_node);
4124 free_quic_conn_cids(qc);
Amaury Denoyelle2af19852021-09-30 11:03:28 +02004125
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004126 conn_ctx = qc->xprt_ctx;
Amaury Denoyelle2d9794b2022-01-20 17:43:20 +01004127 if (conn_ctx) {
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004128 tasklet_free(conn_ctx->wait_event.tasklet);
Amaury Denoyelle2d9794b2022-01-20 17:43:20 +01004129 SSL_free(conn_ctx->ssl);
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004130 pool_free(pool_head_quic_conn_ctx, conn_ctx);
Amaury Denoyelle2d9794b2022-01-20 17:43:20 +01004131 }
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004132
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02004133 quic_tls_ku_free(qc);
4134 for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++) {
4135 quic_tls_ctx_secs_free(&qc->els[i].tls_ctx);
Amaury Denoyelle67e6cd52021-12-13 17:07:03 +01004136 quic_conn_enc_level_uninit(&qc->els[i]);
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02004137 }
Frédéric Lécaille301425b2022-06-14 17:40:39 +02004138 quic_tls_ctx_secs_free(&qc->negotiated_ictx);
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02004139
4140 app_tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
4141 pool_free(pool_head_quic_tls_secret, app_tls_ctx->rx.secret);
4142 pool_free(pool_head_quic_tls_secret, app_tls_ctx->tx.secret);
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01004143
Frédéric Lécailleeb2a2da2022-04-01 12:15:24 +02004144 for (i = 0; i < QUIC_TLS_PKTNS_MAX; i++) {
4145 quic_pktns_tx_pkts_release(&qc->pktns[i]);
Frédéric Lécaille64670882022-04-01 11:57:19 +02004146 quic_free_arngs(&qc->pktns[i].rx.arngs);
Frédéric Lécailleeb2a2da2022-04-01 12:15:24 +02004147 }
Frédéric Lécaille64670882022-04-01 11:57:19 +02004148
Amaury Denoyelle67e6cd52021-12-13 17:07:03 +01004149 pool_free(pool_head_quic_conn_rxbuf, qc->rx.buf.area);
4150 pool_free(pool_head_quic_conn, qc);
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01004151 TRACE_PROTO("QUIC conn. freed", QUIC_EV_CONN_FREED, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004152}
4153
Amaury Denoyellee0be5732022-04-05 17:34:18 +02004154static void quic_close(struct connection *conn, void *xprt_ctx)
Amaury Denoyelle414cac52021-09-22 11:14:37 +02004155{
4156 struct ssl_sock_ctx *conn_ctx = xprt_ctx;
Amaury Denoyelle29632b82022-01-18 16:50:58 +01004157 struct quic_conn *qc = conn_ctx->qc;
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01004158
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01004159 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01004160
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01004161 /* Next application data can be dropped. */
4162 qc->mux_state = QC_MUX_RELEASED;
4163
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02004164 /* If the quic-conn timer has already expired free the quic-conn. */
4165 if (qc->flags & QUIC_FL_CONN_EXP_TIMER) {
4166 quic_conn_release(qc);
4167 TRACE_LEAVE(QUIC_EV_CONN_CLOSE);
4168 return;
4169 }
4170
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02004171 qc_check_close_on_released_mux(qc);
4172
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01004173 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle414cac52021-09-22 11:14:37 +02004174}
4175
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004176/* Callback called upon loss detection and PTO timer expirations. */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004177static struct task *process_timer(struct task *task, void *ctx, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004178{
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02004179 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004180 struct quic_conn *qc;
4181 struct quic_pktns *pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004182
4183 conn_ctx = task->context;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01004184 qc = conn_ctx->qc;
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004185 TRACE_ENTER(QUIC_EV_CONN_PTIMER, qc,
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01004186 NULL, NULL, &qc->path->ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004187 task->expire = TICK_ETERNITY;
4188 pktns = quic_loss_pktns(qc);
4189 if (tick_isset(pktns->tx.loss_time)) {
4190 struct list lost_pkts = LIST_HEAD_INIT(lost_pkts);
4191
4192 qc_packet_loss_lookup(pktns, qc, &lost_pkts);
4193 if (!LIST_ISEMPTY(&lost_pkts))
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004194 qc_release_lost_pkts(qc, pktns, &lost_pkts, now_ms);
4195 qc_set_timer(qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004196 goto out;
4197 }
4198
4199 if (qc->path->in_flight) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004200 pktns = quic_pto_pktns(qc, qc->state >= QUIC_HS_ST_COMPLETE, NULL);
Frédéric Lécailledafbde62022-04-26 13:54:28 +02004201 if (qc->mux_state == QC_MUX_READY && qc->qcc->subs &&
4202 qc->qcc->subs->events & SUB_RETRY_SEND) {
4203 struct qcc *qcc = qc->qcc;
4204
4205 pktns->tx.pto_probe = QUIC_MAX_NB_PTO_DGRAMS;
4206 tasklet_wakeup(qcc->subs->tasklet);
4207 qcc->subs->events &= ~SUB_RETRY_SEND;
4208 if (!qcc->subs->events)
4209 qcc->subs = NULL;
4210 }
4211 else {
4212 qc->flags |= QUIC_FL_CONN_RETRANS_NEEDED;
4213 pktns->flags |= QUIC_FL_PKTNS_PROBE_NEEDED;
4214 if (pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL]) {
4215 if (qc->pktns[QUIC_TLS_PKTNS_HANDSHAKE].tx.in_flight)
4216 qc->pktns[QUIC_TLS_PKTNS_HANDSHAKE].flags |= QUIC_FL_PKTNS_PROBE_NEEDED;
4217 }
Frédéric Lécaille0fa553d2022-01-17 14:26:12 +01004218 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004219 }
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004220 else if (!qc_is_listener(qc) && qc->state <= QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004221 struct quic_enc_level *iel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
4222 struct quic_enc_level *hel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
4223
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004224 if (hel->tls_ctx.flags == QUIC_FL_TLS_SECRETS_SET)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004225 hel->pktns->tx.pto_probe = 1;
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004226 if (iel->tls_ctx.flags == QUIC_FL_TLS_SECRETS_SET)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004227 iel->pktns->tx.pto_probe = 1;
4228 }
Frédéric Lécaillea56054e2021-12-31 16:35:28 +01004229
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004230 tasklet_wakeup(conn_ctx->wait_event.tasklet);
4231 qc->path->loss.pto_count++;
4232
4233 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004234 TRACE_LEAVE(QUIC_EV_CONN_PTIMER, qc, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004235
4236 return task;
4237}
4238
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004239/* Parse the Retry token from buffer <token> with <end> a pointer to
4240 * one byte past the end of this buffer. This will extract the ODCID
4241 * which will be stored into <odcid>
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004242 *
4243 * Returns 0 on success else non-zero.
4244 */
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004245static int parse_retry_token(const unsigned char *token, const unsigned char *end,
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004246 struct quic_cid *odcid)
4247{
4248 uint64_t odcid_len;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004249 uint32_t timestamp;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004250
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004251 if (!quic_dec_int(&odcid_len, &token, end))
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004252 return 1;
4253
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004254 /* RFC 9000 7.2. Negotiating Connection IDs:
4255 * When an Initial packet is sent by a client that has not previously
4256 * received an Initial or Retry packet from the server, the client
4257 * populates the Destination Connection ID field with an unpredictable
4258 * value. This Destination Connection ID MUST be at least 8 bytes in length.
4259 */
4260 if (odcid_len < QUIC_ODCID_MINLEN || odcid_len > QUIC_CID_MAXLEN)
4261 return 1;
4262
4263 if (end - token < odcid_len + sizeof timestamp)
4264 return 1;
4265
4266 timestamp = ntohl(read_u32(token + odcid_len));
4267 if (timestamp + MS_TO_TICKS(QUIC_RETRY_DURATION_MS) <= now_ms)
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004268 return 1;
4269
4270 memcpy(odcid->data, token, odcid_len);
4271 odcid->len = odcid_len;
4272
4273 return 0;
4274}
4275
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004276/* Allocate a new QUIC connection with <version> as QUIC version. <ipv4>
4277 * boolean is set to 1 for IPv4 connection, 0 for IPv6. <server> is set to 1
4278 * for QUIC servers (or haproxy listeners).
4279 * <dcid> is the destination connection ID, <scid> is the source connection ID,
4280 * <token> the token found to be used for this connection with <token_len> as
4281 * length. <saddr> is the source address.
4282 * Returns the connection if succeeded, NULL if not.
4283 */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02004284static struct quic_conn *qc_new_conn(const struct quic_version *qv, int ipv4,
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004285 struct quic_cid *dcid, struct quic_cid *scid,
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004286 const struct quic_cid *odcid,
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004287 struct sockaddr_storage *saddr,
Frédéric Lécaille748ece62022-05-21 23:58:40 +02004288 int server, int token, void *owner)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004289{
4290 int i;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004291 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004292 /* Initial CID. */
4293 struct quic_connection_id *icid;
Frédéric Lécaillec0b481f2022-02-02 15:39:55 +01004294 char *buf_area = NULL;
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01004295 struct listener *l = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004296
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004297 TRACE_ENTER(QUIC_EV_CONN_INIT);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004298 qc = pool_zalloc(pool_head_quic_conn);
4299 if (!qc) {
4300 TRACE_PROTO("Could not allocate a new connection", QUIC_EV_CONN_INIT);
4301 goto err;
4302 }
4303
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004304 buf_area = pool_alloc(pool_head_quic_conn_rxbuf);
4305 if (!buf_area) {
Amaury Denoyellee770ce32021-12-21 14:51:56 +01004306 TRACE_PROTO("Could not allocate a new RX buffer", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004307 goto err;
4308 }
4309
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004310 qc->cids = EB_ROOT;
4311 /* QUIC Server (or listener). */
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004312 if (server) {
Frédéric Lécaillea89659a2022-05-19 11:58:53 +02004313 struct proxy *prx;
4314
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01004315 l = owner;
Frédéric Lécaillea89659a2022-05-19 11:58:53 +02004316 prx = l->bind_conf->frontend;
Frédéric Lécaille6b197642021-07-06 16:25:08 +02004317
Frédéric Lécaillea89659a2022-05-19 11:58:53 +02004318 qc->prx_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
4319 &quic_stats_module);
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01004320 qc->flags |= QUIC_FL_CONN_LISTENER;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004321 qc->state = QUIC_HS_ST_SERVER_INITIAL;
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01004322 /* Copy the initial DCID with the address. */
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004323 qc->odcid.len = dcid->len;
4324 qc->odcid.addrlen = dcid->addrlen;
4325 memcpy(qc->odcid.data, dcid->data, dcid->len + dcid->addrlen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004326
Amaury Denoyelle42b9f1c2021-11-24 15:29:53 +01004327 /* copy the packet SCID to reuse it as DCID for sending */
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004328 if (scid->len)
4329 memcpy(qc->dcid.data, scid->data, scid->len);
4330 qc->dcid.len = scid->len;
Frédéric Lécaillec1029f62021-10-20 11:09:58 +02004331 qc->tx.qring_list = &l->rx.tx_qring_list;
Amaury Denoyelle2af19852021-09-30 11:03:28 +02004332 qc->li = l;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004333 }
4334 /* QUIC Client (outgoing connection to servers) */
4335 else {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004336 qc->state = QUIC_HS_ST_CLIENT_INITIAL;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004337 if (dcid->len)
4338 memcpy(qc->dcid.data, dcid->data, dcid->len);
4339 qc->dcid.len = dcid->len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004340 }
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01004341 qc->mux_state = QC_MUX_NULL;
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02004342 qc->err = quic_err_transport(QC_ERR_NO_ERROR);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004343
Amaury Denoyelle0442efd2022-01-28 16:02:13 +01004344 icid = new_quic_cid(&qc->cids, qc, 0);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004345 if (!icid) {
Amaury Denoyellee770ce32021-12-21 14:51:56 +01004346 TRACE_PROTO("Could not allocate a new connection ID", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004347 goto err;
4348 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004349
Frédéric Lécaille74904a42022-01-27 15:35:56 +01004350 /* insert the allocated CID in the receiver datagram handler tree */
4351 if (server)
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01004352 ebmb_insert(&quic_dghdlrs[tid].cids, &icid->node, icid->cid.len);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01004353
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004354 /* Select our SCID which is the first CID with 0 as sequence number. */
4355 qc->scid = icid->cid;
4356
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004357 /* Packet number spaces initialization. */
4358 for (i = 0; i < QUIC_TLS_PKTNS_MAX; i++)
4359 quic_pktns_init(&qc->pktns[i]);
4360 /* QUIC encryption level context initialization. */
4361 for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++) {
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004362 if (!quic_conn_enc_level_init(qc, i)) {
Amaury Denoyellee770ce32021-12-21 14:51:56 +01004363 TRACE_PROTO("Could not initialize an encryption level", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004364 goto err;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004365 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004366 /* Initialize the packet number space. */
4367 qc->els[i].pktns = &qc->pktns[quic_tls_pktns(i)];
4368 }
4369
Frédéric Lécaille301425b2022-06-14 17:40:39 +02004370 qc->original_version = qv;
4371 qc->tps_tls_ext = (qc->original_version->num & 0xff000000) == 0xff000000 ?
Frédéric Lécaillea956d152021-11-10 09:24:22 +01004372 TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS_DRAFT:
4373 TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004374 /* TX part. */
4375 LIST_INIT(&qc->tx.frms_to_send);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004376 qc->tx.nb_buf = QUIC_CONN_TX_BUFS_NB;
4377 qc->tx.wbuf = qc->tx.rbuf = 0;
4378 qc->tx.bytes = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004379 /* RX part. */
4380 qc->rx.bytes = 0;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004381 qc->rx.buf = b_make(buf_area, QUIC_CONN_RX_BUFSZ, 0, 0);
Frédéric Lécaille664741e2022-05-02 18:46:58 +02004382 for (i = 0; i < QCS_MAX_TYPES; i++)
4383 qc->rx.strms[i].nb_streams = 0;
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02004384
4385 qc->nb_pkt_for_cc = 1;
4386 qc->nb_pkt_since_cc = 0;
4387
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004388 LIST_INIT(&qc->rx.pkt_list);
Frédéric Lécaille40df78f2021-11-30 10:59:37 +01004389 if (!quic_tls_ku_init(qc)) {
Amaury Denoyellee770ce32021-12-21 14:51:56 +01004390 TRACE_PROTO("Key update initialization failed", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille40df78f2021-11-30 10:59:37 +01004391 goto err;
4392 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004393
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004394 /* XXX TO DO: Only one path at this time. */
4395 qc->path = &qc->paths[0];
4396 quic_path_init(qc->path, ipv4, default_quic_cc_algo, qc);
4397
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01004398 /* required to use MTLIST_IN_LIST */
4399 MT_LIST_INIT(&qc->accept_list);
4400
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004401 qc->streams_by_id = EB_ROOT_UNIQUE;
Amaury Denoyelled2f80a22022-04-15 17:30:49 +02004402 qc->stream_buf_count = 0;
Frédéric Lécaille8726d632022-05-03 10:32:21 +02004403 qc->sendto_err = 0;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004404 memcpy(&qc->peer_addr, saddr, sizeof qc->peer_addr);
4405
Frédéric Lécaille748ece62022-05-21 23:58:40 +02004406 if (server && !qc_lstnr_params_init(qc, &l->bind_conf->quic_params,
4407 icid->stateless_reset_token,
4408 dcid->data, dcid->len,
4409 qc->scid.data, qc->scid.len,
4410 odcid->data, odcid->len, token))
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004411 goto err;
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004412
Frédéric Lécaille3fd92f62022-05-19 14:35:20 +02004413 if (qc_conn_alloc_ssl_ctx(qc) ||
4414 !quic_conn_init_timer(qc) ||
4415 !quic_conn_init_idle_timer_task(qc))
4416 goto err;
4417
Frédéric Lécaille301425b2022-06-14 17:40:39 +02004418 if (!qc_new_isecs(qc, &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].tls_ctx,
4419 qc->original_version, dcid->data, dcid->len, 1))
Frédéric Lécaille3fd92f62022-05-19 14:35:20 +02004420 goto err;
4421
Amaury Denoyellee770ce32021-12-21 14:51:56 +01004422 TRACE_LEAVE(QUIC_EV_CONN_INIT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004423
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004424 return qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004425
4426 err:
Amaury Denoyellee770ce32021-12-21 14:51:56 +01004427 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_INIT, qc ? qc : NULL);
Frédéric Lécaillec0b481f2022-02-02 15:39:55 +01004428 pool_free(pool_head_quic_conn_rxbuf, buf_area);
4429 if (qc)
4430 qc->rx.buf.area = NULL;
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004431 quic_conn_release(qc);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004432 return NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004433}
4434
4435/* Initialize the timer task of <qc> QUIC connection.
4436 * Returns 1 if succeeded, 0 if not.
4437 */
4438static int quic_conn_init_timer(struct quic_conn *qc)
4439{
Frédéric Lécaillef57c3332021-12-09 10:06:21 +01004440 /* Attach this task to the same thread ID used for the connection */
Willy Tarreau87168752022-06-13 16:31:53 +02004441 qc->timer_task = task_new_on(qc->tid);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004442 if (!qc->timer_task)
4443 return 0;
4444
4445 qc->timer = TICK_ETERNITY;
4446 qc->timer_task->process = process_timer;
Frédéric Lécaille7fbb94d2022-01-31 10:37:07 +01004447 qc->timer_task->context = qc->xprt_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004448
4449 return 1;
4450}
4451
Frédéric Lécaille47756802022-03-25 09:12:16 +01004452/* Rearm the idle timer for <qc> QUIC connection. */
4453static void qc_idle_timer_do_rearm(struct quic_conn *qc)
4454{
4455 unsigned int expire;
4456
4457 expire = QUIC_MAX(3 * quic_pto(qc), qc->max_idle_timeout);
4458 qc->idle_timer_task->expire = tick_add(now_ms, MS_TO_TICKS(expire));
4459}
4460
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004461/* Rearm the idle timer for <qc> QUIC connection depending on <read> boolean
4462 * which is set to 1 when receiving a packet , and 0 when sending packet
4463 */
4464static void qc_idle_timer_rearm(struct quic_conn *qc, int read)
4465{
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004466 if (read) {
4467 qc->flags |= QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ;
4468 }
4469 else {
4470 qc->flags &= ~QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ;
4471 }
Frédéric Lécaille47756802022-03-25 09:12:16 +01004472 qc_idle_timer_do_rearm(qc);
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004473}
4474
4475/* The task handling the idle timeout */
4476static struct task *qc_idle_timer_task(struct task *t, void *ctx, unsigned int state)
4477{
4478 struct quic_conn *qc = ctx;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02004479 struct quic_counters *prx_counters = qc->prx_counters;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02004480 unsigned int qc_flags = qc->flags;
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004481
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02004482 /* Notify the MUX before settings QUIC_FL_CONN_EXP_TIMER or the MUX
4483 * might free the quic-conn too early via quic_close().
4484 */
4485 qc_notify_close(qc);
4486
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02004487 /* If the MUX is still alive, keep the quic-conn. The MUX is
4488 * responsible to call quic_close to release it.
4489 */
4490 qc->flags |= QUIC_FL_CONN_EXP_TIMER;
4491 if (qc->mux_state != QC_MUX_READY)
4492 quic_conn_release(qc);
4493
4494 /* TODO if the quic-conn cannot be freed because of the MUX, we may at
4495 * least clean some parts of it such as the tasklet.
4496 */
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02004497
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02004498 if (!(qc_flags & QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED)) {
4499 qc_flags |= QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED;
Frédéric Lécailleeb791452022-05-24 16:01:39 +02004500 HA_ATOMIC_DEC(&prx_counters->half_open_conn);
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02004501 }
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004502
4503 return NULL;
4504}
4505
4506/* Initialize the idle timeout task for <qc>.
4507 * Returns 1 if succeeded, 0 if not.
4508 */
4509static int quic_conn_init_idle_timer_task(struct quic_conn *qc)
4510{
4511 qc->idle_timer_task = task_new_here();
4512 if (!qc->idle_timer_task)
4513 return 0;
4514
4515 qc->idle_timer_task->process = qc_idle_timer_task;
4516 qc->idle_timer_task->context = qc;
4517 qc_idle_timer_rearm(qc, 1);
4518 task_queue(qc->idle_timer_task);
4519
4520 return 1;
4521}
4522
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004523/* Parse into <pkt> a long header located at <*buf> buffer, <end> begin a pointer to the end
4524 * past one byte of this buffer.
4525 */
4526static inline int quic_packet_read_long_header(unsigned char **buf, const unsigned char *end,
4527 struct quic_rx_packet *pkt)
4528{
4529 unsigned char dcid_len, scid_len;
4530
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02004531 if (end == *buf)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004532 return 0;
4533
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004534 /* Destination Connection ID Length */
4535 dcid_len = *(*buf)++;
4536 /* We want to be sure we can read <dcid_len> bytes and one more for <scid_len> value */
4537 if (dcid_len > QUIC_CID_MAXLEN || end - *buf < dcid_len + 1)
4538 /* XXX MUST BE DROPPED */
4539 return 0;
4540
4541 if (dcid_len) {
4542 /* Check that the length of this received DCID matches the CID lengths
4543 * of our implementation for non Initials packets only.
4544 */
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01004545 if (pkt->type != QUIC_PACKET_TYPE_INITIAL &&
4546 pkt->type != QUIC_PACKET_TYPE_0RTT &&
Amaury Denoyelled4962512021-12-14 17:17:28 +01004547 dcid_len != QUIC_HAP_CID_LEN)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004548 return 0;
4549
4550 memcpy(pkt->dcid.data, *buf, dcid_len);
4551 }
4552
4553 pkt->dcid.len = dcid_len;
4554 *buf += dcid_len;
4555
4556 /* Source Connection ID Length */
4557 scid_len = *(*buf)++;
4558 if (scid_len > QUIC_CID_MAXLEN || end - *buf < scid_len)
4559 /* XXX MUST BE DROPPED */
4560 return 0;
4561
4562 if (scid_len)
4563 memcpy(pkt->scid.data, *buf, scid_len);
4564 pkt->scid.len = scid_len;
4565 *buf += scid_len;
4566
4567 return 1;
4568}
4569
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004570/* Insert <pkt> RX packet in its <qel> RX packets tree */
4571static void qc_pkt_insert(struct quic_rx_packet *pkt, struct quic_enc_level *qel)
4572{
4573 pkt->pn_node.key = pkt->pn;
Frédéric Lécaille2ce5acf2021-12-20 14:41:19 +01004574 quic_rx_packet_refinc(pkt);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004575 HA_RWLOCK_WRLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock);
4576 eb64_insert(&qel->rx.pkts, &pkt->pn_node);
4577 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004578}
4579
4580/* Try to remove the header protection of <pkt> QUIC packet attached to <qc>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004581 * QUIC connection with <buf> as packet number field address, <end> a pointer to one
4582 * byte past the end of the buffer containing this packet and <beg> the address of
4583 * the packet first byte.
4584 * If succeeded, this function updates <*buf> to point to the next packet in the buffer.
4585 * Returns 1 if succeeded, 0 if not.
4586 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004587static inline int qc_try_rm_hp(struct quic_conn *qc,
4588 struct quic_rx_packet *pkt,
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004589 unsigned char *buf, unsigned char *beg,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004590 const unsigned char *end,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004591 struct quic_enc_level **el)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004592{
4593 unsigned char *pn = NULL; /* Packet number field */
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01004594 enum quic_tls_enc_level tel;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004595 struct quic_enc_level *qel;
4596 /* Only for traces. */
4597 struct quic_rx_packet *qpkt_trace;
4598
4599 qpkt_trace = NULL;
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004600 TRACE_ENTER(QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004601 /* The packet number is here. This is also the start minus
4602 * QUIC_PACKET_PN_MAXLEN of the sample used to add/remove the header
4603 * protection.
4604 */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004605 pn = buf;
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01004606
4607 tel = quic_packet_type_enc_level(pkt->type);
4608 qel = &qc->els[tel];
4609
4610 if (qc_qel_may_rm_hp(qc, qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004611 /* Note that the following function enables us to unprotect the packet
4612 * number and its length subsequently used to decrypt the entire
4613 * packets.
4614 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004615 if (!qc_do_rm_hp(qc, pkt, &qel->tls_ctx,
4616 qel->pktns->rx.largest_pn, pn, beg, end)) {
4617 TRACE_PROTO("hp error", QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004618 goto err;
4619 }
4620
4621 /* The AAD includes the packet number field found at <pn>. */
4622 pkt->aad_len = pn - beg + pkt->pnl;
4623 qpkt_trace = pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004624 }
Frédéric Lécaille7d845f12022-02-21 19:22:09 +01004625 else {
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004626 if (qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD) {
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004627 /* If the packet number space has been discarded, this packet
4628 * will be not parsed.
4629 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004630 TRACE_PROTO("Discarded pktns", QUIC_EV_CONN_TRMHP, qc, pkt);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004631 goto out;
4632 }
4633
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004634 TRACE_PROTO("hp not removed", QUIC_EV_CONN_TRMHP, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004635 pkt->pn_offset = pn - beg;
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02004636 MT_LIST_APPEND(&qel->rx.pqpkts, &pkt->list);
4637 quic_rx_packet_refinc(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004638 }
4639
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004640 *el = qel;
4641 /* No reference counter incrementation here!!! */
4642 LIST_APPEND(&qc->rx.pkt_list, &pkt->qc_rx_pkt_list);
4643 memcpy(b_tail(&qc->rx.buf), beg, pkt->len);
4644 pkt->data = (unsigned char *)b_tail(&qc->rx.buf);
4645 b_add(&qc->rx.buf, pkt->len);
4646 out:
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004647 TRACE_LEAVE(QUIC_EV_CONN_TRMHP, qc, qpkt_trace);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004648 return 1;
4649
4650 err:
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004651 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_TRMHP, qc, qpkt_trace);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004652 return 0;
4653}
4654
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02004655/* Parse the header form from <byte0> first byte of <pkt> packet to set its type.
Frédéric Lécaille86845c52022-06-08 19:28:36 +02004656 * Also set <*long_header> to 1 if this form is long, 0 if not and the version
4657 * of this packet into <*version>.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004658 */
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02004659static inline int qc_parse_hd_form(struct quic_rx_packet *pkt,
4660 unsigned char **buf, const unsigned char *end,
Frédéric Lécaille86845c52022-06-08 19:28:36 +02004661 int *long_header, uint32_t *version)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004662{
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02004663 const unsigned char byte0 = **buf;
4664
4665 (*buf)++;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004666 if (byte0 & QUIC_PACKET_LONG_HEADER_BIT) {
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02004667 unsigned char type =
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004668 (byte0 >> QUIC_PACKET_TYPE_SHIFT) & QUIC_PACKET_TYPE_BITMASK;
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02004669
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004670 *long_header = 1;
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02004671 /* Version */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02004672 if (!quic_read_uint32(version, (const unsigned char **)buf, end))
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02004673 return 0;
4674
Frédéric Lécaille86845c52022-06-08 19:28:36 +02004675 if (*version != QUIC_PROTOCOL_VERSION_2_DRAFT) {
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02004676 pkt->type = type;
4677 }
4678 else {
4679 switch (type) {
4680 case 0:
4681 pkt->type = QUIC_PACKET_TYPE_RETRY;
4682 break;
4683 case 1:
4684 pkt->type = QUIC_PACKET_TYPE_INITIAL;
4685 break;
4686 case 2:
4687 pkt->type = QUIC_PACKET_TYPE_0RTT;
4688 break;
4689 case 3:
4690 pkt->type = QUIC_PACKET_TYPE_HANDSHAKE;
4691 break;
4692 }
4693 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004694 }
4695 else {
4696 pkt->type = QUIC_PACKET_TYPE_SHORT;
4697 *long_header = 0;
4698 }
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02004699
4700 return 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004701}
4702
Frédéric Lécaille86845c52022-06-08 19:28:36 +02004703/* Return the QUIC version (quic_version struct) with <version> as version number
4704 * if supported or NULL if not.
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004705 */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02004706static inline const struct quic_version *qc_supported_version(uint32_t version)
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004707{
Frédéric Lécaille86845c52022-06-08 19:28:36 +02004708 int i;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004709
Frédéric Lécaille86845c52022-06-08 19:28:36 +02004710 for (i = 0; i < quic_versions_nb; i++)
4711 if (quic_versions[i].num == version)
4712 return &quic_versions[i];
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004713
Frédéric Lécaille86845c52022-06-08 19:28:36 +02004714 return NULL;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004715}
4716
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004717/*
4718 * Send a Version Negotiation packet on response to <pkt> on socket <fd> to
4719 * address <addr>.
4720 * Implementation of RFC9000 6. Version Negotiation
4721 *
4722 * TODO implement a rate-limiting sending of Version Negotiation packets
4723 *
4724 * Returns 0 on success else non-zero
4725 */
Amaury Denoyelled6b16672021-12-23 10:37:19 +01004726static int send_version_negotiation(int fd, struct sockaddr_storage *addr,
4727 struct quic_rx_packet *pkt)
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004728{
4729 char buf[256];
Frédéric Lécaille86845c52022-06-08 19:28:36 +02004730 int i = 0, j;
4731 uint32_t version;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004732 const socklen_t addrlen = get_addr_len(addr);
4733
4734 /*
4735 * header form
4736 * long header, fixed bit to 0 for Version Negotiation
4737 */
Frédéric Lécailleea78ee12021-11-18 13:54:43 +01004738 if (RAND_bytes((unsigned char *)buf, 1) != 1)
4739 return 1;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004740
Frédéric Lécailleea78ee12021-11-18 13:54:43 +01004741 buf[i++] |= '\x80';
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004742 /* null version for Version Negotiation */
4743 buf[i++] = '\x00';
4744 buf[i++] = '\x00';
4745 buf[i++] = '\x00';
4746 buf[i++] = '\x00';
4747
4748 /* source connection id */
4749 buf[i++] = pkt->scid.len;
Amaury Denoyelle10eed8e2021-11-18 13:48:57 +01004750 memcpy(&buf[i], pkt->scid.data, pkt->scid.len);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004751 i += pkt->scid.len;
4752
4753 /* destination connection id */
4754 buf[i++] = pkt->dcid.len;
Amaury Denoyelle10eed8e2021-11-18 13:48:57 +01004755 memcpy(&buf[i], pkt->dcid.data, pkt->dcid.len);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004756 i += pkt->dcid.len;
4757
4758 /* supported version */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02004759 for (j = 0; j < quic_versions_nb; j++) {
4760 version = htonl(quic_versions[j].num);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004761 memcpy(&buf[i], &version, sizeof(version));
4762 i += sizeof(version);
Frédéric Lécaille86845c52022-06-08 19:28:36 +02004763 }
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004764
Amaury Denoyellea22d8602021-11-10 15:17:56 +01004765
4766 if (sendto(fd, buf, i, 0, (struct sockaddr *)addr, addrlen) < 0)
4767 return 1;
4768
4769 return 0;
4770}
4771
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02004772/* Send a stateless reset packet depending on <pkt> RX packet information
4773 * from <fd> UDP socket to <dst>
4774 * Return 1 if succeeded, 0 if not.
4775 */
Frédéric Lécailleeb791452022-05-24 16:01:39 +02004776static int send_stateless_reset(struct listener *l, struct sockaddr_storage *dstaddr,
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02004777 struct quic_rx_packet *rxpkt)
4778{
4779 int pktlen, rndlen;
4780 unsigned char pkt[64];
4781 const socklen_t addrlen = get_addr_len(dstaddr);
Frédéric Lécailleeb791452022-05-24 16:01:39 +02004782 struct proxy *prx;
4783 struct quic_counters *prx_counters;
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02004784
Frédéric Lécailleeb791452022-05-24 16:01:39 +02004785 prx = l->bind_conf->frontend;
4786 prx_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe, &quic_stats_module);
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02004787 /* 10.3 Stateless Reset (https://www.rfc-editor.org/rfc/rfc9000.html#section-10.3)
4788 * The resulting minimum size of 21 bytes does not guarantee that a Stateless
4789 * Reset is difficult to distinguish from other packets if the recipient requires
4790 * the use of a connection ID. To achieve that end, the endpoint SHOULD ensure
4791 * that all packets it sends are at least 22 bytes longer than the minimum
4792 * connection ID length that it requests the peer to include in its packets,
4793 * adding PADDING frames as necessary. This ensures that any Stateless Reset
4794 * sent by the peer is indistinguishable from a valid packet sent to the endpoint.
4795 * An endpoint that sends a Stateless Reset in response to a packet that is
4796 * 43 bytes or shorter SHOULD send a Stateless Reset that is one byte shorter
4797 * than the packet it responds to.
4798 */
4799
4800 /* Note that we build at most a 42 bytes QUIC packet to mimic a short packet */
4801 pktlen = rxpkt->len <= 43 ? rxpkt->len - 1 : 0;
4802 pktlen = QUIC_MAX(QUIC_STATELESS_RESET_PACKET_MINLEN, pktlen);
4803 rndlen = pktlen - QUIC_STATELESS_RESET_TOKEN_LEN;
4804 /* Put a header of random bytes */
4805 if (RAND_bytes(pkt, rndlen) != 1)
4806 return 0;
4807
4808 /* Clear the most significant bit, and set the second one */
4809 *pkt = (*pkt & ~0x80) | 0x40;
4810 if (!quic_stateless_reset_token_cpy(pkt + rndlen, QUIC_STATELESS_RESET_TOKEN_LEN,
4811 rxpkt->dcid.data, rxpkt->dcid.len))
4812 return 0;
4813
Frédéric Lécailleeb791452022-05-24 16:01:39 +02004814 if (sendto(l->rx.fd, pkt, pktlen, 0, (struct sockaddr *)dstaddr, addrlen) < 0)
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02004815 return 0;
4816
Frédéric Lécailleeb791452022-05-24 16:01:39 +02004817 HA_ATOMIC_INC(&prx_counters->stateless_reset_sent);
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02004818 TRACE_PROTO("stateless reset sent", QUIC_EV_STATELESS_RST, NULL, &rxpkt->dcid);
4819 return 1;
4820}
4821
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004822/* QUIC server only function.
4823 * Add AAD to <add> buffer from <cid> connection ID and <addr> socket address.
4824 * This is the responsability of the caller to check <aad> size is big enough
4825 * to contain these data.
4826 * Return the number of bytes copied to <aad>.
4827 */
4828static int quic_generate_retry_token_aad(unsigned char *aad,
4829 uint32_t version,
4830 const struct quic_cid *cid,
4831 const struct sockaddr_storage *addr)
4832{
4833 unsigned char *p;
4834
4835 p = aad;
4836 memcpy(p, &version, sizeof version);
4837 p += sizeof version;
4838 p += quic_saddr_cpy(p, addr);
4839 memcpy(p, cid->data, cid->len);
4840 p += cid->len;
4841
4842 return p - aad;
4843}
4844
4845/* QUIC server only function.
4846 * Generate the token to be used in Retry packets. The token is written to
4847 * <buf> whith <len> as length. <odcid> is the original destination connection
4848 * ID and <dcid> is our side destination connection ID (or client source
4849 * connection ID).
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01004850 * Returns the length of the encoded token or 0 on error.
4851 */
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004852static int quic_generate_retry_token(unsigned char *buf, size_t len,
4853 const uint32_t version,
4854 const struct quic_cid *odcid,
4855 const struct quic_cid *dcid,
4856 struct sockaddr_storage *addr)
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01004857{
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004858 unsigned char *p;
4859 unsigned char aad[sizeof(uint32_t) + sizeof(in_port_t) +
4860 sizeof(struct in6_addr) + QUIC_HAP_CID_LEN];
4861 size_t aadlen;
4862 unsigned char salt[QUIC_RETRY_TOKEN_SALTLEN];
4863 unsigned char key[QUIC_TLS_KEY_LEN];
4864 unsigned char iv[QUIC_TLS_IV_LEN];
4865 const unsigned char *sec = (const unsigned char *)global.cluster_secret;
4866 size_t seclen = strlen(global.cluster_secret);
4867 EVP_CIPHER_CTX *ctx = NULL;
4868 const EVP_CIPHER *aead = EVP_aes_128_gcm();
4869 uint32_t timestamp = now_ms;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01004870
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004871 /* We copy the odcid into the token, prefixed by its one byte
4872 * length, the format token byte. It is followed by an AEAD TAG, and finally
4873 * the random bytes used to derive the secret to encrypt the token.
4874 */
4875 if (1 + dcid->len + 1 + QUIC_TLS_TAG_LEN + sizeof salt > len)
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01004876 return 0;
4877
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004878 aadlen = quic_generate_retry_token_aad(aad, version, dcid, addr);
4879 if (RAND_bytes(salt, sizeof salt) != 1)
4880 goto err;
4881
4882 if (!quic_tls_derive_retry_token_secret(EVP_sha256(), key, sizeof key, iv, sizeof iv,
4883 salt, sizeof salt, sec, seclen))
4884 goto err;
4885
4886 if (!quic_tls_tx_ctx_init(&ctx, aead, key))
4887 goto err;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01004888
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004889 /* Token build */
4890 p = buf;
4891 *p++ = QUIC_TOKEN_FMT_RETRY,
4892 *p++ = odcid->len;
4893 memcpy(p, odcid->data, odcid->len);
4894 p += odcid->len;
4895 write_u32(p, htonl(timestamp));
4896 p += sizeof timestamp;
4897
4898 /* Do not encrypt the QUIC_TOKEN_FMT_RETRY byte */
4899 if (!quic_tls_encrypt(buf + 1, p - buf - 1, aad, aadlen, ctx, aead, key, iv))
4900 goto err;
4901
4902 p += QUIC_TLS_TAG_LEN;
4903 memcpy(p, salt, sizeof salt);
4904 p += sizeof salt;
4905 EVP_CIPHER_CTX_free(ctx);
4906
4907 return p - buf;
4908
4909 err:
4910 if (ctx)
4911 EVP_CIPHER_CTX_free(ctx);
4912 return 0;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01004913}
4914
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004915/* QUIC server only function.
4916 * Check the validity of the Retry token from <token> buffer with <tokenlen>
4917 * as length. If valid, the ODCID of <qc> QUIC connection will be put
4918 * into <odcid> connection ID. <dcid> is our side destination connection ID
4919 * of client source connection ID.
4920 * Return 1 if succeeded, 0 if not.
4921 */
Frédéric Lécaille301425b2022-06-14 17:40:39 +02004922static int quic_retry_token_check(const unsigned char *token, size_t tokenlen,
4923 const struct quic_version *qv,
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004924 struct quic_cid *odcid,
4925 const struct quic_cid *dcid,
4926 struct quic_conn *qc,
4927 struct sockaddr_storage *addr)
4928{
4929 unsigned char buf[128];
4930 unsigned char aad[sizeof(uint32_t) + sizeof(in_port_t) +
4931 sizeof(struct in6_addr) + QUIC_HAP_CID_LEN];
4932 size_t aadlen;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02004933 const unsigned char *salt;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004934 unsigned char key[QUIC_TLS_KEY_LEN];
4935 unsigned char iv[QUIC_TLS_IV_LEN];
4936 const unsigned char *sec = (const unsigned char *)global.cluster_secret;
4937 size_t seclen = strlen(global.cluster_secret);
4938 EVP_CIPHER_CTX *ctx = NULL;
4939 const EVP_CIPHER *aead = EVP_aes_128_gcm();
4940
4941 if (sizeof buf < tokenlen)
4942 return 0;
4943
Frédéric Lécaille301425b2022-06-14 17:40:39 +02004944 aadlen = quic_generate_retry_token_aad(aad, qv->num, dcid, addr);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004945 salt = token + tokenlen - QUIC_RETRY_TOKEN_SALTLEN;
4946 if (!quic_tls_derive_retry_token_secret(EVP_sha256(), key, sizeof key, iv, sizeof iv,
Frédéric Lécaille01d515e2022-06-07 11:39:00 +02004947 salt, QUIC_RETRY_TOKEN_SALTLEN, sec, seclen)) {
4948 TRACE_PROTO("Could not derive retry secret", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004949 return 0;
Frédéric Lécaille01d515e2022-06-07 11:39:00 +02004950 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004951
4952 if (!quic_tls_rx_ctx_init(&ctx, aead, key))
4953 goto err;
4954
4955 /* Do not decrypt the QUIC_TOKEN_FMT_RETRY byte */
4956 if (!quic_tls_decrypt2(buf, token + 1, tokenlen - QUIC_RETRY_TOKEN_SALTLEN - 1, aad, aadlen,
Frédéric Lécaille01d515e2022-06-07 11:39:00 +02004957 ctx, aead, key, iv)) {
4958 TRACE_PROTO("Could not decrypt retry token", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004959 goto err;
Frédéric Lécaille01d515e2022-06-07 11:39:00 +02004960 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004961
4962 if (parse_retry_token(buf, buf + tokenlen - QUIC_RETRY_TOKEN_SALTLEN - 1, odcid)) {
4963 TRACE_PROTO("Error during Initial token parsing", QUIC_EV_CONN_LPKT, qc);
4964 goto err;
4965 }
4966
4967 EVP_CIPHER_CTX_free(ctx);
4968 return 1;
4969
4970 err:
4971 if (ctx)
4972 EVP_CIPHER_CTX_free(ctx);
4973 return 0;
4974}
4975
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01004976/* Generate a Retry packet and send it on <fd> socket to <addr> in response to
4977 * the Initial <pkt> packet.
4978 *
4979 * Returns 0 on success else non-zero.
4980 */
4981static int send_retry(int fd, struct sockaddr_storage *addr,
Frédéric Lécaille86845c52022-06-08 19:28:36 +02004982 struct quic_rx_packet *pkt, const struct quic_version *qv)
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01004983{
4984 unsigned char buf[128];
4985 int i = 0, token_len;
4986 const socklen_t addrlen = get_addr_len(addr);
4987 struct quic_cid scid;
4988
Frédéric Lécaille86845c52022-06-08 19:28:36 +02004989 /* long header + fixed bit + packet type QUIC_PACKET_TYPE_RETRY */
4990 buf[i++] = (QUIC_PACKET_LONG_HEADER_BIT | QUIC_PACKET_FIXED_BIT) |
4991 (quic_pkt_type(QUIC_PACKET_TYPE_RETRY, qv->num) << QUIC_PACKET_TYPE_SHIFT);
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01004992 /* version */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02004993 buf[i++] = *((unsigned char *)&qv->num + 3);
4994 buf[i++] = *((unsigned char *)&qv->num + 2);
4995 buf[i++] = *((unsigned char *)&qv->num + 1);
4996 buf[i++] = *(unsigned char *)&qv->num;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01004997
4998 /* Use the SCID from <pkt> for Retry DCID. */
4999 buf[i++] = pkt->scid.len;
5000 memcpy(&buf[i], pkt->scid.data, pkt->scid.len);
5001 i += pkt->scid.len;
5002
5003 /* Generate a new CID to be used as SCID for the Retry packet. */
5004 scid.len = QUIC_HAP_CID_LEN;
5005 if (RAND_bytes(scid.data, scid.len) != 1)
5006 return 1;
5007
5008 buf[i++] = scid.len;
5009 memcpy(&buf[i], scid.data, scid.len);
5010 i += scid.len;
5011
5012 /* token */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005013 if (!(token_len = quic_generate_retry_token(&buf[i], sizeof(buf) - i, qv->num,
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005014 &pkt->dcid, &pkt->scid, addr)))
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005015 return 1;
Frédéric Lécaillecc2764e2022-03-23 14:09:09 +01005016
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005017 i += token_len;
5018
5019 /* token integrity tag */
5020 if ((&buf[i] - buf < QUIC_TLS_TAG_LEN) ||
5021 !quic_tls_generate_retry_integrity_tag(pkt->dcid.data,
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005022 pkt->dcid.len, buf, i, qv)) {
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005023 return 1;
5024 }
5025
5026 i += QUIC_TLS_TAG_LEN;
5027
5028 if (sendto(fd, buf, i, 0, (struct sockaddr *)addr, addrlen) < 0)
5029 return 1;
5030
5031 return 0;
5032}
5033
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005034/* Retrieve a quic_conn instance from the <pkt> DCID field. If the packet is of
5035 * type INITIAL, the ODCID tree is first used. In this case, <saddr> is
5036 * concatenated to the <pkt> DCID field.
5037 *
5038 * Returns the instance or NULL if not found.
5039 */
Amaury Denoyelled6b16672021-12-23 10:37:19 +01005040static struct quic_conn *retrieve_qc_conn_from_cid(struct quic_rx_packet *pkt,
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005041 struct listener *l,
5042 struct sockaddr_storage *saddr)
5043{
5044 struct quic_conn *qc = NULL;
5045 struct ebmb_node *node;
5046 struct quic_connection_id *id;
Amaury Denoyelle250ac422021-12-22 11:29:05 +01005047 /* set if the quic_conn is found in the second DCID tree */
5048 int found_in_dcid = 0;
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005049
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005050 /* Look first into ODCIDs tree for INITIAL/0-RTT packets. */
5051 if (pkt->type == QUIC_PACKET_TYPE_INITIAL ||
5052 pkt->type == QUIC_PACKET_TYPE_0RTT) {
5053 /* DCIDs of first packets coming from multiple clients may have
5054 * the same values. Let's distinguish them by concatenating the
5055 * socket addresses.
5056 */
5057 quic_cid_saddr_cat(&pkt->dcid, saddr);
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01005058 node = ebmb_lookup(&quic_dghdlrs[tid].odcids, pkt->dcid.data,
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005059 pkt->dcid.len + pkt->dcid.addrlen);
5060 if (node) {
5061 qc = ebmb_entry(node, struct quic_conn, odcid_node);
5062 goto end;
5063 }
5064 }
5065
5066 /* Look into DCIDs tree for non-INITIAL/0-RTT packets. This may be used
5067 * also for INITIAL/0-RTT non-first packets with the final DCID in
5068 * used.
5069 */
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01005070 node = ebmb_lookup(&quic_dghdlrs[tid].cids, pkt->dcid.data, pkt->dcid.len);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005071 if (!node)
5072 goto end;
5073
5074 id = ebmb_entry(node, struct quic_connection_id, node);
5075 qc = id->qc;
Amaury Denoyelle250ac422021-12-22 11:29:05 +01005076 found_in_dcid = 1;
5077
5078 end:
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005079 /* If found in DCIDs tree, remove the quic_conn from the ODCIDs tree.
5080 * If already done, this is a noop.
5081 */
Frédéric Lécaille74904a42022-01-27 15:35:56 +01005082 if (qc && found_in_dcid)
Amaury Denoyelle250ac422021-12-22 11:29:05 +01005083 ebmb_delete(&qc->odcid_node);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005084
5085 return qc;
5086}
5087
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005088/* Try to allocate the <*ssl> SSL session object for <qc> QUIC connection
5089 * with <ssl_ctx> as SSL context inherited settings. Also set the transport
5090 * parameters of this session.
5091 * This is the responsibility of the caller to check the validity of all the
5092 * pointers passed as parameter to this function.
5093 * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <qc->conn> to
5094 * CO_ER_SSL_NO_MEM.
5095 */
5096static int qc_ssl_sess_init(struct quic_conn *qc, SSL_CTX *ssl_ctx, SSL **ssl,
5097 unsigned char *params, size_t params_len)
5098{
5099 int retry;
5100
5101 retry = 1;
5102 retry:
5103 *ssl = SSL_new(ssl_ctx);
5104 if (!*ssl) {
5105 if (!retry--)
5106 goto err;
5107
5108 pool_gc(NULL);
5109 goto retry;
5110 }
5111
5112 if (!SSL_set_quic_method(*ssl, &ha_quic_method) ||
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005113 !SSL_set_ex_data(*ssl, ssl_qc_app_data_index, qc)) {
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005114 SSL_free(*ssl);
5115 *ssl = NULL;
5116 if (!retry--)
5117 goto err;
5118
5119 pool_gc(NULL);
5120 goto retry;
5121 }
5122
5123 return 0;
5124
5125 err:
5126 qc->conn->err_code = CO_ER_SSL_NO_MEM;
5127 return -1;
5128}
5129
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005130/* Finalize <qc> QUIC connection:
5131 * - initialize the Initial QUIC TLS context for negotiated version,
5132 * - derive the secrets for this context,
5133 * - encode the transport parameters to be sent,
5134 * - set them into the TLS stack,
5135 * - initialize ->max_ack_delay and max_idle_timeout,
5136 *
5137 * MUST be called after having received the remote transport parameters.
5138 * Return 1 if succeeded, 0 if not.
5139 */
5140int qc_conn_finalize(struct quic_conn *qc, int server)
5141{
5142 struct quic_transport_params *tx_tp = &qc->tx.params;
5143 struct quic_transport_params *rx_tp = &qc->rx.params;
5144 const struct quic_version *ver;
5145
5146 if (tx_tp->version_information.negotiated_version &&
5147 tx_tp->version_information.negotiated_version != qc->original_version) {
5148 qc->negotiated_version =
5149 qc->tx.params.version_information.negotiated_version;
5150 if (!qc_new_isecs(qc, &qc->negotiated_ictx, qc->negotiated_version,
5151 qc->odcid.data, qc->odcid.len, !server))
5152 return 0;
5153
5154 ver = qc->negotiated_version;
5155 }
5156 else {
5157 ver = qc->original_version;
5158 }
5159
5160 qc->enc_params_len =
5161 quic_transport_params_encode(qc->enc_params,
5162 qc->enc_params + sizeof qc->enc_params,
5163 &qc->rx.params, ver, 1);
5164 if (!qc->enc_params_len)
5165 return 0;
5166
5167 if (!SSL_set_quic_transport_params(qc->xprt_ctx->ssl, qc->enc_params, qc->enc_params_len))
5168 return 0;
5169
5170 if (tx_tp->max_ack_delay)
5171 qc->max_ack_delay = tx_tp->max_ack_delay;
5172
5173 if (tx_tp->max_idle_timeout && rx_tp->max_idle_timeout)
5174 qc->max_idle_timeout =
5175 QUIC_MIN(tx_tp->max_idle_timeout, rx_tp->max_idle_timeout);
5176 else
5177 qc->max_idle_timeout =
5178 QUIC_MAX(tx_tp->max_idle_timeout, rx_tp->max_idle_timeout);
5179
5180 TRACE_PROTO("\nTX(remote) transp. params.", QUIC_EV_TRANSP_PARAMS, qc, tx_tp);
5181
5182 return 1;
5183}
5184
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005185/* Allocate the ssl_sock_ctx from connection <qc>. This creates the tasklet
5186 * used to process <qc> received packets. The allocated context is stored in
5187 * <qc.xprt_ctx>.
5188 *
5189 * Returns 0 on success else non-zero.
5190 */
Frédéric Lécaille3fd92f62022-05-19 14:35:20 +02005191static int qc_conn_alloc_ssl_ctx(struct quic_conn *qc)
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005192{
5193 struct bind_conf *bc = qc->li->bind_conf;
5194 struct ssl_sock_ctx *ctx = NULL;
5195
5196 ctx = pool_zalloc(pool_head_quic_conn_ctx);
5197 if (!ctx)
5198 goto err;
5199
5200 ctx->wait_event.tasklet = tasklet_new();
5201 if (!ctx->wait_event.tasklet)
5202 goto err;
5203
5204 ctx->wait_event.tasklet->process = quic_conn_io_cb;
5205 ctx->wait_event.tasklet->context = ctx;
5206 ctx->wait_event.events = 0;
5207 ctx->subs = NULL;
5208 ctx->xprt_ctx = NULL;
5209 ctx->qc = qc;
5210
5211 /* Set tasklet tid based on the SCID selected by us for this
5212 * connection. The upper layer will also be binded on the same thread.
5213 */
Frédéric Lécaille220894a2022-01-26 18:04:50 +01005214 qc->tid = ctx->wait_event.tasklet->tid = quic_get_cid_tid(qc->scid.data);
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005215
5216 if (qc_is_listener(qc)) {
5217 if (qc_ssl_sess_init(qc, bc->initial_ctx, &ctx->ssl,
5218 qc->enc_params, qc->enc_params_len) == -1) {
5219 goto err;
5220 }
5221
5222 /* Enabling 0-RTT */
5223 if (bc->ssl_conf.early_data)
5224 SSL_set_quic_early_data_enabled(ctx->ssl, 1);
5225
5226 SSL_set_accept_state(ctx->ssl);
5227 }
5228
5229 ctx->xprt = xprt_get(XPRT_QUIC);
5230
5231 /* Store the allocated context in <qc>. */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02005232 qc->xprt_ctx = ctx;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005233
5234 return 0;
5235
5236 err:
5237 if (ctx && ctx->wait_event.tasklet)
5238 tasklet_free(ctx->wait_event.tasklet);
5239 pool_free(pool_head_quic_conn_ctx, ctx);
5240
5241 return 1;
5242}
5243
Frédéric Lécaillef6954c52022-05-21 14:42:21 +02005244/* Check that all the bytes between <buf> included and <end> address
5245 * excluded are null. This is the responsability of the caller to
5246 * check that there is at least one byte between <buf> end <end>.
5247 * Return 1 if this all the bytes are null, 0 if not.
5248 */
5249static inline int quic_padding_check(const unsigned char *buf,
5250 const unsigned char *end)
5251{
5252 while (buf < end && !*buf)
5253 buf++;
5254
5255 return buf == end;
5256}
5257
Frédéric Lécaille4646cf32022-04-27 15:09:53 +02005258/* Parse a QUIC packet from UDP datagram found in <buf> buffer with <end> the
5259 * end of this buffer past one byte and populate <pkt> RX packet structure
5260 * with the information collected from the packet.
5261 * This function sets ->len <pkt> field value to the end of the packet past one
5262 * byte to enable the caller to run this function again to continue to parse
5263 * the remaing QUIC packets carried by the datagram.
5264 * Note that this function always sets this ->len value. If a paquet could
5265 * not be correctly found, ->len value will be set to the remaining number
5266 * bytes in the datagram to entirely consume this latter.
5267 */
5268static void qc_lstnr_pkt_rcv(unsigned char *buf, const unsigned char *end,
5269 struct quic_rx_packet *pkt, int first_pkt,
Frédéric Lécaille1b0707f2022-06-30 11:28:56 +02005270 struct quic_dgram *dgram, struct list **tasklist_head)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005271{
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005272 unsigned char *beg, *payload;
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01005273 struct quic_conn *qc, *qc_to_purge = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005274 struct listener *l;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005275 struct proxy *prx;
5276 struct quic_counters *prx_counters;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02005277 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005278 int drop_no_conn = 0, long_header = 0, io_cb_wakeup = 0;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005279 size_t b_cspace;
5280 struct quic_enc_level *qel;
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005281 uint32_t version;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005282 const struct quic_version *qv = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005283
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005284 beg = buf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005285 qc = NULL;
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02005286 conn_ctx = NULL;
Frédéric Lécaillec4becf52021-11-08 11:23:17 +01005287 qel = NULL;
Frédéric Lécaille8678eb02021-12-16 18:03:52 +01005288 TRACE_ENTER(QUIC_EV_CONN_LPKT);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005289 l = dgram->owner;
5290 prx = l->bind_conf->frontend;
5291 prx_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe, &quic_stats_module);
Frédéric Lécaille8678eb02021-12-16 18:03:52 +01005292 /* This ist only to please to traces and distinguish the
5293 * packet with parsed packet number from others.
5294 */
5295 pkt->pn_node.key = (uint64_t)-1;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005296 if (end <= buf) {
5297 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
5298 goto drop;
5299 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005300
5301 /* Fixed bit */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005302 if (!(*buf & QUIC_PACKET_FIXED_BIT)) {
Frédéric Lécaillef6954c52022-05-21 14:42:21 +02005303 if (!first_pkt && quic_padding_check(buf, end)) {
5304 /* Some browsers may pad the remaining datagram space with null bytes.
5305 * That is what we called add padding out of QUIC packets. Such
5306 * datagrams must be considered as valid. But we can only consume
5307 * the remaining space.
5308 */
5309 pkt->len = end - buf;
5310 goto drop_no_conn;
5311 }
5312
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005313 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005314 goto drop;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005315 }
5316
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005317 /* Header form */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005318 if (!qc_parse_hd_form(pkt, &buf, end, &long_header, &version)) {
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005319 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
5320 goto drop;
5321 }
5322
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005323 if (long_header) {
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005324 uint64_t len;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005325 struct quic_cid odcid;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005326 int check_token = 0;
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005327
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005328 if (!quic_packet_read_long_header(&buf, end, pkt)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005329 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005330 goto drop;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005331 }
5332
Frédéric Lécaille3e266982022-04-27 15:37:28 +02005333 if (pkt->type == QUIC_PACKET_TYPE_0RTT && !l->bind_conf->ssl_conf.early_data) {
5334 TRACE_PROTO("0-RTT packet not supported", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005335 drop_no_conn = 1;
Frédéric Lécaille3e266982022-04-27 15:37:28 +02005336 }
5337 else if (pkt->type == QUIC_PACKET_TYPE_INITIAL &&
5338 dgram->len < QUIC_INITIAL_PACKET_MINLEN) {
Frédéric Lécaille87373e72022-04-27 11:42:08 +02005339 TRACE_PROTO("Too short datagram with an Initial packet", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille3ccea6d2022-05-23 22:54:54 +02005340 HA_ATOMIC_INC(&prx_counters->too_short_initial_dgram);
Frédéric Lécaille87373e72022-04-27 11:42:08 +02005341 }
5342
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005343 /* When multiple QUIC packets are coalesced on the same UDP datagram,
5344 * they must have the same DCID.
5345 */
5346 if (!first_pkt &&
5347 (pkt->dcid.len != dgram->dcid_len ||
5348 memcmp(dgram->dcid, pkt->dcid.data, pkt->dcid.len))) {
5349 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005350 goto drop;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005351 }
5352
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005353 /* Retry of Version Negotiation packets are only sent by servers */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005354 if (pkt->type == QUIC_PACKET_TYPE_RETRY || !version) {
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005355 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005356 goto drop;
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005357 }
5358
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005359 /* RFC9000 6. Version Negotiation */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005360 qv = qc_supported_version(version);
5361 if (!qv) {
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005362 /* unsupported version, send Negotiation packet */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005363 if (send_version_negotiation(l->rx.fd, &dgram->saddr, pkt)) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005364 TRACE_PROTO("VN packet not sent", QUIC_EV_CONN_LPKT);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005365 goto err;
5366 }
5367
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005368 TRACE_PROTO("VN packet sent", QUIC_EV_CONN_LPKT);
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005369 goto err;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005370 }
5371
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005372 /* For Initial packets, and for servers (QUIC clients connections),
5373 * there is no Initial connection IDs storage.
5374 */
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005375 if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02005376 uint64_t token_len;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02005377
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005378 if (!quic_dec_int(&token_len, (const unsigned char **)&buf, end) ||
5379 end - buf < token_len) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005380 TRACE_PROTO("Packet dropped",
5381 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005382 goto drop;
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01005383 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005384
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005385 /* TODO Retry should be automatically activated if
5386 * suspect network usage is detected.
5387 */
Frédéric Lécailledfd13012022-05-20 16:37:36 +02005388 if (global.cluster_secret) {
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005389 if (!token_len) {
Willy Tarreau787e92a2022-05-20 16:06:01 +02005390 if (l->bind_conf->options & BC_O_QUIC_FORCE_RETRY) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005391 TRACE_PROTO("Initial without token, sending retry",
5392 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005393 if (send_retry(l->rx.fd, &dgram->saddr, pkt, qv)) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005394 TRACE_PROTO("Error during Retry generation",
5395 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécailledfd13012022-05-20 16:37:36 +02005396 goto err;
5397 }
5398
5399 HA_ATOMIC_INC(&prx_counters->retry_sent);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005400 goto err;
5401 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005402 }
5403 else {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005404 check_token = 1;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005405 }
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01005406 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005407
5408 pkt->token = buf;
5409 pkt->token_len = token_len;
5410 buf += pkt->token_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005411 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005412 else if (pkt->type != QUIC_PACKET_TYPE_0RTT) {
Amaury Denoyelled4962512021-12-14 17:17:28 +01005413 if (pkt->dcid.len != QUIC_HAP_CID_LEN) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005414 TRACE_PROTO("Packet dropped",
5415 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005416 goto drop;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005417 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005418 }
5419
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005420 if (!quic_dec_int(&len, (const unsigned char **)&buf, end) ||
5421 end - buf < len) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005422 TRACE_PROTO("Packet dropped",
5423 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005424 goto drop;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02005425 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005426
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005427 payload = buf;
5428 pkt->len = len + payload - beg;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005429 if (drop_no_conn)
5430 goto drop_no_conn;
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005431
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005432 qc = retrieve_qc_conn_from_cid(pkt, l, &dgram->saddr);
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005433 if (check_token && pkt->token) {
5434 if (*pkt->token == QUIC_TOKEN_FMT_RETRY) {
5435 const struct quic_version *ver = qc ? qc->original_version : qv;
5436 if (!quic_retry_token_check(pkt->token, pkt->token_len, ver, &odcid,
5437 &pkt->scid, qc, &dgram->saddr)) {
5438 HA_ATOMIC_INC(&prx_counters->retry_error);
5439 TRACE_PROTO("Wrong retry token",
5440 QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
5441 /* TODO: RFC 9000 8.1.2 A server SHOULD immediately close the connection
5442 * with an INVALID_TOKEN error.
5443 */
5444 goto drop;
5445 }
5446
5447 HA_ATOMIC_INC(&prx_counters->retry_validated);
5448 }
5449 else {
5450 /* TODO: New token check */
5451 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
5452 goto drop;
5453 }
5454 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005455 if (!qc) {
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005456 int ipv4;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02005457 struct ebmb_node *n = NULL;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005458
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005459 if (pkt->type != QUIC_PACKET_TYPE_INITIAL) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005460 TRACE_PROTO("Non Initial packet", QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005461 goto drop;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005462 }
5463
Willy Tarreau787e92a2022-05-20 16:06:01 +02005464 if (global.cluster_secret && !pkt->token_len && !(l->bind_conf->options & BC_O_QUIC_FORCE_RETRY) &&
Frédéric Lécailleeb791452022-05-24 16:01:39 +02005465 HA_ATOMIC_LOAD(&prx_counters->half_open_conn) >= global.tune.quic_retry_threshold) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005466 TRACE_PROTO("Initial without token, sending retry",
5467 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005468 if (send_retry(l->rx.fd, &dgram->saddr, pkt, qv)) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005469 TRACE_PROTO("Error during Retry generation",
5470 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécailledfd13012022-05-20 16:37:36 +02005471 goto err;
5472 }
5473
5474 HA_ATOMIC_INC(&prx_counters->retry_sent);
5475 goto err;
5476 }
5477
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005478 /* RFC 9000 7.2. Negotiating Connection IDs:
5479 * When an Initial packet is sent by a client that has not previously
5480 * received an Initial or Retry packet from the server, the client
5481 * populates the Destination Connection ID field with an unpredictable
5482 * value. This Destination Connection ID MUST be at least 8 bytes in length.
5483 */
Frédéric Lécailledc364042022-01-27 16:51:54 +01005484 if (pkt->dcid.len < QUIC_ODCID_MINLEN) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005485 TRACE_PROTO("dropped packet",
5486 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005487 goto drop;
Frédéric Lécailledc364042022-01-27 16:51:54 +01005488 }
5489
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005490 pkt->saddr = dgram->saddr;
5491 ipv4 = dgram->saddr.ss_family == AF_INET;
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005492 qc = qc_new_conn(qv, ipv4, &pkt->dcid, &pkt->scid, &odcid,
Frédéric Lécaille748ece62022-05-21 23:58:40 +02005493 &pkt->saddr, 1, !!pkt->token_len, l);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02005494 if (qc == NULL)
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005495 goto drop;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005496
Frédéric Lécailleeb791452022-05-24 16:01:39 +02005497 HA_ATOMIC_INC(&prx_counters->half_open_conn);
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02005498 /* Insert the DCID the QUIC client has chosen (only for listeners) */
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01005499 n = ebmb_insert(&quic_dghdlrs[tid].odcids, &qc->odcid_node,
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01005500 qc->odcid.len + qc->odcid.addrlen);
Frédéric Lécaille8370c932021-11-08 17:01:46 +01005501
Amaury Denoyelleaff4ec82021-11-24 15:16:08 +01005502 /* If the insertion failed, it means that another
5503 * thread has already allocated a QUIC connection for
5504 * the same CID. Liberate our allocated connection.
5505 */
5506 if (unlikely(n != &qc->odcid_node)) {
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01005507 qc_to_purge = qc;
5508
Amaury Denoyelleaff4ec82021-11-24 15:16:08 +01005509 qc = ebmb_entry(n, struct quic_conn, odcid_node);
5510 pkt->qc = qc;
5511 }
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01005512
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01005513 if (likely(!qc_to_purge)) {
Frédéric Lécaille8370c932021-11-08 17:01:46 +01005514 /* Enqueue this packet. */
Frédéric Lécaillef67b3562021-11-15 16:21:40 +01005515 pkt->qc = qc;
Frédéric Lécaille8370c932021-11-08 17:01:46 +01005516 }
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01005517 else {
Frédéric Lécaillef293b692022-03-08 16:59:54 +01005518 quic_conn_release(qc_to_purge);
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01005519 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005520 }
5521 else {
Frédéric Lécaille8370c932021-11-08 17:01:46 +01005522 pkt->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005523 }
5524 }
5525 else {
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005526 if (end - buf < QUIC_HAP_CID_LEN) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005527 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005528 goto drop;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005529 }
5530
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005531 memcpy(pkt->dcid.data, buf, QUIC_HAP_CID_LEN);
Amaury Denoyelleadb22762021-12-14 15:04:14 +01005532 pkt->dcid.len = QUIC_HAP_CID_LEN;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005533
5534 /* When multiple QUIC packets are coalesced on the same UDP datagram,
5535 * they must have the same DCID.
5536 */
5537 if (!first_pkt &&
5538 (pkt->dcid.len != dgram->dcid_len ||
5539 memcmp(dgram->dcid, pkt->dcid.data, pkt->dcid.len))) {
5540 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005541 goto drop;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005542 }
5543
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005544 buf += QUIC_HAP_CID_LEN;
5545
5546 /* A short packet is the last one of a UDP datagram. */
5547 payload = buf;
5548 pkt->len = end - beg;
Amaury Denoyelleadb22762021-12-14 15:04:14 +01005549
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005550 qc = retrieve_qc_conn_from_cid(pkt, l, &dgram->saddr);
Frédéric Lécaille4d118d62021-12-21 14:48:58 +01005551 if (!qc) {
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005552 size_t pktlen = end - buf;
Frédéric Lécaille4d118d62021-12-21 14:48:58 +01005553 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, NULL, pkt, &pktlen);
Frédéric Lécailleeb791452022-05-24 16:01:39 +02005554 if (global.cluster_secret && !send_stateless_reset(l, &dgram->saddr, pkt))
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005555 TRACE_PROTO("stateless reset not sent", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005556 goto drop;
Frédéric Lécaille4d118d62021-12-21 14:48:58 +01005557 }
5558
Frédéric Lécaille8370c932021-11-08 17:01:46 +01005559 pkt->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005560 }
5561
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02005562 if (qc->flags & QUIC_FL_CONN_CLOSING) {
5563 if (++qc->nb_pkt_since_cc >= qc->nb_pkt_for_cc) {
5564 qc->flags |= QUIC_FL_CONN_IMMEDIATE_CLOSE;
5565 qc->nb_pkt_for_cc++;
5566 qc->nb_pkt_since_cc = 0;
5567 }
5568 /* Skip the entire datagram */
5569 pkt->len = end - beg;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005570 TRACE_PROTO("Closing state connection",
5571 QUIC_EV_CONN_LPKT, pkt->qc, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005572 goto drop;
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02005573 }
Amaury Denoyelleadb22762021-12-14 15:04:14 +01005574
5575 /* When multiple QUIC packets are coalesced on the same UDP datagram,
5576 * they must have the same DCID.
5577 *
5578 * This check must be done after the final update to pkt.len to
5579 * properly drop the packet on failure.
5580 */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005581 if (first_pkt && !quic_peer_validated_addr(qc) &&
Frédéric Lécaillefc790062022-03-28 17:10:31 +02005582 qc->flags & QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED) {
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005583 TRACE_PROTO("PTO timer must be armed after anti-amplication was reached",
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005584 QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005585 /* Reset the anti-amplification bit. It will be set again
5586 * when sending the next packet if reached again.
5587 */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02005588 qc->flags &= ~QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED;
5589 qc->flags |= QUIC_FL_CONN_IO_CB_WAKEUP;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005590 io_cb_wakeup = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005591 }
Amaury Denoyelleadb22762021-12-14 15:04:14 +01005592
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005593 dgram->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005594
Amaury Denoyelle72d86502022-07-13 15:08:23 +02005595 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005596 TRACE_PROTO("Connection error",
5597 QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01005598 goto out;
5599 }
5600
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005601 pkt->raw_len = pkt->len;
Frédéric Lécailled61bc8d2021-12-02 14:46:19 +01005602 quic_rx_pkts_del(qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005603 b_cspace = b_contig_space(&qc->rx.buf);
5604 if (b_cspace < pkt->len) {
Amaury Denoyelle80d05722022-05-16 18:13:56 +02005605 /* Do not consume buf if space not at the end. */
5606 if (b_tail(&qc->rx.buf) + b_cspace < b_wrap(&qc->rx.buf)) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005607 TRACE_PROTO("Packet dropped",
5608 QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
Frédéric Lécaille45a16292022-06-29 12:03:34 +02005609 HA_ATOMIC_INC(&prx_counters->dropped_pkt_bufoverrun);
5610 goto drop_no_conn;
Amaury Denoyelle80d05722022-05-16 18:13:56 +02005611 }
5612
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005613 /* Let us consume the remaining contiguous space. */
Frédéric Lécailled61bc8d2021-12-02 14:46:19 +01005614 if (b_cspace) {
5615 b_putchr(&qc->rx.buf, 0x00);
5616 b_cspace--;
5617 }
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005618 b_add(&qc->rx.buf, b_cspace);
5619 if (b_contig_space(&qc->rx.buf) < pkt->len) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005620 TRACE_PROTO("Too big packet",
5621 QUIC_EV_CONN_LPKT, qc, pkt, &pkt->len, qv);
Frédéric Lécaille45a16292022-06-29 12:03:34 +02005622 HA_ATOMIC_INC(&prx_counters->dropped_pkt_bufoverrun);
5623 goto drop_no_conn;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005624 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005625 }
5626
Amaury Denoyellee81fed92021-12-22 11:06:34 +01005627 if (!qc_try_rm_hp(qc, pkt, payload, beg, end, &qel)) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005628 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005629 goto drop;
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02005630 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005631
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005632 TRACE_PROTO("New packet", QUIC_EV_CONN_LPKT, qc, pkt, NULL, qv);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005633 if (pkt->aad_len)
5634 qc_pkt_insert(pkt, qel);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01005635 out:
Frédéric Lécaille01abc462021-07-21 09:34:27 +02005636 /* Wake up the connection packet handler task from here only if all
5637 * the contexts have been initialized, especially the mux context
5638 * conn_ctx->conn->ctx. Note that this is ->start xprt callback which
5639 * will start it if these contexts for the connection are not already
5640 * initialized.
5641 */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02005642 conn_ctx = qc->xprt_ctx;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01005643 if (conn_ctx)
Frédéric Lécaille1b0707f2022-06-30 11:28:56 +02005644 *tasklist_head = tasklet_wakeup_after(*tasklist_head, conn_ctx->wait_event.tasklet);
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02005645
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005646 drop_no_conn:
5647 if (drop_no_conn)
5648 HA_ATOMIC_INC(&prx_counters->dropped_pkt);
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005649 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc ? qc : NULL, pkt, NULL, qv);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005650
Frédéric Lécaille4646cf32022-04-27 15:09:53 +02005651 return;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005652
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005653 drop:
5654 HA_ATOMIC_INC(&prx_counters->dropped_pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005655 err:
Frédéric Lécaille6b663152022-01-04 17:03:11 +01005656 /* Wakeup the I/O handler callback if the PTO timer must be armed.
5657 * This cannot be done by this thread.
5658 */
5659 if (io_cb_wakeup) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02005660 conn_ctx = qc->xprt_ctx;
Frédéric Lécaille6b663152022-01-04 17:03:11 +01005661 if (conn_ctx && conn_ctx->wait_event.tasklet)
5662 tasklet_wakeup(conn_ctx->wait_event.tasklet);
5663 }
Frédéric Lécaillef7ef9762021-12-31 16:37:58 +01005664 /* If length not found, consume the entire datagram */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005665 if (!pkt->len)
5666 pkt->len = end - beg;
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +01005667 TRACE_DEVEL("Leaving in error", QUIC_EV_CONN_LPKT,
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005668 qc ? qc : NULL, pkt, NULL, qv);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005669}
5670
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005671/* This function builds into <buf> buffer a QUIC long packet header.
5672 * Return 1 if enough room to build this header, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005673 */
5674static int quic_build_packet_long_header(unsigned char **buf, const unsigned char *end,
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005675 int type, size_t pn_len,
5676 struct quic_conn *conn, const struct quic_version *ver)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005677{
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005678 if (end - *buf < sizeof ver->num + conn->dcid.len + conn->scid.len + 3)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005679 return 0;
5680
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005681 type = quic_pkt_type(type, ver->num);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005682 /* #0 byte flags */
5683 *(*buf)++ = QUIC_PACKET_FIXED_BIT | QUIC_PACKET_LONG_HEADER_BIT |
5684 (type << QUIC_PACKET_TYPE_SHIFT) | (pn_len - 1);
5685 /* Version */
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005686 quic_write_uint32(buf, end, ver->num);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005687 *(*buf)++ = conn->dcid.len;
5688 /* Destination connection ID */
5689 if (conn->dcid.len) {
5690 memcpy(*buf, conn->dcid.data, conn->dcid.len);
5691 *buf += conn->dcid.len;
5692 }
5693 /* Source connection ID */
5694 *(*buf)++ = conn->scid.len;
5695 if (conn->scid.len) {
5696 memcpy(*buf, conn->scid.data, conn->scid.len);
5697 *buf += conn->scid.len;
5698 }
5699
5700 return 1;
5701}
5702
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005703/* This function builds into <buf> buffer a QUIC short packet header.
5704 * Return 1 if enough room to build this header, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005705 */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005706static int quic_build_packet_short_header(unsigned char **buf, const unsigned char *end,
5707 size_t pn_len, struct quic_conn *conn,
5708 unsigned char tls_flags)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005709{
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005710 if (end - *buf < 1 + conn->dcid.len)
5711 return 0;
5712
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005713 /* #0 byte flags */
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01005714 *(*buf)++ = QUIC_PACKET_FIXED_BIT |
5715 ((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 +01005716 /* Destination connection ID */
5717 if (conn->dcid.len) {
5718 memcpy(*buf, conn->dcid.data, conn->dcid.len);
5719 *buf += conn->dcid.len;
5720 }
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01005721
5722 return 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005723}
5724
5725/* Apply QUIC header protection to the packet with <buf> as first byte address,
5726 * <pn> as address of the Packet number field, <pnlen> being this field length
5727 * with <aead> as AEAD cipher and <key> as secret key.
5728 * Returns 1 if succeeded or 0 if failed.
5729 */
5730static int quic_apply_header_protection(unsigned char *buf, unsigned char *pn, size_t pnlen,
5731 const EVP_CIPHER *aead, const unsigned char *key)
5732{
5733 int i, ret, outlen;
5734 EVP_CIPHER_CTX *ctx;
5735 /* We need an IV of at least 5 bytes: one byte for bytes #0
5736 * and at most 4 bytes for the packet number
5737 */
5738 unsigned char mask[5] = {0};
5739
5740 ret = 0;
5741 ctx = EVP_CIPHER_CTX_new();
5742 if (!ctx)
5743 return 0;
5744
5745 if (!EVP_EncryptInit_ex(ctx, aead, NULL, key, pn + QUIC_PACKET_PN_MAXLEN) ||
5746 !EVP_EncryptUpdate(ctx, mask, &outlen, mask, sizeof mask) ||
5747 !EVP_EncryptFinal_ex(ctx, mask, &outlen))
5748 goto out;
5749
5750 *buf ^= mask[0] & (*buf & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f);
5751 for (i = 0; i < pnlen; i++)
5752 pn[i] ^= mask[i + 1];
5753
5754 ret = 1;
5755
5756 out:
5757 EVP_CIPHER_CTX_free(ctx);
5758
5759 return ret;
5760}
5761
5762/* Reduce the encoded size of <ack_frm> ACK frame removing the last
5763 * ACK ranges if needed to a value below <limit> in bytes.
5764 * Return 1 if succeeded, 0 if not.
5765 */
5766static int quic_ack_frm_reduce_sz(struct quic_frame *ack_frm, size_t limit)
5767{
5768 size_t room, ack_delay_sz;
5769
5770 ack_delay_sz = quic_int_getsize(ack_frm->tx_ack.ack_delay);
5771 /* A frame is made of 1 byte for the frame type. */
5772 room = limit - ack_delay_sz - 1;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01005773 if (!quic_rm_last_ack_ranges(ack_frm->tx_ack.arngs, room))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005774 return 0;
5775
Frédéric Lécaille8090b512020-11-30 16:19:22 +01005776 return 1 + ack_delay_sz + ack_frm->tx_ack.arngs->enc_sz;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005777}
5778
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005779/* Prepare into <outlist> as most as possible ack-eliciting frame from their
5780 * <inlist> prebuilt frames for <qel> encryption level to be encoded in a buffer
5781 * with <room> as available room, and <*len> the packet Length field initialized
5782 * with the number of bytes already present in this buffer which must be taken
5783 * into an account for the Length packet field value. <headlen> is the number of
5784 * bytes already present in this packet before building frames.
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02005785 *
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02005786 * Update consequently <*len> to reflect the size of these frames built
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01005787 * by this function. Also attach these frames to <l> frame list.
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02005788 * Return 1 if at least one ack-eleciting frame could be built, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005789 */
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005790static inline int qc_build_frms(struct list *outlist, struct list *inlist,
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02005791 size_t room, size_t *len, size_t headlen,
5792 struct quic_enc_level *qel,
Amaury Denoyelle17a74162021-12-21 14:45:39 +01005793 struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005794{
Frédéric Lécailleea604992020-12-24 13:01:37 +01005795 int ret;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01005796 struct quic_frame *cf, *cfbak;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005797
Frédéric Lécailleea604992020-12-24 13:01:37 +01005798 ret = 0;
Frédéric Lécaillef4e5a7c2022-01-17 17:56:20 +01005799 if (*len > room)
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02005800 return 0;
5801
Frédéric Lécailleea604992020-12-24 13:01:37 +01005802 /* If we are not probing we must take into an account the congestion
5803 * control window.
5804 */
Frédéric Lécaillef4e5a7c2022-01-17 17:56:20 +01005805 if (!qel->pktns->tx.pto_probe) {
5806 size_t remain = quic_path_prep_data(qc->path);
5807
5808 if (headlen > remain)
5809 return 0;
5810
5811 room = QUIC_MIN(room, remain - headlen);
5812 }
5813
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005814 TRACE_PROTO("************** frames build (headlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005815 QUIC_EV_CONN_BCFRMS, qc, &headlen);
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02005816
5817 /* NOTE: switch/case block inside a loop, a successful status must be
5818 * returned by this function only if at least one frame could be built
5819 * in the switch/case block.
5820 */
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005821 list_for_each_entry_safe(cf, cfbak, inlist, list) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005822 /* header length, data length, frame length. */
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005823 size_t hlen, dlen, dlen_sz, avail_room, flen;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005824
Frédéric Lécailleea604992020-12-24 13:01:37 +01005825 if (!room)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005826 break;
5827
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005828 switch (cf->type) {
5829 case QUIC_FT_CRYPTO:
5830 TRACE_PROTO(" New CRYPTO frame build (room, len)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005831 QUIC_EV_CONN_BCFRMS, qc, &room, len);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005832 /* Compute the length of this CRYPTO frame header */
5833 hlen = 1 + quic_int_getsize(cf->crypto.offset);
5834 /* Compute the data length of this CRyPTO frame. */
5835 dlen = max_stream_data_size(room, *len + hlen, cf->crypto.len);
5836 TRACE_PROTO(" CRYPTO data length (hlen, crypto.len, dlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005837 QUIC_EV_CONN_BCFRMS, qc, &hlen, &cf->crypto.len, &dlen);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005838 if (!dlen)
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02005839 continue;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005840
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005841 /* CRYPTO frame length. */
5842 flen = hlen + quic_int_getsize(dlen) + dlen;
5843 TRACE_PROTO(" CRYPTO frame length (flen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005844 QUIC_EV_CONN_BCFRMS, qc, &flen);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005845 /* Add the CRYPTO data length and its encoded length to the packet
5846 * length and the length of this length.
5847 */
5848 *len += flen;
5849 room -= flen;
5850 if (dlen == cf->crypto.len) {
5851 /* <cf> CRYPTO data have been consumed. */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01005852 LIST_DELETE(&cf->list);
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005853 LIST_APPEND(outlist, &cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005854 }
5855 else {
5856 struct quic_frame *new_cf;
5857
Frédéric Lécailleb9171912022-04-21 17:32:10 +02005858 new_cf = pool_zalloc(pool_head_quic_frame);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005859 if (!new_cf) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005860 TRACE_PROTO("No memory for new crypto frame", QUIC_EV_CONN_BCFRMS, qc);
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02005861 continue;
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005862 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005863
Frédéric Lécailleb9171912022-04-21 17:32:10 +02005864 LIST_INIT(&new_cf->reflist);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005865 new_cf->type = QUIC_FT_CRYPTO;
5866 new_cf->crypto.len = dlen;
5867 new_cf->crypto.offset = cf->crypto.offset;
5868 new_cf->crypto.qel = qel;
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005869 LIST_APPEND(outlist, &new_cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005870 /* Consume <dlen> bytes of the current frame. */
5871 cf->crypto.len -= dlen;
5872 cf->crypto.offset += dlen;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005873 }
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005874 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005875
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02005876 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02005877 if (cf->flags & QUIC_FL_TX_FRAME_LOST) {
5878 struct eb64_node *node = NULL;
5879 struct qc_stream_desc *stream_desc = NULL;
5880 struct quic_stream *strm = &cf->stream;
5881
5882 /* As this frame has been already lost, ensure the stream is always
5883 * available or the range of this frame is not consumed before
5884 * resending it.
5885 */
5886 node = eb64_lookup(&qc->streams_by_id, strm->id);
5887 if (!node) {
Frédéric Lécaillefdc1b962022-05-31 12:04:42 +02005888 TRACE_PROTO("released stream", QUIC_EV_CONN_PRSAFRM, qc, cf);
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02005889 LIST_DELETE(&cf->list);
5890 pool_free(pool_head_quic_frame, cf);
5891 continue;
5892 }
5893
5894 stream_desc = eb64_entry(node, struct qc_stream_desc, by_id);
5895 if (strm->offset.key + strm->len <= stream_desc->ack_offset) {
5896 TRACE_PROTO("ignored frame frame in already acked range",
Frédéric Lécaillefdc1b962022-05-31 12:04:42 +02005897 QUIC_EV_CONN_PRSAFRM, qc, cf);
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02005898 LIST_DELETE(&cf->list);
5899 pool_free(pool_head_quic_frame, cf);
5900 continue;
5901 }
5902 else if (strm->offset.key < stream_desc->ack_offset) {
5903 strm->offset.key = stream_desc->ack_offset;
5904 TRACE_PROTO("updated partially acked frame",
Frédéric Lécaillefdc1b962022-05-31 12:04:42 +02005905 QUIC_EV_CONN_PRSAFRM, qc, cf);
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02005906 }
5907 }
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005908 /* Note that these frames are accepted in short packets only without
5909 * "Length" packet field. Here, <*len> is used only to compute the
5910 * sum of the lengths of the already built frames for this packet.
Frédéric Lécailled8b84432021-12-10 15:18:36 +01005911 *
5912 * Compute the length of this STREAM frame "header" made a all the field
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005913 * excepting the variable ones. Note that +1 is for the type of this frame.
5914 */
5915 hlen = 1 + quic_int_getsize(cf->stream.id) +
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02005916 ((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 +02005917 /* Compute the data length of this STREAM frame. */
5918 avail_room = room - hlen - *len;
Frédéric Lécailled8b84432021-12-10 15:18:36 +01005919 TRACE_PROTO(" New STREAM frame build (room, len)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005920 QUIC_EV_CONN_BCFRMS, qc, &room, len);
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02005921 if ((ssize_t)avail_room <= 0)
5922 continue;
5923
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005924 if (cf->type & QUIC_STREAM_FRAME_TYPE_LEN_BIT) {
5925 dlen = max_available_room(avail_room, &dlen_sz);
5926 if (dlen > cf->stream.len) {
5927 dlen = cf->stream.len;
5928 }
5929 dlen_sz = quic_int_getsize(dlen);
5930 flen = hlen + dlen_sz + dlen;
5931 }
5932 else {
Frédéric Lécaille628e89c2022-06-24 12:13:53 +02005933 dlen = QUIC_MIN((uint64_t)avail_room, cf->stream.len);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005934 flen = hlen + dlen;
5935 }
5936 TRACE_PROTO(" STREAM data length (hlen, stream.len, dlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005937 QUIC_EV_CONN_BCFRMS, qc, &hlen, &cf->stream.len, &dlen);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005938 TRACE_PROTO(" STREAM frame length (flen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005939 QUIC_EV_CONN_BCFRMS, qc, &flen);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005940 /* Add the STREAM data length and its encoded length to the packet
5941 * length and the length of this length.
5942 */
5943 *len += flen;
5944 room -= flen;
5945 if (dlen == cf->stream.len) {
5946 /* <cf> STREAM data have been consumed. */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01005947 LIST_DELETE(&cf->list);
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005948 LIST_APPEND(outlist, &cf->list);
Amaury Denoyelle54445d02022-03-10 16:44:14 +01005949
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02005950 /* The MUX stream might be released at this
5951 * stage. This can most notably happen on
5952 * retransmission.
5953 */
5954 if (qc->mux_state == QC_MUX_READY &&
5955 !cf->stream.stream->release) {
5956 qcc_streams_sent_done(cf->stream.stream->ctx,
5957 cf->stream.len,
5958 cf->stream.offset.key);
5959 }
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005960 }
5961 else {
5962 struct quic_frame *new_cf;
Amaury Denoyelle642ab062022-02-23 10:54:42 +01005963 struct buffer cf_buf;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005964
5965 new_cf = pool_zalloc(pool_head_quic_frame);
5966 if (!new_cf) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01005967 TRACE_PROTO("No memory for new STREAM frame", QUIC_EV_CONN_BCFRMS, qc);
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02005968 continue;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005969 }
5970
Frédéric Lécailleb9171912022-04-21 17:32:10 +02005971 LIST_INIT(&new_cf->reflist);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005972 new_cf->type = cf->type;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02005973 new_cf->stream.stream = cf->stream.stream;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02005974 new_cf->stream.buf = cf->stream.buf;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005975 new_cf->stream.id = cf->stream.id;
5976 if (cf->type & QUIC_STREAM_FRAME_TYPE_OFF_BIT)
5977 new_cf->stream.offset = cf->stream.offset;
5978 new_cf->stream.len = dlen;
5979 new_cf->type |= QUIC_STREAM_FRAME_TYPE_LEN_BIT;
5980 /* FIN bit reset */
5981 new_cf->type &= ~QUIC_STREAM_FRAME_TYPE_FIN_BIT;
5982 new_cf->stream.data = cf->stream.data;
Frédéric Lécailleedc81462022-02-25 17:44:29 +01005983 LIST_APPEND(outlist, &new_cf->list);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005984 cf->type |= QUIC_STREAM_FRAME_TYPE_OFF_BIT;
5985 /* Consume <dlen> bytes of the current frame. */
Amaury Denoyelle642ab062022-02-23 10:54:42 +01005986 cf_buf = b_make(b_orig(cf->stream.buf),
5987 b_size(cf->stream.buf),
5988 (char *)cf->stream.data - b_orig(cf->stream.buf), 0);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02005989 cf->stream.len -= dlen;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02005990 cf->stream.offset.key += dlen;
Amaury Denoyelle642ab062022-02-23 10:54:42 +01005991 cf->stream.data = (unsigned char *)b_peek(&cf_buf, dlen);
Amaury Denoyelle54445d02022-03-10 16:44:14 +01005992
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02005993 /* The MUX stream might be released at this
5994 * stage. This can most notably happen on
5995 * retransmission.
5996 */
5997 if (qc->mux_state == QC_MUX_READY &&
5998 !cf->stream.stream->release) {
5999 qcc_streams_sent_done(new_cf->stream.stream->ctx,
6000 new_cf->stream.len,
6001 new_cf->stream.offset.key);
6002 }
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006003 }
Amaury Denoyelle54445d02022-03-10 16:44:14 +01006004
6005 /* TODO the MUX is notified about the frame sending via
6006 * previous qcc_streams_sent_done call. However, the
6007 * sending can fail later, for example if the sendto
6008 * system call returns an error. As the MUX has been
6009 * notified, the transport layer is responsible to
6010 * bufferize and resent the announced data later.
6011 */
6012
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006013 break;
6014
6015 default:
6016 flen = qc_frm_len(cf);
6017 BUG_ON(!flen);
6018 if (flen > room)
6019 continue;
6020
6021 *len += flen;
6022 room -= flen;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01006023 LIST_DELETE(&cf->list);
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006024 LIST_APPEND(outlist, &cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006025 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006026 }
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006027
6028 /* Successful status as soon as a frame could be built */
Frédéric Lécailleea604992020-12-24 13:01:37 +01006029 ret = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006030 }
6031
Frédéric Lécailleea604992020-12-24 13:01:37 +01006032 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006033}
6034
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006035/* This function builds a clear packet from <pkt> information (its type)
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006036 * into a buffer with <pos> as position pointer and <qel> as QUIC TLS encryption
6037 * level for <conn> QUIC connection and <qel> as QUIC TLS encryption level,
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01006038 * filling the buffer with as much frames as possible from <frms> list of
6039 * prebuilt frames.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006040 * 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 +02006041 * 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 +02006042 * having returned from this function.
6043 * 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 +01006044 * number field in this packet. <pn_len> will also have the packet number
6045 * length as value.
6046 *
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006047 * Return 1 if succeeded (enough room to buile this packet), O if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006048 */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006049static int qc_do_build_pkt(unsigned char *pos, const unsigned char *end,
6050 size_t dglen, struct quic_tx_packet *pkt,
6051 int64_t pn, size_t *pn_len, unsigned char **buf_pn,
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02006052 int force_ack, int padding, int cc, int probe,
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01006053 struct quic_enc_level *qel, struct quic_conn *qc,
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006054 const struct quic_version *ver, struct list *frms)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006055{
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006056 unsigned char *beg;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006057 size_t len, len_sz, len_frms, padding_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006058 struct quic_frame frm = { .type = QUIC_FT_CRYPTO, };
6059 struct quic_frame ack_frm = { .type = QUIC_FT_ACK, };
Amaury Denoyellef9e190e2022-05-23 16:12:15 +02006060 struct quic_frame cc_frm = { };
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006061 size_t ack_frm_len, head_len;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01006062 int64_t rx_largest_acked_pn;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006063 int add_ping_frm;
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006064 struct list frm_list = LIST_HEAD_INIT(frm_list);
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01006065 struct quic_frame *cf;
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02006066 int must_ack;
6067 int nb_aepkts_since_last_ack;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006068
Frédéric Lécailleea604992020-12-24 13:01:37 +01006069 /* Length field value with CRYPTO frames if present. */
6070 len_frms = 0;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006071 beg = pos;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006072 /* When not probing, and no immediate close is required, reduce the size of this
6073 * buffer to respect the congestion controller window.
6074 * 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 +01006075 */
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006076 if (!probe && !LIST_ISEMPTY(frms) && !cc) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006077 size_t path_room;
6078
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006079 path_room = quic_path_prep_data(qc->path);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006080 if (end - beg > path_room)
6081 end = beg + path_room;
6082 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006083
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006084 /* Ensure there is enough room for the TLS encryption tag and a zero token
6085 * length field if any.
6086 */
6087 if (end - pos < QUIC_TLS_TAG_LEN +
6088 (pkt->type == QUIC_PACKET_TYPE_INITIAL ? 1 : 0))
6089 goto no_room;
6090
6091 end -= QUIC_TLS_TAG_LEN;
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02006092 rx_largest_acked_pn = qel->pktns->rx.largest_acked_pn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006093 /* packet number length */
Frédéric Lécaille141982a2022-03-15 18:44:20 +01006094 *pn_len = quic_packet_number_length(pn, rx_largest_acked_pn);
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006095 /* Build the header */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006096 if ((pkt->type == QUIC_PACKET_TYPE_SHORT &&
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006097 !quic_build_packet_short_header(&pos, end, *pn_len, qc, qel->tls_ctx.flags)) ||
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006098 (pkt->type != QUIC_PACKET_TYPE_SHORT &&
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006099 !quic_build_packet_long_header(&pos, end, pkt->type, *pn_len, qc, ver)))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006100 goto no_room;
6101
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006102 /* XXX FIXME XXX Encode the token length (0) for an Initial packet. */
6103 if (pkt->type == QUIC_PACKET_TYPE_INITIAL)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006104 *pos++ = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006105 head_len = pos - beg;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006106 /* Build an ACK frame if required. */
6107 ack_frm_len = 0;
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02006108 nb_aepkts_since_last_ack = qel->pktns->rx.nb_aepkts_since_last_ack;
6109 must_ack = !qel->pktns->tx.pto_probe &&
6110 (force_ack || ((qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) &&
6111 (LIST_ISEMPTY(frms) || nb_aepkts_since_last_ack >= QUIC_MAX_RX_AEPKTS_SINCE_LAST_ACK)));
6112 if (force_ack || must_ack) {
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02006113 struct quic_arngs *arngs = &qel->pktns->rx.arngs;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006114 BUG_ON(eb_is_empty(&qel->pktns->rx.arngs.root));
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02006115 ack_frm.tx_ack.arngs = arngs;
6116 if (qel->pktns->flags & QUIC_FL_PKTNS_NEW_LARGEST_PN) {
6117 qel->pktns->tx.ack_delay =
6118 quic_compute_ack_delay_us(qel->pktns->rx.largest_time_received, qc);
6119 qel->pktns->flags &= ~QUIC_FL_PKTNS_NEW_LARGEST_PN;
6120 }
6121 ack_frm.tx_ack.ack_delay = qel->pktns->tx.ack_delay;
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006122 /* XXX BE CAREFUL XXX : here we reserved at least one byte for the
6123 * smallest frame (PING) and <*pn_len> more for the packet number. Note
6124 * that from here, we do not know if we will have to send a PING frame.
6125 * This will be decided after having computed the ack-eliciting frames
6126 * to be added to this packet.
6127 */
6128 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 +01006129 if (!ack_frm_len)
6130 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006131 }
6132
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006133 /* Length field value without the ack-eliciting frames. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006134 len = ack_frm_len + *pn_len;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01006135 len_frms = 0;
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01006136 if (!cc && !LIST_ISEMPTY(frms)) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006137 ssize_t room = end - pos;
Frédéric Lécailleea604992020-12-24 13:01:37 +01006138
Frédéric Lécailleb823bb72022-03-31 20:26:18 +02006139 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, frms);
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006140 /* Initialize the length of the frames built below to <len>.
6141 * If any frame could be successfully built by qc_build_frms(),
6142 * we will have len_frms > len.
6143 */
6144 len_frms = len;
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006145 if (!qc_build_frms(&frm_list, frms,
6146 end - pos, &len_frms, pos - beg, qel, qc)) {
Frédéric Lécailleea604992020-12-24 13:01:37 +01006147 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006148 qc, NULL, NULL, &room);
Frédéric Lécaille834399c2022-04-25 17:17:07 +02006149 if (!ack_frm_len && !qel->pktns->tx.pto_probe)
6150 goto no_room;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006151 }
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006152 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006153
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006154 /* Length (of the remaining data). Must not fail because, the buffer size
6155 * has been checked above. Note that we have reserved QUIC_TLS_TAG_LEN bytes
6156 * for the encryption tag. It must be taken into an account for the length
6157 * of this packet.
6158 */
6159 if (len_frms)
6160 len = len_frms + QUIC_TLS_TAG_LEN;
6161 else
6162 len += QUIC_TLS_TAG_LEN;
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006163 /* CONNECTION_CLOSE frame */
6164 if (cc) {
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02006165 cc_frm.type = qc->err.app ?
Amaury Denoyellef9e190e2022-05-23 16:12:15 +02006166 QUIC_FT_CONNECTION_CLOSE_APP : QUIC_FT_CONNECTION_CLOSE;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006167
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02006168 cc_frm.connection_close.error_code = qc->err.code;
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006169 len += qc_frm_len(&cc_frm);
6170 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006171 add_ping_frm = 0;
6172 padding_len = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006173 len_sz = quic_int_getsize(len);
6174 /* Add this packet size to <dglen> */
6175 dglen += head_len + len_sz + len;
6176 if (padding && dglen < QUIC_INITIAL_PACKET_MINLEN) {
6177 /* This is a maximum padding size */
6178 padding_len = QUIC_INITIAL_PACKET_MINLEN - dglen;
6179 /* The length field value is of this packet is <len> + <padding_len>
6180 * the size of which may be greater than the initial computed size
Ilya Shipitsin5e87bcf2021-12-25 11:45:52 +05006181 * <len_sz>. So, let's deduce the difference between these to packet
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006182 * sizes from <padding_len>.
6183 */
6184 padding_len -= quic_int_getsize(len + padding_len) - len_sz;
6185 len += padding_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006186 }
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006187 else if (LIST_ISEMPTY(&frm_list) || len_frms == len) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006188 if (qel->pktns->tx.pto_probe) {
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006189 /* If we cannot send a frame, we send a PING frame. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006190 add_ping_frm = 1;
6191 len += 1;
6192 }
6193 /* 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 +01006194 if (!ack_frm_len && !cc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006195 len += padding_len = QUIC_PACKET_PN_MAXLEN - *pn_len;
6196 }
6197
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006198 if (pkt->type != QUIC_PACKET_TYPE_SHORT && !quic_enc_int(&pos, end, len))
6199 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006200
6201 /* Packet number field address. */
6202 *buf_pn = pos;
6203
6204 /* Packet number encoding. */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006205 if (!quic_packet_number_encode(&pos, end, pn, *pn_len))
6206 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006207
Frédéric Lécaille141982a2022-03-15 18:44:20 +01006208 if (ack_frm_len) {
6209 if (!qc_build_frm(&pos, end, &ack_frm, pkt, qc))
6210 goto no_room;
6211
6212 pkt->largest_acked_pn = quic_pktns_get_largest_acked_pn(qel->pktns);
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006213 pkt->flags |= QUIC_FL_TX_PACKET_ACK;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01006214 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006215
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006216 /* Ack-eliciting frames */
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006217 if (!LIST_ISEMPTY(&frm_list)) {
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006218 list_for_each_entry(cf, &frm_list, list) {
Frédéric Lécailledcc74ff2022-03-18 17:49:29 +01006219 unsigned char *spos = pos;
6220
6221 if (!qc_build_frm(&spos, end, cf, pkt, qc)) {
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01006222 ssize_t room = end - pos;
6223 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006224 qc, NULL, NULL, &room);
Frédéric Lécailledcc74ff2022-03-18 17:49:29 +01006225 /* TODO: this should not have happened if qc_build_frms()
6226 * had correctly computed and sized the frames to be
6227 * added to this packet. Note that <cf> was added
6228 * from <frm_list> to <frms> list by qc_build_frms().
6229 */
6230 LIST_DELETE(&cf->list);
6231 LIST_INSERT(frms, &cf->list);
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006232 break;
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01006233 }
Frédéric Lécailledcc74ff2022-03-18 17:49:29 +01006234
6235 pos = spos;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01006236 quic_tx_packet_refinc(pkt);
6237 cf->pkt = pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006238 }
6239 }
6240
6241 /* Build a PING frame if needed. */
6242 if (add_ping_frm) {
6243 frm.type = QUIC_FT_PING;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006244 if (!qc_build_frm(&pos, end, &frm, pkt, qc))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006245 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006246 }
6247
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006248 /* Build a CONNECTION_CLOSE frame if needed. */
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02006249 if (cc) {
6250 if (!qc_build_frm(&pos, end, &cc_frm, pkt, qc))
6251 goto no_room;
6252
6253 pkt->flags |= QUIC_FL_TX_PACKET_CC;
6254 }
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006255
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006256 /* Build a PADDING frame if needed. */
6257 if (padding_len) {
6258 frm.type = QUIC_FT_PADDING;
6259 frm.padding.len = padding_len;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006260 if (!qc_build_frm(&pos, end, &frm, pkt, qc))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006261 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006262 }
6263
Frédéric Lécaille466e9da2021-12-29 12:04:13 +01006264 /* If this packet is ack-eliciting and we are probing let's
6265 * decrement the PTO probe counter.
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006266 */
Frédéric Lécaille466e9da2021-12-29 12:04:13 +01006267 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING &&
6268 qel->pktns->tx.pto_probe)
6269 qel->pktns->tx.pto_probe--;
6270
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006271 pkt->len = pos - beg;
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006272 LIST_SPLICE(&pkt->frms, &frm_list);
Frédéric Lécailleb823bb72022-03-31 20:26:18 +02006273 TRACE_PROTO("Packet ack-eliciting frames", QUIC_EV_CONN_HPKT, qc, pkt);
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006274
6275 return 1;
6276
6277 no_room:
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006278 /* Replace the pre-built frames which could not be add to this packet */
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01006279 LIST_SPLICE(frms, &frm_list);
Frédéric Lécailled8b798d2022-04-25 17:48:40 +02006280 TRACE_PROTO("Remaining ack-eliciting frames", QUIC_EV_CONN_FRMLIST, qc, frms);
Frédéric Lécailleb823bb72022-03-31 20:26:18 +02006281
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006282 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006283}
6284
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02006285static inline void quic_tx_packet_init(struct quic_tx_packet *pkt, int type)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006286{
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02006287 pkt->type = type;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006288 pkt->len = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006289 pkt->in_flight_len = 0;
Frédéric Lécaille0371cd52021-12-13 12:30:54 +01006290 pkt->pn_node.key = (uint64_t)-1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006291 LIST_INIT(&pkt->frms);
Frédéric Lécaille2899fe22022-03-21 10:43:53 +01006292 pkt->time_sent = TICK_ETERNITY;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006293 pkt->next = NULL;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01006294 pkt->largest_acked_pn = -1;
Frédéric Lécaille2899fe22022-03-21 10:43:53 +01006295 pkt->flags = 0;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01006296 pkt->refcnt = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006297}
6298
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006299/* Build a packet into <buf> packet buffer with <pkt_type> as packet
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01006300 * type for <qc> QUIC connection from <qel> encryption level from <frms> list
6301 * of prebuilt frames.
6302 *
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006303 * Return -2 if the packet could not be allocated or encrypted for any reason,
6304 * -1 if there was not enough room to build a packet.
Frédéric Lécaillee9a974a2022-03-13 19:19:12 +01006305 * XXX NOTE XXX
6306 * If you provide provide qc_build_pkt() with a big enough buffer to build a packet as big as
6307 * possible (to fill an MTU), the unique reason why this function may fail is the congestion
6308 * control window limitation.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006309 */
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006310static struct quic_tx_packet *qc_build_pkt(unsigned char **pos,
6311 const unsigned char *buf_end,
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006312 struct quic_enc_level *qel,
6313 struct quic_tls_ctx *tls_ctx, struct list *frms,
6314 struct quic_conn *qc, const struct quic_version *ver,
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02006315 size_t dglen, int pkt_type, int force_ack,
6316 int padding, int probe, int cc, int *err)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006317{
6318 /* The pointer to the packet number field. */
6319 unsigned char *buf_pn;
6320 unsigned char *beg, *end, *payload;
6321 int64_t pn;
6322 size_t pn_len, payload_len, aad_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006323 struct quic_tx_packet *pkt;
6324
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006325 TRACE_ENTER(QUIC_EV_CONN_HPKT, qc, NULL, qel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006326 *err = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006327 pkt = pool_alloc(pool_head_quic_tx_packet);
6328 if (!pkt) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006329 TRACE_DEVEL("Not enough memory for a new packet", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006330 *err = -2;
6331 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006332 }
6333
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02006334 quic_tx_packet_init(pkt, pkt_type);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006335 beg = *pos;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006336 pn_len = 0;
6337 buf_pn = NULL;
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006338
6339 pn = qel->pktns->tx.next_pn + 1;
6340 if (!qc_do_build_pkt(*pos, buf_end, dglen, pkt, pn, &pn_len, &buf_pn,
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02006341 force_ack, padding, cc, probe, qel, qc, ver, frms)) {
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006342 *err = -1;
6343 goto err;
6344 }
6345
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006346 end = beg + pkt->len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006347 payload = buf_pn + pn_len;
6348 payload_len = end - payload;
6349 aad_len = payload - beg;
6350
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01006351 if (!quic_packet_encrypt(payload, payload_len, beg, aad_len, pn, tls_ctx, qc)) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006352 *err = -2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006353 goto err;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006354 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006355
6356 end += QUIC_TLS_TAG_LEN;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006357 pkt->len += QUIC_TLS_TAG_LEN;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006358 if (!quic_apply_header_protection(beg, buf_pn, pn_len,
6359 tls_ctx->tx.hp, tls_ctx->tx.hp_key)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006360 TRACE_DEVEL("Could not apply the header protection", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006361 *err = -2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006362 goto err;
6363 }
6364
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006365 /* Consume a packet number */
6366 qel->pktns->tx.next_pn++;
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +01006367 qc->tx.prep_bytes += pkt->len;
Frédéric Lécaille676b8492022-03-10 10:38:20 +01006368 if (qc->tx.prep_bytes >= 3 * qc->rx.bytes && !quic_peer_validated_addr(qc))
Frédéric Lécaillefc790062022-03-28 17:10:31 +02006369 qc->flags |= QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006370 /* Now that a correct packet is built, let us consume <*pos> buffer. */
6371 *pos = end;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006372 /* Attach the built packet to its tree. */
Frédéric Lécaillea7348f62021-08-03 16:50:14 +02006373 pkt->pn_node.key = pn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006374 /* Set the packet in fligth length for in flight packet only. */
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006375 if (pkt->flags & QUIC_FL_TX_PACKET_IN_FLIGHT) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006376 pkt->in_flight_len = pkt->len;
6377 qc->path->prep_in_flight += pkt->len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006378 }
Frédéric Lécaille47756802022-03-25 09:12:16 +01006379 /* Always reset this flags */
6380 qc->flags &= ~QUIC_FL_CONN_IMMEDIATE_CLOSE;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006381 if (pkt->flags & QUIC_FL_TX_PACKET_ACK) {
6382 qel->pktns->flags &= ~QUIC_FL_PKTNS_ACK_REQUIRED;
6383 qel->pktns->rx.nb_aepkts_since_last_ack = 0;
6384 }
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02006385
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006386 pkt->pktns = qel->pktns;
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006387 TRACE_LEAVE(QUIC_EV_CONN_HPKT, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006388
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006389 return pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006390
6391 err:
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01006392 /* TODO: what about the frames which have been built
6393 * for this packet.
6394 */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006395 free_quic_tx_packet(pkt);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006396 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_HPKT, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006397 return NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006398}
6399
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006400
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01006401/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6402 * event subscriber <es> is not allowed to change from a previous call as long
6403 * as at least one event is still subscribed. The <event_type> must only be a
6404 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
6405 */
6406static int quic_conn_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
6407{
Willy Tarreau784b8682022-04-11 14:18:10 +02006408 struct qcc *qcc = conn->handle.qc->qcc;
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02006409
6410 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
6411 BUG_ON(qcc->subs && qcc->subs != es);
6412
6413 es->events |= event_type;
6414 qcc->subs = es;
6415
6416 if (event_type & SUB_RETRY_RECV)
Willy Tarreau784b8682022-04-11 14:18:10 +02006417 TRACE_DEVEL("subscribe(recv)", QUIC_EV_CONN_XPRTRECV, conn->handle.qc, qcc);
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02006418
6419 if (event_type & SUB_RETRY_SEND)
Willy Tarreau784b8682022-04-11 14:18:10 +02006420 TRACE_DEVEL("subscribe(send)", QUIC_EV_CONN_XPRTSEND, conn->handle.qc, qcc);
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02006421
6422 return 0;
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01006423}
6424
6425/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6426 * The <es> pointer is not allowed to differ from the one passed to the
6427 * subscribe() call. It always returns zero.
6428 */
6429static int quic_conn_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
6430{
6431 return conn_unsubscribe(conn, xprt_ctx, event_type, es);
6432}
6433
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01006434/* Store in <xprt_ctx> the context attached to <conn>.
6435 * Returns always 0.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006436 */
6437static int qc_conn_init(struct connection *conn, void **xprt_ctx)
6438{
Amaury Denoyelle7ca7c842021-12-22 18:20:38 +01006439 struct quic_conn *qc = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006440
6441 TRACE_ENTER(QUIC_EV_CONN_NEW, conn);
6442
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01006443 /* do not store the context if already set */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006444 if (*xprt_ctx)
6445 goto out;
6446
Willy Tarreau784b8682022-04-11 14:18:10 +02006447 *xprt_ctx = conn->handle.qc->xprt_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006448
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006449 out:
Frédéric Lécaillefde2a982021-12-27 15:12:09 +01006450 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006451
6452 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006453}
6454
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02006455/* Start the QUIC transport layer */
6456static int qc_xprt_start(struct connection *conn, void *ctx)
6457{
6458 struct quic_conn *qc;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02006459 struct ssl_sock_ctx *qctx = ctx;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02006460
Willy Tarreau784b8682022-04-11 14:18:10 +02006461 qc = conn->handle.qc;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01006462 if (qcc_install_app_ops(qc->qcc, qc->app_ops)) {
6463 TRACE_PROTO("Cannot install app layer", QUIC_EV_CONN_LPKT, qc);
Amaury Denoyelle5d774de2022-04-14 14:59:35 +02006464 /* prepare a CONNECTION_CLOSE frame */
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02006465 quic_set_connection_close(qc, quic_err_transport(QC_ERR_APPLICATION_ERROR));
Amaury Denoyelle05d4ae62022-04-13 17:40:26 +02006466 return -1;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01006467 }
6468
6469 /* mux-quic can now be considered ready. */
6470 qc->mux_state = QC_MUX_READY;
6471
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02006472 tasklet_wakeup(qctx->wait_event.tasklet);
6473 return 1;
6474}
6475
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02006476static struct ssl_sock_ctx *qc_get_ssl_sock_ctx(struct connection *conn)
6477{
Willy Tarreau784b8682022-04-11 14:18:10 +02006478 if (!conn || conn->xprt != xprt_get(XPRT_QUIC) || !conn->handle.qc || !conn->xprt_ctx)
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02006479 return NULL;
6480
Willy Tarreau784b8682022-04-11 14:18:10 +02006481 return conn->handle.qc->xprt_ctx;
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02006482}
6483
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006484/* transport-layer operations for QUIC connections. */
6485static struct xprt_ops ssl_quic = {
Amaury Denoyelle414cac52021-09-22 11:14:37 +02006486 .close = quic_close,
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01006487 .subscribe = quic_conn_subscribe,
6488 .unsubscribe = quic_conn_unsubscribe,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006489 .init = qc_conn_init,
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02006490 .start = qc_xprt_start,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006491 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
6492 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01006493 .get_alpn = ssl_sock_get_alpn,
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02006494 .get_ssl_sock_ctx = qc_get_ssl_sock_ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006495 .name = "QUIC",
6496};
6497
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006498static void __quic_conn_init(void)
6499{
6500 ha_quic_meth = BIO_meth_new(0x666, "ha QUIC methods");
6501 xprt_register(XPRT_QUIC, &ssl_quic);
6502}
Willy Tarreau79367f92022-04-25 19:18:24 +02006503INITCALL0(STG_REGISTER, __quic_conn_init);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006504
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006505static void __quic_conn_deinit(void)
6506{
6507 BIO_meth_free(ha_quic_meth);
6508}
Willy Tarreau79367f92022-04-25 19:18:24 +02006509REGISTER_POST_DEINIT(__quic_conn_deinit);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006510
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01006511/* Read all the QUIC packets found in <buf> from QUIC connection with <owner>
6512 * as owner calling <func> function.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05006513 * Return the number of bytes read if succeeded, -1 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006514 */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006515struct task *quic_lstnr_dghdlr(struct task *t, void *ctx, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006516{
6517 unsigned char *pos;
6518 const unsigned char *end;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006519 struct quic_dghdlr *dghdlr = ctx;
6520 struct quic_dgram *dgram;
6521 int first_pkt = 1;
Frédéric Lécaille1b0707f2022-06-30 11:28:56 +02006522 struct list *tasklist_head = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006523
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01006524 while ((dgram = MT_LIST_POP(&dghdlr->dgrams, typeof(dgram), mt_list))) {
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01006525 pos = dgram->buf;
6526 end = pos + dgram->len;
6527 do {
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01006528 struct quic_rx_packet *pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006529
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01006530 pkt = pool_zalloc(pool_head_quic_rx_packet);
6531 if (!pkt)
6532 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006533
Amaury Denoyelle23f908c2022-06-20 10:58:03 +02006534 LIST_INIT(&pkt->qc_rx_pkt_list);
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02006535 pkt->time_received = now_ms;
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01006536 quic_rx_packet_refinc(pkt);
Frédéric Lécaille1b0707f2022-06-30 11:28:56 +02006537 qc_lstnr_pkt_rcv(pos, end, pkt, first_pkt, dgram, &tasklist_head);
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01006538 first_pkt = 0;
6539 pos += pkt->len;
6540 quic_rx_packet_refdec(pkt);
Amaury Denoyelle23f908c2022-06-20 10:58:03 +02006541
6542 /* Free rejected packets */
6543 if (!pkt->refcnt) {
6544 BUG_ON(LIST_INLIST(&pkt->qc_rx_pkt_list));
6545 pool_free(pool_head_quic_rx_packet, pkt);
6546 }
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01006547 } while (pos < end);
6548
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01006549 /* Increasing the received bytes counter by the UDP datagram length
6550 * if this datagram could be associated to a connection.
6551 */
6552 if (dgram->qc)
6553 dgram->qc->rx.bytes += dgram->len;
Frédéric Lécaille841bf5e2022-02-02 09:41:27 +01006554
6555 /* Mark this datagram as consumed */
6556 HA_ATOMIC_STORE(&dgram->buf, NULL);
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01006557 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006558
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006559 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006560
6561 err:
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006562 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006563}
6564
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01006565/* Retreive the DCID from a QUIC datagram or packet with <buf> as first octet.
6566 * Returns 1 if succeeded, 0 if not.
6567 */
Frédéric Lécaille6492e662022-05-17 17:23:16 +02006568int quic_get_dgram_dcid(unsigned char *buf, const unsigned char *end,
6569 unsigned char **dcid, size_t *dcid_len)
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01006570{
6571 int long_header;
6572 size_t minlen, skip;
6573
6574 if (!(*buf & QUIC_PACKET_FIXED_BIT))
6575 goto err;
6576
6577 long_header = *buf & QUIC_PACKET_LONG_HEADER_BIT;
Frédéric Lécaille36b28ed2022-05-09 18:08:13 +02006578 minlen = long_header ? QUIC_LONG_PACKET_MINLEN :
6579 QUIC_SHORT_PACKET_MINLEN + QUIC_HAP_CID_LEN + QUIC_TLS_TAG_LEN;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01006580 skip = long_header ? QUIC_LONG_PACKET_DCID_OFF : QUIC_SHORT_PACKET_DCID_OFF;
Frédéric Lécaillebfa32362022-02-02 10:44:36 +01006581 if (end - buf <= minlen)
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01006582 goto err;
6583
6584 buf += skip;
6585 *dcid_len = long_header ? *buf++ : QUIC_HAP_CID_LEN;
6586 if (*dcid_len > QUIC_CID_MAXLEN || end - buf <= *dcid_len)
6587 goto err;
6588
6589 *dcid = buf;
6590
6591 return 1;
6592
6593 err:
6594 TRACE_PROTO("wrong datagram", QUIC_EV_CONN_LPKT);
6595 return 0;
6596}
6597
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02006598/* Notify the MUX layer if alive about an imminent close of <qc>. */
6599void qc_notify_close(struct quic_conn *qc)
6600{
6601 if (qc->flags & QUIC_FL_CONN_NOTIFY_CLOSE)
6602 return;
6603
6604 qc->flags |= QUIC_FL_CONN_NOTIFY_CLOSE;
6605
6606 /* wake up the MUX */
6607 if (qc->mux_state == QC_MUX_READY && qc->conn->mux->wake)
6608 qc->conn->mux->wake(qc->conn);
6609}
6610
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006611/*
6612 * Local variables:
6613 * c-indent-level: 8
6614 * c-basic-offset: 8
6615 * End:
6616 */