blob: e366e2049b4f92bdefe1dfd1cadf289b29709475 [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écaillea8b2f842022-08-10 17:56:45 +0200128 { .mask = QUIC_EV_CONN_TXPKT, .name = "tx_pkt", .desc = "TX packet" },
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100129 { .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écaillea8b2f842022-08-10 17:56:45 +0200131 { .mask = QUIC_EV_CONN_IO_CB, .name = "qc_io_cb", .desc = "QUIC conn. I/O processing" },
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" },
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200141 { .mask = QUIC_EV_CONN_RXPKT, .name = "rx_pkt", .desc = "RX packet" },
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100142 { .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écaillea8b2f842022-08-10 17:56:45 +0200162 { .mask = QUIC_EV_CONN_IDLE_TIMER, .name = "idle_timer", .desc = "idle timer task"},
163 { .mask = QUIC_EV_CONN_SUB, .name = "xprt_sub", .desc = "RX/TX subcription or unsubscription to QUIC xprt"},
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100164 { /* end */ }
165};
166
167static const struct name_desc quic_trace_lockon_args[4] = {
168 /* arg1 */ { /* already used by the connection */ },
169 /* arg2 */ { .name="quic", .desc="QUIC transport" },
170 /* arg3 */ { },
171 /* arg4 */ { }
172};
173
174static const struct name_desc quic_trace_decoding[] = {
175#define QUIC_VERB_CLEAN 1
176 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
177 { /* end */ }
178};
179
180
181struct trace_source trace_quic = {
182 .name = IST("quic"),
183 .desc = "QUIC xprt",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100184 .arg_def = TRC_ARG1_QCON, /* TRACE()'s first argument is always a quic_conn */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100185 .default_cb = quic_trace,
186 .known_events = quic_trace_events,
187 .lockon_args = quic_trace_lockon_args,
188 .decoding = quic_trace_decoding,
189 .report_events = ~0, /* report everything by default */
190};
191
192#define TRACE_SOURCE &trace_quic
193INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
194
195static BIO_METHOD *ha_quic_meth;
196
Willy Tarreaub8dec4a2022-06-23 11:02:08 +0200197DECLARE_POOL(pool_head_quic_tx_ring, "quic_tx_ring", QUIC_TX_RING_BUFSZ);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +0100198DECLARE_POOL(pool_head_quic_conn_rxbuf, "quic_conn_rxbuf", QUIC_CONN_RX_BUFSZ);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100199DECLARE_STATIC_POOL(pool_head_quic_conn_ctx,
Willy Tarreaub8dec4a2022-06-23 11:02:08 +0200200 "quic_conn_ctx", sizeof(struct ssl_sock_ctx));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100201DECLARE_STATIC_POOL(pool_head_quic_conn, "quic_conn", sizeof(struct quic_conn));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100202DECLARE_POOL(pool_head_quic_connection_id,
Willy Tarreaub8dec4a2022-06-23 11:02:08 +0200203 "quic_connnection_id", sizeof(struct quic_connection_id));
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +0100204DECLARE_POOL(pool_head_quic_dgram, "quic_dgram", sizeof(struct quic_dgram));
Willy Tarreaub8dec4a2022-06-23 11:02:08 +0200205DECLARE_POOL(pool_head_quic_rx_packet, "quic_rx_packet", sizeof(struct quic_rx_packet));
206DECLARE_POOL(pool_head_quic_tx_packet, "quic_tx_packet", sizeof(struct quic_tx_packet));
207DECLARE_STATIC_POOL(pool_head_quic_rx_crypto_frm, "quic_rx_crypto_frm", sizeof(struct quic_rx_crypto_frm));
208DECLARE_STATIC_POOL(pool_head_quic_crypto_buf, "quic_crypto_buf", sizeof(struct quic_crypto_buf));
209DECLARE_POOL(pool_head_quic_frame, "quic_frame", sizeof(struct quic_frame));
210DECLARE_STATIC_POOL(pool_head_quic_arng, "quic_arng", sizeof(struct quic_arng_node));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100211
Frédéric Lécaille9445abc2021-08-04 10:49:51 +0200212static 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 +0200213 struct quic_enc_level *qel, struct quic_tls_ctx *ctx,
214 struct list *frms, struct quic_conn *qc,
215 const struct quic_version *ver, size_t dglen, int pkt_type,
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +0200216 int force_ack, int padding, int probe, int cc, int *err);
Frédéric Lécaille00e24002022-02-18 17:13:45 +0100217static 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 +0100218static void qc_idle_timer_do_rearm(struct quic_conn *qc);
Frédéric Lécaille530601c2022-03-10 15:11:57 +0100219static void qc_idle_timer_rearm(struct quic_conn *qc, int read);
Frédéric Lécaille3fd92f62022-05-19 14:35:20 +0200220static int qc_conn_alloc_ssl_ctx(struct quic_conn *qc);
221static int quic_conn_init_timer(struct quic_conn *qc);
222static int quic_conn_init_idle_timer_task(struct quic_conn *qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100223
Frédéric Lécaillef63921f2020-12-18 09:48:20 +0100224/* Only for debug purpose */
225struct enc_debug_info {
226 unsigned char *payload;
227 size_t payload_len;
228 unsigned char *aad;
229 size_t aad_len;
230 uint64_t pn;
231};
232
233/* Initializes a enc_debug_info struct (only for debug purpose) */
234static inline void enc_debug_info_init(struct enc_debug_info *edi,
235 unsigned char *payload, size_t payload_len,
236 unsigned char *aad, size_t aad_len, uint64_t pn)
237{
238 edi->payload = payload;
239 edi->payload_len = payload_len;
240 edi->aad = aad;
241 edi->aad_len = aad_len;
242 edi->pn = pn;
243}
244
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100245/* Trace callback for QUIC.
246 * These traces always expect that arg1, if non-null, is of type connection.
247 */
248static void quic_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
249 const struct ist where, const struct ist func,
250 const void *a1, const void *a2, const void *a3, const void *a4)
251{
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100252 const struct quic_conn *qc = a1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100253
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100254 if (qc) {
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100255 const struct quic_tls_ctx *tls_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100256
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100257 chunk_appendf(&trace_buf, " : qc@%p", qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200258 if (mask & QUIC_EV_CONN_INIT) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100259 chunk_appendf(&trace_buf, "\n odcid");
260 quic_cid_dump(&trace_buf, &qc->odcid);
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100261 chunk_appendf(&trace_buf, "\n dcid");
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100262 quic_cid_dump(&trace_buf, &qc->dcid);
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100263 chunk_appendf(&trace_buf, "\n scid");
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100264 quic_cid_dump(&trace_buf, &qc->scid);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100265 }
266
Frédéric Lécaillec7785b52022-05-23 09:08:54 +0200267 if (mask & QUIC_EV_TRANSP_PARAMS) {
268 const struct quic_transport_params *p = a2;
Frédéric Lécaille4f5777a2022-06-20 19:39:26 +0200269 quic_transport_params_dump(&trace_buf, qc, p);
Frédéric Lécaillec7785b52022-05-23 09:08:54 +0200270 }
271
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100272 if (mask & QUIC_EV_CONN_ADDDATA) {
273 const enum ssl_encryption_level_t *level = a2;
274 const size_t *len = a3;
275
276 if (level) {
277 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
278
279 chunk_appendf(&trace_buf, " el=%c(%d)", quic_enc_level_char(lvl), lvl);
280 }
281 if (len)
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100282 chunk_appendf(&trace_buf, " len=%llu", (unsigned long long)*len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100283 }
284 if ((mask & QUIC_EV_CONN_ISEC) && qc) {
285 /* Initial read & write secrets. */
286 enum quic_tls_enc_level level = QUIC_TLS_ENC_LEVEL_INITIAL;
287 const unsigned char *rx_sec = a2;
288 const unsigned char *tx_sec = a3;
289
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100290 tls_ctx = &qc->els[level].tls_ctx;
291 if (tls_ctx->flags & QUIC_FL_TLS_SECRETS_SET) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100292 chunk_appendf(&trace_buf, "\n RX el=%c", quic_enc_level_char(level));
293 if (rx_sec)
294 quic_tls_secret_hexdump(&trace_buf, rx_sec, 32);
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100295 quic_tls_keys_hexdump(&trace_buf, &tls_ctx->rx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100296 chunk_appendf(&trace_buf, "\n TX el=%c", quic_enc_level_char(level));
297 if (tx_sec)
298 quic_tls_secret_hexdump(&trace_buf, tx_sec, 32);
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100299 quic_tls_keys_hexdump(&trace_buf, &tls_ctx->tx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100300 }
301 }
302 if (mask & (QUIC_EV_CONN_RSEC|QUIC_EV_CONN_RWSEC)) {
303 const enum ssl_encryption_level_t *level = a2;
304 const unsigned char *secret = a3;
305 const size_t *secret_len = a4;
306
307 if (level) {
308 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
309
310 chunk_appendf(&trace_buf, "\n RX el=%c", quic_enc_level_char(lvl));
311 if (secret && secret_len)
312 quic_tls_secret_hexdump(&trace_buf, secret, *secret_len);
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100313 tls_ctx = &qc->els[lvl].tls_ctx;
314 if (tls_ctx->flags & QUIC_FL_TLS_SECRETS_SET)
315 quic_tls_keys_hexdump(&trace_buf, &tls_ctx->rx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100316 }
317 }
318
319 if (mask & (QUIC_EV_CONN_WSEC|QUIC_EV_CONN_RWSEC)) {
320 const enum ssl_encryption_level_t *level = a2;
321 const unsigned char *secret = a3;
322 const size_t *secret_len = a4;
323
324 if (level) {
325 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
326
327 chunk_appendf(&trace_buf, "\n TX el=%c", quic_enc_level_char(lvl));
328 if (secret && secret_len)
329 quic_tls_secret_hexdump(&trace_buf, secret, *secret_len);
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100330 tls_ctx = &qc->els[lvl].tls_ctx;
331 if (tls_ctx->flags & QUIC_FL_TLS_SECRETS_SET)
332 quic_tls_keys_hexdump(&trace_buf, &tls_ctx->tx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100333 }
334
335 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100336
Frédéric Lécailleb823bb72022-03-31 20:26:18 +0200337 if (mask & QUIC_EV_CONN_FRMLIST) {
338 const struct list *l = a2;
339
340 if (l) {
341 const struct quic_frame *frm;
342 list_for_each_entry(frm, l, list)
343 chunk_frm_appendf(&trace_buf, frm);
344 }
345 }
346
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200347 if (mask & (QUIC_EV_CONN_TXPKT|QUIC_EV_CONN_PAPKT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100348 const struct quic_tx_packet *pkt = a2;
349 const struct quic_enc_level *qel = a3;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100350 const ssize_t *room = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100351
352 if (qel) {
Amaury Denoyelle4fd53d72021-12-21 14:28:26 +0100353 const struct quic_pktns *pktns = qc->pktns;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100354 chunk_appendf(&trace_buf, " qel=%c cwnd=%llu ppif=%lld pif=%llu "
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100355 "if=%llu pp=%u",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100356 quic_enc_level_char_from_qel(qel, qc),
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100357 (unsigned long long)qc->path->cwnd,
358 (unsigned long long)qc->path->prep_in_flight,
359 (unsigned long long)qc->path->in_flight,
360 (unsigned long long)pktns->tx.in_flight,
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100361 pktns->tx.pto_probe);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100362 }
363 if (pkt) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +0200364 const struct quic_frame *frm;
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100365 if (pkt->pn_node.key != (uint64_t)-1)
366 chunk_appendf(&trace_buf, " pn=%llu",(ull)pkt->pn_node.key);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100367 list_for_each_entry(frm, &pkt->frms, list)
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100368 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaille8b6ea172022-01-17 10:51:43 +0100369 chunk_appendf(&trace_buf, " rx.bytes=%llu tx.bytes=%llu",
370 (unsigned long long)qc->rx.bytes,
371 (unsigned long long)qc->tx.bytes);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100372 }
373
374 if (room) {
375 chunk_appendf(&trace_buf, " room=%lld", (long long)*room);
376 chunk_appendf(&trace_buf, " dcid.len=%llu scid.len=%llu",
377 (unsigned long long)qc->dcid.len, (unsigned long long)qc->scid.len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100378 }
379 }
380
Frédéric Lécaille00e24002022-02-18 17:13:45 +0100381 if (mask & QUIC_EV_CONN_IO_CB) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100382 const enum quic_handshake_state *state = a2;
383 const int *err = a3;
384
385 if (state)
386 chunk_appendf(&trace_buf, " state=%s", quic_hdshk_state_str(*state));
387 if (err)
388 chunk_appendf(&trace_buf, " err=%s", ssl_error_str(*err));
389 }
390
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +0100391 if (mask & (QUIC_EV_CONN_TRMHP|QUIC_EV_CONN_ELRMHP|QUIC_EV_CONN_SPKT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100392 const struct quic_rx_packet *pkt = a2;
393 const unsigned long *pktlen = a3;
394 const SSL *ssl = a4;
395
396 if (pkt) {
Frédéric Lécaille3dfd4c42022-04-05 15:29:14 +0200397 chunk_appendf(&trace_buf, " pkt@%p", pkt);
398 if (pkt->type == QUIC_PACKET_TYPE_SHORT && pkt->data)
399 chunk_appendf(&trace_buf, " kp=%d",
400 !!(*pkt->data & QUIC_PACKET_KEY_PHASE_BIT));
401 chunk_appendf(&trace_buf, " el=%c",
402 quic_packet_type_enc_level_char(pkt->type));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100403 if (pkt->pnl)
404 chunk_appendf(&trace_buf, " pnl=%u pn=%llu", pkt->pnl,
405 (unsigned long long)pkt->pn);
406 if (pkt->token_len)
407 chunk_appendf(&trace_buf, " toklen=%llu",
408 (unsigned long long)pkt->token_len);
409 if (pkt->aad_len)
410 chunk_appendf(&trace_buf, " aadlen=%llu",
411 (unsigned long long)pkt->aad_len);
412 chunk_appendf(&trace_buf, " flags=0x%x len=%llu",
413 pkt->flags, (unsigned long long)pkt->len);
414 }
415 if (pktlen)
416 chunk_appendf(&trace_buf, " (%ld)", *pktlen);
417 if (ssl) {
418 enum ssl_encryption_level_t level = SSL_quic_read_level(ssl);
419 chunk_appendf(&trace_buf, " el=%c",
420 quic_enc_level_char(ssl_to_quic_enc_level(level)));
421 }
422 }
423
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200424 if (mask & (QUIC_EV_CONN_RXPKT|QUIC_EV_CONN_PRSHPKT|QUIC_EV_CONN_SSLDATA)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100425 const struct quic_rx_packet *pkt = a2;
426 const struct quic_rx_crypto_frm *cf = a3;
427 const SSL *ssl = a4;
428
429 if (pkt)
430 chunk_appendf(&trace_buf, " pkt@%p el=%c pn=%llu", pkt,
431 quic_packet_type_enc_level_char(pkt->type),
432 (unsigned long long)pkt->pn);
433 if (cf)
434 chunk_appendf(&trace_buf, " cfoff=%llu cflen=%llu",
435 (unsigned long long)cf->offset_node.key,
436 (unsigned long long)cf->len);
437 if (ssl) {
438 enum ssl_encryption_level_t level = SSL_quic_read_level(ssl);
Frédéric Lécaille57e6e9e2021-09-23 18:10:56 +0200439 chunk_appendf(&trace_buf, " rel=%c",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100440 quic_enc_level_char(ssl_to_quic_enc_level(level)));
441 }
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100442
Amaury Denoyelle57e6db72022-07-13 15:07:56 +0200443 if (qc->err.code)
444 chunk_appendf(&trace_buf, " err_code=0x%llx", (ull)qc->err.code);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100445 }
446
447 if (mask & (QUIC_EV_CONN_PRSFRM|QUIC_EV_CONN_BFRM)) {
448 const struct quic_frame *frm = a2;
449
450 if (frm)
451 chunk_appendf(&trace_buf, " %s", quic_frame_type_string(frm->type));
452 }
453
454 if (mask & QUIC_EV_CONN_PHPKTS) {
455 const struct quic_enc_level *qel = a2;
456
457 if (qel) {
Frédéric Lécailledd51da52021-12-29 15:36:25 +0100458 const struct quic_pktns *pktns = qel->pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100459 chunk_appendf(&trace_buf,
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100460 " 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 +0100461 quic_enc_level_char_from_qel(qel, qc),
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200462 quic_hdshk_state_str(qc->state),
Frédéric Lécaille205e4f32022-03-28 17:38:27 +0200463 !!(qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED),
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100464 (unsigned long long)qc->path->cwnd,
465 (unsigned long long)qc->path->prep_in_flight,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100466 (unsigned long long)qc->path->in_flight,
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100467 (unsigned long long)pktns->tx.in_flight,
468 pktns->tx.pto_probe);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100469 }
470 }
471
Frédéric Lécaillef63921f2020-12-18 09:48:20 +0100472 if (mask & QUIC_EV_CONN_ENCPKT) {
473 const struct enc_debug_info *edi = a2;
474
475 if (edi)
476 chunk_appendf(&trace_buf,
477 " payload=@%p payload_len=%llu"
478 " aad=@%p aad_len=%llu pn=%llu",
479 edi->payload, (unsigned long long)edi->payload_len,
480 edi->aad, (unsigned long long)edi->aad_len,
481 (unsigned long long)edi->pn);
482 }
483
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100484 if (mask & QUIC_EV_CONN_RMHP) {
485 const struct quic_rx_packet *pkt = a2;
486
487 if (pkt) {
488 const int *ret = a3;
489
490 chunk_appendf(&trace_buf, " pkt@%p", pkt);
491 if (ret && *ret)
492 chunk_appendf(&trace_buf, " pnl=%u pn=%llu",
493 pkt->pnl, (unsigned long long)pkt->pn);
494 }
495 }
496
497 if (mask & QUIC_EV_CONN_PRSAFRM) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +0200498 const struct quic_frame *frm = a2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100499 const unsigned long *val1 = a3;
500 const unsigned long *val2 = a4;
501
502 if (frm)
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100503 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100504 if (val1)
505 chunk_appendf(&trace_buf, " %lu", *val1);
506 if (val2)
507 chunk_appendf(&trace_buf, "..%lu", *val2);
508 }
509
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100510 if (mask & QUIC_EV_CONN_ACKSTRM) {
511 const struct quic_stream *s = a2;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +0200512 const struct qc_stream_desc *stream = a3;
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100513
514 if (s)
515 chunk_appendf(&trace_buf, " off=%llu len=%llu", (ull)s->offset.key, (ull)s->len);
Amaury Denoyelle7272cd72022-03-29 15:15:54 +0200516 if (stream)
517 chunk_appendf(&trace_buf, " ack_offset=%llu", (ull)stream->ack_offset);
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100518 }
519
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100520 if (mask & QUIC_EV_CONN_RTTUPDT) {
521 const unsigned int *rtt_sample = a2;
522 const unsigned int *ack_delay = a3;
523 const struct quic_loss *ql = a4;
524
525 if (rtt_sample)
526 chunk_appendf(&trace_buf, " rtt_sample=%ums", *rtt_sample);
527 if (ack_delay)
528 chunk_appendf(&trace_buf, " ack_delay=%ums", *ack_delay);
529 if (ql)
530 chunk_appendf(&trace_buf,
531 " srtt=%ums rttvar=%ums min_rtt=%ums",
532 ql->srtt >> 3, ql->rtt_var >> 2, ql->rtt_min);
533 }
534 if (mask & QUIC_EV_CONN_CC) {
535 const struct quic_cc_event *ev = a2;
536 const struct quic_cc *cc = a3;
537
538 if (a2)
539 quic_cc_event_trace(&trace_buf, ev);
540 if (a3)
541 quic_cc_state_trace(&trace_buf, cc);
542 }
543
544 if (mask & QUIC_EV_CONN_PKTLOSS) {
545 const struct quic_pktns *pktns = a2;
546 const struct list *lost_pkts = a3;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100547
548 if (pktns) {
549 chunk_appendf(&trace_buf, " pktns=%s",
550 pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
551 pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H");
552 if (pktns->tx.loss_time)
553 chunk_appendf(&trace_buf, " loss_time=%dms",
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100554 TICKS_TO_MS(tick_remain(now_ms, pktns->tx.loss_time)));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100555 }
556 if (lost_pkts && !LIST_ISEMPTY(lost_pkts)) {
557 struct quic_tx_packet *pkt;
558
559 chunk_appendf(&trace_buf, " lost_pkts:");
560 list_for_each_entry(pkt, lost_pkts, list)
561 chunk_appendf(&trace_buf, " %lu", (unsigned long)pkt->pn_node.key);
562 }
563 }
564
565 if (mask & (QUIC_EV_CONN_STIMER|QUIC_EV_CONN_PTIMER|QUIC_EV_CONN_SPTO)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100566 const struct quic_pktns *pktns = a2;
567 const int *duration = a3;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100568 const uint64_t *ifae_pkts = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100569
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100570 if (ifae_pkts)
571 chunk_appendf(&trace_buf, " ifae_pkts=%llu",
572 (unsigned long long)*ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100573 if (pktns) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100574 chunk_appendf(&trace_buf, " pktns=%s pp=%d",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100575 pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100576 pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H",
577 pktns->tx.pto_probe);
Frédéric Lécaille22cfd832021-12-27 17:42:51 +0100578 if (mask & (QUIC_EV_CONN_STIMER|QUIC_EV_CONN_SPTO)) {
579 if (pktns->tx.in_flight)
580 chunk_appendf(&trace_buf, " if=%llu", (ull)pktns->tx.in_flight);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100581 if (pktns->tx.loss_time)
582 chunk_appendf(&trace_buf, " loss_time=%dms",
583 TICKS_TO_MS(pktns->tx.loss_time - now_ms));
584 }
585 if (mask & QUIC_EV_CONN_SPTO) {
586 if (pktns->tx.time_of_last_eliciting)
587 chunk_appendf(&trace_buf, " tole=%dms",
588 TICKS_TO_MS(pktns->tx.time_of_last_eliciting - now_ms));
589 if (duration)
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100590 chunk_appendf(&trace_buf, " dur=%dms", TICKS_TO_MS(*duration));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100591 }
592 }
593
Frédéric Lécaille03235d72022-03-30 14:36:40 +0200594 if (!(mask & (QUIC_EV_CONN_SPTO|QUIC_EV_CONN_PTIMER)) && qc->timer_task) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100595 chunk_appendf(&trace_buf,
596 " expire=%dms", TICKS_TO_MS(qc->timer - now_ms));
597 }
598 }
599
600 if (mask & QUIC_EV_CONN_SPPKTS) {
601 const struct quic_tx_packet *pkt = a2;
602
Frédéric Lécaille8ecb7362022-08-04 12:00:00 +0200603 chunk_appendf(&trace_buf, " cwnd=%llu ppif=%llu pif=%llu",
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100604 (unsigned long long)qc->path->cwnd,
605 (unsigned long long)qc->path->prep_in_flight,
606 (unsigned long long)qc->path->in_flight);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100607 if (pkt) {
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100608 chunk_appendf(&trace_buf, " pn=%lu(%s) iflen=%llu",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100609 (unsigned long)pkt->pn_node.key,
610 pkt->pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
611 pkt->pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H",
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100612 (unsigned long long)pkt->in_flight_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100613 }
614 }
Frédéric Lécaille47c433f2020-12-10 17:03:11 +0100615
616 if (mask & QUIC_EV_CONN_SSLALERT) {
617 const uint8_t *alert = a2;
618 const enum ssl_encryption_level_t *level = a3;
619
620 if (alert)
621 chunk_appendf(&trace_buf, " alert=0x%02x", *alert);
622 if (level)
623 chunk_appendf(&trace_buf, " el=%c",
624 quic_enc_level_char(ssl_to_quic_enc_level(*level)));
625 }
Frédéric Lécailleea604992020-12-24 13:01:37 +0100626
627 if (mask & QUIC_EV_CONN_BCFRMS) {
628 const size_t *sz1 = a2;
629 const size_t *sz2 = a3;
630 const size_t *sz3 = a4;
631
632 if (sz1)
633 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz1);
634 if (sz2)
635 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz2);
636 if (sz3)
637 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz3);
638 }
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100639
640 if (mask & QUIC_EV_CONN_PSTRM) {
641 const struct quic_frame *frm = a2;
Frédéric Lécaille577fe482021-01-11 15:10:06 +0100642
Frédéric Lécailled8b84432021-12-10 15:18:36 +0100643 if (frm)
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100644 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100645 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100646 }
647 if (mask & QUIC_EV_CONN_LPKT) {
648 const struct quic_rx_packet *pkt = a2;
Frédéric Lécaille865b0782021-09-23 07:33:20 +0200649 const uint64_t *len = a3;
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200650 const struct quic_version *ver = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100651
Frédéric Lécaille8678eb02021-12-16 18:03:52 +0100652 if (pkt) {
653 chunk_appendf(&trace_buf, " pkt@%p type=0x%02x %s",
654 pkt, pkt->type, qc_pkt_long(pkt) ? "long" : "short");
655 if (pkt->pn_node.key != (uint64_t)-1)
656 chunk_appendf(&trace_buf, " pn=%llu", pkt->pn_node.key);
657 }
658
Frédéric Lécaille865b0782021-09-23 07:33:20 +0200659 if (len)
660 chunk_appendf(&trace_buf, " len=%llu", (ull)*len);
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200661
662 if (ver)
663 chunk_appendf(&trace_buf, " ver=0x%08x", ver->num);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100664 }
665
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +0200666 if (mask & QUIC_EV_STATELESS_RST) {
667 const struct quic_cid *cid = a2;
668
669 if (cid)
670 quic_cid_dump(&trace_buf, cid);
671 }
672
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100673}
674
675/* Returns 1 if the peer has validated <qc> QUIC connection address, 0 if not. */
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100676static inline int quic_peer_validated_addr(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100677{
Frédéric Lécaille67f47d02021-08-19 15:19:09 +0200678 struct quic_pktns *hdshk_pktns, *app_pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100679
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +0100680 if (!qc_is_listener(qc))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100681 return 1;
682
Frédéric Lécaille67f47d02021-08-19 15:19:09 +0200683 hdshk_pktns = qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns;
684 app_pktns = qc->els[QUIC_TLS_ENC_LEVEL_APP].pktns;
Frédéric Lécaille205e4f32022-03-28 17:38:27 +0200685 if ((hdshk_pktns->flags & QUIC_FL_PKTNS_PKT_RECEIVED) ||
686 (app_pktns->flags & QUIC_FL_PKTNS_PKT_RECEIVED) ||
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200687 qc->state >= QUIC_HS_ST_COMPLETE)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100688 return 1;
689
690 return 0;
691}
692
693/* Set the timer attached to the QUIC connection with <ctx> as I/O handler and used for
694 * both loss detection and PTO and schedule the task assiated to this timer if needed.
695 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100696static inline void qc_set_timer(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100697{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100698 struct quic_pktns *pktns;
699 unsigned int pto;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +0200700 int handshake_complete;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100701
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100702 TRACE_ENTER(QUIC_EV_CONN_STIMER, qc,
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100703 NULL, NULL, &qc->path->ifae_pkts);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100704
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100705 pktns = quic_loss_pktns(qc);
706 if (tick_isset(pktns->tx.loss_time)) {
707 qc->timer = pktns->tx.loss_time;
708 goto out;
709 }
710
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +0100711 /* anti-amplification: the timer must be
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100712 * cancelled for a server which reached the anti-amplification limit.
713 */
Frédéric Lécaille078634d2022-01-04 16:59:42 +0100714 if (!quic_peer_validated_addr(qc) &&
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200715 (qc->flags & QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100716 TRACE_PROTO("anti-amplification reached", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +0100717 qc->timer = TICK_ETERNITY;
718 goto out;
719 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100720
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100721 if (!qc->path->ifae_pkts && quic_peer_validated_addr(qc)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100722 TRACE_PROTO("timer cancellation", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100723 /* Timer cancellation. */
724 qc->timer = TICK_ETERNITY;
725 goto out;
726 }
727
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200728 handshake_complete = qc->state >= QUIC_HS_ST_COMPLETE;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +0200729 pktns = quic_pto_pktns(qc, handshake_complete, &pto);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100730 if (tick_isset(pto))
731 qc->timer = pto;
732 out:
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100733 if (qc->timer_task && qc->timer != TICK_ETERNITY) {
Frédéric Lécailleaaf1f192022-03-22 15:37:41 +0100734 if (tick_is_expired(qc->timer, now_ms)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200735 TRACE_DEVEL("wakeup asap timer task", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100736 task_wakeup(qc->timer_task, TASK_WOKEN_MSG);
Frédéric Lécailleaaf1f192022-03-22 15:37:41 +0100737 }
738 else {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200739 TRACE_DEVEL("timer task scheduling", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100740 task_schedule(qc->timer_task, qc->timer);
Frédéric Lécailleaaf1f192022-03-22 15:37:41 +0100741 }
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100742 }
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100743 TRACE_LEAVE(QUIC_EV_CONN_STIMER, qc, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100744}
745
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100746/* Derive new keys and ivs required for Key Update feature for <qc> QUIC
747 * connection.
748 * Return 1 if succeeded, 0 if not.
749 */
750static int quic_tls_key_update(struct quic_conn *qc)
751{
752 struct quic_tls_ctx *tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
753 struct quic_tls_secrets *rx, *tx;
754 struct quic_tls_kp *nxt_rx = &qc->ku.nxt_rx;
755 struct quic_tls_kp *nxt_tx = &qc->ku.nxt_tx;
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200756 const struct quic_version *ver =
757 qc->negotiated_version ? qc->negotiated_version : qc->original_version;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200758 int ret = 0;
759
760 TRACE_ENTER(QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100761
762 tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
763 rx = &tls_ctx->rx;
764 tx = &tls_ctx->tx;
765 nxt_rx = &qc->ku.nxt_rx;
766 nxt_tx = &qc->ku.nxt_tx;
767
768 /* Prepare new RX secrets */
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200769 if (!quic_tls_sec_update(rx->md, ver, nxt_rx->secret, nxt_rx->secretlen,
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100770 rx->secret, rx->secretlen)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200771 TRACE_ERROR("New RX secret update failed", QUIC_EV_CONN_RWSEC, qc);
772 goto leave;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100773 }
774
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200775 if (!quic_tls_derive_keys(rx->aead, NULL, rx->md, ver,
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100776 nxt_rx->key, nxt_rx->keylen,
777 nxt_rx->iv, nxt_rx->ivlen, NULL, 0,
778 nxt_rx->secret, nxt_rx->secretlen)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200779 TRACE_ERROR("New RX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
780 goto leave;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100781 }
782
783 /* Prepare new TX secrets */
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200784 if (!quic_tls_sec_update(tx->md, ver, nxt_tx->secret, nxt_tx->secretlen,
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100785 tx->secret, tx->secretlen)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200786 TRACE_ERROR("New TX secret update failed", QUIC_EV_CONN_RWSEC, qc);
787 goto leave;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100788 }
789
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200790 if (!quic_tls_derive_keys(tx->aead, NULL, tx->md, ver,
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100791 nxt_tx->key, nxt_tx->keylen,
792 nxt_tx->iv, nxt_tx->ivlen, NULL, 0,
793 nxt_tx->secret, nxt_tx->secretlen)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200794 TRACE_ERROR("New TX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
795 goto leave;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100796 }
797
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200798 if (nxt_rx->ctx) {
799 EVP_CIPHER_CTX_free(nxt_rx->ctx);
800 nxt_rx->ctx = NULL;
801 }
802
803 if (!quic_tls_rx_ctx_init(&nxt_rx->ctx, tls_ctx->rx.aead, nxt_rx->key)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200804 TRACE_ERROR("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
805 goto leave;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200806 }
807
808 if (nxt_tx->ctx) {
809 EVP_CIPHER_CTX_free(nxt_tx->ctx);
810 nxt_tx->ctx = NULL;
811 }
812
813 if (!quic_tls_rx_ctx_init(&nxt_tx->ctx, tls_ctx->tx.aead, nxt_tx->key)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200814 TRACE_ERROR("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
815 goto leave;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200816 }
817
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200818 ret = 1;
819 leave:
820 TRACE_LEAVE(QUIC_EV_CONN_RWSEC, qc);
821 return ret;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100822}
823
824/* Rotate the Key Update information for <qc> QUIC connection.
825 * Must be used after having updated them.
826 * Always succeeds.
827 */
828static void quic_tls_rotate_keys(struct quic_conn *qc)
829{
830 struct quic_tls_ctx *tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
831 unsigned char *curr_secret, *curr_iv, *curr_key;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200832 EVP_CIPHER_CTX *curr_ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100833
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200834 TRACE_ENTER(QUIC_EV_CONN_RXPKT, qc);
835
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100836 /* Rotate the RX secrets */
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200837 curr_ctx = tls_ctx->rx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100838 curr_secret = tls_ctx->rx.secret;
839 curr_iv = tls_ctx->rx.iv;
840 curr_key = tls_ctx->rx.key;
841
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200842 tls_ctx->rx.ctx = qc->ku.nxt_rx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100843 tls_ctx->rx.secret = qc->ku.nxt_rx.secret;
844 tls_ctx->rx.iv = qc->ku.nxt_rx.iv;
845 tls_ctx->rx.key = qc->ku.nxt_rx.key;
846
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200847 qc->ku.nxt_rx.ctx = qc->ku.prv_rx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100848 qc->ku.nxt_rx.secret = qc->ku.prv_rx.secret;
849 qc->ku.nxt_rx.iv = qc->ku.prv_rx.iv;
850 qc->ku.nxt_rx.key = qc->ku.prv_rx.key;
851
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200852 qc->ku.prv_rx.ctx = curr_ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100853 qc->ku.prv_rx.secret = curr_secret;
854 qc->ku.prv_rx.iv = curr_iv;
855 qc->ku.prv_rx.key = curr_key;
856 qc->ku.prv_rx.pn = tls_ctx->rx.pn;
857
858 /* Update the TX secrets */
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200859 curr_ctx = tls_ctx->tx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100860 curr_secret = tls_ctx->tx.secret;
861 curr_iv = tls_ctx->tx.iv;
862 curr_key = tls_ctx->tx.key;
863
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200864 tls_ctx->tx.ctx = qc->ku.nxt_tx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100865 tls_ctx->tx.secret = qc->ku.nxt_tx.secret;
866 tls_ctx->tx.iv = qc->ku.nxt_tx.iv;
867 tls_ctx->tx.key = qc->ku.nxt_tx.key;
868
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200869 qc->ku.nxt_tx.ctx = curr_ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100870 qc->ku.nxt_tx.secret = curr_secret;
871 qc->ku.nxt_tx.iv = curr_iv;
872 qc->ku.nxt_tx.key = curr_key;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200873
874 TRACE_LEAVE(QUIC_EV_CONN_RXPKT, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100875}
876
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200877/* returns 0 on error, 1 on success */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100878int ha_quic_set_encryption_secrets(SSL *ssl, enum ssl_encryption_level_t level,
879 const uint8_t *read_secret,
880 const uint8_t *write_secret, size_t secret_len)
881{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100882 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
883 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 +0100884 const SSL_CIPHER *cipher = SSL_get_current_cipher(ssl);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100885 struct quic_tls_secrets *rx, *tx;
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200886 const struct quic_version *ver =
887 qc->negotiated_version ? qc->negotiated_version : qc->original_version;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200888 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100889
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100890 TRACE_ENTER(QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100891 BUG_ON(secret_len > QUIC_TLS_SECRET_LEN);
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200892 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100893 TRACE_PROTO("CC required", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillef44d19e2022-03-26 12:22:41 +0100894 goto no_secret;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100895 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100896
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100897 if (!quic_tls_ctx_keys_alloc(tls_ctx)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200898 TRACE_ERROR("keys allocation failed", QUIC_EV_CONN_RWSEC, qc);
899 goto leave;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100900 }
901
902 rx = &tls_ctx->rx;
903 tx = &tls_ctx->tx;
904
905 rx->aead = tx->aead = tls_aead(cipher);
906 rx->md = tx->md = tls_md(cipher);
907 rx->hp = tx->hp = tls_hp(cipher);
908
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200909 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 +0100910 rx->iv, rx->ivlen, rx->hp_key, sizeof rx->hp_key,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100911 read_secret, secret_len)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200912 TRACE_ERROR("RX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
913 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100914 }
915
Frédéric Lécaillef4605742022-04-05 10:28:29 +0200916 if (!quic_tls_rx_ctx_init(&rx->ctx, rx->aead, rx->key)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200917 TRACE_ERROR("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
918 goto leave;
Frédéric Lécaillef4605742022-04-05 10:28:29 +0200919 }
920
Frédéric Lécaille61b851d2022-01-28 21:38:45 +0100921 /* Enqueue this connection asap if we could derive O-RTT secrets as
922 * listener. Note that a listener derives only RX secrets for this
923 * level.
924 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200925 if (qc_is_listener(qc) && level == ssl_encryption_early_data) {
926 TRACE_DEVEL("pushing connection into accept queue", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaille61b851d2022-01-28 21:38:45 +0100927 quic_accept_push_qc(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200928 }
Frédéric Lécaille4015cbb2021-12-14 19:29:34 +0100929
930 if (!write_secret)
Frédéric Lécailleee4508d2022-02-14 17:54:04 +0100931 goto out;
Frédéric Lécaille4015cbb2021-12-14 19:29:34 +0100932
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200933 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 +0100934 tx->iv, tx->ivlen, tx->hp_key, sizeof tx->hp_key,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100935 write_secret, secret_len)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200936 TRACE_ERROR("TX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
937 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100938 }
939
Frédéric Lécaillef4605742022-04-05 10:28:29 +0200940 if (!quic_tls_tx_ctx_init(&tx->ctx, tx->aead, tx->key)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200941 TRACE_ERROR("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
942 goto leave;
Frédéric Lécaillef4605742022-04-05 10:28:29 +0200943 }
944
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100945 if (level == ssl_encryption_application) {
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100946 struct quic_tls_kp *prv_rx = &qc->ku.prv_rx;
947 struct quic_tls_kp *nxt_rx = &qc->ku.nxt_rx;
948 struct quic_tls_kp *nxt_tx = &qc->ku.nxt_tx;
949
Frédéric Lécaille96fd1632022-04-01 11:21:47 +0200950 /* These secrets must be stored only for Application encryption level */
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100951 if (!(rx->secret = pool_alloc(pool_head_quic_tls_secret)) ||
952 !(tx->secret = pool_alloc(pool_head_quic_tls_secret))) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200953 TRACE_ERROR("Could not allocate secrete keys", QUIC_EV_CONN_RWSEC, qc);
954 goto leave;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100955 }
956
957 memcpy(rx->secret, read_secret, secret_len);
958 rx->secretlen = secret_len;
959 memcpy(tx->secret, write_secret, secret_len);
960 tx->secretlen = secret_len;
961 /* Initialize all the secret keys lengths */
962 prv_rx->secretlen = nxt_rx->secretlen = nxt_tx->secretlen = secret_len;
963 /* Prepare the next key update */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200964 if (!quic_tls_key_update(qc)) {
965 // trace already emitted by function above
966 goto leave;
967 }
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100968 }
Frédéric Lécailleee4508d2022-02-14 17:54:04 +0100969
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100970 out:
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100971 tls_ctx->flags |= QUIC_FL_TLS_SECRETS_SET;
Frédéric Lécaillef44d19e2022-03-26 12:22:41 +0100972 no_secret:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200973 ret = 1;
974 leave:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100975 TRACE_LEAVE(QUIC_EV_CONN_RWSEC, qc, &level);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200976 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100977}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100978
979/* This function copies the CRYPTO data provided by the TLS stack found at <data>
980 * with <len> as size in CRYPTO buffers dedicated to store the information about
981 * outgoing CRYPTO frames so that to be able to replay the CRYPTO data streams.
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200982 * It fails (returns 0) only if it could not managed to allocate enough CRYPTO
983 * buffers to store all the data.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100984 * Note that CRYPTO data may exist at any encryption level except at 0-RTT.
985 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200986static int quic_crypto_data_cpy(struct quic_conn *qc, struct quic_enc_level *qel,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100987 const unsigned char *data, size_t len)
988{
989 struct quic_crypto_buf **qcb;
990 /* The remaining byte to store in CRYPTO buffers. */
991 size_t cf_offset, cf_len, *nb_buf;
992 unsigned char *pos;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200993 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100994
995 nb_buf = &qel->tx.crypto.nb_buf;
996 qcb = &qel->tx.crypto.bufs[*nb_buf - 1];
997 cf_offset = (*nb_buf - 1) * QUIC_CRYPTO_BUF_SZ + (*qcb)->sz;
998 cf_len = len;
999
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001000 TRACE_ENTER(QUIC_EV_CONN_ADDDATA, qc);
1001
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001002 while (len) {
1003 size_t to_copy, room;
1004
1005 pos = (*qcb)->data + (*qcb)->sz;
1006 room = QUIC_CRYPTO_BUF_SZ - (*qcb)->sz;
1007 to_copy = len > room ? room : len;
1008 if (to_copy) {
1009 memcpy(pos, data, to_copy);
1010 /* Increment the total size of this CRYPTO buffers by <to_copy>. */
1011 qel->tx.crypto.sz += to_copy;
1012 (*qcb)->sz += to_copy;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001013 len -= to_copy;
1014 data += to_copy;
1015 }
1016 else {
1017 struct quic_crypto_buf **tmp;
1018
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001019 // FIXME: realloc!
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001020 tmp = realloc(qel->tx.crypto.bufs,
1021 (*nb_buf + 1) * sizeof *qel->tx.crypto.bufs);
1022 if (tmp) {
1023 qel->tx.crypto.bufs = tmp;
1024 qcb = &qel->tx.crypto.bufs[*nb_buf];
1025 *qcb = pool_alloc(pool_head_quic_crypto_buf);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001026 if (!*qcb) {
1027 TRACE_ERROR("Could not allocate crypto buf", QUIC_EV_CONN_ADDDATA, qc);
1028 goto leave;
1029 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001030
1031 (*qcb)->sz = 0;
1032 ++*nb_buf;
1033 }
1034 else {
1035 break;
1036 }
1037 }
1038 }
1039
1040 /* Allocate a TX CRYPTO frame only if all the CRYPTO data
1041 * have been buffered.
1042 */
1043 if (!len) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02001044 struct quic_frame *frm;
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +01001045 struct quic_frame *found = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001046
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +01001047 /* There is at most one CRYPTO frame in this packet number
1048 * space. Let's look for it.
1049 */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001050 list_for_each_entry(frm, &qel->pktns->tx.frms, list) {
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +01001051 if (frm->type != QUIC_FT_CRYPTO)
1052 continue;
1053
1054 /* Found */
1055 found = frm;
1056 break;
1057 }
1058
1059 if (found) {
1060 found->crypto.len += cf_len;
1061 }
1062 else {
Frédéric Lécailleb9171912022-04-21 17:32:10 +02001063 frm = pool_zalloc(pool_head_quic_frame);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001064 if (!frm) {
1065 TRACE_ERROR("Could not allocate quic frame", QUIC_EV_CONN_ADDDATA, qc);
1066 goto leave;
1067 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001068
Frédéric Lécailleb9171912022-04-21 17:32:10 +02001069 LIST_INIT(&frm->reflist);
Frédéric Lécailled4ecf942022-01-04 23:15:40 +01001070 frm->type = QUIC_FT_CRYPTO;
1071 frm->crypto.offset = cf_offset;
1072 frm->crypto.len = cf_len;
1073 frm->crypto.qel = qel;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001074 LIST_APPEND(&qel->pktns->tx.frms, &frm->list);
Frédéric Lécailled4ecf942022-01-04 23:15:40 +01001075 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001076 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001077 ret = len == 0;
1078 leave:
1079 TRACE_LEAVE(QUIC_EV_CONN_ADDDATA, qc);
1080 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001081}
1082
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001083/* Prepare the emission of CONNECTION_CLOSE with error <err>. All send/receive
1084 * activity for <qc> will be interrupted.
1085 */
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02001086void quic_set_connection_close(struct quic_conn *qc, const struct quic_err err)
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001087{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001088 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001089 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001090 goto leave;
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001091
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001092 TRACE_STATE("setting immediate close", QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001093 qc->flags |= QUIC_FL_CONN_IMMEDIATE_CLOSE;
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02001094 qc->err.code = err.code;
1095 qc->err.app = err.app;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001096 leave:
1097 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001098}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001099
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01001100/* Set <alert> TLS alert as QUIC CRYPTO_ERROR error */
1101void quic_set_tls_alert(struct quic_conn *qc, int alert)
1102{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001103 TRACE_ENTER(QUIC_EV_CONN_SSLALERT, qc);
1104
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02001105 if (!(qc->flags & QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED)) {
1106 qc->flags |= QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001107 TRACE_DEVEL("dec half open counter", QUIC_EV_CONN_SSLALERT, qc);
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02001108 HA_ATOMIC_DEC(&qc->prx_counters->half_open_conn);
1109 }
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02001110 quic_set_connection_close(qc, quic_err_tls(alert));
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001111 qc->flags |= QUIC_FL_CONN_TLS_ALERT;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001112 TRACE_STATE("Alert set", QUIC_EV_CONN_SSLALERT, qc);
1113
1114 TRACE_LEAVE(QUIC_EV_CONN_SSLALERT, qc);
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01001115}
1116
Frédéric Lécailleb0bd62d2021-12-14 19:34:08 +01001117/* Set the application for <qc> QUIC connection.
1118 * Return 1 if succeeded, 0 if not.
1119 */
1120int quic_set_app_ops(struct quic_conn *qc, const unsigned char *alpn, size_t alpn_len)
1121{
Amaury Denoyelle4b40f192022-01-19 11:29:25 +01001122 if (alpn_len >= 2 && memcmp(alpn, "h3", 2) == 0)
1123 qc->app_ops = &h3_ops;
1124 else if (alpn_len >= 10 && memcmp(alpn, "hq-interop", 10) == 0)
1125 qc->app_ops = &hq_interop_ops;
Frédéric Lécailleb0bd62d2021-12-14 19:34:08 +01001126 else
1127 return 0;
1128
Frédéric Lécailleb0bd62d2021-12-14 19:34:08 +01001129 return 1;
1130}
1131
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001132/* ->add_handshake_data QUIC TLS callback used by the QUIC TLS stack when it
1133 * wants to provide the QUIC layer with CRYPTO data.
1134 * Returns 1 if succeeded, 0 if not.
1135 */
1136int ha_quic_add_handshake_data(SSL *ssl, enum ssl_encryption_level_t level,
1137 const uint8_t *data, size_t len)
1138{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001139 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001140 enum quic_tls_enc_level tel;
1141 struct quic_enc_level *qel;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001142 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001143
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001144 qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
1145 TRACE_ENTER(QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001146
Frédéric Lécaillefc790062022-03-28 17:10:31 +02001147 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001148 TRACE_PROTO("CC required", QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01001149 goto out;
1150 }
1151
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001152 tel = ssl_to_quic_enc_level(level);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001153 if (tel == -1) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001154 TRACE_ERROR("Wrong encryption level", QUIC_EV_CONN_ADDDATA, qc);
1155 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001156 }
1157
Frédéric Lécaille3916ca12022-02-02 14:09:05 +01001158 qel = &qc->els[tel];
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001159 if (!quic_crypto_data_cpy(qc, qel, data, len)) {
1160 TRACE_ERROR("Could not bufferize", QUIC_EV_CONN_ADDDATA, qc);
1161 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001162 }
1163
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001164 TRACE_DEVEL("CRYPTO data buffered", QUIC_EV_CONN_ADDDATA,
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001165 qc, &level, &len);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01001166 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001167 ret = 1;
1168 leave:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001169 TRACE_LEAVE(QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001170 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001171}
1172
1173int ha_quic_flush_flight(SSL *ssl)
1174{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001175 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001176
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001177 TRACE_ENTER(QUIC_EV_CONN_FFLIGHT, qc);
1178 TRACE_LEAVE(QUIC_EV_CONN_FFLIGHT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001179
1180 return 1;
1181}
1182
1183int ha_quic_send_alert(SSL *ssl, enum ssl_encryption_level_t level, uint8_t alert)
1184{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001185 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001186
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001187 TRACE_ENTER(QUIC_EV_CONN_SSLALERT, qc);
1188
1189 TRACE_PROTO("Received TLS alert", QUIC_EV_CONN_SSLALERT, qc, &alert, &level);
1190
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001191 quic_set_tls_alert(qc, alert);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001192 TRACE_LEAVE(QUIC_EV_CONN_SSLALERT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001193 return 1;
1194}
1195
1196/* QUIC TLS methods */
1197static SSL_QUIC_METHOD ha_quic_method = {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001198 .set_encryption_secrets = ha_quic_set_encryption_secrets,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001199 .add_handshake_data = ha_quic_add_handshake_data,
1200 .flush_flight = ha_quic_flush_flight,
1201 .send_alert = ha_quic_send_alert,
1202};
1203
1204/* Initialize the TLS context of a listener with <bind_conf> as configuration.
1205 * Returns an error count.
1206 */
1207int ssl_quic_initial_ctx(struct bind_conf *bind_conf)
1208{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001209 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
1210 int cfgerr = 0;
1211
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001212 long options =
1213 (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) |
1214 SSL_OP_SINGLE_ECDH_USE |
1215 SSL_OP_CIPHER_SERVER_PREFERENCE;
1216 SSL_CTX *ctx;
1217
1218 ctx = SSL_CTX_new(TLS_server_method());
1219 bind_conf->initial_ctx = ctx;
1220
1221 SSL_CTX_set_options(ctx, options);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001222 SSL_CTX_set_mode(ctx, SSL_MODE_RELEASE_BUFFERS);
1223 SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
1224 SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001225
1226#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaillee06f7452022-06-16 15:06:44 +02001227#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001228 if (bind_conf->ssl_conf.early_data) {
1229 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
Frédéric Lécaillead3c07a2021-12-14 19:23:43 +01001230 SSL_CTX_set_max_early_data(ctx, 0xffffffff);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001231 }
1232 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
1233 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
1234#else
1235 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
1236#endif
1237 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
1238#endif
1239 SSL_CTX_set_quic_method(ctx, &ha_quic_method);
1240
1241 return cfgerr;
1242}
1243
1244/* Decode an expected packet number from <truncated_on> its truncated value,
1245 * depending on <largest_pn> the largest received packet number, and <pn_nbits>
1246 * the number of bits used to encode this packet number (its length in bytes * 8).
1247 * See https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#packet-encoding
1248 */
1249static uint64_t decode_packet_number(uint64_t largest_pn,
1250 uint32_t truncated_pn, unsigned int pn_nbits)
1251{
1252 uint64_t expected_pn = largest_pn + 1;
1253 uint64_t pn_win = (uint64_t)1 << pn_nbits;
1254 uint64_t pn_hwin = pn_win / 2;
1255 uint64_t pn_mask = pn_win - 1;
1256 uint64_t candidate_pn;
1257
1258
1259 candidate_pn = (expected_pn & ~pn_mask) | truncated_pn;
1260 /* Note that <pn_win> > <pn_hwin>. */
1261 if (candidate_pn < QUIC_MAX_PACKET_NUM - pn_win &&
1262 candidate_pn + pn_hwin <= expected_pn)
1263 return candidate_pn + pn_win;
1264
1265 if (candidate_pn > expected_pn + pn_hwin && candidate_pn >= pn_win)
1266 return candidate_pn - pn_win;
1267
1268 return candidate_pn;
1269}
1270
1271/* Remove the header protection of <pkt> QUIC packet using <tls_ctx> as QUIC TLS
1272 * cryptographic context.
1273 * <largest_pn> is the largest received packet number and <pn> the address of
1274 * the packet number field for this packet with <byte0> address of its first byte.
1275 * <end> points to one byte past the end of this packet.
1276 * Returns 1 if succeeded, 0 if not.
1277 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001278static int qc_do_rm_hp(struct quic_conn *qc,
1279 struct quic_rx_packet *pkt, struct quic_tls_ctx *tls_ctx,
Frédéric Lécaille99897d12022-08-08 10:28:07 +02001280 int64_t largest_pn, unsigned char *pn, unsigned char *byte0)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001281{
1282 int ret, outlen, i, pnlen;
1283 uint64_t packet_number;
1284 uint32_t truncated_pn = 0;
1285 unsigned char mask[5] = {0};
1286 unsigned char *sample;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001287 EVP_CIPHER_CTX *cctx = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001288 unsigned char *hp_key;
1289
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001290 TRACE_ENTER(QUIC_EV_CONN_RMHP, qc);
1291
1292 ret = 0;
1293
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001294 /* Check there is enough data in this packet. */
Frédéric Lécaille99897d12022-08-08 10:28:07 +02001295 if (pkt->len - (pn - byte0) < QUIC_PACKET_PN_MAXLEN + sizeof mask) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001296 TRACE_PROTO("too short packet", QUIC_EV_CONN_RMHP, qc, pkt);
1297 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001298 }
1299
1300 cctx = EVP_CIPHER_CTX_new();
1301 if (!cctx) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001302 TRACE_ERROR("memory allocation failed", QUIC_EV_CONN_RMHP, qc, pkt);
1303 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001304 }
1305
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001306 sample = pn + QUIC_PACKET_PN_MAXLEN;
1307
1308 hp_key = tls_ctx->rx.hp_key;
1309 if (!EVP_DecryptInit_ex(cctx, tls_ctx->rx.hp, NULL, hp_key, sample) ||
1310 !EVP_DecryptUpdate(cctx, mask, &outlen, mask, sizeof mask) ||
1311 !EVP_DecryptFinal_ex(cctx, mask, &outlen)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001312 TRACE_ERROR("decryption failed", QUIC_EV_CONN_RMHP, qc, pkt);
1313 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001314 }
1315
1316 *byte0 ^= mask[0] & (*byte0 & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f);
1317 pnlen = (*byte0 & QUIC_PACKET_PNL_BITMASK) + 1;
1318 for (i = 0; i < pnlen; i++) {
1319 pn[i] ^= mask[i + 1];
1320 truncated_pn = (truncated_pn << 8) | pn[i];
1321 }
1322
1323 packet_number = decode_packet_number(largest_pn, truncated_pn, pnlen * 8);
1324 /* Store remaining information for this unprotected header */
1325 pkt->pn = packet_number;
1326 pkt->pnl = pnlen;
1327
1328 ret = 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001329 leave:
1330 if (cctx)
1331 EVP_CIPHER_CTX_free(cctx);
1332 TRACE_LEAVE(QUIC_EV_CONN_RMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001333 return ret;
1334}
1335
1336/* Encrypt the payload of a QUIC packet with <pn> as number found at <payload>
1337 * address, with <payload_len> as payload length, <aad> as address of
1338 * the ADD and <aad_len> as AAD length depending on the <tls_ctx> QUIC TLS
1339 * context.
1340 * Returns 1 if succeeded, 0 if not.
1341 */
1342static int quic_packet_encrypt(unsigned char *payload, size_t payload_len,
1343 unsigned char *aad, size_t aad_len, uint64_t pn,
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01001344 struct quic_tls_ctx *tls_ctx, struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001345{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001346 int ret = 0;
Frédéric Lécaillef2f4a4e2022-04-05 12:18:46 +02001347 unsigned char iv[QUIC_TLS_IV_LEN];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001348 unsigned char *tx_iv = tls_ctx->tx.iv;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +01001349 size_t tx_iv_sz = tls_ctx->tx.ivlen;
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001350 struct enc_debug_info edi;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001351
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001352 TRACE_ENTER(QUIC_EV_CONN_ENCPKT, qc);
1353
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001354 if (!quic_aead_iv_build(iv, sizeof iv, tx_iv, tx_iv_sz, pn)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001355 TRACE_ERROR("AEAD IV building for encryption failed", QUIC_EV_CONN_ENCPKT, qc);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001356 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001357 }
1358
1359 if (!quic_tls_encrypt(payload, payload_len, aad, aad_len,
Frédéric Lécaillef4605742022-04-05 10:28:29 +02001360 tls_ctx->tx.ctx, tls_ctx->tx.aead, tls_ctx->tx.key, iv)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001361 TRACE_ERROR("QUIC packet encryption failed", QUIC_EV_CONN_ENCPKT, qc);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001362 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001363 }
1364
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001365 ret = 1;
1366 leave:
1367 TRACE_LEAVE(QUIC_EV_CONN_ENCPKT, qc);
1368 return ret;
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001369
1370 err:
1371 enc_debug_info_init(&edi, payload, payload_len, aad, aad_len, pn);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001372 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001373}
1374
1375/* Decrypt <pkt> QUIC packet with <tls_ctx> as QUIC TLS cryptographic context.
1376 * Returns 1 if succeeded, 0 if not.
1377 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001378static int qc_pkt_decrypt(struct quic_rx_packet *pkt, struct quic_enc_level *qel,
1379 struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001380{
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001381 int ret, kp_changed;
Frédéric Lécaillef2f4a4e2022-04-05 12:18:46 +02001382 unsigned char iv[QUIC_TLS_IV_LEN];
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001383 struct quic_tls_ctx *tls_ctx = &qel->tls_ctx;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +02001384 EVP_CIPHER_CTX *rx_ctx = tls_ctx->rx.ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001385 unsigned char *rx_iv = tls_ctx->rx.iv;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001386 size_t rx_iv_sz = tls_ctx->rx.ivlen;
1387 unsigned char *rx_key = tls_ctx->rx.key;
1388
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001389 TRACE_ENTER(QUIC_EV_CONN_RXPKT, qc);
1390
1391 ret = 0;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001392 kp_changed = 0;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001393
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001394 if (pkt->type == QUIC_PACKET_TYPE_SHORT) {
1395 /* The two tested bits are not at the same position,
1396 * this is why they are first both inversed.
1397 */
1398 if (!(*pkt->data & QUIC_PACKET_KEY_PHASE_BIT) ^ !(tls_ctx->flags & QUIC_FL_TLS_KP_BIT_SET)) {
1399 if (pkt->pn < tls_ctx->rx.pn) {
1400 /* The lowest packet number of a previous key phase
1401 * cannot be null if it really stores previous key phase
1402 * secrets.
1403 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001404 // TODO: check if BUG_ON() more suitable
1405 if (!pkt->qc->ku.prv_rx.pn) {
1406 TRACE_ERROR("null previous packet number", QUIC_EV_CONN_RXPKT, qc);
1407 goto leave;
1408 }
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001409
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +02001410 rx_ctx = pkt->qc->ku.prv_rx.ctx;
1411 rx_iv = pkt->qc->ku.prv_rx.iv;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001412 rx_key = pkt->qc->ku.prv_rx.key;
1413 }
1414 else if (pkt->pn > qel->pktns->rx.largest_pn) {
1415 /* Next key phase */
1416 kp_changed = 1;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +02001417 rx_ctx = pkt->qc->ku.nxt_rx.ctx;
1418 rx_iv = pkt->qc->ku.nxt_rx.iv;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001419 rx_key = pkt->qc->ku.nxt_rx.key;
1420 }
1421 }
1422 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001423
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001424 if (!quic_aead_iv_build(iv, sizeof iv, rx_iv, rx_iv_sz, pkt->pn)) {
1425 TRACE_ERROR("quic_aead_iv_build() failed", QUIC_EV_CONN_RXPKT, qc);
1426 goto leave;
1427 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001428
1429 ret = quic_tls_decrypt(pkt->data + pkt->aad_len, pkt->len - pkt->aad_len,
1430 pkt->data, pkt->aad_len,
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +02001431 rx_ctx, tls_ctx->rx.aead, rx_key, iv);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001432 if (!ret) {
1433 TRACE_ERROR("quic_tls_decrypt() failed", QUIC_EV_CONN_RXPKT, qc);
1434 goto leave;
1435 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001436
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001437 /* Update the keys only if the packet decryption succeeded. */
1438 if (kp_changed) {
1439 quic_tls_rotate_keys(pkt->qc);
1440 /* Toggle the Key Phase bit */
1441 tls_ctx->flags ^= QUIC_FL_TLS_KP_BIT_SET;
1442 /* Store the lowest packet number received for the current key phase */
1443 tls_ctx->rx.pn = pkt->pn;
1444 /* Prepare the next key update */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001445 if (!quic_tls_key_update(pkt->qc)) {
1446 TRACE_ERROR("quic_tls_key_update() failed", QUIC_EV_CONN_RXPKT, qc);
1447 goto leave;
1448 }
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001449 }
1450
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001451 /* Update the packet length (required to parse the frames). */
Frédéric Lécaillef4605742022-04-05 10:28:29 +02001452 pkt->len -= QUIC_TLS_TAG_LEN;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001453 ret = 1;
1454 leave:
1455 TRACE_LEAVE(QUIC_EV_CONN_RXPKT, qc);
Frédéric Lécaille11a6f402022-08-16 14:48:59 +02001456 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001457}
1458
Frédéric Lécaille96367152022-04-25 09:40:19 +02001459
1460/* Remove references to <frm> frame */
1461static void qc_frm_unref(struct quic_conn *qc, struct quic_frame *frm)
1462{
1463 uint64_t pn;
1464 struct quic_frame *f, *tmp;
1465
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001466 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1467
Frédéric Lécaille96367152022-04-25 09:40:19 +02001468 list_for_each_entry_safe(f, tmp, &frm->reflist, ref) {
1469 pn = f->pkt->pn_node.key;
1470 f->origin = NULL;
1471 LIST_DELETE(&f->ref);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001472 TRACE_DEVEL("remove frame reference", QUIC_EV_CONN_PRSAFRM, qc, f, &pn);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001473 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001474
1475 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001476}
1477
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001478/* Release <frm> frame and mark its copies as acknowledged */
Frédéric Lécailleda342552022-04-25 10:28:49 +02001479void qc_release_frm(struct quic_conn *qc, struct quic_frame *frm)
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001480{
1481 uint64_t pn;
1482 struct quic_frame *origin, *f, *tmp;
1483
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001484 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1485
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001486 /* Identify this frame: a frame copy or one of its copies */
1487 origin = frm->origin ? frm->origin : frm;
1488 /* Ensure the source of the copies is flagged as acked, <frm> being
1489 * possibly a copy of <origin>
1490 */
1491 origin->flags |= QUIC_FL_TX_FRAME_ACKED;
1492 /* Mark all the copy of <origin> as acknowledged. We must
1493 * not release the packets (releasing the frames) at this time as
1494 * they are possibly also to be acknowledged alongside the
1495 * the current one.
1496 */
1497 list_for_each_entry_safe(f, tmp, &origin->reflist, ref) {
1498 pn = f->pkt->pn_node.key;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001499 TRACE_DEVEL("mark frame as acked from packet",
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001500 QUIC_EV_CONN_PRSAFRM, qc, f, &pn);
1501 f->flags |= QUIC_FL_TX_FRAME_ACKED;
1502 f->origin = NULL;
1503 LIST_DELETE(&f->ref);
1504 }
1505 LIST_DELETE(&frm->list);
1506 pn = frm->pkt->pn_node.key;
1507 quic_tx_packet_refdec(frm->pkt);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001508 TRACE_DEVEL("freeing frame from packet",
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001509 QUIC_EV_CONN_PRSAFRM, qc, frm, &pn);
1510 pool_free(pool_head_quic_frame, frm);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001511
1512 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001513}
1514
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001515/* Schedule a CONNECTION_CLOSE emission on <qc> if the MUX has been released
1516 * and all STREAM data are acknowledged. The MUX is responsible to have set
1517 * <qc.err> before as it is reused for the CONNECTION_CLOSE frame.
1518 *
1519 * TODO this should also be called on lost packet detection
1520 */
1521static void qc_check_close_on_released_mux(struct quic_conn *qc)
1522{
1523 struct ssl_sock_ctx *ctx = qc->xprt_ctx;
1524
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001525 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
1526
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001527 if (qc->mux_state == QC_MUX_RELEASED && eb_is_empty(&qc->streams_by_id)) {
1528 /* Reuse errcode which should have been previously set by the MUX on release. */
1529 quic_set_connection_close(qc, qc->err);
1530 tasklet_wakeup(ctx->wait_event.tasklet);
1531 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001532
1533 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001534}
1535
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001536/* Remove from <stream> the acknowledged frames.
Amaury Denoyelle95e50fb2022-03-29 14:50:25 +02001537 *
1538 * Returns 1 if at least one frame was removed else 0.
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001539 */
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001540static int quic_stream_try_to_consume(struct quic_conn *qc,
1541 struct qc_stream_desc *stream)
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001542{
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001543 int ret;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001544 struct eb64_node *frm_node;
1545
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001546 TRACE_ENTER(QUIC_EV_CONN_ACKSTRM, qc);
1547
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001548 ret = 0;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001549 frm_node = eb64_first(&stream->acked_frms);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001550 while (frm_node) {
1551 struct quic_stream *strm;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001552 struct quic_frame *frm;
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001553 size_t offset, len;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001554
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02001555 strm = eb64_entry(frm_node, struct quic_stream, offset);
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001556 offset = strm->offset.key;
1557 len = strm->len;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001558
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001559 if (offset > stream->ack_offset)
1560 break;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001561
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001562 if (qc_stream_desc_ack(&stream, offset, len)) {
Amaury Denoyelle7586bef2022-04-25 14:26:54 +02001563 /* cf. next comment : frame may be freed at this stage. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001564 TRACE_DEVEL("stream consumed", QUIC_EV_CONN_ACKSTRM,
Amaury Denoyelle7586bef2022-04-25 14:26:54 +02001565 qc, stream ? strm : NULL, stream);
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001566 ret = 1;
1567 }
1568
Amaury Denoyelle7586bef2022-04-25 14:26:54 +02001569 /* If stream is NULL after qc_stream_desc_ack(), it means frame
1570 * has been freed. with the stream frames tree. Nothing to do
1571 * anymore in here.
1572 */
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001573 if (!stream) {
1574 qc_check_close_on_released_mux(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001575 ret = 1;
1576 goto leave;
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001577 }
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001578
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001579 frm_node = eb64_next(frm_node);
1580 eb64_delete(&strm->offset);
Amaury Denoyelle7b4c9d62022-02-24 10:50:58 +01001581
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001582 frm = container_of(strm, struct quic_frame, stream);
Frédéric Lécailleda342552022-04-25 10:28:49 +02001583 qc_release_frm(qc, frm);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001584 }
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001585
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001586 leave:
1587 TRACE_LEAVE(QUIC_EV_CONN_ACKSTRM, qc);
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001588 return ret;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001589}
1590
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001591/* Treat <frm> frame whose packet it is attached to has just been acknowledged. */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001592static inline void qc_treat_acked_tx_frm(struct quic_conn *qc,
1593 struct quic_frame *frm)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001594{
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001595 int stream_acked;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001596
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001597 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc, frm);
1598
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001599 stream_acked = 0;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001600 switch (frm->type) {
1601 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
1602 {
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001603 struct quic_stream *strm_frm = &frm->stream;
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001604 struct eb64_node *node = NULL;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001605 struct qc_stream_desc *stream = NULL;
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001606 const size_t offset = strm_frm->offset.key;
1607 const size_t len = strm_frm->len;
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001608
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001609 /* do not use strm_frm->stream as the qc_stream_desc instance
1610 * might be freed at this stage. Use the id to do a proper
Amaury Denoyellee4301da2022-04-19 17:59:50 +02001611 * lookup.
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001612 *
1613 * TODO if lookup operation impact on the perf is noticeable,
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001614 * implement a refcount on qc_stream_desc instances.
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001615 */
Amaury Denoyellee4301da2022-04-19 17:59:50 +02001616 node = eb64_lookup(&qc->streams_by_id, strm_frm->id);
1617 if (!node) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001618 TRACE_DEVEL("acked stream for released stream", QUIC_EV_CONN_ACKSTRM, qc, strm_frm);
Frédéric Lécailleda342552022-04-25 10:28:49 +02001619 qc_release_frm(qc, frm);
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001620 /* early return */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001621 goto leave;
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001622 }
Amaury Denoyellee4301da2022-04-19 17:59:50 +02001623 stream = eb64_entry(node, struct qc_stream_desc, by_id);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001624
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001625 TRACE_DEVEL("acked stream", QUIC_EV_CONN_ACKSTRM, qc, strm_frm, stream);
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001626 if (offset <= stream->ack_offset) {
1627 if (qc_stream_desc_ack(&stream, offset, len)) {
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001628 stream_acked = 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001629 TRACE_DEVEL("stream consumed", QUIC_EV_CONN_ACKSTRM,
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001630 qc, strm_frm, stream);
1631 }
Amaury Denoyelle0c7679d2022-02-24 10:56:33 +01001632
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001633 if (!stream) {
1634 /* no need to continue if stream freed. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001635 TRACE_DEVEL("stream released and freed", QUIC_EV_CONN_ACKSTRM, qc);
Frédéric Lécailleda342552022-04-25 10:28:49 +02001636 qc_release_frm(qc, frm);
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001637 qc_check_close_on_released_mux(qc);
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001638 break;
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001639 }
1640
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001641 TRACE_DEVEL("stream consumed", QUIC_EV_CONN_ACKSTRM,
Frédéric Lécailleda342552022-04-25 10:28:49 +02001642 qc, strm_frm, stream);
1643 qc_release_frm(qc, frm);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001644 }
1645 else {
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001646 eb64_insert(&stream->acked_frms, &strm_frm->offset);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001647 }
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001648
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001649 stream_acked |= quic_stream_try_to_consume(qc, stream);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001650 }
1651 break;
1652 default:
Frédéric Lécailleda342552022-04-25 10:28:49 +02001653 qc_release_frm(qc, frm);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001654 }
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001655
Frédéric Lécaille89a2ceb2022-04-20 15:59:07 +02001656 if (stream_acked && qc->mux_state == QC_MUX_READY) {
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001657 struct qcc *qcc = qc->qcc;
1658
1659 if (qcc->subs && qcc->subs->events & SUB_RETRY_SEND) {
1660 tasklet_wakeup(qcc->subs->tasklet);
1661 qcc->subs->events &= ~SUB_RETRY_SEND;
1662 if (!qcc->subs->events)
1663 qcc->subs = NULL;
1664 }
1665 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001666 leave:
1667 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001668}
1669
1670/* Remove <largest> down to <smallest> node entries from <pkts> tree of TX packet,
1671 * deallocating them, and their TX frames.
1672 * Returns the last node reached to be used for the next range.
1673 * May be NULL if <largest> node could not be found.
1674 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001675static inline struct eb64_node *qc_ackrng_pkts(struct quic_conn *qc,
1676 struct eb_root *pkts,
1677 unsigned int *pkt_flags,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001678 struct list *newly_acked_pkts,
1679 struct eb64_node *largest_node,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001680 uint64_t largest, uint64_t smallest)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001681{
1682 struct eb64_node *node;
1683 struct quic_tx_packet *pkt;
1684
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001685 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1686
Frédéric Lécaille843399f2022-07-22 16:27:44 +02001687 node = largest_node ? largest_node : eb64_lookup_le(pkts, largest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001688 while (node && node->key >= smallest) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02001689 struct quic_frame *frm, *frmbak;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001690
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02001691 pkt = eb64_entry(node, struct quic_tx_packet, pn_node);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001692 *pkt_flags |= pkt->flags;
Willy Tarreau2b718102021-04-21 07:32:39 +02001693 LIST_INSERT(newly_acked_pkts, &pkt->list);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001694 TRACE_DEVEL("Removing packet #", QUIC_EV_CONN_PRSAFRM, qc, NULL, &pkt->pn_node.key);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001695 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list)
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001696 qc_treat_acked_tx_frm(qc, frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001697 node = eb64_prev(node);
1698 eb64_delete(&pkt->pn_node);
1699 }
1700
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001701 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001702 return node;
1703}
1704
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001705/* Remove all frames from <pkt_frm_list> and reinsert them in the
1706 * same order they have been sent into <pktns_frm_list>.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001707 */
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001708static inline void qc_requeue_nacked_pkt_tx_frms(struct quic_conn *qc,
Frédéric Lécaille96367152022-04-25 09:40:19 +02001709 struct quic_tx_packet *pkt,
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001710 struct list *pktns_frm_list)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001711{
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001712 struct quic_frame *frm, *frmbak;
1713 struct list tmp = LIST_HEAD_INIT(tmp);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001714 struct list *pkt_frm_list = &pkt->frms;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001715
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001716 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1717
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001718 list_for_each_entry_safe(frm, frmbak, pkt_frm_list, list) {
Frédéric Lécaille96367152022-04-25 09:40:19 +02001719 /* Only for debug */
1720 uint64_t pn;
1721
1722 /* First remove this frame from the packet it was attached to */
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001723 LIST_DELETE(&frm->list);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001724 pn = frm->pkt->pn_node.key;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001725 quic_tx_packet_refdec(frm->pkt);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001726 /* At this time, this frame is not freed but removed from its packet */
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001727 frm->pkt = NULL;
Frédéric Lécaille96367152022-04-25 09:40:19 +02001728 /* Remove any reference to this frame */
1729 qc_frm_unref(qc, frm);
1730 switch (frm->type) {
1731 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
1732 {
1733 struct quic_stream *strm_frm = &frm->stream;
1734 struct eb64_node *node = NULL;
1735 struct qc_stream_desc *stream_desc;
1736
1737 node = eb64_lookup(&qc->streams_by_id, strm_frm->id);
1738 if (!node) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001739 TRACE_DEVEL("released stream", QUIC_EV_CONN_PRSAFRM, qc, frm);
1740 TRACE_DEVEL("freeing frame from packet", QUIC_EV_CONN_PRSAFRM,
Frédéric Lécaille96367152022-04-25 09:40:19 +02001741 qc, frm, &pn);
1742 pool_free(pool_head_quic_frame, frm);
1743 continue;
1744 }
1745
1746 stream_desc = eb64_entry(node, struct qc_stream_desc, by_id);
1747 /* Do not resend this frame if in the "already acked range" */
1748 if (strm_frm->offset.key + strm_frm->len <= stream_desc->ack_offset) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001749 TRACE_DEVEL("ignored frame in already acked range",
Frédéric Lécaille96367152022-04-25 09:40:19 +02001750 QUIC_EV_CONN_PRSAFRM, qc, frm);
1751 continue;
1752 }
1753 else if (strm_frm->offset.key < stream_desc->ack_offset) {
1754 strm_frm->offset.key = stream_desc->ack_offset;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001755 TRACE_DEVEL("updated partially acked frame",
Frédéric Lécaille96367152022-04-25 09:40:19 +02001756 QUIC_EV_CONN_PRSAFRM, qc, frm);
1757 }
Frédéric Lécaille96367152022-04-25 09:40:19 +02001758 break;
1759 }
1760
1761 default:
1762 break;
1763 }
1764
1765 /* Do not resend probing packet with old data */
1766 if (pkt->flags & QUIC_FL_TX_PACKET_PROBE_WITH_OLD_DATA) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001767 TRACE_DEVEL("ignored frame with old data from packet", QUIC_EV_CONN_PRSAFRM,
1768 qc, frm, &pn);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001769 if (frm->origin)
1770 LIST_DELETE(&frm->ref);
1771 pool_free(pool_head_quic_frame, frm);
1772 continue;
1773 }
1774
1775 if (frm->flags & QUIC_FL_TX_FRAME_ACKED) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001776 TRACE_DEVEL("already acked frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
1777 TRACE_DEVEL("freeing frame from packet", QUIC_EV_CONN_PRSAFRM,
Frédéric Lécaille96367152022-04-25 09:40:19 +02001778 qc, frm, &pn);
1779 pool_free(pool_head_quic_frame, frm);
1780 }
1781 else {
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02001782 if (QUIC_FT_STREAM_8 <= frm->type && frm->type <= QUIC_FT_STREAM_F) {
1783 /* Mark this STREAM frame as lost. A look up their stream descriptor
1784 * will be performed to check the stream is not consumed or released.
1785 */
Amaury Denoyellef372e742022-08-16 14:41:57 +02001786 frm->flags |= QUIC_FL_TX_FRAME_LOST;
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02001787 }
Frédéric Lécaille96367152022-04-25 09:40:19 +02001788 LIST_APPEND(&tmp, &frm->list);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001789 TRACE_DEVEL("frame requeued", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001790 }
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001791 }
1792
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001793 LIST_SPLICE(pktns_frm_list, &tmp);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001794
1795 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001796}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001797
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001798/* Free <pkt> TX packet and its attached frames.
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05001799 * This is the responsibility of the caller to remove this packet of
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001800 * any data structure it was possibly attached to.
1801 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001802static inline void free_quic_tx_packet(struct quic_conn *qc,
1803 struct quic_tx_packet *pkt)
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001804{
1805 struct quic_frame *frm, *frmbak;
1806
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001807 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
1808
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001809 if (!pkt)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001810 goto leave;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001811
1812 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list) {
1813 LIST_DELETE(&frm->list);
1814 pool_free(pool_head_quic_frame, frm);
1815 }
1816 pool_free(pool_head_quic_tx_packet, pkt);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001817
1818 leave:
1819 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001820}
1821
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001822/* Free the TX packets of <pkts> list */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001823static inline void free_quic_tx_pkts(struct quic_conn *qc, struct list *pkts)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001824{
1825 struct quic_tx_packet *pkt, *tmp;
1826
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001827 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
1828
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001829 list_for_each_entry_safe(pkt, tmp, pkts, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001830 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001831 eb64_delete(&pkt->pn_node);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001832 free_quic_tx_packet(qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001833 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001834
1835 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001836}
1837
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001838/* Remove already sent ranges of acknowledged packet numbers from
1839 * <pktns> packet number space tree below <largest_acked_pn> possibly
1840 * updating the range which contains <largest_acked_pn>.
1841 * Never fails.
1842 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001843static void qc_treat_ack_of_ack(struct quic_conn *qc,
1844 struct quic_pktns *pktns,
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001845 int64_t largest_acked_pn)
1846{
1847 struct eb64_node *ar, *next_ar;
1848 struct quic_arngs *arngs = &pktns->rx.arngs;
1849
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001850 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1851
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001852 ar = eb64_first(&arngs->root);
1853 while (ar) {
1854 struct quic_arng_node *ar_node;
1855
1856 next_ar = eb64_next(ar);
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02001857 ar_node = eb64_entry(ar, struct quic_arng_node, first);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001858
1859 if ((int64_t)ar_node->first.key > largest_acked_pn) {
1860 TRACE_DEVEL("first.key > largest", QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001861 break;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001862 }
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001863
1864 if (largest_acked_pn < ar_node->last) {
1865 eb64_delete(ar);
1866 ar_node->first.key = largest_acked_pn + 1;
1867 eb64_insert(&arngs->root, ar);
1868 break;
1869 }
1870
1871 eb64_delete(ar);
1872 pool_free(pool_head_quic_arng, ar_node);
1873 arngs->sz--;
1874 ar = next_ar;
1875 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001876
1877 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001878}
1879
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001880/* Send a packet ack event nofication for each newly acked packet of
1881 * <newly_acked_pkts> list and free them.
1882 * Always succeeds.
1883 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001884static inline void qc_treat_newly_acked_pkts(struct quic_conn *qc,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001885 struct list *newly_acked_pkts)
1886{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001887 struct quic_tx_packet *pkt, *tmp;
1888 struct quic_cc_event ev = { .type = QUIC_CC_EVT_ACK, };
1889
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001890 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1891
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001892 list_for_each_entry_safe(pkt, tmp, newly_acked_pkts, list) {
1893 pkt->pktns->tx.in_flight -= pkt->in_flight_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01001894 qc->path->prep_in_flight -= pkt->in_flight_len;
Frédéric Lécailleba9db402022-03-01 17:06:50 +01001895 qc->path->in_flight -= pkt->in_flight_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001896 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01001897 qc->path->ifae_pkts--;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001898 /* If this packet contained an ACK frame, proceed to the
1899 * acknowledging of range of acks from the largest acknowledged
1900 * packet number which was sent in an ACK frame by this packet.
1901 */
1902 if (pkt->largest_acked_pn != -1)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001903 qc_treat_ack_of_ack(qc, pkt->pktns, pkt->largest_acked_pn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001904 ev.ack.acked = pkt->in_flight_len;
1905 ev.ack.time_sent = pkt->time_sent;
1906 quic_cc_event(&qc->path->cc, &ev);
Willy Tarreau2b718102021-04-21 07:32:39 +02001907 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001908 eb64_delete(&pkt->pn_node);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001909 quic_tx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001910 }
1911
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001912 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
1913
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001914}
1915
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01001916/* Release all the frames attached to <pktns> packet number space */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001917static inline void qc_release_pktns_frms(struct quic_conn *qc,
1918 struct quic_pktns *pktns)
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01001919{
1920 struct quic_frame *frm, *frmbak;
1921
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001922 TRACE_ENTER(QUIC_EV_CONN_PHPKTS, qc);
1923
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01001924 list_for_each_entry_safe(frm, frmbak, &pktns->tx.frms, list) {
1925 LIST_DELETE(&frm->list);
1926 pool_free(pool_head_quic_frame, frm);
1927 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001928
1929 TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01001930}
1931
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001932/* Handle <pkts> list of lost packets detected at <now_us> handling
1933 * their TX frames.
1934 * Send a packet loss event to the congestion controller if
1935 * in flight packet have been lost.
1936 * Also frees the packet in <pkts> list.
1937 * Never fails.
1938 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001939static inline void qc_release_lost_pkts(struct quic_conn *qc,
1940 struct quic_pktns *pktns,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001941 struct list *pkts,
1942 uint64_t now_us)
1943{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001944 struct quic_tx_packet *pkt, *tmp, *oldest_lost, *newest_lost;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001945 uint64_t lost_bytes;
1946
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001947 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1948
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001949 lost_bytes = 0;
1950 oldest_lost = newest_lost = NULL;
1951 list_for_each_entry_safe(pkt, tmp, pkts, list) {
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001952 struct list tmp = LIST_HEAD_INIT(tmp);
1953
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001954 lost_bytes += pkt->in_flight_len;
1955 pkt->pktns->tx.in_flight -= pkt->in_flight_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01001956 qc->path->prep_in_flight -= pkt->in_flight_len;
Frédéric Lécailleba9db402022-03-01 17:06:50 +01001957 qc->path->in_flight -= pkt->in_flight_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001958 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01001959 qc->path->ifae_pkts--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001960 /* Treat the frames of this lost packet. */
Frédéric Lécaille96367152022-04-25 09:40:19 +02001961 qc_requeue_nacked_pkt_tx_frms(qc, pkt, &pktns->tx.frms);
Willy Tarreau2b718102021-04-21 07:32:39 +02001962 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001963 if (!oldest_lost) {
1964 oldest_lost = newest_lost = pkt;
1965 }
1966 else {
1967 if (newest_lost != oldest_lost)
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001968 quic_tx_packet_refdec(newest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001969 newest_lost = pkt;
1970 }
1971 }
1972
Frédéric Lécaillea5ee0ae2022-03-02 14:52:56 +01001973 if (newest_lost) {
1974 /* Sent a congestion event to the controller */
Benoit DOLEZ69e3f052022-06-08 09:28:56 +02001975 struct quic_cc_event ev = { };
1976
1977 ev.type = QUIC_CC_EVT_LOSS;
1978 ev.loss.time_sent = newest_lost->time_sent;
Frédéric Lécaillea5ee0ae2022-03-02 14:52:56 +01001979
1980 quic_cc_event(&qc->path->cc, &ev);
1981 }
1982
1983 /* If an RTT have been already sampled, <rtt_min> has been set.
1984 * We must check if we are experiencing a persistent congestion.
1985 * If this is the case, the congestion controller must re-enter
1986 * slow start state.
1987 */
1988 if (qc->path->loss.rtt_min && newest_lost != oldest_lost) {
1989 unsigned int period = newest_lost->time_sent - oldest_lost->time_sent;
1990
1991 if (quic_loss_persistent_congestion(&qc->path->loss, period,
1992 now_ms, qc->max_ack_delay))
1993 qc->path->cc.algo->slow_start(&qc->path->cc);
1994 }
1995
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001996 if (lost_bytes) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001997 quic_tx_packet_refdec(oldest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001998 if (newest_lost != oldest_lost)
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001999 quic_tx_packet_refdec(newest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002000 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002001
2002 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002003}
2004
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002005/* Parse ACK frame into <frm> from a buffer at <buf> address with <end> being at
2006 * one byte past the end of this buffer. Also update <rtt_sample> if needed, i.e.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05002007 * 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 +01002008 * acked ack-eliciting packet.
2009 * Return 1, if succeeded, 0 if not.
2010 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002011static inline int qc_parse_ack_frm(struct quic_conn *qc,
2012 struct quic_frame *frm,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002013 struct quic_enc_level *qel,
2014 unsigned int *rtt_sample,
2015 const unsigned char **pos, const unsigned char *end)
2016{
2017 struct quic_ack *ack = &frm->ack;
2018 uint64_t smallest, largest;
2019 struct eb_root *pkts;
2020 struct eb64_node *largest_node;
2021 unsigned int time_sent, pkt_flags;
2022 struct list newly_acked_pkts = LIST_HEAD_INIT(newly_acked_pkts);
2023 struct list lost_pkts = LIST_HEAD_INIT(lost_pkts);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002024 int ret = 0;
2025
2026 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002027
2028 if (ack->largest_ack > qel->pktns->tx.next_pn) {
2029 TRACE_DEVEL("ACK for not sent packet", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002030 qc, NULL, &ack->largest_ack);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002031 goto err;
2032 }
2033
2034 if (ack->first_ack_range > ack->largest_ack) {
2035 TRACE_DEVEL("too big first ACK range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002036 qc, NULL, &ack->first_ack_range);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002037 goto err;
2038 }
2039
2040 largest = ack->largest_ack;
2041 smallest = largest - ack->first_ack_range;
2042 pkts = &qel->pktns->tx.pkts;
2043 pkt_flags = 0;
2044 largest_node = NULL;
2045 time_sent = 0;
2046
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02002047 if ((int64_t)ack->largest_ack > qel->pktns->rx.largest_acked_pn) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002048 largest_node = eb64_lookup(pkts, largest);
2049 if (!largest_node) {
2050 TRACE_DEVEL("Largest acked packet not found",
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002051 QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille83b7a5b2021-11-17 16:16:04 +01002052 }
2053 else {
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02002054 time_sent = eb64_entry(largest_node,
Frédéric Lécaille83b7a5b2021-11-17 16:16:04 +01002055 struct quic_tx_packet, pn_node)->time_sent;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002056 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002057 }
2058
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002059 TRACE_PROTO("rcvd ack range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002060 qc, NULL, &largest, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002061 do {
2062 uint64_t gap, ack_range;
2063
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002064 qc_ackrng_pkts(qc, pkts, &pkt_flags, &newly_acked_pkts,
2065 largest_node, largest, smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002066 if (!ack->ack_range_num--)
2067 break;
2068
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002069 if (!quic_dec_int(&gap, pos, end)) {
2070 TRACE_ERROR("quic_dec_int(gap) failed", QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002071 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002072 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002073
2074 if (smallest < gap + 2) {
2075 TRACE_DEVEL("wrong gap value", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002076 qc, NULL, &gap, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002077 goto err;
2078 }
2079
2080 largest = smallest - gap - 2;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002081 if (!quic_dec_int(&ack_range, pos, end)) {
2082 TRACE_ERROR("quic_dec_int(ack_range) failed", QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002083 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002084 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002085
2086 if (largest < ack_range) {
2087 TRACE_DEVEL("wrong ack range value", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002088 qc, NULL, &largest, &ack_range);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002089 goto err;
2090 }
2091
2092 /* Do not use this node anymore. */
2093 largest_node = NULL;
2094 /* Next range */
2095 smallest = largest - ack_range;
2096
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002097 TRACE_PROTO("rcvd next ack range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002098 qc, NULL, &largest, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002099 } while (1);
2100
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002101 if (time_sent && (pkt_flags & QUIC_FL_TX_PACKET_ACK_ELICITING)) {
2102 *rtt_sample = tick_remain(time_sent, now_ms);
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02002103 qel->pktns->rx.largest_acked_pn = ack->largest_ack;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002104 }
2105
2106 if (!LIST_ISEMPTY(&newly_acked_pkts)) {
2107 if (!eb_is_empty(&qel->pktns->tx.pkts)) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002108 qc_packet_loss_lookup(qel->pktns, qc, &lost_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002109 if (!LIST_ISEMPTY(&lost_pkts))
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002110 qc_release_lost_pkts(qc, qel->pktns, &lost_pkts, now_ms);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002111 }
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002112 qc_treat_newly_acked_pkts(qc, &newly_acked_pkts);
2113 if (quic_peer_validated_addr(qc))
2114 qc->path->loss.pto_count = 0;
2115 qc_set_timer(qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002116 }
2117
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002118 ret = 1;
2119 leave:
2120 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
2121 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002122
2123 err:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002124 free_quic_tx_pkts(qc, &newly_acked_pkts);
2125 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002126}
2127
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02002128/* This function gives the detail of the SSL error. It is used only
2129 * if the debug mode and the verbose mode are activated. It dump all
2130 * the SSL error until the stack was empty.
2131 */
2132static forceinline void qc_ssl_dump_errors(struct connection *conn)
2133{
2134 if (unlikely(global.mode & MODE_DEBUG)) {
2135 while (1) {
Willy Tarreau325fc632022-04-11 18:47:38 +02002136 const char *func = NULL;
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02002137 unsigned long ret;
2138
Willy Tarreau325fc632022-04-11 18:47:38 +02002139 ERR_peek_error_func(&func);
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02002140 ret = ERR_get_error();
2141 if (!ret)
2142 return;
2143
2144 fprintf(stderr, "conn. @%p OpenSSL error[0x%lx] %s: %s\n", conn, ret,
Willy Tarreau325fc632022-04-11 18:47:38 +02002145 func, ERR_reason_error_string(ret));
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02002146 }
2147 }
2148}
2149
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01002150int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx,
2151 const char **str, int *len);
2152
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002153/* Provide CRYPTO data to the TLS stack found at <data> with <len> as length
2154 * from <qel> encryption level with <ctx> as QUIC connection context.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05002155 * Remaining parameter are there for debugging purposes.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002156 * Return 1 if succeeded, 0 if not.
2157 */
2158static inline int qc_provide_cdata(struct quic_enc_level *el,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002159 struct ssl_sock_ctx *ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002160 const unsigned char *data, size_t len,
2161 struct quic_rx_packet *pkt,
2162 struct quic_rx_crypto_frm *cf)
2163{
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02002164 int ssl_err, state;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002165 struct quic_conn *qc;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002166 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002167
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002168 ssl_err = SSL_ERROR_NONE;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01002169 qc = ctx->qc;
2170
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002171 TRACE_ENTER(QUIC_EV_CONN_SSLDATA, qc);
2172
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002173 if (SSL_provide_quic_data(ctx->ssl, el->level, data, len) != 1) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002174 TRACE_ERROR("SSL_provide_quic_data() error",
Frédéric Lécaillefde2a982021-12-27 15:12:09 +01002175 QUIC_EV_CONN_SSLDATA, qc, pkt, cf, ctx->ssl);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002176 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002177 }
2178
2179 el->rx.crypto.offset += len;
2180 TRACE_PROTO("in order CRYPTO data",
Frédéric Lécaillee7ff2b22021-12-22 17:40:38 +01002181 QUIC_EV_CONN_SSLDATA, qc, NULL, cf, ctx->ssl);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002182
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002183 state = qc->state;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02002184 if (state < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002185 ssl_err = SSL_do_handshake(ctx->ssl);
2186 if (ssl_err != 1) {
2187 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
2188 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002189 TRACE_PROTO("SSL handshake in progress",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002190 QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002191 goto out;
2192 }
2193
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02002194 /* TODO: Should close the connection asap */
2195 if (!(qc->flags & QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED)) {
2196 qc->flags |= QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED;
2197 HA_ATOMIC_DEC(&qc->prx_counters->half_open_conn);
2198 HA_ATOMIC_INC(&qc->prx_counters->hdshk_fail);
2199 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002200 TRACE_ERROR("SSL handshake error", QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaille7c881bd2021-09-28 09:05:59 +02002201 qc_ssl_dump_errors(ctx->conn);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01002202 ERR_clear_error();
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002203 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002204 }
2205
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002206 TRACE_PROTO("SSL handshake OK", QUIC_EV_CONN_IO_CB, qc, &state);
Frédéric Lécaillebc964bd2022-04-13 16:20:09 +02002207
2208 /* Check the alpn could be negotiated */
2209 if (!qc->app_ops) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002210 TRACE_ERROR("No negotiated ALPN", QUIC_EV_CONN_IO_CB, qc, &state);
Frédéric Lécaillebc964bd2022-04-13 16:20:09 +02002211 quic_set_tls_alert(qc, SSL_AD_NO_APPLICATION_PROTOCOL);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002212 goto leave;
Frédéric Lécaillebc964bd2022-04-13 16:20:09 +02002213 }
2214
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02002215 if (!(qc->flags & QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002216 TRACE_DEVEL("dec half open counter", QUIC_EV_CONN_IO_CB, qc, &state);
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02002217 qc->flags |= QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED;
2218 HA_ATOMIC_DEC(&qc->prx_counters->half_open_conn);
2219 }
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002220 /* I/O callback switch */
2221 ctx->wait_event.tasklet->process = quic_conn_app_io_cb;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01002222 if (qc_is_listener(ctx->qc)) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002223 qc->state = QUIC_HS_ST_CONFIRMED;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01002224 /* The connection is ready to be accepted. */
2225 quic_accept_push_qc(qc);
2226 }
2227 else {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002228 qc->state = QUIC_HS_ST_COMPLETE;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01002229 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002230 } else {
2231 ssl_err = SSL_process_quic_post_handshake(ctx->ssl);
2232 if (ssl_err != 1) {
2233 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
2234 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002235 TRACE_PROTO("SSL post handshake in progress",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002236 QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002237 goto out;
2238 }
2239
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002240 TRACE_ERROR("SSL post handshake error",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002241 QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002242 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002243 }
2244
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002245 TRACE_STATE("SSL post handshake succeeded", QUIC_EV_CONN_IO_CB, qc, &state);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002246 }
Amaury Denoyellee2288c32021-12-03 14:44:21 +01002247
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002248 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002249 ret = 1;
2250 leave:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002251 TRACE_LEAVE(QUIC_EV_CONN_SSLDATA, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002252 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002253}
2254
Amaury Denoyellef8db5aa2022-05-24 15:26:07 +02002255/* Parse a STREAM frame <strm_frm>
2256 *
2257 * Return 1 on success. On error, 0 is returned. In this case, the packet
2258 * containing the frame must not be acknowledged.
Amaury Denoyelle74cf2372022-04-29 15:58:22 +02002259 */
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002260static inline int qc_handle_strm_frm(struct quic_rx_packet *pkt,
2261 struct quic_stream *strm_frm,
2262 struct quic_conn *qc)
2263{
Amaury Denoyellef8db5aa2022-05-24 15:26:07 +02002264 int ret;
2265
Amaury Denoyelle74cf2372022-04-29 15:58:22 +02002266 /* RFC9000 13.1. Packet Processing
2267 *
2268 * A packet MUST NOT be acknowledged until packet protection has been
2269 * successfully removed and all frames contained in the packet have
2270 * been processed. For STREAM frames, this means the data has been
2271 * enqueued in preparation to be received by the application protocol,
2272 * but it does not require that data be delivered and consumed.
2273 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002274 TRACE_ENTER(QUIC_EV_CONN_PRSFRM, qc);
2275
Amaury Denoyellef8db5aa2022-05-24 15:26:07 +02002276 ret = qcc_recv(qc->qcc, strm_frm->id, strm_frm->len,
2277 strm_frm->offset.key, strm_frm->fin,
2278 (char *)strm_frm->data);
Amaury Denoyelle74cf2372022-04-29 15:58:22 +02002279
Amaury Denoyellef8db5aa2022-05-24 15:26:07 +02002280 /* frame rejected - packet must not be acknowledeged */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002281 TRACE_LEAVE(QUIC_EV_CONN_PRSFRM, qc);
2282 return !ret;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002283}
2284
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002285/* Duplicate all frames from <pkt_frm_list> list into <out_frm_list> list
2286 * for <qc> QUIC connection.
2287 * This is a best effort function which never fails even if no memory could be
2288 * allocated to duplicate these frames.
2289 */
2290static void qc_dup_pkt_frms(struct quic_conn *qc,
2291 struct list *pkt_frm_list, struct list *out_frm_list)
2292{
2293 struct quic_frame *frm, *frmbak;
2294 struct list tmp = LIST_HEAD_INIT(tmp);
2295
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002296 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
2297
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002298 list_for_each_entry_safe(frm, frmbak, pkt_frm_list, list) {
2299 struct quic_frame *dup_frm, *origin;
2300
2301 switch (frm->type) {
2302 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
2303 {
2304 struct quic_stream *strm_frm = &frm->stream;
2305 struct eb64_node *node = NULL;
2306 struct qc_stream_desc *stream_desc;
2307
2308 node = eb64_lookup(&qc->streams_by_id, strm_frm->id);
2309 if (!node) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002310 TRACE_DEVEL("ignored frame for a released stream", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002311 continue;
2312 }
2313
2314 stream_desc = eb64_entry(node, struct qc_stream_desc, by_id);
2315 /* Do not resend this frame if in the "already acked range" */
2316 if (strm_frm->offset.key + strm_frm->len <= stream_desc->ack_offset) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002317 TRACE_DEVEL("ignored frame in already acked range",
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002318 QUIC_EV_CONN_PRSAFRM, qc, frm);
2319 continue;
2320 }
2321 else if (strm_frm->offset.key < stream_desc->ack_offset) {
2322 strm_frm->offset.key = stream_desc->ack_offset;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002323 TRACE_DEVEL("updated partially acked frame",
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002324 QUIC_EV_CONN_PRSAFRM, qc, frm);
2325 }
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002326 break;
2327 }
2328
2329 default:
2330 break;
2331 }
2332
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002333 // FIXME: zalloc
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002334 dup_frm = pool_zalloc(pool_head_quic_frame);
2335 if (!dup_frm) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002336 TRACE_ERROR("could not duplicate frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002337 break;
2338 }
2339
2340 /* If <frm> is already a copy of another frame, we must take
2341 * its original frame as source for the copy.
2342 */
2343 origin = frm->origin ? frm->origin : frm;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002344 TRACE_DEVEL("built probing frame", QUIC_EV_CONN_PRSAFRM, qc, origin);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002345 *dup_frm = *origin;
2346 LIST_INIT(&dup_frm->reflist);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002347 TRACE_DEVEL("duplicated from packet", QUIC_EV_CONN_PRSAFRM,
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002348 qc, NULL, &origin->pkt->pn_node.key);
2349 dup_frm->origin = origin;
2350 LIST_APPEND(&origin->reflist, &dup_frm->ref);
2351 LIST_APPEND(&tmp, &dup_frm->list);
2352 }
2353
2354 LIST_SPLICE(out_frm_list, &tmp);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002355
2356 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002357}
2358
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002359/* Prepare a fast retransmission from <qel> encryption level */
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002360static void qc_prep_fast_retrans(struct quic_conn *qc,
2361 struct quic_enc_level *qel,
2362 struct list *frms1, struct list *frms2)
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002363{
2364 struct eb_root *pkts = &qel->pktns->tx.pkts;
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002365 struct list *frms = frms1;
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002366 struct eb64_node *node;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002367 struct quic_tx_packet *pkt;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002368
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002369 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
2370
2371 BUG_ON(frms1 == frms2);
2372
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002373 pkt = NULL;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002374 node = eb64_first(pkts);
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002375 start:
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002376 while (node) {
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002377 pkt = eb64_entry(node, struct quic_tx_packet, pn_node);
2378 node = eb64_next(node);
2379 /* Skip the empty and coalesced packets */
Frédéric Lécailleb44cbc62022-04-21 17:58:46 +02002380 if (!LIST_ISEMPTY(&pkt->frms) && !(pkt->flags & QUIC_FL_TX_PACKET_COALESCED))
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002381 break;
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002382 }
2383
2384 if (!pkt)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002385 goto leave;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002386
Frédéric Lécaille12fd2592022-03-31 08:42:06 +02002387 /* When building a packet from another one, the field which may increase the
2388 * packet size is the packet number. And the maximum increase is 4 bytes.
2389 */
2390 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc) &&
2391 pkt->len + 4 > 3 * qc->rx.bytes - qc->tx.prep_bytes) {
2392 TRACE_PROTO("anti-amplification limit would be reached", QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002393 goto leave;
Frédéric Lécaille12fd2592022-03-31 08:42:06 +02002394 }
2395
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002396 TRACE_DEVEL("duplicating packet", QUIC_EV_CONN_PRSAFRM, qc, NULL, &pkt->pn_node.key);
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002397 qc_dup_pkt_frms(qc, &pkt->frms, frms);
2398 if (frms == frms1 && frms2) {
2399 frms = frms2;
2400 goto start;
2401 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002402 leave:
2403 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002404}
2405
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002406/* Prepare a fast retransmission during a handshake after a client
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002407 * has resent Initial packets. According to the RFC a server may retransmit
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002408 * Initial packets send them coalescing with others (Handshake here).
2409 * (Listener only function).
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002410 */
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002411static void qc_prep_hdshk_fast_retrans(struct quic_conn *qc,
2412 struct list *ifrms, struct list *hfrms)
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002413{
2414 struct list itmp = LIST_HEAD_INIT(itmp);
2415 struct list htmp = LIST_HEAD_INIT(htmp);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002416
2417 struct quic_enc_level *iqel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
2418 struct quic_enc_level *hqel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
2419 struct quic_enc_level *qel = iqel;
2420 struct eb_root *pkts;
2421 struct eb64_node *node;
2422 struct quic_tx_packet *pkt;
2423 struct list *tmp = &itmp;
2424
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002425 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002426 start:
2427 pkt = NULL;
2428 pkts = &qel->pktns->tx.pkts;
2429 node = eb64_first(pkts);
2430 /* Skip the empty packet (they have already been retransmitted) */
2431 while (node) {
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02002432 pkt = eb64_entry(node, struct quic_tx_packet, pn_node);
Frédéric Lécailleb44cbc62022-04-21 17:58:46 +02002433 if (!LIST_ISEMPTY(&pkt->frms) && !(pkt->flags & QUIC_FL_TX_PACKET_COALESCED))
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002434 break;
2435 node = eb64_next(node);
2436 }
2437
2438 if (!pkt)
2439 goto end;
2440
Frédéric Lécaille12fd2592022-03-31 08:42:06 +02002441 /* When building a packet from another one, the field which may increase the
2442 * packet size is the packet number. And the maximum increase is 4 bytes.
2443 */
2444 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc) &&
2445 pkt->len + 4 > 3 * qc->rx.bytes - qc->tx.prep_bytes) {
2446 TRACE_PROTO("anti-amplification limit would be reached", QUIC_EV_CONN_PRSAFRM, qc);
2447 goto end;
2448 }
2449
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002450 qel->pktns->tx.pto_probe += 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002451
2452 /* No risk to loop here, #packet per datagram is bounded */
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002453 requeue:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002454 TRACE_DEVEL("duplicating packet", QUIC_EV_CONN_PRSAFRM, qc, NULL, &pkt->pn_node.key);
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002455 qc_dup_pkt_frms(qc, &pkt->frms, tmp);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002456 if (qel == iqel) {
2457 if (pkt->next && pkt->next->type == QUIC_PACKET_TYPE_HANDSHAKE) {
2458 pkt = pkt->next;
2459 tmp = &htmp;
2460 hqel->pktns->tx.pto_probe += 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002461 TRACE_DEVEL("looping for next packet", QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002462 goto requeue;
2463 }
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002464 }
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002465
2466 end:
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002467 LIST_SPLICE(ifrms, &itmp);
2468 LIST_SPLICE(hfrms, &htmp);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002469
2470 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002471}
2472
Frédéric Lécaille6f7607e2022-05-25 22:25:37 +02002473static void qc_cc_err_count_inc(struct quic_conn *qc, struct quic_frame *frm)
Frédéric Lécaille3ccea6d2022-05-23 22:54:54 +02002474{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002475 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
2476
Frédéric Lécaille6f7607e2022-05-25 22:25:37 +02002477 if (frm->type == QUIC_FT_CONNECTION_CLOSE)
2478 quic_stats_transp_err_count_inc(qc->prx_counters, frm->connection_close.error_code);
2479 else if (frm->type == QUIC_FT_CONNECTION_CLOSE_APP) {
2480 if (qc->mux_state != QC_MUX_READY || !qc->qcc->app_ops->inc_err_cnt)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002481 goto out;
Frédéric Lécaille6f7607e2022-05-25 22:25:37 +02002482
2483 qc->qcc->app_ops->inc_err_cnt(qc->qcc->ctx, frm->connection_close_app.error_code);
2484 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002485
2486 out:
2487 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Frédéric Lécaille3ccea6d2022-05-23 22:54:54 +02002488}
2489
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002490/* Enqueue a STOP_SENDING frame to send into 1RTT packet number space
2491 * frame list to send.
2492 * Return 1 if succeeded, 0 if not.
2493 */
2494static int qc_stop_sending_frm_enqueue(struct quic_conn *qc, uint64_t id)
2495{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002496 int ret = 0;
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002497 struct quic_frame *frm;
2498 struct quic_enc_level *qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
2499 uint64_t app_error_code;
2500
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002501 TRACE_ENTER(QUIC_EV_CONN_PRSHPKT, qc);
2502
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002503 /* TODO: the mux may be released, we cannot have more
2504 * information about the application error code to send
2505 * at this time.
2506 */
2507 app_error_code = H3_REQUEST_REJECTED;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002508 // fixme: zalloc
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002509 frm = pool_zalloc(pool_head_quic_frame);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002510 if (!frm) {
2511 TRACE_ERROR("failed to allocate quic_frame", QUIC_EV_CONN_PRSHPKT, qc);
2512 goto out;
2513 }
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002514
2515 frm->type = QUIC_FT_STOP_SENDING;
2516 frm->stop_sending.id = id;
2517 frm->stop_sending.app_error_code = app_error_code;
2518 LIST_INIT(&frm->reflist);
2519 LIST_APPEND(&qel->pktns->tx.frms, &frm->list);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002520 ret = 1;
2521 out:
2522 TRACE_LEAVE(QUIC_EV_CONN_PRSHPKT, qc);
2523 return ret;
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002524}
2525
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002526/* Parse all the frames of <pkt> QUIC packet for QUIC connection with <ctx>
2527 * as I/O handler context and <qel> as encryption level.
2528 * Returns 1 if succeeded, 0 if failed.
2529 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002530static 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 +01002531 struct quic_enc_level *qel)
2532{
2533 struct quic_frame frm;
2534 const unsigned char *pos, *end;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01002535 struct quic_conn *qc = ctx->qc;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002536 int fast_retrans = 0, ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002537
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002538 TRACE_ENTER(QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002539 /* Skip the AAD */
2540 pos = pkt->data + pkt->aad_len;
2541 end = pkt->data + pkt->len;
2542
2543 while (pos < end) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002544 if (!qc_parse_frm(&frm, pkt, &pos, end, qc)) {
2545 // trace already emitted by function above
2546 goto leave;
2547 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002548
Frédéric Lécaille1ede8232021-12-23 14:11:25 +01002549 TRACE_PROTO("RX frame", QUIC_EV_CONN_PSTRM, qc, &frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002550 switch (frm.type) {
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002551 case QUIC_FT_PADDING:
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002552 break;
2553 case QUIC_FT_PING:
2554 break;
2555 case QUIC_FT_ACK:
2556 {
2557 unsigned int rtt_sample;
2558
2559 rtt_sample = 0;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002560 if (!qc_parse_ack_frm(qc, &frm, qel, &rtt_sample, &pos, end)) {
2561 // trace already emitted by function above
2562 goto leave;
2563 }
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002564
2565 if (rtt_sample) {
2566 unsigned int ack_delay;
2567
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002568 ack_delay = !quic_application_pktns(qel->pktns, qc) ? 0 :
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002569 qc->state >= QUIC_HS_ST_CONFIRMED ?
Frédéric Lécaille22576a22021-12-28 14:27:43 +01002570 MS_TO_TICKS(QUIC_MIN(quic_ack_delay_ms(&frm.ack, qc), qc->max_ack_delay)) :
2571 MS_TO_TICKS(quic_ack_delay_ms(&frm.ack, qc));
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002572 quic_loss_srtt_update(&qc->path->loss, rtt_sample, ack_delay, qc);
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002573 }
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002574 break;
2575 }
Frédéric Lécaillee06ca652022-05-29 11:48:58 +02002576 case QUIC_FT_RESET_STREAM:
2577 /* TODO: handle this frame at STREAM level */
2578 break;
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002579 case QUIC_FT_STOP_SENDING:
Amaury Denoyellea5b50752022-07-04 11:44:53 +02002580 {
2581 struct quic_stop_sending *stop_sending = &frm.stop_sending;
2582 if (qc->mux_state == QC_MUX_READY) {
2583 if (qcc_recv_stop_sending(qc->qcc, stop_sending->id,
2584 stop_sending->app_error_code)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002585 TRACE_ERROR("qcc_recv_stop_sending() failed", QUIC_EV_CONN_PRSHPKT, qc);
2586 goto leave;
Amaury Denoyellea5b50752022-07-04 11:44:53 +02002587 }
2588 }
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002589 break;
Amaury Denoyellea5b50752022-07-04 11:44:53 +02002590 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002591 case QUIC_FT_CRYPTO:
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002592 {
2593 struct quic_rx_crypto_frm *cf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002594
Frédéric Lécaillebd242082022-02-25 17:17:59 +01002595 if (unlikely(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD)) {
Frédéric Lécaille917a7db2022-01-03 17:00:35 +01002596 /* XXX TO DO: <cfdebug> is used only for the traces. */
2597 struct quic_rx_crypto_frm cfdebug = { };
2598
2599 cfdebug.offset_node.key = frm.crypto.offset;
2600 cfdebug.len = frm.crypto.len;
2601 TRACE_PROTO("CRYPTO data discarded",
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002602 QUIC_EV_CONN_RXPKT, qc, pkt, &cfdebug);
Frédéric Lécaille917a7db2022-01-03 17:00:35 +01002603 break;
2604 }
2605
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002606 if (unlikely(frm.crypto.offset < qel->rx.crypto.offset)) {
2607 if (frm.crypto.offset + frm.crypto.len <= qel->rx.crypto.offset) {
2608 /* XXX TO DO: <cfdebug> is used only for the traces. */
2609 struct quic_rx_crypto_frm cfdebug = { };
2610
2611 cfdebug.offset_node.key = frm.crypto.offset;
2612 cfdebug.len = frm.crypto.len;
2613 /* Nothing to do */
2614 TRACE_PROTO("Already received CRYPTO data",
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002615 QUIC_EV_CONN_RXPKT, qc, pkt, &cfdebug);
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002616 if (qc_is_listener(ctx->qc) &&
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002617 qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL])
2618 fast_retrans = 1;
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002619 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002620 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002621 else {
2622 size_t diff = qel->rx.crypto.offset - frm.crypto.offset;
2623 /* XXX TO DO: <cfdebug> is used only for the traces. */
2624 struct quic_rx_crypto_frm cfdebug = { };
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002625
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002626 cfdebug.offset_node.key = frm.crypto.offset;
2627 cfdebug.len = frm.crypto.len;
2628 TRACE_PROTO("Partially already received CRYPTO data",
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002629 QUIC_EV_CONN_RXPKT, qc, pkt, &cfdebug);
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002630 frm.crypto.len -= diff;
2631 frm.crypto.data += diff;
2632 frm.crypto.offset = qel->rx.crypto.offset;
2633 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002634 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002635
2636 if (frm.crypto.offset == qel->rx.crypto.offset) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002637 /* XXX TO DO: <cf> is used only for the traces. */
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002638 struct quic_rx_crypto_frm cfdebug = { };
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002639
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002640 cfdebug.offset_node.key = frm.crypto.offset;
2641 cfdebug.len = frm.crypto.len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002642 if (!qc_provide_cdata(qel, ctx,
2643 frm.crypto.data, frm.crypto.len,
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002644 pkt, &cfdebug)) {
2645 // trace already emitted by function above
2646 goto leave;
2647 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002648
2649 break;
2650 }
2651
2652 /* frm.crypto.offset > qel->rx.crypto.offset */
2653 cf = pool_alloc(pool_head_quic_rx_crypto_frm);
2654 if (!cf) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002655 TRACE_ERROR("CRYPTO frame allocation failed",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002656 QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002657 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002658 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002659
2660 cf->offset_node.key = frm.crypto.offset;
2661 cf->len = frm.crypto.len;
2662 cf->data = frm.crypto.data;
2663 cf->pkt = pkt;
2664 eb64_insert(&qel->rx.crypto.frms, &cf->offset_node);
2665 quic_rx_packet_refinc(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002666 break;
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002667 }
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002668 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002669 {
2670 struct quic_stream *stream = &frm.stream;
Frédéric Lécailled62240c2022-05-02 18:52:58 +02002671 unsigned nb_streams = qc->rx.strms[qcs_id_type(stream->id)].nb_streams;
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002672
Frédéric Lécailled62240c2022-05-02 18:52:58 +02002673 /* The upper layer may not be allocated. */
2674 if (qc->mux_state != QC_MUX_READY) {
2675 if ((stream->id >> QCS_ID_TYPE_SHIFT) < nb_streams) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002676 TRACE_DATA("Already closed stream", QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécailled62240c2022-05-02 18:52:58 +02002677 break;
2678 }
2679 else {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002680 TRACE_DEVEL("No mux for new stream", QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002681 if (!qc_stop_sending_frm_enqueue(qc, stream->id))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002682 TRACE_ERROR("could not enqueue STOP_SENDING frame", QUIC_EV_CONN_PRSHPKT, qc);
2683 /* This packet will not be acknowledged */
2684 goto leave;
Frédéric Lécailled62240c2022-05-02 18:52:58 +02002685 }
2686 }
Frédéric Lécaille12aa26b2022-03-21 11:37:13 +01002687
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002688 if (!qc_handle_strm_frm(pkt, stream, qc)) {
2689 TRACE_ERROR("qc_handle_strm_frm() failed", QUIC_EV_CONN_PRSHPKT, qc);
2690 goto leave;
2691 }
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002692
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002693 break;
2694 }
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002695 case QUIC_FT_MAX_DATA:
Amaury Denoyelle1e5e5132022-03-08 16:23:03 +01002696 if (qc->mux_state == QC_MUX_READY) {
2697 struct quic_max_data *data = &frm.max_data;
2698 qcc_recv_max_data(qc->qcc, data->max_data);
2699 }
2700 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002701 case QUIC_FT_MAX_STREAM_DATA:
Amaury Denoyelle8727ff42022-03-08 10:39:55 +01002702 if (qc->mux_state == QC_MUX_READY) {
2703 struct quic_max_stream_data *data = &frm.max_stream_data;
Amaury Denoyelleb68559a2022-07-06 15:45:20 +02002704 if (qcc_recv_max_stream_data(qc->qcc, data->id,
2705 data->max_stream_data)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002706 TRACE_ERROR("qcc_recv_max_stream_data() failed", QUIC_EV_CONN_PRSHPKT, qc);
2707 goto leave;
Amaury Denoyelleb68559a2022-07-06 15:45:20 +02002708 }
Amaury Denoyelle8727ff42022-03-08 10:39:55 +01002709 }
2710 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002711 case QUIC_FT_MAX_STREAMS_BIDI:
2712 case QUIC_FT_MAX_STREAMS_UNI:
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02002713 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002714 case QUIC_FT_DATA_BLOCKED:
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02002715 HA_ATOMIC_INC(&qc->prx_counters->data_blocked);
2716 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002717 case QUIC_FT_STREAM_DATA_BLOCKED:
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02002718 HA_ATOMIC_INC(&qc->prx_counters->stream_data_blocked);
2719 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002720 case QUIC_FT_STREAMS_BLOCKED_BIDI:
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02002721 HA_ATOMIC_INC(&qc->prx_counters->streams_data_blocked_bidi);
2722 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002723 case QUIC_FT_STREAMS_BLOCKED_UNI:
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02002724 HA_ATOMIC_INC(&qc->prx_counters->streams_data_blocked_uni);
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002725 break;
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002726 case QUIC_FT_NEW_CONNECTION_ID:
Frédéric Lécaille2cca2412022-01-21 13:55:03 +01002727 case QUIC_FT_RETIRE_CONNECTION_ID:
2728 /* XXX TO DO XXX */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002729 break;
2730 case QUIC_FT_CONNECTION_CLOSE:
2731 case QUIC_FT_CONNECTION_CLOSE_APP:
Frédéric Lécaille6f7607e2022-05-25 22:25:37 +02002732 /* Increment the error counters */
2733 qc_cc_err_count_inc(qc, &frm);
Frédéric Lécaille47756802022-03-25 09:12:16 +01002734 if (!(qc->flags & QUIC_FL_CONN_DRAINING)) {
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02002735 if (!(qc->flags & QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED)) {
2736 qc->flags |= QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED;
Frédéric Lécailleeb791452022-05-24 16:01:39 +02002737 HA_ATOMIC_DEC(&qc->prx_counters->half_open_conn);
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02002738 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002739 TRACE_STATE("Entering draining state", QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaille47756802022-03-25 09:12:16 +01002740 /* RFC 9000 10.2. Immediate Close:
2741 * The closing and draining connection states exist to ensure
2742 * that connections close cleanly and that delayed or reordered
2743 * packets are properly discarded. These states SHOULD persist
2744 * for at least three times the current PTO interval...
2745 *
2746 * Rearm the idle timeout only one time when entering draining
2747 * state.
2748 */
2749 qc_idle_timer_do_rearm(qc);
2750 qc->flags |= QUIC_FL_CONN_DRAINING|QUIC_FL_CONN_IMMEDIATE_CLOSE;
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02002751 qc_notify_close(qc);
Frédéric Lécaille47756802022-03-25 09:12:16 +01002752 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002753 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002754 case QUIC_FT_HANDSHAKE_DONE:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002755 if (qc_is_listener(ctx->qc)) {
2756 TRACE_ERROR("non accepted QUIC_FT_HANDSHAKE_DONE frame",
2757 QUIC_EV_CONN_PRSHPKT, qc);
2758 goto leave;
2759 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002760
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002761 qc->state = QUIC_HS_ST_CONFIRMED;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002762 break;
2763 default:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002764 TRACE_ERROR("unknosw frame type", QUIC_EV_CONN_PRSHPKT, qc);
2765 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002766 }
2767 }
2768
Frédéric Lécaille44ae7522022-03-21 12:18:00 +01002769 /* Flag this packet number space as having received a packet. */
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02002770 qel->pktns->flags |= QUIC_FL_PKTNS_PKT_RECEIVED;
Frédéric Lécaille44ae7522022-03-21 12:18:00 +01002771
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002772 if (fast_retrans) {
2773 struct quic_enc_level *iqel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
2774 struct quic_enc_level *hqel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
2775
2776 qc_prep_hdshk_fast_retrans(qc, &iqel->pktns->tx.frms, &hqel->pktns->tx.frms);
2777 }
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002778
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002779 /* The server must switch from INITIAL to HANDSHAKE handshake state when it
2780 * has successfully parse a Handshake packet. The Initial encryption must also
2781 * be discarded.
2782 */
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002783 if (pkt->type == QUIC_PACKET_TYPE_HANDSHAKE && qc_is_listener(ctx->qc)) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002784 if (qc->state >= QUIC_HS_ST_SERVER_INITIAL) {
Frédéric Lécaille05bd92b2022-03-29 19:09:46 +02002785 if (!(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].tls_ctx.flags &
2786 QUIC_FL_TLS_SECRETS_DCD)) {
2787 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
2788 TRACE_PROTO("discarding Initial pktns", QUIC_EV_CONN_PRSHPKT, qc);
2789 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, qc);
2790 qc_set_timer(ctx->qc);
2791 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002792 qc_release_pktns_frms(qc, qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns);
Frédéric Lécaille05bd92b2022-03-29 19:09:46 +02002793 }
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002794 if (qc->state < QUIC_HS_ST_SERVER_HANDSHAKE)
2795 qc->state = QUIC_HS_ST_SERVER_HANDSHAKE;
Frédéric Lécaille8c27de72021-09-20 11:00:46 +02002796 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002797 }
2798
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002799 ret = 1;
2800 leave:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002801 TRACE_LEAVE(QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002802 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002803}
2804
Amaury Denoyelle5b689862022-08-08 16:07:30 +02002805/* Allocate Tx buffer from <qc> quic-conn if needed.
2806 *
2807 * Returns allocated buffer or NULL on error.
2808 */
2809static struct buffer *qc_txb_alloc(struct quic_conn *qc)
2810{
2811 struct buffer *buf = &qc->tx.buf;
2812 if (!b_alloc(buf))
2813 return NULL;
2814
2815 return buf;
2816}
2817
2818/* Free Tx buffer from <qc> if it is empty. */
2819static void qc_txb_release(struct quic_conn *qc)
2820{
2821 struct buffer *buf = &qc->tx.buf;
2822
2823 /* For the moment sending function is responsible to purge the buffer
2824 * entirely. It may change in the future but this requires to be able
2825 * to reuse old data.
2826 */
Amaury Denoyelle654269c2022-08-08 15:38:57 +02002827 BUG_ON_HOT(buf && b_data(buf));
Amaury Denoyelle5b689862022-08-08 16:07:30 +02002828
2829 if (!b_data(buf)) {
2830 b_free(buf);
2831 offer_buffers(NULL, 1);
2832 }
2833}
2834
Amaury Denoyelle654269c2022-08-08 15:38:57 +02002835/* Commit a datagram payload written into <buf> of length <length>. <first_pkt>
2836 * must contains the address of the first packet stored in the payload.
2837 *
2838 * Caller is responsible that there is enough space in the buffer.
2839 */
2840static void qc_txb_store(struct buffer *buf, uint16_t length,
2841 struct quic_tx_packet *first_pkt)
2842{
2843 const size_t hdlen = sizeof(uint16_t) + sizeof(void *);
2844 BUG_ON_HOT(b_contig_space(buf) < hdlen); /* this must not happen */
2845
2846 write_u16(b_tail(buf), length);
2847 write_ptr(b_tail(buf) + sizeof(length), first_pkt);
2848 b_add(buf, hdlen + length);
2849}
2850
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002851/* Returns 1 if a packet may be built for <qc> from <qel> encryption level
2852 * with <frms> as ack-eliciting frame list to send, 0 if not.
2853 * <cc> must equal to 1 if an immediate close was asked, 0 if not.
2854 * <probe> must equalt to 1 if a probing packet is required, 0 if not.
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02002855 * <force_ack> may be set to 1 if you want to force an ack.
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002856 */
2857static int qc_may_build_pkt(struct quic_conn *qc, struct list *frms,
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02002858 struct quic_enc_level *qel, int cc, int probe, int force_ack)
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002859{
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02002860 unsigned int must_ack = force_ack ||
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02002861 (LIST_ISEMPTY(frms) && (qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED));
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002862
2863 /* Do not build any more packet if the TX secrets are not available or
2864 * if there is nothing to send, i.e. if no CONNECTION_CLOSE or ACK are required
2865 * and if there is no more packets to send upon PTO expiration
2866 * and if there is no more ack-eliciting frames to send or in flight
2867 * congestion control limit is reached for prepared data
2868 */
2869 if (!(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET) ||
2870 (!cc && !probe && !must_ack &&
2871 (LIST_ISEMPTY(frms) || qc->path->prep_in_flight >= qc->path->cwnd))) {
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002872 return 0;
2873 }
2874
2875 return 1;
2876}
2877
Amaury Denoyellef2476052022-08-04 16:19:57 +02002878/* Prepare as much as possible QUIC packets for sending from prebuilt frames
2879 * <frms>. Each packet is stored in a distinct datagram written to <buf>.
2880 *
2881 * Each datagram is prepended by a two fields header : the datagram length and
2882 * the address of the packet contained in the datagram.
2883 *
2884 * Returns the number of bytes prepared in packets if succeeded (may be 0), or
2885 * -1 if something wrong happened.
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002886 */
Amaury Denoyellef2476052022-08-04 16:19:57 +02002887static int qc_prep_app_pkts(struct quic_conn *qc, struct buffer *buf,
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01002888 struct list *frms)
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002889{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002890 int ret = -1;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002891 struct quic_enc_level *qel;
Amaury Denoyelle654269c2022-08-08 15:38:57 +02002892 unsigned char *end, *pos;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002893 struct quic_tx_packet *pkt;
2894 size_t total;
Amaury Denoyellef2476052022-08-04 16:19:57 +02002895 /* Each datagram is prepended with its length followed by the address
2896 * of the first packet in the datagram.
2897 */
2898 const size_t dg_headlen = sizeof(uint16_t) + sizeof(pkt);
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002899
2900 TRACE_ENTER(QUIC_EV_CONN_PHPKTS, qc);
Amaury Denoyellef2476052022-08-04 16:19:57 +02002901
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002902 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
2903 total = 0;
Amaury Denoyelle654269c2022-08-08 15:38:57 +02002904 pos = (unsigned char *)b_tail(buf);
Amaury Denoyellef2476052022-08-04 16:19:57 +02002905 while (b_contig_space(buf) >= (int)qc->path->mtu + dg_headlen) {
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002906 int err, probe, cc;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002907
2908 TRACE_POINT(QUIC_EV_CONN_PHPKTS, qc, qel);
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002909 probe = 0;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002910 cc = qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002911 /* We do not probe if an immediate close was asked */
2912 if (!cc)
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002913 probe = qel->pktns->tx.pto_probe;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002914
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02002915 if (!qc_may_build_pkt(qc, frms, qel, cc, probe, 0))
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002916 break;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002917
2918 /* Leave room for the datagram header */
2919 pos += dg_headlen;
2920 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc)) {
Frédéric Lécaille628e89c2022-06-24 12:13:53 +02002921 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 +01002922 }
2923 else {
2924 end = pos + qc->path->mtu;
2925 }
2926
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02002927 pkt = qc_build_pkt(&pos, end, qel, &qel->tls_ctx, frms, qc, NULL, 0,
2928 QUIC_PACKET_TYPE_SHORT, 0, 0, probe, cc, &err);
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002929 switch (err) {
2930 case -2:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002931 // trace already emitted by function above
2932 goto leave;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002933 case -1:
Frédéric Lécaillee9a974a2022-03-13 19:19:12 +01002934 /* As we provide qc_build_pkt() with an enough big buffer to fulfill an
2935 * MTU, we are here because of the congestion control window. There is
2936 * no need to try to reuse this buffer.
2937 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002938 TRACE_DEVEL("could not prepare anymore packet", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillee9a974a2022-03-13 19:19:12 +01002939 goto out;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002940 default:
2941 break;
2942 }
2943
2944 /* This is to please to GCC. We cannot have (err >= 0 && !pkt) */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002945 BUG_ON(!pkt);
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002946
Frédéric Lécaille1809c332022-04-25 10:24:12 +02002947 if (qc->flags & QUIC_FL_CONN_RETRANS_OLD_DATA)
2948 pkt->flags |= QUIC_FL_TX_PACKET_PROBE_WITH_OLD_DATA;
2949
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002950 total += pkt->len;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002951
Amaury Denoyellef2476052022-08-04 16:19:57 +02002952 /* Write datagram header. */
Amaury Denoyelle654269c2022-08-08 15:38:57 +02002953 qc_txb_store(buf, pkt->len, pkt);
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002954 }
2955
2956 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002957 ret = total;
2958 leave:
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002959 TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002960 return ret;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002961}
2962
Amaury Denoyellef2476052022-08-04 16:19:57 +02002963/* Prepare as much as possible QUIC packets for sending from prebuilt frames
2964 * <frms>. Several packets can be regrouped in a single datagram. The result is
2965 * written into <buf>.
2966 *
2967 * Each datagram is prepended by a two fields header : the datagram length and
2968 * the address of first packet in the datagram.
2969 *
2970 * Returns the number of bytes prepared in packets if succeeded (may be 0), or
2971 * -1 if something wrong happened.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002972 */
Amaury Denoyellef2476052022-08-04 16:19:57 +02002973static int qc_prep_pkts(struct quic_conn *qc, struct buffer *buf,
Frédéric Lécaillefc888442022-04-11 15:39:34 +02002974 enum quic_tls_enc_level tel, struct list *tel_frms,
2975 enum quic_tls_enc_level next_tel, struct list *next_tel_frms)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002976{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002977 struct quic_enc_level *qel;
Amaury Denoyelle654269c2022-08-08 15:38:57 +02002978 unsigned char *end, *pos;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002979 struct quic_tx_packet *first_pkt, *cur_pkt, *prv_pkt;
2980 /* length of datagrams */
2981 uint16_t dglen;
2982 size_t total;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002983 int ret = -1, padding;
Amaury Denoyellef2476052022-08-04 16:19:57 +02002984 /* Each datagram is prepended with its length followed by the address
2985 * of the first packet in the datagram.
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002986 */
Amaury Denoyellef2476052022-08-04 16:19:57 +02002987 const size_t dg_headlen = sizeof(uint16_t) + sizeof(first_pkt);
Frédéric Lécaillefc888442022-04-11 15:39:34 +02002988 struct list *frms;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002989
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002990 TRACE_ENTER(QUIC_EV_CONN_PHPKTS, qc);
2991
Amaury Denoyellef2476052022-08-04 16:19:57 +02002992 /* Currently qc_prep_pkts() does not handle buffer wrapping so the
2993 * caller must ensure that buf is resetted.
2994 */
2995 BUG_ON_HOT(buf->head || buf->data);
2996
Frédéric Lécaille99942d62022-01-07 14:32:31 +01002997 total = 0;
Frédéric Lécaillefc888442022-04-11 15:39:34 +02002998 qel = &qc->els[tel];
2999 frms = tel_frms;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003000 dglen = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01003001 padding = 0;
Amaury Denoyelle654269c2022-08-08 15:38:57 +02003002 pos = (unsigned char *)b_head(buf);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003003 first_pkt = prv_pkt = NULL;
Amaury Denoyellef2476052022-08-04 16:19:57 +02003004 while (b_contig_space(buf) >= (int)qc->path->mtu + dg_headlen || prv_pkt) {
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003005 int err, probe, cc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003006 enum quic_pkt_type pkt_type;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02003007 struct quic_tls_ctx *tls_ctx;
3008 const struct quic_version *ver;
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02003009 int force_ack = (qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) &&
3010 (qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL] ||
3011 qel == &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003012
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003013 TRACE_POINT(QUIC_EV_CONN_PHPKTS, qc, qel);
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003014 probe = 0;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003015 cc = qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003016 /* We do not probe if an immediate close was asked */
3017 if (!cc)
Frédéric Lécaille94fca872022-01-19 18:54:18 +01003018 probe = qel->pktns->tx.pto_probe;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003019
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02003020 if (!qc_may_build_pkt(qc, frms, qel, cc, probe, force_ack)) {
Amaury Denoyelle654269c2022-08-08 15:38:57 +02003021 if (prv_pkt)
3022 qc_txb_store(buf, dglen, first_pkt);
Frédéric Lécaille39ba1c32022-01-21 16:52:56 +01003023 /* Let's select the next encryption level */
3024 if (tel != next_tel && next_tel != QUIC_TLS_ENC_LEVEL_NONE) {
3025 tel = next_tel;
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003026 frms = next_tel_frms;
Frédéric Lécaille39ba1c32022-01-21 16:52:56 +01003027 qel = &qc->els[tel];
3028 /* Build a new datagram */
3029 prv_pkt = NULL;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003030 TRACE_DEVEL("next encryption level selected", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaille39ba1c32022-01-21 16:52:56 +01003031 continue;
3032 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003033 break;
3034 }
3035
3036 pkt_type = quic_tls_level_pkt_type(tel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003037 if (!prv_pkt) {
3038 /* Leave room for the datagram header */
3039 pos += dg_headlen;
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01003040 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc)) {
Frédéric Lécaille628e89c2022-06-24 12:13:53 +02003041 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 +01003042 }
3043 else {
3044 end = pos + qc->path->mtu;
3045 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003046 }
3047
Frédéric Lécaille301425b2022-06-14 17:40:39 +02003048 if (qc->negotiated_version) {
3049 ver = qc->negotiated_version;
3050 if (qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL])
3051 tls_ctx = &qc->negotiated_ictx;
3052 else
3053 tls_ctx = &qel->tls_ctx;
3054 }
3055 else {
3056 ver = qc->original_version;
3057 tls_ctx = &qel->tls_ctx;
3058 }
3059
3060 cur_pkt = qc_build_pkt(&pos, end, qel, tls_ctx, frms,
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02003061 qc, ver, dglen, pkt_type,
3062 force_ack, padding, probe, cc, &err);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003063 switch (err) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003064 case -2:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003065 // trace already emitted by function above
3066 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003067 case -1:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003068 /* If there was already a correct packet present, set the
3069 * current datagram as prepared into <cbuf>.
3070 */
Amaury Denoyelle654269c2022-08-08 15:38:57 +02003071 if (prv_pkt)
3072 qc_txb_store(buf, dglen, first_pkt);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003073 TRACE_DEVEL("could not prepare anymore packet", QUIC_EV_CONN_PHPKTS, qc);
Amaury Denoyellef2476052022-08-04 16:19:57 +02003074 goto out;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003075 default:
Frédéric Lécaille63556772021-12-29 17:18:21 +01003076 break;
3077 }
Frédéric Lécaille67f47d02021-08-19 15:19:09 +02003078
Frédéric Lécaille63556772021-12-29 17:18:21 +01003079 /* This is to please to GCC. We cannot have (err >= 0 && !cur_pkt) */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003080 BUG_ON(!cur_pkt);
Frédéric Lécaille63556772021-12-29 17:18:21 +01003081
Frédéric Lécaille1809c332022-04-25 10:24:12 +02003082 if (qc->flags & QUIC_FL_CONN_RETRANS_OLD_DATA)
3083 cur_pkt->flags |= QUIC_FL_TX_PACKET_PROBE_WITH_OLD_DATA;
3084
Frédéric Lécaille63556772021-12-29 17:18:21 +01003085 total += cur_pkt->len;
3086 /* keep trace of the first packet in the datagram */
3087 if (!first_pkt)
3088 first_pkt = cur_pkt;
3089 /* Attach the current one to the previous one */
Frédéric Lécailleb44cbc62022-04-21 17:58:46 +02003090 if (prv_pkt) {
Frédéric Lécaille63556772021-12-29 17:18:21 +01003091 prv_pkt->next = cur_pkt;
Frédéric Lécailleb44cbc62022-04-21 17:58:46 +02003092 cur_pkt->flags |= QUIC_FL_TX_PACKET_COALESCED;
3093 }
Frédéric Lécaille63556772021-12-29 17:18:21 +01003094 /* Let's say we have to build a new dgram */
3095 prv_pkt = NULL;
3096 dglen += cur_pkt->len;
3097 /* Client: discard the Initial encryption keys as soon as
3098 * a handshake packet could be built.
3099 */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003100 if (qc->state == QUIC_HS_ST_CLIENT_INITIAL &&
Frédéric Lécaille63556772021-12-29 17:18:21 +01003101 pkt_type == QUIC_PACKET_TYPE_HANDSHAKE) {
3102 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
3103 TRACE_PROTO("discarding Initial pktns", QUIC_EV_CONN_PHPKTS, qc);
3104 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, qc);
3105 qc_set_timer(qc);
Frédéric Lécaillea6255f52022-01-19 17:29:48 +01003106 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003107 qc_release_pktns_frms(qc, qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns);
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003108 qc->state = QUIC_HS_ST_CLIENT_HANDSHAKE;
Frédéric Lécaille63556772021-12-29 17:18:21 +01003109 }
3110 /* If the data for the current encryption level have all been sent,
3111 * select the next level.
3112 */
3113 if ((tel == QUIC_TLS_ENC_LEVEL_INITIAL || tel == QUIC_TLS_ENC_LEVEL_HANDSHAKE) &&
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02003114 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 +01003115 /* If QUIC_TLS_ENC_LEVEL_HANDSHAKE was already reached let's try QUIC_TLS_ENC_LEVEL_APP */
3116 if (tel == QUIC_TLS_ENC_LEVEL_HANDSHAKE && next_tel == tel)
3117 next_tel = QUIC_TLS_ENC_LEVEL_APP;
3118 tel = next_tel;
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003119 if (tel == QUIC_TLS_ENC_LEVEL_APP)
3120 frms = &qc->els[tel].pktns->tx.frms;
3121 else
3122 frms = next_tel_frms;
Frédéric Lécaille63556772021-12-29 17:18:21 +01003123 qel = &qc->els[tel];
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003124 if (!LIST_ISEMPTY(frms)) {
Frédéric Lécaille63556772021-12-29 17:18:21 +01003125 /* If there is data for the next level, do not
3126 * consume a datagram.
3127 */
3128 prv_pkt = cur_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003129 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003130 }
Amaury Denoyellef2476052022-08-04 16:19:57 +02003131
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003132 /* If we have to build a new datagram, set the current datagram as
3133 * prepared into <cbuf>.
3134 */
3135 if (!prv_pkt) {
Amaury Denoyelle654269c2022-08-08 15:38:57 +02003136 qc_txb_store(buf, dglen, first_pkt);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003137 first_pkt = NULL;
3138 dglen = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01003139 padding = 0;
3140 }
3141 else if (prv_pkt->type == QUIC_TLS_ENC_LEVEL_INITIAL &&
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +01003142 (!qc_is_listener(qc) ||
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01003143 prv_pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)) {
3144 padding = 1;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003145 }
3146 }
3147
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003148 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003149 ret = total;
3150 leave:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003151 TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003152 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003153}
3154
Amaury Denoyellef2476052022-08-04 16:19:57 +02003155/* Send datagrams stored in <buf>.
3156 *
3157 * This function always returns 1 for success. Even if sendto() syscall failed,
3158 * buffer is drained and packets are considered as emitted. QUIC loss detection
3159 * mechanism is used as a back door way to retry sending.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003160 */
Amaury Denoyellef2476052022-08-04 16:19:57 +02003161int qc_send_ppkts(struct buffer *buf, struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003162{
3163 struct quic_conn *qc;
Amaury Denoyelle906b0582022-08-05 15:22:28 +02003164 char skip_sendto = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003165
Amaury Denoyellec15dd922021-12-21 11:41:52 +01003166 qc = ctx->qc;
Frédéric Lécaille8726d632022-05-03 10:32:21 +02003167 TRACE_ENTER(QUIC_EV_CONN_SPPKTS, qc);
Amaury Denoyellef2476052022-08-04 16:19:57 +02003168 while (b_contig_data(buf, 0)) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003169 unsigned char *pos;
3170 struct buffer tmpbuf = { };
3171 struct quic_tx_packet *first_pkt, *pkt, *next_pkt;
3172 uint16_t dglen;
3173 size_t headlen = sizeof dglen + sizeof first_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003174 unsigned int time_sent;
3175
Amaury Denoyellef2476052022-08-04 16:19:57 +02003176 pos = (unsigned char *)b_head(buf);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003177 dglen = read_u16(pos);
Amaury Denoyellef2476052022-08-04 16:19:57 +02003178 BUG_ON_HOT(!dglen); /* this should not happen */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003179
3180 pos += sizeof dglen;
3181 first_pkt = read_ptr(pos);
3182 pos += sizeof first_pkt;
3183 tmpbuf.area = (char *)pos;
3184 tmpbuf.size = tmpbuf.data = dglen;
3185
Amaury Denoyelle906b0582022-08-05 15:22:28 +02003186 /* If sendto is on error just skip the call to it for the rest
3187 * of the loop but continue to purge the buffer. Data will be
3188 * transmitted when QUIC packets are detected as lost on our
3189 * side.
3190 *
3191 * TODO use fd-monitoring to detect when send operation can be
3192 * retry. This should improve the bandwidth without relying on
3193 * retransmission timer. However, it requires a major rework on
3194 * quic-conn fd management.
3195 */
Amaury Denoyelle906b0582022-08-05 15:22:28 +02003196 if (!skip_sendto) {
3197 if (qc_snd_buf(qc, &tmpbuf, tmpbuf.data, 0)) {
3198 skip_sendto = 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003199 TRACE_ERROR("sendto error, simulate sending for the rest of data", QUIC_EV_CONN_SPPKTS, qc);
Amaury Denoyelle906b0582022-08-05 15:22:28 +02003200 }
3201 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003202
Amaury Denoyellef2476052022-08-04 16:19:57 +02003203 b_del(buf, dglen + headlen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003204 qc->tx.bytes += tmpbuf.data;
3205 time_sent = now_ms;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003206
3207 for (pkt = first_pkt; pkt; pkt = next_pkt) {
3208 pkt->time_sent = time_sent;
3209 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING) {
3210 pkt->pktns->tx.time_of_last_eliciting = time_sent;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01003211 qc->path->ifae_pkts++;
Frédéric Lécaille530601c2022-03-10 15:11:57 +01003212 if (qc->flags & QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ)
3213 qc_idle_timer_rearm(qc, 0);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003214 }
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02003215 if (!(qc->flags & QUIC_FL_CONN_CLOSING) &&
3216 (pkt->flags & QUIC_FL_TX_PACKET_CC)) {
3217 qc->flags |= QUIC_FL_CONN_CLOSING;
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02003218 qc_notify_close(qc);
3219
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02003220 /* RFC 9000 10.2. Immediate Close:
3221 * The closing and draining connection states exist to ensure
3222 * that connections close cleanly and that delayed or reordered
3223 * packets are properly discarded. These states SHOULD persist
3224 * for at least three times the current PTO interval...
3225 *
3226 * Rearm the idle timeout only one time when entering closing
3227 * state.
3228 */
3229 qc_idle_timer_do_rearm(qc);
3230 if (qc->timer_task) {
3231 task_destroy(qc->timer_task);
3232 qc->timer_task = NULL;
3233 }
3234 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003235 qc->path->in_flight += pkt->in_flight_len;
3236 pkt->pktns->tx.in_flight += pkt->in_flight_len;
3237 if (pkt->in_flight_len)
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003238 qc_set_timer(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003239 TRACE_DATA("sent pkt", QUIC_EV_CONN_SPPKTS, qc, pkt);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003240 next_pkt = pkt->next;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01003241 quic_tx_packet_refinc(pkt);
Frédéric Lécaille0eb60c52021-07-19 14:48:36 +02003242 eb64_insert(&pkt->pktns->tx.pkts, &pkt->pn_node);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003243 }
3244 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003245
Frédéric Lécaille8726d632022-05-03 10:32:21 +02003246 TRACE_LEAVE(QUIC_EV_CONN_SPPKTS, qc);
3247
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003248 return 1;
3249}
3250
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003251/* Copy into <buf> buffer a stateless reset token depending on the
3252 * <salt> salt input. This is the cluster secret which will be derived
3253 * as HKDF input secret to generate this token.
3254 * Return 1 if succeeded, 0 if not.
3255 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003256static int quic_stateless_reset_token_cpy(struct quic_conn *qc,
3257 unsigned char *buf, size_t len,
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003258 const unsigned char *salt, size_t saltlen)
3259{
3260 /* Input secret */
3261 const unsigned char *key = (const unsigned char *)global.cluster_secret;
3262 size_t keylen = strlen(global.cluster_secret);
3263 /* Info */
3264 const unsigned char label[] = "stateless token";
3265 size_t labellen = sizeof label - 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003266 int ret;
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003267
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003268 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3269
3270 ret = quic_hkdf_extract_and_expand(EVP_sha256(), buf, len,
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003271 key, keylen, salt, saltlen, label, labellen);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003272 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
3273 return ret;
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003274}
3275
3276/* Initialize the stateless reset token attached to <cid> connection ID.
3277 * Returns 1 if succeeded, 0 if not.
3278 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003279static int quic_stateless_reset_token_init(struct quic_conn *qc,
3280 struct quic_connection_id *quic_cid)
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003281{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003282 int ret;
3283
3284 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3285
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003286 if (global.cluster_secret) {
3287 /* Output secret */
3288 unsigned char *token = quic_cid->stateless_reset_token;
3289 size_t tokenlen = sizeof quic_cid->stateless_reset_token;
3290 /* Salt */
3291 const unsigned char *cid = quic_cid->cid.data;
3292 size_t cidlen = quic_cid->cid.len;
3293
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003294 ret = quic_stateless_reset_token_cpy(qc, token, tokenlen, cid, cidlen);
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003295 }
3296 else {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003297 /* TODO: RAND_bytes() should be replaced */
3298 ret = RAND_bytes(quic_cid->stateless_reset_token,
3299 sizeof quic_cid->stateless_reset_token) == 1;
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003300 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003301
3302 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
3303 return ret;
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003304}
3305
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003306/* Allocate a new CID with <seq_num> as sequence number and attach it to <root>
3307 * ebtree.
3308 *
3309 * The CID is randomly generated in part with the result altered to be
3310 * associated with the current thread ID. This means this function must only
3311 * be called by the quic_conn thread.
3312 *
3313 * Returns the new CID if succeeded, NULL if not.
3314 */
3315static struct quic_connection_id *new_quic_cid(struct eb_root *root,
3316 struct quic_conn *qc,
3317 int seq_num)
3318{
3319 struct quic_connection_id *cid;
3320
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003321 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3322
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003323 cid = pool_alloc(pool_head_quic_connection_id);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003324 if (!cid) {
3325 TRACE_ERROR("cid allocation failed", QUIC_EV_CONN_TXPKT, qc);
3326 goto err;
3327 }
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003328
3329 cid->cid.len = QUIC_HAP_CID_LEN;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003330 /* TODO: RAND_bytes() should be replaced */
3331 if (RAND_bytes(cid->cid.data, cid->cid.len) != 1) {
3332 TRACE_ERROR("RAND_bytes() failed", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003333 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003334 }
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003335
3336 quic_pin_cid_to_tid(cid->cid.data, tid);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003337 if (quic_stateless_reset_token_init(qc, cid) != 1) {
3338 TRACE_ERROR("quic_stateless_reset_token_init() failed", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003339 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003340 }
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003341
3342 cid->qc = qc;
3343
3344 cid->seq_num.key = seq_num;
3345 cid->retire_prior_to = 0;
3346 /* insert the allocated CID in the quic_conn tree */
3347 eb64_insert(root, &cid->seq_num);
3348
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003349 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003350 return cid;
3351
3352 err:
3353 pool_free(pool_head_quic_connection_id, cid);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003354 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003355 return NULL;
3356}
3357
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003358/* Build all the frames which must be sent just after the handshake have succeeded.
3359 * This is essentially NEW_CONNECTION_ID frames. A QUIC server must also send
3360 * a HANDSHAKE_DONE frame.
3361 * Return 1 if succeeded, 0 if not.
3362 */
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02003363static int quic_build_post_handshake_frames(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003364{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003365 int ret = 0, i, first, max;
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02003366 struct quic_enc_level *qel;
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003367 struct quic_frame *frm, *frmbak;
3368 struct list frm_list = LIST_HEAD_INIT(frm_list);
3369 struct eb64_node *node;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003370
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003371 TRACE_ENTER(QUIC_EV_CONN_IO_CB, qc);
3372
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02003373 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003374 /* Only servers must send a HANDSHAKE_DONE frame. */
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +01003375 if (qc_is_listener(qc)) {
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003376 frm = pool_zalloc(pool_head_quic_frame);
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003377 if (!frm) {
3378 TRACE_ERROR("frame allocation error", QUIC_EV_CONN_IO_CB, qc);
3379 goto leave;
3380 }
Frédéric Lécaille153d4a82021-01-06 12:12:39 +01003381
Frédéric Lécailleb9171912022-04-21 17:32:10 +02003382 LIST_INIT(&frm->reflist);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003383 frm->type = QUIC_FT_HANDSHAKE_DONE;
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003384 LIST_APPEND(&frm_list, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003385 }
3386
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003387 /* Initialize <max> connection IDs minus one: there is
3388 * already one connection ID used for the current connection.
3389 */
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003390 first = 1;
3391 max = qc->tx.params.active_connection_id_limit;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003392
3393 /* TODO: check limit */
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003394 for (i = first; i < max; i++) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003395 struct quic_connection_id *cid;
3396
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003397 frm = pool_zalloc(pool_head_quic_frame);
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003398 if (!frm) {
3399 TRACE_ERROR("frame allocation error", QUIC_EV_CONN_IO_CB, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003400 goto err;
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003401 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003402
Frédéric Lécailleb9171912022-04-21 17:32:10 +02003403 LIST_INIT(&frm->reflist);
Amaury Denoyelle0442efd2022-01-28 16:02:13 +01003404 cid = new_quic_cid(&qc->cids, qc, i);
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003405 if (!cid) {
3406 TRACE_ERROR("CID allocation error", QUIC_EV_CONN_IO_CB, qc);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003407 goto err;
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003408 }
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003409
Frédéric Lécaille74904a42022-01-27 15:35:56 +01003410 /* insert the allocated CID in the receiver datagram handler tree */
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01003411 ebmb_insert(&quic_dghdlrs[tid].cids, &cid->node, cid->cid.len);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003412
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003413 quic_connection_id_to_frm_cpy(frm, cid);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003414 LIST_APPEND(&frm_list, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003415 }
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003416
3417 LIST_SPLICE(&qel->pktns->tx.frms, &frm_list);
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003418 qc->flags |= QUIC_FL_CONN_POST_HANDSHAKE_FRAMES_BUILT;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003419
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003420 ret = 1;
3421 leave:
3422 TRACE_LEAVE(QUIC_EV_CONN_IO_CB, qc);
3423 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003424
3425 err:
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003426 /* free the frames */
3427 list_for_each_entry_safe(frm, frmbak, &frm_list, list)
3428 pool_free(pool_head_quic_frame, frm);
3429
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003430 node = eb64_lookup_ge(&qc->cids, first);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003431 while (node) {
3432 struct quic_connection_id *cid;
3433
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003434 cid = eb64_entry(node, struct quic_connection_id, seq_num);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003435 if (cid->seq_num.key >= max)
3436 break;
3437
Frédéric Lécaille411aa6d2022-03-21 12:01:22 +01003438 node = eb64_next(node);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003439 ebmb_delete(&cid->node);
3440 eb64_delete(&cid->seq_num);
3441 pool_free(pool_head_quic_connection_id, cid);
3442 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003443 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003444}
3445
3446/* Deallocate <l> list of ACK ranges. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003447void quic_free_arngs(struct quic_conn *qc, struct quic_arngs *arngs)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003448{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003449 struct eb64_node *n;
3450 struct quic_arng_node *ar;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003451
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003452 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
3453
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003454 n = eb64_first(&arngs->root);
3455 while (n) {
3456 struct eb64_node *next;
3457
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003458 ar = eb64_entry(n, struct quic_arng_node, first);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003459 next = eb64_next(n);
3460 eb64_delete(n);
Frédéric Lécaille82851bd2022-04-04 13:43:58 +02003461 pool_free(pool_head_quic_arng, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003462 n = next;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003463 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003464
3465 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003466}
3467
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003468/* Return the gap value between <p> and <q> ACK ranges where <q> follows <p> in
3469 * descending order.
3470 */
3471static inline size_t sack_gap(struct quic_arng_node *p,
3472 struct quic_arng_node *q)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003473{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003474 return p->first.key - q->last - 2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003475}
3476
3477
3478/* Remove the last elements of <ack_ranges> list of ack range updating its
3479 * encoded size until it goes below <limit>.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003480 * Returns 1 if succeeded, 0 if not (no more element to remove).
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003481 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003482static int quic_rm_last_ack_ranges(struct quic_conn *qc,
3483 struct quic_arngs *arngs, size_t limit)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003484{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003485 int ret = 0;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003486 struct eb64_node *last, *prev;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003487
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003488 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3489
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003490 last = eb64_last(&arngs->root);
3491 while (last && arngs->enc_sz > limit) {
3492 struct quic_arng_node *last_node, *prev_node;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003493
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003494 prev = eb64_prev(last);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003495 if (!prev) {
3496 TRACE_DEVEL("<last> not found", QUIC_EV_CONN_TXPKT, qc);
3497 goto out;
3498 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003499
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003500 last_node = eb64_entry(last, struct quic_arng_node, first);
3501 prev_node = eb64_entry(prev, struct quic_arng_node, first);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003502 arngs->enc_sz -= quic_int_getsize(last_node->last - last_node->first.key);
3503 arngs->enc_sz -= quic_int_getsize(sack_gap(prev_node, last_node));
3504 arngs->enc_sz -= quic_decint_size_diff(arngs->sz);
3505 --arngs->sz;
3506 eb64_delete(last);
3507 pool_free(pool_head_quic_arng, last);
3508 last = prev;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003509 }
3510
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003511 ret = 1;
3512 out:
3513 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
3514 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003515}
3516
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003517/* Set the encoded size of <arngs> QUIC ack ranges. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003518static void quic_arngs_set_enc_sz(struct quic_conn *qc, struct quic_arngs *arngs)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003519{
3520 struct eb64_node *node, *next;
3521 struct quic_arng_node *ar, *ar_next;
3522
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003523 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3524
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003525 node = eb64_last(&arngs->root);
3526 if (!node)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003527 goto leave;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003528
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003529 ar = eb64_entry(node, struct quic_arng_node, first);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003530 arngs->enc_sz = quic_int_getsize(ar->last) +
3531 quic_int_getsize(ar->last - ar->first.key) + quic_int_getsize(arngs->sz - 1);
3532
3533 while ((next = eb64_prev(node))) {
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003534 ar_next = eb64_entry(next, struct quic_arng_node, first);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003535 arngs->enc_sz += quic_int_getsize(sack_gap(ar, ar_next)) +
3536 quic_int_getsize(ar_next->last - ar_next->first.key);
3537 node = next;
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003538 ar = eb64_entry(node, struct quic_arng_node, first);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003539 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003540
3541 leave:
3542 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003543}
3544
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003545/* Insert <ar> ack range into <argns> tree of ack ranges.
3546 * Returns the ack range node which has been inserted if succeeded, NULL if not.
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003547 */
3548static inline
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003549struct quic_arng_node *quic_insert_new_range(struct quic_conn *qc,
3550 struct quic_arngs *arngs,
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003551 struct quic_arng *ar)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003552{
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003553 struct quic_arng_node *new_ar;
3554
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003555 TRACE_ENTER(QUIC_EV_CONN_RXPKT, qc);
3556
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003557 new_ar = pool_alloc(pool_head_quic_arng);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003558 if (!new_ar) {
3559 TRACE_ERROR("ack range allocation failed", QUIC_EV_CONN_RXPKT, qc);
3560 goto leave;
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003561 }
3562
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003563 new_ar->first.key = ar->first;
3564 new_ar->last = ar->last;
3565 eb64_insert(&arngs->root, &new_ar->first);
3566 arngs->sz++;
3567
3568 leave:
3569 TRACE_LEAVE(QUIC_EV_CONN_RXPKT, qc);
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003570 return new_ar;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003571}
3572
3573/* Update <arngs> tree of ACK ranges with <ar> as new ACK range value.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003574 * Note that this function computes the number of bytes required to encode
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003575 * this tree of ACK ranges in descending order.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003576 *
3577 * Descending order
3578 * ------------->
3579 * range1 range2
3580 * ..........|--------|..............|--------|
3581 * ^ ^ ^ ^
3582 * | | | |
3583 * last1 first1 last2 first2
3584 * ..........+--------+--------------+--------+......
3585 * diff1 gap12 diff2
3586 *
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003587 * To encode the previous list of ranges we must encode integers as follows in
3588 * descending order:
3589 * enc(last2),enc(diff2),enc(gap12),enc(diff1)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003590 * with diff1 = last1 - first1
3591 * diff2 = last2 - first2
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003592 * gap12 = first1 - last2 - 2 (>= 0)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003593 *
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003594
3595returns 0 on error
3596
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003597 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003598int quic_update_ack_ranges_list(struct quic_conn *qc,
3599 struct quic_arngs *arngs,
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003600 struct quic_arng *ar)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003601{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003602 int ret = 0;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003603 struct eb64_node *le;
3604 struct quic_arng_node *new_node;
3605 struct eb64_node *new;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003606
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003607 TRACE_ENTER(QUIC_EV_CONN_RXPKT, qc);
3608
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003609 new = NULL;
3610 if (eb_is_empty(&arngs->root)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003611 new_node = quic_insert_new_range(qc, arngs, ar);
3612 if (new_node)
3613 ret = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003614
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003615 goto leave;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003616 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003617
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003618 le = eb64_lookup_le(&arngs->root, ar->first);
3619 if (!le) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003620 new_node = quic_insert_new_range(qc, arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003621 if (!new_node)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003622 goto leave;
Frédéric Lécaille0e257832021-11-16 10:54:19 +01003623
3624 new = &new_node->first;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003625 }
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003626 else {
3627 struct quic_arng_node *le_ar =
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003628 eb64_entry(le, struct quic_arng_node, first);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003629
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003630 /* Already existing range */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003631 if (le_ar->last >= ar->last) {
3632 ret = 1;
3633 }
3634 else if (le_ar->last + 1 >= ar->first) {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003635 le_ar->last = ar->last;
3636 new = le;
3637 new_node = le_ar;
3638 }
3639 else {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003640 new_node = quic_insert_new_range(qc, arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003641 if (!new_node)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003642 goto leave;
Frédéric Lécaille8ba42762021-06-02 17:40:09 +02003643
3644 new = &new_node->first;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003645 }
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003646 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003647
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003648 /* Verify that the new inserted node does not overlap the nodes
3649 * which follow it.
3650 */
3651 if (new) {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003652 struct eb64_node *next;
3653 struct quic_arng_node *next_node;
3654
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003655 while ((next = eb64_next(new))) {
3656 next_node =
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003657 eb64_entry(next, struct quic_arng_node, first);
Frédéric Lécaillec825eba2021-06-02 17:38:13 +02003658 if (new_node->last + 1 < next_node->first.key)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003659 break;
3660
3661 if (next_node->last > new_node->last)
3662 new_node->last = next_node->last;
3663 eb64_delete(next);
Frédéric Lécaillebaea2842021-06-02 15:04:03 +02003664 pool_free(pool_head_quic_arng, next_node);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003665 /* Decrement the size of these ranges. */
3666 arngs->sz--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003667 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003668 }
3669
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003670 ret = 1;
3671 leave:
3672 quic_arngs_set_enc_sz(qc, arngs);
3673 TRACE_LEAVE(QUIC_EV_CONN_RXPKT, qc);
3674 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003675}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003676/* Remove the header protection of packets at <el> encryption level.
3677 * Always succeeds.
3678 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003679static 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 +01003680{
3681 struct quic_tls_ctx *tls_ctx;
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003682 struct quic_rx_packet *pqpkt;
3683 struct mt_list *pkttmp1, pkttmp2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003684 struct quic_enc_level *app_qel;
3685
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003686 TRACE_ENTER(QUIC_EV_CONN_ELRMHP, qc);
3687 app_qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003688 /* A server must not process incoming 1-RTT packets before the handshake is complete. */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003689 if (el == app_qel && qc_is_listener(qc) && qc->state < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003690 TRACE_DEVEL("hp not removed (handshake not completed)",
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003691 QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003692 goto out;
3693 }
3694 tls_ctx = &el->tls_ctx;
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003695 mt_list_for_each_entry_safe(pqpkt, &el->rx.pqpkts, list, pkttmp1, pkttmp2) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003696 if (!qc_do_rm_hp(qc, pqpkt, tls_ctx, el->pktns->rx.largest_pn,
Frédéric Lécaille99897d12022-08-08 10:28:07 +02003697 pqpkt->data + pqpkt->pn_offset, pqpkt->data)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003698 TRACE_ERROR("hp removing error", QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003699 }
3700 else {
3701 /* The AAD includes the packet number field */
3702 pqpkt->aad_len = pqpkt->pn_offset + pqpkt->pnl;
3703 /* Store the packet into the tree of packets to decrypt. */
3704 pqpkt->pn_node.key = pqpkt->pn;
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02003705 eb64_insert(&el->rx.pkts, &pqpkt->pn_node);
3706 quic_rx_packet_refinc(pqpkt);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003707 TRACE_DEVEL("hp removed", QUIC_EV_CONN_ELRMHP, qc, pqpkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003708 }
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003709 MT_LIST_DELETE_SAFE(pkttmp1);
3710 quic_rx_packet_refdec(pqpkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003711 }
3712
3713 out:
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003714 TRACE_LEAVE(QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003715}
3716
3717/* Process all the CRYPTO frame at <el> encryption level.
3718 * Return 1 if succeeded, 0 if not.
3719 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003720static inline int qc_treat_rx_crypto_frms(struct quic_conn *qc,
3721 struct quic_enc_level *el,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02003722 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003723{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003724 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003725 struct eb64_node *node;
3726
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003727 TRACE_ENTER(QUIC_EV_CONN_TRMHP, qc);
3728
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003729 node = eb64_first(&el->rx.crypto.frms);
3730 while (node) {
3731 struct quic_rx_crypto_frm *cf;
3732
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003733 cf = eb64_entry(node, struct quic_rx_crypto_frm, offset_node);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003734 if (cf->offset_node.key != el->rx.crypto.offset)
3735 break;
3736
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003737 if (!qc_provide_cdata(el, ctx, cf->data, cf->len, cf->pkt, cf)) {
3738 TRACE_ERROR("qc_provide_cdata() failed", QUIC_EV_CONN_TRMHP);
3739 goto leave;
3740 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003741
3742 node = eb64_next(node);
3743 quic_rx_packet_refdec(cf->pkt);
3744 eb64_delete(&cf->offset_node);
3745 pool_free(pool_head_quic_rx_crypto_frm, cf);
3746 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003747
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003748 ret = 1;
3749 leave:
3750 TRACE_LEAVE(QUIC_EV_CONN_TRMHP, qc);
3751 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003752}
3753
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003754/* Process all the packets at <el> and <next_el> encryption level.
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +05003755 * 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 +02003756 * as pointer value.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003757 * Return 1 if succeeded, 0 if not.
3758 */
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003759int qc_treat_rx_pkts(struct quic_enc_level *cur_el, struct quic_enc_level *next_el,
3760 struct ssl_sock_ctx *ctx, int force_ack)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003761{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003762 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003763 struct eb64_node *node;
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003764 int64_t largest_pn = -1;
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02003765 unsigned int largest_pn_time_received = 0;
Amaury Denoyelle29632b82022-01-18 16:50:58 +01003766 struct quic_conn *qc = ctx->qc;
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003767 struct quic_enc_level *qel = cur_el;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003768
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003769 TRACE_ENTER(QUIC_EV_CONN_RXPKT, ctx->qc);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003770 qel = cur_el;
3771 next_tel:
3772 if (!qel)
3773 goto out;
3774
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003775 node = eb64_first(&qel->rx.pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003776 while (node) {
3777 struct quic_rx_packet *pkt;
3778
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003779 pkt = eb64_entry(node, struct quic_rx_packet, pn_node);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003780 TRACE_DATA("new packet", QUIC_EV_CONN_RXPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003781 ctx->qc, pkt, NULL, ctx->ssl);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003782 if (!qc_pkt_decrypt(pkt, qel, qc)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003783 /* Drop the packet */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003784 TRACE_ERROR("packet decryption failed -> dropped",
3785 QUIC_EV_CONN_RXPKT, ctx->qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003786 }
3787 else {
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003788 if (!qc_parse_pkt_frms(pkt, ctx, qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003789 /* Drop the packet */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003790 TRACE_ERROR("packet parsing failed -> dropped",
3791 QUIC_EV_CONN_RXPKT, ctx->qc, pkt);
Frédéric Lécailleeb791452022-05-24 16:01:39 +02003792 HA_ATOMIC_INC(&qc->prx_counters->dropped_parsing);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003793 }
3794 else {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003795 struct quic_arng ar = { .first = pkt->pn, .last = pkt->pn };
3796
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003797 if (pkt->flags & QUIC_FL_RX_PACKET_ACK_ELICITING || force_ack) {
3798 qel->pktns->flags |= QUIC_FL_PKTNS_ACK_REQUIRED;
3799 qel->pktns->rx.nb_aepkts_since_last_ack++;
Frédéric Lécaille530601c2022-03-10 15:11:57 +01003800 qc_idle_timer_rearm(qc, 1);
3801 }
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02003802 if (pkt->pn > largest_pn) {
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003803 largest_pn = pkt->pn;
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02003804 largest_pn_time_received = pkt->time_received;
3805 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003806 /* Update the list of ranges to acknowledge. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003807 if (!quic_update_ack_ranges_list(qc, &qel->pktns->rx.arngs, &ar))
3808 TRACE_ERROR("Could not update ack range list",
3809 QUIC_EV_CONN_RXPKT, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003810 }
3811 }
3812 node = eb64_next(node);
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02003813 eb64_delete(&pkt->pn_node);
3814 quic_rx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003815 }
3816
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02003817 if (largest_pn != -1 && largest_pn > qel->pktns->rx.largest_pn) {
3818 /* Update the largest packet number. */
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02003819 qel->pktns->rx.largest_pn = largest_pn;
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02003820 /* Update the largest acknowledged packet timestamps */
3821 qel->pktns->rx.largest_time_received = largest_pn_time_received;
3822 qel->pktns->flags |= QUIC_FL_PKTNS_NEW_LARGEST_PN;
3823 }
3824
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003825 if (!qc_treat_rx_crypto_frms(qc, qel, ctx)) {
3826 // trace already emitted by function above
3827 goto leave;
3828 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003829
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003830 if (qel == cur_el) {
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003831 BUG_ON(qel == next_el);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003832 qel = next_el;
Frédéric Lécaille91a211f2022-05-24 10:54:42 +02003833 largest_pn = -1;
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003834 goto next_tel;
3835 }
3836
3837 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003838 ret = 1;
3839 leave:
3840 TRACE_LEAVE(QUIC_EV_CONN_RXPKT, ctx->qc);
3841 return ret;
3842}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003843
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003844/* Check if it's possible to remove header protection for packets related to
3845 * encryption level <qel>. If <qel> is NULL, assume it's false.
3846 *
3847 * Return true if the operation is possible else false.
3848 */
3849static int qc_qel_may_rm_hp(struct quic_conn *qc, struct quic_enc_level *qel)
3850{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003851 int ret = 0;
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003852 enum quic_tls_enc_level tel;
3853
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003854 TRACE_ENTER(QUIC_EV_CONN_TRMHP, qc);
3855
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003856 if (!qel)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003857 goto cant_rm_hp;
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003858
3859 tel = ssl_to_quic_enc_level(qel->level);
3860
3861 /* check if tls secrets are available */
Frédéric Lécaillebd242082022-02-25 17:17:59 +01003862 if (qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD) {
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003863 TRACE_DEVEL("Discarded keys", QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003864 goto cant_rm_hp;
Frédéric Lécaille51c90652022-02-22 11:39:14 +01003865 }
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003866
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003867 if (!(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET)) {
3868 TRACE_DEVEL("non available secrets", QUIC_EV_CONN_TRMHP, qc);
3869 goto cant_rm_hp;
3870 }
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003871
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01003872 /* check if the connection layer is ready before using app level */
Frédéric Lécaille298931d2022-01-28 21:41:06 +01003873 if ((tel == QUIC_TLS_ENC_LEVEL_APP || tel == QUIC_TLS_ENC_LEVEL_EARLY_DATA) &&
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003874 qc->mux_state == QC_MUX_NULL) {
3875 TRACE_DEVEL("connection layer not ready", QUIC_EV_CONN_TRMHP, qc);
3876 goto cant_rm_hp;
3877 }
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003878
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003879 ret = 1;
3880 cant_rm_hp:
3881 TRACE_LEAVE(QUIC_EV_CONN_TRMHP, qc);
3882 return ret;
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003883}
3884
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003885/* Sends application level packets from <qc> QUIC connection */
Frédéric Lécaille3e3a6212022-04-25 10:17:00 +02003886int qc_send_app_pkts(struct quic_conn *qc, int old_data, struct list *frms)
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003887{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003888 int status = 0;
3889 struct buffer *buf;
3890
3891 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3892
3893 buf = qc_txb_alloc(qc);
3894 if (!buf) {
3895 TRACE_ERROR("buffer allocation failed", QUIC_EV_CONN_TXPKT, qc);
3896 goto leave;
3897 }
3898
3899 if (old_data) {
3900 TRACE_STATE("preparing old data (probing)", QUIC_EV_CONN_TXPKT, qc);
3901 qc->flags |= QUIC_FL_CONN_RETRANS_OLD_DATA;
3902 }
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003903
Frédéric Lécailledc077512022-07-26 09:17:19 +02003904 /* Prepare and send packets until we could not further prepare packets. */
3905 while (1) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003906 int ret;
Amaury Denoyellef2476052022-08-04 16:19:57 +02003907 /* Currently buf cannot be non-empty at this stage. Even if a
3908 * previous sendto() has failed it is emptied to simulate
3909 * packet emission and rely on QUIC lost detection to try to
3910 * emit it.
3911 */
3912 BUG_ON_HOT(b_data(buf));
3913 b_reset(buf);
3914
Amaury Denoyellef2476052022-08-04 16:19:57 +02003915 ret = qc_prep_app_pkts(qc, buf, frms);
Frédéric Lécailledc077512022-07-26 09:17:19 +02003916 if (ret == -1)
3917 goto err;
3918 else if (ret == 0)
3919 goto out;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003920
Amaury Denoyellef2476052022-08-04 16:19:57 +02003921 if (!qc_send_ppkts(buf, qc->xprt_ctx))
Frédéric Lécailledc077512022-07-26 09:17:19 +02003922 goto err;
3923 }
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003924
3925 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003926 status = 1;
Frédéric Lécaille3e3a6212022-04-25 10:17:00 +02003927 qc->flags &= ~QUIC_FL_CONN_RETRANS_OLD_DATA;
Amaury Denoyelle5b689862022-08-08 16:07:30 +02003928 qc_txb_release(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003929 leave:
3930 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
3931 return status;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003932
3933 err:
Frédéric Lécaille3e3a6212022-04-25 10:17:00 +02003934 qc->flags &= ~QUIC_FL_CONN_RETRANS_OLD_DATA;
Amaury Denoyelle5b689862022-08-08 16:07:30 +02003935 qc_txb_release(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003936 goto leave;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003937}
3938
Frédéric Lécaillea9568412022-04-25 08:58:04 +02003939/* Sends handshake packets from up to two encryption levels <tel> and <next_te>
3940 * with <tel_frms> and <next_tel_frms> as frame list respectively for <qc>
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003941 * QUIC connection. <old_data> is used as boolean to send data already sent but
3942 * not already acknowledged (in flight).
Frédéric Lécaillea9568412022-04-25 08:58:04 +02003943 * Returns 1 if succeeded, 0 if not.
3944 */
3945int qc_send_hdshk_pkts(struct quic_conn *qc, int old_data,
3946 enum quic_tls_enc_level tel, struct list *tel_frms,
3947 enum quic_tls_enc_level next_tel, struct list *next_tel_frms)
3948{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003949 int ret, status = 0;
Amaury Denoyelle5b689862022-08-08 16:07:30 +02003950 struct buffer *buf = qc_txb_alloc(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003951
3952 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3953
3954 if (!buf) {
3955 TRACE_ERROR("buffer allocation failed", QUIC_EV_CONN_TXPKT, qc);
3956 goto leave;
3957 }
Frédéric Lécaillea9568412022-04-25 08:58:04 +02003958
Amaury Denoyellef2476052022-08-04 16:19:57 +02003959 /* Currently buf cannot be non-empty at this stage. Even if a previous
3960 * sendto() has failed it is emptied to simulate packet emission and
3961 * rely on QUIC lost detection to try to emit it.
3962 */
3963 BUG_ON_HOT(b_data(buf));
3964 b_reset(buf);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02003965
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003966 if (old_data) {
3967 TRACE_STATE("old data for probing asked", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02003968 qc->flags |= QUIC_FL_CONN_RETRANS_OLD_DATA;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003969 }
Amaury Denoyellef2476052022-08-04 16:19:57 +02003970
3971 ret = qc_prep_pkts(qc, buf, tel, tel_frms, next_tel, next_tel_frms);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02003972 if (ret == -1)
Frédéric Lécaillea9568412022-04-25 08:58:04 +02003973 goto out;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003974 else if (ret == 0)
3975 goto skip_send;
Frédéric Lécaillea9568412022-04-25 08:58:04 +02003976
Amaury Denoyellef2476052022-08-04 16:19:57 +02003977 if (!qc_send_ppkts(buf, qc->xprt_ctx))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003978 goto out;
Frédéric Lécaillea9568412022-04-25 08:58:04 +02003979
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003980 skip_send:
3981 status = 1;
Frédéric Lécaillea9568412022-04-25 08:58:04 +02003982 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003983 TRACE_STATE("no more need old data for probing", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02003984 qc->flags &= ~QUIC_FL_CONN_RETRANS_OLD_DATA;
Amaury Denoyelle5b689862022-08-08 16:07:30 +02003985 qc_txb_release(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003986 leave:
3987 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
3988 return status;
Frédéric Lécaillea9568412022-04-25 08:58:04 +02003989}
3990
3991/* Retransmit up to two datagrams depending on packet number space */
3992static void qc_dgrams_retransmit(struct quic_conn *qc)
3993{
3994 struct quic_enc_level *iqel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
3995 struct quic_enc_level *hqel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
3996 struct quic_enc_level *aqel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
3997
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003998 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3999
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004000 if (iqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) {
4001 struct list ifrms = LIST_HEAD_INIT(ifrms);
4002 struct list hfrms = LIST_HEAD_INIT(hfrms);
4003
4004 qc_prep_hdshk_fast_retrans(qc, &ifrms, &hfrms);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004005 TRACE_DEVEL("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &ifrms);
4006 TRACE_DEVEL("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &hfrms);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004007 if (!LIST_ISEMPTY(&ifrms)) {
4008 iqel->pktns->tx.pto_probe = 1;
4009 if (!LIST_ISEMPTY(&hfrms)) {
4010 hqel->pktns->tx.pto_probe = 1;
4011 qc_send_hdshk_pkts(qc, 1, QUIC_TLS_ENC_LEVEL_INITIAL, &ifrms,
4012 QUIC_TLS_ENC_LEVEL_HANDSHAKE, &hfrms);
4013 }
4014 }
4015 if (hqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) {
4016 qc_prep_fast_retrans(qc, hqel, &hfrms, NULL);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004017 TRACE_DEVEL("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &hfrms);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004018 if (!LIST_ISEMPTY(&hfrms)) {
4019 hqel->pktns->tx.pto_probe = 1;
4020 qc_send_hdshk_pkts(qc, 1, QUIC_TLS_ENC_LEVEL_HANDSHAKE, &hfrms,
4021 QUIC_TLS_ENC_LEVEL_NONE, NULL);
4022 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004023 TRACE_STATE("no more need to probe Handshake packet number space",
4024 QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004025 hqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED;
4026 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004027 TRACE_STATE("no more need to probe Initial packet number space",
4028 QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004029 iqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED;
4030 }
4031 else {
4032 int i;
4033 struct list frms1 = LIST_HEAD_INIT(frms1);
4034 struct list frms2 = LIST_HEAD_INIT(frms2);
4035
4036 if (hqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) {
4037 hqel->pktns->tx.pto_probe = 0;
4038 for (i = 0; i < QUIC_MAX_NB_PTO_DGRAMS; i++) {
4039 qc_prep_fast_retrans(qc, hqel, &frms1, NULL);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004040 TRACE_DEVEL("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &frms1);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004041 if (!LIST_ISEMPTY(&frms1)) {
4042 hqel->pktns->tx.pto_probe = 1;
4043 qc_send_hdshk_pkts(qc, 1, QUIC_TLS_ENC_LEVEL_HANDSHAKE, &frms1,
4044 QUIC_TLS_ENC_LEVEL_NONE, NULL);
4045 }
4046 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004047 TRACE_STATE("no more need to probe Handshake packet number space",
4048 QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004049 hqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED;
4050 }
4051 else if (aqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) {
4052 aqel->pktns->tx.pto_probe = 0;
4053 qc_prep_fast_retrans(qc, aqel, &frms1, &frms2);
4054 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &frms1);
4055 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &frms2);
4056 if (!LIST_ISEMPTY(&frms1)) {
4057 aqel->pktns->tx.pto_probe = 1;
4058 qc_send_app_pkts(qc, 1, &frms1);
4059 }
4060 if (!LIST_ISEMPTY(&frms2)) {
4061 aqel->pktns->tx.pto_probe = 1;
4062 qc_send_app_pkts(qc, 1, &frms2);
4063 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004064 TRACE_STATE("no more need to probe 01RTT packet number space",
4065 QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004066 aqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED;
4067 }
4068 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004069 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004070}
4071
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004072/* QUIC connection packet handler task (post handshake) */
4073static struct task *quic_conn_app_io_cb(struct task *t, void *context, unsigned int state)
4074{
4075 struct ssl_sock_ctx *ctx;
4076 struct quic_conn *qc;
4077 struct quic_enc_level *qel;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004078
4079
4080 ctx = context;
4081 qc = ctx->qc;
4082 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004083
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004084 TRACE_ENTER(QUIC_EV_CONN_IO_CB, qc);
4085 TRACE_STATE("connection handshake state", QUIC_EV_CONN_IO_CB, qc, &qc->state);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004086
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02004087 /* Retranmissions */
4088 if (qc->flags & QUIC_FL_CONN_RETRANS_NEEDED) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004089 TRACE_STATE("retransmission needed", QUIC_EV_CONN_IO_CB, qc);
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02004090 qc->flags &= ~QUIC_FL_CONN_RETRANS_NEEDED;
4091 qc_dgrams_retransmit(qc);
4092 }
4093
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004094 if (!MT_LIST_ISEMPTY(&qel->rx.pqpkts) && qc_qel_may_rm_hp(qc, qel))
4095 qc_rm_hp_pkts(qc, qel);
4096
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004097 if (!qc_treat_rx_pkts(qel, NULL, ctx, 0)) {
4098 TRACE_DEVEL("qc_treat_rx_pkts() failed", QUIC_EV_CONN_IO_CB, qc);
4099 goto out;
4100 }
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004101
Frédéric Lécaille47756802022-03-25 09:12:16 +01004102 if ((qc->flags & QUIC_FL_CONN_DRAINING) &&
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004103 !(qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE)) {
4104 TRACE_STATE("draining connection (must not send packets)", QUIC_EV_CONN_IO_CB, qc);
Frédéric Lécaille47756802022-03-25 09:12:16 +01004105 goto out;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004106 }
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004107
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004108 /* XXX TODO: how to limit the list frames to send */
4109 if (!qc_send_app_pkts(qc, 0, &qel->pktns->tx.frms)) {
4110 TRACE_DEVEL("qc_send_app_pkts() failed", QUIC_EV_CONN_IO_CB, qc);
4111 goto out;
4112 }
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004113
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004114 out:
4115 TRACE_LEAVE(QUIC_EV_CONN_IO_CB, qc);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004116 return t;
4117}
4118
Amaury Denoyellec09ef0c2022-08-08 18:15:24 +02004119/* Returns a boolean if <qc> needs to emit frames for <qel> encryption level. */
4120static int qc_need_sending(struct quic_conn *qc, struct quic_enc_level *qel)
4121{
4122 return (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) ||
4123 (qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) ||
4124 qel->pktns->tx.pto_probe ||
4125 !LIST_ISEMPTY(&qel->pktns->tx.frms);
4126}
4127
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004128/* QUIC connection packet handler task. */
4129struct task *quic_conn_io_cb(struct task *t, void *context, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004130{
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004131 int ret, ssl_err;
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004132 struct ssl_sock_ctx *ctx;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004133 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004134 enum quic_tls_enc_level tel, next_tel;
4135 struct quic_enc_level *qel, *next_qel;
Amaury Denoyellef2476052022-08-04 16:19:57 +02004136 struct buffer *buf = NULL;
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004137 int st, force_ack, zero_rtt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004138
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004139 ctx = context;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01004140 qc = ctx->qc;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004141 TRACE_ENTER(QUIC_EV_CONN_IO_CB, qc);
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004142 st = qc->state;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004143 TRACE_PROTO("connection state", QUIC_EV_CONN_IO_CB, qc, &st);
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02004144
4145 /* Retranmissions */
4146 if (qc->flags & QUIC_FL_CONN_RETRANS_NEEDED) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004147 TRACE_DEVEL("retransmission needed", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02004148 qc->flags &= ~QUIC_FL_CONN_RETRANS_NEEDED;
4149 qc_dgrams_retransmit(qc);
4150 }
4151
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004152 if (qc->flags & QUIC_FL_CONN_IO_CB_WAKEUP) {
4153 qc->flags &= ~QUIC_FL_CONN_IO_CB_WAKEUP;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004154 TRACE_DEVEL("needs to wakeup the timer task after the anti-amplicaiton limit was reached",
4155 QUIC_EV_CONN_IO_CB, qc);
4156 /* The I/O handler has been woken up by the dgram parser (qc_lstnr_pkt_rcv())
Frédéric Lécaille6b663152022-01-04 17:03:11 +01004157 * after the anti-amplification was reached.
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004158 *
4159 * TODO: this part should be removed. This was there because the
4160 * datagram parser was not executed by only one thread.
Frédéric Lécaille59507de2022-08-11 12:14:07 +02004161 */
Frédéric Lécaille6b663152022-01-04 17:03:11 +01004162 qc_set_timer(qc);
4163 if (tick_isset(qc->timer) && tick_is_lt(qc->timer, now_ms))
4164 task_wakeup(qc->timer_task, TASK_WOKEN_MSG);
4165 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004166 ssl_err = SSL_ERROR_NONE;
Frédéric Lécaille4137b2d2021-12-17 18:24:16 +01004167 zero_rtt = st < QUIC_HS_ST_COMPLETE &&
4168 (!MT_LIST_ISEMPTY(&qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA].rx.pqpkts) ||
4169 qc_el_rx_pkts(&qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA]));
Frédéric Lécaille2766e782021-08-30 17:16:07 +02004170 start:
Frédéric Lécaille917a7db2022-01-03 17:00:35 +01004171 if (st >= QUIC_HS_ST_COMPLETE &&
4172 qc_el_rx_pkts(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE])) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004173 TRACE_DEVEL("remaining Handshake packets", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaille917a7db2022-01-03 17:00:35 +01004174 /* There may be remaining Handshake packets to treat and acknowledge. */
4175 tel = QUIC_TLS_ENC_LEVEL_HANDSHAKE;
4176 next_tel = QUIC_TLS_ENC_LEVEL_APP;
4177 }
4178 else if (!quic_get_tls_enc_levels(&tel, &next_tel, st, zero_rtt))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004179 goto out;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004180
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004181 qel = &qc->els[tel];
Frédéric Lécaillef7980962021-08-19 17:35:21 +02004182 next_qel = next_tel == QUIC_TLS_ENC_LEVEL_NONE ? NULL : &qc->els[next_tel];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004183
4184 next_level:
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01004185 /* Treat packets waiting for header packet protection decryption */
4186 if (!MT_LIST_ISEMPTY(&qel->rx.pqpkts) && qc_qel_may_rm_hp(qc, qel))
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004187 qc_rm_hp_pkts(qc, qel);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004188
Frédéric Lécaille2766e782021-08-30 17:16:07 +02004189 force_ack = qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL] ||
4190 qel == &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
4191 if (!qc_treat_rx_pkts(qel, next_qel, ctx, force_ack))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004192 goto out;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004193
Frédéric Lécaille47756802022-03-25 09:12:16 +01004194 if ((qc->flags & QUIC_FL_CONN_DRAINING) &&
4195 !(qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE))
4196 goto out;
4197
Frédéric Lécaille1231d3c2022-04-28 15:43:46 +02004198 if (next_qel && next_qel == &qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA] &&
4199 !MT_LIST_ISEMPTY(&next_qel->rx.pqpkts)) {
4200 if ((next_qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET)) {
4201 qel = next_qel;
4202 next_qel = NULL;
4203 goto next_level;
4204 }
4205 else {
4206 struct quic_rx_packet *pkt;
4207 struct mt_list *elt1, elt2;
4208 struct quic_enc_level *aqel = &qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA];
4209
4210 /* Drop these 0-RTT packets */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004211 TRACE_DEVEL("drop all 0-RTT packets", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaille1231d3c2022-04-28 15:43:46 +02004212 mt_list_for_each_entry_safe(pkt, &aqel->rx.pqpkts, list, elt1, elt2) {
4213 MT_LIST_DELETE_SAFE(elt1);
4214 quic_rx_packet_refdec(pkt);
4215 }
4216 }
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01004217 }
4218
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004219 st = qc->state;
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004220 if (st >= QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004221 if (!(qc->flags & QUIC_FL_CONN_POST_HANDSHAKE_FRAMES_BUILT) &&
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004222 !quic_build_post_handshake_frames(qc))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004223 goto out;
Frédéric Lécaillefee7ba62021-12-06 12:09:08 +01004224
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004225 if (!(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].tls_ctx.flags &
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004226 QUIC_FL_TLS_SECRETS_DCD)) {
4227 /* Discard the Handshake keys. */
4228 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
4229 TRACE_PROTO("discarding Handshake pktns", QUIC_EV_CONN_PHPKTS, qc);
4230 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns, qc);
4231 qc_set_timer(qc);
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004232 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004233 qc_release_pktns_frms(qc, qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns);
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004234 }
4235
4236 if (qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) {
4237 /* There may be remaining handshake to build (acks) */
4238 st = QUIC_HS_ST_SERVER_HANDSHAKE;
4239 }
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004240 }
4241
Frédéric Lécaillebec186d2022-01-12 15:32:55 +01004242 /* A listener does not send any O-RTT packet. O-RTT packet number space must not
4243 * be considered.
4244 */
4245 if (!quic_get_tls_enc_levels(&tel, &next_tel, st, 0))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004246 goto out;
Amaury Denoyellef2476052022-08-04 16:19:57 +02004247
Amaury Denoyellef0f92b22022-08-09 17:52:52 +02004248 if (!qc_need_sending(qc, qel) &&
4249 (!next_qel || !qc_need_sending(qc, next_qel))) {
Amaury Denoyellec09ef0c2022-08-08 18:15:24 +02004250 goto skip_send;
Amaury Denoyellef0f92b22022-08-09 17:52:52 +02004251 }
Amaury Denoyellec09ef0c2022-08-08 18:15:24 +02004252
Amaury Denoyelle5b689862022-08-08 16:07:30 +02004253 buf = qc_txb_alloc(qc);
Amaury Denoyellef2476052022-08-04 16:19:57 +02004254 if (!buf)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004255 goto out;
Amaury Denoyellef2476052022-08-04 16:19:57 +02004256
4257 /* Currently buf cannot be non-empty at this stage. Even if a previous
4258 * sendto() has failed it is emptied to simulate packet emission and
4259 * rely on QUIC lost detection to try to emit it.
4260 */
4261 BUG_ON_HOT(b_data(buf));
4262 b_reset(buf);
4263
4264 ret = qc_prep_pkts(qc, buf, tel, &qc->els[tel].pktns->tx.frms,
Frédéric Lécaillefc888442022-04-11 15:39:34 +02004265 next_tel, &qc->els[next_tel].pktns->tx.frms);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004266 if (ret == -1)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004267 goto out;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004268 else if (ret == 0)
4269 goto skip_send;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004270
Amaury Denoyellef2476052022-08-04 16:19:57 +02004271 if (!qc_send_ppkts(buf, ctx))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004272 goto out;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004273
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004274 skip_send:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004275 /* Check if there is something to do for the next level.
4276 */
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02004277 if (next_qel && next_qel != qel &&
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004278 (next_qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET) &&
Frédéric Lécaille7d807c92021-12-06 08:56:38 +01004279 (!MT_LIST_ISEMPTY(&next_qel->rx.pqpkts) || qc_el_rx_pkts(next_qel))) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004280 qel = next_qel;
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02004281 next_qel = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004282 goto next_level;
4283 }
4284
Frédéric Lécaille47756802022-03-25 09:12:16 +01004285 out:
Amaury Denoyelle5b689862022-08-08 16:07:30 +02004286 qc_txb_release(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004287 TRACE_LEAVE(QUIC_EV_CONN_IO_CB, qc, &st, &ssl_err);
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004288 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004289}
4290
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05004291/* Uninitialize <qel> QUIC encryption level. Never fails. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004292static void quic_conn_enc_level_uninit(struct quic_conn *qc, struct quic_enc_level *qel)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004293{
4294 int i;
4295
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004296 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
4297
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004298 for (i = 0; i < qel->tx.crypto.nb_buf; i++) {
4299 if (qel->tx.crypto.bufs[i]) {
4300 pool_free(pool_head_quic_crypto_buf, qel->tx.crypto.bufs[i]);
4301 qel->tx.crypto.bufs[i] = NULL;
4302 }
4303 }
Willy Tarreau61cfdf42021-02-20 10:46:51 +01004304 ha_free(&qel->tx.crypto.bufs);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004305
4306 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004307}
4308
4309/* Initialize QUIC TLS encryption level with <level<> as level for <qc> QUIC
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05004310 * connection allocating everything needed.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004311 * Returns 1 if succeeded, 0 if not.
4312 */
4313static int quic_conn_enc_level_init(struct quic_conn *qc,
4314 enum quic_tls_enc_level level)
4315{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004316 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004317 struct quic_enc_level *qel;
4318
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004319 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
4320
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004321 qel = &qc->els[level];
4322 qel->level = quic_to_ssl_enc_level(level);
4323 qel->tls_ctx.rx.aead = qel->tls_ctx.tx.aead = NULL;
4324 qel->tls_ctx.rx.md = qel->tls_ctx.tx.md = NULL;
4325 qel->tls_ctx.rx.hp = qel->tls_ctx.tx.hp = NULL;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +01004326 qel->tls_ctx.flags = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004327
4328 qel->rx.pkts = EB_ROOT;
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02004329 MT_LIST_INIT(&qel->rx.pqpkts);
Frédéric Lécaille9054d1b2021-07-26 16:23:53 +02004330 qel->rx.crypto.offset = 0;
4331 qel->rx.crypto.frms = EB_ROOT_UNIQUE;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004332
4333 /* Allocate only one buffer. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004334 /* TODO: use a pool */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004335 qel->tx.crypto.bufs = malloc(sizeof *qel->tx.crypto.bufs);
4336 if (!qel->tx.crypto.bufs)
4337 goto err;
4338
4339 qel->tx.crypto.bufs[0] = pool_alloc(pool_head_quic_crypto_buf);
4340 if (!qel->tx.crypto.bufs[0])
4341 goto err;
4342
4343 qel->tx.crypto.bufs[0]->sz = 0;
4344 qel->tx.crypto.nb_buf = 1;
4345
4346 qel->tx.crypto.sz = 0;
4347 qel->tx.crypto.offset = 0;
4348
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004349 ret = 1;
4350 leave:
4351 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
4352 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004353
4354 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01004355 ha_free(&qel->tx.crypto.bufs);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004356 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004357}
4358
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004359/* Release the quic_conn <qc>. The connection is removed from the CIDs tree.
4360 * The connection tasklet is killed.
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004361 *
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004362 * This function must only be called by the thread responsible of the quic_conn
4363 * tasklet.
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004364 */
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004365static void quic_conn_release(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004366{
4367 int i;
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004368 struct ssl_sock_ctx *conn_ctx;
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004369 struct eb64_node *node;
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02004370 struct quic_tls_ctx *app_tls_ctx;
Amaury Denoyelle2c31e122022-06-20 10:52:55 +02004371 struct quic_rx_packet *pkt, *pktback;
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004372
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004373 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
4374
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02004375 /* We must not free the quic-conn if the MUX is still allocated. */
4376 BUG_ON(qc->mux_state == QC_MUX_READY);
4377
Willy Tarreau54bc7862022-08-10 07:26:27 +02004378 /* in the unlikely (but possible) case the connection was just added to
4379 * the accept_list we must delete it from there.
4380 */
4381 MT_LIST_DELETE(&qc->accept_list);
4382
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004383 /* free remaining stream descriptors */
4384 node = eb64_first(&qc->streams_by_id);
4385 while (node) {
4386 struct qc_stream_desc *stream;
4387
4388 stream = eb64_entry(node, struct qc_stream_desc, by_id);
4389 node = eb64_next(node);
4390
Amaury Denoyellec9acc312022-04-01 16:41:21 +02004391 /* all streams attached to the quic-conn are released, so
4392 * qc_stream_desc_free will liberate the stream instance.
4393 */
4394 BUG_ON(!stream->release);
4395 qc_stream_desc_free(stream);
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004396 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004397
Amaury Denoyelle2c31e122022-06-20 10:52:55 +02004398 /* Purge Rx packet list. */
4399 list_for_each_entry_safe(pkt, pktback, &qc->rx.pkt_list, qc_rx_pkt_list) {
4400 LIST_DELETE(&pkt->qc_rx_pkt_list);
4401 pool_free(pool_head_quic_rx_packet, pkt);
4402 }
4403
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004404 if (qc->idle_timer_task) {
4405 task_destroy(qc->idle_timer_task);
4406 qc->idle_timer_task = NULL;
4407 }
4408
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004409 if (qc->timer_task) {
4410 task_destroy(qc->timer_task);
4411 qc->timer_task = NULL;
4412 }
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004413
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004414 /* remove the connection from receiver cids trees */
4415 ebmb_delete(&qc->odcid_node);
4416 ebmb_delete(&qc->scid_node);
4417 free_quic_conn_cids(qc);
Amaury Denoyelle2af19852021-09-30 11:03:28 +02004418
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004419 conn_ctx = qc->xprt_ctx;
Amaury Denoyelle2d9794b2022-01-20 17:43:20 +01004420 if (conn_ctx) {
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004421 tasklet_free(conn_ctx->wait_event.tasklet);
Amaury Denoyelle2d9794b2022-01-20 17:43:20 +01004422 SSL_free(conn_ctx->ssl);
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004423 pool_free(pool_head_quic_conn_ctx, conn_ctx);
Amaury Denoyelle2d9794b2022-01-20 17:43:20 +01004424 }
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004425
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02004426 quic_tls_ku_free(qc);
4427 for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++) {
4428 quic_tls_ctx_secs_free(&qc->els[i].tls_ctx);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004429 quic_conn_enc_level_uninit(qc, &qc->els[i]);
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02004430 }
Frédéric Lécaille301425b2022-06-14 17:40:39 +02004431 quic_tls_ctx_secs_free(&qc->negotiated_ictx);
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02004432
4433 app_tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
4434 pool_free(pool_head_quic_tls_secret, app_tls_ctx->rx.secret);
4435 pool_free(pool_head_quic_tls_secret, app_tls_ctx->tx.secret);
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01004436
Frédéric Lécailleeb2a2da2022-04-01 12:15:24 +02004437 for (i = 0; i < QUIC_TLS_PKTNS_MAX; i++) {
Frédéric Lécaille8ddde4f2022-08-01 14:07:50 +02004438 quic_pktns_tx_pkts_release(&qc->pktns[i], qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004439 quic_free_arngs(qc, &qc->pktns[i].rx.arngs);
Frédéric Lécailleeb2a2da2022-04-01 12:15:24 +02004440 }
Frédéric Lécaille64670882022-04-01 11:57:19 +02004441
Amaury Denoyelle67e6cd52021-12-13 17:07:03 +01004442 pool_free(pool_head_quic_conn_rxbuf, qc->rx.buf.area);
4443 pool_free(pool_head_quic_conn, qc);
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01004444 TRACE_PROTO("QUIC conn. freed", QUIC_EV_CONN_FREED, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004445
4446 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004447}
4448
Amaury Denoyellee0be5732022-04-05 17:34:18 +02004449static void quic_close(struct connection *conn, void *xprt_ctx)
Amaury Denoyelle414cac52021-09-22 11:14:37 +02004450{
4451 struct ssl_sock_ctx *conn_ctx = xprt_ctx;
Amaury Denoyelle29632b82022-01-18 16:50:58 +01004452 struct quic_conn *qc = conn_ctx->qc;
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01004453
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01004454 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01004455
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01004456 /* Next application data can be dropped. */
4457 qc->mux_state = QC_MUX_RELEASED;
4458
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02004459 /* If the quic-conn timer has already expired free the quic-conn. */
4460 if (qc->flags & QUIC_FL_CONN_EXP_TIMER) {
4461 quic_conn_release(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004462 goto leave;
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02004463 }
4464
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02004465 qc_check_close_on_released_mux(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004466 leave:
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01004467 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle414cac52021-09-22 11:14:37 +02004468}
4469
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004470/* Callback called upon loss detection and PTO timer expirations. */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004471static struct task *process_timer(struct task *task, void *ctx, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004472{
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02004473 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004474 struct quic_conn *qc;
4475 struct quic_pktns *pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004476
4477 conn_ctx = task->context;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01004478 qc = conn_ctx->qc;
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004479 TRACE_ENTER(QUIC_EV_CONN_PTIMER, qc,
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01004480 NULL, NULL, &qc->path->ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004481 task->expire = TICK_ETERNITY;
4482 pktns = quic_loss_pktns(qc);
4483 if (tick_isset(pktns->tx.loss_time)) {
4484 struct list lost_pkts = LIST_HEAD_INIT(lost_pkts);
4485
4486 qc_packet_loss_lookup(pktns, qc, &lost_pkts);
4487 if (!LIST_ISEMPTY(&lost_pkts))
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004488 qc_release_lost_pkts(qc, pktns, &lost_pkts, now_ms);
4489 qc_set_timer(qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004490 goto out;
4491 }
4492
4493 if (qc->path->in_flight) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004494 pktns = quic_pto_pktns(qc, qc->state >= QUIC_HS_ST_COMPLETE, NULL);
Frédéric Lécailledafbde62022-04-26 13:54:28 +02004495 if (qc->mux_state == QC_MUX_READY && qc->qcc->subs &&
4496 qc->qcc->subs->events & SUB_RETRY_SEND) {
4497 struct qcc *qcc = qc->qcc;
4498
4499 pktns->tx.pto_probe = QUIC_MAX_NB_PTO_DGRAMS;
4500 tasklet_wakeup(qcc->subs->tasklet);
4501 qcc->subs->events &= ~SUB_RETRY_SEND;
4502 if (!qcc->subs->events)
4503 qcc->subs = NULL;
4504 }
4505 else {
4506 qc->flags |= QUIC_FL_CONN_RETRANS_NEEDED;
4507 pktns->flags |= QUIC_FL_PKTNS_PROBE_NEEDED;
4508 if (pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL]) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004509 TRACE_STATE("needs to probe Initial packet number space", QUIC_EV_CONN_TXPKT, qc);
4510 if (qc->pktns[QUIC_TLS_PKTNS_HANDSHAKE].tx.in_flight) {
Frédéric Lécailledafbde62022-04-26 13:54:28 +02004511 qc->pktns[QUIC_TLS_PKTNS_HANDSHAKE].flags |= QUIC_FL_PKTNS_PROBE_NEEDED;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004512 TRACE_STATE("needs to probe Handshake packet number space", QUIC_EV_CONN_TXPKT, qc);
4513 }
4514 }
4515 else if (pktns == &qc->pktns[QUIC_TLS_PKTNS_HANDSHAKE]) {
4516 TRACE_STATE("needs to probe Handshake packet number space", QUIC_EV_CONN_TXPKT, qc);
4517 }
4518 else if (pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT]) {
4519 TRACE_STATE("needs to probe 01RTT packet number space", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécailledafbde62022-04-26 13:54:28 +02004520 }
Frédéric Lécaille0fa553d2022-01-17 14:26:12 +01004521 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004522 }
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004523 else if (!qc_is_listener(qc) && qc->state <= QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004524 struct quic_enc_level *iel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
4525 struct quic_enc_level *hel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
4526
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004527 if (hel->tls_ctx.flags == QUIC_FL_TLS_SECRETS_SET)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004528 hel->pktns->tx.pto_probe = 1;
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004529 if (iel->tls_ctx.flags == QUIC_FL_TLS_SECRETS_SET)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004530 iel->pktns->tx.pto_probe = 1;
4531 }
Frédéric Lécaillea56054e2021-12-31 16:35:28 +01004532
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004533 tasklet_wakeup(conn_ctx->wait_event.tasklet);
4534 qc->path->loss.pto_count++;
4535
4536 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004537 TRACE_LEAVE(QUIC_EV_CONN_PTIMER, qc, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004538
4539 return task;
4540}
4541
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004542/* Parse the Retry token from buffer <token> with <end> a pointer to
4543 * one byte past the end of this buffer. This will extract the ODCID
4544 * which will be stored into <odcid>
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004545 *
4546 * Returns 0 on success else non-zero.
4547 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004548static int parse_retry_token(struct quic_conn *qc,
4549 const unsigned char *token, const unsigned char *end,
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004550 struct quic_cid *odcid)
4551{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004552 int ret = 0;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004553 uint64_t odcid_len;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004554 uint32_t timestamp;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004555
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004556 TRACE_ENTER(QUIC_EV_CONN_LPKT, qc);
4557
4558 if (!quic_dec_int(&odcid_len, &token, end)) {
4559 TRACE_ERROR("quic_dec_int() error", QUIC_EV_CONN_LPKT, qc);
4560 goto leave;
4561 }
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004562
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004563 /* RFC 9000 7.2. Negotiating Connection IDs:
4564 * When an Initial packet is sent by a client that has not previously
4565 * received an Initial or Retry packet from the server, the client
4566 * populates the Destination Connection ID field with an unpredictable
4567 * value. This Destination Connection ID MUST be at least 8 bytes in length.
4568 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004569 if (odcid_len < QUIC_ODCID_MINLEN || odcid_len > QUIC_CID_MAXLEN) {
4570 TRACE_ERROR("wrong ODCID length", QUIC_EV_CONN_LPKT, qc);
4571 goto leave;
4572 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004573
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004574 if (end - token < odcid_len + sizeof timestamp) {
4575 TRACE_ERROR("too long ODCID length", QUIC_EV_CONN_LPKT, qc);
4576 goto leave;
4577 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004578
4579 timestamp = ntohl(read_u32(token + odcid_len));
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004580 if (timestamp + MS_TO_TICKS(QUIC_RETRY_DURATION_MS) <= now_ms) {
4581 TRACE_ERROR("token has expired", QUIC_EV_CONN_LPKT, qc);
4582 goto leave;
4583 }
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004584
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004585 ret = 1;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004586 memcpy(odcid->data, token, odcid_len);
4587 odcid->len = odcid_len;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004588 leave:
4589 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc);
4590 return !ret;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004591}
4592
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004593/* Allocate a new QUIC connection with <version> as QUIC version. <ipv4>
4594 * boolean is set to 1 for IPv4 connection, 0 for IPv6. <server> is set to 1
4595 * for QUIC servers (or haproxy listeners).
4596 * <dcid> is the destination connection ID, <scid> is the source connection ID,
4597 * <token> the token found to be used for this connection with <token_len> as
4598 * length. <saddr> is the source address.
4599 * Returns the connection if succeeded, NULL if not.
4600 */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02004601static struct quic_conn *qc_new_conn(const struct quic_version *qv, int ipv4,
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004602 struct quic_cid *dcid, struct quic_cid *scid,
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02004603 const struct quic_cid *token_odcid,
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004604 struct sockaddr_storage *saddr,
Frédéric Lécaille748ece62022-05-21 23:58:40 +02004605 int server, int token, void *owner)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004606{
4607 int i;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004608 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004609 /* Initial CID. */
4610 struct quic_connection_id *icid;
Frédéric Lécaillec0b481f2022-02-02 15:39:55 +01004611 char *buf_area = NULL;
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01004612 struct listener *l = NULL;
Frédéric Lécaille43910a92022-07-11 10:24:21 +02004613 struct quic_cc_algo *cc_algo = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004614
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004615 TRACE_ENTER(QUIC_EV_CONN_INIT);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004616 qc = pool_zalloc(pool_head_quic_conn);
4617 if (!qc) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004618 TRACE_ERROR("Could not allocate a new connection", QUIC_EV_CONN_INIT);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004619 goto err;
4620 }
4621
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004622 buf_area = pool_alloc(pool_head_quic_conn_rxbuf);
4623 if (!buf_area) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004624 TRACE_ERROR("Could not allocate a new RX buffer", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004625 goto err;
4626 }
4627
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004628 qc->cids = EB_ROOT;
4629 /* QUIC Server (or listener). */
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004630 if (server) {
Frédéric Lécaillea89659a2022-05-19 11:58:53 +02004631 struct proxy *prx;
4632
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01004633 l = owner;
Frédéric Lécaillea89659a2022-05-19 11:58:53 +02004634 prx = l->bind_conf->frontend;
Frédéric Lécaille43910a92022-07-11 10:24:21 +02004635 cc_algo = l->bind_conf->quic_cc_algo;
Frédéric Lécaille6b197642021-07-06 16:25:08 +02004636
Frédéric Lécaillea89659a2022-05-19 11:58:53 +02004637 qc->prx_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
4638 &quic_stats_module);
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01004639 qc->flags |= QUIC_FL_CONN_LISTENER;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004640 qc->state = QUIC_HS_ST_SERVER_INITIAL;
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01004641 /* Copy the initial DCID with the address. */
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004642 qc->odcid.len = dcid->len;
4643 qc->odcid.addrlen = dcid->addrlen;
4644 memcpy(qc->odcid.data, dcid->data, dcid->len + dcid->addrlen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004645
Amaury Denoyelle42b9f1c2021-11-24 15:29:53 +01004646 /* copy the packet SCID to reuse it as DCID for sending */
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004647 if (scid->len)
4648 memcpy(qc->dcid.data, scid->data, scid->len);
4649 qc->dcid.len = scid->len;
Amaury Denoyellef2476052022-08-04 16:19:57 +02004650 qc->tx.buf = BUF_NULL;
Amaury Denoyelle2af19852021-09-30 11:03:28 +02004651 qc->li = l;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004652 }
4653 /* QUIC Client (outgoing connection to servers) */
4654 else {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004655 qc->state = QUIC_HS_ST_CLIENT_INITIAL;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004656 if (dcid->len)
4657 memcpy(qc->dcid.data, dcid->data, dcid->len);
4658 qc->dcid.len = dcid->len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004659 }
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01004660 qc->mux_state = QC_MUX_NULL;
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02004661 qc->err = quic_err_transport(QC_ERR_NO_ERROR);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004662
Amaury Denoyelle0442efd2022-01-28 16:02:13 +01004663 icid = new_quic_cid(&qc->cids, qc, 0);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004664 if (!icid) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004665 TRACE_ERROR("Could not allocate a new connection ID", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004666 goto err;
4667 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004668
Frédéric Lécaille74904a42022-01-27 15:35:56 +01004669 /* insert the allocated CID in the receiver datagram handler tree */
4670 if (server)
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01004671 ebmb_insert(&quic_dghdlrs[tid].cids, &icid->node, icid->cid.len);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01004672
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004673 /* Select our SCID which is the first CID with 0 as sequence number. */
4674 qc->scid = icid->cid;
4675
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004676 /* Packet number spaces initialization. */
4677 for (i = 0; i < QUIC_TLS_PKTNS_MAX; i++)
4678 quic_pktns_init(&qc->pktns[i]);
4679 /* QUIC encryption level context initialization. */
4680 for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++) {
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004681 if (!quic_conn_enc_level_init(qc, i)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004682 TRACE_ERROR("Could not initialize an encryption level", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004683 goto err;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004684 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004685 /* Initialize the packet number space. */
4686 qc->els[i].pktns = &qc->pktns[quic_tls_pktns(i)];
4687 }
4688
Frédéric Lécaille301425b2022-06-14 17:40:39 +02004689 qc->original_version = qv;
4690 qc->tps_tls_ext = (qc->original_version->num & 0xff000000) == 0xff000000 ?
Frédéric Lécaillea956d152021-11-10 09:24:22 +01004691 TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS_DRAFT:
4692 TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004693 /* TX part. */
4694 LIST_INIT(&qc->tx.frms_to_send);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004695 qc->tx.nb_buf = QUIC_CONN_TX_BUFS_NB;
4696 qc->tx.wbuf = qc->tx.rbuf = 0;
4697 qc->tx.bytes = 0;
Amaury Denoyellef2476052022-08-04 16:19:57 +02004698 qc->tx.buf = BUF_NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004699 /* RX part. */
4700 qc->rx.bytes = 0;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004701 qc->rx.buf = b_make(buf_area, QUIC_CONN_RX_BUFSZ, 0, 0);
Frédéric Lécaille664741e2022-05-02 18:46:58 +02004702 for (i = 0; i < QCS_MAX_TYPES; i++)
4703 qc->rx.strms[i].nb_streams = 0;
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02004704
4705 qc->nb_pkt_for_cc = 1;
4706 qc->nb_pkt_since_cc = 0;
4707
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004708 LIST_INIT(&qc->rx.pkt_list);
Frédéric Lécaille40df78f2021-11-30 10:59:37 +01004709 if (!quic_tls_ku_init(qc)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004710 TRACE_ERROR("Key update initialization failed", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille40df78f2021-11-30 10:59:37 +01004711 goto err;
4712 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004713
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004714 /* XXX TO DO: Only one path at this time. */
4715 qc->path = &qc->paths[0];
Frédéric Lécaille43910a92022-07-11 10:24:21 +02004716 quic_path_init(qc->path, ipv4, cc_algo ? cc_algo : default_quic_cc_algo, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004717
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01004718 /* required to use MTLIST_IN_LIST */
4719 MT_LIST_INIT(&qc->accept_list);
4720
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004721 qc->streams_by_id = EB_ROOT_UNIQUE;
Amaury Denoyelled2f80a22022-04-15 17:30:49 +02004722 qc->stream_buf_count = 0;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004723 memcpy(&qc->peer_addr, saddr, sizeof qc->peer_addr);
4724
Frédéric Lécaille748ece62022-05-21 23:58:40 +02004725 if (server && !qc_lstnr_params_init(qc, &l->bind_conf->quic_params,
4726 icid->stateless_reset_token,
4727 dcid->data, dcid->len,
Frédéric Lécaille7629f5d2022-08-11 18:54:26 +02004728 qc->scid.data, qc->scid.len, token_odcid))
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004729 goto err;
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004730
Frédéric Lécaille3fd92f62022-05-19 14:35:20 +02004731 if (qc_conn_alloc_ssl_ctx(qc) ||
4732 !quic_conn_init_timer(qc) ||
4733 !quic_conn_init_idle_timer_task(qc))
4734 goto err;
4735
Frédéric Lécaille301425b2022-06-14 17:40:39 +02004736 if (!qc_new_isecs(qc, &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].tls_ctx,
4737 qc->original_version, dcid->data, dcid->len, 1))
Frédéric Lécaille3fd92f62022-05-19 14:35:20 +02004738 goto err;
4739
Amaury Denoyellee770ce32021-12-21 14:51:56 +01004740 TRACE_LEAVE(QUIC_EV_CONN_INIT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004741
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004742 return qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004743
4744 err:
Frédéric Lécaillec0b481f2022-02-02 15:39:55 +01004745 pool_free(pool_head_quic_conn_rxbuf, buf_area);
4746 if (qc)
4747 qc->rx.buf.area = NULL;
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004748 quic_conn_release(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004749 TRACE_LEAVE(QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004750 return NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004751}
4752
4753/* Initialize the timer task of <qc> QUIC connection.
4754 * Returns 1 if succeeded, 0 if not.
4755 */
4756static int quic_conn_init_timer(struct quic_conn *qc)
4757{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004758 int ret = 0;
Frédéric Lécaillef57c3332021-12-09 10:06:21 +01004759 /* Attach this task to the same thread ID used for the connection */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004760 TRACE_ENTER(QUIC_EV_CONN_NEW, qc);
4761
Willy Tarreau87168752022-06-13 16:31:53 +02004762 qc->timer_task = task_new_on(qc->tid);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004763 if (!qc->timer_task) {
4764 TRACE_ERROR("timer task allocation failed", QUIC_EV_CONN_NEW, qc);
4765 goto leave;
4766 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004767
4768 qc->timer = TICK_ETERNITY;
4769 qc->timer_task->process = process_timer;
Frédéric Lécaille7fbb94d2022-01-31 10:37:07 +01004770 qc->timer_task->context = qc->xprt_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004771
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004772 ret = 1;
4773 leave:
4774 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
4775 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004776}
4777
Frédéric Lécaille47756802022-03-25 09:12:16 +01004778/* Rearm the idle timer for <qc> QUIC connection. */
4779static void qc_idle_timer_do_rearm(struct quic_conn *qc)
4780{
4781 unsigned int expire;
4782
4783 expire = QUIC_MAX(3 * quic_pto(qc), qc->max_idle_timeout);
4784 qc->idle_timer_task->expire = tick_add(now_ms, MS_TO_TICKS(expire));
4785}
4786
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004787/* Rearm the idle timer for <qc> QUIC connection depending on <read> boolean
4788 * which is set to 1 when receiving a packet , and 0 when sending packet
4789 */
4790static void qc_idle_timer_rearm(struct quic_conn *qc, int read)
4791{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004792 TRACE_ENTER(QUIC_EV_CONN_IDLE_TIMER, qc);
4793
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004794 if (read) {
4795 qc->flags |= QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ;
4796 }
4797 else {
4798 qc->flags &= ~QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ;
4799 }
Frédéric Lécaille47756802022-03-25 09:12:16 +01004800 qc_idle_timer_do_rearm(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004801
4802 TRACE_LEAVE(QUIC_EV_CONN_IDLE_TIMER, qc);
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004803}
4804
4805/* The task handling the idle timeout */
4806static struct task *qc_idle_timer_task(struct task *t, void *ctx, unsigned int state)
4807{
4808 struct quic_conn *qc = ctx;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02004809 struct quic_counters *prx_counters = qc->prx_counters;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02004810 unsigned int qc_flags = qc->flags;
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004811
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004812 TRACE_ENTER(QUIC_EV_CONN_IDLE_TIMER, qc);
4813
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02004814 /* Notify the MUX before settings QUIC_FL_CONN_EXP_TIMER or the MUX
4815 * might free the quic-conn too early via quic_close().
4816 */
4817 qc_notify_close(qc);
4818
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02004819 /* If the MUX is still alive, keep the quic-conn. The MUX is
4820 * responsible to call quic_close to release it.
4821 */
4822 qc->flags |= QUIC_FL_CONN_EXP_TIMER;
4823 if (qc->mux_state != QC_MUX_READY)
4824 quic_conn_release(qc);
4825
4826 /* TODO if the quic-conn cannot be freed because of the MUX, we may at
4827 * least clean some parts of it such as the tasklet.
4828 */
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02004829
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02004830 if (!(qc_flags & QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED)) {
4831 qc_flags |= QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004832 TRACE_DEVEL("dec half open counter", QUIC_EV_CONN_SSLALERT, qc);
Frédéric Lécailleeb791452022-05-24 16:01:39 +02004833 HA_ATOMIC_DEC(&prx_counters->half_open_conn);
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02004834 }
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004835
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004836 TRACE_LEAVE(QUIC_EV_CONN_IDLE_TIMER, qc);
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004837 return NULL;
4838}
4839
4840/* Initialize the idle timeout task for <qc>.
4841 * Returns 1 if succeeded, 0 if not.
4842 */
4843static int quic_conn_init_idle_timer_task(struct quic_conn *qc)
4844{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004845 int ret = 0;
4846
4847 TRACE_ENTER(QUIC_EV_CONN_NEW, qc);
4848
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004849 qc->idle_timer_task = task_new_here();
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004850 if (!qc->idle_timer_task) {
4851 TRACE_ERROR("Idle timer task allocation failed", QUIC_EV_CONN_NEW, qc);
4852 goto leave;
4853 }
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004854
4855 qc->idle_timer_task->process = qc_idle_timer_task;
4856 qc->idle_timer_task->context = qc;
4857 qc_idle_timer_rearm(qc, 1);
4858 task_queue(qc->idle_timer_task);
4859
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004860 ret = 1;
4861 leave:
4862 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
4863 return ret;
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004864}
4865
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004866/* Parse into <pkt> a long header located at <*buf> buffer, <end> begin a pointer to the end
4867 * past one byte of this buffer.
4868 */
4869static inline int quic_packet_read_long_header(unsigned char **buf, const unsigned char *end,
4870 struct quic_rx_packet *pkt)
4871{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004872 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004873 unsigned char dcid_len, scid_len;
4874
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004875 TRACE_ENTER(QUIC_EV_CONN_RXPKT);
4876
4877 if (end == *buf) {
4878 TRACE_ERROR("buffer data consumed", QUIC_EV_CONN_RXPKT);
4879 goto leave;
4880 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004881
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004882 /* Destination Connection ID Length */
4883 dcid_len = *(*buf)++;
4884 /* We want to be sure we can read <dcid_len> bytes and one more for <scid_len> value */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004885 if (dcid_len > QUIC_CID_MAXLEN || end - *buf < dcid_len + 1) {
4886 TRACE_ERROR("too long DCID", QUIC_EV_CONN_RXPKT);
4887 goto leave;
4888 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004889
4890 if (dcid_len) {
4891 /* Check that the length of this received DCID matches the CID lengths
4892 * of our implementation for non Initials packets only.
4893 */
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01004894 if (pkt->type != QUIC_PACKET_TYPE_INITIAL &&
4895 pkt->type != QUIC_PACKET_TYPE_0RTT &&
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004896 dcid_len != QUIC_HAP_CID_LEN) {
4897 TRACE_ERROR("wrong DCID length", QUIC_EV_CONN_RXPKT);
4898 goto leave;
4899 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004900
4901 memcpy(pkt->dcid.data, *buf, dcid_len);
4902 }
4903
4904 pkt->dcid.len = dcid_len;
4905 *buf += dcid_len;
4906
4907 /* Source Connection ID Length */
4908 scid_len = *(*buf)++;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004909 if (scid_len > QUIC_CID_MAXLEN || end - *buf < scid_len) {
4910 TRACE_ERROR("too long SCID", QUIC_EV_CONN_RXPKT);
4911 goto leave;
4912 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004913
4914 if (scid_len)
4915 memcpy(pkt->scid.data, *buf, scid_len);
4916 pkt->scid.len = scid_len;
4917 *buf += scid_len;
4918
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004919 ret = 1;
4920 leave:
4921 TRACE_LEAVE(QUIC_EV_CONN_RXPKT);
4922 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004923}
4924
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004925/* Insert <pkt> RX packet in its <qel> RX packets tree */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004926static void qc_pkt_insert(struct quic_conn *qc,
4927 struct quic_rx_packet *pkt, struct quic_enc_level *qel)
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004928{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004929 TRACE_ENTER(QUIC_EV_CONN_RXPKT, qc);
4930
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004931 pkt->pn_node.key = pkt->pn;
Frédéric Lécaille2ce5acf2021-12-20 14:41:19 +01004932 quic_rx_packet_refinc(pkt);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004933 eb64_insert(&qel->rx.pkts, &pkt->pn_node);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004934
4935 TRACE_LEAVE(QUIC_EV_CONN_RXPKT, qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004936}
4937
4938/* Try to remove the header protection of <pkt> QUIC packet attached to <qc>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004939 * QUIC connection with <buf> as packet number field address, <end> a pointer to one
4940 * byte past the end of the buffer containing this packet and <beg> the address of
4941 * the packet first byte.
4942 * If succeeded, this function updates <*buf> to point to the next packet in the buffer.
4943 * Returns 1 if succeeded, 0 if not.
4944 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004945static inline int qc_try_rm_hp(struct quic_conn *qc,
4946 struct quic_rx_packet *pkt,
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004947 unsigned char *buf, unsigned char *beg,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004948 struct quic_enc_level **el)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004949{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004950 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004951 unsigned char *pn = NULL; /* Packet number field */
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01004952 enum quic_tls_enc_level tel;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004953 struct quic_enc_level *qel;
4954 /* Only for traces. */
4955 struct quic_rx_packet *qpkt_trace;
4956
4957 qpkt_trace = NULL;
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004958 TRACE_ENTER(QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004959 /* The packet number is here. This is also the start minus
4960 * QUIC_PACKET_PN_MAXLEN of the sample used to add/remove the header
4961 * protection.
4962 */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01004963 pn = buf;
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01004964
4965 tel = quic_packet_type_enc_level(pkt->type);
4966 qel = &qc->els[tel];
4967
4968 if (qc_qel_may_rm_hp(qc, qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004969 /* Note that the following function enables us to unprotect the packet
4970 * number and its length subsequently used to decrypt the entire
4971 * packets.
4972 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004973 if (!qc_do_rm_hp(qc, pkt, &qel->tls_ctx,
Frédéric Lécaille99897d12022-08-08 10:28:07 +02004974 qel->pktns->rx.largest_pn, pn, beg)) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004975 TRACE_PROTO("hp error", QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004976 goto out;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004977 }
4978
4979 /* The AAD includes the packet number field found at <pn>. */
4980 pkt->aad_len = pn - beg + pkt->pnl;
Frédéric Lécailleffde3162022-08-08 18:41:16 +02004981 if (pkt->len - pkt->aad_len < QUIC_TLS_TAG_LEN) {
4982 TRACE_PROTO("Too short packet", QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004983 goto out;
Frédéric Lécailleffde3162022-08-08 18:41:16 +02004984 }
4985
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004986 qpkt_trace = pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004987 }
Frédéric Lécaille7d845f12022-02-21 19:22:09 +01004988 else {
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004989 if (qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD) {
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004990 /* If the packet number space has been discarded, this packet
4991 * will be not parsed.
4992 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004993 TRACE_PROTO("Discarded pktns", QUIC_EV_CONN_TRMHP, qc, pkt);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004994 goto out;
4995 }
4996
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004997 TRACE_PROTO("hp not removed", QUIC_EV_CONN_TRMHP, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004998 pkt->pn_offset = pn - beg;
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02004999 MT_LIST_APPEND(&qel->rx.pqpkts, &pkt->list);
5000 quic_rx_packet_refinc(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005001 }
5002
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005003 *el = qel;
5004 /* No reference counter incrementation here!!! */
5005 LIST_APPEND(&qc->rx.pkt_list, &pkt->qc_rx_pkt_list);
5006 memcpy(b_tail(&qc->rx.buf), beg, pkt->len);
5007 pkt->data = (unsigned char *)b_tail(&qc->rx.buf);
5008 b_add(&qc->rx.buf, pkt->len);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005009
5010 ret = 1;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005011 out:
Amaury Denoyellee81fed92021-12-22 11:06:34 +01005012 TRACE_LEAVE(QUIC_EV_CONN_TRMHP, qc, qpkt_trace);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005013 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005014}
5015
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005016/* 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 +02005017 * Also set <*long_header> to 1 if this form is long, 0 if not and the version
5018 * of this packet into <*version>.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005019 */
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005020static inline int qc_parse_hd_form(struct quic_rx_packet *pkt,
5021 unsigned char **buf, const unsigned char *end,
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005022 int *long_header, uint32_t *version)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005023{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005024 int ret = 0;
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005025 const unsigned char byte0 = **buf;
5026
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005027 TRACE_ENTER(QUIC_EV_CONN_RXPKT);
5028
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005029 (*buf)++;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005030 if (byte0 & QUIC_PACKET_LONG_HEADER_BIT) {
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005031 unsigned char type =
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005032 (byte0 >> QUIC_PACKET_TYPE_SHIFT) & QUIC_PACKET_TYPE_BITMASK;
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005033
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005034 *long_header = 1;
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005035 /* Version */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005036 if (!quic_read_uint32(version, (const unsigned char **)buf, end)) {
5037 TRACE_ERROR("could not read the packet version", QUIC_EV_CONN_RXPKT);
5038 goto out;
5039 }
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005040
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005041 if (*version != QUIC_PROTOCOL_VERSION_2_DRAFT) {
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005042 pkt->type = type;
5043 }
5044 else {
5045 switch (type) {
5046 case 0:
5047 pkt->type = QUIC_PACKET_TYPE_RETRY;
5048 break;
5049 case 1:
5050 pkt->type = QUIC_PACKET_TYPE_INITIAL;
5051 break;
5052 case 2:
5053 pkt->type = QUIC_PACKET_TYPE_0RTT;
5054 break;
5055 case 3:
5056 pkt->type = QUIC_PACKET_TYPE_HANDSHAKE;
5057 break;
5058 }
5059 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005060 }
5061 else {
5062 pkt->type = QUIC_PACKET_TYPE_SHORT;
5063 *long_header = 0;
5064 }
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005065
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005066 ret = 1;
5067 out:
5068 TRACE_LEAVE(QUIC_EV_CONN_RXPKT);
Frédéric Lécaille59507de2022-08-11 12:14:07 +02005069 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005070}
5071
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005072/* Return the QUIC version (quic_version struct) with <version> as version number
5073 * if supported or NULL if not.
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005074 */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005075static inline const struct quic_version *qc_supported_version(uint32_t version)
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005076{
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005077 int i;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005078
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005079 for (i = 0; i < quic_versions_nb; i++)
5080 if (quic_versions[i].num == version)
5081 return &quic_versions[i];
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005082
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005083 return NULL;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005084}
5085
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005086/*
5087 * Send a Version Negotiation packet on response to <pkt> on socket <fd> to
5088 * address <addr>.
5089 * Implementation of RFC9000 6. Version Negotiation
5090 *
5091 * TODO implement a rate-limiting sending of Version Negotiation packets
5092 *
5093 * Returns 0 on success else non-zero
5094 */
Amaury Denoyelled6b16672021-12-23 10:37:19 +01005095static int send_version_negotiation(int fd, struct sockaddr_storage *addr,
5096 struct quic_rx_packet *pkt)
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005097{
5098 char buf[256];
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005099 int ret = 0, i = 0, j;
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005100 uint32_t version;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005101 const socklen_t addrlen = get_addr_len(addr);
5102
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005103 TRACE_ENTER(QUIC_EV_CONN_TXPKT);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005104 /*
5105 * header form
5106 * long header, fixed bit to 0 for Version Negotiation
5107 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005108 /* TODO: RAND_bytes() should be replaced? */
5109 if (RAND_bytes((unsigned char *)buf, 1) != 1) {
5110 TRACE_ERROR("RAND_bytes() error", QUIC_EV_CONN_TXPKT);
5111 goto out;
5112 }
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005113
Frédéric Lécailleea78ee12021-11-18 13:54:43 +01005114 buf[i++] |= '\x80';
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005115 /* null version for Version Negotiation */
5116 buf[i++] = '\x00';
5117 buf[i++] = '\x00';
5118 buf[i++] = '\x00';
5119 buf[i++] = '\x00';
5120
5121 /* source connection id */
5122 buf[i++] = pkt->scid.len;
Amaury Denoyelle10eed8e2021-11-18 13:48:57 +01005123 memcpy(&buf[i], pkt->scid.data, pkt->scid.len);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005124 i += pkt->scid.len;
5125
5126 /* destination connection id */
5127 buf[i++] = pkt->dcid.len;
Amaury Denoyelle10eed8e2021-11-18 13:48:57 +01005128 memcpy(&buf[i], pkt->dcid.data, pkt->dcid.len);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005129 i += pkt->dcid.len;
5130
5131 /* supported version */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005132 for (j = 0; j < quic_versions_nb; j++) {
5133 version = htonl(quic_versions[j].num);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005134 memcpy(&buf[i], &version, sizeof(version));
5135 i += sizeof(version);
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005136 }
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005137
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005138 if (sendto(fd, buf, i, 0, (struct sockaddr *)addr, addrlen) < 0)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005139 goto out;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005140
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005141 ret = 1;
5142 out:
5143 TRACE_LEAVE(QUIC_EV_CONN_TXPKT);
5144 return !ret;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005145}
5146
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005147/* Send a stateless reset packet depending on <pkt> RX packet information
5148 * from <fd> UDP socket to <dst>
5149 * Return 1 if succeeded, 0 if not.
5150 */
Frédéric Lécailleeb791452022-05-24 16:01:39 +02005151static int send_stateless_reset(struct listener *l, struct sockaddr_storage *dstaddr,
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005152 struct quic_rx_packet *rxpkt)
5153{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005154 int ret = 0, pktlen, rndlen;
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005155 unsigned char pkt[64];
5156 const socklen_t addrlen = get_addr_len(dstaddr);
Frédéric Lécailleeb791452022-05-24 16:01:39 +02005157 struct proxy *prx;
5158 struct quic_counters *prx_counters;
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005159
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005160 TRACE_ENTER(QUIC_EV_STATELESS_RST);
5161
Frédéric Lécailleeb791452022-05-24 16:01:39 +02005162 prx = l->bind_conf->frontend;
5163 prx_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe, &quic_stats_module);
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005164 /* 10.3 Stateless Reset (https://www.rfc-editor.org/rfc/rfc9000.html#section-10.3)
5165 * The resulting minimum size of 21 bytes does not guarantee that a Stateless
5166 * Reset is difficult to distinguish from other packets if the recipient requires
5167 * the use of a connection ID. To achieve that end, the endpoint SHOULD ensure
5168 * that all packets it sends are at least 22 bytes longer than the minimum
5169 * connection ID length that it requests the peer to include in its packets,
5170 * adding PADDING frames as necessary. This ensures that any Stateless Reset
5171 * sent by the peer is indistinguishable from a valid packet sent to the endpoint.
5172 * An endpoint that sends a Stateless Reset in response to a packet that is
5173 * 43 bytes or shorter SHOULD send a Stateless Reset that is one byte shorter
5174 * than the packet it responds to.
5175 */
5176
5177 /* Note that we build at most a 42 bytes QUIC packet to mimic a short packet */
5178 pktlen = rxpkt->len <= 43 ? rxpkt->len - 1 : 0;
5179 pktlen = QUIC_MAX(QUIC_STATELESS_RESET_PACKET_MINLEN, pktlen);
5180 rndlen = pktlen - QUIC_STATELESS_RESET_TOKEN_LEN;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005181
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005182 /* Put a header of random bytes */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005183 /* TODO: RAND_bytes() should be replaced */
5184 if (RAND_bytes(pkt, rndlen) != 1) {
5185 TRACE_ERROR("RAND_bytes() failed", QUIC_EV_STATELESS_RST);
5186 goto leave;
5187 }
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005188
5189 /* Clear the most significant bit, and set the second one */
5190 *pkt = (*pkt & ~0x80) | 0x40;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005191 if (!quic_stateless_reset_token_cpy(NULL, pkt + rndlen, QUIC_STATELESS_RESET_TOKEN_LEN,
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005192 rxpkt->dcid.data, rxpkt->dcid.len))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005193 goto leave;
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005194
Frédéric Lécailleeb791452022-05-24 16:01:39 +02005195 if (sendto(l->rx.fd, pkt, pktlen, 0, (struct sockaddr *)dstaddr, addrlen) < 0)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005196 goto leave;
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005197
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005198 ret = 1;
Frédéric Lécailleeb791452022-05-24 16:01:39 +02005199 HA_ATOMIC_INC(&prx_counters->stateless_reset_sent);
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005200 TRACE_PROTO("stateless reset sent", QUIC_EV_STATELESS_RST, NULL, &rxpkt->dcid);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005201 leave:
5202 TRACE_LEAVE(QUIC_EV_STATELESS_RST);
5203 return ret;
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005204}
5205
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005206/* QUIC server only function.
5207 * Add AAD to <add> buffer from <cid> connection ID and <addr> socket address.
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05005208 * This is the responsibility of the caller to check <aad> size is big enough
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005209 * to contain these data.
5210 * Return the number of bytes copied to <aad>.
5211 */
5212static int quic_generate_retry_token_aad(unsigned char *aad,
5213 uint32_t version,
5214 const struct quic_cid *cid,
5215 const struct sockaddr_storage *addr)
5216{
5217 unsigned char *p;
5218
5219 p = aad;
5220 memcpy(p, &version, sizeof version);
5221 p += sizeof version;
5222 p += quic_saddr_cpy(p, addr);
5223 memcpy(p, cid->data, cid->len);
5224 p += cid->len;
5225
5226 return p - aad;
5227}
5228
5229/* QUIC server only function.
5230 * Generate the token to be used in Retry packets. The token is written to
5231 * <buf> whith <len> as length. <odcid> is the original destination connection
5232 * ID and <dcid> is our side destination connection ID (or client source
5233 * connection ID).
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005234 * Returns the length of the encoded token or 0 on error.
5235 */
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005236static int quic_generate_retry_token(unsigned char *buf, size_t len,
5237 const uint32_t version,
5238 const struct quic_cid *odcid,
5239 const struct quic_cid *dcid,
5240 struct sockaddr_storage *addr)
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005241{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005242 int ret = 0;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005243 unsigned char *p;
5244 unsigned char aad[sizeof(uint32_t) + sizeof(in_port_t) +
5245 sizeof(struct in6_addr) + QUIC_HAP_CID_LEN];
5246 size_t aadlen;
5247 unsigned char salt[QUIC_RETRY_TOKEN_SALTLEN];
5248 unsigned char key[QUIC_TLS_KEY_LEN];
5249 unsigned char iv[QUIC_TLS_IV_LEN];
5250 const unsigned char *sec = (const unsigned char *)global.cluster_secret;
5251 size_t seclen = strlen(global.cluster_secret);
5252 EVP_CIPHER_CTX *ctx = NULL;
5253 const EVP_CIPHER *aead = EVP_aes_128_gcm();
5254 uint32_t timestamp = now_ms;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005255
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005256 TRACE_ENTER(QUIC_EV_CONN_TXPKT);
5257
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005258 /* We copy the odcid into the token, prefixed by its one byte
5259 * length, the format token byte. It is followed by an AEAD TAG, and finally
5260 * the random bytes used to derive the secret to encrypt the token.
5261 */
5262 if (1 + dcid->len + 1 + QUIC_TLS_TAG_LEN + sizeof salt > len)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005263 goto err;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005264
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005265 aadlen = quic_generate_retry_token_aad(aad, version, dcid, addr);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005266 /* TODO: RAND_bytes() should be replaced */
5267 if (RAND_bytes(salt, sizeof salt) != 1) {
5268 TRACE_ERROR("RAND_bytes()", QUIC_EV_CONN_TXPKT);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005269 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005270 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005271
5272 if (!quic_tls_derive_retry_token_secret(EVP_sha256(), key, sizeof key, iv, sizeof iv,
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005273 salt, sizeof salt, sec, seclen)) {
5274 TRACE_ERROR("quic_tls_derive_retry_token_secret() failed", QUIC_EV_CONN_TXPKT);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005275 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005276 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005277
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005278 if (!quic_tls_tx_ctx_init(&ctx, aead, key)) {
5279 TRACE_ERROR("quic_tls_tx_ctx_init() failed", QUIC_EV_CONN_TXPKT);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005280 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005281 }
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005282
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005283 /* Token build */
5284 p = buf;
5285 *p++ = QUIC_TOKEN_FMT_RETRY,
5286 *p++ = odcid->len;
5287 memcpy(p, odcid->data, odcid->len);
5288 p += odcid->len;
5289 write_u32(p, htonl(timestamp));
5290 p += sizeof timestamp;
5291
5292 /* Do not encrypt the QUIC_TOKEN_FMT_RETRY byte */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005293 if (!quic_tls_encrypt(buf + 1, p - buf - 1, aad, aadlen, ctx, aead, key, iv)) {
5294 TRACE_ERROR("quic_tls_encrypt() failed", QUIC_EV_CONN_TXPKT);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005295 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005296 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005297
5298 p += QUIC_TLS_TAG_LEN;
5299 memcpy(p, salt, sizeof salt);
5300 p += sizeof salt;
5301 EVP_CIPHER_CTX_free(ctx);
5302
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005303 ret = p - buf;
5304 leave:
5305 TRACE_LEAVE(QUIC_EV_CONN_TXPKT);
5306 return ret;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005307
5308 err:
5309 if (ctx)
5310 EVP_CIPHER_CTX_free(ctx);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005311 goto leave;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005312}
5313
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005314/* QUIC server only function.
5315 * Check the validity of the Retry token from <token> buffer with <tokenlen>
5316 * as length. If valid, the ODCID of <qc> QUIC connection will be put
5317 * into <odcid> connection ID. <dcid> is our side destination connection ID
5318 * of client source connection ID.
5319 * Return 1 if succeeded, 0 if not.
5320 */
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005321static int quic_retry_token_check(const unsigned char *token, size_t tokenlen,
5322 const struct quic_version *qv,
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005323 struct quic_cid *odcid,
5324 const struct quic_cid *dcid,
5325 struct quic_conn *qc,
5326 struct sockaddr_storage *addr)
5327{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005328 int ret = 0;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005329 unsigned char buf[128];
5330 unsigned char aad[sizeof(uint32_t) + sizeof(in_port_t) +
5331 sizeof(struct in6_addr) + QUIC_HAP_CID_LEN];
5332 size_t aadlen;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005333 const unsigned char *salt;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005334 unsigned char key[QUIC_TLS_KEY_LEN];
5335 unsigned char iv[QUIC_TLS_IV_LEN];
5336 const unsigned char *sec = (const unsigned char *)global.cluster_secret;
5337 size_t seclen = strlen(global.cluster_secret);
5338 EVP_CIPHER_CTX *ctx = NULL;
5339 const EVP_CIPHER *aead = EVP_aes_128_gcm();
5340
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005341 TRACE_ENTER(QUIC_EV_CONN_LPKT, qc);
5342
5343 if (sizeof buf < tokenlen) {
5344 TRACE_ERROR("too short buffer", QUIC_EV_CONN_LPKT, qc);
5345 goto err;
5346 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005347
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005348 aadlen = quic_generate_retry_token_aad(aad, qv->num, dcid, addr);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005349 salt = token + tokenlen - QUIC_RETRY_TOKEN_SALTLEN;
5350 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 +02005351 salt, QUIC_RETRY_TOKEN_SALTLEN, sec, seclen)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005352 TRACE_ERROR("Could not derive retry secret", QUIC_EV_CONN_LPKT, qc);
5353 goto err;
Frédéric Lécaille01d515e2022-06-07 11:39:00 +02005354 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005355
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005356 if (!quic_tls_rx_ctx_init(&ctx, aead, key)) {
5357 TRACE_ERROR("quic_tls_rx_ctx_init() failed", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005358 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005359 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005360
5361 /* Do not decrypt the QUIC_TOKEN_FMT_RETRY byte */
5362 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 +02005363 ctx, aead, key, iv)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005364 TRACE_ERROR("Could not decrypt retry token", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005365 goto err;
Frédéric Lécaille01d515e2022-06-07 11:39:00 +02005366 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005367
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005368 if (parse_retry_token(qc, buf, buf + tokenlen - QUIC_RETRY_TOKEN_SALTLEN - 1, odcid)) {
5369 TRACE_ERROR("Error during Initial token parsing", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005370 goto err;
5371 }
5372
5373 EVP_CIPHER_CTX_free(ctx);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005374
5375 ret = 1;
5376 leave:
5377 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc);
5378 return ret;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005379
5380 err:
5381 if (ctx)
5382 EVP_CIPHER_CTX_free(ctx);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005383 goto leave;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005384}
5385
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005386/* Generate a Retry packet and send it on <fd> socket to <addr> in response to
5387 * the Initial <pkt> packet.
5388 *
5389 * Returns 0 on success else non-zero.
5390 */
5391static int send_retry(int fd, struct sockaddr_storage *addr,
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005392 struct quic_rx_packet *pkt, const struct quic_version *qv)
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005393{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005394 int ret = 0;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005395 unsigned char buf[128];
5396 int i = 0, token_len;
5397 const socklen_t addrlen = get_addr_len(addr);
5398 struct quic_cid scid;
5399
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005400 TRACE_ENTER(QUIC_EV_CONN_TXPKT);
5401
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005402 /* long header + fixed bit + packet type QUIC_PACKET_TYPE_RETRY */
5403 buf[i++] = (QUIC_PACKET_LONG_HEADER_BIT | QUIC_PACKET_FIXED_BIT) |
5404 (quic_pkt_type(QUIC_PACKET_TYPE_RETRY, qv->num) << QUIC_PACKET_TYPE_SHIFT);
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005405 /* version */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005406 buf[i++] = *((unsigned char *)&qv->num + 3);
5407 buf[i++] = *((unsigned char *)&qv->num + 2);
5408 buf[i++] = *((unsigned char *)&qv->num + 1);
5409 buf[i++] = *(unsigned char *)&qv->num;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005410
5411 /* Use the SCID from <pkt> for Retry DCID. */
5412 buf[i++] = pkt->scid.len;
5413 memcpy(&buf[i], pkt->scid.data, pkt->scid.len);
5414 i += pkt->scid.len;
5415
5416 /* Generate a new CID to be used as SCID for the Retry packet. */
5417 scid.len = QUIC_HAP_CID_LEN;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005418 /* TODO: RAND_bytes() should be replaced */
5419 if (RAND_bytes(scid.data, scid.len) != 1) {
5420 TRACE_ERROR("RAND_bytes() failed", QUIC_EV_CONN_TXPKT);
5421 goto out;
5422 }
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005423
5424 buf[i++] = scid.len;
5425 memcpy(&buf[i], scid.data, scid.len);
5426 i += scid.len;
5427
5428 /* token */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005429 if (!(token_len = quic_generate_retry_token(&buf[i], sizeof(buf) - i, qv->num,
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005430 &pkt->dcid, &pkt->scid, addr))) {
5431 TRACE_ERROR("quic_generate_retry_token() failed", QUIC_EV_CONN_TXPKT);
5432 goto out;
5433 }
Frédéric Lécaillecc2764e2022-03-23 14:09:09 +01005434
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005435 i += token_len;
5436
5437 /* token integrity tag */
5438 if ((&buf[i] - buf < QUIC_TLS_TAG_LEN) ||
5439 !quic_tls_generate_retry_integrity_tag(pkt->dcid.data,
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005440 pkt->dcid.len, buf, i, qv)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005441 TRACE_ERROR("quic_tls_generate_retry_integrity_tag() failed", QUIC_EV_CONN_TXPKT);
5442 goto out;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005443 }
5444
5445 i += QUIC_TLS_TAG_LEN;
5446
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005447 if (sendto(fd, buf, i, 0, (struct sockaddr *)addr, addrlen) < 0) {
5448 TRACE_ERROR("quic_tls_generate_retry_integrity_tag() failed", QUIC_EV_CONN_TXPKT);
5449 goto out;
5450 }
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005451
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005452 ret = 1;
5453 out:
5454 TRACE_LEAVE(QUIC_EV_CONN_TXPKT);
5455 return !ret;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005456}
5457
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005458/* Retrieve a quic_conn instance from the <pkt> DCID field. If the packet is of
5459 * type INITIAL, the ODCID tree is first used. In this case, <saddr> is
5460 * concatenated to the <pkt> DCID field.
5461 *
5462 * Returns the instance or NULL if not found.
5463 */
Amaury Denoyelled6b16672021-12-23 10:37:19 +01005464static struct quic_conn *retrieve_qc_conn_from_cid(struct quic_rx_packet *pkt,
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005465 struct listener *l,
5466 struct sockaddr_storage *saddr)
5467{
5468 struct quic_conn *qc = NULL;
5469 struct ebmb_node *node;
5470 struct quic_connection_id *id;
Amaury Denoyelle250ac422021-12-22 11:29:05 +01005471 /* set if the quic_conn is found in the second DCID tree */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005472
5473 TRACE_ENTER(QUIC_EV_CONN_RXPKT);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005474
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005475 /* Look first into ODCIDs tree for INITIAL/0-RTT packets. */
5476 if (pkt->type == QUIC_PACKET_TYPE_INITIAL ||
5477 pkt->type == QUIC_PACKET_TYPE_0RTT) {
5478 /* DCIDs of first packets coming from multiple clients may have
5479 * the same values. Let's distinguish them by concatenating the
5480 * socket addresses.
5481 */
5482 quic_cid_saddr_cat(&pkt->dcid, saddr);
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01005483 node = ebmb_lookup(&quic_dghdlrs[tid].odcids, pkt->dcid.data,
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005484 pkt->dcid.len + pkt->dcid.addrlen);
5485 if (node) {
5486 qc = ebmb_entry(node, struct quic_conn, odcid_node);
5487 goto end;
5488 }
5489 }
5490
5491 /* Look into DCIDs tree for non-INITIAL/0-RTT packets. This may be used
5492 * also for INITIAL/0-RTT non-first packets with the final DCID in
5493 * used.
5494 */
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01005495 node = ebmb_lookup(&quic_dghdlrs[tid].cids, pkt->dcid.data, pkt->dcid.len);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005496 if (!node)
5497 goto end;
5498
5499 id = ebmb_entry(node, struct quic_connection_id, node);
5500 qc = id->qc;
Amaury Denoyelle250ac422021-12-22 11:29:05 +01005501
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005502 /* If found in DCIDs tree, remove the quic_conn from the ODCIDs tree.
5503 * If already done, this is a noop.
5504 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005505 if (qc)
Amaury Denoyelle250ac422021-12-22 11:29:05 +01005506 ebmb_delete(&qc->odcid_node);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005507
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005508 end:
5509 TRACE_ENTER(QUIC_EV_CONN_RXPKT, qc);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005510 return qc;
5511}
5512
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005513/* Try to allocate the <*ssl> SSL session object for <qc> QUIC connection
5514 * with <ssl_ctx> as SSL context inherited settings. Also set the transport
5515 * parameters of this session.
5516 * This is the responsibility of the caller to check the validity of all the
5517 * pointers passed as parameter to this function.
5518 * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <qc->conn> to
5519 * CO_ER_SSL_NO_MEM.
5520 */
5521static int qc_ssl_sess_init(struct quic_conn *qc, SSL_CTX *ssl_ctx, SSL **ssl,
5522 unsigned char *params, size_t params_len)
5523{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005524 int retry, ret = -1;
5525
5526 TRACE_ENTER(QUIC_EV_CONN_NEW, qc);
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005527
5528 retry = 1;
5529 retry:
5530 *ssl = SSL_new(ssl_ctx);
5531 if (!*ssl) {
5532 if (!retry--)
5533 goto err;
5534
5535 pool_gc(NULL);
5536 goto retry;
5537 }
5538
5539 if (!SSL_set_quic_method(*ssl, &ha_quic_method) ||
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005540 !SSL_set_ex_data(*ssl, ssl_qc_app_data_index, qc)) {
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005541 SSL_free(*ssl);
5542 *ssl = NULL;
5543 if (!retry--)
5544 goto err;
5545
5546 pool_gc(NULL);
5547 goto retry;
5548 }
5549
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005550 ret = 0;
5551 leave:
5552 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
5553 return ret;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005554
5555 err:
5556 qc->conn->err_code = CO_ER_SSL_NO_MEM;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005557 goto leave;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005558}
5559
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005560/* Finalize <qc> QUIC connection:
5561 * - initialize the Initial QUIC TLS context for negotiated version,
5562 * - derive the secrets for this context,
5563 * - encode the transport parameters to be sent,
5564 * - set them into the TLS stack,
5565 * - initialize ->max_ack_delay and max_idle_timeout,
5566 *
5567 * MUST be called after having received the remote transport parameters.
5568 * Return 1 if succeeded, 0 if not.
5569 */
5570int qc_conn_finalize(struct quic_conn *qc, int server)
5571{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005572 int ret = 0;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005573 struct quic_transport_params *tx_tp = &qc->tx.params;
5574 struct quic_transport_params *rx_tp = &qc->rx.params;
5575 const struct quic_version *ver;
5576
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005577 TRACE_ENTER(QUIC_EV_CONN_NEW, qc);
5578
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005579 if (tx_tp->version_information.negotiated_version &&
5580 tx_tp->version_information.negotiated_version != qc->original_version) {
5581 qc->negotiated_version =
5582 qc->tx.params.version_information.negotiated_version;
5583 if (!qc_new_isecs(qc, &qc->negotiated_ictx, qc->negotiated_version,
5584 qc->odcid.data, qc->odcid.len, !server))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005585 goto out;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005586
5587 ver = qc->negotiated_version;
5588 }
5589 else {
5590 ver = qc->original_version;
5591 }
5592
5593 qc->enc_params_len =
5594 quic_transport_params_encode(qc->enc_params,
5595 qc->enc_params + sizeof qc->enc_params,
5596 &qc->rx.params, ver, 1);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005597 if (!qc->enc_params_len) {
5598 TRACE_ERROR("quic_transport_params_encode() failed", QUIC_EV_CONN_TXPKT);
5599 goto out;
5600 }
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005601
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005602 if (!SSL_set_quic_transport_params(qc->xprt_ctx->ssl, qc->enc_params, qc->enc_params_len)) {
5603 TRACE_ERROR("SSL_set_quic_transport_params() failed", QUIC_EV_CONN_TXPKT);
5604 goto out;
5605 }
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005606
5607 if (tx_tp->max_ack_delay)
5608 qc->max_ack_delay = tx_tp->max_ack_delay;
5609
5610 if (tx_tp->max_idle_timeout && rx_tp->max_idle_timeout)
5611 qc->max_idle_timeout =
5612 QUIC_MIN(tx_tp->max_idle_timeout, rx_tp->max_idle_timeout);
5613 else
5614 qc->max_idle_timeout =
5615 QUIC_MAX(tx_tp->max_idle_timeout, rx_tp->max_idle_timeout);
5616
5617 TRACE_PROTO("\nTX(remote) transp. params.", QUIC_EV_TRANSP_PARAMS, qc, tx_tp);
5618
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005619 ret = 1;
5620 out:
5621 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
5622 return ret;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005623}
5624
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005625/* Allocate the ssl_sock_ctx from connection <qc>. This creates the tasklet
5626 * used to process <qc> received packets. The allocated context is stored in
5627 * <qc.xprt_ctx>.
5628 *
5629 * Returns 0 on success else non-zero.
5630 */
Frédéric Lécaille3fd92f62022-05-19 14:35:20 +02005631static int qc_conn_alloc_ssl_ctx(struct quic_conn *qc)
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005632{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005633 int ret = 0;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005634 struct bind_conf *bc = qc->li->bind_conf;
5635 struct ssl_sock_ctx *ctx = NULL;
5636
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005637 TRACE_ENTER(QUIC_EV_CONN_NEW, qc);
5638
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005639 ctx = pool_zalloc(pool_head_quic_conn_ctx);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005640 if (!ctx) {
5641 TRACE_ERROR("SSL context allocation failed", QUIC_EV_CONN_TXPKT);
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005642 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005643 }
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005644
5645 ctx->wait_event.tasklet = tasklet_new();
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005646 if (!ctx->wait_event.tasklet) {
5647 TRACE_ERROR("tasklet_new() failed", QUIC_EV_CONN_TXPKT);
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005648 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005649 }
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005650
5651 ctx->wait_event.tasklet->process = quic_conn_io_cb;
5652 ctx->wait_event.tasklet->context = ctx;
5653 ctx->wait_event.events = 0;
5654 ctx->subs = NULL;
5655 ctx->xprt_ctx = NULL;
5656 ctx->qc = qc;
5657
5658 /* Set tasklet tid based on the SCID selected by us for this
5659 * connection. The upper layer will also be binded on the same thread.
5660 */
Frédéric Lécaille220894a2022-01-26 18:04:50 +01005661 qc->tid = ctx->wait_event.tasklet->tid = quic_get_cid_tid(qc->scid.data);
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005662
5663 if (qc_is_listener(qc)) {
5664 if (qc_ssl_sess_init(qc, bc->initial_ctx, &ctx->ssl,
5665 qc->enc_params, qc->enc_params_len) == -1) {
5666 goto err;
5667 }
5668
5669 /* Enabling 0-RTT */
5670 if (bc->ssl_conf.early_data)
5671 SSL_set_quic_early_data_enabled(ctx->ssl, 1);
5672
5673 SSL_set_accept_state(ctx->ssl);
5674 }
5675
5676 ctx->xprt = xprt_get(XPRT_QUIC);
5677
5678 /* Store the allocated context in <qc>. */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02005679 qc->xprt_ctx = ctx;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005680
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005681 ret = 1;
5682 leave:
5683 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
5684 return !ret;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005685
5686 err:
5687 if (ctx && ctx->wait_event.tasklet)
5688 tasklet_free(ctx->wait_event.tasklet);
5689 pool_free(pool_head_quic_conn_ctx, ctx);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005690 goto leave;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005691}
5692
Frédéric Lécaillef6954c52022-05-21 14:42:21 +02005693/* Check that all the bytes between <buf> included and <end> address
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05005694 * excluded are null. This is the responsibility of the caller to
Frédéric Lécaillef6954c52022-05-21 14:42:21 +02005695 * check that there is at least one byte between <buf> end <end>.
5696 * Return 1 if this all the bytes are null, 0 if not.
5697 */
5698static inline int quic_padding_check(const unsigned char *buf,
5699 const unsigned char *end)
5700{
5701 while (buf < end && !*buf)
5702 buf++;
5703
5704 return buf == end;
5705}
5706
Frédéric Lécaille4646cf32022-04-27 15:09:53 +02005707/* Parse a QUIC packet from UDP datagram found in <buf> buffer with <end> the
5708 * end of this buffer past one byte and populate <pkt> RX packet structure
5709 * with the information collected from the packet.
5710 * This function sets ->len <pkt> field value to the end of the packet past one
5711 * byte to enable the caller to run this function again to continue to parse
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05005712 * the remaining QUIC packets carried by the datagram.
Frédéric Lécaille4646cf32022-04-27 15:09:53 +02005713 * Note that this function always sets this ->len value. If a paquet could
5714 * not be correctly found, ->len value will be set to the remaining number
5715 * bytes in the datagram to entirely consume this latter.
5716 */
5717static void qc_lstnr_pkt_rcv(unsigned char *buf, const unsigned char *end,
5718 struct quic_rx_packet *pkt, int first_pkt,
Frédéric Lécaille1b0707f2022-06-30 11:28:56 +02005719 struct quic_dgram *dgram, struct list **tasklist_head)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005720{
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005721 unsigned char *beg, *payload;
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01005722 struct quic_conn *qc, *qc_to_purge = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005723 struct listener *l;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005724 struct proxy *prx;
5725 struct quic_counters *prx_counters;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02005726 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005727 int drop_no_conn = 0, long_header = 0, io_cb_wakeup = 0;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005728 size_t b_cspace;
5729 struct quic_enc_level *qel;
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005730 uint32_t version;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005731 const struct quic_version *qv = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005732
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005733 TRACE_ENTER(QUIC_EV_CONN_LPKT);
5734
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005735 beg = buf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005736 qc = NULL;
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02005737 conn_ctx = NULL;
Frédéric Lécaillec4becf52021-11-08 11:23:17 +01005738 qel = NULL;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005739 l = dgram->owner;
5740 prx = l->bind_conf->frontend;
5741 prx_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe, &quic_stats_module);
Frédéric Lécaille8678eb02021-12-16 18:03:52 +01005742 /* This ist only to please to traces and distinguish the
5743 * packet with parsed packet number from others.
5744 */
5745 pkt->pn_node.key = (uint64_t)-1;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005746 if (end <= buf) {
5747 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
5748 goto drop;
5749 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005750
5751 /* Fixed bit */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005752 if (!(*buf & QUIC_PACKET_FIXED_BIT)) {
Frédéric Lécaillef6954c52022-05-21 14:42:21 +02005753 if (!first_pkt && quic_padding_check(buf, end)) {
5754 /* Some browsers may pad the remaining datagram space with null bytes.
5755 * That is what we called add padding out of QUIC packets. Such
5756 * datagrams must be considered as valid. But we can only consume
5757 * the remaining space.
5758 */
5759 pkt->len = end - buf;
5760 goto drop_no_conn;
5761 }
5762
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005763 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005764 goto drop;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005765 }
5766
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005767 /* Header form */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005768 if (!qc_parse_hd_form(pkt, &buf, end, &long_header, &version)) {
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005769 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
5770 goto drop;
5771 }
5772
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005773 if (long_header) {
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005774 uint64_t len;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005775 struct quic_cid odcid;
Frédéric Lécaille7629f5d2022-08-11 18:54:26 +02005776 const struct quic_cid *token_odcid = NULL; // ODCID received from client token
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005777
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005778 TRACE_PROTO("long header packet received", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005779 if (!quic_packet_read_long_header(&buf, end, pkt)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005780 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005781 goto drop;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005782 }
5783
Frédéric Lécaille3e266982022-04-27 15:37:28 +02005784 if (pkt->type == QUIC_PACKET_TYPE_0RTT && !l->bind_conf->ssl_conf.early_data) {
5785 TRACE_PROTO("0-RTT packet not supported", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005786 drop_no_conn = 1;
Frédéric Lécaille3e266982022-04-27 15:37:28 +02005787 }
5788 else if (pkt->type == QUIC_PACKET_TYPE_INITIAL &&
5789 dgram->len < QUIC_INITIAL_PACKET_MINLEN) {
Frédéric Lécaille87373e72022-04-27 11:42:08 +02005790 TRACE_PROTO("Too short datagram with an Initial packet", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille3ccea6d2022-05-23 22:54:54 +02005791 HA_ATOMIC_INC(&prx_counters->too_short_initial_dgram);
Frédéric Lécaillee7df68a2022-08-05 09:34:44 +02005792 goto drop;
Frédéric Lécaille87373e72022-04-27 11:42:08 +02005793 }
5794
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005795 /* When multiple QUIC packets are coalesced on the same UDP datagram,
5796 * they must have the same DCID.
5797 */
5798 if (!first_pkt &&
5799 (pkt->dcid.len != dgram->dcid_len ||
5800 memcmp(dgram->dcid, pkt->dcid.data, pkt->dcid.len))) {
5801 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005802 goto drop;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005803 }
5804
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005805 /* Retry of Version Negotiation packets are only sent by servers */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005806 if (pkt->type == QUIC_PACKET_TYPE_RETRY || !version) {
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005807 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005808 goto drop;
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005809 }
5810
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005811 /* RFC9000 6. Version Negotiation */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005812 qv = qc_supported_version(version);
5813 if (!qv) {
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005814 /* unsupported version, send Negotiation packet */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005815 if (send_version_negotiation(l->rx.fd, &dgram->saddr, pkt)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005816 TRACE_ERROR("VN packet not sent", QUIC_EV_CONN_LPKT);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005817 goto err;
5818 }
5819
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005820 TRACE_PROTO("VN packet sent", QUIC_EV_CONN_LPKT);
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005821 goto err;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005822 }
5823
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005824 /* For Initial packets, and for servers (QUIC clients connections),
5825 * there is no Initial connection IDs storage.
5826 */
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005827 if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02005828 uint64_t token_len;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02005829
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005830 if (!quic_dec_int(&token_len, (const unsigned char **)&buf, end) ||
5831 end - buf < token_len) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005832 TRACE_PROTO("Packet dropped",
5833 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005834 goto drop;
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01005835 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005836
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005837 /* TODO Retry should be automatically activated if
5838 * suspect network usage is detected.
5839 */
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02005840 if (global.cluster_secret && !token_len) {
5841 if (l->bind_conf->options & BC_O_QUIC_FORCE_RETRY) {
5842 TRACE_PROTO("Initial without token, sending retry",
5843 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
5844 if (send_retry(l->rx.fd, &dgram->saddr, pkt, qv)) {
5845 TRACE_PROTO("Error during Retry generation",
5846 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005847 goto err;
5848 }
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02005849
5850 HA_ATOMIC_INC(&prx_counters->retry_sent);
5851 goto err;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005852 }
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01005853 }
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02005854 else if (!global.cluster_secret && token_len) {
5855 /* Impossible case: a token was received without configured
5856 * cluster secret.
5857 */
5858 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT,
5859 NULL, NULL, NULL, qv);
5860 goto drop;
5861 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005862
5863 pkt->token = buf;
5864 pkt->token_len = token_len;
5865 buf += pkt->token_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005866 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005867 else if (pkt->type != QUIC_PACKET_TYPE_0RTT) {
Amaury Denoyelled4962512021-12-14 17:17:28 +01005868 if (pkt->dcid.len != QUIC_HAP_CID_LEN) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005869 TRACE_PROTO("Packet dropped",
5870 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005871 goto drop;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005872 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005873 }
5874
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005875 if (!quic_dec_int(&len, (const unsigned char **)&buf, end) ||
5876 end - buf < len) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005877 TRACE_PROTO("Packet dropped",
5878 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005879 goto drop;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02005880 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005881
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005882 payload = buf;
5883 pkt->len = len + payload - beg;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005884 if (drop_no_conn)
5885 goto drop_no_conn;
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005886
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005887 qc = retrieve_qc_conn_from_cid(pkt, l, &dgram->saddr);
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02005888 if (global.cluster_secret && pkt->token_len) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005889 if (*pkt->token == QUIC_TOKEN_FMT_RETRY) {
5890 const struct quic_version *ver = qc ? qc->original_version : qv;
5891 if (!quic_retry_token_check(pkt->token, pkt->token_len, ver, &odcid,
5892 &pkt->scid, qc, &dgram->saddr)) {
5893 HA_ATOMIC_INC(&prx_counters->retry_error);
5894 TRACE_PROTO("Wrong retry token",
5895 QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
5896 /* TODO: RFC 9000 8.1.2 A server SHOULD immediately close the connection
5897 * with an INVALID_TOKEN error.
5898 */
5899 goto drop;
5900 }
5901
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02005902 token_odcid = &odcid;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005903 HA_ATOMIC_INC(&prx_counters->retry_validated);
5904 }
5905 else {
5906 /* TODO: New token check */
5907 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
5908 goto drop;
5909 }
5910 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005911 if (!qc) {
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005912 int ipv4;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02005913 struct ebmb_node *n = NULL;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005914
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005915 if (pkt->type != QUIC_PACKET_TYPE_INITIAL) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005916 TRACE_PROTO("Non Initial packet", QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005917 goto drop;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005918 }
5919
Willy Tarreau787e92a2022-05-20 16:06:01 +02005920 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 +02005921 HA_ATOMIC_LOAD(&prx_counters->half_open_conn) >= global.tune.quic_retry_threshold) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005922 TRACE_PROTO("Initial without token, sending retry",
5923 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005924 if (send_retry(l->rx.fd, &dgram->saddr, pkt, qv)) {
Frédéric Lécaille59507de2022-08-11 12:14:07 +02005925 TRACE_ERROR("Error during Retry generation",
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005926 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécailledfd13012022-05-20 16:37:36 +02005927 goto err;
5928 }
5929
5930 HA_ATOMIC_INC(&prx_counters->retry_sent);
5931 goto err;
5932 }
5933
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005934 /* RFC 9000 7.2. Negotiating Connection IDs:
5935 * When an Initial packet is sent by a client that has not previously
5936 * received an Initial or Retry packet from the server, the client
5937 * populates the Destination Connection ID field with an unpredictable
5938 * value. This Destination Connection ID MUST be at least 8 bytes in length.
5939 */
Frédéric Lécailledc364042022-01-27 16:51:54 +01005940 if (pkt->dcid.len < QUIC_ODCID_MINLEN) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005941 TRACE_PROTO("dropped packet",
5942 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005943 goto drop;
Frédéric Lécailledc364042022-01-27 16:51:54 +01005944 }
5945
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005946 pkt->saddr = dgram->saddr;
5947 ipv4 = dgram->saddr.ss_family == AF_INET;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005948
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02005949 qc = qc_new_conn(qv, ipv4, &pkt->dcid, &pkt->scid, token_odcid,
Frédéric Lécaille748ece62022-05-21 23:58:40 +02005950 &pkt->saddr, 1, !!pkt->token_len, l);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02005951 if (qc == NULL)
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005952 goto drop;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005953
Frédéric Lécailleeb791452022-05-24 16:01:39 +02005954 HA_ATOMIC_INC(&prx_counters->half_open_conn);
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02005955 /* Insert the DCID the QUIC client has chosen (only for listeners) */
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01005956 n = ebmb_insert(&quic_dghdlrs[tid].odcids, &qc->odcid_node,
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01005957 qc->odcid.len + qc->odcid.addrlen);
Frédéric Lécaille8370c932021-11-08 17:01:46 +01005958
Amaury Denoyelleaff4ec82021-11-24 15:16:08 +01005959 /* If the insertion failed, it means that another
5960 * thread has already allocated a QUIC connection for
5961 * the same CID. Liberate our allocated connection.
5962 */
5963 if (unlikely(n != &qc->odcid_node)) {
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01005964 qc_to_purge = qc;
5965
Amaury Denoyelleaff4ec82021-11-24 15:16:08 +01005966 qc = ebmb_entry(n, struct quic_conn, odcid_node);
5967 pkt->qc = qc;
5968 }
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01005969
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01005970 if (likely(!qc_to_purge)) {
Frédéric Lécaille8370c932021-11-08 17:01:46 +01005971 /* Enqueue this packet. */
Frédéric Lécaillef67b3562021-11-15 16:21:40 +01005972 pkt->qc = qc;
Frédéric Lécaille8370c932021-11-08 17:01:46 +01005973 }
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01005974 else {
Frédéric Lécaillef293b692022-03-08 16:59:54 +01005975 quic_conn_release(qc_to_purge);
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01005976 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005977 }
5978 else {
Frédéric Lécaille8370c932021-11-08 17:01:46 +01005979 pkt->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005980 }
5981 }
5982 else {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005983 TRACE_PROTO("short header packet received", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005984 if (end - buf < QUIC_HAP_CID_LEN) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005985 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005986 goto drop;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005987 }
5988
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005989 memcpy(pkt->dcid.data, buf, QUIC_HAP_CID_LEN);
Amaury Denoyelleadb22762021-12-14 15:04:14 +01005990 pkt->dcid.len = QUIC_HAP_CID_LEN;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005991
5992 /* When multiple QUIC packets are coalesced on the same UDP datagram,
5993 * they must have the same DCID.
5994 */
5995 if (!first_pkt &&
5996 (pkt->dcid.len != dgram->dcid_len ||
5997 memcmp(dgram->dcid, pkt->dcid.data, pkt->dcid.len))) {
5998 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005999 goto drop;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006000 }
6001
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01006002 buf += QUIC_HAP_CID_LEN;
6003
6004 /* A short packet is the last one of a UDP datagram. */
6005 payload = buf;
6006 pkt->len = end - beg;
Amaury Denoyelleadb22762021-12-14 15:04:14 +01006007
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006008 qc = retrieve_qc_conn_from_cid(pkt, l, &dgram->saddr);
Frédéric Lécaille4d118d62021-12-21 14:48:58 +01006009 if (!qc) {
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01006010 size_t pktlen = end - buf;
Frédéric Lécaille4d118d62021-12-21 14:48:58 +01006011 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, NULL, pkt, &pktlen);
Frédéric Lécailleeb791452022-05-24 16:01:39 +02006012 if (global.cluster_secret && !send_stateless_reset(l, &dgram->saddr, pkt))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006013 TRACE_ERROR("stateless reset not sent", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006014 goto drop;
Frédéric Lécaille4d118d62021-12-21 14:48:58 +01006015 }
6016
Frédéric Lécaille8370c932021-11-08 17:01:46 +01006017 pkt->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006018 }
6019
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02006020 if (qc->flags & QUIC_FL_CONN_CLOSING) {
6021 if (++qc->nb_pkt_since_cc >= qc->nb_pkt_for_cc) {
6022 qc->flags |= QUIC_FL_CONN_IMMEDIATE_CLOSE;
6023 qc->nb_pkt_for_cc++;
6024 qc->nb_pkt_since_cc = 0;
6025 }
6026 /* Skip the entire datagram */
6027 pkt->len = end - beg;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006028 TRACE_STATE("Closing state connection",
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006029 QUIC_EV_CONN_LPKT, pkt->qc, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006030 goto drop;
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02006031 }
Amaury Denoyelleadb22762021-12-14 15:04:14 +01006032
6033 /* When multiple QUIC packets are coalesced on the same UDP datagram,
6034 * they must have the same DCID.
6035 *
6036 * This check must be done after the final update to pkt.len to
6037 * properly drop the packet on failure.
6038 */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006039 if (first_pkt && !quic_peer_validated_addr(qc) &&
Frédéric Lécaillefc790062022-03-28 17:10:31 +02006040 qc->flags & QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED) {
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006041 TRACE_PROTO("PTO timer must be armed after anti-amplication was reached",
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006042 QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006043 /* Reset the anti-amplification bit. It will be set again
6044 * when sending the next packet if reached again.
6045 */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02006046 qc->flags &= ~QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED;
6047 qc->flags |= QUIC_FL_CONN_IO_CB_WAKEUP;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006048 io_cb_wakeup = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006049 }
Amaury Denoyelleadb22762021-12-14 15:04:14 +01006050
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006051 dgram->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006052
Amaury Denoyelle72d86502022-07-13 15:08:23 +02006053 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006054 TRACE_PROTO("Connection error",
6055 QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006056 goto out;
6057 }
6058
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01006059 pkt->raw_len = pkt->len;
Frédéric Lécailled61bc8d2021-12-02 14:46:19 +01006060 quic_rx_pkts_del(qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01006061 b_cspace = b_contig_space(&qc->rx.buf);
6062 if (b_cspace < pkt->len) {
Amaury Denoyelle80d05722022-05-16 18:13:56 +02006063 /* Do not consume buf if space not at the end. */
6064 if (b_tail(&qc->rx.buf) + b_cspace < b_wrap(&qc->rx.buf)) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006065 TRACE_PROTO("Packet dropped",
6066 QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
Frédéric Lécaille45a16292022-06-29 12:03:34 +02006067 HA_ATOMIC_INC(&prx_counters->dropped_pkt_bufoverrun);
6068 goto drop_no_conn;
Amaury Denoyelle80d05722022-05-16 18:13:56 +02006069 }
6070
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01006071 /* Let us consume the remaining contiguous space. */
Frédéric Lécailled61bc8d2021-12-02 14:46:19 +01006072 if (b_cspace) {
6073 b_putchr(&qc->rx.buf, 0x00);
6074 b_cspace--;
6075 }
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01006076 b_add(&qc->rx.buf, b_cspace);
6077 if (b_contig_space(&qc->rx.buf) < pkt->len) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006078 TRACE_PROTO("Too big packet",
6079 QUIC_EV_CONN_LPKT, qc, pkt, &pkt->len, qv);
Frédéric Lécaille45a16292022-06-29 12:03:34 +02006080 HA_ATOMIC_INC(&prx_counters->dropped_pkt_bufoverrun);
6081 goto drop_no_conn;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01006082 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006083 }
6084
Frédéric Lécaille99897d12022-08-08 10:28:07 +02006085 if (!qc_try_rm_hp(qc, pkt, payload, beg, &qel)) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006086 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006087 goto drop;
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02006088 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006089
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006090 TRACE_DATA("New packet", QUIC_EV_CONN_LPKT, qc, pkt, NULL, qv);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01006091 if (pkt->aad_len)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006092 qc_pkt_insert(qc, pkt, qel);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006093 out:
Frédéric Lécaille01abc462021-07-21 09:34:27 +02006094 /* Wake up the connection packet handler task from here only if all
6095 * the contexts have been initialized, especially the mux context
6096 * conn_ctx->conn->ctx. Note that this is ->start xprt callback which
6097 * will start it if these contexts for the connection are not already
6098 * initialized.
6099 */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02006100 conn_ctx = qc->xprt_ctx;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01006101 if (conn_ctx)
Frédéric Lécaille1b0707f2022-06-30 11:28:56 +02006102 *tasklist_head = tasklet_wakeup_after(*tasklist_head, conn_ctx->wait_event.tasklet);
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02006103
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006104 drop_no_conn:
6105 if (drop_no_conn)
6106 HA_ATOMIC_INC(&prx_counters->dropped_pkt);
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006107 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc ? qc : NULL, pkt, NULL, qv);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006108
Frédéric Lécaille4646cf32022-04-27 15:09:53 +02006109 return;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006110
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006111 drop:
6112 HA_ATOMIC_INC(&prx_counters->dropped_pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006113 err:
Frédéric Lécaille6b663152022-01-04 17:03:11 +01006114 /* Wakeup the I/O handler callback if the PTO timer must be armed.
6115 * This cannot be done by this thread.
6116 */
6117 if (io_cb_wakeup) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02006118 conn_ctx = qc->xprt_ctx;
Frédéric Lécaille6b663152022-01-04 17:03:11 +01006119 if (conn_ctx && conn_ctx->wait_event.tasklet)
6120 tasklet_wakeup(conn_ctx->wait_event.tasklet);
6121 }
Frédéric Lécaillef7ef9762021-12-31 16:37:58 +01006122 /* If length not found, consume the entire datagram */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01006123 if (!pkt->len)
6124 pkt->len = end - beg;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006125 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc ? qc : NULL, pkt, NULL, qv);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006126}
6127
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006128/* This function builds into <buf> buffer a QUIC long packet header.
6129 * Return 1 if enough room to build this header, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006130 */
6131static int quic_build_packet_long_header(unsigned char **buf, const unsigned char *end,
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006132 int type, size_t pn_len,
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006133 struct quic_conn *qc, const struct quic_version *ver)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006134{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006135 int ret = 0;
6136
6137 TRACE_ENTER(QUIC_EV_CONN_LPKT, qc);
6138
6139 if (end - *buf < sizeof ver->num + qc->dcid.len + qc->scid.len + 3) {
6140 TRACE_DEVEL("not enough room", QUIC_EV_CONN_LPKT, qc);
6141 goto leave;
6142 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006143
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006144 type = quic_pkt_type(type, ver->num);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006145 /* #0 byte flags */
6146 *(*buf)++ = QUIC_PACKET_FIXED_BIT | QUIC_PACKET_LONG_HEADER_BIT |
6147 (type << QUIC_PACKET_TYPE_SHIFT) | (pn_len - 1);
6148 /* Version */
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006149 quic_write_uint32(buf, end, ver->num);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006150 *(*buf)++ = qc->dcid.len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006151 /* Destination connection ID */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006152 if (qc->dcid.len) {
6153 memcpy(*buf, qc->dcid.data, qc->dcid.len);
6154 *buf += qc->dcid.len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006155 }
6156 /* Source connection ID */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006157 *(*buf)++ = qc->scid.len;
6158 if (qc->scid.len) {
6159 memcpy(*buf, qc->scid.data, qc->scid.len);
6160 *buf += qc->scid.len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006161 }
6162
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006163 ret = 1;
6164 leave:
6165 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc);
6166 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006167}
6168
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006169/* This function builds into <buf> buffer a QUIC short packet header.
6170 * Return 1 if enough room to build this header, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006171 */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006172static int quic_build_packet_short_header(unsigned char **buf, const unsigned char *end,
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006173 size_t pn_len, struct quic_conn *qc,
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006174 unsigned char tls_flags)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006175{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006176 int ret = 0;
6177
6178 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
6179
6180 if (end - *buf < 1 + qc->dcid.len) {
6181 TRACE_DEVEL("not enough room", QUIC_EV_CONN_LPKT, qc);
6182 goto leave;
6183 }
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006184
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006185 /* #0 byte flags */
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01006186 *(*buf)++ = QUIC_PACKET_FIXED_BIT |
6187 ((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 +01006188 /* Destination connection ID */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006189 if (qc->dcid.len) {
6190 memcpy(*buf, qc->dcid.data, qc->dcid.len);
6191 *buf += qc->dcid.len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006192 }
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006193
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006194 ret = 1;
6195 leave:
6196 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
6197 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006198}
6199
6200/* Apply QUIC header protection to the packet with <buf> as first byte address,
6201 * <pn> as address of the Packet number field, <pnlen> being this field length
6202 * with <aead> as AEAD cipher and <key> as secret key.
6203 * Returns 1 if succeeded or 0 if failed.
6204 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006205static int quic_apply_header_protection(struct quic_conn *qc,
6206 unsigned char *buf, unsigned char *pn, size_t pnlen,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006207 const EVP_CIPHER *aead, const unsigned char *key)
6208{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006209 int i, outlen, ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006210 EVP_CIPHER_CTX *ctx;
6211 /* We need an IV of at least 5 bytes: one byte for bytes #0
6212 * and at most 4 bytes for the packet number
6213 */
6214 unsigned char mask[5] = {0};
6215
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006216 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
6217
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006218 ctx = EVP_CIPHER_CTX_new();
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006219 if (!ctx) {
6220 TRACE_ERROR("cipher context allocation failed", QUIC_EV_CONN_TXPKT, qc);
6221 goto out;
6222 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006223
6224 if (!EVP_EncryptInit_ex(ctx, aead, NULL, key, pn + QUIC_PACKET_PN_MAXLEN) ||
6225 !EVP_EncryptUpdate(ctx, mask, &outlen, mask, sizeof mask) ||
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006226 !EVP_EncryptFinal_ex(ctx, mask, &outlen)) {
6227 TRACE_ERROR("cipher context allocation failed", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006228 goto out;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006229 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006230
6231 *buf ^= mask[0] & (*buf & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f);
6232 for (i = 0; i < pnlen; i++)
6233 pn[i] ^= mask[i + 1];
6234
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006235 EVP_CIPHER_CTX_free(ctx);
6236
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006237 ret = 1;
6238 out:
6239 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006240 return ret;
6241}
6242
6243/* Reduce the encoded size of <ack_frm> ACK frame removing the last
6244 * ACK ranges if needed to a value below <limit> in bytes.
6245 * Return 1 if succeeded, 0 if not.
6246 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006247static int quic_ack_frm_reduce_sz(struct quic_conn *qc,
6248 struct quic_frame *ack_frm, size_t limit)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006249{
6250 size_t room, ack_delay_sz;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006251 int ret = 0;
6252
6253 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006254
6255 ack_delay_sz = quic_int_getsize(ack_frm->tx_ack.ack_delay);
6256 /* A frame is made of 1 byte for the frame type. */
6257 room = limit - ack_delay_sz - 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006258 if (!quic_rm_last_ack_ranges(qc, ack_frm->tx_ack.arngs, room))
6259 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006260
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006261 ret = 1 + ack_delay_sz + ack_frm->tx_ack.arngs->enc_sz;
6262 leave:
6263 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
6264 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006265}
6266
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006267/* Prepare into <outlist> as most as possible ack-eliciting frame from their
6268 * <inlist> prebuilt frames for <qel> encryption level to be encoded in a buffer
6269 * with <room> as available room, and <*len> the packet Length field initialized
6270 * with the number of bytes already present in this buffer which must be taken
6271 * into an account for the Length packet field value. <headlen> is the number of
6272 * bytes already present in this packet before building frames.
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006273 *
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006274 * Update consequently <*len> to reflect the size of these frames built
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006275 * by this function. Also attach these frames to <l> frame list.
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006276 * 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 +01006277 */
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006278static inline int qc_build_frms(struct list *outlist, struct list *inlist,
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006279 size_t room, size_t *len, size_t headlen,
6280 struct quic_enc_level *qel,
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006281 struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006282{
Frédéric Lécailleea604992020-12-24 13:01:37 +01006283 int ret;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01006284 struct quic_frame *cf, *cfbak;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006285
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006286 TRACE_ENTER(QUIC_EV_CONN_BCFRMS, qc);
6287
Frédéric Lécailleea604992020-12-24 13:01:37 +01006288 ret = 0;
Frédéric Lécaillef4e5a7c2022-01-17 17:56:20 +01006289 if (*len > room)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006290 goto leave;
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006291
Frédéric Lécailleea604992020-12-24 13:01:37 +01006292 /* If we are not probing we must take into an account the congestion
6293 * control window.
6294 */
Frédéric Lécaillef4e5a7c2022-01-17 17:56:20 +01006295 if (!qel->pktns->tx.pto_probe) {
6296 size_t remain = quic_path_prep_data(qc->path);
6297
6298 if (headlen > remain)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006299 goto leave;
Frédéric Lécaillef4e5a7c2022-01-17 17:56:20 +01006300
6301 room = QUIC_MIN(room, remain - headlen);
6302 }
6303
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006304 TRACE_PROTO("************** frames build (headlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006305 QUIC_EV_CONN_BCFRMS, qc, &headlen);
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006306
6307 /* NOTE: switch/case block inside a loop, a successful status must be
6308 * returned by this function only if at least one frame could be built
6309 * in the switch/case block.
6310 */
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006311 list_for_each_entry_safe(cf, cfbak, inlist, list) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006312 /* header length, data length, frame length. */
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006313 size_t hlen, dlen, dlen_sz, avail_room, flen;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006314
Frédéric Lécailleea604992020-12-24 13:01:37 +01006315 if (!room)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006316 break;
6317
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006318 switch (cf->type) {
6319 case QUIC_FT_CRYPTO:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006320 TRACE_DEVEL(" New CRYPTO frame build (room, len)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006321 QUIC_EV_CONN_BCFRMS, qc, &room, len);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006322 /* Compute the length of this CRYPTO frame header */
6323 hlen = 1 + quic_int_getsize(cf->crypto.offset);
6324 /* Compute the data length of this CRyPTO frame. */
6325 dlen = max_stream_data_size(room, *len + hlen, cf->crypto.len);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006326 TRACE_DEVEL(" CRYPTO data length (hlen, crypto.len, dlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006327 QUIC_EV_CONN_BCFRMS, qc, &hlen, &cf->crypto.len, &dlen);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006328 if (!dlen)
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006329 continue;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006330
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006331 /* CRYPTO frame length. */
6332 flen = hlen + quic_int_getsize(dlen) + dlen;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006333 TRACE_DEVEL(" CRYPTO frame length (flen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006334 QUIC_EV_CONN_BCFRMS, qc, &flen);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006335 /* Add the CRYPTO data length and its encoded length to the packet
6336 * length and the length of this length.
6337 */
6338 *len += flen;
6339 room -= flen;
6340 if (dlen == cf->crypto.len) {
6341 /* <cf> CRYPTO data have been consumed. */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01006342 LIST_DELETE(&cf->list);
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006343 LIST_APPEND(outlist, &cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006344 }
6345 else {
6346 struct quic_frame *new_cf;
6347
Frédéric Lécailleb9171912022-04-21 17:32:10 +02006348 new_cf = pool_zalloc(pool_head_quic_frame);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006349 if (!new_cf) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006350 TRACE_ERROR("No memory for new crypto frame", QUIC_EV_CONN_BCFRMS, qc);
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006351 continue;
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006352 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006353
Frédéric Lécailleb9171912022-04-21 17:32:10 +02006354 LIST_INIT(&new_cf->reflist);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006355 new_cf->type = QUIC_FT_CRYPTO;
6356 new_cf->crypto.len = dlen;
6357 new_cf->crypto.offset = cf->crypto.offset;
6358 new_cf->crypto.qel = qel;
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006359 LIST_APPEND(outlist, &new_cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006360 /* Consume <dlen> bytes of the current frame. */
6361 cf->crypto.len -= dlen;
6362 cf->crypto.offset += dlen;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006363 }
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006364 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006365
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006366 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02006367 if (cf->flags & QUIC_FL_TX_FRAME_LOST) {
6368 struct eb64_node *node = NULL;
6369 struct qc_stream_desc *stream_desc = NULL;
6370 struct quic_stream *strm = &cf->stream;
6371
6372 /* As this frame has been already lost, ensure the stream is always
6373 * available or the range of this frame is not consumed before
6374 * resending it.
6375 */
6376 node = eb64_lookup(&qc->streams_by_id, strm->id);
6377 if (!node) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006378 TRACE_DEVEL("released stream", QUIC_EV_CONN_PRSAFRM, qc, cf);
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02006379 LIST_DELETE(&cf->list);
6380 pool_free(pool_head_quic_frame, cf);
6381 continue;
6382 }
6383
6384 stream_desc = eb64_entry(node, struct qc_stream_desc, by_id);
6385 if (strm->offset.key + strm->len <= stream_desc->ack_offset) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006386 TRACE_DEVEL("ignored frame frame in already acked range",
Frédéric Lécaillefdc1b962022-05-31 12:04:42 +02006387 QUIC_EV_CONN_PRSAFRM, qc, cf);
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02006388 LIST_DELETE(&cf->list);
6389 pool_free(pool_head_quic_frame, cf);
6390 continue;
6391 }
6392 else if (strm->offset.key < stream_desc->ack_offset) {
6393 strm->offset.key = stream_desc->ack_offset;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006394 TRACE_DEVEL("updated partially acked frame",
Frédéric Lécaillefdc1b962022-05-31 12:04:42 +02006395 QUIC_EV_CONN_PRSAFRM, qc, cf);
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02006396 }
6397 }
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006398 /* Note that these frames are accepted in short packets only without
6399 * "Length" packet field. Here, <*len> is used only to compute the
6400 * sum of the lengths of the already built frames for this packet.
Frédéric Lécailled8b84432021-12-10 15:18:36 +01006401 *
6402 * Compute the length of this STREAM frame "header" made a all the field
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006403 * excepting the variable ones. Note that +1 is for the type of this frame.
6404 */
6405 hlen = 1 + quic_int_getsize(cf->stream.id) +
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02006406 ((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 +02006407 /* Compute the data length of this STREAM frame. */
6408 avail_room = room - hlen - *len;
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006409 if ((ssize_t)avail_room <= 0)
6410 continue;
6411
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006412 TRACE_DEVEL(" New STREAM frame build (room, len)",
Frédéric Lécailleadc76412022-08-08 16:09:46 +02006413 QUIC_EV_CONN_BCFRMS, qc, &room, len);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006414 if (cf->type & QUIC_STREAM_FRAME_TYPE_LEN_BIT) {
6415 dlen = max_available_room(avail_room, &dlen_sz);
6416 if (dlen > cf->stream.len) {
6417 dlen = cf->stream.len;
6418 }
6419 dlen_sz = quic_int_getsize(dlen);
6420 flen = hlen + dlen_sz + dlen;
6421 }
6422 else {
Frédéric Lécaille628e89c2022-06-24 12:13:53 +02006423 dlen = QUIC_MIN((uint64_t)avail_room, cf->stream.len);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006424 flen = hlen + dlen;
6425 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006426 TRACE_DEVEL(" STREAM data length (hlen, stream.len, dlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006427 QUIC_EV_CONN_BCFRMS, qc, &hlen, &cf->stream.len, &dlen);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006428 TRACE_DEVEL(" STREAM frame length (flen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006429 QUIC_EV_CONN_BCFRMS, qc, &flen);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006430 /* Add the STREAM data length and its encoded length to the packet
6431 * length and the length of this length.
6432 */
6433 *len += flen;
6434 room -= flen;
6435 if (dlen == cf->stream.len) {
6436 /* <cf> STREAM data have been consumed. */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01006437 LIST_DELETE(&cf->list);
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006438 LIST_APPEND(outlist, &cf->list);
Amaury Denoyelle54445d02022-03-10 16:44:14 +01006439
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02006440 /* The MUX stream might be released at this
6441 * stage. This can most notably happen on
6442 * retransmission.
6443 */
6444 if (qc->mux_state == QC_MUX_READY &&
6445 !cf->stream.stream->release) {
6446 qcc_streams_sent_done(cf->stream.stream->ctx,
6447 cf->stream.len,
6448 cf->stream.offset.key);
6449 }
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006450 }
6451 else {
6452 struct quic_frame *new_cf;
Amaury Denoyelle642ab062022-02-23 10:54:42 +01006453 struct buffer cf_buf;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006454
6455 new_cf = pool_zalloc(pool_head_quic_frame);
6456 if (!new_cf) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006457 TRACE_ERROR("No memory for new STREAM frame", QUIC_EV_CONN_BCFRMS, qc);
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006458 continue;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006459 }
6460
Frédéric Lécailleb9171912022-04-21 17:32:10 +02006461 LIST_INIT(&new_cf->reflist);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006462 new_cf->type = cf->type;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02006463 new_cf->stream.stream = cf->stream.stream;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02006464 new_cf->stream.buf = cf->stream.buf;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006465 new_cf->stream.id = cf->stream.id;
6466 if (cf->type & QUIC_STREAM_FRAME_TYPE_OFF_BIT)
6467 new_cf->stream.offset = cf->stream.offset;
6468 new_cf->stream.len = dlen;
6469 new_cf->type |= QUIC_STREAM_FRAME_TYPE_LEN_BIT;
6470 /* FIN bit reset */
6471 new_cf->type &= ~QUIC_STREAM_FRAME_TYPE_FIN_BIT;
6472 new_cf->stream.data = cf->stream.data;
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006473 LIST_APPEND(outlist, &new_cf->list);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006474 cf->type |= QUIC_STREAM_FRAME_TYPE_OFF_BIT;
6475 /* Consume <dlen> bytes of the current frame. */
Amaury Denoyelle642ab062022-02-23 10:54:42 +01006476 cf_buf = b_make(b_orig(cf->stream.buf),
6477 b_size(cf->stream.buf),
6478 (char *)cf->stream.data - b_orig(cf->stream.buf), 0);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006479 cf->stream.len -= dlen;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02006480 cf->stream.offset.key += dlen;
Amaury Denoyelle642ab062022-02-23 10:54:42 +01006481 cf->stream.data = (unsigned char *)b_peek(&cf_buf, dlen);
Amaury Denoyelle54445d02022-03-10 16:44:14 +01006482
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02006483 /* The MUX stream might be released at this
6484 * stage. This can most notably happen on
6485 * retransmission.
6486 */
6487 if (qc->mux_state == QC_MUX_READY &&
6488 !cf->stream.stream->release) {
6489 qcc_streams_sent_done(new_cf->stream.stream->ctx,
6490 new_cf->stream.len,
6491 new_cf->stream.offset.key);
6492 }
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006493 }
Amaury Denoyelle54445d02022-03-10 16:44:14 +01006494
6495 /* TODO the MUX is notified about the frame sending via
6496 * previous qcc_streams_sent_done call. However, the
6497 * sending can fail later, for example if the sendto
6498 * system call returns an error. As the MUX has been
6499 * notified, the transport layer is responsible to
6500 * bufferize and resent the announced data later.
6501 */
6502
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006503 break;
6504
6505 default:
6506 flen = qc_frm_len(cf);
6507 BUG_ON(!flen);
6508 if (flen > room)
6509 continue;
6510
6511 *len += flen;
6512 room -= flen;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01006513 LIST_DELETE(&cf->list);
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006514 LIST_APPEND(outlist, &cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006515 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006516 }
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006517
6518 /* Successful status as soon as a frame could be built */
Frédéric Lécailleea604992020-12-24 13:01:37 +01006519 ret = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006520 }
6521
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006522 leave:
6523 TRACE_LEAVE(QUIC_EV_CONN_BCFRMS, qc);
Frédéric Lécailleea604992020-12-24 13:01:37 +01006524 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006525}
6526
Amaury Denoyelle0933c7b2022-07-18 14:11:50 +02006527/* Generate a CONNECTION_CLOSE frame for <qc> on <qel> encryption level. <out>
6528 * is used as return parameter and should be zero'ed by the caller.
6529 */
6530static void qc_build_cc_frm(struct quic_conn *qc, struct quic_enc_level *qel,
6531 struct quic_frame *out)
6532{
6533 /* TODO improve CONNECTION_CLOSE on Initial/Handshake encryption levels
6534 *
6535 * A CONNECTION_CLOSE frame should be sent in several packets with
6536 * different encryption levels depending on the client context. This is
6537 * to ensure that the client can decrypt it. See RFC 9000 10.2.3 for
6538 * more details on how to implement it.
6539 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006540 TRACE_ENTER(QUIC_EV_CONN_BFRM, qc);
6541
Amaury Denoyelle0933c7b2022-07-18 14:11:50 +02006542
6543 if (qc->err.app) {
6544 if (unlikely(qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL] ||
6545 qel == &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE])) {
6546 /* RFC 9000 10.2.3. Immediate Close during the Handshake
6547 *
6548 * Sending a CONNECTION_CLOSE of type 0x1d in an Initial or Handshake
6549 * packet could expose application state or be used to alter application
6550 * state. A CONNECTION_CLOSE of type 0x1d MUST be replaced by a
6551 * CONNECTION_CLOSE of type 0x1c when sending the frame in Initial or
6552 * Handshake packets. Otherwise, information about the application
6553 * state might be revealed. Endpoints MUST clear the value of the
6554 * Reason Phrase field and SHOULD use the APPLICATION_ERROR code when
6555 * converting to a CONNECTION_CLOSE of type 0x1c.
6556 */
6557 out->type = QUIC_FT_CONNECTION_CLOSE;
6558 out->connection_close.error_code = QC_ERR_APPLICATION_ERROR;
6559 out->connection_close.reason_phrase_len = 0;
6560 }
6561 else {
6562 out->type = QUIC_FT_CONNECTION_CLOSE_APP;
6563 out->connection_close.error_code = qc->err.code;
6564 }
6565 }
6566 else {
6567 out->type = QUIC_FT_CONNECTION_CLOSE;
6568 out->connection_close.error_code = qc->err.code;
6569 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006570 TRACE_LEAVE(QUIC_EV_CONN_BFRM, qc);
6571
Amaury Denoyelle0933c7b2022-07-18 14:11:50 +02006572}
6573
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006574/* This function builds a clear packet from <pkt> information (its type)
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006575 * into a buffer with <pos> as position pointer and <qel> as QUIC TLS encryption
6576 * level for <conn> QUIC connection and <qel> as QUIC TLS encryption level,
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01006577 * filling the buffer with as much frames as possible from <frms> list of
6578 * prebuilt frames.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006579 * 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 +02006580 * 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 +02006581 * having returned from this function.
6582 * 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 +01006583 * number field in this packet. <pn_len> will also have the packet number
6584 * length as value.
6585 *
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006586 * Return 1 if succeeded (enough room to buile this packet), O if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006587 */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006588static int qc_do_build_pkt(unsigned char *pos, const unsigned char *end,
6589 size_t dglen, struct quic_tx_packet *pkt,
6590 int64_t pn, size_t *pn_len, unsigned char **buf_pn,
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02006591 int force_ack, int padding, int cc, int probe,
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01006592 struct quic_enc_level *qel, struct quic_conn *qc,
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006593 const struct quic_version *ver, struct list *frms)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006594{
Frédéric Lécailleebb10702022-08-16 12:03:00 +02006595 unsigned char *beg, *payload;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006596 size_t len, len_sz, len_frms, padding_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006597 struct quic_frame frm = { .type = QUIC_FT_CRYPTO, };
6598 struct quic_frame ack_frm = { .type = QUIC_FT_ACK, };
Amaury Denoyellef9e190e2022-05-23 16:12:15 +02006599 struct quic_frame cc_frm = { };
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006600 size_t ack_frm_len, head_len;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01006601 int64_t rx_largest_acked_pn;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006602 int add_ping_frm;
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006603 struct list frm_list = LIST_HEAD_INIT(frm_list);
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01006604 struct quic_frame *cf;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006605 int must_ack, ret = 0;
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02006606 int nb_aepkts_since_last_ack;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006607
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006608 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
6609
Frédéric Lécailleea604992020-12-24 13:01:37 +01006610 /* Length field value with CRYPTO frames if present. */
6611 len_frms = 0;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006612 beg = pos;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006613 /* When not probing, and no immediate close is required, reduce the size of this
6614 * buffer to respect the congestion controller window.
6615 * 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 +01006616 */
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006617 if (!probe && !LIST_ISEMPTY(frms) && !cc) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006618 size_t path_room;
6619
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006620 path_room = quic_path_prep_data(qc->path);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006621 if (end - beg > path_room)
6622 end = beg + path_room;
6623 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006624
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006625 /* Ensure there is enough room for the TLS encryption tag and a zero token
6626 * length field if any.
6627 */
6628 if (end - pos < QUIC_TLS_TAG_LEN +
6629 (pkt->type == QUIC_PACKET_TYPE_INITIAL ? 1 : 0))
6630 goto no_room;
6631
6632 end -= QUIC_TLS_TAG_LEN;
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02006633 rx_largest_acked_pn = qel->pktns->rx.largest_acked_pn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006634 /* packet number length */
Frédéric Lécaille141982a2022-03-15 18:44:20 +01006635 *pn_len = quic_packet_number_length(pn, rx_largest_acked_pn);
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006636 /* Build the header */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006637 if ((pkt->type == QUIC_PACKET_TYPE_SHORT &&
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006638 !quic_build_packet_short_header(&pos, end, *pn_len, qc, qel->tls_ctx.flags)) ||
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006639 (pkt->type != QUIC_PACKET_TYPE_SHORT &&
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006640 !quic_build_packet_long_header(&pos, end, pkt->type, *pn_len, qc, ver)))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006641 goto no_room;
6642
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006643 /* Encode the token length (0) for an Initial packet. */
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006644 if (pkt->type == QUIC_PACKET_TYPE_INITIAL)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006645 *pos++ = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006646 head_len = pos - beg;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006647 /* Build an ACK frame if required. */
6648 ack_frm_len = 0;
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02006649 nb_aepkts_since_last_ack = qel->pktns->rx.nb_aepkts_since_last_ack;
6650 must_ack = !qel->pktns->tx.pto_probe &&
6651 (force_ack || ((qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) &&
6652 (LIST_ISEMPTY(frms) || nb_aepkts_since_last_ack >= QUIC_MAX_RX_AEPKTS_SINCE_LAST_ACK)));
6653 if (force_ack || must_ack) {
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02006654 struct quic_arngs *arngs = &qel->pktns->rx.arngs;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006655 BUG_ON(eb_is_empty(&qel->pktns->rx.arngs.root));
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02006656 ack_frm.tx_ack.arngs = arngs;
6657 if (qel->pktns->flags & QUIC_FL_PKTNS_NEW_LARGEST_PN) {
6658 qel->pktns->tx.ack_delay =
6659 quic_compute_ack_delay_us(qel->pktns->rx.largest_time_received, qc);
6660 qel->pktns->flags &= ~QUIC_FL_PKTNS_NEW_LARGEST_PN;
6661 }
6662 ack_frm.tx_ack.ack_delay = qel->pktns->tx.ack_delay;
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006663 /* XXX BE CAREFUL XXX : here we reserved at least one byte for the
6664 * smallest frame (PING) and <*pn_len> more for the packet number. Note
6665 * that from here, we do not know if we will have to send a PING frame.
6666 * This will be decided after having computed the ack-eliciting frames
6667 * to be added to this packet.
6668 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006669 ack_frm_len = quic_ack_frm_reduce_sz(qc, &ack_frm, end - 1 - *pn_len - pos);
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006670 if (!ack_frm_len)
6671 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006672 }
6673
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006674 /* Length field value without the ack-eliciting frames. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006675 len = ack_frm_len + *pn_len;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01006676 len_frms = 0;
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01006677 if (!cc && !LIST_ISEMPTY(frms)) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006678 ssize_t room = end - pos;
Frédéric Lécailleea604992020-12-24 13:01:37 +01006679
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006680 TRACE_DEVEL("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, frms);
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006681 /* Initialize the length of the frames built below to <len>.
6682 * If any frame could be successfully built by qc_build_frms(),
6683 * we will have len_frms > len.
6684 */
6685 len_frms = len;
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006686 if (!qc_build_frms(&frm_list, frms,
6687 end - pos, &len_frms, pos - beg, qel, qc)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006688 TRACE_DEVEL("Not enough room", QUIC_EV_CONN_TXPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006689 qc, NULL, NULL, &room);
Frédéric Lécaille834399c2022-04-25 17:17:07 +02006690 if (!ack_frm_len && !qel->pktns->tx.pto_probe)
6691 goto no_room;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006692 }
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006693 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006694
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006695 /* Length (of the remaining data). Must not fail because, the buffer size
6696 * has been checked above. Note that we have reserved QUIC_TLS_TAG_LEN bytes
6697 * for the encryption tag. It must be taken into an account for the length
6698 * of this packet.
6699 */
6700 if (len_frms)
6701 len = len_frms + QUIC_TLS_TAG_LEN;
6702 else
6703 len += QUIC_TLS_TAG_LEN;
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006704 /* CONNECTION_CLOSE frame */
6705 if (cc) {
Amaury Denoyelle0933c7b2022-07-18 14:11:50 +02006706 qc_build_cc_frm(qc, qel, &cc_frm);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006707 len += qc_frm_len(&cc_frm);
6708 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006709 add_ping_frm = 0;
6710 padding_len = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006711 len_sz = quic_int_getsize(len);
6712 /* Add this packet size to <dglen> */
6713 dglen += head_len + len_sz + len;
6714 if (padding && dglen < QUIC_INITIAL_PACKET_MINLEN) {
6715 /* This is a maximum padding size */
6716 padding_len = QUIC_INITIAL_PACKET_MINLEN - dglen;
6717 /* The length field value is of this packet is <len> + <padding_len>
6718 * the size of which may be greater than the initial computed size
Ilya Shipitsin5e87bcf2021-12-25 11:45:52 +05006719 * <len_sz>. So, let's deduce the difference between these to packet
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006720 * sizes from <padding_len>.
6721 */
6722 padding_len -= quic_int_getsize(len + padding_len) - len_sz;
6723 len += padding_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006724 }
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006725 else if (LIST_ISEMPTY(&frm_list) || len_frms == len) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006726 if (qel->pktns->tx.pto_probe) {
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006727 /* If we cannot send a frame, we send a PING frame. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006728 add_ping_frm = 1;
6729 len += 1;
6730 }
6731 /* 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 +01006732 if (!ack_frm_len && !cc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006733 len += padding_len = QUIC_PACKET_PN_MAXLEN - *pn_len;
6734 }
6735
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006736 if (pkt->type != QUIC_PACKET_TYPE_SHORT && !quic_enc_int(&pos, end, len))
6737 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006738
6739 /* Packet number field address. */
6740 *buf_pn = pos;
6741
6742 /* Packet number encoding. */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006743 if (!quic_packet_number_encode(&pos, end, pn, *pn_len))
6744 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006745
Frédéric Lécailleebb10702022-08-16 12:03:00 +02006746 /* payload building (ack-eliciting or not frames) */
6747 payload = pos;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01006748 if (ack_frm_len) {
6749 if (!qc_build_frm(&pos, end, &ack_frm, pkt, qc))
6750 goto no_room;
6751
6752 pkt->largest_acked_pn = quic_pktns_get_largest_acked_pn(qel->pktns);
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006753 pkt->flags |= QUIC_FL_TX_PACKET_ACK;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01006754 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006755
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006756 /* Ack-eliciting frames */
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006757 if (!LIST_ISEMPTY(&frm_list)) {
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006758 list_for_each_entry(cf, &frm_list, list) {
Frédéric Lécailledcc74ff2022-03-18 17:49:29 +01006759 unsigned char *spos = pos;
6760
6761 if (!qc_build_frm(&spos, end, cf, pkt, qc)) {
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01006762 ssize_t room = end - pos;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006763 TRACE_DEVEL("Not enough room", QUIC_EV_CONN_TXPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006764 qc, NULL, NULL, &room);
Frédéric Lécailleebb10702022-08-16 12:03:00 +02006765 /* TODO: this should not have happened except if we
6766 * are limited by the congestion control.
6767 * Note that <cf> was added from <frm_list> to <frms> list by
6768 * qc_build_frms().
Frédéric Lécailledcc74ff2022-03-18 17:49:29 +01006769 */
6770 LIST_DELETE(&cf->list);
6771 LIST_INSERT(frms, &cf->list);
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006772 break;
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01006773 }
Frédéric Lécailledcc74ff2022-03-18 17:49:29 +01006774
6775 pos = spos;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01006776 quic_tx_packet_refinc(pkt);
6777 cf->pkt = pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006778 }
6779 }
6780
6781 /* Build a PING frame if needed. */
6782 if (add_ping_frm) {
6783 frm.type = QUIC_FT_PING;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006784 if (!qc_build_frm(&pos, end, &frm, pkt, qc))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006785 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006786 }
6787
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006788 /* Build a CONNECTION_CLOSE frame if needed. */
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02006789 if (cc) {
6790 if (!qc_build_frm(&pos, end, &cc_frm, pkt, qc))
6791 goto no_room;
6792
6793 pkt->flags |= QUIC_FL_TX_PACKET_CC;
6794 }
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006795
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006796 /* Build a PADDING frame if needed. */
6797 if (padding_len) {
6798 frm.type = QUIC_FT_PADDING;
6799 frm.padding.len = padding_len;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006800 if (!qc_build_frm(&pos, end, &frm, pkt, qc))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006801 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006802 }
6803
Frédéric Lécailleebb10702022-08-16 12:03:00 +02006804 if (pos == payload) {
6805 /* No payload was built because of congestion control */
6806 TRACE_DEVEL("limited by congestion control", QUIC_EV_CONN_TXPKT, qc);
6807 goto no_room;
6808 }
6809
Frédéric Lécaille466e9da2021-12-29 12:04:13 +01006810 /* If this packet is ack-eliciting and we are probing let's
6811 * decrement the PTO probe counter.
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006812 */
Frédéric Lécaille466e9da2021-12-29 12:04:13 +01006813 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING &&
6814 qel->pktns->tx.pto_probe)
6815 qel->pktns->tx.pto_probe--;
6816
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006817 pkt->len = pos - beg;
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006818 LIST_SPLICE(&pkt->frms, &frm_list);
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006819
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006820 ret = 1;
6821 TRACE_DEVEL("Packet ack-eliciting frames", QUIC_EV_CONN_TXPKT, qc, pkt);
6822 leave:
6823 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
6824 return ret;
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006825
6826 no_room:
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006827 /* Replace the pre-built frames which could not be add to this packet */
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01006828 LIST_SPLICE(frms, &frm_list);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006829 TRACE_DEVEL("Remaining ack-eliciting frames", QUIC_EV_CONN_FRMLIST, qc, frms);
6830 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006831}
6832
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02006833static inline void quic_tx_packet_init(struct quic_tx_packet *pkt, int type)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006834{
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02006835 pkt->type = type;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006836 pkt->len = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006837 pkt->in_flight_len = 0;
Frédéric Lécaille0371cd52021-12-13 12:30:54 +01006838 pkt->pn_node.key = (uint64_t)-1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006839 LIST_INIT(&pkt->frms);
Frédéric Lécaille2899fe22022-03-21 10:43:53 +01006840 pkt->time_sent = TICK_ETERNITY;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006841 pkt->next = NULL;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01006842 pkt->largest_acked_pn = -1;
Frédéric Lécaille2899fe22022-03-21 10:43:53 +01006843 pkt->flags = 0;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01006844 pkt->refcnt = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006845}
6846
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006847/* Build a packet into <buf> packet buffer with <pkt_type> as packet
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01006848 * type for <qc> QUIC connection from <qel> encryption level from <frms> list
6849 * of prebuilt frames.
6850 *
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006851 * Return -2 if the packet could not be allocated or encrypted for any reason,
6852 * -1 if there was not enough room to build a packet.
Frédéric Lécaillee9a974a2022-03-13 19:19:12 +01006853 * XXX NOTE XXX
6854 * If you provide provide qc_build_pkt() with a big enough buffer to build a packet as big as
6855 * possible (to fill an MTU), the unique reason why this function may fail is the congestion
6856 * control window limitation.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006857 */
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006858static struct quic_tx_packet *qc_build_pkt(unsigned char **pos,
6859 const unsigned char *buf_end,
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006860 struct quic_enc_level *qel,
6861 struct quic_tls_ctx *tls_ctx, struct list *frms,
6862 struct quic_conn *qc, const struct quic_version *ver,
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02006863 size_t dglen, int pkt_type, int force_ack,
6864 int padding, int probe, int cc, int *err)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006865{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006866 struct quic_tx_packet *ret_pkt = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006867 /* The pointer to the packet number field. */
6868 unsigned char *buf_pn;
6869 unsigned char *beg, *end, *payload;
6870 int64_t pn;
6871 size_t pn_len, payload_len, aad_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006872 struct quic_tx_packet *pkt;
6873
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006874 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc, NULL, qel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006875 *err = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006876 pkt = pool_alloc(pool_head_quic_tx_packet);
6877 if (!pkt) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006878 TRACE_DEVEL("Not enough memory for a new packet", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006879 *err = -2;
6880 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006881 }
6882
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02006883 quic_tx_packet_init(pkt, pkt_type);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006884 beg = *pos;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006885 pn_len = 0;
6886 buf_pn = NULL;
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006887
6888 pn = qel->pktns->tx.next_pn + 1;
6889 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 +02006890 force_ack, padding, cc, probe, qel, qc, ver, frms)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006891 // trace already emitted by function above
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006892 *err = -1;
6893 goto err;
6894 }
6895
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006896 end = beg + pkt->len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006897 payload = buf_pn + pn_len;
6898 payload_len = end - payload;
6899 aad_len = payload - beg;
6900
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01006901 if (!quic_packet_encrypt(payload, payload_len, beg, aad_len, pn, tls_ctx, qc)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006902 // trace already emitted by function above
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006903 *err = -2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006904 goto err;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006905 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006906
6907 end += QUIC_TLS_TAG_LEN;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006908 pkt->len += QUIC_TLS_TAG_LEN;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006909 if (!quic_apply_header_protection(qc, beg, buf_pn, pn_len,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006910 tls_ctx->tx.hp, tls_ctx->tx.hp_key)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006911 // trace already emitted by function above
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006912 *err = -2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006913 goto err;
6914 }
6915
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006916 /* Consume a packet number */
6917 qel->pktns->tx.next_pn++;
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +01006918 qc->tx.prep_bytes += pkt->len;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006919 if (qc->tx.prep_bytes >= 3 * qc->rx.bytes && !quic_peer_validated_addr(qc)) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02006920 qc->flags |= QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006921 TRACE_PROTO("anti-amplification limit reached", QUIC_EV_CONN_TXPKT, qc);
6922 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006923 /* Now that a correct packet is built, let us consume <*pos> buffer. */
6924 *pos = end;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006925 /* Attach the built packet to its tree. */
Frédéric Lécaillea7348f62021-08-03 16:50:14 +02006926 pkt->pn_node.key = pn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006927 /* Set the packet in fligth length for in flight packet only. */
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006928 if (pkt->flags & QUIC_FL_TX_PACKET_IN_FLIGHT) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006929 pkt->in_flight_len = pkt->len;
6930 qc->path->prep_in_flight += pkt->len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006931 }
Frédéric Lécaille47756802022-03-25 09:12:16 +01006932 /* Always reset this flags */
6933 qc->flags &= ~QUIC_FL_CONN_IMMEDIATE_CLOSE;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006934 if (pkt->flags & QUIC_FL_TX_PACKET_ACK) {
6935 qel->pktns->flags &= ~QUIC_FL_PKTNS_ACK_REQUIRED;
6936 qel->pktns->rx.nb_aepkts_since_last_ack = 0;
6937 }
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02006938
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006939 pkt->pktns = qel->pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006940
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006941 ret_pkt = pkt;
6942 leave:
6943 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc, ret_pkt);
6944 return ret_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006945
6946 err:
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01006947 /* TODO: what about the frames which have been built
6948 * for this packet.
6949 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006950 free_quic_tx_packet(qc, pkt);
6951 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006952}
6953
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006954
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01006955/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6956 * event subscriber <es> is not allowed to change from a previous call as long
6957 * as at least one event is still subscribed. The <event_type> must only be a
6958 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
6959 */
6960static int quic_conn_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
6961{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006962 struct quic_conn *qc = conn->handle.qc;
6963 struct qcc *qcc = qc->qcc;
6964
6965 TRACE_ENTER(QUIC_EV_CONN_SUB, qc);
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02006966
6967 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
6968 BUG_ON(qcc->subs && qcc->subs != es);
6969
6970 es->events |= event_type;
6971 qcc->subs = es;
6972
6973 if (event_type & SUB_RETRY_RECV)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006974 TRACE_DEVEL("subscribe(recv)", QUIC_EV_CONN_XPRTRECV, qc, qcc);
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02006975
6976 if (event_type & SUB_RETRY_SEND)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006977 TRACE_DEVEL("subscribe(send)", QUIC_EV_CONN_XPRTSEND, qc, qcc);
6978
6979 TRACE_LEAVE(QUIC_EV_CONN_SUB, qc);
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02006980
6981 return 0;
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01006982}
6983
6984/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6985 * The <es> pointer is not allowed to differ from the one passed to the
6986 * subscribe() call. It always returns zero.
6987 */
6988static int quic_conn_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
6989{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006990 int ret;
6991 struct quic_conn *qc = conn->handle.qc;
6992 struct qcc *qcc = qc->qcc;
6993
6994 TRACE_ENTER(QUIC_EV_CONN_SUB, qc);
6995
6996 if (event_type & SUB_RETRY_RECV)
6997 TRACE_DEVEL("unsubscribe(recv)", QUIC_EV_CONN_XPRTRECV, qc, qcc);
6998 if (event_type & SUB_RETRY_SEND)
6999 TRACE_DEVEL("unsubscribe(send)", QUIC_EV_CONN_XPRTSEND, qc, qcc);
7000
7001 ret = conn_unsubscribe(conn, xprt_ctx, event_type, es);
7002
7003 TRACE_LEAVE(QUIC_EV_CONN_SUB, qc);
7004
7005 return ret;
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01007006}
7007
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01007008/* Store in <xprt_ctx> the context attached to <conn>.
7009 * Returns always 0.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007010 */
7011static int qc_conn_init(struct connection *conn, void **xprt_ctx)
7012{
Amaury Denoyelle7ca7c842021-12-22 18:20:38 +01007013 struct quic_conn *qc = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007014
7015 TRACE_ENTER(QUIC_EV_CONN_NEW, conn);
7016
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01007017 /* do not store the context if already set */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007018 if (*xprt_ctx)
7019 goto out;
7020
Willy Tarreau784b8682022-04-11 14:18:10 +02007021 *xprt_ctx = conn->handle.qc->xprt_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007022
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007023 out:
Frédéric Lécaillefde2a982021-12-27 15:12:09 +01007024 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007025
7026 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007027}
7028
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02007029/* Start the QUIC transport layer */
7030static int qc_xprt_start(struct connection *conn, void *ctx)
7031{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007032 int ret = 0;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02007033 struct quic_conn *qc;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02007034 struct ssl_sock_ctx *qctx = ctx;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02007035
Willy Tarreau784b8682022-04-11 14:18:10 +02007036 qc = conn->handle.qc;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007037 TRACE_ENTER(QUIC_EV_CONN_NEW, qc);
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01007038 if (qcc_install_app_ops(qc->qcc, qc->app_ops)) {
7039 TRACE_PROTO("Cannot install app layer", QUIC_EV_CONN_LPKT, qc);
Amaury Denoyelle5d774de2022-04-14 14:59:35 +02007040 /* prepare a CONNECTION_CLOSE frame */
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02007041 quic_set_connection_close(qc, quic_err_transport(QC_ERR_APPLICATION_ERROR));
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007042 goto out;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01007043 }
7044
7045 /* mux-quic can now be considered ready. */
7046 qc->mux_state = QC_MUX_READY;
7047
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02007048 tasklet_wakeup(qctx->wait_event.tasklet);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007049
7050 ret = 1;
7051 out:
7052 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
7053 return ret;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02007054}
7055
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02007056static struct ssl_sock_ctx *qc_get_ssl_sock_ctx(struct connection *conn)
7057{
Willy Tarreau784b8682022-04-11 14:18:10 +02007058 if (!conn || conn->xprt != xprt_get(XPRT_QUIC) || !conn->handle.qc || !conn->xprt_ctx)
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02007059 return NULL;
7060
Willy Tarreau784b8682022-04-11 14:18:10 +02007061 return conn->handle.qc->xprt_ctx;
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02007062}
7063
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007064/* transport-layer operations for QUIC connections. */
7065static struct xprt_ops ssl_quic = {
Amaury Denoyelle414cac52021-09-22 11:14:37 +02007066 .close = quic_close,
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01007067 .subscribe = quic_conn_subscribe,
7068 .unsubscribe = quic_conn_unsubscribe,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007069 .init = qc_conn_init,
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02007070 .start = qc_xprt_start,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007071 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
7072 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01007073 .get_alpn = ssl_sock_get_alpn,
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02007074 .get_ssl_sock_ctx = qc_get_ssl_sock_ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007075 .name = "QUIC",
7076};
7077
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007078static void __quic_conn_init(void)
7079{
7080 ha_quic_meth = BIO_meth_new(0x666, "ha QUIC methods");
7081 xprt_register(XPRT_QUIC, &ssl_quic);
7082}
Willy Tarreau79367f92022-04-25 19:18:24 +02007083INITCALL0(STG_REGISTER, __quic_conn_init);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007084
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007085static void __quic_conn_deinit(void)
7086{
7087 BIO_meth_free(ha_quic_meth);
7088}
Willy Tarreau79367f92022-04-25 19:18:24 +02007089REGISTER_POST_DEINIT(__quic_conn_deinit);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007090
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01007091/* Read all the QUIC packets found in <buf> from QUIC connection with <owner>
7092 * as owner calling <func> function.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05007093 * Return the number of bytes read if succeeded, -1 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007094 */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01007095struct task *quic_lstnr_dghdlr(struct task *t, void *ctx, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007096{
7097 unsigned char *pos;
7098 const unsigned char *end;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01007099 struct quic_dghdlr *dghdlr = ctx;
7100 struct quic_dgram *dgram;
7101 int first_pkt = 1;
Frédéric Lécaille1b0707f2022-06-30 11:28:56 +02007102 struct list *tasklist_head = NULL;
Willy Tarreauf9d4a7d2022-08-05 08:45:56 +02007103 int max_dgrams = global.tune.maxpollevents;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007104
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007105 TRACE_ENTER(QUIC_EV_CONN_LPKT);
7106
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007107 while ((dgram = MT_LIST_POP(&dghdlr->dgrams, typeof(dgram), mt_list))) {
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007108 pos = dgram->buf;
7109 end = pos + dgram->len;
7110 do {
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007111 struct quic_rx_packet *pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007112
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007113 pkt = pool_zalloc(pool_head_quic_rx_packet);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007114 if (!pkt) {
7115 TRACE_ERROR("RX packet allocation failed", QUIC_EV_CONN_LPKT);
7116 goto leave;
7117 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007118
Amaury Denoyelle23f908c2022-06-20 10:58:03 +02007119 LIST_INIT(&pkt->qc_rx_pkt_list);
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02007120 pkt->time_received = now_ms;
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007121 quic_rx_packet_refinc(pkt);
Frédéric Lécaille1b0707f2022-06-30 11:28:56 +02007122 qc_lstnr_pkt_rcv(pos, end, pkt, first_pkt, dgram, &tasklist_head);
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007123 first_pkt = 0;
7124 pos += pkt->len;
7125 quic_rx_packet_refdec(pkt);
Amaury Denoyelle23f908c2022-06-20 10:58:03 +02007126
7127 /* Free rejected packets */
7128 if (!pkt->refcnt) {
7129 BUG_ON(LIST_INLIST(&pkt->qc_rx_pkt_list));
7130 pool_free(pool_head_quic_rx_packet, pkt);
7131 }
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007132 } while (pos < end);
7133
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007134 /* Increasing the received bytes counter by the UDP datagram length
7135 * if this datagram could be associated to a connection.
7136 */
7137 if (dgram->qc)
7138 dgram->qc->rx.bytes += dgram->len;
Frédéric Lécaille841bf5e2022-02-02 09:41:27 +01007139
7140 /* Mark this datagram as consumed */
7141 HA_ATOMIC_STORE(&dgram->buf, NULL);
Willy Tarreauf9d4a7d2022-08-05 08:45:56 +02007142
7143 if (--max_dgrams <= 0)
7144 goto stop_here;
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007145 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007146
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007147 TRACE_LEAVE(QUIC_EV_CONN_LPKT);
7148
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01007149 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007150
Willy Tarreauf9d4a7d2022-08-05 08:45:56 +02007151 stop_here:
7152 /* too much work done at once, come back here later */
7153 if (!MT_LIST_ISEMPTY(&dghdlr->dgrams))
7154 tasklet_wakeup((struct tasklet *)t);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007155 leave:
7156 TRACE_LEAVE(QUIC_EV_CONN_LPKT);
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01007157 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007158}
7159
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05007160/* Retrieve the DCID from a QUIC datagram or packet with <buf> as first octet.
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007161 * Returns 1 if succeeded, 0 if not.
7162 */
Frédéric Lécaille6492e662022-05-17 17:23:16 +02007163int quic_get_dgram_dcid(unsigned char *buf, const unsigned char *end,
7164 unsigned char **dcid, size_t *dcid_len)
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007165{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007166 int ret = 0, long_header;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007167 size_t minlen, skip;
7168
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007169 TRACE_ENTER(QUIC_EV_CONN_RXPKT);
7170
7171 if (!(*buf & QUIC_PACKET_FIXED_BIT)) {
7172 TRACE_PROTO("fixed bit not set", QUIC_EV_CONN_RXPKT);
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007173 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007174 }
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007175
7176 long_header = *buf & QUIC_PACKET_LONG_HEADER_BIT;
Frédéric Lécaille36b28ed2022-05-09 18:08:13 +02007177 minlen = long_header ? QUIC_LONG_PACKET_MINLEN :
7178 QUIC_SHORT_PACKET_MINLEN + QUIC_HAP_CID_LEN + QUIC_TLS_TAG_LEN;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007179 skip = long_header ? QUIC_LONG_PACKET_DCID_OFF : QUIC_SHORT_PACKET_DCID_OFF;
Willy Tarreauaf5138f2022-08-05 10:09:32 +02007180 if (end - buf < minlen)
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007181 goto err;
7182
7183 buf += skip;
7184 *dcid_len = long_header ? *buf++ : QUIC_HAP_CID_LEN;
7185 if (*dcid_len > QUIC_CID_MAXLEN || end - buf <= *dcid_len)
7186 goto err;
7187
7188 *dcid = buf;
7189
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007190 ret = 1;
7191 leave:
7192 TRACE_LEAVE(QUIC_EV_CONN_RXPKT);
7193 return ret;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007194
7195 err:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007196 TRACE_PROTO("wrong datagram", QUIC_EV_CONN_RXPKT);
7197 goto leave;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007198}
7199
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02007200/* Notify the MUX layer if alive about an imminent close of <qc>. */
7201void qc_notify_close(struct quic_conn *qc)
7202{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007203 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
7204
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02007205 if (qc->flags & QUIC_FL_CONN_NOTIFY_CLOSE)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007206 goto leave;
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02007207
7208 qc->flags |= QUIC_FL_CONN_NOTIFY_CLOSE;
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02007209 /* wake up the MUX */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007210 if (qc->mux_state == QC_MUX_READY && qc->conn->mux->wake) {
7211 TRACE_STATE("connection closure notidfied to mux",
7212 QUIC_FL_CONN_NOTIFY_CLOSE, qc);
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02007213 qc->conn->mux->wake(qc->conn);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007214 }
7215 else
7216 TRACE_STATE("connection closure not notidfied to mux",
7217 QUIC_FL_CONN_NOTIFY_CLOSE, qc);
7218 leave:
7219 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02007220}
7221
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007222/*
7223 * Local variables:
7224 * c-indent-level: 8
7225 * c-basic-offset: 8
7226 * End:
7227 */