blob: f5dedcab24150b34ffb2a80a80811f3c2788ff91 [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
Frédéric Lécaille2f163482022-08-19 09:23:15 +0200502 if (frm) {
503 chunk_appendf(&trace_buf, " frm@%p", frm);
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100504 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaille2f163482022-08-19 09:23:15 +0200505 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100506 if (val1)
507 chunk_appendf(&trace_buf, " %lu", *val1);
508 if (val2)
509 chunk_appendf(&trace_buf, "..%lu", *val2);
510 }
511
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100512 if (mask & QUIC_EV_CONN_ACKSTRM) {
513 const struct quic_stream *s = a2;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +0200514 const struct qc_stream_desc *stream = a3;
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100515
516 if (s)
517 chunk_appendf(&trace_buf, " off=%llu len=%llu", (ull)s->offset.key, (ull)s->len);
Amaury Denoyelle7272cd72022-03-29 15:15:54 +0200518 if (stream)
519 chunk_appendf(&trace_buf, " ack_offset=%llu", (ull)stream->ack_offset);
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100520 }
521
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100522 if (mask & QUIC_EV_CONN_RTTUPDT) {
523 const unsigned int *rtt_sample = a2;
524 const unsigned int *ack_delay = a3;
525 const struct quic_loss *ql = a4;
526
527 if (rtt_sample)
528 chunk_appendf(&trace_buf, " rtt_sample=%ums", *rtt_sample);
529 if (ack_delay)
530 chunk_appendf(&trace_buf, " ack_delay=%ums", *ack_delay);
531 if (ql)
532 chunk_appendf(&trace_buf,
533 " srtt=%ums rttvar=%ums min_rtt=%ums",
534 ql->srtt >> 3, ql->rtt_var >> 2, ql->rtt_min);
535 }
536 if (mask & QUIC_EV_CONN_CC) {
537 const struct quic_cc_event *ev = a2;
538 const struct quic_cc *cc = a3;
539
540 if (a2)
541 quic_cc_event_trace(&trace_buf, ev);
542 if (a3)
543 quic_cc_state_trace(&trace_buf, cc);
544 }
545
546 if (mask & QUIC_EV_CONN_PKTLOSS) {
547 const struct quic_pktns *pktns = a2;
548 const struct list *lost_pkts = a3;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100549
550 if (pktns) {
551 chunk_appendf(&trace_buf, " pktns=%s",
552 pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
553 pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H");
554 if (pktns->tx.loss_time)
555 chunk_appendf(&trace_buf, " loss_time=%dms",
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100556 TICKS_TO_MS(tick_remain(now_ms, pktns->tx.loss_time)));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100557 }
558 if (lost_pkts && !LIST_ISEMPTY(lost_pkts)) {
559 struct quic_tx_packet *pkt;
560
561 chunk_appendf(&trace_buf, " lost_pkts:");
562 list_for_each_entry(pkt, lost_pkts, list)
563 chunk_appendf(&trace_buf, " %lu", (unsigned long)pkt->pn_node.key);
564 }
565 }
566
567 if (mask & (QUIC_EV_CONN_STIMER|QUIC_EV_CONN_PTIMER|QUIC_EV_CONN_SPTO)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100568 const struct quic_pktns *pktns = a2;
569 const int *duration = a3;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100570 const uint64_t *ifae_pkts = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100571
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100572 if (ifae_pkts)
573 chunk_appendf(&trace_buf, " ifae_pkts=%llu",
574 (unsigned long long)*ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100575 if (pktns) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100576 chunk_appendf(&trace_buf, " pktns=%s pp=%d",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100577 pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100578 pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H",
579 pktns->tx.pto_probe);
Frédéric Lécaille22cfd832021-12-27 17:42:51 +0100580 if (mask & (QUIC_EV_CONN_STIMER|QUIC_EV_CONN_SPTO)) {
581 if (pktns->tx.in_flight)
582 chunk_appendf(&trace_buf, " if=%llu", (ull)pktns->tx.in_flight);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100583 if (pktns->tx.loss_time)
584 chunk_appendf(&trace_buf, " loss_time=%dms",
585 TICKS_TO_MS(pktns->tx.loss_time - now_ms));
586 }
587 if (mask & QUIC_EV_CONN_SPTO) {
588 if (pktns->tx.time_of_last_eliciting)
589 chunk_appendf(&trace_buf, " tole=%dms",
590 TICKS_TO_MS(pktns->tx.time_of_last_eliciting - now_ms));
591 if (duration)
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100592 chunk_appendf(&trace_buf, " dur=%dms", TICKS_TO_MS(*duration));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100593 }
594 }
595
Frédéric Lécaille03235d72022-03-30 14:36:40 +0200596 if (!(mask & (QUIC_EV_CONN_SPTO|QUIC_EV_CONN_PTIMER)) && qc->timer_task) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100597 chunk_appendf(&trace_buf,
598 " expire=%dms", TICKS_TO_MS(qc->timer - now_ms));
599 }
600 }
601
602 if (mask & QUIC_EV_CONN_SPPKTS) {
603 const struct quic_tx_packet *pkt = a2;
604
Frédéric Lécaille8ecb7362022-08-04 12:00:00 +0200605 chunk_appendf(&trace_buf, " cwnd=%llu ppif=%llu pif=%llu",
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100606 (unsigned long long)qc->path->cwnd,
607 (unsigned long long)qc->path->prep_in_flight,
608 (unsigned long long)qc->path->in_flight);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100609 if (pkt) {
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100610 chunk_appendf(&trace_buf, " pn=%lu(%s) iflen=%llu",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100611 (unsigned long)pkt->pn_node.key,
612 pkt->pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
613 pkt->pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H",
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100614 (unsigned long long)pkt->in_flight_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100615 }
616 }
Frédéric Lécaille47c433f2020-12-10 17:03:11 +0100617
618 if (mask & QUIC_EV_CONN_SSLALERT) {
619 const uint8_t *alert = a2;
620 const enum ssl_encryption_level_t *level = a3;
621
622 if (alert)
623 chunk_appendf(&trace_buf, " alert=0x%02x", *alert);
624 if (level)
625 chunk_appendf(&trace_buf, " el=%c",
626 quic_enc_level_char(ssl_to_quic_enc_level(*level)));
627 }
Frédéric Lécailleea604992020-12-24 13:01:37 +0100628
629 if (mask & QUIC_EV_CONN_BCFRMS) {
630 const size_t *sz1 = a2;
631 const size_t *sz2 = a3;
632 const size_t *sz3 = a4;
633
634 if (sz1)
635 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz1);
636 if (sz2)
637 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz2);
638 if (sz3)
639 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz3);
640 }
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100641
642 if (mask & QUIC_EV_CONN_PSTRM) {
643 const struct quic_frame *frm = a2;
Frédéric Lécaille577fe482021-01-11 15:10:06 +0100644
Frédéric Lécailled8b84432021-12-10 15:18:36 +0100645 if (frm)
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100646 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100647 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100648 }
649 if (mask & QUIC_EV_CONN_LPKT) {
650 const struct quic_rx_packet *pkt = a2;
Frédéric Lécaille865b0782021-09-23 07:33:20 +0200651 const uint64_t *len = a3;
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200652 const struct quic_version *ver = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100653
Frédéric Lécaille8678eb02021-12-16 18:03:52 +0100654 if (pkt) {
655 chunk_appendf(&trace_buf, " pkt@%p type=0x%02x %s",
656 pkt, pkt->type, qc_pkt_long(pkt) ? "long" : "short");
657 if (pkt->pn_node.key != (uint64_t)-1)
658 chunk_appendf(&trace_buf, " pn=%llu", pkt->pn_node.key);
659 }
660
Frédéric Lécaille865b0782021-09-23 07:33:20 +0200661 if (len)
662 chunk_appendf(&trace_buf, " len=%llu", (ull)*len);
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200663
664 if (ver)
665 chunk_appendf(&trace_buf, " ver=0x%08x", ver->num);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100666 }
667
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +0200668 if (mask & QUIC_EV_STATELESS_RST) {
669 const struct quic_cid *cid = a2;
670
671 if (cid)
672 quic_cid_dump(&trace_buf, cid);
673 }
674
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100675}
676
677/* Returns 1 if the peer has validated <qc> QUIC connection address, 0 if not. */
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100678static inline int quic_peer_validated_addr(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100679{
Frédéric Lécaille67f47d02021-08-19 15:19:09 +0200680 struct quic_pktns *hdshk_pktns, *app_pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100681
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +0100682 if (!qc_is_listener(qc))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100683 return 1;
684
Frédéric Lécaille67f47d02021-08-19 15:19:09 +0200685 hdshk_pktns = qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns;
686 app_pktns = qc->els[QUIC_TLS_ENC_LEVEL_APP].pktns;
Frédéric Lécaille205e4f32022-03-28 17:38:27 +0200687 if ((hdshk_pktns->flags & QUIC_FL_PKTNS_PKT_RECEIVED) ||
688 (app_pktns->flags & QUIC_FL_PKTNS_PKT_RECEIVED) ||
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200689 qc->state >= QUIC_HS_ST_COMPLETE)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100690 return 1;
691
692 return 0;
693}
694
695/* Set the timer attached to the QUIC connection with <ctx> as I/O handler and used for
696 * both loss detection and PTO and schedule the task assiated to this timer if needed.
697 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100698static inline void qc_set_timer(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100699{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100700 struct quic_pktns *pktns;
701 unsigned int pto;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +0200702 int handshake_complete;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100703
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100704 TRACE_ENTER(QUIC_EV_CONN_STIMER, qc,
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100705 NULL, NULL, &qc->path->ifae_pkts);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100706
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100707 pktns = quic_loss_pktns(qc);
708 if (tick_isset(pktns->tx.loss_time)) {
709 qc->timer = pktns->tx.loss_time;
710 goto out;
711 }
712
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +0100713 /* anti-amplification: the timer must be
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100714 * cancelled for a server which reached the anti-amplification limit.
715 */
Frédéric Lécaille078634d2022-01-04 16:59:42 +0100716 if (!quic_peer_validated_addr(qc) &&
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200717 (qc->flags & QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100718 TRACE_PROTO("anti-amplification reached", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +0100719 qc->timer = TICK_ETERNITY;
720 goto out;
721 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100722
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100723 if (!qc->path->ifae_pkts && quic_peer_validated_addr(qc)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100724 TRACE_PROTO("timer cancellation", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100725 /* Timer cancellation. */
726 qc->timer = TICK_ETERNITY;
727 goto out;
728 }
729
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200730 handshake_complete = qc->state >= QUIC_HS_ST_COMPLETE;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +0200731 pktns = quic_pto_pktns(qc, handshake_complete, &pto);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100732 if (tick_isset(pto))
733 qc->timer = pto;
734 out:
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100735 if (qc->timer_task && qc->timer != TICK_ETERNITY) {
Frédéric Lécailleaaf1f192022-03-22 15:37:41 +0100736 if (tick_is_expired(qc->timer, now_ms)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200737 TRACE_DEVEL("wakeup asap timer task", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100738 task_wakeup(qc->timer_task, TASK_WOKEN_MSG);
Frédéric Lécailleaaf1f192022-03-22 15:37:41 +0100739 }
740 else {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200741 TRACE_DEVEL("timer task scheduling", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100742 task_schedule(qc->timer_task, qc->timer);
Frédéric Lécailleaaf1f192022-03-22 15:37:41 +0100743 }
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100744 }
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100745 TRACE_LEAVE(QUIC_EV_CONN_STIMER, qc, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100746}
747
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100748/* Derive new keys and ivs required for Key Update feature for <qc> QUIC
749 * connection.
750 * Return 1 if succeeded, 0 if not.
751 */
752static int quic_tls_key_update(struct quic_conn *qc)
753{
754 struct quic_tls_ctx *tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
755 struct quic_tls_secrets *rx, *tx;
756 struct quic_tls_kp *nxt_rx = &qc->ku.nxt_rx;
757 struct quic_tls_kp *nxt_tx = &qc->ku.nxt_tx;
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200758 const struct quic_version *ver =
759 qc->negotiated_version ? qc->negotiated_version : qc->original_version;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200760 int ret = 0;
761
762 TRACE_ENTER(QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100763
764 tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
765 rx = &tls_ctx->rx;
766 tx = &tls_ctx->tx;
767 nxt_rx = &qc->ku.nxt_rx;
768 nxt_tx = &qc->ku.nxt_tx;
769
770 /* Prepare new RX secrets */
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200771 if (!quic_tls_sec_update(rx->md, ver, nxt_rx->secret, nxt_rx->secretlen,
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100772 rx->secret, rx->secretlen)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200773 TRACE_ERROR("New RX secret update failed", QUIC_EV_CONN_RWSEC, qc);
774 goto leave;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100775 }
776
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200777 if (!quic_tls_derive_keys(rx->aead, NULL, rx->md, ver,
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100778 nxt_rx->key, nxt_rx->keylen,
779 nxt_rx->iv, nxt_rx->ivlen, NULL, 0,
780 nxt_rx->secret, nxt_rx->secretlen)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200781 TRACE_ERROR("New RX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
782 goto leave;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100783 }
784
785 /* Prepare new TX secrets */
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200786 if (!quic_tls_sec_update(tx->md, ver, nxt_tx->secret, nxt_tx->secretlen,
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100787 tx->secret, tx->secretlen)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200788 TRACE_ERROR("New TX secret update failed", QUIC_EV_CONN_RWSEC, qc);
789 goto leave;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100790 }
791
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200792 if (!quic_tls_derive_keys(tx->aead, NULL, tx->md, ver,
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100793 nxt_tx->key, nxt_tx->keylen,
794 nxt_tx->iv, nxt_tx->ivlen, NULL, 0,
795 nxt_tx->secret, nxt_tx->secretlen)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200796 TRACE_ERROR("New TX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
797 goto leave;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100798 }
799
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200800 if (nxt_rx->ctx) {
801 EVP_CIPHER_CTX_free(nxt_rx->ctx);
802 nxt_rx->ctx = NULL;
803 }
804
805 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 +0200806 TRACE_ERROR("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
807 goto leave;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200808 }
809
810 if (nxt_tx->ctx) {
811 EVP_CIPHER_CTX_free(nxt_tx->ctx);
812 nxt_tx->ctx = NULL;
813 }
814
815 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 +0200816 TRACE_ERROR("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
817 goto leave;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200818 }
819
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200820 ret = 1;
821 leave:
822 TRACE_LEAVE(QUIC_EV_CONN_RWSEC, qc);
823 return ret;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100824}
825
826/* Rotate the Key Update information for <qc> QUIC connection.
827 * Must be used after having updated them.
828 * Always succeeds.
829 */
830static void quic_tls_rotate_keys(struct quic_conn *qc)
831{
832 struct quic_tls_ctx *tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
833 unsigned char *curr_secret, *curr_iv, *curr_key;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200834 EVP_CIPHER_CTX *curr_ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100835
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200836 TRACE_ENTER(QUIC_EV_CONN_RXPKT, qc);
837
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100838 /* Rotate the RX secrets */
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200839 curr_ctx = tls_ctx->rx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100840 curr_secret = tls_ctx->rx.secret;
841 curr_iv = tls_ctx->rx.iv;
842 curr_key = tls_ctx->rx.key;
843
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200844 tls_ctx->rx.ctx = qc->ku.nxt_rx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100845 tls_ctx->rx.secret = qc->ku.nxt_rx.secret;
846 tls_ctx->rx.iv = qc->ku.nxt_rx.iv;
847 tls_ctx->rx.key = qc->ku.nxt_rx.key;
848
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200849 qc->ku.nxt_rx.ctx = qc->ku.prv_rx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100850 qc->ku.nxt_rx.secret = qc->ku.prv_rx.secret;
851 qc->ku.nxt_rx.iv = qc->ku.prv_rx.iv;
852 qc->ku.nxt_rx.key = qc->ku.prv_rx.key;
853
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200854 qc->ku.prv_rx.ctx = curr_ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100855 qc->ku.prv_rx.secret = curr_secret;
856 qc->ku.prv_rx.iv = curr_iv;
857 qc->ku.prv_rx.key = curr_key;
858 qc->ku.prv_rx.pn = tls_ctx->rx.pn;
859
860 /* Update the TX secrets */
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200861 curr_ctx = tls_ctx->tx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100862 curr_secret = tls_ctx->tx.secret;
863 curr_iv = tls_ctx->tx.iv;
864 curr_key = tls_ctx->tx.key;
865
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200866 tls_ctx->tx.ctx = qc->ku.nxt_tx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100867 tls_ctx->tx.secret = qc->ku.nxt_tx.secret;
868 tls_ctx->tx.iv = qc->ku.nxt_tx.iv;
869 tls_ctx->tx.key = qc->ku.nxt_tx.key;
870
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200871 qc->ku.nxt_tx.ctx = curr_ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100872 qc->ku.nxt_tx.secret = curr_secret;
873 qc->ku.nxt_tx.iv = curr_iv;
874 qc->ku.nxt_tx.key = curr_key;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200875
876 TRACE_LEAVE(QUIC_EV_CONN_RXPKT, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100877}
878
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200879/* returns 0 on error, 1 on success */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100880int ha_quic_set_encryption_secrets(SSL *ssl, enum ssl_encryption_level_t level,
881 const uint8_t *read_secret,
882 const uint8_t *write_secret, size_t secret_len)
883{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100884 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
885 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 +0100886 const SSL_CIPHER *cipher = SSL_get_current_cipher(ssl);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100887 struct quic_tls_secrets *rx, *tx;
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200888 const struct quic_version *ver =
889 qc->negotiated_version ? qc->negotiated_version : qc->original_version;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200890 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100891
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100892 TRACE_ENTER(QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100893 BUG_ON(secret_len > QUIC_TLS_SECRET_LEN);
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200894 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100895 TRACE_PROTO("CC required", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillef44d19e2022-03-26 12:22:41 +0100896 goto no_secret;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100897 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100898
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100899 if (!quic_tls_ctx_keys_alloc(tls_ctx)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200900 TRACE_ERROR("keys allocation failed", QUIC_EV_CONN_RWSEC, qc);
901 goto leave;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100902 }
903
904 rx = &tls_ctx->rx;
905 tx = &tls_ctx->tx;
906
907 rx->aead = tx->aead = tls_aead(cipher);
908 rx->md = tx->md = tls_md(cipher);
909 rx->hp = tx->hp = tls_hp(cipher);
910
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200911 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 +0100912 rx->iv, rx->ivlen, rx->hp_key, sizeof rx->hp_key,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100913 read_secret, secret_len)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200914 TRACE_ERROR("RX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
915 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100916 }
917
Frédéric Lécaillef4605742022-04-05 10:28:29 +0200918 if (!quic_tls_rx_ctx_init(&rx->ctx, rx->aead, rx->key)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200919 TRACE_ERROR("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
920 goto leave;
Frédéric Lécaillef4605742022-04-05 10:28:29 +0200921 }
922
Frédéric Lécaille86a53c52022-08-19 18:18:13 +0200923 if (!quic_tls_dec_aes_ctx_init(&rx->hp_ctx, rx->hp, rx->hp_key)) {
924 TRACE_ERROR("could not initial RX TLS cipher context for HP", QUIC_EV_CONN_RWSEC, qc);
925 goto leave;
926 }
927
Frédéric Lécaille61b851d2022-01-28 21:38:45 +0100928 /* Enqueue this connection asap if we could derive O-RTT secrets as
929 * listener. Note that a listener derives only RX secrets for this
930 * level.
931 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200932 if (qc_is_listener(qc) && level == ssl_encryption_early_data) {
933 TRACE_DEVEL("pushing connection into accept queue", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaille61b851d2022-01-28 21:38:45 +0100934 quic_accept_push_qc(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200935 }
Frédéric Lécaille4015cbb2021-12-14 19:29:34 +0100936
937 if (!write_secret)
Frédéric Lécailleee4508d2022-02-14 17:54:04 +0100938 goto out;
Frédéric Lécaille4015cbb2021-12-14 19:29:34 +0100939
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200940 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 +0100941 tx->iv, tx->ivlen, tx->hp_key, sizeof tx->hp_key,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100942 write_secret, secret_len)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200943 TRACE_ERROR("TX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
944 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100945 }
946
Frédéric Lécaillef4605742022-04-05 10:28:29 +0200947 if (!quic_tls_tx_ctx_init(&tx->ctx, tx->aead, tx->key)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200948 TRACE_ERROR("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
949 goto leave;
Frédéric Lécaillef4605742022-04-05 10:28:29 +0200950 }
951
Frédéric Lécaille86a53c52022-08-19 18:18:13 +0200952 if (!quic_tls_enc_aes_ctx_init(&tx->hp_ctx, tx->hp, tx->hp_key)) {
953 TRACE_ERROR("could not initial TX TLS cipher context for HP", QUIC_EV_CONN_RWSEC, qc);
954 goto leave;
955 }
956
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100957 if (level == ssl_encryption_application) {
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100958 struct quic_tls_kp *prv_rx = &qc->ku.prv_rx;
959 struct quic_tls_kp *nxt_rx = &qc->ku.nxt_rx;
960 struct quic_tls_kp *nxt_tx = &qc->ku.nxt_tx;
961
Frédéric Lécaille96fd1632022-04-01 11:21:47 +0200962 /* These secrets must be stored only for Application encryption level */
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100963 if (!(rx->secret = pool_alloc(pool_head_quic_tls_secret)) ||
964 !(tx->secret = pool_alloc(pool_head_quic_tls_secret))) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200965 TRACE_ERROR("Could not allocate secrete keys", QUIC_EV_CONN_RWSEC, qc);
966 goto leave;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100967 }
968
969 memcpy(rx->secret, read_secret, secret_len);
970 rx->secretlen = secret_len;
971 memcpy(tx->secret, write_secret, secret_len);
972 tx->secretlen = secret_len;
973 /* Initialize all the secret keys lengths */
974 prv_rx->secretlen = nxt_rx->secretlen = nxt_tx->secretlen = secret_len;
975 /* Prepare the next key update */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200976 if (!quic_tls_key_update(qc)) {
977 // trace already emitted by function above
978 goto leave;
979 }
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100980 }
Frédéric Lécailleee4508d2022-02-14 17:54:04 +0100981
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100982 out:
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100983 tls_ctx->flags |= QUIC_FL_TLS_SECRETS_SET;
Frédéric Lécaillef44d19e2022-03-26 12:22:41 +0100984 no_secret:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200985 ret = 1;
986 leave:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100987 TRACE_LEAVE(QUIC_EV_CONN_RWSEC, qc, &level);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200988 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100989}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100990
991/* This function copies the CRYPTO data provided by the TLS stack found at <data>
992 * with <len> as size in CRYPTO buffers dedicated to store the information about
993 * outgoing CRYPTO frames so that to be able to replay the CRYPTO data streams.
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200994 * It fails (returns 0) only if it could not managed to allocate enough CRYPTO
995 * buffers to store all the data.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100996 * Note that CRYPTO data may exist at any encryption level except at 0-RTT.
997 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200998static int quic_crypto_data_cpy(struct quic_conn *qc, struct quic_enc_level *qel,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100999 const unsigned char *data, size_t len)
1000{
1001 struct quic_crypto_buf **qcb;
1002 /* The remaining byte to store in CRYPTO buffers. */
1003 size_t cf_offset, cf_len, *nb_buf;
1004 unsigned char *pos;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001005 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001006
1007 nb_buf = &qel->tx.crypto.nb_buf;
1008 qcb = &qel->tx.crypto.bufs[*nb_buf - 1];
1009 cf_offset = (*nb_buf - 1) * QUIC_CRYPTO_BUF_SZ + (*qcb)->sz;
1010 cf_len = len;
1011
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001012 TRACE_ENTER(QUIC_EV_CONN_ADDDATA, qc);
1013
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001014 while (len) {
1015 size_t to_copy, room;
1016
1017 pos = (*qcb)->data + (*qcb)->sz;
1018 room = QUIC_CRYPTO_BUF_SZ - (*qcb)->sz;
1019 to_copy = len > room ? room : len;
1020 if (to_copy) {
1021 memcpy(pos, data, to_copy);
1022 /* Increment the total size of this CRYPTO buffers by <to_copy>. */
1023 qel->tx.crypto.sz += to_copy;
1024 (*qcb)->sz += to_copy;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001025 len -= to_copy;
1026 data += to_copy;
1027 }
1028 else {
1029 struct quic_crypto_buf **tmp;
1030
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001031 // FIXME: realloc!
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001032 tmp = realloc(qel->tx.crypto.bufs,
1033 (*nb_buf + 1) * sizeof *qel->tx.crypto.bufs);
1034 if (tmp) {
1035 qel->tx.crypto.bufs = tmp;
1036 qcb = &qel->tx.crypto.bufs[*nb_buf];
1037 *qcb = pool_alloc(pool_head_quic_crypto_buf);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001038 if (!*qcb) {
1039 TRACE_ERROR("Could not allocate crypto buf", QUIC_EV_CONN_ADDDATA, qc);
1040 goto leave;
1041 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001042
1043 (*qcb)->sz = 0;
1044 ++*nb_buf;
1045 }
1046 else {
1047 break;
1048 }
1049 }
1050 }
1051
1052 /* Allocate a TX CRYPTO frame only if all the CRYPTO data
1053 * have been buffered.
1054 */
1055 if (!len) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02001056 struct quic_frame *frm;
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +01001057 struct quic_frame *found = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001058
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +01001059 /* There is at most one CRYPTO frame in this packet number
1060 * space. Let's look for it.
1061 */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001062 list_for_each_entry(frm, &qel->pktns->tx.frms, list) {
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +01001063 if (frm->type != QUIC_FT_CRYPTO)
1064 continue;
1065
1066 /* Found */
1067 found = frm;
1068 break;
1069 }
1070
1071 if (found) {
1072 found->crypto.len += cf_len;
1073 }
1074 else {
Frédéric Lécailleb9171912022-04-21 17:32:10 +02001075 frm = pool_zalloc(pool_head_quic_frame);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001076 if (!frm) {
1077 TRACE_ERROR("Could not allocate quic frame", QUIC_EV_CONN_ADDDATA, qc);
1078 goto leave;
1079 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001080
Frédéric Lécailleb9171912022-04-21 17:32:10 +02001081 LIST_INIT(&frm->reflist);
Frédéric Lécailled4ecf942022-01-04 23:15:40 +01001082 frm->type = QUIC_FT_CRYPTO;
1083 frm->crypto.offset = cf_offset;
1084 frm->crypto.len = cf_len;
1085 frm->crypto.qel = qel;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001086 LIST_APPEND(&qel->pktns->tx.frms, &frm->list);
Frédéric Lécailled4ecf942022-01-04 23:15:40 +01001087 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001088 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001089 ret = len == 0;
1090 leave:
1091 TRACE_LEAVE(QUIC_EV_CONN_ADDDATA, qc);
1092 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001093}
1094
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001095/* Prepare the emission of CONNECTION_CLOSE with error <err>. All send/receive
1096 * activity for <qc> will be interrupted.
1097 */
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02001098void quic_set_connection_close(struct quic_conn *qc, const struct quic_err err)
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001099{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001100 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001101 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001102 goto leave;
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001103
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001104 TRACE_STATE("setting immediate close", QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001105 qc->flags |= QUIC_FL_CONN_IMMEDIATE_CLOSE;
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02001106 qc->err.code = err.code;
1107 qc->err.app = err.app;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001108 leave:
1109 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001110}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001111
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01001112/* Set <alert> TLS alert as QUIC CRYPTO_ERROR error */
1113void quic_set_tls_alert(struct quic_conn *qc, int alert)
1114{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001115 TRACE_ENTER(QUIC_EV_CONN_SSLALERT, qc);
1116
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02001117 if (!(qc->flags & QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED)) {
1118 qc->flags |= QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001119 TRACE_DEVEL("dec half open counter", QUIC_EV_CONN_SSLALERT, qc);
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02001120 HA_ATOMIC_DEC(&qc->prx_counters->half_open_conn);
1121 }
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02001122 quic_set_connection_close(qc, quic_err_tls(alert));
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001123 qc->flags |= QUIC_FL_CONN_TLS_ALERT;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001124 TRACE_STATE("Alert set", QUIC_EV_CONN_SSLALERT, qc);
1125
1126 TRACE_LEAVE(QUIC_EV_CONN_SSLALERT, qc);
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01001127}
1128
Frédéric Lécailleb0bd62d2021-12-14 19:34:08 +01001129/* Set the application for <qc> QUIC connection.
1130 * Return 1 if succeeded, 0 if not.
1131 */
1132int quic_set_app_ops(struct quic_conn *qc, const unsigned char *alpn, size_t alpn_len)
1133{
Amaury Denoyelle4b40f192022-01-19 11:29:25 +01001134 if (alpn_len >= 2 && memcmp(alpn, "h3", 2) == 0)
1135 qc->app_ops = &h3_ops;
1136 else if (alpn_len >= 10 && memcmp(alpn, "hq-interop", 10) == 0)
1137 qc->app_ops = &hq_interop_ops;
Frédéric Lécailleb0bd62d2021-12-14 19:34:08 +01001138 else
1139 return 0;
1140
Frédéric Lécailleb0bd62d2021-12-14 19:34:08 +01001141 return 1;
1142}
1143
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001144/* ->add_handshake_data QUIC TLS callback used by the QUIC TLS stack when it
1145 * wants to provide the QUIC layer with CRYPTO data.
1146 * Returns 1 if succeeded, 0 if not.
1147 */
1148int ha_quic_add_handshake_data(SSL *ssl, enum ssl_encryption_level_t level,
1149 const uint8_t *data, size_t len)
1150{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001151 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001152 enum quic_tls_enc_level tel;
1153 struct quic_enc_level *qel;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001154 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001155
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001156 qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
1157 TRACE_ENTER(QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001158
Frédéric Lécaillefc790062022-03-28 17:10:31 +02001159 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001160 TRACE_PROTO("CC required", QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01001161 goto out;
1162 }
1163
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001164 tel = ssl_to_quic_enc_level(level);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001165 if (tel == -1) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001166 TRACE_ERROR("Wrong encryption level", QUIC_EV_CONN_ADDDATA, qc);
1167 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001168 }
1169
Frédéric Lécaille3916ca12022-02-02 14:09:05 +01001170 qel = &qc->els[tel];
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001171 if (!quic_crypto_data_cpy(qc, qel, data, len)) {
1172 TRACE_ERROR("Could not bufferize", QUIC_EV_CONN_ADDDATA, qc);
1173 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001174 }
1175
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001176 TRACE_DEVEL("CRYPTO data buffered", QUIC_EV_CONN_ADDDATA,
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001177 qc, &level, &len);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01001178 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001179 ret = 1;
1180 leave:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001181 TRACE_LEAVE(QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001182 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001183}
1184
1185int ha_quic_flush_flight(SSL *ssl)
1186{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001187 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001188
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001189 TRACE_ENTER(QUIC_EV_CONN_FFLIGHT, qc);
1190 TRACE_LEAVE(QUIC_EV_CONN_FFLIGHT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001191
1192 return 1;
1193}
1194
1195int ha_quic_send_alert(SSL *ssl, enum ssl_encryption_level_t level, uint8_t alert)
1196{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001197 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001198
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001199 TRACE_ENTER(QUIC_EV_CONN_SSLALERT, qc);
1200
1201 TRACE_PROTO("Received TLS alert", QUIC_EV_CONN_SSLALERT, qc, &alert, &level);
1202
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001203 quic_set_tls_alert(qc, alert);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001204 TRACE_LEAVE(QUIC_EV_CONN_SSLALERT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001205 return 1;
1206}
1207
1208/* QUIC TLS methods */
1209static SSL_QUIC_METHOD ha_quic_method = {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001210 .set_encryption_secrets = ha_quic_set_encryption_secrets,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001211 .add_handshake_data = ha_quic_add_handshake_data,
1212 .flush_flight = ha_quic_flush_flight,
1213 .send_alert = ha_quic_send_alert,
1214};
1215
1216/* Initialize the TLS context of a listener with <bind_conf> as configuration.
1217 * Returns an error count.
1218 */
1219int ssl_quic_initial_ctx(struct bind_conf *bind_conf)
1220{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001221 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
1222 int cfgerr = 0;
1223
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001224 long options =
1225 (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) |
1226 SSL_OP_SINGLE_ECDH_USE |
1227 SSL_OP_CIPHER_SERVER_PREFERENCE;
1228 SSL_CTX *ctx;
1229
1230 ctx = SSL_CTX_new(TLS_server_method());
1231 bind_conf->initial_ctx = ctx;
1232
1233 SSL_CTX_set_options(ctx, options);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001234 SSL_CTX_set_mode(ctx, SSL_MODE_RELEASE_BUFFERS);
1235 SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
1236 SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001237
1238#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaillee06f7452022-06-16 15:06:44 +02001239#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001240 if (bind_conf->ssl_conf.early_data) {
1241 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
Frédéric Lécaillead3c07a2021-12-14 19:23:43 +01001242 SSL_CTX_set_max_early_data(ctx, 0xffffffff);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001243 }
1244 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
1245 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
1246#else
1247 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
1248#endif
1249 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
1250#endif
1251 SSL_CTX_set_quic_method(ctx, &ha_quic_method);
1252
1253 return cfgerr;
1254}
1255
1256/* Decode an expected packet number from <truncated_on> its truncated value,
1257 * depending on <largest_pn> the largest received packet number, and <pn_nbits>
1258 * the number of bits used to encode this packet number (its length in bytes * 8).
1259 * See https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#packet-encoding
1260 */
1261static uint64_t decode_packet_number(uint64_t largest_pn,
1262 uint32_t truncated_pn, unsigned int pn_nbits)
1263{
1264 uint64_t expected_pn = largest_pn + 1;
1265 uint64_t pn_win = (uint64_t)1 << pn_nbits;
1266 uint64_t pn_hwin = pn_win / 2;
1267 uint64_t pn_mask = pn_win - 1;
1268 uint64_t candidate_pn;
1269
1270
1271 candidate_pn = (expected_pn & ~pn_mask) | truncated_pn;
1272 /* Note that <pn_win> > <pn_hwin>. */
1273 if (candidate_pn < QUIC_MAX_PACKET_NUM - pn_win &&
1274 candidate_pn + pn_hwin <= expected_pn)
1275 return candidate_pn + pn_win;
1276
1277 if (candidate_pn > expected_pn + pn_hwin && candidate_pn >= pn_win)
1278 return candidate_pn - pn_win;
1279
1280 return candidate_pn;
1281}
1282
1283/* Remove the header protection of <pkt> QUIC packet using <tls_ctx> as QUIC TLS
1284 * cryptographic context.
1285 * <largest_pn> is the largest received packet number and <pn> the address of
1286 * the packet number field for this packet with <byte0> address of its first byte.
1287 * <end> points to one byte past the end of this packet.
1288 * Returns 1 if succeeded, 0 if not.
1289 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001290static int qc_do_rm_hp(struct quic_conn *qc,
1291 struct quic_rx_packet *pkt, struct quic_tls_ctx *tls_ctx,
Frédéric Lécaille99897d12022-08-08 10:28:07 +02001292 int64_t largest_pn, unsigned char *pn, unsigned char *byte0)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001293{
Frédéric Lécaille86a53c52022-08-19 18:18:13 +02001294 int ret, i, pnlen;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001295 uint64_t packet_number;
1296 uint32_t truncated_pn = 0;
1297 unsigned char mask[5] = {0};
1298 unsigned char *sample;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001299 EVP_CIPHER_CTX *cctx = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001300
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001301 TRACE_ENTER(QUIC_EV_CONN_RMHP, qc);
1302
1303 ret = 0;
1304
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001305 /* Check there is enough data in this packet. */
Frédéric Lécaille99897d12022-08-08 10:28:07 +02001306 if (pkt->len - (pn - byte0) < QUIC_PACKET_PN_MAXLEN + sizeof mask) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001307 TRACE_PROTO("too short packet", QUIC_EV_CONN_RMHP, qc, pkt);
1308 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001309 }
1310
1311 cctx = EVP_CIPHER_CTX_new();
1312 if (!cctx) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001313 TRACE_ERROR("memory allocation failed", QUIC_EV_CONN_RMHP, qc, pkt);
1314 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001315 }
1316
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001317 sample = pn + QUIC_PACKET_PN_MAXLEN;
1318
Frédéric Lécaille86a53c52022-08-19 18:18:13 +02001319 if (!quic_tls_aes_decrypt(mask, sample, sizeof mask, tls_ctx->rx.hp_ctx)) {
1320 TRACE_ERROR("HP removing failed", QUIC_EV_CONN_RMHP, qc, pkt);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001321 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001322 }
1323
1324 *byte0 ^= mask[0] & (*byte0 & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f);
1325 pnlen = (*byte0 & QUIC_PACKET_PNL_BITMASK) + 1;
1326 for (i = 0; i < pnlen; i++) {
1327 pn[i] ^= mask[i + 1];
1328 truncated_pn = (truncated_pn << 8) | pn[i];
1329 }
1330
1331 packet_number = decode_packet_number(largest_pn, truncated_pn, pnlen * 8);
1332 /* Store remaining information for this unprotected header */
1333 pkt->pn = packet_number;
1334 pkt->pnl = pnlen;
1335
1336 ret = 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001337 leave:
1338 if (cctx)
1339 EVP_CIPHER_CTX_free(cctx);
1340 TRACE_LEAVE(QUIC_EV_CONN_RMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001341 return ret;
1342}
1343
1344/* Encrypt the payload of a QUIC packet with <pn> as number found at <payload>
1345 * address, with <payload_len> as payload length, <aad> as address of
1346 * the ADD and <aad_len> as AAD length depending on the <tls_ctx> QUIC TLS
1347 * context.
1348 * Returns 1 if succeeded, 0 if not.
1349 */
1350static int quic_packet_encrypt(unsigned char *payload, size_t payload_len,
1351 unsigned char *aad, size_t aad_len, uint64_t pn,
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01001352 struct quic_tls_ctx *tls_ctx, struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001353{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001354 int ret = 0;
Frédéric Lécaillef2f4a4e2022-04-05 12:18:46 +02001355 unsigned char iv[QUIC_TLS_IV_LEN];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001356 unsigned char *tx_iv = tls_ctx->tx.iv;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +01001357 size_t tx_iv_sz = tls_ctx->tx.ivlen;
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001358 struct enc_debug_info edi;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001359
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001360 TRACE_ENTER(QUIC_EV_CONN_ENCPKT, qc);
1361
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001362 if (!quic_aead_iv_build(iv, sizeof iv, tx_iv, tx_iv_sz, pn)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001363 TRACE_ERROR("AEAD IV building for encryption failed", QUIC_EV_CONN_ENCPKT, qc);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001364 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001365 }
1366
1367 if (!quic_tls_encrypt(payload, payload_len, aad, aad_len,
Frédéric Lécaillef4605742022-04-05 10:28:29 +02001368 tls_ctx->tx.ctx, tls_ctx->tx.aead, tls_ctx->tx.key, iv)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001369 TRACE_ERROR("QUIC packet encryption failed", QUIC_EV_CONN_ENCPKT, qc);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001370 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001371 }
1372
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001373 ret = 1;
1374 leave:
1375 TRACE_LEAVE(QUIC_EV_CONN_ENCPKT, qc);
1376 return ret;
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001377
1378 err:
1379 enc_debug_info_init(&edi, payload, payload_len, aad, aad_len, pn);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001380 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001381}
1382
1383/* Decrypt <pkt> QUIC packet with <tls_ctx> as QUIC TLS cryptographic context.
1384 * Returns 1 if succeeded, 0 if not.
1385 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001386static int qc_pkt_decrypt(struct quic_rx_packet *pkt, struct quic_enc_level *qel,
1387 struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001388{
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001389 int ret, kp_changed;
Frédéric Lécaillef2f4a4e2022-04-05 12:18:46 +02001390 unsigned char iv[QUIC_TLS_IV_LEN];
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001391 struct quic_tls_ctx *tls_ctx = &qel->tls_ctx;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +02001392 EVP_CIPHER_CTX *rx_ctx = tls_ctx->rx.ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001393 unsigned char *rx_iv = tls_ctx->rx.iv;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001394 size_t rx_iv_sz = tls_ctx->rx.ivlen;
1395 unsigned char *rx_key = tls_ctx->rx.key;
1396
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001397 TRACE_ENTER(QUIC_EV_CONN_RXPKT, qc);
1398
1399 ret = 0;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001400 kp_changed = 0;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001401
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001402 if (pkt->type == QUIC_PACKET_TYPE_SHORT) {
1403 /* The two tested bits are not at the same position,
1404 * this is why they are first both inversed.
1405 */
1406 if (!(*pkt->data & QUIC_PACKET_KEY_PHASE_BIT) ^ !(tls_ctx->flags & QUIC_FL_TLS_KP_BIT_SET)) {
1407 if (pkt->pn < tls_ctx->rx.pn) {
1408 /* The lowest packet number of a previous key phase
1409 * cannot be null if it really stores previous key phase
1410 * secrets.
1411 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001412 // TODO: check if BUG_ON() more suitable
1413 if (!pkt->qc->ku.prv_rx.pn) {
1414 TRACE_ERROR("null previous packet number", QUIC_EV_CONN_RXPKT, qc);
1415 goto leave;
1416 }
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001417
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +02001418 rx_ctx = pkt->qc->ku.prv_rx.ctx;
1419 rx_iv = pkt->qc->ku.prv_rx.iv;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001420 rx_key = pkt->qc->ku.prv_rx.key;
1421 }
1422 else if (pkt->pn > qel->pktns->rx.largest_pn) {
1423 /* Next key phase */
1424 kp_changed = 1;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +02001425 rx_ctx = pkt->qc->ku.nxt_rx.ctx;
1426 rx_iv = pkt->qc->ku.nxt_rx.iv;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001427 rx_key = pkt->qc->ku.nxt_rx.key;
1428 }
1429 }
1430 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001431
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001432 if (!quic_aead_iv_build(iv, sizeof iv, rx_iv, rx_iv_sz, pkt->pn)) {
1433 TRACE_ERROR("quic_aead_iv_build() failed", QUIC_EV_CONN_RXPKT, qc);
1434 goto leave;
1435 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001436
1437 ret = quic_tls_decrypt(pkt->data + pkt->aad_len, pkt->len - pkt->aad_len,
1438 pkt->data, pkt->aad_len,
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +02001439 rx_ctx, tls_ctx->rx.aead, rx_key, iv);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001440 if (!ret) {
1441 TRACE_ERROR("quic_tls_decrypt() failed", QUIC_EV_CONN_RXPKT, qc);
1442 goto leave;
1443 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001444
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001445 /* Update the keys only if the packet decryption succeeded. */
1446 if (kp_changed) {
1447 quic_tls_rotate_keys(pkt->qc);
1448 /* Toggle the Key Phase bit */
1449 tls_ctx->flags ^= QUIC_FL_TLS_KP_BIT_SET;
1450 /* Store the lowest packet number received for the current key phase */
1451 tls_ctx->rx.pn = pkt->pn;
1452 /* Prepare the next key update */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001453 if (!quic_tls_key_update(pkt->qc)) {
1454 TRACE_ERROR("quic_tls_key_update() failed", QUIC_EV_CONN_RXPKT, qc);
1455 goto leave;
1456 }
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001457 }
1458
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001459 /* Update the packet length (required to parse the frames). */
Frédéric Lécaillef4605742022-04-05 10:28:29 +02001460 pkt->len -= QUIC_TLS_TAG_LEN;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001461 ret = 1;
1462 leave:
1463 TRACE_LEAVE(QUIC_EV_CONN_RXPKT, qc);
Frédéric Lécaille11a6f402022-08-16 14:48:59 +02001464 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001465}
1466
Frédéric Lécaille96367152022-04-25 09:40:19 +02001467
1468/* Remove references to <frm> frame */
1469static void qc_frm_unref(struct quic_conn *qc, struct quic_frame *frm)
1470{
Frédéric Lécaille96367152022-04-25 09:40:19 +02001471 struct quic_frame *f, *tmp;
1472
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001473 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1474
Frédéric Lécaille96367152022-04-25 09:40:19 +02001475 list_for_each_entry_safe(f, tmp, &frm->reflist, ref) {
Frédéric Lécaille96367152022-04-25 09:40:19 +02001476 f->origin = NULL;
1477 LIST_DELETE(&f->ref);
Frédéric Lécailleeba90882022-08-25 16:06:48 +02001478 if (f->pkt) {
1479 TRACE_DEVEL("remove frame reference",
1480 QUIC_EV_CONN_PRSAFRM, qc, f, &f->pkt->pn_node.key);
1481 }
1482 else {
1483 TRACE_DEVEL("remove frame reference for unsent frame",
1484 QUIC_EV_CONN_PRSAFRM, qc, f);
1485 }
Frédéric Lécaille96367152022-04-25 09:40:19 +02001486 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001487
1488 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001489}
1490
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001491/* Release <frm> frame and mark its copies as acknowledged */
Frédéric Lécailleda342552022-04-25 10:28:49 +02001492void qc_release_frm(struct quic_conn *qc, struct quic_frame *frm)
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001493{
1494 uint64_t pn;
1495 struct quic_frame *origin, *f, *tmp;
1496
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001497 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1498
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001499 /* Identify this frame: a frame copy or one of its copies */
1500 origin = frm->origin ? frm->origin : frm;
1501 /* Ensure the source of the copies is flagged as acked, <frm> being
1502 * possibly a copy of <origin>
1503 */
1504 origin->flags |= QUIC_FL_TX_FRAME_ACKED;
1505 /* Mark all the copy of <origin> as acknowledged. We must
1506 * not release the packets (releasing the frames) at this time as
1507 * they are possibly also to be acknowledged alongside the
1508 * the current one.
1509 */
1510 list_for_each_entry_safe(f, tmp, &origin->reflist, ref) {
Frédéric Lécailleeba90882022-08-25 16:06:48 +02001511 if (f->pkt) {
1512 pn = f->pkt->pn_node.key;
1513 TRACE_DEVEL("mark frame as acked from packet",
1514 QUIC_EV_CONN_PRSAFRM, qc, f, &pn);
1515 }
1516 else {
1517 TRACE_DEVEL("mark unsend frame as acked",
1518 QUIC_EV_CONN_PRSAFRM, qc, f);
1519 }
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001520 f->flags |= QUIC_FL_TX_FRAME_ACKED;
1521 f->origin = NULL;
1522 LIST_DELETE(&f->ref);
1523 }
1524 LIST_DELETE(&frm->list);
1525 pn = frm->pkt->pn_node.key;
1526 quic_tx_packet_refdec(frm->pkt);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001527 TRACE_DEVEL("freeing frame from packet",
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001528 QUIC_EV_CONN_PRSAFRM, qc, frm, &pn);
1529 pool_free(pool_head_quic_frame, frm);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001530
1531 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001532}
1533
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001534/* Schedule a CONNECTION_CLOSE emission on <qc> if the MUX has been released
1535 * and all STREAM data are acknowledged. The MUX is responsible to have set
1536 * <qc.err> before as it is reused for the CONNECTION_CLOSE frame.
1537 *
1538 * TODO this should also be called on lost packet detection
1539 */
1540static void qc_check_close_on_released_mux(struct quic_conn *qc)
1541{
1542 struct ssl_sock_ctx *ctx = qc->xprt_ctx;
1543
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001544 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
1545
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001546 if (qc->mux_state == QC_MUX_RELEASED && eb_is_empty(&qc->streams_by_id)) {
1547 /* Reuse errcode which should have been previously set by the MUX on release. */
1548 quic_set_connection_close(qc, qc->err);
1549 tasklet_wakeup(ctx->wait_event.tasklet);
1550 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001551
1552 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001553}
1554
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001555/* Remove from <stream> the acknowledged frames.
Amaury Denoyelle95e50fb2022-03-29 14:50:25 +02001556 *
1557 * Returns 1 if at least one frame was removed else 0.
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001558 */
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001559static int quic_stream_try_to_consume(struct quic_conn *qc,
1560 struct qc_stream_desc *stream)
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001561{
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001562 int ret;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001563 struct eb64_node *frm_node;
1564
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001565 TRACE_ENTER(QUIC_EV_CONN_ACKSTRM, qc);
1566
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001567 ret = 0;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001568 frm_node = eb64_first(&stream->acked_frms);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001569 while (frm_node) {
1570 struct quic_stream *strm;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001571 struct quic_frame *frm;
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001572 size_t offset, len;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001573
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02001574 strm = eb64_entry(frm_node, struct quic_stream, offset);
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001575 offset = strm->offset.key;
1576 len = strm->len;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001577
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001578 if (offset > stream->ack_offset)
1579 break;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001580
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001581 if (qc_stream_desc_ack(&stream, offset, len)) {
Amaury Denoyelle7586bef2022-04-25 14:26:54 +02001582 /* cf. next comment : frame may be freed at this stage. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001583 TRACE_DEVEL("stream consumed", QUIC_EV_CONN_ACKSTRM,
Amaury Denoyelle7586bef2022-04-25 14:26:54 +02001584 qc, stream ? strm : NULL, stream);
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001585 ret = 1;
1586 }
1587
Amaury Denoyelle7586bef2022-04-25 14:26:54 +02001588 /* If stream is NULL after qc_stream_desc_ack(), it means frame
1589 * has been freed. with the stream frames tree. Nothing to do
1590 * anymore in here.
1591 */
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001592 if (!stream) {
1593 qc_check_close_on_released_mux(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001594 ret = 1;
1595 goto leave;
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001596 }
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001597
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001598 frm_node = eb64_next(frm_node);
1599 eb64_delete(&strm->offset);
Amaury Denoyelle7b4c9d62022-02-24 10:50:58 +01001600
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001601 frm = container_of(strm, struct quic_frame, stream);
Frédéric Lécailleda342552022-04-25 10:28:49 +02001602 qc_release_frm(qc, frm);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001603 }
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001604
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001605 leave:
1606 TRACE_LEAVE(QUIC_EV_CONN_ACKSTRM, qc);
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001607 return ret;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001608}
1609
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001610/* Treat <frm> frame whose packet it is attached to has just been acknowledged. */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001611static inline void qc_treat_acked_tx_frm(struct quic_conn *qc,
1612 struct quic_frame *frm)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001613{
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001614 int stream_acked;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001615
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001616 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc, frm);
1617
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001618 stream_acked = 0;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001619 switch (frm->type) {
1620 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
1621 {
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001622 struct quic_stream *strm_frm = &frm->stream;
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001623 struct eb64_node *node = NULL;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001624 struct qc_stream_desc *stream = NULL;
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001625 const size_t offset = strm_frm->offset.key;
1626 const size_t len = strm_frm->len;
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001627
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001628 /* do not use strm_frm->stream as the qc_stream_desc instance
1629 * might be freed at this stage. Use the id to do a proper
Amaury Denoyellee4301da2022-04-19 17:59:50 +02001630 * lookup.
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001631 *
1632 * TODO if lookup operation impact on the perf is noticeable,
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001633 * implement a refcount on qc_stream_desc instances.
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001634 */
Amaury Denoyellee4301da2022-04-19 17:59:50 +02001635 node = eb64_lookup(&qc->streams_by_id, strm_frm->id);
1636 if (!node) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001637 TRACE_DEVEL("acked stream for released stream", QUIC_EV_CONN_ACKSTRM, qc, strm_frm);
Frédéric Lécailleda342552022-04-25 10:28:49 +02001638 qc_release_frm(qc, frm);
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001639 /* early return */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001640 goto leave;
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001641 }
Amaury Denoyellee4301da2022-04-19 17:59:50 +02001642 stream = eb64_entry(node, struct qc_stream_desc, by_id);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001643
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001644 TRACE_DEVEL("acked stream", QUIC_EV_CONN_ACKSTRM, qc, strm_frm, stream);
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001645 if (offset <= stream->ack_offset) {
1646 if (qc_stream_desc_ack(&stream, offset, len)) {
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001647 stream_acked = 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001648 TRACE_DEVEL("stream consumed", QUIC_EV_CONN_ACKSTRM,
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001649 qc, strm_frm, stream);
1650 }
Amaury Denoyelle0c7679d2022-02-24 10:56:33 +01001651
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001652 if (!stream) {
1653 /* no need to continue if stream freed. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001654 TRACE_DEVEL("stream released and freed", QUIC_EV_CONN_ACKSTRM, qc);
Frédéric Lécailleda342552022-04-25 10:28:49 +02001655 qc_release_frm(qc, frm);
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001656 qc_check_close_on_released_mux(qc);
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001657 break;
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001658 }
1659
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001660 TRACE_DEVEL("stream consumed", QUIC_EV_CONN_ACKSTRM,
Frédéric Lécailleda342552022-04-25 10:28:49 +02001661 qc, strm_frm, stream);
1662 qc_release_frm(qc, frm);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001663 }
1664 else {
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001665 eb64_insert(&stream->acked_frms, &strm_frm->offset);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001666 }
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001667
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001668 stream_acked |= quic_stream_try_to_consume(qc, stream);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001669 }
1670 break;
1671 default:
Frédéric Lécailleda342552022-04-25 10:28:49 +02001672 qc_release_frm(qc, frm);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001673 }
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001674
Frédéric Lécaille89a2ceb2022-04-20 15:59:07 +02001675 if (stream_acked && qc->mux_state == QC_MUX_READY) {
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001676 struct qcc *qcc = qc->qcc;
1677
1678 if (qcc->subs && qcc->subs->events & SUB_RETRY_SEND) {
1679 tasklet_wakeup(qcc->subs->tasklet);
1680 qcc->subs->events &= ~SUB_RETRY_SEND;
1681 if (!qcc->subs->events)
1682 qcc->subs = NULL;
1683 }
1684 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001685 leave:
1686 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001687}
1688
1689/* Remove <largest> down to <smallest> node entries from <pkts> tree of TX packet,
1690 * deallocating them, and their TX frames.
1691 * Returns the last node reached to be used for the next range.
1692 * May be NULL if <largest> node could not be found.
1693 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001694static inline struct eb64_node *qc_ackrng_pkts(struct quic_conn *qc,
1695 struct eb_root *pkts,
1696 unsigned int *pkt_flags,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001697 struct list *newly_acked_pkts,
1698 struct eb64_node *largest_node,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001699 uint64_t largest, uint64_t smallest)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001700{
1701 struct eb64_node *node;
1702 struct quic_tx_packet *pkt;
1703
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001704 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1705
Frédéric Lécaille843399f2022-07-22 16:27:44 +02001706 node = largest_node ? largest_node : eb64_lookup_le(pkts, largest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001707 while (node && node->key >= smallest) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02001708 struct quic_frame *frm, *frmbak;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001709
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02001710 pkt = eb64_entry(node, struct quic_tx_packet, pn_node);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001711 *pkt_flags |= pkt->flags;
Willy Tarreau2b718102021-04-21 07:32:39 +02001712 LIST_INSERT(newly_acked_pkts, &pkt->list);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001713 TRACE_DEVEL("Removing packet #", QUIC_EV_CONN_PRSAFRM, qc, NULL, &pkt->pn_node.key);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001714 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list)
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001715 qc_treat_acked_tx_frm(qc, frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001716 node = eb64_prev(node);
1717 eb64_delete(&pkt->pn_node);
1718 }
1719
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001720 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001721 return node;
1722}
1723
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001724/* Remove all frames from <pkt_frm_list> and reinsert them in the
1725 * same order they have been sent into <pktns_frm_list>.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001726 */
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001727static inline void qc_requeue_nacked_pkt_tx_frms(struct quic_conn *qc,
Frédéric Lécaille96367152022-04-25 09:40:19 +02001728 struct quic_tx_packet *pkt,
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001729 struct list *pktns_frm_list)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001730{
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001731 struct quic_frame *frm, *frmbak;
1732 struct list tmp = LIST_HEAD_INIT(tmp);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001733 struct list *pkt_frm_list = &pkt->frms;
Frédéric Lécaille1ba25c22022-08-18 17:21:19 +02001734 uint64_t pn = pkt->pn_node.key;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001735
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001736 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1737
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001738 list_for_each_entry_safe(frm, frmbak, pkt_frm_list, list) {
Frédéric Lécaille96367152022-04-25 09:40:19 +02001739 /* First remove this frame from the packet it was attached to */
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001740 LIST_DELETE(&frm->list);
Frédéric Lécaille1ba25c22022-08-18 17:21:19 +02001741 quic_tx_packet_refdec(pkt);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001742 /* At this time, this frame is not freed but removed from its packet */
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001743 frm->pkt = NULL;
Frédéric Lécaille96367152022-04-25 09:40:19 +02001744 /* Remove any reference to this frame */
1745 qc_frm_unref(qc, frm);
1746 switch (frm->type) {
1747 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
1748 {
1749 struct quic_stream *strm_frm = &frm->stream;
1750 struct eb64_node *node = NULL;
1751 struct qc_stream_desc *stream_desc;
1752
1753 node = eb64_lookup(&qc->streams_by_id, strm_frm->id);
1754 if (!node) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001755 TRACE_DEVEL("released stream", QUIC_EV_CONN_PRSAFRM, qc, frm);
1756 TRACE_DEVEL("freeing frame from packet", QUIC_EV_CONN_PRSAFRM,
Frédéric Lécaille96367152022-04-25 09:40:19 +02001757 qc, frm, &pn);
1758 pool_free(pool_head_quic_frame, frm);
1759 continue;
1760 }
1761
1762 stream_desc = eb64_entry(node, struct qc_stream_desc, by_id);
1763 /* Do not resend this frame if in the "already acked range" */
1764 if (strm_frm->offset.key + strm_frm->len <= stream_desc->ack_offset) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001765 TRACE_DEVEL("ignored frame in already acked range",
Frédéric Lécaille96367152022-04-25 09:40:19 +02001766 QUIC_EV_CONN_PRSAFRM, qc, frm);
1767 continue;
1768 }
1769 else if (strm_frm->offset.key < stream_desc->ack_offset) {
1770 strm_frm->offset.key = stream_desc->ack_offset;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001771 TRACE_DEVEL("updated partially acked frame",
Frédéric Lécaille96367152022-04-25 09:40:19 +02001772 QUIC_EV_CONN_PRSAFRM, qc, frm);
1773 }
Frédéric Lécaille96367152022-04-25 09:40:19 +02001774 break;
1775 }
1776
1777 default:
1778 break;
1779 }
1780
1781 /* Do not resend probing packet with old data */
1782 if (pkt->flags & QUIC_FL_TX_PACKET_PROBE_WITH_OLD_DATA) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001783 TRACE_DEVEL("ignored frame with old data from packet", QUIC_EV_CONN_PRSAFRM,
1784 qc, frm, &pn);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001785 if (frm->origin)
1786 LIST_DELETE(&frm->ref);
1787 pool_free(pool_head_quic_frame, frm);
1788 continue;
1789 }
1790
1791 if (frm->flags & QUIC_FL_TX_FRAME_ACKED) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001792 TRACE_DEVEL("already acked frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
1793 TRACE_DEVEL("freeing frame from packet", QUIC_EV_CONN_PRSAFRM,
Frédéric Lécaille96367152022-04-25 09:40:19 +02001794 qc, frm, &pn);
1795 pool_free(pool_head_quic_frame, frm);
1796 }
1797 else {
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02001798 if (QUIC_FT_STREAM_8 <= frm->type && frm->type <= QUIC_FT_STREAM_F) {
1799 /* Mark this STREAM frame as lost. A look up their stream descriptor
1800 * will be performed to check the stream is not consumed or released.
1801 */
Amaury Denoyellef372e742022-08-16 14:41:57 +02001802 frm->flags |= QUIC_FL_TX_FRAME_LOST;
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02001803 }
Frédéric Lécaille96367152022-04-25 09:40:19 +02001804 LIST_APPEND(&tmp, &frm->list);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001805 TRACE_DEVEL("frame requeued", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001806 }
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001807 }
1808
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001809 LIST_SPLICE(pktns_frm_list, &tmp);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001810
1811 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001812}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001813
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001814/* Free <pkt> TX packet and its attached frames.
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05001815 * This is the responsibility of the caller to remove this packet of
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001816 * any data structure it was possibly attached to.
1817 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001818static inline void free_quic_tx_packet(struct quic_conn *qc,
1819 struct quic_tx_packet *pkt)
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001820{
1821 struct quic_frame *frm, *frmbak;
1822
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001823 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
1824
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001825 if (!pkt)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001826 goto leave;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001827
1828 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list) {
1829 LIST_DELETE(&frm->list);
1830 pool_free(pool_head_quic_frame, frm);
1831 }
1832 pool_free(pool_head_quic_tx_packet, pkt);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001833
1834 leave:
1835 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001836}
1837
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001838/* Free the TX packets of <pkts> list */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001839static inline void free_quic_tx_pkts(struct quic_conn *qc, struct list *pkts)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001840{
1841 struct quic_tx_packet *pkt, *tmp;
1842
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001843 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
1844
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001845 list_for_each_entry_safe(pkt, tmp, pkts, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001846 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001847 eb64_delete(&pkt->pn_node);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001848 free_quic_tx_packet(qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001849 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001850
1851 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001852}
1853
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001854/* Remove already sent ranges of acknowledged packet numbers from
1855 * <pktns> packet number space tree below <largest_acked_pn> possibly
1856 * updating the range which contains <largest_acked_pn>.
1857 * Never fails.
1858 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001859static void qc_treat_ack_of_ack(struct quic_conn *qc,
1860 struct quic_pktns *pktns,
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001861 int64_t largest_acked_pn)
1862{
1863 struct eb64_node *ar, *next_ar;
1864 struct quic_arngs *arngs = &pktns->rx.arngs;
1865
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001866 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1867
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001868 ar = eb64_first(&arngs->root);
1869 while (ar) {
1870 struct quic_arng_node *ar_node;
1871
1872 next_ar = eb64_next(ar);
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02001873 ar_node = eb64_entry(ar, struct quic_arng_node, first);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001874
1875 if ((int64_t)ar_node->first.key > largest_acked_pn) {
1876 TRACE_DEVEL("first.key > largest", QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001877 break;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001878 }
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001879
1880 if (largest_acked_pn < ar_node->last) {
1881 eb64_delete(ar);
1882 ar_node->first.key = largest_acked_pn + 1;
1883 eb64_insert(&arngs->root, ar);
1884 break;
1885 }
1886
1887 eb64_delete(ar);
1888 pool_free(pool_head_quic_arng, ar_node);
1889 arngs->sz--;
1890 ar = next_ar;
1891 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001892
1893 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001894}
1895
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001896/* Send a packet ack event nofication for each newly acked packet of
1897 * <newly_acked_pkts> list and free them.
1898 * Always succeeds.
1899 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001900static inline void qc_treat_newly_acked_pkts(struct quic_conn *qc,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001901 struct list *newly_acked_pkts)
1902{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001903 struct quic_tx_packet *pkt, *tmp;
1904 struct quic_cc_event ev = { .type = QUIC_CC_EVT_ACK, };
1905
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001906 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1907
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001908 list_for_each_entry_safe(pkt, tmp, newly_acked_pkts, list) {
1909 pkt->pktns->tx.in_flight -= pkt->in_flight_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01001910 qc->path->prep_in_flight -= pkt->in_flight_len;
Frédéric Lécailleba9db402022-03-01 17:06:50 +01001911 qc->path->in_flight -= pkt->in_flight_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001912 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01001913 qc->path->ifae_pkts--;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001914 /* If this packet contained an ACK frame, proceed to the
1915 * acknowledging of range of acks from the largest acknowledged
1916 * packet number which was sent in an ACK frame by this packet.
1917 */
1918 if (pkt->largest_acked_pn != -1)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001919 qc_treat_ack_of_ack(qc, pkt->pktns, pkt->largest_acked_pn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001920 ev.ack.acked = pkt->in_flight_len;
1921 ev.ack.time_sent = pkt->time_sent;
1922 quic_cc_event(&qc->path->cc, &ev);
Willy Tarreau2b718102021-04-21 07:32:39 +02001923 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001924 eb64_delete(&pkt->pn_node);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001925 quic_tx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001926 }
1927
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001928 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
1929
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001930}
1931
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01001932/* Release all the frames attached to <pktns> packet number space */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001933static inline void qc_release_pktns_frms(struct quic_conn *qc,
1934 struct quic_pktns *pktns)
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01001935{
1936 struct quic_frame *frm, *frmbak;
1937
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001938 TRACE_ENTER(QUIC_EV_CONN_PHPKTS, qc);
1939
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01001940 list_for_each_entry_safe(frm, frmbak, &pktns->tx.frms, list) {
1941 LIST_DELETE(&frm->list);
1942 pool_free(pool_head_quic_frame, frm);
1943 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001944
1945 TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01001946}
1947
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001948/* Handle <pkts> list of lost packets detected at <now_us> handling
1949 * their TX frames.
1950 * Send a packet loss event to the congestion controller if
1951 * in flight packet have been lost.
1952 * Also frees the packet in <pkts> list.
1953 * Never fails.
1954 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001955static inline void qc_release_lost_pkts(struct quic_conn *qc,
1956 struct quic_pktns *pktns,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001957 struct list *pkts,
1958 uint64_t now_us)
1959{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001960 struct quic_tx_packet *pkt, *tmp, *oldest_lost, *newest_lost;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001961
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001962 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1963
Frédéric Lécaille277c4622022-08-24 17:06:04 +02001964 if (LIST_ISEMPTY(pkts))
1965 goto leave;
1966
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001967 oldest_lost = newest_lost = NULL;
1968 list_for_each_entry_safe(pkt, tmp, pkts, list) {
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001969 struct list tmp = LIST_HEAD_INIT(tmp);
1970
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001971 pkt->pktns->tx.in_flight -= pkt->in_flight_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01001972 qc->path->prep_in_flight -= pkt->in_flight_len;
Frédéric Lécailleba9db402022-03-01 17:06:50 +01001973 qc->path->in_flight -= pkt->in_flight_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001974 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01001975 qc->path->ifae_pkts--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001976 /* Treat the frames of this lost packet. */
Frédéric Lécaille96367152022-04-25 09:40:19 +02001977 qc_requeue_nacked_pkt_tx_frms(qc, pkt, &pktns->tx.frms);
Willy Tarreau2b718102021-04-21 07:32:39 +02001978 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001979 if (!oldest_lost) {
1980 oldest_lost = newest_lost = pkt;
1981 }
1982 else {
1983 if (newest_lost != oldest_lost)
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001984 quic_tx_packet_refdec(newest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001985 newest_lost = pkt;
1986 }
1987 }
1988
Frédéric Lécaillea5ee0ae2022-03-02 14:52:56 +01001989 if (newest_lost) {
1990 /* Sent a congestion event to the controller */
Benoit DOLEZ69e3f052022-06-08 09:28:56 +02001991 struct quic_cc_event ev = { };
1992
1993 ev.type = QUIC_CC_EVT_LOSS;
1994 ev.loss.time_sent = newest_lost->time_sent;
Frédéric Lécaillea5ee0ae2022-03-02 14:52:56 +01001995
1996 quic_cc_event(&qc->path->cc, &ev);
1997 }
1998
1999 /* If an RTT have been already sampled, <rtt_min> has been set.
2000 * We must check if we are experiencing a persistent congestion.
2001 * If this is the case, the congestion controller must re-enter
2002 * slow start state.
2003 */
2004 if (qc->path->loss.rtt_min && newest_lost != oldest_lost) {
2005 unsigned int period = newest_lost->time_sent - oldest_lost->time_sent;
2006
2007 if (quic_loss_persistent_congestion(&qc->path->loss, period,
2008 now_ms, qc->max_ack_delay))
2009 qc->path->cc.algo->slow_start(&qc->path->cc);
2010 }
2011
Frédéric Lécaille277c4622022-08-24 17:06:04 +02002012 quic_tx_packet_refdec(oldest_lost);
2013 if (newest_lost != oldest_lost)
2014 quic_tx_packet_refdec(newest_lost);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002015
Frédéric Lécaille277c4622022-08-24 17:06:04 +02002016 leave:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002017 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002018}
2019
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002020/* Parse ACK frame into <frm> from a buffer at <buf> address with <end> being at
2021 * one byte past the end of this buffer. Also update <rtt_sample> if needed, i.e.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05002022 * 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 +01002023 * acked ack-eliciting packet.
2024 * Return 1, if succeeded, 0 if not.
2025 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002026static inline int qc_parse_ack_frm(struct quic_conn *qc,
2027 struct quic_frame *frm,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002028 struct quic_enc_level *qel,
2029 unsigned int *rtt_sample,
2030 const unsigned char **pos, const unsigned char *end)
2031{
2032 struct quic_ack *ack = &frm->ack;
2033 uint64_t smallest, largest;
2034 struct eb_root *pkts;
2035 struct eb64_node *largest_node;
2036 unsigned int time_sent, pkt_flags;
2037 struct list newly_acked_pkts = LIST_HEAD_INIT(newly_acked_pkts);
2038 struct list lost_pkts = LIST_HEAD_INIT(lost_pkts);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002039 int ret = 0;
2040
2041 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002042
2043 if (ack->largest_ack > qel->pktns->tx.next_pn) {
2044 TRACE_DEVEL("ACK for not sent packet", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002045 qc, NULL, &ack->largest_ack);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002046 goto err;
2047 }
2048
2049 if (ack->first_ack_range > ack->largest_ack) {
2050 TRACE_DEVEL("too big first ACK range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002051 qc, NULL, &ack->first_ack_range);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002052 goto err;
2053 }
2054
2055 largest = ack->largest_ack;
2056 smallest = largest - ack->first_ack_range;
2057 pkts = &qel->pktns->tx.pkts;
2058 pkt_flags = 0;
2059 largest_node = NULL;
2060 time_sent = 0;
2061
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02002062 if ((int64_t)ack->largest_ack > qel->pktns->rx.largest_acked_pn) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002063 largest_node = eb64_lookup(pkts, largest);
2064 if (!largest_node) {
2065 TRACE_DEVEL("Largest acked packet not found",
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002066 QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille83b7a5b2021-11-17 16:16:04 +01002067 }
2068 else {
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02002069 time_sent = eb64_entry(largest_node,
Frédéric Lécaille83b7a5b2021-11-17 16:16:04 +01002070 struct quic_tx_packet, pn_node)->time_sent;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002071 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002072 }
2073
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002074 TRACE_PROTO("rcvd ack range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002075 qc, NULL, &largest, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002076 do {
2077 uint64_t gap, ack_range;
2078
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002079 qc_ackrng_pkts(qc, pkts, &pkt_flags, &newly_acked_pkts,
2080 largest_node, largest, smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002081 if (!ack->ack_range_num--)
2082 break;
2083
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002084 if (!quic_dec_int(&gap, pos, end)) {
2085 TRACE_ERROR("quic_dec_int(gap) failed", QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002086 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002087 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002088
2089 if (smallest < gap + 2) {
2090 TRACE_DEVEL("wrong gap value", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002091 qc, NULL, &gap, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002092 goto err;
2093 }
2094
2095 largest = smallest - gap - 2;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002096 if (!quic_dec_int(&ack_range, pos, end)) {
2097 TRACE_ERROR("quic_dec_int(ack_range) failed", QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002098 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002099 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002100
2101 if (largest < ack_range) {
2102 TRACE_DEVEL("wrong ack range value", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002103 qc, NULL, &largest, &ack_range);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002104 goto err;
2105 }
2106
2107 /* Do not use this node anymore. */
2108 largest_node = NULL;
2109 /* Next range */
2110 smallest = largest - ack_range;
2111
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002112 TRACE_PROTO("rcvd next ack range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002113 qc, NULL, &largest, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002114 } while (1);
2115
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002116 if (time_sent && (pkt_flags & QUIC_FL_TX_PACKET_ACK_ELICITING)) {
2117 *rtt_sample = tick_remain(time_sent, now_ms);
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02002118 qel->pktns->rx.largest_acked_pn = ack->largest_ack;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002119 }
2120
2121 if (!LIST_ISEMPTY(&newly_acked_pkts)) {
2122 if (!eb_is_empty(&qel->pktns->tx.pkts)) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002123 qc_packet_loss_lookup(qel->pktns, qc, &lost_pkts);
Frédéric Lécaille277c4622022-08-24 17:06:04 +02002124 qc_release_lost_pkts(qc, qel->pktns, &lost_pkts, now_ms);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002125 }
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002126 qc_treat_newly_acked_pkts(qc, &newly_acked_pkts);
2127 if (quic_peer_validated_addr(qc))
2128 qc->path->loss.pto_count = 0;
2129 qc_set_timer(qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002130 }
2131
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002132 ret = 1;
2133 leave:
2134 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
2135 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002136
2137 err:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002138 free_quic_tx_pkts(qc, &newly_acked_pkts);
2139 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002140}
2141
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02002142/* This function gives the detail of the SSL error. It is used only
2143 * if the debug mode and the verbose mode are activated. It dump all
2144 * the SSL error until the stack was empty.
2145 */
2146static forceinline void qc_ssl_dump_errors(struct connection *conn)
2147{
2148 if (unlikely(global.mode & MODE_DEBUG)) {
2149 while (1) {
Willy Tarreau325fc632022-04-11 18:47:38 +02002150 const char *func = NULL;
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02002151 unsigned long ret;
2152
Willy Tarreau325fc632022-04-11 18:47:38 +02002153 ERR_peek_error_func(&func);
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02002154 ret = ERR_get_error();
2155 if (!ret)
2156 return;
2157
2158 fprintf(stderr, "conn. @%p OpenSSL error[0x%lx] %s: %s\n", conn, ret,
Willy Tarreau325fc632022-04-11 18:47:38 +02002159 func, ERR_reason_error_string(ret));
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02002160 }
2161 }
2162}
2163
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01002164int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx,
2165 const char **str, int *len);
2166
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002167/* Provide CRYPTO data to the TLS stack found at <data> with <len> as length
2168 * from <qel> encryption level with <ctx> as QUIC connection context.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05002169 * Remaining parameter are there for debugging purposes.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002170 * Return 1 if succeeded, 0 if not.
2171 */
2172static inline int qc_provide_cdata(struct quic_enc_level *el,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002173 struct ssl_sock_ctx *ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002174 const unsigned char *data, size_t len,
2175 struct quic_rx_packet *pkt,
2176 struct quic_rx_crypto_frm *cf)
2177{
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02002178 int ssl_err, state;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002179 struct quic_conn *qc;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002180 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002181
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002182 ssl_err = SSL_ERROR_NONE;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01002183 qc = ctx->qc;
2184
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002185 TRACE_ENTER(QUIC_EV_CONN_SSLDATA, qc);
2186
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002187 if (SSL_provide_quic_data(ctx->ssl, el->level, data, len) != 1) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002188 TRACE_ERROR("SSL_provide_quic_data() error",
Frédéric Lécaillefde2a982021-12-27 15:12:09 +01002189 QUIC_EV_CONN_SSLDATA, qc, pkt, cf, ctx->ssl);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002190 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002191 }
2192
2193 el->rx.crypto.offset += len;
2194 TRACE_PROTO("in order CRYPTO data",
Frédéric Lécaillee7ff2b22021-12-22 17:40:38 +01002195 QUIC_EV_CONN_SSLDATA, qc, NULL, cf, ctx->ssl);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002196
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002197 state = qc->state;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02002198 if (state < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002199 ssl_err = SSL_do_handshake(ctx->ssl);
2200 if (ssl_err != 1) {
2201 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
2202 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002203 TRACE_PROTO("SSL handshake in progress",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002204 QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002205 goto out;
2206 }
2207
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02002208 /* TODO: Should close the connection asap */
2209 if (!(qc->flags & QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED)) {
2210 qc->flags |= QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED;
2211 HA_ATOMIC_DEC(&qc->prx_counters->half_open_conn);
2212 HA_ATOMIC_INC(&qc->prx_counters->hdshk_fail);
2213 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002214 TRACE_ERROR("SSL handshake error", QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaille7c881bd2021-09-28 09:05:59 +02002215 qc_ssl_dump_errors(ctx->conn);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01002216 ERR_clear_error();
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002217 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002218 }
2219
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002220 TRACE_PROTO("SSL handshake OK", QUIC_EV_CONN_IO_CB, qc, &state);
Frédéric Lécaillebc964bd2022-04-13 16:20:09 +02002221
2222 /* Check the alpn could be negotiated */
2223 if (!qc->app_ops) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002224 TRACE_ERROR("No negotiated ALPN", QUIC_EV_CONN_IO_CB, qc, &state);
Frédéric Lécaillebc964bd2022-04-13 16:20:09 +02002225 quic_set_tls_alert(qc, SSL_AD_NO_APPLICATION_PROTOCOL);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002226 goto leave;
Frédéric Lécaillebc964bd2022-04-13 16:20:09 +02002227 }
2228
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02002229 if (!(qc->flags & QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002230 TRACE_DEVEL("dec half open counter", QUIC_EV_CONN_IO_CB, qc, &state);
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02002231 qc->flags |= QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED;
2232 HA_ATOMIC_DEC(&qc->prx_counters->half_open_conn);
2233 }
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002234 /* I/O callback switch */
2235 ctx->wait_event.tasklet->process = quic_conn_app_io_cb;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01002236 if (qc_is_listener(ctx->qc)) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002237 qc->state = QUIC_HS_ST_CONFIRMED;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01002238 /* The connection is ready to be accepted. */
2239 quic_accept_push_qc(qc);
2240 }
2241 else {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002242 qc->state = QUIC_HS_ST_COMPLETE;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01002243 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002244 } else {
2245 ssl_err = SSL_process_quic_post_handshake(ctx->ssl);
2246 if (ssl_err != 1) {
2247 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
2248 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002249 TRACE_PROTO("SSL post handshake in progress",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002250 QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002251 goto out;
2252 }
2253
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002254 TRACE_ERROR("SSL post handshake error",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002255 QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002256 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002257 }
2258
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002259 TRACE_STATE("SSL post handshake succeeded", QUIC_EV_CONN_IO_CB, qc, &state);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002260 }
Amaury Denoyellee2288c32021-12-03 14:44:21 +01002261
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002262 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002263 ret = 1;
2264 leave:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002265 TRACE_LEAVE(QUIC_EV_CONN_SSLDATA, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002266 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002267}
2268
Amaury Denoyellef8db5aa2022-05-24 15:26:07 +02002269/* Parse a STREAM frame <strm_frm>
2270 *
2271 * Return 1 on success. On error, 0 is returned. In this case, the packet
2272 * containing the frame must not be acknowledged.
Amaury Denoyelle74cf2372022-04-29 15:58:22 +02002273 */
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002274static inline int qc_handle_strm_frm(struct quic_rx_packet *pkt,
2275 struct quic_stream *strm_frm,
2276 struct quic_conn *qc)
2277{
Amaury Denoyellef8db5aa2022-05-24 15:26:07 +02002278 int ret;
2279
Amaury Denoyelle74cf2372022-04-29 15:58:22 +02002280 /* RFC9000 13.1. Packet Processing
2281 *
2282 * A packet MUST NOT be acknowledged until packet protection has been
2283 * successfully removed and all frames contained in the packet have
2284 * been processed. For STREAM frames, this means the data has been
2285 * enqueued in preparation to be received by the application protocol,
2286 * but it does not require that data be delivered and consumed.
2287 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002288 TRACE_ENTER(QUIC_EV_CONN_PRSFRM, qc);
2289
Amaury Denoyellef8db5aa2022-05-24 15:26:07 +02002290 ret = qcc_recv(qc->qcc, strm_frm->id, strm_frm->len,
2291 strm_frm->offset.key, strm_frm->fin,
2292 (char *)strm_frm->data);
Amaury Denoyelle74cf2372022-04-29 15:58:22 +02002293
Amaury Denoyellef8db5aa2022-05-24 15:26:07 +02002294 /* frame rejected - packet must not be acknowledeged */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002295 TRACE_LEAVE(QUIC_EV_CONN_PRSFRM, qc);
2296 return !ret;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002297}
2298
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002299/* Duplicate all frames from <pkt_frm_list> list into <out_frm_list> list
2300 * for <qc> QUIC connection.
2301 * This is a best effort function which never fails even if no memory could be
2302 * allocated to duplicate these frames.
2303 */
2304static void qc_dup_pkt_frms(struct quic_conn *qc,
2305 struct list *pkt_frm_list, struct list *out_frm_list)
2306{
2307 struct quic_frame *frm, *frmbak;
2308 struct list tmp = LIST_HEAD_INIT(tmp);
2309
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002310 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
2311
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002312 list_for_each_entry_safe(frm, frmbak, pkt_frm_list, list) {
2313 struct quic_frame *dup_frm, *origin;
2314
2315 switch (frm->type) {
2316 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
2317 {
2318 struct quic_stream *strm_frm = &frm->stream;
2319 struct eb64_node *node = NULL;
2320 struct qc_stream_desc *stream_desc;
2321
2322 node = eb64_lookup(&qc->streams_by_id, strm_frm->id);
2323 if (!node) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002324 TRACE_DEVEL("ignored frame for a released stream", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002325 continue;
2326 }
2327
2328 stream_desc = eb64_entry(node, struct qc_stream_desc, by_id);
2329 /* Do not resend this frame if in the "already acked range" */
2330 if (strm_frm->offset.key + strm_frm->len <= stream_desc->ack_offset) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002331 TRACE_DEVEL("ignored frame in already acked range",
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002332 QUIC_EV_CONN_PRSAFRM, qc, frm);
2333 continue;
2334 }
2335 else if (strm_frm->offset.key < stream_desc->ack_offset) {
2336 strm_frm->offset.key = stream_desc->ack_offset;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002337 TRACE_DEVEL("updated partially acked frame",
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002338 QUIC_EV_CONN_PRSAFRM, qc, frm);
2339 }
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002340 break;
2341 }
2342
2343 default:
2344 break;
2345 }
2346
Frédéric Lécaille4173a392022-08-18 08:20:47 +02002347 dup_frm = pool_alloc(pool_head_quic_frame);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002348 if (!dup_frm) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002349 TRACE_ERROR("could not duplicate frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002350 break;
2351 }
2352
2353 /* If <frm> is already a copy of another frame, we must take
2354 * its original frame as source for the copy.
2355 */
2356 origin = frm->origin ? frm->origin : frm;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002357 TRACE_DEVEL("built probing frame", QUIC_EV_CONN_PRSAFRM, qc, origin);
Frédéric Lécaillee35463c2022-08-27 10:19:42 +02002358 if (origin->pkt)
2359 TRACE_DEVEL("duplicated from packet", QUIC_EV_CONN_PRSAFRM,
2360 qc, NULL, &origin->pkt->pn_node.key);
2361 else {
2362 /* <origin> is a frame which was sent from a packet detected as lost. */
2363 TRACE_DEVEL("duplicated from lost packet", QUIC_EV_CONN_PRSAFRM, qc);
2364 }
Frédéric Lécaille4173a392022-08-18 08:20:47 +02002365 *dup_frm = *origin;
2366 dup_frm->pkt = NULL;
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002367 dup_frm->origin = origin;
Frédéric Lécaille4173a392022-08-18 08:20:47 +02002368 dup_frm->flags = 0;
2369 LIST_INIT(&dup_frm->reflist);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002370 LIST_APPEND(&origin->reflist, &dup_frm->ref);
2371 LIST_APPEND(&tmp, &dup_frm->list);
2372 }
2373
2374 LIST_SPLICE(out_frm_list, &tmp);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002375
2376 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002377}
2378
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002379/* Prepare a fast retransmission from <qel> encryption level */
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002380static void qc_prep_fast_retrans(struct quic_conn *qc,
2381 struct quic_enc_level *qel,
2382 struct list *frms1, struct list *frms2)
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002383{
2384 struct eb_root *pkts = &qel->pktns->tx.pkts;
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002385 struct list *frms = frms1;
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002386 struct eb64_node *node;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002387 struct quic_tx_packet *pkt;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002388
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002389 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
2390
2391 BUG_ON(frms1 == frms2);
2392
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002393 pkt = NULL;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002394 node = eb64_first(pkts);
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002395 start:
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002396 while (node) {
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002397 pkt = eb64_entry(node, struct quic_tx_packet, pn_node);
2398 node = eb64_next(node);
2399 /* Skip the empty and coalesced packets */
Frédéric Lécailleb44cbc62022-04-21 17:58:46 +02002400 if (!LIST_ISEMPTY(&pkt->frms) && !(pkt->flags & QUIC_FL_TX_PACKET_COALESCED))
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002401 break;
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002402 }
2403
2404 if (!pkt)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002405 goto leave;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002406
Frédéric Lécaille12fd2592022-03-31 08:42:06 +02002407 /* When building a packet from another one, the field which may increase the
2408 * packet size is the packet number. And the maximum increase is 4 bytes.
2409 */
2410 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc) &&
2411 pkt->len + 4 > 3 * qc->rx.bytes - qc->tx.prep_bytes) {
2412 TRACE_PROTO("anti-amplification limit would be reached", QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002413 goto leave;
Frédéric Lécaille12fd2592022-03-31 08:42:06 +02002414 }
2415
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002416 TRACE_DEVEL("duplicating packet", QUIC_EV_CONN_PRSAFRM, qc, NULL, &pkt->pn_node.key);
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002417 qc_dup_pkt_frms(qc, &pkt->frms, frms);
2418 if (frms == frms1 && frms2) {
2419 frms = frms2;
2420 goto start;
2421 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002422 leave:
2423 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002424}
2425
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002426/* Prepare a fast retransmission during a handshake after a client
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002427 * has resent Initial packets. According to the RFC a server may retransmit
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002428 * Initial packets send them coalescing with others (Handshake here).
2429 * (Listener only function).
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002430 */
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002431static void qc_prep_hdshk_fast_retrans(struct quic_conn *qc,
2432 struct list *ifrms, struct list *hfrms)
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002433{
2434 struct list itmp = LIST_HEAD_INIT(itmp);
2435 struct list htmp = LIST_HEAD_INIT(htmp);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002436
2437 struct quic_enc_level *iqel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
2438 struct quic_enc_level *hqel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
2439 struct quic_enc_level *qel = iqel;
2440 struct eb_root *pkts;
2441 struct eb64_node *node;
2442 struct quic_tx_packet *pkt;
2443 struct list *tmp = &itmp;
2444
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002445 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002446 start:
2447 pkt = NULL;
2448 pkts = &qel->pktns->tx.pkts;
2449 node = eb64_first(pkts);
2450 /* Skip the empty packet (they have already been retransmitted) */
2451 while (node) {
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02002452 pkt = eb64_entry(node, struct quic_tx_packet, pn_node);
Frédéric Lécailleb44cbc62022-04-21 17:58:46 +02002453 if (!LIST_ISEMPTY(&pkt->frms) && !(pkt->flags & QUIC_FL_TX_PACKET_COALESCED))
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002454 break;
2455 node = eb64_next(node);
2456 }
2457
2458 if (!pkt)
2459 goto end;
2460
Frédéric Lécaille12fd2592022-03-31 08:42:06 +02002461 /* When building a packet from another one, the field which may increase the
2462 * packet size is the packet number. And the maximum increase is 4 bytes.
2463 */
2464 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc) &&
2465 pkt->len + 4 > 3 * qc->rx.bytes - qc->tx.prep_bytes) {
2466 TRACE_PROTO("anti-amplification limit would be reached", QUIC_EV_CONN_PRSAFRM, qc);
2467 goto end;
2468 }
2469
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002470 qel->pktns->tx.pto_probe += 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002471
2472 /* No risk to loop here, #packet per datagram is bounded */
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002473 requeue:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002474 TRACE_DEVEL("duplicating packet", QUIC_EV_CONN_PRSAFRM, qc, NULL, &pkt->pn_node.key);
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002475 qc_dup_pkt_frms(qc, &pkt->frms, tmp);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002476 if (qel == iqel) {
2477 if (pkt->next && pkt->next->type == QUIC_PACKET_TYPE_HANDSHAKE) {
2478 pkt = pkt->next;
2479 tmp = &htmp;
2480 hqel->pktns->tx.pto_probe += 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002481 TRACE_DEVEL("looping for next packet", QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002482 goto requeue;
2483 }
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002484 }
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002485
2486 end:
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002487 LIST_SPLICE(ifrms, &itmp);
2488 LIST_SPLICE(hfrms, &htmp);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002489
2490 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002491}
2492
Frédéric Lécaille6f7607e2022-05-25 22:25:37 +02002493static void qc_cc_err_count_inc(struct quic_conn *qc, struct quic_frame *frm)
Frédéric Lécaille3ccea6d2022-05-23 22:54:54 +02002494{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002495 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
2496
Frédéric Lécaille6f7607e2022-05-25 22:25:37 +02002497 if (frm->type == QUIC_FT_CONNECTION_CLOSE)
2498 quic_stats_transp_err_count_inc(qc->prx_counters, frm->connection_close.error_code);
2499 else if (frm->type == QUIC_FT_CONNECTION_CLOSE_APP) {
2500 if (qc->mux_state != QC_MUX_READY || !qc->qcc->app_ops->inc_err_cnt)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002501 goto out;
Frédéric Lécaille6f7607e2022-05-25 22:25:37 +02002502
2503 qc->qcc->app_ops->inc_err_cnt(qc->qcc->ctx, frm->connection_close_app.error_code);
2504 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002505
2506 out:
2507 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Frédéric Lécaille3ccea6d2022-05-23 22:54:54 +02002508}
2509
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002510/* Enqueue a STOP_SENDING frame to send into 1RTT packet number space
2511 * frame list to send.
2512 * Return 1 if succeeded, 0 if not.
2513 */
2514static int qc_stop_sending_frm_enqueue(struct quic_conn *qc, uint64_t id)
2515{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002516 int ret = 0;
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002517 struct quic_frame *frm;
2518 struct quic_enc_level *qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
2519 uint64_t app_error_code;
2520
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002521 TRACE_ENTER(QUIC_EV_CONN_PRSHPKT, qc);
2522
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002523 /* TODO: the mux may be released, we cannot have more
2524 * information about the application error code to send
2525 * at this time.
2526 */
2527 app_error_code = H3_REQUEST_REJECTED;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002528 // fixme: zalloc
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002529 frm = pool_zalloc(pool_head_quic_frame);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002530 if (!frm) {
2531 TRACE_ERROR("failed to allocate quic_frame", QUIC_EV_CONN_PRSHPKT, qc);
2532 goto out;
2533 }
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002534
2535 frm->type = QUIC_FT_STOP_SENDING;
2536 frm->stop_sending.id = id;
2537 frm->stop_sending.app_error_code = app_error_code;
2538 LIST_INIT(&frm->reflist);
2539 LIST_APPEND(&qel->pktns->tx.frms, &frm->list);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002540 ret = 1;
2541 out:
2542 TRACE_LEAVE(QUIC_EV_CONN_PRSHPKT, qc);
2543 return ret;
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002544}
2545
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002546/* Parse all the frames of <pkt> QUIC packet for QUIC connection with <ctx>
2547 * as I/O handler context and <qel> as encryption level.
2548 * Returns 1 if succeeded, 0 if failed.
2549 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002550static 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 +01002551 struct quic_enc_level *qel)
2552{
2553 struct quic_frame frm;
2554 const unsigned char *pos, *end;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01002555 struct quic_conn *qc = ctx->qc;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002556 int fast_retrans = 0, ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002557
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002558 TRACE_ENTER(QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002559 /* Skip the AAD */
2560 pos = pkt->data + pkt->aad_len;
2561 end = pkt->data + pkt->len;
2562
2563 while (pos < end) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002564 if (!qc_parse_frm(&frm, pkt, &pos, end, qc)) {
2565 // trace already emitted by function above
2566 goto leave;
2567 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002568
Frédéric Lécaille1ede8232021-12-23 14:11:25 +01002569 TRACE_PROTO("RX frame", QUIC_EV_CONN_PSTRM, qc, &frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002570 switch (frm.type) {
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002571 case QUIC_FT_PADDING:
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002572 break;
2573 case QUIC_FT_PING:
2574 break;
2575 case QUIC_FT_ACK:
2576 {
2577 unsigned int rtt_sample;
2578
2579 rtt_sample = 0;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002580 if (!qc_parse_ack_frm(qc, &frm, qel, &rtt_sample, &pos, end)) {
2581 // trace already emitted by function above
2582 goto leave;
2583 }
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002584
2585 if (rtt_sample) {
2586 unsigned int ack_delay;
2587
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002588 ack_delay = !quic_application_pktns(qel->pktns, qc) ? 0 :
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002589 qc->state >= QUIC_HS_ST_CONFIRMED ?
Frédéric Lécaille22576a22021-12-28 14:27:43 +01002590 MS_TO_TICKS(QUIC_MIN(quic_ack_delay_ms(&frm.ack, qc), qc->max_ack_delay)) :
2591 MS_TO_TICKS(quic_ack_delay_ms(&frm.ack, qc));
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002592 quic_loss_srtt_update(&qc->path->loss, rtt_sample, ack_delay, qc);
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002593 }
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002594 break;
2595 }
Frédéric Lécaillee06ca652022-05-29 11:48:58 +02002596 case QUIC_FT_RESET_STREAM:
2597 /* TODO: handle this frame at STREAM level */
2598 break;
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002599 case QUIC_FT_STOP_SENDING:
Amaury Denoyellea5b50752022-07-04 11:44:53 +02002600 {
2601 struct quic_stop_sending *stop_sending = &frm.stop_sending;
2602 if (qc->mux_state == QC_MUX_READY) {
2603 if (qcc_recv_stop_sending(qc->qcc, stop_sending->id,
2604 stop_sending->app_error_code)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002605 TRACE_ERROR("qcc_recv_stop_sending() failed", QUIC_EV_CONN_PRSHPKT, qc);
2606 goto leave;
Amaury Denoyellea5b50752022-07-04 11:44:53 +02002607 }
2608 }
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002609 break;
Amaury Denoyellea5b50752022-07-04 11:44:53 +02002610 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002611 case QUIC_FT_CRYPTO:
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002612 {
2613 struct quic_rx_crypto_frm *cf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002614
Frédéric Lécaillebd242082022-02-25 17:17:59 +01002615 if (unlikely(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD)) {
Frédéric Lécaille917a7db2022-01-03 17:00:35 +01002616 /* XXX TO DO: <cfdebug> is used only for the traces. */
2617 struct quic_rx_crypto_frm cfdebug = { };
2618
2619 cfdebug.offset_node.key = frm.crypto.offset;
2620 cfdebug.len = frm.crypto.len;
2621 TRACE_PROTO("CRYPTO data discarded",
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002622 QUIC_EV_CONN_RXPKT, qc, pkt, &cfdebug);
Frédéric Lécaille917a7db2022-01-03 17:00:35 +01002623 break;
2624 }
2625
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002626 if (unlikely(frm.crypto.offset < qel->rx.crypto.offset)) {
2627 if (frm.crypto.offset + frm.crypto.len <= qel->rx.crypto.offset) {
2628 /* XXX TO DO: <cfdebug> is used only for the traces. */
2629 struct quic_rx_crypto_frm cfdebug = { };
2630
2631 cfdebug.offset_node.key = frm.crypto.offset;
2632 cfdebug.len = frm.crypto.len;
2633 /* Nothing to do */
2634 TRACE_PROTO("Already received CRYPTO data",
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002635 QUIC_EV_CONN_RXPKT, qc, pkt, &cfdebug);
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002636 if (qc_is_listener(ctx->qc) &&
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002637 qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL])
2638 fast_retrans = 1;
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002639 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002640 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002641 else {
2642 size_t diff = qel->rx.crypto.offset - frm.crypto.offset;
2643 /* XXX TO DO: <cfdebug> is used only for the traces. */
2644 struct quic_rx_crypto_frm cfdebug = { };
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002645
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002646 cfdebug.offset_node.key = frm.crypto.offset;
2647 cfdebug.len = frm.crypto.len;
2648 TRACE_PROTO("Partially already received CRYPTO data",
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002649 QUIC_EV_CONN_RXPKT, qc, pkt, &cfdebug);
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002650 frm.crypto.len -= diff;
2651 frm.crypto.data += diff;
2652 frm.crypto.offset = qel->rx.crypto.offset;
2653 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002654 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002655
2656 if (frm.crypto.offset == qel->rx.crypto.offset) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002657 /* XXX TO DO: <cf> is used only for the traces. */
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002658 struct quic_rx_crypto_frm cfdebug = { };
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002659
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002660 cfdebug.offset_node.key = frm.crypto.offset;
2661 cfdebug.len = frm.crypto.len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002662 if (!qc_provide_cdata(qel, ctx,
2663 frm.crypto.data, frm.crypto.len,
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002664 pkt, &cfdebug)) {
2665 // trace already emitted by function above
2666 goto leave;
2667 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002668
2669 break;
2670 }
2671
2672 /* frm.crypto.offset > qel->rx.crypto.offset */
2673 cf = pool_alloc(pool_head_quic_rx_crypto_frm);
2674 if (!cf) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002675 TRACE_ERROR("CRYPTO frame allocation failed",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002676 QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002677 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002678 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002679
2680 cf->offset_node.key = frm.crypto.offset;
2681 cf->len = frm.crypto.len;
2682 cf->data = frm.crypto.data;
2683 cf->pkt = pkt;
2684 eb64_insert(&qel->rx.crypto.frms, &cf->offset_node);
2685 quic_rx_packet_refinc(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002686 break;
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002687 }
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002688 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002689 {
2690 struct quic_stream *stream = &frm.stream;
Frédéric Lécailled62240c2022-05-02 18:52:58 +02002691 unsigned nb_streams = qc->rx.strms[qcs_id_type(stream->id)].nb_streams;
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002692
Frédéric Lécailled62240c2022-05-02 18:52:58 +02002693 /* The upper layer may not be allocated. */
2694 if (qc->mux_state != QC_MUX_READY) {
2695 if ((stream->id >> QCS_ID_TYPE_SHIFT) < nb_streams) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002696 TRACE_DATA("Already closed stream", QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécailled62240c2022-05-02 18:52:58 +02002697 break;
2698 }
2699 else {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002700 TRACE_DEVEL("No mux for new stream", QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002701 if (!qc_stop_sending_frm_enqueue(qc, stream->id))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002702 TRACE_ERROR("could not enqueue STOP_SENDING frame", QUIC_EV_CONN_PRSHPKT, qc);
2703 /* This packet will not be acknowledged */
2704 goto leave;
Frédéric Lécailled62240c2022-05-02 18:52:58 +02002705 }
2706 }
Frédéric Lécaille12aa26b2022-03-21 11:37:13 +01002707
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002708 if (!qc_handle_strm_frm(pkt, stream, qc)) {
2709 TRACE_ERROR("qc_handle_strm_frm() failed", QUIC_EV_CONN_PRSHPKT, qc);
2710 goto leave;
2711 }
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002712
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002713 break;
2714 }
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002715 case QUIC_FT_MAX_DATA:
Amaury Denoyelle1e5e5132022-03-08 16:23:03 +01002716 if (qc->mux_state == QC_MUX_READY) {
2717 struct quic_max_data *data = &frm.max_data;
2718 qcc_recv_max_data(qc->qcc, data->max_data);
2719 }
2720 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002721 case QUIC_FT_MAX_STREAM_DATA:
Amaury Denoyelle8727ff42022-03-08 10:39:55 +01002722 if (qc->mux_state == QC_MUX_READY) {
2723 struct quic_max_stream_data *data = &frm.max_stream_data;
Amaury Denoyelleb68559a2022-07-06 15:45:20 +02002724 if (qcc_recv_max_stream_data(qc->qcc, data->id,
2725 data->max_stream_data)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002726 TRACE_ERROR("qcc_recv_max_stream_data() failed", QUIC_EV_CONN_PRSHPKT, qc);
2727 goto leave;
Amaury Denoyelleb68559a2022-07-06 15:45:20 +02002728 }
Amaury Denoyelle8727ff42022-03-08 10:39:55 +01002729 }
2730 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002731 case QUIC_FT_MAX_STREAMS_BIDI:
2732 case QUIC_FT_MAX_STREAMS_UNI:
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02002733 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002734 case QUIC_FT_DATA_BLOCKED:
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02002735 HA_ATOMIC_INC(&qc->prx_counters->data_blocked);
2736 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002737 case QUIC_FT_STREAM_DATA_BLOCKED:
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02002738 HA_ATOMIC_INC(&qc->prx_counters->stream_data_blocked);
2739 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002740 case QUIC_FT_STREAMS_BLOCKED_BIDI:
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02002741 HA_ATOMIC_INC(&qc->prx_counters->streams_data_blocked_bidi);
2742 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002743 case QUIC_FT_STREAMS_BLOCKED_UNI:
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02002744 HA_ATOMIC_INC(&qc->prx_counters->streams_data_blocked_uni);
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002745 break;
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002746 case QUIC_FT_NEW_CONNECTION_ID:
Frédéric Lécaille2cca2412022-01-21 13:55:03 +01002747 case QUIC_FT_RETIRE_CONNECTION_ID:
2748 /* XXX TO DO XXX */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002749 break;
2750 case QUIC_FT_CONNECTION_CLOSE:
2751 case QUIC_FT_CONNECTION_CLOSE_APP:
Frédéric Lécaille6f7607e2022-05-25 22:25:37 +02002752 /* Increment the error counters */
2753 qc_cc_err_count_inc(qc, &frm);
Frédéric Lécaille47756802022-03-25 09:12:16 +01002754 if (!(qc->flags & QUIC_FL_CONN_DRAINING)) {
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02002755 if (!(qc->flags & QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED)) {
2756 qc->flags |= QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED;
Frédéric Lécailleeb791452022-05-24 16:01:39 +02002757 HA_ATOMIC_DEC(&qc->prx_counters->half_open_conn);
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02002758 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002759 TRACE_STATE("Entering draining state", QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaille47756802022-03-25 09:12:16 +01002760 /* RFC 9000 10.2. Immediate Close:
2761 * The closing and draining connection states exist to ensure
2762 * that connections close cleanly and that delayed or reordered
2763 * packets are properly discarded. These states SHOULD persist
2764 * for at least three times the current PTO interval...
2765 *
2766 * Rearm the idle timeout only one time when entering draining
2767 * state.
2768 */
2769 qc_idle_timer_do_rearm(qc);
2770 qc->flags |= QUIC_FL_CONN_DRAINING|QUIC_FL_CONN_IMMEDIATE_CLOSE;
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02002771 qc_notify_close(qc);
Frédéric Lécaille47756802022-03-25 09:12:16 +01002772 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002773 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002774 case QUIC_FT_HANDSHAKE_DONE:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002775 if (qc_is_listener(ctx->qc)) {
2776 TRACE_ERROR("non accepted QUIC_FT_HANDSHAKE_DONE frame",
2777 QUIC_EV_CONN_PRSHPKT, qc);
2778 goto leave;
2779 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002780
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002781 qc->state = QUIC_HS_ST_CONFIRMED;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002782 break;
2783 default:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002784 TRACE_ERROR("unknosw frame type", QUIC_EV_CONN_PRSHPKT, qc);
2785 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002786 }
2787 }
2788
Frédéric Lécaille44ae7522022-03-21 12:18:00 +01002789 /* Flag this packet number space as having received a packet. */
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02002790 qel->pktns->flags |= QUIC_FL_PKTNS_PKT_RECEIVED;
Frédéric Lécaille44ae7522022-03-21 12:18:00 +01002791
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002792 if (fast_retrans) {
2793 struct quic_enc_level *iqel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
2794 struct quic_enc_level *hqel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
2795
2796 qc_prep_hdshk_fast_retrans(qc, &iqel->pktns->tx.frms, &hqel->pktns->tx.frms);
2797 }
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002798
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002799 /* The server must switch from INITIAL to HANDSHAKE handshake state when it
2800 * has successfully parse a Handshake packet. The Initial encryption must also
2801 * be discarded.
2802 */
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002803 if (pkt->type == QUIC_PACKET_TYPE_HANDSHAKE && qc_is_listener(ctx->qc)) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002804 if (qc->state >= QUIC_HS_ST_SERVER_INITIAL) {
Frédéric Lécaille05bd92b2022-03-29 19:09:46 +02002805 if (!(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].tls_ctx.flags &
2806 QUIC_FL_TLS_SECRETS_DCD)) {
2807 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
2808 TRACE_PROTO("discarding Initial pktns", QUIC_EV_CONN_PRSHPKT, qc);
2809 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, qc);
2810 qc_set_timer(ctx->qc);
2811 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002812 qc_release_pktns_frms(qc, qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns);
Frédéric Lécaille05bd92b2022-03-29 19:09:46 +02002813 }
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002814 if (qc->state < QUIC_HS_ST_SERVER_HANDSHAKE)
2815 qc->state = QUIC_HS_ST_SERVER_HANDSHAKE;
Frédéric Lécaille8c27de72021-09-20 11:00:46 +02002816 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002817 }
2818
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002819 ret = 1;
2820 leave:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002821 TRACE_LEAVE(QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002822 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002823}
2824
Amaury Denoyelle5b689862022-08-08 16:07:30 +02002825/* Allocate Tx buffer from <qc> quic-conn if needed.
2826 *
2827 * Returns allocated buffer or NULL on error.
2828 */
2829static struct buffer *qc_txb_alloc(struct quic_conn *qc)
2830{
2831 struct buffer *buf = &qc->tx.buf;
2832 if (!b_alloc(buf))
2833 return NULL;
2834
2835 return buf;
2836}
2837
2838/* Free Tx buffer from <qc> if it is empty. */
2839static void qc_txb_release(struct quic_conn *qc)
2840{
2841 struct buffer *buf = &qc->tx.buf;
2842
2843 /* For the moment sending function is responsible to purge the buffer
2844 * entirely. It may change in the future but this requires to be able
2845 * to reuse old data.
2846 */
Amaury Denoyelle654269c2022-08-08 15:38:57 +02002847 BUG_ON_HOT(buf && b_data(buf));
Amaury Denoyelle5b689862022-08-08 16:07:30 +02002848
2849 if (!b_data(buf)) {
2850 b_free(buf);
2851 offer_buffers(NULL, 1);
2852 }
2853}
2854
Amaury Denoyelle654269c2022-08-08 15:38:57 +02002855/* Commit a datagram payload written into <buf> of length <length>. <first_pkt>
2856 * must contains the address of the first packet stored in the payload.
2857 *
2858 * Caller is responsible that there is enough space in the buffer.
2859 */
2860static void qc_txb_store(struct buffer *buf, uint16_t length,
2861 struct quic_tx_packet *first_pkt)
2862{
2863 const size_t hdlen = sizeof(uint16_t) + sizeof(void *);
2864 BUG_ON_HOT(b_contig_space(buf) < hdlen); /* this must not happen */
2865
2866 write_u16(b_tail(buf), length);
2867 write_ptr(b_tail(buf) + sizeof(length), first_pkt);
2868 b_add(buf, hdlen + length);
2869}
2870
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002871/* Returns 1 if a packet may be built for <qc> from <qel> encryption level
2872 * with <frms> as ack-eliciting frame list to send, 0 if not.
2873 * <cc> must equal to 1 if an immediate close was asked, 0 if not.
2874 * <probe> must equalt to 1 if a probing packet is required, 0 if not.
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02002875 * <force_ack> may be set to 1 if you want to force an ack.
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002876 */
2877static int qc_may_build_pkt(struct quic_conn *qc, struct list *frms,
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02002878 struct quic_enc_level *qel, int cc, int probe, int force_ack)
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002879{
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02002880 unsigned int must_ack = force_ack ||
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02002881 (LIST_ISEMPTY(frms) && (qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED));
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002882
2883 /* Do not build any more packet if the TX secrets are not available or
2884 * if there is nothing to send, i.e. if no CONNECTION_CLOSE or ACK are required
2885 * and if there is no more packets to send upon PTO expiration
2886 * and if there is no more ack-eliciting frames to send or in flight
2887 * congestion control limit is reached for prepared data
2888 */
2889 if (!(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET) ||
2890 (!cc && !probe && !must_ack &&
2891 (LIST_ISEMPTY(frms) || qc->path->prep_in_flight >= qc->path->cwnd))) {
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002892 return 0;
2893 }
2894
2895 return 1;
2896}
2897
Amaury Denoyellef2476052022-08-04 16:19:57 +02002898/* Prepare as much as possible QUIC packets for sending from prebuilt frames
2899 * <frms>. Each packet is stored in a distinct datagram written to <buf>.
2900 *
2901 * Each datagram is prepended by a two fields header : the datagram length and
2902 * the address of the packet contained in the datagram.
2903 *
2904 * Returns the number of bytes prepared in packets if succeeded (may be 0), or
2905 * -1 if something wrong happened.
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002906 */
Amaury Denoyellef2476052022-08-04 16:19:57 +02002907static int qc_prep_app_pkts(struct quic_conn *qc, struct buffer *buf,
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01002908 struct list *frms)
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002909{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002910 int ret = -1;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002911 struct quic_enc_level *qel;
Amaury Denoyelle654269c2022-08-08 15:38:57 +02002912 unsigned char *end, *pos;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002913 struct quic_tx_packet *pkt;
2914 size_t total;
Amaury Denoyellef2476052022-08-04 16:19:57 +02002915 /* Each datagram is prepended with its length followed by the address
2916 * of the first packet in the datagram.
2917 */
2918 const size_t dg_headlen = sizeof(uint16_t) + sizeof(pkt);
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002919
2920 TRACE_ENTER(QUIC_EV_CONN_PHPKTS, qc);
Amaury Denoyellef2476052022-08-04 16:19:57 +02002921
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002922 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
2923 total = 0;
Amaury Denoyelle654269c2022-08-08 15:38:57 +02002924 pos = (unsigned char *)b_tail(buf);
Amaury Denoyellef2476052022-08-04 16:19:57 +02002925 while (b_contig_space(buf) >= (int)qc->path->mtu + dg_headlen) {
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002926 int err, probe, cc;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002927
2928 TRACE_POINT(QUIC_EV_CONN_PHPKTS, qc, qel);
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002929 probe = 0;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002930 cc = qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002931 /* We do not probe if an immediate close was asked */
2932 if (!cc)
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002933 probe = qel->pktns->tx.pto_probe;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002934
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02002935 if (!qc_may_build_pkt(qc, frms, qel, cc, probe, 0))
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002936 break;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002937
2938 /* Leave room for the datagram header */
2939 pos += dg_headlen;
2940 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc)) {
Frédéric Lécaille628e89c2022-06-24 12:13:53 +02002941 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 +01002942 }
2943 else {
2944 end = pos + qc->path->mtu;
2945 }
2946
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02002947 pkt = qc_build_pkt(&pos, end, qel, &qel->tls_ctx, frms, qc, NULL, 0,
2948 QUIC_PACKET_TYPE_SHORT, 0, 0, probe, cc, &err);
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002949 switch (err) {
2950 case -2:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002951 // trace already emitted by function above
2952 goto leave;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002953 case -1:
Frédéric Lécaillee9a974a2022-03-13 19:19:12 +01002954 /* As we provide qc_build_pkt() with an enough big buffer to fulfill an
2955 * MTU, we are here because of the congestion control window. There is
2956 * no need to try to reuse this buffer.
2957 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002958 TRACE_DEVEL("could not prepare anymore packet", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillee9a974a2022-03-13 19:19:12 +01002959 goto out;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002960 default:
2961 break;
2962 }
2963
2964 /* This is to please to GCC. We cannot have (err >= 0 && !pkt) */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002965 BUG_ON(!pkt);
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002966
Frédéric Lécaille1809c332022-04-25 10:24:12 +02002967 if (qc->flags & QUIC_FL_CONN_RETRANS_OLD_DATA)
2968 pkt->flags |= QUIC_FL_TX_PACKET_PROBE_WITH_OLD_DATA;
2969
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002970 total += pkt->len;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002971
Amaury Denoyellef2476052022-08-04 16:19:57 +02002972 /* Write datagram header. */
Amaury Denoyelle654269c2022-08-08 15:38:57 +02002973 qc_txb_store(buf, pkt->len, pkt);
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002974 }
2975
2976 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002977 ret = total;
2978 leave:
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002979 TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002980 return ret;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002981}
2982
Amaury Denoyellef2476052022-08-04 16:19:57 +02002983/* Prepare as much as possible QUIC packets for sending from prebuilt frames
2984 * <frms>. Several packets can be regrouped in a single datagram. The result is
2985 * written into <buf>.
2986 *
2987 * Each datagram is prepended by a two fields header : the datagram length and
2988 * the address of first packet in the datagram.
2989 *
2990 * Returns the number of bytes prepared in packets if succeeded (may be 0), or
2991 * -1 if something wrong happened.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002992 */
Amaury Denoyellef2476052022-08-04 16:19:57 +02002993static int qc_prep_pkts(struct quic_conn *qc, struct buffer *buf,
Frédéric Lécaillefc888442022-04-11 15:39:34 +02002994 enum quic_tls_enc_level tel, struct list *tel_frms,
2995 enum quic_tls_enc_level next_tel, struct list *next_tel_frms)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002996{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002997 struct quic_enc_level *qel;
Amaury Denoyelle654269c2022-08-08 15:38:57 +02002998 unsigned char *end, *pos;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002999 struct quic_tx_packet *first_pkt, *cur_pkt, *prv_pkt;
3000 /* length of datagrams */
3001 uint16_t dglen;
3002 size_t total;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003003 int ret = -1, padding;
Amaury Denoyellef2476052022-08-04 16:19:57 +02003004 /* Each datagram is prepended with its length followed by the address
3005 * of the first packet in the datagram.
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003006 */
Amaury Denoyellef2476052022-08-04 16:19:57 +02003007 const size_t dg_headlen = sizeof(uint16_t) + sizeof(first_pkt);
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003008 struct list *frms;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003009
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003010 TRACE_ENTER(QUIC_EV_CONN_PHPKTS, qc);
3011
Amaury Denoyellef2476052022-08-04 16:19:57 +02003012 /* Currently qc_prep_pkts() does not handle buffer wrapping so the
3013 * caller must ensure that buf is resetted.
3014 */
3015 BUG_ON_HOT(buf->head || buf->data);
3016
Frédéric Lécaille99942d62022-01-07 14:32:31 +01003017 total = 0;
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003018 qel = &qc->els[tel];
3019 frms = tel_frms;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003020 dglen = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01003021 padding = 0;
Amaury Denoyelle654269c2022-08-08 15:38:57 +02003022 pos = (unsigned char *)b_head(buf);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003023 first_pkt = prv_pkt = NULL;
Amaury Denoyellef2476052022-08-04 16:19:57 +02003024 while (b_contig_space(buf) >= (int)qc->path->mtu + dg_headlen || prv_pkt) {
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003025 int err, probe, cc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003026 enum quic_pkt_type pkt_type;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02003027 struct quic_tls_ctx *tls_ctx;
3028 const struct quic_version *ver;
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02003029 int force_ack = (qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) &&
3030 (qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL] ||
3031 qel == &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003032
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003033 TRACE_POINT(QUIC_EV_CONN_PHPKTS, qc, qel);
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003034 probe = 0;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003035 cc = qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003036 /* We do not probe if an immediate close was asked */
3037 if (!cc)
Frédéric Lécaille94fca872022-01-19 18:54:18 +01003038 probe = qel->pktns->tx.pto_probe;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003039
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02003040 if (!qc_may_build_pkt(qc, frms, qel, cc, probe, force_ack)) {
Amaury Denoyelle654269c2022-08-08 15:38:57 +02003041 if (prv_pkt)
3042 qc_txb_store(buf, dglen, first_pkt);
Frédéric Lécaille39ba1c32022-01-21 16:52:56 +01003043 /* Let's select the next encryption level */
3044 if (tel != next_tel && next_tel != QUIC_TLS_ENC_LEVEL_NONE) {
3045 tel = next_tel;
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003046 frms = next_tel_frms;
Frédéric Lécaille39ba1c32022-01-21 16:52:56 +01003047 qel = &qc->els[tel];
3048 /* Build a new datagram */
3049 prv_pkt = NULL;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003050 TRACE_DEVEL("next encryption level selected", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaille39ba1c32022-01-21 16:52:56 +01003051 continue;
3052 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003053 break;
3054 }
3055
3056 pkt_type = quic_tls_level_pkt_type(tel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003057 if (!prv_pkt) {
3058 /* Leave room for the datagram header */
3059 pos += dg_headlen;
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01003060 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc)) {
Frédéric Lécaille628e89c2022-06-24 12:13:53 +02003061 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 +01003062 }
3063 else {
3064 end = pos + qc->path->mtu;
3065 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003066 }
3067
Frédéric Lécaille301425b2022-06-14 17:40:39 +02003068 if (qc->negotiated_version) {
3069 ver = qc->negotiated_version;
3070 if (qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL])
3071 tls_ctx = &qc->negotiated_ictx;
3072 else
3073 tls_ctx = &qel->tls_ctx;
3074 }
3075 else {
3076 ver = qc->original_version;
3077 tls_ctx = &qel->tls_ctx;
3078 }
3079
3080 cur_pkt = qc_build_pkt(&pos, end, qel, tls_ctx, frms,
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02003081 qc, ver, dglen, pkt_type,
3082 force_ack, padding, probe, cc, &err);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003083 switch (err) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003084 case -2:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003085 // trace already emitted by function above
3086 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003087 case -1:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003088 /* If there was already a correct packet present, set the
3089 * current datagram as prepared into <cbuf>.
3090 */
Amaury Denoyelle654269c2022-08-08 15:38:57 +02003091 if (prv_pkt)
3092 qc_txb_store(buf, dglen, first_pkt);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003093 TRACE_DEVEL("could not prepare anymore packet", QUIC_EV_CONN_PHPKTS, qc);
Amaury Denoyellef2476052022-08-04 16:19:57 +02003094 goto out;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003095 default:
Frédéric Lécaille63556772021-12-29 17:18:21 +01003096 break;
3097 }
Frédéric Lécaille67f47d02021-08-19 15:19:09 +02003098
Frédéric Lécaille63556772021-12-29 17:18:21 +01003099 /* This is to please to GCC. We cannot have (err >= 0 && !cur_pkt) */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003100 BUG_ON(!cur_pkt);
Frédéric Lécaille63556772021-12-29 17:18:21 +01003101
Frédéric Lécaille1809c332022-04-25 10:24:12 +02003102 if (qc->flags & QUIC_FL_CONN_RETRANS_OLD_DATA)
3103 cur_pkt->flags |= QUIC_FL_TX_PACKET_PROBE_WITH_OLD_DATA;
3104
Frédéric Lécaille63556772021-12-29 17:18:21 +01003105 total += cur_pkt->len;
3106 /* keep trace of the first packet in the datagram */
3107 if (!first_pkt)
3108 first_pkt = cur_pkt;
3109 /* Attach the current one to the previous one */
Frédéric Lécailleb44cbc62022-04-21 17:58:46 +02003110 if (prv_pkt) {
Frédéric Lécaille63556772021-12-29 17:18:21 +01003111 prv_pkt->next = cur_pkt;
Frédéric Lécailleb44cbc62022-04-21 17:58:46 +02003112 cur_pkt->flags |= QUIC_FL_TX_PACKET_COALESCED;
3113 }
Frédéric Lécaille63556772021-12-29 17:18:21 +01003114 /* Let's say we have to build a new dgram */
3115 prv_pkt = NULL;
3116 dglen += cur_pkt->len;
3117 /* Client: discard the Initial encryption keys as soon as
3118 * a handshake packet could be built.
3119 */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003120 if (qc->state == QUIC_HS_ST_CLIENT_INITIAL &&
Frédéric Lécaille63556772021-12-29 17:18:21 +01003121 pkt_type == QUIC_PACKET_TYPE_HANDSHAKE) {
3122 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
3123 TRACE_PROTO("discarding Initial pktns", QUIC_EV_CONN_PHPKTS, qc);
3124 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, qc);
3125 qc_set_timer(qc);
Frédéric Lécaillea6255f52022-01-19 17:29:48 +01003126 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003127 qc_release_pktns_frms(qc, qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns);
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003128 qc->state = QUIC_HS_ST_CLIENT_HANDSHAKE;
Frédéric Lécaille63556772021-12-29 17:18:21 +01003129 }
3130 /* If the data for the current encryption level have all been sent,
3131 * select the next level.
3132 */
3133 if ((tel == QUIC_TLS_ENC_LEVEL_INITIAL || tel == QUIC_TLS_ENC_LEVEL_HANDSHAKE) &&
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02003134 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 +01003135 /* If QUIC_TLS_ENC_LEVEL_HANDSHAKE was already reached let's try QUIC_TLS_ENC_LEVEL_APP */
3136 if (tel == QUIC_TLS_ENC_LEVEL_HANDSHAKE && next_tel == tel)
3137 next_tel = QUIC_TLS_ENC_LEVEL_APP;
3138 tel = next_tel;
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003139 if (tel == QUIC_TLS_ENC_LEVEL_APP)
3140 frms = &qc->els[tel].pktns->tx.frms;
3141 else
3142 frms = next_tel_frms;
Frédéric Lécaille63556772021-12-29 17:18:21 +01003143 qel = &qc->els[tel];
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003144 if (!LIST_ISEMPTY(frms)) {
Frédéric Lécaille63556772021-12-29 17:18:21 +01003145 /* If there is data for the next level, do not
3146 * consume a datagram.
3147 */
3148 prv_pkt = cur_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003149 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003150 }
Amaury Denoyellef2476052022-08-04 16:19:57 +02003151
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003152 /* If we have to build a new datagram, set the current datagram as
3153 * prepared into <cbuf>.
3154 */
3155 if (!prv_pkt) {
Amaury Denoyelle654269c2022-08-08 15:38:57 +02003156 qc_txb_store(buf, dglen, first_pkt);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003157 first_pkt = NULL;
3158 dglen = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01003159 padding = 0;
3160 }
3161 else if (prv_pkt->type == QUIC_TLS_ENC_LEVEL_INITIAL &&
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +01003162 (!qc_is_listener(qc) ||
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01003163 prv_pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)) {
3164 padding = 1;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003165 }
3166 }
3167
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003168 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003169 ret = total;
3170 leave:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003171 TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003172 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003173}
3174
Amaury Denoyellef2476052022-08-04 16:19:57 +02003175/* Send datagrams stored in <buf>.
3176 *
3177 * This function always returns 1 for success. Even if sendto() syscall failed,
3178 * buffer is drained and packets are considered as emitted. QUIC loss detection
3179 * mechanism is used as a back door way to retry sending.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003180 */
Amaury Denoyellef2476052022-08-04 16:19:57 +02003181int qc_send_ppkts(struct buffer *buf, struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003182{
3183 struct quic_conn *qc;
Amaury Denoyelle906b0582022-08-05 15:22:28 +02003184 char skip_sendto = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003185
Amaury Denoyellec15dd922021-12-21 11:41:52 +01003186 qc = ctx->qc;
Frédéric Lécaille8726d632022-05-03 10:32:21 +02003187 TRACE_ENTER(QUIC_EV_CONN_SPPKTS, qc);
Amaury Denoyellef2476052022-08-04 16:19:57 +02003188 while (b_contig_data(buf, 0)) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003189 unsigned char *pos;
3190 struct buffer tmpbuf = { };
3191 struct quic_tx_packet *first_pkt, *pkt, *next_pkt;
3192 uint16_t dglen;
3193 size_t headlen = sizeof dglen + sizeof first_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003194 unsigned int time_sent;
3195
Amaury Denoyellef2476052022-08-04 16:19:57 +02003196 pos = (unsigned char *)b_head(buf);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003197 dglen = read_u16(pos);
Amaury Denoyellef2476052022-08-04 16:19:57 +02003198 BUG_ON_HOT(!dglen); /* this should not happen */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003199
3200 pos += sizeof dglen;
3201 first_pkt = read_ptr(pos);
3202 pos += sizeof first_pkt;
3203 tmpbuf.area = (char *)pos;
3204 tmpbuf.size = tmpbuf.data = dglen;
3205
Amaury Denoyelle906b0582022-08-05 15:22:28 +02003206 /* If sendto is on error just skip the call to it for the rest
3207 * of the loop but continue to purge the buffer. Data will be
3208 * transmitted when QUIC packets are detected as lost on our
3209 * side.
3210 *
3211 * TODO use fd-monitoring to detect when send operation can be
3212 * retry. This should improve the bandwidth without relying on
3213 * retransmission timer. However, it requires a major rework on
3214 * quic-conn fd management.
3215 */
Amaury Denoyelle906b0582022-08-05 15:22:28 +02003216 if (!skip_sendto) {
3217 if (qc_snd_buf(qc, &tmpbuf, tmpbuf.data, 0)) {
3218 skip_sendto = 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003219 TRACE_ERROR("sendto error, simulate sending for the rest of data", QUIC_EV_CONN_SPPKTS, qc);
Amaury Denoyelle906b0582022-08-05 15:22:28 +02003220 }
3221 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003222
Amaury Denoyellef2476052022-08-04 16:19:57 +02003223 b_del(buf, dglen + headlen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003224 qc->tx.bytes += tmpbuf.data;
3225 time_sent = now_ms;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003226
3227 for (pkt = first_pkt; pkt; pkt = next_pkt) {
3228 pkt->time_sent = time_sent;
3229 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING) {
3230 pkt->pktns->tx.time_of_last_eliciting = time_sent;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01003231 qc->path->ifae_pkts++;
Frédéric Lécaille530601c2022-03-10 15:11:57 +01003232 if (qc->flags & QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ)
3233 qc_idle_timer_rearm(qc, 0);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003234 }
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02003235 if (!(qc->flags & QUIC_FL_CONN_CLOSING) &&
3236 (pkt->flags & QUIC_FL_TX_PACKET_CC)) {
3237 qc->flags |= QUIC_FL_CONN_CLOSING;
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02003238 qc_notify_close(qc);
3239
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02003240 /* RFC 9000 10.2. Immediate Close:
3241 * The closing and draining connection states exist to ensure
3242 * that connections close cleanly and that delayed or reordered
3243 * packets are properly discarded. These states SHOULD persist
3244 * for at least three times the current PTO interval...
3245 *
3246 * Rearm the idle timeout only one time when entering closing
3247 * state.
3248 */
3249 qc_idle_timer_do_rearm(qc);
3250 if (qc->timer_task) {
3251 task_destroy(qc->timer_task);
3252 qc->timer_task = NULL;
3253 }
3254 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003255 qc->path->in_flight += pkt->in_flight_len;
3256 pkt->pktns->tx.in_flight += pkt->in_flight_len;
Frédéric Lécaille5f6c25e2022-08-24 16:23:44 +02003257 if (pkt->in_flight_len)
Frédéric Lécailleda9c4412022-08-22 18:47:51 +02003258 qc_set_timer(qc);
Frédéric Lécaille5f6c25e2022-08-24 16:23:44 +02003259 TRACE_DATA("sent pkt", QUIC_EV_CONN_SPPKTS, qc, pkt);
3260 next_pkt = pkt->next;
3261 quic_tx_packet_refinc(pkt);
3262 eb64_insert(&pkt->pktns->tx.pkts, &pkt->pn_node);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003263 }
3264 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003265
Frédéric Lécaille8726d632022-05-03 10:32:21 +02003266 TRACE_LEAVE(QUIC_EV_CONN_SPPKTS, qc);
3267
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003268 return 1;
3269}
3270
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003271/* Copy into <buf> buffer a stateless reset token depending on the
3272 * <salt> salt input. This is the cluster secret which will be derived
3273 * as HKDF input secret to generate this token.
3274 * Return 1 if succeeded, 0 if not.
3275 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003276static int quic_stateless_reset_token_cpy(struct quic_conn *qc,
3277 unsigned char *buf, size_t len,
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003278 const unsigned char *salt, size_t saltlen)
3279{
3280 /* Input secret */
3281 const unsigned char *key = (const unsigned char *)global.cluster_secret;
3282 size_t keylen = strlen(global.cluster_secret);
3283 /* Info */
3284 const unsigned char label[] = "stateless token";
3285 size_t labellen = sizeof label - 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003286 int ret;
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003287
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003288 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3289
3290 ret = quic_hkdf_extract_and_expand(EVP_sha256(), buf, len,
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003291 key, keylen, salt, saltlen, label, labellen);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003292 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
3293 return ret;
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003294}
3295
3296/* Initialize the stateless reset token attached to <cid> connection ID.
3297 * Returns 1 if succeeded, 0 if not.
3298 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003299static int quic_stateless_reset_token_init(struct quic_conn *qc,
3300 struct quic_connection_id *quic_cid)
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003301{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003302 int ret;
3303
3304 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3305
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003306 if (global.cluster_secret) {
3307 /* Output secret */
3308 unsigned char *token = quic_cid->stateless_reset_token;
3309 size_t tokenlen = sizeof quic_cid->stateless_reset_token;
3310 /* Salt */
3311 const unsigned char *cid = quic_cid->cid.data;
3312 size_t cidlen = quic_cid->cid.len;
3313
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003314 ret = quic_stateless_reset_token_cpy(qc, token, tokenlen, cid, cidlen);
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003315 }
3316 else {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003317 /* TODO: RAND_bytes() should be replaced */
3318 ret = RAND_bytes(quic_cid->stateless_reset_token,
3319 sizeof quic_cid->stateless_reset_token) == 1;
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003320 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003321
3322 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
3323 return ret;
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003324}
3325
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003326/* Allocate a new CID with <seq_num> as sequence number and attach it to <root>
3327 * ebtree.
3328 *
3329 * The CID is randomly generated in part with the result altered to be
3330 * associated with the current thread ID. This means this function must only
3331 * be called by the quic_conn thread.
3332 *
3333 * Returns the new CID if succeeded, NULL if not.
3334 */
3335static struct quic_connection_id *new_quic_cid(struct eb_root *root,
3336 struct quic_conn *qc,
3337 int seq_num)
3338{
3339 struct quic_connection_id *cid;
3340
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003341 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3342
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003343 cid = pool_alloc(pool_head_quic_connection_id);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003344 if (!cid) {
3345 TRACE_ERROR("cid allocation failed", QUIC_EV_CONN_TXPKT, qc);
3346 goto err;
3347 }
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003348
3349 cid->cid.len = QUIC_HAP_CID_LEN;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003350 /* TODO: RAND_bytes() should be replaced */
3351 if (RAND_bytes(cid->cid.data, cid->cid.len) != 1) {
3352 TRACE_ERROR("RAND_bytes() failed", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003353 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003354 }
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003355
3356 quic_pin_cid_to_tid(cid->cid.data, tid);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003357 if (quic_stateless_reset_token_init(qc, cid) != 1) {
3358 TRACE_ERROR("quic_stateless_reset_token_init() failed", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003359 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003360 }
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003361
3362 cid->qc = qc;
3363
3364 cid->seq_num.key = seq_num;
3365 cid->retire_prior_to = 0;
3366 /* insert the allocated CID in the quic_conn tree */
3367 eb64_insert(root, &cid->seq_num);
3368
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003369 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003370 return cid;
3371
3372 err:
3373 pool_free(pool_head_quic_connection_id, cid);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003374 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003375 return NULL;
3376}
3377
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003378/* Build all the frames which must be sent just after the handshake have succeeded.
3379 * This is essentially NEW_CONNECTION_ID frames. A QUIC server must also send
3380 * a HANDSHAKE_DONE frame.
3381 * Return 1 if succeeded, 0 if not.
3382 */
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02003383static int quic_build_post_handshake_frames(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003384{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003385 int ret = 0, i, first, max;
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02003386 struct quic_enc_level *qel;
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003387 struct quic_frame *frm, *frmbak;
3388 struct list frm_list = LIST_HEAD_INIT(frm_list);
3389 struct eb64_node *node;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003390
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003391 TRACE_ENTER(QUIC_EV_CONN_IO_CB, qc);
3392
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02003393 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003394 /* Only servers must send a HANDSHAKE_DONE frame. */
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +01003395 if (qc_is_listener(qc)) {
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003396 frm = pool_zalloc(pool_head_quic_frame);
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003397 if (!frm) {
3398 TRACE_ERROR("frame allocation error", QUIC_EV_CONN_IO_CB, qc);
3399 goto leave;
3400 }
Frédéric Lécaille153d4a82021-01-06 12:12:39 +01003401
Frédéric Lécailleb9171912022-04-21 17:32:10 +02003402 LIST_INIT(&frm->reflist);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003403 frm->type = QUIC_FT_HANDSHAKE_DONE;
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003404 LIST_APPEND(&frm_list, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003405 }
3406
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003407 /* Initialize <max> connection IDs minus one: there is
3408 * already one connection ID used for the current connection.
3409 */
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003410 first = 1;
3411 max = qc->tx.params.active_connection_id_limit;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003412
3413 /* TODO: check limit */
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003414 for (i = first; i < max; i++) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003415 struct quic_connection_id *cid;
3416
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003417 frm = pool_zalloc(pool_head_quic_frame);
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003418 if (!frm) {
3419 TRACE_ERROR("frame allocation error", QUIC_EV_CONN_IO_CB, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003420 goto err;
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003421 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003422
Frédéric Lécailleb9171912022-04-21 17:32:10 +02003423 LIST_INIT(&frm->reflist);
Amaury Denoyelle0442efd2022-01-28 16:02:13 +01003424 cid = new_quic_cid(&qc->cids, qc, i);
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003425 if (!cid) {
3426 TRACE_ERROR("CID allocation error", QUIC_EV_CONN_IO_CB, qc);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003427 goto err;
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003428 }
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003429
Frédéric Lécaille74904a42022-01-27 15:35:56 +01003430 /* insert the allocated CID in the receiver datagram handler tree */
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01003431 ebmb_insert(&quic_dghdlrs[tid].cids, &cid->node, cid->cid.len);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003432
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003433 quic_connection_id_to_frm_cpy(frm, cid);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003434 LIST_APPEND(&frm_list, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003435 }
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003436
3437 LIST_SPLICE(&qel->pktns->tx.frms, &frm_list);
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003438 qc->flags |= QUIC_FL_CONN_POST_HANDSHAKE_FRAMES_BUILT;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003439
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003440 ret = 1;
3441 leave:
3442 TRACE_LEAVE(QUIC_EV_CONN_IO_CB, qc);
3443 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003444
3445 err:
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003446 /* free the frames */
3447 list_for_each_entry_safe(frm, frmbak, &frm_list, list)
3448 pool_free(pool_head_quic_frame, frm);
3449
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003450 node = eb64_lookup_ge(&qc->cids, first);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003451 while (node) {
3452 struct quic_connection_id *cid;
3453
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003454 cid = eb64_entry(node, struct quic_connection_id, seq_num);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003455 if (cid->seq_num.key >= max)
3456 break;
3457
Frédéric Lécaille411aa6d2022-03-21 12:01:22 +01003458 node = eb64_next(node);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003459 ebmb_delete(&cid->node);
3460 eb64_delete(&cid->seq_num);
3461 pool_free(pool_head_quic_connection_id, cid);
3462 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003463 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003464}
3465
3466/* Deallocate <l> list of ACK ranges. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003467void quic_free_arngs(struct quic_conn *qc, struct quic_arngs *arngs)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003468{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003469 struct eb64_node *n;
3470 struct quic_arng_node *ar;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003471
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003472 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
3473
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003474 n = eb64_first(&arngs->root);
3475 while (n) {
3476 struct eb64_node *next;
3477
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003478 ar = eb64_entry(n, struct quic_arng_node, first);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003479 next = eb64_next(n);
3480 eb64_delete(n);
Frédéric Lécaille82851bd2022-04-04 13:43:58 +02003481 pool_free(pool_head_quic_arng, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003482 n = next;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003483 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003484
3485 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003486}
3487
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003488/* Return the gap value between <p> and <q> ACK ranges where <q> follows <p> in
3489 * descending order.
3490 */
3491static inline size_t sack_gap(struct quic_arng_node *p,
3492 struct quic_arng_node *q)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003493{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003494 return p->first.key - q->last - 2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003495}
3496
3497
3498/* Remove the last elements of <ack_ranges> list of ack range updating its
3499 * encoded size until it goes below <limit>.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003500 * Returns 1 if succeeded, 0 if not (no more element to remove).
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003501 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003502static int quic_rm_last_ack_ranges(struct quic_conn *qc,
3503 struct quic_arngs *arngs, size_t limit)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003504{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003505 int ret = 0;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003506 struct eb64_node *last, *prev;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003507
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003508 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3509
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003510 last = eb64_last(&arngs->root);
3511 while (last && arngs->enc_sz > limit) {
3512 struct quic_arng_node *last_node, *prev_node;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003513
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003514 prev = eb64_prev(last);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003515 if (!prev) {
3516 TRACE_DEVEL("<last> not found", QUIC_EV_CONN_TXPKT, qc);
3517 goto out;
3518 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003519
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003520 last_node = eb64_entry(last, struct quic_arng_node, first);
3521 prev_node = eb64_entry(prev, struct quic_arng_node, first);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003522 arngs->enc_sz -= quic_int_getsize(last_node->last - last_node->first.key);
3523 arngs->enc_sz -= quic_int_getsize(sack_gap(prev_node, last_node));
3524 arngs->enc_sz -= quic_decint_size_diff(arngs->sz);
3525 --arngs->sz;
3526 eb64_delete(last);
3527 pool_free(pool_head_quic_arng, last);
3528 last = prev;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003529 }
3530
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003531 ret = 1;
3532 out:
3533 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
3534 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003535}
3536
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003537/* Set the encoded size of <arngs> QUIC ack ranges. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003538static void quic_arngs_set_enc_sz(struct quic_conn *qc, struct quic_arngs *arngs)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003539{
3540 struct eb64_node *node, *next;
3541 struct quic_arng_node *ar, *ar_next;
3542
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003543 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3544
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003545 node = eb64_last(&arngs->root);
3546 if (!node)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003547 goto leave;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003548
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003549 ar = eb64_entry(node, struct quic_arng_node, first);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003550 arngs->enc_sz = quic_int_getsize(ar->last) +
3551 quic_int_getsize(ar->last - ar->first.key) + quic_int_getsize(arngs->sz - 1);
3552
3553 while ((next = eb64_prev(node))) {
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003554 ar_next = eb64_entry(next, struct quic_arng_node, first);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003555 arngs->enc_sz += quic_int_getsize(sack_gap(ar, ar_next)) +
3556 quic_int_getsize(ar_next->last - ar_next->first.key);
3557 node = next;
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003558 ar = eb64_entry(node, struct quic_arng_node, first);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003559 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003560
3561 leave:
3562 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003563}
3564
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003565/* Insert <ar> ack range into <argns> tree of ack ranges.
3566 * Returns the ack range node which has been inserted if succeeded, NULL if not.
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003567 */
3568static inline
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003569struct quic_arng_node *quic_insert_new_range(struct quic_conn *qc,
3570 struct quic_arngs *arngs,
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003571 struct quic_arng *ar)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003572{
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003573 struct quic_arng_node *new_ar;
3574
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003575 TRACE_ENTER(QUIC_EV_CONN_RXPKT, qc);
3576
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003577 new_ar = pool_alloc(pool_head_quic_arng);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003578 if (!new_ar) {
3579 TRACE_ERROR("ack range allocation failed", QUIC_EV_CONN_RXPKT, qc);
3580 goto leave;
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003581 }
3582
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003583 new_ar->first.key = ar->first;
3584 new_ar->last = ar->last;
3585 eb64_insert(&arngs->root, &new_ar->first);
3586 arngs->sz++;
3587
3588 leave:
3589 TRACE_LEAVE(QUIC_EV_CONN_RXPKT, qc);
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003590 return new_ar;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003591}
3592
3593/* Update <arngs> tree of ACK ranges with <ar> as new ACK range value.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003594 * Note that this function computes the number of bytes required to encode
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003595 * this tree of ACK ranges in descending order.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003596 *
3597 * Descending order
3598 * ------------->
3599 * range1 range2
3600 * ..........|--------|..............|--------|
3601 * ^ ^ ^ ^
3602 * | | | |
3603 * last1 first1 last2 first2
3604 * ..........+--------+--------------+--------+......
3605 * diff1 gap12 diff2
3606 *
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003607 * To encode the previous list of ranges we must encode integers as follows in
3608 * descending order:
3609 * enc(last2),enc(diff2),enc(gap12),enc(diff1)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003610 * with diff1 = last1 - first1
3611 * diff2 = last2 - first2
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003612 * gap12 = first1 - last2 - 2 (>= 0)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003613 *
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003614
3615returns 0 on error
3616
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003617 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003618int quic_update_ack_ranges_list(struct quic_conn *qc,
3619 struct quic_arngs *arngs,
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003620 struct quic_arng *ar)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003621{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003622 int ret = 0;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003623 struct eb64_node *le;
3624 struct quic_arng_node *new_node;
3625 struct eb64_node *new;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003626
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003627 TRACE_ENTER(QUIC_EV_CONN_RXPKT, qc);
3628
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003629 new = NULL;
3630 if (eb_is_empty(&arngs->root)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003631 new_node = quic_insert_new_range(qc, arngs, ar);
3632 if (new_node)
3633 ret = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003634
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003635 goto leave;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003636 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003637
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003638 le = eb64_lookup_le(&arngs->root, ar->first);
3639 if (!le) {
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écaille0e257832021-11-16 10:54:19 +01003643
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 else {
3647 struct quic_arng_node *le_ar =
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003648 eb64_entry(le, struct quic_arng_node, first);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003649
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003650 /* Already existing range */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003651 if (le_ar->last >= ar->last) {
3652 ret = 1;
3653 }
3654 else if (le_ar->last + 1 >= ar->first) {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003655 le_ar->last = ar->last;
3656 new = le;
3657 new_node = le_ar;
3658 }
3659 else {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003660 new_node = quic_insert_new_range(qc, arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003661 if (!new_node)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003662 goto leave;
Frédéric Lécaille8ba42762021-06-02 17:40:09 +02003663
3664 new = &new_node->first;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003665 }
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003666 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003667
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003668 /* Verify that the new inserted node does not overlap the nodes
3669 * which follow it.
3670 */
3671 if (new) {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003672 struct eb64_node *next;
3673 struct quic_arng_node *next_node;
3674
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003675 while ((next = eb64_next(new))) {
3676 next_node =
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003677 eb64_entry(next, struct quic_arng_node, first);
Frédéric Lécaillec825eba2021-06-02 17:38:13 +02003678 if (new_node->last + 1 < next_node->first.key)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003679 break;
3680
3681 if (next_node->last > new_node->last)
3682 new_node->last = next_node->last;
3683 eb64_delete(next);
Frédéric Lécaillebaea2842021-06-02 15:04:03 +02003684 pool_free(pool_head_quic_arng, next_node);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003685 /* Decrement the size of these ranges. */
3686 arngs->sz--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003687 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003688 }
3689
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003690 ret = 1;
3691 leave:
3692 quic_arngs_set_enc_sz(qc, arngs);
3693 TRACE_LEAVE(QUIC_EV_CONN_RXPKT, qc);
3694 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003695}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003696/* Remove the header protection of packets at <el> encryption level.
3697 * Always succeeds.
3698 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003699static 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 +01003700{
3701 struct quic_tls_ctx *tls_ctx;
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02003702 struct quic_rx_packet *pqpkt, *pkttmp;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003703 struct quic_enc_level *app_qel;
3704
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003705 TRACE_ENTER(QUIC_EV_CONN_ELRMHP, qc);
3706 app_qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003707 /* A server must not process incoming 1-RTT packets before the handshake is complete. */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003708 if (el == app_qel && qc_is_listener(qc) && qc->state < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003709 TRACE_DEVEL("hp not removed (handshake not completed)",
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003710 QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003711 goto out;
3712 }
3713 tls_ctx = &el->tls_ctx;
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02003714 list_for_each_entry_safe(pqpkt, pkttmp, &el->rx.pqpkts, list) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003715 if (!qc_do_rm_hp(qc, pqpkt, tls_ctx, el->pktns->rx.largest_pn,
Frédéric Lécaille99897d12022-08-08 10:28:07 +02003716 pqpkt->data + pqpkt->pn_offset, pqpkt->data)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003717 TRACE_ERROR("hp removing error", QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003718 }
3719 else {
3720 /* The AAD includes the packet number field */
3721 pqpkt->aad_len = pqpkt->pn_offset + pqpkt->pnl;
3722 /* Store the packet into the tree of packets to decrypt. */
3723 pqpkt->pn_node.key = pqpkt->pn;
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02003724 eb64_insert(&el->rx.pkts, &pqpkt->pn_node);
3725 quic_rx_packet_refinc(pqpkt);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003726 TRACE_DEVEL("hp removed", QUIC_EV_CONN_ELRMHP, qc, pqpkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003727 }
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02003728 LIST_DELETE(&pqpkt->list);
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003729 quic_rx_packet_refdec(pqpkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003730 }
3731
3732 out:
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003733 TRACE_LEAVE(QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003734}
3735
3736/* Process all the CRYPTO frame at <el> encryption level.
3737 * Return 1 if succeeded, 0 if not.
3738 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003739static inline int qc_treat_rx_crypto_frms(struct quic_conn *qc,
3740 struct quic_enc_level *el,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02003741 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003742{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003743 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003744 struct eb64_node *node;
3745
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003746 TRACE_ENTER(QUIC_EV_CONN_TRMHP, qc);
3747
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003748 node = eb64_first(&el->rx.crypto.frms);
3749 while (node) {
3750 struct quic_rx_crypto_frm *cf;
3751
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003752 cf = eb64_entry(node, struct quic_rx_crypto_frm, offset_node);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003753 if (cf->offset_node.key != el->rx.crypto.offset)
3754 break;
3755
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003756 if (!qc_provide_cdata(el, ctx, cf->data, cf->len, cf->pkt, cf)) {
3757 TRACE_ERROR("qc_provide_cdata() failed", QUIC_EV_CONN_TRMHP);
3758 goto leave;
3759 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003760
3761 node = eb64_next(node);
3762 quic_rx_packet_refdec(cf->pkt);
3763 eb64_delete(&cf->offset_node);
3764 pool_free(pool_head_quic_rx_crypto_frm, cf);
3765 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003766
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003767 ret = 1;
3768 leave:
3769 TRACE_LEAVE(QUIC_EV_CONN_TRMHP, qc);
3770 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003771}
3772
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003773/* Process all the packets at <el> and <next_el> encryption level.
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +05003774 * 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 +02003775 * as pointer value.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003776 * Return 1 if succeeded, 0 if not.
3777 */
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003778int qc_treat_rx_pkts(struct quic_enc_level *cur_el, struct quic_enc_level *next_el,
3779 struct ssl_sock_ctx *ctx, int force_ack)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003780{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003781 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003782 struct eb64_node *node;
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003783 int64_t largest_pn = -1;
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02003784 unsigned int largest_pn_time_received = 0;
Amaury Denoyelle29632b82022-01-18 16:50:58 +01003785 struct quic_conn *qc = ctx->qc;
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003786 struct quic_enc_level *qel = cur_el;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003787
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003788 TRACE_ENTER(QUIC_EV_CONN_RXPKT, ctx->qc);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003789 qel = cur_el;
3790 next_tel:
3791 if (!qel)
3792 goto out;
3793
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003794 node = eb64_first(&qel->rx.pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003795 while (node) {
3796 struct quic_rx_packet *pkt;
3797
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003798 pkt = eb64_entry(node, struct quic_rx_packet, pn_node);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003799 TRACE_DATA("new packet", QUIC_EV_CONN_RXPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003800 ctx->qc, pkt, NULL, ctx->ssl);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003801 if (!qc_pkt_decrypt(pkt, qel, qc)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003802 /* Drop the packet */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003803 TRACE_ERROR("packet decryption failed -> dropped",
3804 QUIC_EV_CONN_RXPKT, ctx->qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003805 }
3806 else {
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003807 if (!qc_parse_pkt_frms(pkt, ctx, qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003808 /* Drop the packet */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003809 TRACE_ERROR("packet parsing failed -> dropped",
3810 QUIC_EV_CONN_RXPKT, ctx->qc, pkt);
Frédéric Lécailleeb791452022-05-24 16:01:39 +02003811 HA_ATOMIC_INC(&qc->prx_counters->dropped_parsing);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003812 }
3813 else {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003814 struct quic_arng ar = { .first = pkt->pn, .last = pkt->pn };
3815
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003816 if (pkt->flags & QUIC_FL_RX_PACKET_ACK_ELICITING || force_ack) {
3817 qel->pktns->flags |= QUIC_FL_PKTNS_ACK_REQUIRED;
3818 qel->pktns->rx.nb_aepkts_since_last_ack++;
Frédéric Lécaille530601c2022-03-10 15:11:57 +01003819 qc_idle_timer_rearm(qc, 1);
3820 }
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02003821 if (pkt->pn > largest_pn) {
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003822 largest_pn = pkt->pn;
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02003823 largest_pn_time_received = pkt->time_received;
3824 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003825 /* Update the list of ranges to acknowledge. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003826 if (!quic_update_ack_ranges_list(qc, &qel->pktns->rx.arngs, &ar))
3827 TRACE_ERROR("Could not update ack range list",
3828 QUIC_EV_CONN_RXPKT, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003829 }
3830 }
3831 node = eb64_next(node);
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02003832 eb64_delete(&pkt->pn_node);
3833 quic_rx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003834 }
3835
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02003836 if (largest_pn != -1 && largest_pn > qel->pktns->rx.largest_pn) {
3837 /* Update the largest packet number. */
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02003838 qel->pktns->rx.largest_pn = largest_pn;
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02003839 /* Update the largest acknowledged packet timestamps */
3840 qel->pktns->rx.largest_time_received = largest_pn_time_received;
3841 qel->pktns->flags |= QUIC_FL_PKTNS_NEW_LARGEST_PN;
3842 }
3843
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003844 if (!qc_treat_rx_crypto_frms(qc, qel, ctx)) {
3845 // trace already emitted by function above
3846 goto leave;
3847 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003848
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003849 if (qel == cur_el) {
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003850 BUG_ON(qel == next_el);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003851 qel = next_el;
Frédéric Lécaille91a211f2022-05-24 10:54:42 +02003852 largest_pn = -1;
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003853 goto next_tel;
3854 }
3855
3856 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003857 ret = 1;
3858 leave:
3859 TRACE_LEAVE(QUIC_EV_CONN_RXPKT, ctx->qc);
3860 return ret;
3861}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003862
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003863/* Check if it's possible to remove header protection for packets related to
3864 * encryption level <qel>. If <qel> is NULL, assume it's false.
3865 *
3866 * Return true if the operation is possible else false.
3867 */
3868static int qc_qel_may_rm_hp(struct quic_conn *qc, struct quic_enc_level *qel)
3869{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003870 int ret = 0;
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003871 enum quic_tls_enc_level tel;
3872
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003873 TRACE_ENTER(QUIC_EV_CONN_TRMHP, qc);
3874
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003875 if (!qel)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003876 goto cant_rm_hp;
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003877
3878 tel = ssl_to_quic_enc_level(qel->level);
3879
3880 /* check if tls secrets are available */
Frédéric Lécaillebd242082022-02-25 17:17:59 +01003881 if (qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD) {
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003882 TRACE_DEVEL("Discarded keys", QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003883 goto cant_rm_hp;
Frédéric Lécaille51c90652022-02-22 11:39:14 +01003884 }
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003885
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003886 if (!(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET)) {
3887 TRACE_DEVEL("non available secrets", QUIC_EV_CONN_TRMHP, qc);
3888 goto cant_rm_hp;
3889 }
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003890
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01003891 /* check if the connection layer is ready before using app level */
Frédéric Lécaille298931d2022-01-28 21:41:06 +01003892 if ((tel == QUIC_TLS_ENC_LEVEL_APP || tel == QUIC_TLS_ENC_LEVEL_EARLY_DATA) &&
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003893 qc->mux_state == QC_MUX_NULL) {
3894 TRACE_DEVEL("connection layer not ready", QUIC_EV_CONN_TRMHP, qc);
3895 goto cant_rm_hp;
3896 }
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003897
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003898 ret = 1;
3899 cant_rm_hp:
3900 TRACE_LEAVE(QUIC_EV_CONN_TRMHP, qc);
3901 return ret;
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003902}
3903
Amaury Denoyellecc130472022-08-17 10:08:16 +02003904/* Try to send application frames from list <frms> on connection <qc>.
3905 *
Amaury Denoyelle70467562022-08-17 16:33:13 +02003906 * Use qc_send_app_probing wrapper when probing with old data.
Amaury Denoyellecc130472022-08-17 10:08:16 +02003907 *
3908 * Returns 1 on success. Some data might not have been sent due to congestion,
3909 * in this case they are left in <frms> input list. The caller may subscribe on
3910 * quic-conn to retry later.
3911 *
3912 * Returns 0 on critical error.
3913 * TODO review and classify more distinctly transient from definitive errors to
3914 * allow callers to properly handle it.
3915 */
Amaury Denoyelle70467562022-08-17 16:33:13 +02003916static int qc_send_app_pkts(struct quic_conn *qc, struct list *frms)
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003917{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003918 int status = 0;
3919 struct buffer *buf;
3920
3921 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3922
3923 buf = qc_txb_alloc(qc);
3924 if (!buf) {
3925 TRACE_ERROR("buffer allocation failed", QUIC_EV_CONN_TXPKT, qc);
3926 goto leave;
3927 }
3928
Frédéric Lécailledc077512022-07-26 09:17:19 +02003929 /* Prepare and send packets until we could not further prepare packets. */
3930 while (1) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003931 int ret;
Amaury Denoyellef2476052022-08-04 16:19:57 +02003932 /* Currently buf cannot be non-empty at this stage. Even if a
3933 * previous sendto() has failed it is emptied to simulate
3934 * packet emission and rely on QUIC lost detection to try to
3935 * emit it.
3936 */
3937 BUG_ON_HOT(b_data(buf));
3938 b_reset(buf);
3939
Amaury Denoyellef2476052022-08-04 16:19:57 +02003940 ret = qc_prep_app_pkts(qc, buf, frms);
Frédéric Lécailledc077512022-07-26 09:17:19 +02003941 if (ret == -1)
3942 goto err;
3943 else if (ret == 0)
3944 goto out;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003945
Amaury Denoyellef2476052022-08-04 16:19:57 +02003946 if (!qc_send_ppkts(buf, qc->xprt_ctx))
Frédéric Lécailledc077512022-07-26 09:17:19 +02003947 goto err;
3948 }
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003949
3950 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003951 status = 1;
Amaury Denoyelle5b689862022-08-08 16:07:30 +02003952 qc_txb_release(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003953 leave:
3954 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
3955 return status;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003956
3957 err:
Amaury Denoyelle5b689862022-08-08 16:07:30 +02003958 qc_txb_release(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003959 goto leave;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003960}
3961
Amaury Denoyellecc130472022-08-17 10:08:16 +02003962/* Try to send application frames from list <frms> on connection <qc>. Use this
Amaury Denoyelle70467562022-08-17 16:33:13 +02003963 * function when probing is required.
Amaury Denoyelleb29a1dc2022-08-12 14:30:04 +02003964 *
3965 * Returns the result from qc_send_app_pkts function.
3966 */
Amaury Denoyelle70467562022-08-17 16:33:13 +02003967static forceinline int qc_send_app_probing(struct quic_conn *qc,
3968 struct list *frms)
Amaury Denoyelleb29a1dc2022-08-12 14:30:04 +02003969{
3970 int ret;
3971
3972 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3973
Amaury Denoyelle70467562022-08-17 16:33:13 +02003974 TRACE_STATE("preparing old data (probing)", QUIC_EV_CONN_TXPKT, qc);
3975 qc->flags |= QUIC_FL_CONN_RETRANS_OLD_DATA;
Amaury Denoyelleb29a1dc2022-08-12 14:30:04 +02003976 ret = qc_send_app_pkts(qc, frms);
Amaury Denoyelle70467562022-08-17 16:33:13 +02003977 qc->flags &= ~QUIC_FL_CONN_RETRANS_OLD_DATA;
Amaury Denoyelleb29a1dc2022-08-12 14:30:04 +02003978
3979 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
3980 return ret;
3981}
3982
Amaury Denoyelle70467562022-08-17 16:33:13 +02003983/* Try to send application frames from list <frms> on connection <qc>. This
3984 * function is provided for MUX upper layer usage only.
Amaury Denoyellecc130472022-08-17 10:08:16 +02003985 *
3986 * Returns the result from qc_send_app_pkts function.
3987 */
Amaury Denoyelle70467562022-08-17 16:33:13 +02003988int qc_send_mux(struct quic_conn *qc, struct list *frms)
Amaury Denoyellecc130472022-08-17 10:08:16 +02003989{
3990 int ret;
3991
3992 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
Amaury Denoyelle70467562022-08-17 16:33:13 +02003993 BUG_ON(qc->mux_state != QC_MUX_READY); /* Only MUX can uses this function so it must be ready. */
Amaury Denoyellecc130472022-08-17 10:08:16 +02003994
Amaury Denoyelle70467562022-08-17 16:33:13 +02003995 TRACE_STATE("preparing data (from MUX)", QUIC_EV_CONN_TXPKT, qc);
3996 qc->flags |= QUIC_FL_CONN_TX_MUX_CONTEXT;
Amaury Denoyellecc130472022-08-17 10:08:16 +02003997 ret = qc_send_app_pkts(qc, frms);
Amaury Denoyelle70467562022-08-17 16:33:13 +02003998 qc->flags &= ~QUIC_FL_CONN_TX_MUX_CONTEXT;
Amaury Denoyellecc130472022-08-17 10:08:16 +02003999
4000 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
4001 return ret;
4002}
4003
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004004/* Sends handshake packets from up to two encryption levels <tel> and <next_te>
4005 * with <tel_frms> and <next_tel_frms> as frame list respectively for <qc>
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004006 * QUIC connection. <old_data> is used as boolean to send data already sent but
4007 * not already acknowledged (in flight).
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004008 * Returns 1 if succeeded, 0 if not.
4009 */
4010int qc_send_hdshk_pkts(struct quic_conn *qc, int old_data,
4011 enum quic_tls_enc_level tel, struct list *tel_frms,
4012 enum quic_tls_enc_level next_tel, struct list *next_tel_frms)
4013{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004014 int ret, status = 0;
Amaury Denoyelle5b689862022-08-08 16:07:30 +02004015 struct buffer *buf = qc_txb_alloc(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004016
4017 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
4018
4019 if (!buf) {
4020 TRACE_ERROR("buffer allocation failed", QUIC_EV_CONN_TXPKT, qc);
4021 goto leave;
4022 }
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004023
Amaury Denoyellef2476052022-08-04 16:19:57 +02004024 /* Currently buf cannot be non-empty at this stage. Even if a previous
4025 * sendto() has failed it is emptied to simulate packet emission and
4026 * rely on QUIC lost detection to try to emit it.
4027 */
4028 BUG_ON_HOT(b_data(buf));
4029 b_reset(buf);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004030
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004031 if (old_data) {
4032 TRACE_STATE("old data for probing asked", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004033 qc->flags |= QUIC_FL_CONN_RETRANS_OLD_DATA;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004034 }
Amaury Denoyellef2476052022-08-04 16:19:57 +02004035
4036 ret = qc_prep_pkts(qc, buf, tel, tel_frms, next_tel, next_tel_frms);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004037 if (ret == -1)
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004038 goto out;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004039 else if (ret == 0)
4040 goto skip_send;
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004041
Amaury Denoyellef2476052022-08-04 16:19:57 +02004042 if (!qc_send_ppkts(buf, qc->xprt_ctx))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004043 goto out;
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004044
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004045 skip_send:
4046 status = 1;
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004047 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004048 TRACE_STATE("no more need old data for probing", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004049 qc->flags &= ~QUIC_FL_CONN_RETRANS_OLD_DATA;
Amaury Denoyelle5b689862022-08-08 16:07:30 +02004050 qc_txb_release(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004051 leave:
4052 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
4053 return status;
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004054}
4055
4056/* Retransmit up to two datagrams depending on packet number space */
4057static void qc_dgrams_retransmit(struct quic_conn *qc)
4058{
4059 struct quic_enc_level *iqel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
4060 struct quic_enc_level *hqel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
4061 struct quic_enc_level *aqel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
4062
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004063 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
4064
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004065 if (iqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) {
4066 struct list ifrms = LIST_HEAD_INIT(ifrms);
4067 struct list hfrms = LIST_HEAD_INIT(hfrms);
4068
4069 qc_prep_hdshk_fast_retrans(qc, &ifrms, &hfrms);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004070 TRACE_DEVEL("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &ifrms);
4071 TRACE_DEVEL("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &hfrms);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004072 if (!LIST_ISEMPTY(&ifrms)) {
4073 iqel->pktns->tx.pto_probe = 1;
4074 if (!LIST_ISEMPTY(&hfrms)) {
4075 hqel->pktns->tx.pto_probe = 1;
4076 qc_send_hdshk_pkts(qc, 1, QUIC_TLS_ENC_LEVEL_INITIAL, &ifrms,
4077 QUIC_TLS_ENC_LEVEL_HANDSHAKE, &hfrms);
4078 }
4079 }
4080 if (hqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) {
4081 qc_prep_fast_retrans(qc, hqel, &hfrms, NULL);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004082 TRACE_DEVEL("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &hfrms);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004083 if (!LIST_ISEMPTY(&hfrms)) {
4084 hqel->pktns->tx.pto_probe = 1;
4085 qc_send_hdshk_pkts(qc, 1, QUIC_TLS_ENC_LEVEL_HANDSHAKE, &hfrms,
4086 QUIC_TLS_ENC_LEVEL_NONE, NULL);
4087 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004088 TRACE_STATE("no more need to probe Handshake packet number space",
4089 QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004090 hqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED;
4091 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004092 TRACE_STATE("no more need to probe Initial packet number space",
4093 QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004094 iqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED;
4095 }
4096 else {
4097 int i;
4098 struct list frms1 = LIST_HEAD_INIT(frms1);
4099 struct list frms2 = LIST_HEAD_INIT(frms2);
4100
4101 if (hqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) {
4102 hqel->pktns->tx.pto_probe = 0;
4103 for (i = 0; i < QUIC_MAX_NB_PTO_DGRAMS; i++) {
4104 qc_prep_fast_retrans(qc, hqel, &frms1, NULL);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004105 TRACE_DEVEL("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &frms1);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004106 if (!LIST_ISEMPTY(&frms1)) {
4107 hqel->pktns->tx.pto_probe = 1;
4108 qc_send_hdshk_pkts(qc, 1, QUIC_TLS_ENC_LEVEL_HANDSHAKE, &frms1,
4109 QUIC_TLS_ENC_LEVEL_NONE, NULL);
4110 }
4111 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004112 TRACE_STATE("no more need to probe Handshake packet number space",
4113 QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004114 hqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED;
4115 }
4116 else if (aqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) {
4117 aqel->pktns->tx.pto_probe = 0;
4118 qc_prep_fast_retrans(qc, aqel, &frms1, &frms2);
4119 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &frms1);
4120 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &frms2);
4121 if (!LIST_ISEMPTY(&frms1)) {
4122 aqel->pktns->tx.pto_probe = 1;
Amaury Denoyellecc130472022-08-17 10:08:16 +02004123 qc_send_app_probing(qc, &frms1);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004124 }
4125 if (!LIST_ISEMPTY(&frms2)) {
4126 aqel->pktns->tx.pto_probe = 1;
Amaury Denoyellecc130472022-08-17 10:08:16 +02004127 qc_send_app_probing(qc, &frms2);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004128 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004129 TRACE_STATE("no more need to probe 01RTT packet number space",
4130 QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004131 aqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED;
4132 }
4133 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004134 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004135}
4136
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004137/* QUIC connection packet handler task (post handshake) */
4138static struct task *quic_conn_app_io_cb(struct task *t, void *context, unsigned int state)
4139{
4140 struct ssl_sock_ctx *ctx;
4141 struct quic_conn *qc;
4142 struct quic_enc_level *qel;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004143
4144
4145 ctx = context;
4146 qc = ctx->qc;
4147 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004148
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004149 TRACE_ENTER(QUIC_EV_CONN_IO_CB, qc);
4150 TRACE_STATE("connection handshake state", QUIC_EV_CONN_IO_CB, qc, &qc->state);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004151
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02004152 /* Retranmissions */
4153 if (qc->flags & QUIC_FL_CONN_RETRANS_NEEDED) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004154 TRACE_STATE("retransmission needed", QUIC_EV_CONN_IO_CB, qc);
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02004155 qc->flags &= ~QUIC_FL_CONN_RETRANS_NEEDED;
4156 qc_dgrams_retransmit(qc);
4157 }
4158
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02004159 if (!LIST_ISEMPTY(&qel->rx.pqpkts) && qc_qel_may_rm_hp(qc, qel))
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004160 qc_rm_hp_pkts(qc, qel);
4161
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004162 if (!qc_treat_rx_pkts(qel, NULL, ctx, 0)) {
4163 TRACE_DEVEL("qc_treat_rx_pkts() failed", QUIC_EV_CONN_IO_CB, qc);
4164 goto out;
4165 }
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004166
Frédéric Lécaille47756802022-03-25 09:12:16 +01004167 if ((qc->flags & QUIC_FL_CONN_DRAINING) &&
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004168 !(qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE)) {
4169 TRACE_STATE("draining connection (must not send packets)", QUIC_EV_CONN_IO_CB, qc);
Frédéric Lécaille47756802022-03-25 09:12:16 +01004170 goto out;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004171 }
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004172
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004173 /* XXX TODO: how to limit the list frames to send */
Amaury Denoyelle70467562022-08-17 16:33:13 +02004174 if (!qc_send_app_pkts(qc, &qel->pktns->tx.frms)) {
4175 TRACE_DEVEL("qc_send_app_pkts() failed", QUIC_EV_CONN_IO_CB, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004176 goto out;
4177 }
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004178
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004179 out:
4180 TRACE_LEAVE(QUIC_EV_CONN_IO_CB, qc);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004181 return t;
4182}
4183
Amaury Denoyellec09ef0c2022-08-08 18:15:24 +02004184/* Returns a boolean if <qc> needs to emit frames for <qel> encryption level. */
4185static int qc_need_sending(struct quic_conn *qc, struct quic_enc_level *qel)
4186{
4187 return (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) ||
4188 (qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) ||
4189 qel->pktns->tx.pto_probe ||
4190 !LIST_ISEMPTY(&qel->pktns->tx.frms);
4191}
4192
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004193/* QUIC connection packet handler task. */
4194struct task *quic_conn_io_cb(struct task *t, void *context, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004195{
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004196 int ret, ssl_err;
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004197 struct ssl_sock_ctx *ctx;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004198 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004199 enum quic_tls_enc_level tel, next_tel;
4200 struct quic_enc_level *qel, *next_qel;
Amaury Denoyellef2476052022-08-04 16:19:57 +02004201 struct buffer *buf = NULL;
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004202 int st, force_ack, zero_rtt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004203
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004204 ctx = context;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01004205 qc = ctx->qc;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004206 TRACE_ENTER(QUIC_EV_CONN_IO_CB, qc);
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004207 st = qc->state;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004208 TRACE_PROTO("connection state", QUIC_EV_CONN_IO_CB, qc, &st);
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02004209
4210 /* Retranmissions */
4211 if (qc->flags & QUIC_FL_CONN_RETRANS_NEEDED) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004212 TRACE_DEVEL("retransmission needed", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02004213 qc->flags &= ~QUIC_FL_CONN_RETRANS_NEEDED;
4214 qc_dgrams_retransmit(qc);
4215 }
4216
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004217 if (qc->flags & QUIC_FL_CONN_IO_CB_WAKEUP) {
4218 qc->flags &= ~QUIC_FL_CONN_IO_CB_WAKEUP;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004219 TRACE_DEVEL("needs to wakeup the timer task after the anti-amplicaiton limit was reached",
4220 QUIC_EV_CONN_IO_CB, qc);
4221 /* 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 +01004222 * after the anti-amplification was reached.
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004223 *
4224 * TODO: this part should be removed. This was there because the
4225 * datagram parser was not executed by only one thread.
Frédéric Lécaille59507de2022-08-11 12:14:07 +02004226 */
Frédéric Lécaille6b663152022-01-04 17:03:11 +01004227 qc_set_timer(qc);
4228 if (tick_isset(qc->timer) && tick_is_lt(qc->timer, now_ms))
4229 task_wakeup(qc->timer_task, TASK_WOKEN_MSG);
4230 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004231 ssl_err = SSL_ERROR_NONE;
Frédéric Lécaille4137b2d2021-12-17 18:24:16 +01004232 zero_rtt = st < QUIC_HS_ST_COMPLETE &&
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02004233 (!LIST_ISEMPTY(&qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA].rx.pqpkts) ||
Frédéric Lécaille4137b2d2021-12-17 18:24:16 +01004234 qc_el_rx_pkts(&qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA]));
Frédéric Lécaille2766e782021-08-30 17:16:07 +02004235 start:
Frédéric Lécaille917a7db2022-01-03 17:00:35 +01004236 if (st >= QUIC_HS_ST_COMPLETE &&
4237 qc_el_rx_pkts(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE])) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004238 TRACE_DEVEL("remaining Handshake packets", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaille917a7db2022-01-03 17:00:35 +01004239 /* There may be remaining Handshake packets to treat and acknowledge. */
4240 tel = QUIC_TLS_ENC_LEVEL_HANDSHAKE;
4241 next_tel = QUIC_TLS_ENC_LEVEL_APP;
4242 }
4243 else if (!quic_get_tls_enc_levels(&tel, &next_tel, st, zero_rtt))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004244 goto out;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004245
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004246 qel = &qc->els[tel];
Frédéric Lécaillef7980962021-08-19 17:35:21 +02004247 next_qel = next_tel == QUIC_TLS_ENC_LEVEL_NONE ? NULL : &qc->els[next_tel];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004248
4249 next_level:
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01004250 /* Treat packets waiting for header packet protection decryption */
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02004251 if (!LIST_ISEMPTY(&qel->rx.pqpkts) && qc_qel_may_rm_hp(qc, qel))
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004252 qc_rm_hp_pkts(qc, qel);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004253
Frédéric Lécaille2766e782021-08-30 17:16:07 +02004254 force_ack = qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL] ||
4255 qel == &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
4256 if (!qc_treat_rx_pkts(qel, next_qel, ctx, force_ack))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004257 goto out;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004258
Frédéric Lécaille47756802022-03-25 09:12:16 +01004259 if ((qc->flags & QUIC_FL_CONN_DRAINING) &&
4260 !(qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE))
4261 goto out;
4262
Frédéric Lécaille1231d3c2022-04-28 15:43:46 +02004263 if (next_qel && next_qel == &qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA] &&
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02004264 !LIST_ISEMPTY(&next_qel->rx.pqpkts)) {
Frédéric Lécaille1231d3c2022-04-28 15:43:46 +02004265 if ((next_qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET)) {
4266 qel = next_qel;
4267 next_qel = NULL;
4268 goto next_level;
4269 }
4270 else {
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02004271 struct quic_rx_packet *pkt, *pkttmp;
Frédéric Lécaille1231d3c2022-04-28 15:43:46 +02004272 struct quic_enc_level *aqel = &qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA];
4273
4274 /* Drop these 0-RTT packets */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004275 TRACE_DEVEL("drop all 0-RTT packets", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02004276 list_for_each_entry_safe(pkt, pkttmp, &aqel->rx.pqpkts, list) {
4277 LIST_DELETE(&pkt->list);
Frédéric Lécaille1231d3c2022-04-28 15:43:46 +02004278 quic_rx_packet_refdec(pkt);
4279 }
4280 }
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01004281 }
4282
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004283 st = qc->state;
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004284 if (st >= QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004285 if (!(qc->flags & QUIC_FL_CONN_POST_HANDSHAKE_FRAMES_BUILT) &&
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004286 !quic_build_post_handshake_frames(qc))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004287 goto out;
Frédéric Lécaillefee7ba62021-12-06 12:09:08 +01004288
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004289 if (!(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].tls_ctx.flags &
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004290 QUIC_FL_TLS_SECRETS_DCD)) {
4291 /* Discard the Handshake keys. */
4292 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
4293 TRACE_PROTO("discarding Handshake pktns", QUIC_EV_CONN_PHPKTS, qc);
4294 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns, qc);
4295 qc_set_timer(qc);
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004296 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004297 qc_release_pktns_frms(qc, qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns);
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004298 }
4299
4300 if (qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) {
4301 /* There may be remaining handshake to build (acks) */
4302 st = QUIC_HS_ST_SERVER_HANDSHAKE;
4303 }
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004304 }
4305
Frédéric Lécaillebec186d2022-01-12 15:32:55 +01004306 /* A listener does not send any O-RTT packet. O-RTT packet number space must not
4307 * be considered.
4308 */
4309 if (!quic_get_tls_enc_levels(&tel, &next_tel, st, 0))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004310 goto out;
Amaury Denoyellef2476052022-08-04 16:19:57 +02004311
Amaury Denoyellef0f92b22022-08-09 17:52:52 +02004312 if (!qc_need_sending(qc, qel) &&
4313 (!next_qel || !qc_need_sending(qc, next_qel))) {
Amaury Denoyellec09ef0c2022-08-08 18:15:24 +02004314 goto skip_send;
Amaury Denoyellef0f92b22022-08-09 17:52:52 +02004315 }
Amaury Denoyellec09ef0c2022-08-08 18:15:24 +02004316
Amaury Denoyelle5b689862022-08-08 16:07:30 +02004317 buf = qc_txb_alloc(qc);
Amaury Denoyellef2476052022-08-04 16:19:57 +02004318 if (!buf)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004319 goto out;
Amaury Denoyellef2476052022-08-04 16:19:57 +02004320
4321 /* Currently buf cannot be non-empty at this stage. Even if a previous
4322 * sendto() has failed it is emptied to simulate packet emission and
4323 * rely on QUIC lost detection to try to emit it.
4324 */
4325 BUG_ON_HOT(b_data(buf));
4326 b_reset(buf);
4327
4328 ret = qc_prep_pkts(qc, buf, tel, &qc->els[tel].pktns->tx.frms,
Frédéric Lécaillefc888442022-04-11 15:39:34 +02004329 next_tel, &qc->els[next_tel].pktns->tx.frms);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004330 if (ret == -1)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004331 goto out;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004332 else if (ret == 0)
4333 goto skip_send;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004334
Amaury Denoyellef2476052022-08-04 16:19:57 +02004335 if (!qc_send_ppkts(buf, ctx))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004336 goto out;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004337
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004338 skip_send:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004339 /* Check if there is something to do for the next level.
4340 */
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02004341 if (next_qel && next_qel != qel &&
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004342 (next_qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET) &&
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02004343 (!LIST_ISEMPTY(&next_qel->rx.pqpkts) || qc_el_rx_pkts(next_qel))) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004344 qel = next_qel;
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02004345 next_qel = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004346 goto next_level;
4347 }
4348
Frédéric Lécaille47756802022-03-25 09:12:16 +01004349 out:
Amaury Denoyelle5b689862022-08-08 16:07:30 +02004350 qc_txb_release(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004351 TRACE_LEAVE(QUIC_EV_CONN_IO_CB, qc, &st, &ssl_err);
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004352 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004353}
4354
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05004355/* Uninitialize <qel> QUIC encryption level. Never fails. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004356static 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 +01004357{
4358 int i;
4359
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004360 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
4361
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004362 for (i = 0; i < qel->tx.crypto.nb_buf; i++) {
4363 if (qel->tx.crypto.bufs[i]) {
4364 pool_free(pool_head_quic_crypto_buf, qel->tx.crypto.bufs[i]);
4365 qel->tx.crypto.bufs[i] = NULL;
4366 }
4367 }
Willy Tarreau61cfdf42021-02-20 10:46:51 +01004368 ha_free(&qel->tx.crypto.bufs);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004369
4370 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004371}
4372
4373/* Initialize QUIC TLS encryption level with <level<> as level for <qc> QUIC
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05004374 * connection allocating everything needed.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004375 * Returns 1 if succeeded, 0 if not.
4376 */
4377static int quic_conn_enc_level_init(struct quic_conn *qc,
4378 enum quic_tls_enc_level level)
4379{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004380 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004381 struct quic_enc_level *qel;
4382
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004383 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
4384
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004385 qel = &qc->els[level];
4386 qel->level = quic_to_ssl_enc_level(level);
4387 qel->tls_ctx.rx.aead = qel->tls_ctx.tx.aead = NULL;
4388 qel->tls_ctx.rx.md = qel->tls_ctx.tx.md = NULL;
4389 qel->tls_ctx.rx.hp = qel->tls_ctx.tx.hp = NULL;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +01004390 qel->tls_ctx.flags = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004391
4392 qel->rx.pkts = EB_ROOT;
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02004393 LIST_INIT(&qel->rx.pqpkts);
Frédéric Lécaille9054d1b2021-07-26 16:23:53 +02004394 qel->rx.crypto.offset = 0;
4395 qel->rx.crypto.frms = EB_ROOT_UNIQUE;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004396
4397 /* Allocate only one buffer. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004398 /* TODO: use a pool */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004399 qel->tx.crypto.bufs = malloc(sizeof *qel->tx.crypto.bufs);
4400 if (!qel->tx.crypto.bufs)
4401 goto err;
4402
4403 qel->tx.crypto.bufs[0] = pool_alloc(pool_head_quic_crypto_buf);
4404 if (!qel->tx.crypto.bufs[0])
4405 goto err;
4406
4407 qel->tx.crypto.bufs[0]->sz = 0;
4408 qel->tx.crypto.nb_buf = 1;
4409
4410 qel->tx.crypto.sz = 0;
4411 qel->tx.crypto.offset = 0;
4412
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004413 ret = 1;
4414 leave:
4415 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
4416 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004417
4418 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01004419 ha_free(&qel->tx.crypto.bufs);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004420 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004421}
4422
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004423/* Release the quic_conn <qc>. The connection is removed from the CIDs tree.
4424 * The connection tasklet is killed.
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004425 *
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004426 * This function must only be called by the thread responsible of the quic_conn
4427 * tasklet.
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004428 */
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004429static void quic_conn_release(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004430{
4431 int i;
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004432 struct ssl_sock_ctx *conn_ctx;
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004433 struct eb64_node *node;
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02004434 struct quic_tls_ctx *app_tls_ctx;
Amaury Denoyelle2c31e122022-06-20 10:52:55 +02004435 struct quic_rx_packet *pkt, *pktback;
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004436
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004437 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
4438
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02004439 /* We must not free the quic-conn if the MUX is still allocated. */
4440 BUG_ON(qc->mux_state == QC_MUX_READY);
4441
Willy Tarreau54bc7862022-08-10 07:26:27 +02004442 /* in the unlikely (but possible) case the connection was just added to
4443 * the accept_list we must delete it from there.
4444 */
4445 MT_LIST_DELETE(&qc->accept_list);
4446
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004447 /* free remaining stream descriptors */
4448 node = eb64_first(&qc->streams_by_id);
4449 while (node) {
4450 struct qc_stream_desc *stream;
4451
4452 stream = eb64_entry(node, struct qc_stream_desc, by_id);
4453 node = eb64_next(node);
4454
Amaury Denoyellec9acc312022-04-01 16:41:21 +02004455 /* all streams attached to the quic-conn are released, so
4456 * qc_stream_desc_free will liberate the stream instance.
4457 */
4458 BUG_ON(!stream->release);
Frédéric Lécailleea4a5cb2022-08-20 18:59:36 +02004459 qc_stream_desc_free(stream, 1);
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004460 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004461
Amaury Denoyelle2c31e122022-06-20 10:52:55 +02004462 /* Purge Rx packet list. */
4463 list_for_each_entry_safe(pkt, pktback, &qc->rx.pkt_list, qc_rx_pkt_list) {
4464 LIST_DELETE(&pkt->qc_rx_pkt_list);
4465 pool_free(pool_head_quic_rx_packet, pkt);
4466 }
4467
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004468 if (qc->idle_timer_task) {
4469 task_destroy(qc->idle_timer_task);
4470 qc->idle_timer_task = NULL;
4471 }
4472
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004473 if (qc->timer_task) {
4474 task_destroy(qc->timer_task);
4475 qc->timer_task = NULL;
4476 }
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004477
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004478 /* remove the connection from receiver cids trees */
4479 ebmb_delete(&qc->odcid_node);
4480 ebmb_delete(&qc->scid_node);
4481 free_quic_conn_cids(qc);
Amaury Denoyelle2af19852021-09-30 11:03:28 +02004482
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004483 conn_ctx = qc->xprt_ctx;
Amaury Denoyelle2d9794b2022-01-20 17:43:20 +01004484 if (conn_ctx) {
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004485 tasklet_free(conn_ctx->wait_event.tasklet);
Amaury Denoyelle2d9794b2022-01-20 17:43:20 +01004486 SSL_free(conn_ctx->ssl);
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004487 pool_free(pool_head_quic_conn_ctx, conn_ctx);
Amaury Denoyelle2d9794b2022-01-20 17:43:20 +01004488 }
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004489
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02004490 quic_tls_ku_free(qc);
4491 for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++) {
4492 quic_tls_ctx_secs_free(&qc->els[i].tls_ctx);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004493 quic_conn_enc_level_uninit(qc, &qc->els[i]);
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02004494 }
Frédéric Lécaille301425b2022-06-14 17:40:39 +02004495 quic_tls_ctx_secs_free(&qc->negotiated_ictx);
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02004496
4497 app_tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
4498 pool_free(pool_head_quic_tls_secret, app_tls_ctx->rx.secret);
4499 pool_free(pool_head_quic_tls_secret, app_tls_ctx->tx.secret);
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01004500
Frédéric Lécailleeb2a2da2022-04-01 12:15:24 +02004501 for (i = 0; i < QUIC_TLS_PKTNS_MAX; i++) {
Frédéric Lécaille8ddde4f2022-08-01 14:07:50 +02004502 quic_pktns_tx_pkts_release(&qc->pktns[i], qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004503 quic_free_arngs(qc, &qc->pktns[i].rx.arngs);
Frédéric Lécailleeb2a2da2022-04-01 12:15:24 +02004504 }
Frédéric Lécaille64670882022-04-01 11:57:19 +02004505
Amaury Denoyelle67e6cd52021-12-13 17:07:03 +01004506 pool_free(pool_head_quic_conn_rxbuf, qc->rx.buf.area);
4507 pool_free(pool_head_quic_conn, qc);
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01004508 TRACE_PROTO("QUIC conn. freed", QUIC_EV_CONN_FREED, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004509
4510 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004511}
4512
Amaury Denoyellee0be5732022-04-05 17:34:18 +02004513static void quic_close(struct connection *conn, void *xprt_ctx)
Amaury Denoyelle414cac52021-09-22 11:14:37 +02004514{
4515 struct ssl_sock_ctx *conn_ctx = xprt_ctx;
Amaury Denoyelle29632b82022-01-18 16:50:58 +01004516 struct quic_conn *qc = conn_ctx->qc;
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01004517
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01004518 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01004519
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01004520 /* Next application data can be dropped. */
4521 qc->mux_state = QC_MUX_RELEASED;
4522
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02004523 /* If the quic-conn timer has already expired free the quic-conn. */
4524 if (qc->flags & QUIC_FL_CONN_EXP_TIMER) {
4525 quic_conn_release(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004526 goto leave;
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02004527 }
4528
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02004529 qc_check_close_on_released_mux(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004530 leave:
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01004531 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle414cac52021-09-22 11:14:37 +02004532}
4533
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004534/* Callback called upon loss detection and PTO timer expirations. */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004535static struct task *process_timer(struct task *task, void *ctx, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004536{
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02004537 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004538 struct quic_conn *qc;
4539 struct quic_pktns *pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004540
4541 conn_ctx = task->context;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01004542 qc = conn_ctx->qc;
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004543 TRACE_ENTER(QUIC_EV_CONN_PTIMER, qc,
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01004544 NULL, NULL, &qc->path->ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004545 task->expire = TICK_ETERNITY;
4546 pktns = quic_loss_pktns(qc);
4547 if (tick_isset(pktns->tx.loss_time)) {
4548 struct list lost_pkts = LIST_HEAD_INIT(lost_pkts);
4549
4550 qc_packet_loss_lookup(pktns, qc, &lost_pkts);
Frédéric Lécaille15773f22022-08-24 17:57:09 +02004551 if (!LIST_ISEMPTY(&lost_pkts))
4552 tasklet_wakeup(conn_ctx->wait_event.tasklet);
Frédéric Lécaille277c4622022-08-24 17:06:04 +02004553 qc_release_lost_pkts(qc, pktns, &lost_pkts, now_ms);
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004554 qc_set_timer(qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004555 goto out;
4556 }
4557
4558 if (qc->path->in_flight) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004559 pktns = quic_pto_pktns(qc, qc->state >= QUIC_HS_ST_COMPLETE, NULL);
Frédéric Lécailledafbde62022-04-26 13:54:28 +02004560 if (qc->mux_state == QC_MUX_READY && qc->qcc->subs &&
4561 qc->qcc->subs->events & SUB_RETRY_SEND) {
4562 struct qcc *qcc = qc->qcc;
4563
4564 pktns->tx.pto_probe = QUIC_MAX_NB_PTO_DGRAMS;
4565 tasklet_wakeup(qcc->subs->tasklet);
4566 qcc->subs->events &= ~SUB_RETRY_SEND;
4567 if (!qcc->subs->events)
4568 qcc->subs = NULL;
4569 }
4570 else {
4571 qc->flags |= QUIC_FL_CONN_RETRANS_NEEDED;
4572 pktns->flags |= QUIC_FL_PKTNS_PROBE_NEEDED;
4573 if (pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL]) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004574 TRACE_STATE("needs to probe Initial packet number space", QUIC_EV_CONN_TXPKT, qc);
4575 if (qc->pktns[QUIC_TLS_PKTNS_HANDSHAKE].tx.in_flight) {
Frédéric Lécailledafbde62022-04-26 13:54:28 +02004576 qc->pktns[QUIC_TLS_PKTNS_HANDSHAKE].flags |= QUIC_FL_PKTNS_PROBE_NEEDED;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004577 TRACE_STATE("needs to probe Handshake packet number space", QUIC_EV_CONN_TXPKT, qc);
4578 }
4579 }
4580 else if (pktns == &qc->pktns[QUIC_TLS_PKTNS_HANDSHAKE]) {
4581 TRACE_STATE("needs to probe Handshake packet number space", QUIC_EV_CONN_TXPKT, qc);
4582 }
4583 else if (pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT]) {
4584 TRACE_STATE("needs to probe 01RTT packet number space", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécailledafbde62022-04-26 13:54:28 +02004585 }
Frédéric Lécaille0fa553d2022-01-17 14:26:12 +01004586 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004587 }
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004588 else if (!qc_is_listener(qc) && qc->state <= QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004589 struct quic_enc_level *iel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
4590 struct quic_enc_level *hel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
4591
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004592 if (hel->tls_ctx.flags == QUIC_FL_TLS_SECRETS_SET)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004593 hel->pktns->tx.pto_probe = 1;
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004594 if (iel->tls_ctx.flags == QUIC_FL_TLS_SECRETS_SET)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004595 iel->pktns->tx.pto_probe = 1;
4596 }
Frédéric Lécaillea56054e2021-12-31 16:35:28 +01004597
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004598 tasklet_wakeup(conn_ctx->wait_event.tasklet);
4599 qc->path->loss.pto_count++;
4600
4601 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004602 TRACE_LEAVE(QUIC_EV_CONN_PTIMER, qc, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004603
4604 return task;
4605}
4606
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004607/* Parse the Retry token from buffer <token> with <end> a pointer to
4608 * one byte past the end of this buffer. This will extract the ODCID
4609 * which will be stored into <odcid>
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004610 *
4611 * Returns 0 on success else non-zero.
4612 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004613static int parse_retry_token(struct quic_conn *qc,
4614 const unsigned char *token, const unsigned char *end,
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004615 struct quic_cid *odcid)
4616{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004617 int ret = 0;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004618 uint64_t odcid_len;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004619 uint32_t timestamp;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004620
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004621 TRACE_ENTER(QUIC_EV_CONN_LPKT, qc);
4622
4623 if (!quic_dec_int(&odcid_len, &token, end)) {
4624 TRACE_ERROR("quic_dec_int() error", QUIC_EV_CONN_LPKT, qc);
4625 goto leave;
4626 }
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004627
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004628 /* RFC 9000 7.2. Negotiating Connection IDs:
4629 * When an Initial packet is sent by a client that has not previously
4630 * received an Initial or Retry packet from the server, the client
4631 * populates the Destination Connection ID field with an unpredictable
4632 * value. This Destination Connection ID MUST be at least 8 bytes in length.
4633 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004634 if (odcid_len < QUIC_ODCID_MINLEN || odcid_len > QUIC_CID_MAXLEN) {
4635 TRACE_ERROR("wrong ODCID length", QUIC_EV_CONN_LPKT, qc);
4636 goto leave;
4637 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004638
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004639 if (end - token < odcid_len + sizeof timestamp) {
4640 TRACE_ERROR("too long ODCID length", QUIC_EV_CONN_LPKT, qc);
4641 goto leave;
4642 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004643
4644 timestamp = ntohl(read_u32(token + odcid_len));
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004645 if (timestamp + MS_TO_TICKS(QUIC_RETRY_DURATION_MS) <= now_ms) {
4646 TRACE_ERROR("token has expired", QUIC_EV_CONN_LPKT, qc);
4647 goto leave;
4648 }
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004649
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004650 ret = 1;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004651 memcpy(odcid->data, token, odcid_len);
4652 odcid->len = odcid_len;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004653 leave:
4654 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc);
4655 return !ret;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004656}
4657
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004658/* Allocate a new QUIC connection with <version> as QUIC version. <ipv4>
4659 * boolean is set to 1 for IPv4 connection, 0 for IPv6. <server> is set to 1
4660 * for QUIC servers (or haproxy listeners).
4661 * <dcid> is the destination connection ID, <scid> is the source connection ID,
4662 * <token> the token found to be used for this connection with <token_len> as
4663 * length. <saddr> is the source address.
4664 * Returns the connection if succeeded, NULL if not.
4665 */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02004666static struct quic_conn *qc_new_conn(const struct quic_version *qv, int ipv4,
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004667 struct quic_cid *dcid, struct quic_cid *scid,
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02004668 const struct quic_cid *token_odcid,
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004669 struct sockaddr_storage *saddr,
Frédéric Lécaille748ece62022-05-21 23:58:40 +02004670 int server, int token, void *owner)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004671{
4672 int i;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004673 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004674 /* Initial CID. */
4675 struct quic_connection_id *icid;
Frédéric Lécaillec0b481f2022-02-02 15:39:55 +01004676 char *buf_area = NULL;
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01004677 struct listener *l = NULL;
Frédéric Lécaille43910a92022-07-11 10:24:21 +02004678 struct quic_cc_algo *cc_algo = NULL;
Frédéric Lécaille86a53c52022-08-19 18:18:13 +02004679 struct quic_tls_ctx *ictx;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004680 TRACE_ENTER(QUIC_EV_CONN_INIT);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004681 qc = pool_zalloc(pool_head_quic_conn);
4682 if (!qc) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004683 TRACE_ERROR("Could not allocate a new connection", QUIC_EV_CONN_INIT);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004684 goto err;
4685 }
4686
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004687 buf_area = pool_alloc(pool_head_quic_conn_rxbuf);
4688 if (!buf_area) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004689 TRACE_ERROR("Could not allocate a new RX buffer", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004690 goto err;
4691 }
4692
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004693 qc->cids = EB_ROOT;
4694 /* QUIC Server (or listener). */
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004695 if (server) {
Frédéric Lécaillea89659a2022-05-19 11:58:53 +02004696 struct proxy *prx;
4697
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01004698 l = owner;
Frédéric Lécaillea89659a2022-05-19 11:58:53 +02004699 prx = l->bind_conf->frontend;
Frédéric Lécaille43910a92022-07-11 10:24:21 +02004700 cc_algo = l->bind_conf->quic_cc_algo;
Frédéric Lécaille6b197642021-07-06 16:25:08 +02004701
Frédéric Lécaillea89659a2022-05-19 11:58:53 +02004702 qc->prx_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
4703 &quic_stats_module);
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01004704 qc->flags |= QUIC_FL_CONN_LISTENER;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004705 qc->state = QUIC_HS_ST_SERVER_INITIAL;
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01004706 /* Copy the initial DCID with the address. */
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004707 qc->odcid.len = dcid->len;
4708 qc->odcid.addrlen = dcid->addrlen;
4709 memcpy(qc->odcid.data, dcid->data, dcid->len + dcid->addrlen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004710
Amaury Denoyelle42b9f1c2021-11-24 15:29:53 +01004711 /* copy the packet SCID to reuse it as DCID for sending */
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004712 if (scid->len)
4713 memcpy(qc->dcid.data, scid->data, scid->len);
4714 qc->dcid.len = scid->len;
Amaury Denoyellef2476052022-08-04 16:19:57 +02004715 qc->tx.buf = BUF_NULL;
Amaury Denoyelle2af19852021-09-30 11:03:28 +02004716 qc->li = l;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004717 }
4718 /* QUIC Client (outgoing connection to servers) */
4719 else {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004720 qc->state = QUIC_HS_ST_CLIENT_INITIAL;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004721 if (dcid->len)
4722 memcpy(qc->dcid.data, dcid->data, dcid->len);
4723 qc->dcid.len = dcid->len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004724 }
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01004725 qc->mux_state = QC_MUX_NULL;
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02004726 qc->err = quic_err_transport(QC_ERR_NO_ERROR);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004727
Amaury Denoyelle0442efd2022-01-28 16:02:13 +01004728 icid = new_quic_cid(&qc->cids, qc, 0);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004729 if (!icid) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004730 TRACE_ERROR("Could not allocate a new connection ID", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004731 goto err;
4732 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004733
Frédéric Lécaille74904a42022-01-27 15:35:56 +01004734 /* insert the allocated CID in the receiver datagram handler tree */
4735 if (server)
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01004736 ebmb_insert(&quic_dghdlrs[tid].cids, &icid->node, icid->cid.len);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01004737
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004738 /* Select our SCID which is the first CID with 0 as sequence number. */
4739 qc->scid = icid->cid;
4740
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004741 /* Packet number spaces initialization. */
4742 for (i = 0; i < QUIC_TLS_PKTNS_MAX; i++)
4743 quic_pktns_init(&qc->pktns[i]);
4744 /* QUIC encryption level context initialization. */
4745 for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++) {
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004746 if (!quic_conn_enc_level_init(qc, i)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004747 TRACE_ERROR("Could not initialize an encryption level", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004748 goto err;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004749 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004750 /* Initialize the packet number space. */
4751 qc->els[i].pktns = &qc->pktns[quic_tls_pktns(i)];
4752 }
4753
Frédéric Lécaille301425b2022-06-14 17:40:39 +02004754 qc->original_version = qv;
4755 qc->tps_tls_ext = (qc->original_version->num & 0xff000000) == 0xff000000 ?
Frédéric Lécaillea956d152021-11-10 09:24:22 +01004756 TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS_DRAFT:
4757 TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004758 /* TX part. */
4759 LIST_INIT(&qc->tx.frms_to_send);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004760 qc->tx.nb_buf = QUIC_CONN_TX_BUFS_NB;
4761 qc->tx.wbuf = qc->tx.rbuf = 0;
4762 qc->tx.bytes = 0;
Amaury Denoyellef2476052022-08-04 16:19:57 +02004763 qc->tx.buf = BUF_NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004764 /* RX part. */
4765 qc->rx.bytes = 0;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004766 qc->rx.buf = b_make(buf_area, QUIC_CONN_RX_BUFSZ, 0, 0);
Frédéric Lécaille664741e2022-05-02 18:46:58 +02004767 for (i = 0; i < QCS_MAX_TYPES; i++)
4768 qc->rx.strms[i].nb_streams = 0;
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02004769
4770 qc->nb_pkt_for_cc = 1;
4771 qc->nb_pkt_since_cc = 0;
4772
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004773 LIST_INIT(&qc->rx.pkt_list);
Frédéric Lécaille40df78f2021-11-30 10:59:37 +01004774 if (!quic_tls_ku_init(qc)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004775 TRACE_ERROR("Key update initialization failed", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille40df78f2021-11-30 10:59:37 +01004776 goto err;
4777 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004778
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004779 /* XXX TO DO: Only one path at this time. */
4780 qc->path = &qc->paths[0];
Frédéric Lécaille43910a92022-07-11 10:24:21 +02004781 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 +01004782
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01004783 /* required to use MTLIST_IN_LIST */
4784 MT_LIST_INIT(&qc->accept_list);
4785
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004786 qc->streams_by_id = EB_ROOT_UNIQUE;
Amaury Denoyelled2f80a22022-04-15 17:30:49 +02004787 qc->stream_buf_count = 0;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004788 memcpy(&qc->peer_addr, saddr, sizeof qc->peer_addr);
4789
Frédéric Lécaille748ece62022-05-21 23:58:40 +02004790 if (server && !qc_lstnr_params_init(qc, &l->bind_conf->quic_params,
4791 icid->stateless_reset_token,
4792 dcid->data, dcid->len,
Frédéric Lécaille7629f5d2022-08-11 18:54:26 +02004793 qc->scid.data, qc->scid.len, token_odcid))
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004794 goto err;
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004795
Frédéric Lécaille3fd92f62022-05-19 14:35:20 +02004796 if (qc_conn_alloc_ssl_ctx(qc) ||
4797 !quic_conn_init_timer(qc) ||
4798 !quic_conn_init_idle_timer_task(qc))
4799 goto err;
4800
Frédéric Lécaille86a53c52022-08-19 18:18:13 +02004801 ictx = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].tls_ctx;
4802 if (!qc_new_isecs(qc, ictx,qc->original_version, dcid->data, dcid->len, 1))
Frédéric Lécaille3fd92f62022-05-19 14:35:20 +02004803 goto err;
4804
Frédéric Lécaille86a53c52022-08-19 18:18:13 +02004805 if (!quic_tls_dec_aes_ctx_init(&ictx->rx.hp_ctx, ictx->rx.hp, ictx->rx.hp_key) ||
4806 !quic_tls_enc_aes_ctx_init(&ictx->tx.hp_ctx, ictx->tx.hp, ictx->tx.hp_key))
4807 goto err;
4808
Amaury Denoyellee770ce32021-12-21 14:51:56 +01004809 TRACE_LEAVE(QUIC_EV_CONN_INIT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004810
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004811 return qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004812
4813 err:
Frédéric Lécaillec0b481f2022-02-02 15:39:55 +01004814 pool_free(pool_head_quic_conn_rxbuf, buf_area);
4815 if (qc)
4816 qc->rx.buf.area = NULL;
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004817 quic_conn_release(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004818 TRACE_LEAVE(QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004819 return NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004820}
4821
4822/* Initialize the timer task of <qc> QUIC connection.
4823 * Returns 1 if succeeded, 0 if not.
4824 */
4825static int quic_conn_init_timer(struct quic_conn *qc)
4826{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004827 int ret = 0;
Frédéric Lécaillef57c3332021-12-09 10:06:21 +01004828 /* Attach this task to the same thread ID used for the connection */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004829 TRACE_ENTER(QUIC_EV_CONN_NEW, qc);
4830
Willy Tarreau87168752022-06-13 16:31:53 +02004831 qc->timer_task = task_new_on(qc->tid);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004832 if (!qc->timer_task) {
4833 TRACE_ERROR("timer task allocation failed", QUIC_EV_CONN_NEW, qc);
4834 goto leave;
4835 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004836
4837 qc->timer = TICK_ETERNITY;
4838 qc->timer_task->process = process_timer;
Frédéric Lécaille7fbb94d2022-01-31 10:37:07 +01004839 qc->timer_task->context = qc->xprt_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004840
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004841 ret = 1;
4842 leave:
4843 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
4844 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004845}
4846
Frédéric Lécaille47756802022-03-25 09:12:16 +01004847/* Rearm the idle timer for <qc> QUIC connection. */
4848static void qc_idle_timer_do_rearm(struct quic_conn *qc)
4849{
4850 unsigned int expire;
4851
4852 expire = QUIC_MAX(3 * quic_pto(qc), qc->max_idle_timeout);
4853 qc->idle_timer_task->expire = tick_add(now_ms, MS_TO_TICKS(expire));
4854}
4855
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004856/* Rearm the idle timer for <qc> QUIC connection depending on <read> boolean
4857 * which is set to 1 when receiving a packet , and 0 when sending packet
4858 */
4859static void qc_idle_timer_rearm(struct quic_conn *qc, int read)
4860{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004861 TRACE_ENTER(QUIC_EV_CONN_IDLE_TIMER, qc);
4862
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004863 if (read) {
4864 qc->flags |= QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ;
4865 }
4866 else {
4867 qc->flags &= ~QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ;
4868 }
Frédéric Lécaille47756802022-03-25 09:12:16 +01004869 qc_idle_timer_do_rearm(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004870
4871 TRACE_LEAVE(QUIC_EV_CONN_IDLE_TIMER, qc);
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004872}
4873
4874/* The task handling the idle timeout */
4875static struct task *qc_idle_timer_task(struct task *t, void *ctx, unsigned int state)
4876{
4877 struct quic_conn *qc = ctx;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02004878 struct quic_counters *prx_counters = qc->prx_counters;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02004879 unsigned int qc_flags = qc->flags;
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004880
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004881 TRACE_ENTER(QUIC_EV_CONN_IDLE_TIMER, qc);
4882
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02004883 /* Notify the MUX before settings QUIC_FL_CONN_EXP_TIMER or the MUX
4884 * might free the quic-conn too early via quic_close().
4885 */
4886 qc_notify_close(qc);
4887
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02004888 /* If the MUX is still alive, keep the quic-conn. The MUX is
4889 * responsible to call quic_close to release it.
4890 */
4891 qc->flags |= QUIC_FL_CONN_EXP_TIMER;
4892 if (qc->mux_state != QC_MUX_READY)
4893 quic_conn_release(qc);
4894
4895 /* TODO if the quic-conn cannot be freed because of the MUX, we may at
4896 * least clean some parts of it such as the tasklet.
4897 */
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02004898
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02004899 if (!(qc_flags & QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED)) {
4900 qc_flags |= QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004901 TRACE_DEVEL("dec half open counter", QUIC_EV_CONN_SSLALERT, qc);
Frédéric Lécailleeb791452022-05-24 16:01:39 +02004902 HA_ATOMIC_DEC(&prx_counters->half_open_conn);
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02004903 }
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004904
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004905 TRACE_LEAVE(QUIC_EV_CONN_IDLE_TIMER, qc);
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004906 return NULL;
4907}
4908
4909/* Initialize the idle timeout task for <qc>.
4910 * Returns 1 if succeeded, 0 if not.
4911 */
4912static int quic_conn_init_idle_timer_task(struct quic_conn *qc)
4913{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004914 int ret = 0;
4915
4916 TRACE_ENTER(QUIC_EV_CONN_NEW, qc);
4917
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004918 qc->idle_timer_task = task_new_here();
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004919 if (!qc->idle_timer_task) {
4920 TRACE_ERROR("Idle timer task allocation failed", QUIC_EV_CONN_NEW, qc);
4921 goto leave;
4922 }
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004923
4924 qc->idle_timer_task->process = qc_idle_timer_task;
4925 qc->idle_timer_task->context = qc;
4926 qc_idle_timer_rearm(qc, 1);
4927 task_queue(qc->idle_timer_task);
4928
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004929 ret = 1;
4930 leave:
4931 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
4932 return ret;
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004933}
4934
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004935/* Parse into <pkt> a long header located at <*buf> buffer, <end> begin a pointer to the end
4936 * past one byte of this buffer.
4937 */
4938static inline int quic_packet_read_long_header(unsigned char **buf, const unsigned char *end,
4939 struct quic_rx_packet *pkt)
4940{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004941 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004942 unsigned char dcid_len, scid_len;
4943
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004944 TRACE_ENTER(QUIC_EV_CONN_RXPKT);
4945
4946 if (end == *buf) {
4947 TRACE_ERROR("buffer data consumed", QUIC_EV_CONN_RXPKT);
4948 goto leave;
4949 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004950
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004951 /* Destination Connection ID Length */
4952 dcid_len = *(*buf)++;
4953 /* 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 +02004954 if (dcid_len > QUIC_CID_MAXLEN || end - *buf < dcid_len + 1) {
4955 TRACE_ERROR("too long DCID", QUIC_EV_CONN_RXPKT);
4956 goto leave;
4957 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004958
4959 if (dcid_len) {
4960 /* Check that the length of this received DCID matches the CID lengths
4961 * of our implementation for non Initials packets only.
4962 */
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01004963 if (pkt->type != QUIC_PACKET_TYPE_INITIAL &&
4964 pkt->type != QUIC_PACKET_TYPE_0RTT &&
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004965 dcid_len != QUIC_HAP_CID_LEN) {
4966 TRACE_ERROR("wrong DCID length", QUIC_EV_CONN_RXPKT);
4967 goto leave;
4968 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004969
4970 memcpy(pkt->dcid.data, *buf, dcid_len);
4971 }
4972
4973 pkt->dcid.len = dcid_len;
4974 *buf += dcid_len;
4975
4976 /* Source Connection ID Length */
4977 scid_len = *(*buf)++;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004978 if (scid_len > QUIC_CID_MAXLEN || end - *buf < scid_len) {
4979 TRACE_ERROR("too long SCID", QUIC_EV_CONN_RXPKT);
4980 goto leave;
4981 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004982
4983 if (scid_len)
4984 memcpy(pkt->scid.data, *buf, scid_len);
4985 pkt->scid.len = scid_len;
4986 *buf += scid_len;
4987
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004988 ret = 1;
4989 leave:
4990 TRACE_LEAVE(QUIC_EV_CONN_RXPKT);
4991 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004992}
4993
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004994/* Insert <pkt> RX packet in its <qel> RX packets tree */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004995static void qc_pkt_insert(struct quic_conn *qc,
4996 struct quic_rx_packet *pkt, struct quic_enc_level *qel)
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004997{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004998 TRACE_ENTER(QUIC_EV_CONN_RXPKT, qc);
4999
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005000 pkt->pn_node.key = pkt->pn;
Frédéric Lécaille2ce5acf2021-12-20 14:41:19 +01005001 quic_rx_packet_refinc(pkt);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005002 eb64_insert(&qel->rx.pkts, &pkt->pn_node);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005003
5004 TRACE_LEAVE(QUIC_EV_CONN_RXPKT, qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005005}
5006
5007/* Try to remove the header protection of <pkt> QUIC packet attached to <qc>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005008 * QUIC connection with <buf> as packet number field address, <end> a pointer to one
5009 * byte past the end of the buffer containing this packet and <beg> the address of
5010 * the packet first byte.
5011 * If succeeded, this function updates <*buf> to point to the next packet in the buffer.
5012 * Returns 1 if succeeded, 0 if not.
5013 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01005014static inline int qc_try_rm_hp(struct quic_conn *qc,
5015 struct quic_rx_packet *pkt,
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005016 unsigned char *buf, unsigned char *beg,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01005017 struct quic_enc_level **el)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005018{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005019 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005020 unsigned char *pn = NULL; /* Packet number field */
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01005021 enum quic_tls_enc_level tel;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005022 struct quic_enc_level *qel;
5023 /* Only for traces. */
5024 struct quic_rx_packet *qpkt_trace;
5025
5026 qpkt_trace = NULL;
Amaury Denoyellee81fed92021-12-22 11:06:34 +01005027 TRACE_ENTER(QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005028 /* The packet number is here. This is also the start minus
5029 * QUIC_PACKET_PN_MAXLEN of the sample used to add/remove the header
5030 * protection.
5031 */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005032 pn = buf;
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01005033
5034 tel = quic_packet_type_enc_level(pkt->type);
5035 qel = &qc->els[tel];
5036
5037 if (qc_qel_may_rm_hp(qc, qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005038 /* Note that the following function enables us to unprotect the packet
5039 * number and its length subsequently used to decrypt the entire
5040 * packets.
5041 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01005042 if (!qc_do_rm_hp(qc, pkt, &qel->tls_ctx,
Frédéric Lécaille99897d12022-08-08 10:28:07 +02005043 qel->pktns->rx.largest_pn, pn, beg)) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01005044 TRACE_PROTO("hp error", QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005045 goto out;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005046 }
5047
5048 /* The AAD includes the packet number field found at <pn>. */
5049 pkt->aad_len = pn - beg + pkt->pnl;
Frédéric Lécailleffde3162022-08-08 18:41:16 +02005050 if (pkt->len - pkt->aad_len < QUIC_TLS_TAG_LEN) {
5051 TRACE_PROTO("Too short packet", QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005052 goto out;
Frédéric Lécailleffde3162022-08-08 18:41:16 +02005053 }
5054
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005055 qpkt_trace = pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005056 }
Frédéric Lécaille7d845f12022-02-21 19:22:09 +01005057 else {
Frédéric Lécaillebd242082022-02-25 17:17:59 +01005058 if (qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD) {
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005059 /* If the packet number space has been discarded, this packet
5060 * will be not parsed.
5061 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01005062 TRACE_PROTO("Discarded pktns", QUIC_EV_CONN_TRMHP, qc, pkt);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005063 goto out;
5064 }
5065
Amaury Denoyellee81fed92021-12-22 11:06:34 +01005066 TRACE_PROTO("hp not removed", QUIC_EV_CONN_TRMHP, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005067 pkt->pn_offset = pn - beg;
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02005068 LIST_APPEND(&qel->rx.pqpkts, &pkt->list);
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02005069 quic_rx_packet_refinc(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005070 }
5071
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005072 *el = qel;
5073 /* No reference counter incrementation here!!! */
5074 LIST_APPEND(&qc->rx.pkt_list, &pkt->qc_rx_pkt_list);
5075 memcpy(b_tail(&qc->rx.buf), beg, pkt->len);
5076 pkt->data = (unsigned char *)b_tail(&qc->rx.buf);
5077 b_add(&qc->rx.buf, pkt->len);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005078
5079 ret = 1;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005080 out:
Amaury Denoyellee81fed92021-12-22 11:06:34 +01005081 TRACE_LEAVE(QUIC_EV_CONN_TRMHP, qc, qpkt_trace);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005082 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005083}
5084
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005085/* 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 +02005086 * Also set <*long_header> to 1 if this form is long, 0 if not and the version
5087 * of this packet into <*version>.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005088 */
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005089static inline int qc_parse_hd_form(struct quic_rx_packet *pkt,
5090 unsigned char **buf, const unsigned char *end,
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005091 int *long_header, uint32_t *version)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005092{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005093 int ret = 0;
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005094 const unsigned char byte0 = **buf;
5095
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005096 TRACE_ENTER(QUIC_EV_CONN_RXPKT);
5097
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005098 (*buf)++;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005099 if (byte0 & QUIC_PACKET_LONG_HEADER_BIT) {
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005100 unsigned char type =
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005101 (byte0 >> QUIC_PACKET_TYPE_SHIFT) & QUIC_PACKET_TYPE_BITMASK;
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005102
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005103 *long_header = 1;
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005104 /* Version */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005105 if (!quic_read_uint32(version, (const unsigned char **)buf, end)) {
5106 TRACE_ERROR("could not read the packet version", QUIC_EV_CONN_RXPKT);
5107 goto out;
5108 }
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005109
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005110 if (*version != QUIC_PROTOCOL_VERSION_2_DRAFT) {
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005111 pkt->type = type;
5112 }
5113 else {
5114 switch (type) {
5115 case 0:
5116 pkt->type = QUIC_PACKET_TYPE_RETRY;
5117 break;
5118 case 1:
5119 pkt->type = QUIC_PACKET_TYPE_INITIAL;
5120 break;
5121 case 2:
5122 pkt->type = QUIC_PACKET_TYPE_0RTT;
5123 break;
5124 case 3:
5125 pkt->type = QUIC_PACKET_TYPE_HANDSHAKE;
5126 break;
5127 }
5128 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005129 }
5130 else {
5131 pkt->type = QUIC_PACKET_TYPE_SHORT;
5132 *long_header = 0;
5133 }
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005134
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005135 ret = 1;
5136 out:
5137 TRACE_LEAVE(QUIC_EV_CONN_RXPKT);
Frédéric Lécaille59507de2022-08-11 12:14:07 +02005138 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005139}
5140
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005141/* Return the QUIC version (quic_version struct) with <version> as version number
5142 * if supported or NULL if not.
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005143 */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005144static inline const struct quic_version *qc_supported_version(uint32_t version)
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005145{
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005146 int i;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005147
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005148 for (i = 0; i < quic_versions_nb; i++)
5149 if (quic_versions[i].num == version)
5150 return &quic_versions[i];
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005151
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005152 return NULL;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005153}
5154
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005155/*
5156 * Send a Version Negotiation packet on response to <pkt> on socket <fd> to
5157 * address <addr>.
5158 * Implementation of RFC9000 6. Version Negotiation
5159 *
5160 * TODO implement a rate-limiting sending of Version Negotiation packets
5161 *
5162 * Returns 0 on success else non-zero
5163 */
Amaury Denoyelled6b16672021-12-23 10:37:19 +01005164static int send_version_negotiation(int fd, struct sockaddr_storage *addr,
5165 struct quic_rx_packet *pkt)
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005166{
5167 char buf[256];
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005168 int ret = 0, i = 0, j;
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005169 uint32_t version;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005170 const socklen_t addrlen = get_addr_len(addr);
5171
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005172 TRACE_ENTER(QUIC_EV_CONN_TXPKT);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005173 /*
5174 * header form
5175 * long header, fixed bit to 0 for Version Negotiation
5176 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005177 /* TODO: RAND_bytes() should be replaced? */
5178 if (RAND_bytes((unsigned char *)buf, 1) != 1) {
5179 TRACE_ERROR("RAND_bytes() error", QUIC_EV_CONN_TXPKT);
5180 goto out;
5181 }
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005182
Frédéric Lécailleea78ee12021-11-18 13:54:43 +01005183 buf[i++] |= '\x80';
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005184 /* null version for Version Negotiation */
5185 buf[i++] = '\x00';
5186 buf[i++] = '\x00';
5187 buf[i++] = '\x00';
5188 buf[i++] = '\x00';
5189
5190 /* source connection id */
5191 buf[i++] = pkt->scid.len;
Amaury Denoyelle10eed8e2021-11-18 13:48:57 +01005192 memcpy(&buf[i], pkt->scid.data, pkt->scid.len);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005193 i += pkt->scid.len;
5194
5195 /* destination connection id */
5196 buf[i++] = pkt->dcid.len;
Amaury Denoyelle10eed8e2021-11-18 13:48:57 +01005197 memcpy(&buf[i], pkt->dcid.data, pkt->dcid.len);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005198 i += pkt->dcid.len;
5199
5200 /* supported version */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005201 for (j = 0; j < quic_versions_nb; j++) {
5202 version = htonl(quic_versions[j].num);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005203 memcpy(&buf[i], &version, sizeof(version));
5204 i += sizeof(version);
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005205 }
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005206
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005207 if (sendto(fd, buf, i, 0, (struct sockaddr *)addr, addrlen) < 0)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005208 goto out;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005209
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005210 ret = 1;
5211 out:
5212 TRACE_LEAVE(QUIC_EV_CONN_TXPKT);
5213 return !ret;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005214}
5215
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005216/* Send a stateless reset packet depending on <pkt> RX packet information
5217 * from <fd> UDP socket to <dst>
5218 * Return 1 if succeeded, 0 if not.
5219 */
Frédéric Lécailleeb791452022-05-24 16:01:39 +02005220static int send_stateless_reset(struct listener *l, struct sockaddr_storage *dstaddr,
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005221 struct quic_rx_packet *rxpkt)
5222{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005223 int ret = 0, pktlen, rndlen;
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005224 unsigned char pkt[64];
5225 const socklen_t addrlen = get_addr_len(dstaddr);
Frédéric Lécailleeb791452022-05-24 16:01:39 +02005226 struct proxy *prx;
5227 struct quic_counters *prx_counters;
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005228
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005229 TRACE_ENTER(QUIC_EV_STATELESS_RST);
5230
Frédéric Lécailleeb791452022-05-24 16:01:39 +02005231 prx = l->bind_conf->frontend;
5232 prx_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe, &quic_stats_module);
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005233 /* 10.3 Stateless Reset (https://www.rfc-editor.org/rfc/rfc9000.html#section-10.3)
5234 * The resulting minimum size of 21 bytes does not guarantee that a Stateless
5235 * Reset is difficult to distinguish from other packets if the recipient requires
5236 * the use of a connection ID. To achieve that end, the endpoint SHOULD ensure
5237 * that all packets it sends are at least 22 bytes longer than the minimum
5238 * connection ID length that it requests the peer to include in its packets,
5239 * adding PADDING frames as necessary. This ensures that any Stateless Reset
5240 * sent by the peer is indistinguishable from a valid packet sent to the endpoint.
5241 * An endpoint that sends a Stateless Reset in response to a packet that is
5242 * 43 bytes or shorter SHOULD send a Stateless Reset that is one byte shorter
5243 * than the packet it responds to.
5244 */
5245
5246 /* Note that we build at most a 42 bytes QUIC packet to mimic a short packet */
5247 pktlen = rxpkt->len <= 43 ? rxpkt->len - 1 : 0;
5248 pktlen = QUIC_MAX(QUIC_STATELESS_RESET_PACKET_MINLEN, pktlen);
5249 rndlen = pktlen - QUIC_STATELESS_RESET_TOKEN_LEN;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005250
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005251 /* Put a header of random bytes */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005252 /* TODO: RAND_bytes() should be replaced */
5253 if (RAND_bytes(pkt, rndlen) != 1) {
5254 TRACE_ERROR("RAND_bytes() failed", QUIC_EV_STATELESS_RST);
5255 goto leave;
5256 }
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005257
5258 /* Clear the most significant bit, and set the second one */
5259 *pkt = (*pkt & ~0x80) | 0x40;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005260 if (!quic_stateless_reset_token_cpy(NULL, pkt + rndlen, QUIC_STATELESS_RESET_TOKEN_LEN,
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005261 rxpkt->dcid.data, rxpkt->dcid.len))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005262 goto leave;
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005263
Frédéric Lécailleeb791452022-05-24 16:01:39 +02005264 if (sendto(l->rx.fd, pkt, pktlen, 0, (struct sockaddr *)dstaddr, addrlen) < 0)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005265 goto leave;
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005266
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005267 ret = 1;
Frédéric Lécailleeb791452022-05-24 16:01:39 +02005268 HA_ATOMIC_INC(&prx_counters->stateless_reset_sent);
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005269 TRACE_PROTO("stateless reset sent", QUIC_EV_STATELESS_RST, NULL, &rxpkt->dcid);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005270 leave:
5271 TRACE_LEAVE(QUIC_EV_STATELESS_RST);
5272 return ret;
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005273}
5274
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005275/* QUIC server only function.
5276 * Add AAD to <add> buffer from <cid> connection ID and <addr> socket address.
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05005277 * This is the responsibility of the caller to check <aad> size is big enough
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005278 * to contain these data.
5279 * Return the number of bytes copied to <aad>.
5280 */
5281static int quic_generate_retry_token_aad(unsigned char *aad,
5282 uint32_t version,
5283 const struct quic_cid *cid,
5284 const struct sockaddr_storage *addr)
5285{
5286 unsigned char *p;
5287
5288 p = aad;
5289 memcpy(p, &version, sizeof version);
5290 p += sizeof version;
5291 p += quic_saddr_cpy(p, addr);
5292 memcpy(p, cid->data, cid->len);
5293 p += cid->len;
5294
5295 return p - aad;
5296}
5297
5298/* QUIC server only function.
5299 * Generate the token to be used in Retry packets. The token is written to
5300 * <buf> whith <len> as length. <odcid> is the original destination connection
5301 * ID and <dcid> is our side destination connection ID (or client source
5302 * connection ID).
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005303 * Returns the length of the encoded token or 0 on error.
5304 */
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005305static int quic_generate_retry_token(unsigned char *buf, size_t len,
5306 const uint32_t version,
5307 const struct quic_cid *odcid,
5308 const struct quic_cid *dcid,
5309 struct sockaddr_storage *addr)
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005310{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005311 int ret = 0;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005312 unsigned char *p;
5313 unsigned char aad[sizeof(uint32_t) + sizeof(in_port_t) +
5314 sizeof(struct in6_addr) + QUIC_HAP_CID_LEN];
5315 size_t aadlen;
5316 unsigned char salt[QUIC_RETRY_TOKEN_SALTLEN];
5317 unsigned char key[QUIC_TLS_KEY_LEN];
5318 unsigned char iv[QUIC_TLS_IV_LEN];
5319 const unsigned char *sec = (const unsigned char *)global.cluster_secret;
5320 size_t seclen = strlen(global.cluster_secret);
5321 EVP_CIPHER_CTX *ctx = NULL;
5322 const EVP_CIPHER *aead = EVP_aes_128_gcm();
5323 uint32_t timestamp = now_ms;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005324
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005325 TRACE_ENTER(QUIC_EV_CONN_TXPKT);
5326
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005327 /* We copy the odcid into the token, prefixed by its one byte
5328 * length, the format token byte. It is followed by an AEAD TAG, and finally
5329 * the random bytes used to derive the secret to encrypt the token.
5330 */
5331 if (1 + dcid->len + 1 + QUIC_TLS_TAG_LEN + sizeof salt > len)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005332 goto err;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005333
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005334 aadlen = quic_generate_retry_token_aad(aad, version, dcid, addr);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005335 /* TODO: RAND_bytes() should be replaced */
5336 if (RAND_bytes(salt, sizeof salt) != 1) {
5337 TRACE_ERROR("RAND_bytes()", QUIC_EV_CONN_TXPKT);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005338 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005339 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005340
5341 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 +02005342 salt, sizeof salt, sec, seclen)) {
5343 TRACE_ERROR("quic_tls_derive_retry_token_secret() failed", QUIC_EV_CONN_TXPKT);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005344 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005345 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005346
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005347 if (!quic_tls_tx_ctx_init(&ctx, aead, key)) {
5348 TRACE_ERROR("quic_tls_tx_ctx_init() failed", QUIC_EV_CONN_TXPKT);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005349 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005350 }
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005351
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005352 /* Token build */
5353 p = buf;
5354 *p++ = QUIC_TOKEN_FMT_RETRY,
5355 *p++ = odcid->len;
5356 memcpy(p, odcid->data, odcid->len);
5357 p += odcid->len;
5358 write_u32(p, htonl(timestamp));
5359 p += sizeof timestamp;
5360
5361 /* Do not encrypt the QUIC_TOKEN_FMT_RETRY byte */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005362 if (!quic_tls_encrypt(buf + 1, p - buf - 1, aad, aadlen, ctx, aead, key, iv)) {
5363 TRACE_ERROR("quic_tls_encrypt() failed", QUIC_EV_CONN_TXPKT);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005364 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005365 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005366
5367 p += QUIC_TLS_TAG_LEN;
5368 memcpy(p, salt, sizeof salt);
5369 p += sizeof salt;
5370 EVP_CIPHER_CTX_free(ctx);
5371
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005372 ret = p - buf;
5373 leave:
5374 TRACE_LEAVE(QUIC_EV_CONN_TXPKT);
5375 return ret;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005376
5377 err:
5378 if (ctx)
5379 EVP_CIPHER_CTX_free(ctx);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005380 goto leave;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005381}
5382
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005383/* QUIC server only function.
5384 * Check the validity of the Retry token from <token> buffer with <tokenlen>
5385 * as length. If valid, the ODCID of <qc> QUIC connection will be put
5386 * into <odcid> connection ID. <dcid> is our side destination connection ID
5387 * of client source connection ID.
5388 * Return 1 if succeeded, 0 if not.
5389 */
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005390static int quic_retry_token_check(const unsigned char *token, size_t tokenlen,
5391 const struct quic_version *qv,
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005392 struct quic_cid *odcid,
5393 const struct quic_cid *dcid,
5394 struct quic_conn *qc,
5395 struct sockaddr_storage *addr)
5396{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005397 int ret = 0;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005398 unsigned char buf[128];
5399 unsigned char aad[sizeof(uint32_t) + sizeof(in_port_t) +
5400 sizeof(struct in6_addr) + QUIC_HAP_CID_LEN];
5401 size_t aadlen;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005402 const unsigned char *salt;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005403 unsigned char key[QUIC_TLS_KEY_LEN];
5404 unsigned char iv[QUIC_TLS_IV_LEN];
5405 const unsigned char *sec = (const unsigned char *)global.cluster_secret;
5406 size_t seclen = strlen(global.cluster_secret);
5407 EVP_CIPHER_CTX *ctx = NULL;
5408 const EVP_CIPHER *aead = EVP_aes_128_gcm();
5409
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005410 TRACE_ENTER(QUIC_EV_CONN_LPKT, qc);
5411
5412 if (sizeof buf < tokenlen) {
5413 TRACE_ERROR("too short buffer", QUIC_EV_CONN_LPKT, qc);
5414 goto err;
5415 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005416
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005417 aadlen = quic_generate_retry_token_aad(aad, qv->num, dcid, addr);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005418 salt = token + tokenlen - QUIC_RETRY_TOKEN_SALTLEN;
5419 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 +02005420 salt, QUIC_RETRY_TOKEN_SALTLEN, sec, seclen)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005421 TRACE_ERROR("Could not derive retry secret", QUIC_EV_CONN_LPKT, qc);
5422 goto err;
Frédéric Lécaille01d515e2022-06-07 11:39:00 +02005423 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005424
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005425 if (!quic_tls_rx_ctx_init(&ctx, aead, key)) {
5426 TRACE_ERROR("quic_tls_rx_ctx_init() failed", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005427 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005428 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005429
5430 /* Do not decrypt the QUIC_TOKEN_FMT_RETRY byte */
5431 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 +02005432 ctx, aead, key, iv)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005433 TRACE_ERROR("Could not decrypt retry token", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005434 goto err;
Frédéric Lécaille01d515e2022-06-07 11:39:00 +02005435 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005436
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005437 if (parse_retry_token(qc, buf, buf + tokenlen - QUIC_RETRY_TOKEN_SALTLEN - 1, odcid)) {
5438 TRACE_ERROR("Error during Initial token parsing", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005439 goto err;
5440 }
5441
5442 EVP_CIPHER_CTX_free(ctx);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005443
5444 ret = 1;
5445 leave:
5446 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc);
5447 return ret;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005448
5449 err:
5450 if (ctx)
5451 EVP_CIPHER_CTX_free(ctx);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005452 goto leave;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005453}
5454
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005455/* Generate a Retry packet and send it on <fd> socket to <addr> in response to
5456 * the Initial <pkt> packet.
5457 *
5458 * Returns 0 on success else non-zero.
5459 */
5460static int send_retry(int fd, struct sockaddr_storage *addr,
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005461 struct quic_rx_packet *pkt, const struct quic_version *qv)
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005462{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005463 int ret = 0;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005464 unsigned char buf[128];
5465 int i = 0, token_len;
5466 const socklen_t addrlen = get_addr_len(addr);
5467 struct quic_cid scid;
5468
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005469 TRACE_ENTER(QUIC_EV_CONN_TXPKT);
5470
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005471 /* long header + fixed bit + packet type QUIC_PACKET_TYPE_RETRY */
5472 buf[i++] = (QUIC_PACKET_LONG_HEADER_BIT | QUIC_PACKET_FIXED_BIT) |
5473 (quic_pkt_type(QUIC_PACKET_TYPE_RETRY, qv->num) << QUIC_PACKET_TYPE_SHIFT);
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005474 /* version */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005475 buf[i++] = *((unsigned char *)&qv->num + 3);
5476 buf[i++] = *((unsigned char *)&qv->num + 2);
5477 buf[i++] = *((unsigned char *)&qv->num + 1);
5478 buf[i++] = *(unsigned char *)&qv->num;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005479
5480 /* Use the SCID from <pkt> for Retry DCID. */
5481 buf[i++] = pkt->scid.len;
5482 memcpy(&buf[i], pkt->scid.data, pkt->scid.len);
5483 i += pkt->scid.len;
5484
5485 /* Generate a new CID to be used as SCID for the Retry packet. */
5486 scid.len = QUIC_HAP_CID_LEN;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005487 /* TODO: RAND_bytes() should be replaced */
5488 if (RAND_bytes(scid.data, scid.len) != 1) {
5489 TRACE_ERROR("RAND_bytes() failed", QUIC_EV_CONN_TXPKT);
5490 goto out;
5491 }
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005492
5493 buf[i++] = scid.len;
5494 memcpy(&buf[i], scid.data, scid.len);
5495 i += scid.len;
5496
5497 /* token */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005498 if (!(token_len = quic_generate_retry_token(&buf[i], sizeof(buf) - i, qv->num,
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005499 &pkt->dcid, &pkt->scid, addr))) {
5500 TRACE_ERROR("quic_generate_retry_token() failed", QUIC_EV_CONN_TXPKT);
5501 goto out;
5502 }
Frédéric Lécaillecc2764e2022-03-23 14:09:09 +01005503
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005504 i += token_len;
5505
5506 /* token integrity tag */
5507 if ((&buf[i] - buf < QUIC_TLS_TAG_LEN) ||
5508 !quic_tls_generate_retry_integrity_tag(pkt->dcid.data,
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005509 pkt->dcid.len, buf, i, qv)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005510 TRACE_ERROR("quic_tls_generate_retry_integrity_tag() failed", QUIC_EV_CONN_TXPKT);
5511 goto out;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005512 }
5513
5514 i += QUIC_TLS_TAG_LEN;
5515
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005516 if (sendto(fd, buf, i, 0, (struct sockaddr *)addr, addrlen) < 0) {
5517 TRACE_ERROR("quic_tls_generate_retry_integrity_tag() failed", QUIC_EV_CONN_TXPKT);
5518 goto out;
5519 }
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005520
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005521 ret = 1;
5522 out:
5523 TRACE_LEAVE(QUIC_EV_CONN_TXPKT);
5524 return !ret;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005525}
5526
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005527/* Retrieve a quic_conn instance from the <pkt> DCID field. If the packet is of
5528 * type INITIAL, the ODCID tree is first used. In this case, <saddr> is
5529 * concatenated to the <pkt> DCID field.
5530 *
5531 * Returns the instance or NULL if not found.
5532 */
Amaury Denoyelled6b16672021-12-23 10:37:19 +01005533static struct quic_conn *retrieve_qc_conn_from_cid(struct quic_rx_packet *pkt,
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005534 struct listener *l,
5535 struct sockaddr_storage *saddr)
5536{
5537 struct quic_conn *qc = NULL;
5538 struct ebmb_node *node;
5539 struct quic_connection_id *id;
Amaury Denoyelle250ac422021-12-22 11:29:05 +01005540 /* set if the quic_conn is found in the second DCID tree */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005541
5542 TRACE_ENTER(QUIC_EV_CONN_RXPKT);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005543
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005544 /* Look first into ODCIDs tree for INITIAL/0-RTT packets. */
5545 if (pkt->type == QUIC_PACKET_TYPE_INITIAL ||
5546 pkt->type == QUIC_PACKET_TYPE_0RTT) {
5547 /* DCIDs of first packets coming from multiple clients may have
5548 * the same values. Let's distinguish them by concatenating the
5549 * socket addresses.
5550 */
5551 quic_cid_saddr_cat(&pkt->dcid, saddr);
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01005552 node = ebmb_lookup(&quic_dghdlrs[tid].odcids, pkt->dcid.data,
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005553 pkt->dcid.len + pkt->dcid.addrlen);
5554 if (node) {
5555 qc = ebmb_entry(node, struct quic_conn, odcid_node);
5556 goto end;
5557 }
5558 }
5559
5560 /* Look into DCIDs tree for non-INITIAL/0-RTT packets. This may be used
5561 * also for INITIAL/0-RTT non-first packets with the final DCID in
5562 * used.
5563 */
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01005564 node = ebmb_lookup(&quic_dghdlrs[tid].cids, pkt->dcid.data, pkt->dcid.len);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005565 if (!node)
5566 goto end;
5567
5568 id = ebmb_entry(node, struct quic_connection_id, node);
5569 qc = id->qc;
Amaury Denoyelle250ac422021-12-22 11:29:05 +01005570
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005571 /* If found in DCIDs tree, remove the quic_conn from the ODCIDs tree.
5572 * If already done, this is a noop.
5573 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005574 if (qc)
Amaury Denoyelle250ac422021-12-22 11:29:05 +01005575 ebmb_delete(&qc->odcid_node);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005576
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005577 end:
5578 TRACE_ENTER(QUIC_EV_CONN_RXPKT, qc);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005579 return qc;
5580}
5581
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005582/* Try to allocate the <*ssl> SSL session object for <qc> QUIC connection
5583 * with <ssl_ctx> as SSL context inherited settings. Also set the transport
5584 * parameters of this session.
5585 * This is the responsibility of the caller to check the validity of all the
5586 * pointers passed as parameter to this function.
5587 * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <qc->conn> to
5588 * CO_ER_SSL_NO_MEM.
5589 */
5590static int qc_ssl_sess_init(struct quic_conn *qc, SSL_CTX *ssl_ctx, SSL **ssl,
5591 unsigned char *params, size_t params_len)
5592{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005593 int retry, ret = -1;
5594
5595 TRACE_ENTER(QUIC_EV_CONN_NEW, qc);
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005596
5597 retry = 1;
5598 retry:
5599 *ssl = SSL_new(ssl_ctx);
5600 if (!*ssl) {
5601 if (!retry--)
5602 goto err;
5603
5604 pool_gc(NULL);
5605 goto retry;
5606 }
5607
5608 if (!SSL_set_quic_method(*ssl, &ha_quic_method) ||
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005609 !SSL_set_ex_data(*ssl, ssl_qc_app_data_index, qc)) {
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005610 SSL_free(*ssl);
5611 *ssl = NULL;
5612 if (!retry--)
5613 goto err;
5614
5615 pool_gc(NULL);
5616 goto retry;
5617 }
5618
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005619 ret = 0;
5620 leave:
5621 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
5622 return ret;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005623
5624 err:
5625 qc->conn->err_code = CO_ER_SSL_NO_MEM;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005626 goto leave;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005627}
5628
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005629/* Finalize <qc> QUIC connection:
5630 * - initialize the Initial QUIC TLS context for negotiated version,
5631 * - derive the secrets for this context,
5632 * - encode the transport parameters to be sent,
5633 * - set them into the TLS stack,
5634 * - initialize ->max_ack_delay and max_idle_timeout,
5635 *
5636 * MUST be called after having received the remote transport parameters.
5637 * Return 1 if succeeded, 0 if not.
5638 */
5639int qc_conn_finalize(struct quic_conn *qc, int server)
5640{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005641 int ret = 0;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005642 struct quic_transport_params *tx_tp = &qc->tx.params;
5643 struct quic_transport_params *rx_tp = &qc->rx.params;
5644 const struct quic_version *ver;
5645
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005646 TRACE_ENTER(QUIC_EV_CONN_NEW, qc);
5647
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005648 if (tx_tp->version_information.negotiated_version &&
5649 tx_tp->version_information.negotiated_version != qc->original_version) {
5650 qc->negotiated_version =
5651 qc->tx.params.version_information.negotiated_version;
5652 if (!qc_new_isecs(qc, &qc->negotiated_ictx, qc->negotiated_version,
5653 qc->odcid.data, qc->odcid.len, !server))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005654 goto out;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005655
5656 ver = qc->negotiated_version;
5657 }
5658 else {
5659 ver = qc->original_version;
5660 }
5661
5662 qc->enc_params_len =
5663 quic_transport_params_encode(qc->enc_params,
5664 qc->enc_params + sizeof qc->enc_params,
5665 &qc->rx.params, ver, 1);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005666 if (!qc->enc_params_len) {
5667 TRACE_ERROR("quic_transport_params_encode() failed", QUIC_EV_CONN_TXPKT);
5668 goto out;
5669 }
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005670
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005671 if (!SSL_set_quic_transport_params(qc->xprt_ctx->ssl, qc->enc_params, qc->enc_params_len)) {
5672 TRACE_ERROR("SSL_set_quic_transport_params() failed", QUIC_EV_CONN_TXPKT);
5673 goto out;
5674 }
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005675
5676 if (tx_tp->max_ack_delay)
5677 qc->max_ack_delay = tx_tp->max_ack_delay;
5678
5679 if (tx_tp->max_idle_timeout && rx_tp->max_idle_timeout)
5680 qc->max_idle_timeout =
5681 QUIC_MIN(tx_tp->max_idle_timeout, rx_tp->max_idle_timeout);
5682 else
5683 qc->max_idle_timeout =
5684 QUIC_MAX(tx_tp->max_idle_timeout, rx_tp->max_idle_timeout);
5685
5686 TRACE_PROTO("\nTX(remote) transp. params.", QUIC_EV_TRANSP_PARAMS, qc, tx_tp);
5687
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005688 ret = 1;
5689 out:
5690 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
5691 return ret;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005692}
5693
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005694/* Allocate the ssl_sock_ctx from connection <qc>. This creates the tasklet
5695 * used to process <qc> received packets. The allocated context is stored in
5696 * <qc.xprt_ctx>.
5697 *
5698 * Returns 0 on success else non-zero.
5699 */
Frédéric Lécaille3fd92f62022-05-19 14:35:20 +02005700static int qc_conn_alloc_ssl_ctx(struct quic_conn *qc)
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005701{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005702 int ret = 0;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005703 struct bind_conf *bc = qc->li->bind_conf;
5704 struct ssl_sock_ctx *ctx = NULL;
5705
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005706 TRACE_ENTER(QUIC_EV_CONN_NEW, qc);
5707
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005708 ctx = pool_zalloc(pool_head_quic_conn_ctx);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005709 if (!ctx) {
5710 TRACE_ERROR("SSL context allocation failed", QUIC_EV_CONN_TXPKT);
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005711 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005712 }
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005713
5714 ctx->wait_event.tasklet = tasklet_new();
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005715 if (!ctx->wait_event.tasklet) {
5716 TRACE_ERROR("tasklet_new() failed", QUIC_EV_CONN_TXPKT);
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005717 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005718 }
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005719
5720 ctx->wait_event.tasklet->process = quic_conn_io_cb;
5721 ctx->wait_event.tasklet->context = ctx;
5722 ctx->wait_event.events = 0;
5723 ctx->subs = NULL;
5724 ctx->xprt_ctx = NULL;
5725 ctx->qc = qc;
5726
5727 /* Set tasklet tid based on the SCID selected by us for this
5728 * connection. The upper layer will also be binded on the same thread.
5729 */
Frédéric Lécaille220894a2022-01-26 18:04:50 +01005730 qc->tid = ctx->wait_event.tasklet->tid = quic_get_cid_tid(qc->scid.data);
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005731
5732 if (qc_is_listener(qc)) {
5733 if (qc_ssl_sess_init(qc, bc->initial_ctx, &ctx->ssl,
5734 qc->enc_params, qc->enc_params_len) == -1) {
5735 goto err;
5736 }
5737
5738 /* Enabling 0-RTT */
5739 if (bc->ssl_conf.early_data)
5740 SSL_set_quic_early_data_enabled(ctx->ssl, 1);
5741
5742 SSL_set_accept_state(ctx->ssl);
5743 }
5744
5745 ctx->xprt = xprt_get(XPRT_QUIC);
5746
5747 /* Store the allocated context in <qc>. */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02005748 qc->xprt_ctx = ctx;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005749
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005750 ret = 1;
5751 leave:
5752 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
5753 return !ret;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005754
5755 err:
5756 if (ctx && ctx->wait_event.tasklet)
5757 tasklet_free(ctx->wait_event.tasklet);
5758 pool_free(pool_head_quic_conn_ctx, ctx);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005759 goto leave;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005760}
5761
Frédéric Lécaillef6954c52022-05-21 14:42:21 +02005762/* Check that all the bytes between <buf> included and <end> address
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05005763 * excluded are null. This is the responsibility of the caller to
Frédéric Lécaillef6954c52022-05-21 14:42:21 +02005764 * check that there is at least one byte between <buf> end <end>.
5765 * Return 1 if this all the bytes are null, 0 if not.
5766 */
5767static inline int quic_padding_check(const unsigned char *buf,
5768 const unsigned char *end)
5769{
5770 while (buf < end && !*buf)
5771 buf++;
5772
5773 return buf == end;
5774}
5775
Frédéric Lécaille4646cf32022-04-27 15:09:53 +02005776/* Parse a QUIC packet from UDP datagram found in <buf> buffer with <end> the
5777 * end of this buffer past one byte and populate <pkt> RX packet structure
5778 * with the information collected from the packet.
5779 * This function sets ->len <pkt> field value to the end of the packet past one
5780 * byte to enable the caller to run this function again to continue to parse
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05005781 * the remaining QUIC packets carried by the datagram.
Frédéric Lécaille4646cf32022-04-27 15:09:53 +02005782 * Note that this function always sets this ->len value. If a paquet could
5783 * not be correctly found, ->len value will be set to the remaining number
5784 * bytes in the datagram to entirely consume this latter.
5785 */
5786static void qc_lstnr_pkt_rcv(unsigned char *buf, const unsigned char *end,
5787 struct quic_rx_packet *pkt, int first_pkt,
Frédéric Lécaille1b0707f2022-06-30 11:28:56 +02005788 struct quic_dgram *dgram, struct list **tasklist_head)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005789{
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005790 unsigned char *beg, *payload;
Frédéric Lécaille560ddfa2022-08-24 18:59:23 +02005791 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005792 struct listener *l;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005793 struct proxy *prx;
5794 struct quic_counters *prx_counters;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02005795 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005796 int drop_no_conn = 0, long_header = 0, io_cb_wakeup = 0;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005797 size_t b_cspace;
5798 struct quic_enc_level *qel;
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005799 uint32_t version;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005800 const struct quic_version *qv = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005801
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005802 TRACE_ENTER(QUIC_EV_CONN_LPKT);
5803
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005804 beg = buf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005805 qc = NULL;
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02005806 conn_ctx = NULL;
Frédéric Lécaillec4becf52021-11-08 11:23:17 +01005807 qel = NULL;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005808 l = dgram->owner;
5809 prx = l->bind_conf->frontend;
5810 prx_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe, &quic_stats_module);
Frédéric Lécaille8678eb02021-12-16 18:03:52 +01005811 /* This ist only to please to traces and distinguish the
5812 * packet with parsed packet number from others.
5813 */
5814 pkt->pn_node.key = (uint64_t)-1;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005815 if (end <= buf) {
5816 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
5817 goto drop;
5818 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005819
5820 /* Fixed bit */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005821 if (!(*buf & QUIC_PACKET_FIXED_BIT)) {
Frédéric Lécaillef6954c52022-05-21 14:42:21 +02005822 if (!first_pkt && quic_padding_check(buf, end)) {
5823 /* Some browsers may pad the remaining datagram space with null bytes.
5824 * That is what we called add padding out of QUIC packets. Such
5825 * datagrams must be considered as valid. But we can only consume
5826 * the remaining space.
5827 */
5828 pkt->len = end - buf;
5829 goto drop_no_conn;
5830 }
5831
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005832 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005833 goto drop;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005834 }
5835
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005836 /* Header form */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005837 if (!qc_parse_hd_form(pkt, &buf, end, &long_header, &version)) {
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005838 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
5839 goto drop;
5840 }
5841
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005842 if (long_header) {
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005843 uint64_t len;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005844 struct quic_cid odcid;
Frédéric Lécaille7629f5d2022-08-11 18:54:26 +02005845 const struct quic_cid *token_odcid = NULL; // ODCID received from client token
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005846
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005847 TRACE_PROTO("long header packet received", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005848 if (!quic_packet_read_long_header(&buf, end, pkt)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005849 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005850 goto drop;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005851 }
5852
Frédéric Lécaille3e266982022-04-27 15:37:28 +02005853 if (pkt->type == QUIC_PACKET_TYPE_0RTT && !l->bind_conf->ssl_conf.early_data) {
5854 TRACE_PROTO("0-RTT packet not supported", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005855 drop_no_conn = 1;
Frédéric Lécaille3e266982022-04-27 15:37:28 +02005856 }
5857 else if (pkt->type == QUIC_PACKET_TYPE_INITIAL &&
5858 dgram->len < QUIC_INITIAL_PACKET_MINLEN) {
Frédéric Lécaille87373e72022-04-27 11:42:08 +02005859 TRACE_PROTO("Too short datagram with an Initial packet", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille3ccea6d2022-05-23 22:54:54 +02005860 HA_ATOMIC_INC(&prx_counters->too_short_initial_dgram);
Frédéric Lécaillee7df68a2022-08-05 09:34:44 +02005861 goto drop;
Frédéric Lécaille87373e72022-04-27 11:42:08 +02005862 }
5863
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005864 /* When multiple QUIC packets are coalesced on the same UDP datagram,
5865 * they must have the same DCID.
5866 */
5867 if (!first_pkt &&
5868 (pkt->dcid.len != dgram->dcid_len ||
5869 memcmp(dgram->dcid, pkt->dcid.data, pkt->dcid.len))) {
5870 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005871 goto drop;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005872 }
5873
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005874 /* Retry of Version Negotiation packets are only sent by servers */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005875 if (pkt->type == QUIC_PACKET_TYPE_RETRY || !version) {
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005876 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005877 goto drop;
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005878 }
5879
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005880 /* RFC9000 6. Version Negotiation */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005881 qv = qc_supported_version(version);
5882 if (!qv) {
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005883 /* unsupported version, send Negotiation packet */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005884 if (send_version_negotiation(l->rx.fd, &dgram->saddr, pkt)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005885 TRACE_ERROR("VN packet not sent", QUIC_EV_CONN_LPKT);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005886 goto err;
5887 }
5888
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005889 TRACE_PROTO("VN packet sent", QUIC_EV_CONN_LPKT);
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005890 goto err;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005891 }
5892
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005893 /* For Initial packets, and for servers (QUIC clients connections),
5894 * there is no Initial connection IDs storage.
5895 */
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005896 if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02005897 uint64_t token_len;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02005898
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005899 if (!quic_dec_int(&token_len, (const unsigned char **)&buf, end) ||
5900 end - buf < token_len) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005901 TRACE_PROTO("Packet dropped",
5902 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005903 goto drop;
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01005904 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005905
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005906 /* TODO Retry should be automatically activated if
5907 * suspect network usage is detected.
5908 */
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02005909 if (global.cluster_secret && !token_len) {
5910 if (l->bind_conf->options & BC_O_QUIC_FORCE_RETRY) {
5911 TRACE_PROTO("Initial without token, sending retry",
5912 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
5913 if (send_retry(l->rx.fd, &dgram->saddr, pkt, qv)) {
5914 TRACE_PROTO("Error during Retry generation",
5915 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005916 goto err;
5917 }
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02005918
5919 HA_ATOMIC_INC(&prx_counters->retry_sent);
5920 goto err;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005921 }
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01005922 }
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02005923 else if (!global.cluster_secret && token_len) {
5924 /* Impossible case: a token was received without configured
5925 * cluster secret.
5926 */
5927 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT,
5928 NULL, NULL, NULL, qv);
5929 goto drop;
5930 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005931
5932 pkt->token = buf;
5933 pkt->token_len = token_len;
5934 buf += pkt->token_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005935 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005936 else if (pkt->type != QUIC_PACKET_TYPE_0RTT) {
Amaury Denoyelled4962512021-12-14 17:17:28 +01005937 if (pkt->dcid.len != QUIC_HAP_CID_LEN) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005938 TRACE_PROTO("Packet dropped",
5939 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005940 goto drop;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005941 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005942 }
5943
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005944 if (!quic_dec_int(&len, (const unsigned char **)&buf, end) ||
5945 end - buf < len) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005946 TRACE_PROTO("Packet dropped",
5947 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005948 goto drop;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02005949 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005950
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005951 payload = buf;
5952 pkt->len = len + payload - beg;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005953 if (drop_no_conn)
5954 goto drop_no_conn;
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005955
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005956 qc = retrieve_qc_conn_from_cid(pkt, l, &dgram->saddr);
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02005957 if (global.cluster_secret && pkt->token_len) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005958 if (*pkt->token == QUIC_TOKEN_FMT_RETRY) {
5959 const struct quic_version *ver = qc ? qc->original_version : qv;
5960 if (!quic_retry_token_check(pkt->token, pkt->token_len, ver, &odcid,
5961 &pkt->scid, qc, &dgram->saddr)) {
5962 HA_ATOMIC_INC(&prx_counters->retry_error);
5963 TRACE_PROTO("Wrong retry token",
5964 QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
5965 /* TODO: RFC 9000 8.1.2 A server SHOULD immediately close the connection
5966 * with an INVALID_TOKEN error.
5967 */
5968 goto drop;
5969 }
5970
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02005971 token_odcid = &odcid;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005972 HA_ATOMIC_INC(&prx_counters->retry_validated);
5973 }
5974 else {
5975 /* TODO: New token check */
5976 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
5977 goto drop;
5978 }
5979 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005980 if (!qc) {
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005981 int ipv4;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02005982
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005983 if (pkt->type != QUIC_PACKET_TYPE_INITIAL) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005984 TRACE_PROTO("Non Initial packet", QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005985 goto drop;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005986 }
5987
Willy Tarreau787e92a2022-05-20 16:06:01 +02005988 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 +02005989 HA_ATOMIC_LOAD(&prx_counters->half_open_conn) >= global.tune.quic_retry_threshold) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005990 TRACE_PROTO("Initial without token, sending retry",
5991 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005992 if (send_retry(l->rx.fd, &dgram->saddr, pkt, qv)) {
Frédéric Lécaille59507de2022-08-11 12:14:07 +02005993 TRACE_ERROR("Error during Retry generation",
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005994 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécailledfd13012022-05-20 16:37:36 +02005995 goto err;
5996 }
5997
5998 HA_ATOMIC_INC(&prx_counters->retry_sent);
5999 goto err;
6000 }
6001
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02006002 /* RFC 9000 7.2. Negotiating Connection IDs:
6003 * When an Initial packet is sent by a client that has not previously
6004 * received an Initial or Retry packet from the server, the client
6005 * populates the Destination Connection ID field with an unpredictable
6006 * value. This Destination Connection ID MUST be at least 8 bytes in length.
6007 */
Frédéric Lécailledc364042022-01-27 16:51:54 +01006008 if (pkt->dcid.len < QUIC_ODCID_MINLEN) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006009 TRACE_PROTO("dropped packet",
6010 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006011 goto drop;
Frédéric Lécailledc364042022-01-27 16:51:54 +01006012 }
6013
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006014 pkt->saddr = dgram->saddr;
6015 ipv4 = dgram->saddr.ss_family == AF_INET;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006016
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02006017 qc = qc_new_conn(qv, ipv4, &pkt->dcid, &pkt->scid, token_odcid,
Frédéric Lécaille748ece62022-05-21 23:58:40 +02006018 &pkt->saddr, 1, !!pkt->token_len, l);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02006019 if (qc == NULL)
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006020 goto drop;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02006021
Frédéric Lécailleeb791452022-05-24 16:01:39 +02006022 HA_ATOMIC_INC(&prx_counters->half_open_conn);
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02006023 /* Insert the DCID the QUIC client has chosen (only for listeners) */
Frédéric Lécaille560ddfa2022-08-24 18:59:23 +02006024 ebmb_insert(&quic_dghdlrs[tid].odcids, &qc->odcid_node,
6025 qc->odcid.len + qc->odcid.addrlen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006026 }
Frédéric Lécaille560ddfa2022-08-24 18:59:23 +02006027
6028 pkt->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006029 }
6030 else {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006031 TRACE_PROTO("short header packet received", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01006032 if (end - buf < QUIC_HAP_CID_LEN) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006033 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006034 goto drop;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006035 }
6036
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01006037 memcpy(pkt->dcid.data, buf, QUIC_HAP_CID_LEN);
Amaury Denoyelleadb22762021-12-14 15:04:14 +01006038 pkt->dcid.len = QUIC_HAP_CID_LEN;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006039
6040 /* When multiple QUIC packets are coalesced on the same UDP datagram,
6041 * they must have the same DCID.
6042 */
6043 if (!first_pkt &&
6044 (pkt->dcid.len != dgram->dcid_len ||
6045 memcmp(dgram->dcid, pkt->dcid.data, pkt->dcid.len))) {
6046 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006047 goto drop;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006048 }
6049
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01006050 buf += QUIC_HAP_CID_LEN;
6051
6052 /* A short packet is the last one of a UDP datagram. */
6053 payload = buf;
6054 pkt->len = end - beg;
Amaury Denoyelleadb22762021-12-14 15:04:14 +01006055
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006056 qc = retrieve_qc_conn_from_cid(pkt, l, &dgram->saddr);
Frédéric Lécaille4d118d62021-12-21 14:48:58 +01006057 if (!qc) {
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01006058 size_t pktlen = end - buf;
Frédéric Lécaille4d118d62021-12-21 14:48:58 +01006059 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, NULL, pkt, &pktlen);
Frédéric Lécailleeb791452022-05-24 16:01:39 +02006060 if (global.cluster_secret && !send_stateless_reset(l, &dgram->saddr, pkt))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006061 TRACE_ERROR("stateless reset not sent", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006062 goto drop;
Frédéric Lécaille4d118d62021-12-21 14:48:58 +01006063 }
6064
Frédéric Lécaille8370c932021-11-08 17:01:46 +01006065 pkt->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006066 }
6067
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02006068 if (qc->flags & QUIC_FL_CONN_CLOSING) {
6069 if (++qc->nb_pkt_since_cc >= qc->nb_pkt_for_cc) {
6070 qc->flags |= QUIC_FL_CONN_IMMEDIATE_CLOSE;
6071 qc->nb_pkt_for_cc++;
6072 qc->nb_pkt_since_cc = 0;
6073 }
6074 /* Skip the entire datagram */
6075 pkt->len = end - beg;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006076 TRACE_STATE("Closing state connection",
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006077 QUIC_EV_CONN_LPKT, pkt->qc, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006078 goto drop;
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02006079 }
Amaury Denoyelleadb22762021-12-14 15:04:14 +01006080
6081 /* When multiple QUIC packets are coalesced on the same UDP datagram,
6082 * they must have the same DCID.
6083 *
6084 * This check must be done after the final update to pkt.len to
6085 * properly drop the packet on failure.
6086 */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006087 if (first_pkt && !quic_peer_validated_addr(qc) &&
Frédéric Lécaillefc790062022-03-28 17:10:31 +02006088 qc->flags & QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED) {
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006089 TRACE_PROTO("PTO timer must be armed after anti-amplication was reached",
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006090 QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006091 /* Reset the anti-amplification bit. It will be set again
6092 * when sending the next packet if reached again.
6093 */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02006094 qc->flags &= ~QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED;
6095 qc->flags |= QUIC_FL_CONN_IO_CB_WAKEUP;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006096 io_cb_wakeup = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006097 }
Amaury Denoyelleadb22762021-12-14 15:04:14 +01006098
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006099 dgram->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006100
Amaury Denoyelle72d86502022-07-13 15:08:23 +02006101 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006102 TRACE_PROTO("Connection error",
6103 QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006104 goto out;
6105 }
6106
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01006107 pkt->raw_len = pkt->len;
Frédéric Lécailled61bc8d2021-12-02 14:46:19 +01006108 quic_rx_pkts_del(qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01006109 b_cspace = b_contig_space(&qc->rx.buf);
6110 if (b_cspace < pkt->len) {
Amaury Denoyelle80d05722022-05-16 18:13:56 +02006111 /* Do not consume buf if space not at the end. */
6112 if (b_tail(&qc->rx.buf) + b_cspace < b_wrap(&qc->rx.buf)) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006113 TRACE_PROTO("Packet dropped",
6114 QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
Frédéric Lécaille45a16292022-06-29 12:03:34 +02006115 HA_ATOMIC_INC(&prx_counters->dropped_pkt_bufoverrun);
6116 goto drop_no_conn;
Amaury Denoyelle80d05722022-05-16 18:13:56 +02006117 }
6118
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01006119 /* Let us consume the remaining contiguous space. */
Frédéric Lécailled61bc8d2021-12-02 14:46:19 +01006120 if (b_cspace) {
6121 b_putchr(&qc->rx.buf, 0x00);
6122 b_cspace--;
6123 }
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01006124 b_add(&qc->rx.buf, b_cspace);
6125 if (b_contig_space(&qc->rx.buf) < pkt->len) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006126 TRACE_PROTO("Too big packet",
6127 QUIC_EV_CONN_LPKT, qc, pkt, &pkt->len, qv);
Frédéric Lécaille45a16292022-06-29 12:03:34 +02006128 HA_ATOMIC_INC(&prx_counters->dropped_pkt_bufoverrun);
6129 goto drop_no_conn;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01006130 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006131 }
6132
Frédéric Lécaille99897d12022-08-08 10:28:07 +02006133 if (!qc_try_rm_hp(qc, pkt, payload, beg, &qel)) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006134 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006135 goto drop;
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02006136 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006137
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006138 TRACE_DATA("New packet", QUIC_EV_CONN_LPKT, qc, pkt, NULL, qv);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01006139 if (pkt->aad_len)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006140 qc_pkt_insert(qc, pkt, qel);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006141 out:
Frédéric Lécaille01abc462021-07-21 09:34:27 +02006142 /* Wake up the connection packet handler task from here only if all
6143 * the contexts have been initialized, especially the mux context
6144 * conn_ctx->conn->ctx. Note that this is ->start xprt callback which
6145 * will start it if these contexts for the connection are not already
6146 * initialized.
6147 */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02006148 conn_ctx = qc->xprt_ctx;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01006149 if (conn_ctx)
Frédéric Lécaille1b0707f2022-06-30 11:28:56 +02006150 *tasklist_head = tasklet_wakeup_after(*tasklist_head, conn_ctx->wait_event.tasklet);
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02006151
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006152 drop_no_conn:
6153 if (drop_no_conn)
6154 HA_ATOMIC_INC(&prx_counters->dropped_pkt);
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006155 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc ? qc : NULL, pkt, NULL, qv);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006156
Frédéric Lécaille4646cf32022-04-27 15:09:53 +02006157 return;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006158
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006159 drop:
6160 HA_ATOMIC_INC(&prx_counters->dropped_pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006161 err:
Frédéric Lécaille6b663152022-01-04 17:03:11 +01006162 /* Wakeup the I/O handler callback if the PTO timer must be armed.
6163 * This cannot be done by this thread.
6164 */
6165 if (io_cb_wakeup) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02006166 conn_ctx = qc->xprt_ctx;
Frédéric Lécaille6b663152022-01-04 17:03:11 +01006167 if (conn_ctx && conn_ctx->wait_event.tasklet)
6168 tasklet_wakeup(conn_ctx->wait_event.tasklet);
6169 }
Frédéric Lécaillef7ef9762021-12-31 16:37:58 +01006170 /* If length not found, consume the entire datagram */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01006171 if (!pkt->len)
6172 pkt->len = end - beg;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006173 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc ? qc : NULL, pkt, NULL, qv);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006174}
6175
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006176/* This function builds into <buf> buffer a QUIC long packet header.
6177 * Return 1 if enough room to build this header, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006178 */
6179static int quic_build_packet_long_header(unsigned char **buf, const unsigned char *end,
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006180 int type, size_t pn_len,
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006181 struct quic_conn *qc, const struct quic_version *ver)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006182{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006183 int ret = 0;
6184
6185 TRACE_ENTER(QUIC_EV_CONN_LPKT, qc);
6186
6187 if (end - *buf < sizeof ver->num + qc->dcid.len + qc->scid.len + 3) {
6188 TRACE_DEVEL("not enough room", QUIC_EV_CONN_LPKT, qc);
6189 goto leave;
6190 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006191
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006192 type = quic_pkt_type(type, ver->num);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006193 /* #0 byte flags */
6194 *(*buf)++ = QUIC_PACKET_FIXED_BIT | QUIC_PACKET_LONG_HEADER_BIT |
6195 (type << QUIC_PACKET_TYPE_SHIFT) | (pn_len - 1);
6196 /* Version */
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006197 quic_write_uint32(buf, end, ver->num);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006198 *(*buf)++ = qc->dcid.len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006199 /* Destination connection ID */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006200 if (qc->dcid.len) {
6201 memcpy(*buf, qc->dcid.data, qc->dcid.len);
6202 *buf += qc->dcid.len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006203 }
6204 /* Source connection ID */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006205 *(*buf)++ = qc->scid.len;
6206 if (qc->scid.len) {
6207 memcpy(*buf, qc->scid.data, qc->scid.len);
6208 *buf += qc->scid.len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006209 }
6210
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006211 ret = 1;
6212 leave:
6213 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc);
6214 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006215}
6216
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006217/* This function builds into <buf> buffer a QUIC short packet header.
6218 * Return 1 if enough room to build this header, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006219 */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006220static int quic_build_packet_short_header(unsigned char **buf, const unsigned char *end,
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006221 size_t pn_len, struct quic_conn *qc,
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006222 unsigned char tls_flags)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006223{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006224 int ret = 0;
6225
6226 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
6227
6228 if (end - *buf < 1 + qc->dcid.len) {
6229 TRACE_DEVEL("not enough room", QUIC_EV_CONN_LPKT, qc);
6230 goto leave;
6231 }
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006232
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006233 /* #0 byte flags */
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01006234 *(*buf)++ = QUIC_PACKET_FIXED_BIT |
6235 ((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 +01006236 /* Destination connection ID */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006237 if (qc->dcid.len) {
6238 memcpy(*buf, qc->dcid.data, qc->dcid.len);
6239 *buf += qc->dcid.len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006240 }
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006241
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006242 ret = 1;
6243 leave:
6244 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
6245 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006246}
6247
6248/* Apply QUIC header protection to the packet with <buf> as first byte address,
6249 * <pn> as address of the Packet number field, <pnlen> being this field length
6250 * with <aead> as AEAD cipher and <key> as secret key.
6251 * Returns 1 if succeeded or 0 if failed.
6252 */
Frédéric Lécaille86a53c52022-08-19 18:18:13 +02006253static int quic_apply_header_protection(struct quic_conn *qc, unsigned char *buf,
6254 unsigned char *pn, size_t pnlen,
6255 struct quic_tls_ctx *tls_ctx)
6256
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006257{
Frédéric Lécaille86a53c52022-08-19 18:18:13 +02006258 int i, ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006259 /* We need an IV of at least 5 bytes: one byte for bytes #0
6260 * and at most 4 bytes for the packet number
6261 */
6262 unsigned char mask[5] = {0};
Frédéric Lécaille86a53c52022-08-19 18:18:13 +02006263 EVP_CIPHER_CTX *aes_ctx = tls_ctx->tx.hp_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006264
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006265 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
6266
Frédéric Lécaille86a53c52022-08-19 18:18:13 +02006267 if (!quic_tls_aes_encrypt(mask, pn + QUIC_PACKET_PN_MAXLEN, sizeof mask, aes_ctx)) {
6268 TRACE_ERROR("could not apply header protection", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006269 goto out;
6270 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006271
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006272 *buf ^= mask[0] & (*buf & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f);
6273 for (i = 0; i < pnlen; i++)
6274 pn[i] ^= mask[i + 1];
6275
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006276 ret = 1;
6277 out:
6278 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006279 return ret;
6280}
6281
6282/* Reduce the encoded size of <ack_frm> ACK frame removing the last
6283 * ACK ranges if needed to a value below <limit> in bytes.
6284 * Return 1 if succeeded, 0 if not.
6285 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006286static int quic_ack_frm_reduce_sz(struct quic_conn *qc,
6287 struct quic_frame *ack_frm, size_t limit)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006288{
6289 size_t room, ack_delay_sz;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006290 int ret = 0;
6291
6292 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006293
6294 ack_delay_sz = quic_int_getsize(ack_frm->tx_ack.ack_delay);
6295 /* A frame is made of 1 byte for the frame type. */
6296 room = limit - ack_delay_sz - 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006297 if (!quic_rm_last_ack_ranges(qc, ack_frm->tx_ack.arngs, room))
6298 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006299
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006300 ret = 1 + ack_delay_sz + ack_frm->tx_ack.arngs->enc_sz;
6301 leave:
6302 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
6303 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006304}
6305
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006306/* Prepare into <outlist> as most as possible ack-eliciting frame from their
6307 * <inlist> prebuilt frames for <qel> encryption level to be encoded in a buffer
6308 * with <room> as available room, and <*len> the packet Length field initialized
6309 * with the number of bytes already present in this buffer which must be taken
6310 * into an account for the Length packet field value. <headlen> is the number of
6311 * bytes already present in this packet before building frames.
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006312 *
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006313 * Update consequently <*len> to reflect the size of these frames built
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006314 * by this function. Also attach these frames to <l> frame list.
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006315 * 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 +01006316 */
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006317static inline int qc_build_frms(struct list *outlist, struct list *inlist,
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006318 size_t room, size_t *len, size_t headlen,
6319 struct quic_enc_level *qel,
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006320 struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006321{
Frédéric Lécailleea604992020-12-24 13:01:37 +01006322 int ret;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01006323 struct quic_frame *cf, *cfbak;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006324
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006325 TRACE_ENTER(QUIC_EV_CONN_BCFRMS, qc);
6326
Frédéric Lécailleea604992020-12-24 13:01:37 +01006327 ret = 0;
Frédéric Lécaillef4e5a7c2022-01-17 17:56:20 +01006328 if (*len > room)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006329 goto leave;
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006330
Frédéric Lécailleea604992020-12-24 13:01:37 +01006331 /* If we are not probing we must take into an account the congestion
6332 * control window.
6333 */
Frédéric Lécaillef4e5a7c2022-01-17 17:56:20 +01006334 if (!qel->pktns->tx.pto_probe) {
6335 size_t remain = quic_path_prep_data(qc->path);
6336
6337 if (headlen > remain)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006338 goto leave;
Frédéric Lécaillef4e5a7c2022-01-17 17:56:20 +01006339
6340 room = QUIC_MIN(room, remain - headlen);
6341 }
6342
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006343 TRACE_PROTO("************** frames build (headlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006344 QUIC_EV_CONN_BCFRMS, qc, &headlen);
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006345
6346 /* NOTE: switch/case block inside a loop, a successful status must be
6347 * returned by this function only if at least one frame could be built
6348 * in the switch/case block.
6349 */
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006350 list_for_each_entry_safe(cf, cfbak, inlist, list) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006351 /* header length, data length, frame length. */
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006352 size_t hlen, dlen, dlen_sz, avail_room, flen;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006353
Frédéric Lécailleea604992020-12-24 13:01:37 +01006354 if (!room)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006355 break;
6356
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006357 switch (cf->type) {
6358 case QUIC_FT_CRYPTO:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006359 TRACE_DEVEL(" New CRYPTO frame build (room, len)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006360 QUIC_EV_CONN_BCFRMS, qc, &room, len);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006361 /* Compute the length of this CRYPTO frame header */
6362 hlen = 1 + quic_int_getsize(cf->crypto.offset);
6363 /* Compute the data length of this CRyPTO frame. */
6364 dlen = max_stream_data_size(room, *len + hlen, cf->crypto.len);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006365 TRACE_DEVEL(" CRYPTO data length (hlen, crypto.len, dlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006366 QUIC_EV_CONN_BCFRMS, qc, &hlen, &cf->crypto.len, &dlen);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006367 if (!dlen)
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006368 continue;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006369
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006370 /* CRYPTO frame length. */
6371 flen = hlen + quic_int_getsize(dlen) + dlen;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006372 TRACE_DEVEL(" CRYPTO frame length (flen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006373 QUIC_EV_CONN_BCFRMS, qc, &flen);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006374 /* Add the CRYPTO data length and its encoded length to the packet
6375 * length and the length of this length.
6376 */
6377 *len += flen;
6378 room -= flen;
6379 if (dlen == cf->crypto.len) {
6380 /* <cf> CRYPTO data have been consumed. */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01006381 LIST_DELETE(&cf->list);
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006382 LIST_APPEND(outlist, &cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006383 }
6384 else {
6385 struct quic_frame *new_cf;
6386
Frédéric Lécailleb9171912022-04-21 17:32:10 +02006387 new_cf = pool_zalloc(pool_head_quic_frame);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006388 if (!new_cf) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006389 TRACE_ERROR("No memory for new crypto frame", QUIC_EV_CONN_BCFRMS, qc);
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006390 continue;
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006391 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006392
Frédéric Lécailleb9171912022-04-21 17:32:10 +02006393 LIST_INIT(&new_cf->reflist);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006394 new_cf->type = QUIC_FT_CRYPTO;
6395 new_cf->crypto.len = dlen;
6396 new_cf->crypto.offset = cf->crypto.offset;
6397 new_cf->crypto.qel = qel;
Frédéric Lécailleb8278402022-08-19 09:32:14 +02006398 TRACE_DEVEL("splitted frame", QUIC_EV_CONN_PRSAFRM, qc, new_cf);
6399 if (cf->origin) {
6400 TRACE_DEVEL("duplicated frame", QUIC_EV_CONN_PRSAFRM, qc);
6401 /* This <cf> frame was duplicated */
6402 LIST_APPEND(&cf->origin->reflist, &new_cf->ref);
6403 new_cf->origin = cf->origin;
6404 }
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006405 LIST_APPEND(outlist, &new_cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006406 /* Consume <dlen> bytes of the current frame. */
6407 cf->crypto.len -= dlen;
6408 cf->crypto.offset += dlen;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006409 }
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006410 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006411
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006412 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02006413 if (cf->flags & QUIC_FL_TX_FRAME_LOST) {
6414 struct eb64_node *node = NULL;
6415 struct qc_stream_desc *stream_desc = NULL;
6416 struct quic_stream *strm = &cf->stream;
6417
6418 /* As this frame has been already lost, ensure the stream is always
6419 * available or the range of this frame is not consumed before
6420 * resending it.
6421 */
6422 node = eb64_lookup(&qc->streams_by_id, strm->id);
6423 if (!node) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006424 TRACE_DEVEL("released stream", QUIC_EV_CONN_PRSAFRM, qc, cf);
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02006425 LIST_DELETE(&cf->list);
6426 pool_free(pool_head_quic_frame, cf);
6427 continue;
6428 }
6429
6430 stream_desc = eb64_entry(node, struct qc_stream_desc, by_id);
6431 if (strm->offset.key + strm->len <= stream_desc->ack_offset) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006432 TRACE_DEVEL("ignored frame frame in already acked range",
Frédéric Lécaillefdc1b962022-05-31 12:04:42 +02006433 QUIC_EV_CONN_PRSAFRM, qc, cf);
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02006434 LIST_DELETE(&cf->list);
6435 pool_free(pool_head_quic_frame, cf);
6436 continue;
6437 }
6438 else if (strm->offset.key < stream_desc->ack_offset) {
6439 strm->offset.key = stream_desc->ack_offset;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006440 TRACE_DEVEL("updated partially acked frame",
Frédéric Lécaillefdc1b962022-05-31 12:04:42 +02006441 QUIC_EV_CONN_PRSAFRM, qc, cf);
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02006442 }
6443 }
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006444 /* Note that these frames are accepted in short packets only without
6445 * "Length" packet field. Here, <*len> is used only to compute the
6446 * sum of the lengths of the already built frames for this packet.
Frédéric Lécailled8b84432021-12-10 15:18:36 +01006447 *
6448 * Compute the length of this STREAM frame "header" made a all the field
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006449 * excepting the variable ones. Note that +1 is for the type of this frame.
6450 */
6451 hlen = 1 + quic_int_getsize(cf->stream.id) +
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02006452 ((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 +02006453 /* Compute the data length of this STREAM frame. */
6454 avail_room = room - hlen - *len;
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006455 if ((ssize_t)avail_room <= 0)
6456 continue;
6457
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006458 TRACE_DEVEL(" New STREAM frame build (room, len)",
Frédéric Lécailleadc76412022-08-08 16:09:46 +02006459 QUIC_EV_CONN_BCFRMS, qc, &room, len);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006460 if (cf->type & QUIC_STREAM_FRAME_TYPE_LEN_BIT) {
6461 dlen = max_available_room(avail_room, &dlen_sz);
6462 if (dlen > cf->stream.len) {
6463 dlen = cf->stream.len;
6464 }
6465 dlen_sz = quic_int_getsize(dlen);
6466 flen = hlen + dlen_sz + dlen;
6467 }
6468 else {
Frédéric Lécaille628e89c2022-06-24 12:13:53 +02006469 dlen = QUIC_MIN((uint64_t)avail_room, cf->stream.len);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006470 flen = hlen + dlen;
6471 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006472 TRACE_DEVEL(" STREAM data length (hlen, stream.len, dlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006473 QUIC_EV_CONN_BCFRMS, qc, &hlen, &cf->stream.len, &dlen);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006474 TRACE_DEVEL(" STREAM frame length (flen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006475 QUIC_EV_CONN_BCFRMS, qc, &flen);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006476 /* Add the STREAM data length and its encoded length to the packet
6477 * length and the length of this length.
6478 */
6479 *len += flen;
6480 room -= flen;
6481 if (dlen == cf->stream.len) {
6482 /* <cf> STREAM data have been consumed. */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01006483 LIST_DELETE(&cf->list);
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006484 LIST_APPEND(outlist, &cf->list);
Amaury Denoyelle54445d02022-03-10 16:44:14 +01006485
Amaury Denoyelleb29a1dc2022-08-12 14:30:04 +02006486 /* Do not notify MUX on retransmission. */
Amaury Denoyelle70467562022-08-17 16:33:13 +02006487 if (qc->flags & QUIC_FL_CONN_TX_MUX_CONTEXT) {
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02006488 qcc_streams_sent_done(cf->stream.stream->ctx,
6489 cf->stream.len,
6490 cf->stream.offset.key);
6491 }
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006492 }
6493 else {
6494 struct quic_frame *new_cf;
Amaury Denoyelle642ab062022-02-23 10:54:42 +01006495 struct buffer cf_buf;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006496
6497 new_cf = pool_zalloc(pool_head_quic_frame);
6498 if (!new_cf) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006499 TRACE_ERROR("No memory for new STREAM frame", QUIC_EV_CONN_BCFRMS, qc);
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006500 continue;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006501 }
6502
Frédéric Lécailleb9171912022-04-21 17:32:10 +02006503 LIST_INIT(&new_cf->reflist);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006504 new_cf->type = cf->type;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02006505 new_cf->stream.stream = cf->stream.stream;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02006506 new_cf->stream.buf = cf->stream.buf;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006507 new_cf->stream.id = cf->stream.id;
6508 if (cf->type & QUIC_STREAM_FRAME_TYPE_OFF_BIT)
6509 new_cf->stream.offset = cf->stream.offset;
6510 new_cf->stream.len = dlen;
6511 new_cf->type |= QUIC_STREAM_FRAME_TYPE_LEN_BIT;
6512 /* FIN bit reset */
6513 new_cf->type &= ~QUIC_STREAM_FRAME_TYPE_FIN_BIT;
6514 new_cf->stream.data = cf->stream.data;
Frédéric Lécailleb8278402022-08-19 09:32:14 +02006515 TRACE_DEVEL("splitted frame", QUIC_EV_CONN_PRSAFRM, qc, new_cf);
6516 if (cf->origin) {
6517 TRACE_DEVEL("duplicated frame", QUIC_EV_CONN_PRSAFRM, qc);
6518 /* This <cf> frame was duplicated */
6519 LIST_APPEND(&cf->origin->reflist, &new_cf->ref);
6520 new_cf->origin = cf->origin;
6521 }
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006522 LIST_APPEND(outlist, &new_cf->list);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006523 cf->type |= QUIC_STREAM_FRAME_TYPE_OFF_BIT;
6524 /* Consume <dlen> bytes of the current frame. */
Amaury Denoyelle642ab062022-02-23 10:54:42 +01006525 cf_buf = b_make(b_orig(cf->stream.buf),
6526 b_size(cf->stream.buf),
6527 (char *)cf->stream.data - b_orig(cf->stream.buf), 0);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006528 cf->stream.len -= dlen;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02006529 cf->stream.offset.key += dlen;
Amaury Denoyelle642ab062022-02-23 10:54:42 +01006530 cf->stream.data = (unsigned char *)b_peek(&cf_buf, dlen);
Amaury Denoyelle54445d02022-03-10 16:44:14 +01006531
Amaury Denoyelleb29a1dc2022-08-12 14:30:04 +02006532 /* Do not notify MUX on retransmission. */
Amaury Denoyelle70467562022-08-17 16:33:13 +02006533 if (qc->flags & QUIC_FL_CONN_TX_MUX_CONTEXT) {
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02006534 qcc_streams_sent_done(new_cf->stream.stream->ctx,
6535 new_cf->stream.len,
6536 new_cf->stream.offset.key);
6537 }
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006538 }
Amaury Denoyelle54445d02022-03-10 16:44:14 +01006539
6540 /* TODO the MUX is notified about the frame sending via
6541 * previous qcc_streams_sent_done call. However, the
6542 * sending can fail later, for example if the sendto
6543 * system call returns an error. As the MUX has been
6544 * notified, the transport layer is responsible to
6545 * bufferize and resent the announced data later.
6546 */
6547
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006548 break;
6549
6550 default:
6551 flen = qc_frm_len(cf);
6552 BUG_ON(!flen);
6553 if (flen > room)
6554 continue;
6555
6556 *len += flen;
6557 room -= flen;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01006558 LIST_DELETE(&cf->list);
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006559 LIST_APPEND(outlist, &cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006560 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006561 }
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006562
6563 /* Successful status as soon as a frame could be built */
Frédéric Lécailleea604992020-12-24 13:01:37 +01006564 ret = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006565 }
6566
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006567 leave:
6568 TRACE_LEAVE(QUIC_EV_CONN_BCFRMS, qc);
Frédéric Lécailleea604992020-12-24 13:01:37 +01006569 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006570}
6571
Amaury Denoyelle0933c7b2022-07-18 14:11:50 +02006572/* Generate a CONNECTION_CLOSE frame for <qc> on <qel> encryption level. <out>
6573 * is used as return parameter and should be zero'ed by the caller.
6574 */
6575static void qc_build_cc_frm(struct quic_conn *qc, struct quic_enc_level *qel,
6576 struct quic_frame *out)
6577{
6578 /* TODO improve CONNECTION_CLOSE on Initial/Handshake encryption levels
6579 *
6580 * A CONNECTION_CLOSE frame should be sent in several packets with
6581 * different encryption levels depending on the client context. This is
6582 * to ensure that the client can decrypt it. See RFC 9000 10.2.3 for
6583 * more details on how to implement it.
6584 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006585 TRACE_ENTER(QUIC_EV_CONN_BFRM, qc);
6586
Amaury Denoyelle0933c7b2022-07-18 14:11:50 +02006587
6588 if (qc->err.app) {
6589 if (unlikely(qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL] ||
6590 qel == &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE])) {
6591 /* RFC 9000 10.2.3. Immediate Close during the Handshake
6592 *
6593 * Sending a CONNECTION_CLOSE of type 0x1d in an Initial or Handshake
6594 * packet could expose application state or be used to alter application
6595 * state. A CONNECTION_CLOSE of type 0x1d MUST be replaced by a
6596 * CONNECTION_CLOSE of type 0x1c when sending the frame in Initial or
6597 * Handshake packets. Otherwise, information about the application
6598 * state might be revealed. Endpoints MUST clear the value of the
6599 * Reason Phrase field and SHOULD use the APPLICATION_ERROR code when
6600 * converting to a CONNECTION_CLOSE of type 0x1c.
6601 */
6602 out->type = QUIC_FT_CONNECTION_CLOSE;
6603 out->connection_close.error_code = QC_ERR_APPLICATION_ERROR;
6604 out->connection_close.reason_phrase_len = 0;
6605 }
6606 else {
6607 out->type = QUIC_FT_CONNECTION_CLOSE_APP;
6608 out->connection_close.error_code = qc->err.code;
6609 }
6610 }
6611 else {
6612 out->type = QUIC_FT_CONNECTION_CLOSE;
6613 out->connection_close.error_code = qc->err.code;
6614 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006615 TRACE_LEAVE(QUIC_EV_CONN_BFRM, qc);
6616
Amaury Denoyelle0933c7b2022-07-18 14:11:50 +02006617}
6618
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006619/* This function builds a clear packet from <pkt> information (its type)
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006620 * into a buffer with <pos> as position pointer and <qel> as QUIC TLS encryption
6621 * level for <conn> QUIC connection and <qel> as QUIC TLS encryption level,
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01006622 * filling the buffer with as much frames as possible from <frms> list of
6623 * prebuilt frames.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006624 * 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 +02006625 * 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 +02006626 * having returned from this function.
6627 * 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 +01006628 * number field in this packet. <pn_len> will also have the packet number
6629 * length as value.
6630 *
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006631 * Return 1 if succeeded (enough room to buile this packet), O if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006632 */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006633static int qc_do_build_pkt(unsigned char *pos, const unsigned char *end,
6634 size_t dglen, struct quic_tx_packet *pkt,
6635 int64_t pn, size_t *pn_len, unsigned char **buf_pn,
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02006636 int force_ack, int padding, int cc, int probe,
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01006637 struct quic_enc_level *qel, struct quic_conn *qc,
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006638 const struct quic_version *ver, struct list *frms)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006639{
Frédéric Lécailleebb10702022-08-16 12:03:00 +02006640 unsigned char *beg, *payload;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006641 size_t len, len_sz, len_frms, padding_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006642 struct quic_frame frm = { .type = QUIC_FT_CRYPTO, };
6643 struct quic_frame ack_frm = { .type = QUIC_FT_ACK, };
Amaury Denoyellef9e190e2022-05-23 16:12:15 +02006644 struct quic_frame cc_frm = { };
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006645 size_t ack_frm_len, head_len;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01006646 int64_t rx_largest_acked_pn;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006647 int add_ping_frm;
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006648 struct list frm_list = LIST_HEAD_INIT(frm_list);
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01006649 struct quic_frame *cf;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006650 int must_ack, ret = 0;
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02006651 int nb_aepkts_since_last_ack;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006652
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006653 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
6654
Frédéric Lécailleea604992020-12-24 13:01:37 +01006655 /* Length field value with CRYPTO frames if present. */
6656 len_frms = 0;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006657 beg = pos;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006658 /* When not probing, and no immediate close is required, reduce the size of this
6659 * buffer to respect the congestion controller window.
6660 * 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 +01006661 */
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006662 if (!probe && !LIST_ISEMPTY(frms) && !cc) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006663 size_t path_room;
6664
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006665 path_room = quic_path_prep_data(qc->path);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006666 if (end - beg > path_room)
6667 end = beg + path_room;
6668 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006669
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006670 /* Ensure there is enough room for the TLS encryption tag and a zero token
6671 * length field if any.
6672 */
6673 if (end - pos < QUIC_TLS_TAG_LEN +
6674 (pkt->type == QUIC_PACKET_TYPE_INITIAL ? 1 : 0))
6675 goto no_room;
6676
6677 end -= QUIC_TLS_TAG_LEN;
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02006678 rx_largest_acked_pn = qel->pktns->rx.largest_acked_pn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006679 /* packet number length */
Frédéric Lécaille141982a2022-03-15 18:44:20 +01006680 *pn_len = quic_packet_number_length(pn, rx_largest_acked_pn);
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006681 /* Build the header */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006682 if ((pkt->type == QUIC_PACKET_TYPE_SHORT &&
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006683 !quic_build_packet_short_header(&pos, end, *pn_len, qc, qel->tls_ctx.flags)) ||
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006684 (pkt->type != QUIC_PACKET_TYPE_SHORT &&
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006685 !quic_build_packet_long_header(&pos, end, pkt->type, *pn_len, qc, ver)))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006686 goto no_room;
6687
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006688 /* Encode the token length (0) for an Initial packet. */
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006689 if (pkt->type == QUIC_PACKET_TYPE_INITIAL)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006690 *pos++ = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006691 head_len = pos - beg;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006692 /* Build an ACK frame if required. */
6693 ack_frm_len = 0;
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02006694 nb_aepkts_since_last_ack = qel->pktns->rx.nb_aepkts_since_last_ack;
6695 must_ack = !qel->pktns->tx.pto_probe &&
6696 (force_ack || ((qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) &&
6697 (LIST_ISEMPTY(frms) || nb_aepkts_since_last_ack >= QUIC_MAX_RX_AEPKTS_SINCE_LAST_ACK)));
6698 if (force_ack || must_ack) {
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02006699 struct quic_arngs *arngs = &qel->pktns->rx.arngs;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006700 BUG_ON(eb_is_empty(&qel->pktns->rx.arngs.root));
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02006701 ack_frm.tx_ack.arngs = arngs;
6702 if (qel->pktns->flags & QUIC_FL_PKTNS_NEW_LARGEST_PN) {
6703 qel->pktns->tx.ack_delay =
6704 quic_compute_ack_delay_us(qel->pktns->rx.largest_time_received, qc);
6705 qel->pktns->flags &= ~QUIC_FL_PKTNS_NEW_LARGEST_PN;
6706 }
6707 ack_frm.tx_ack.ack_delay = qel->pktns->tx.ack_delay;
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006708 /* XXX BE CAREFUL XXX : here we reserved at least one byte for the
6709 * smallest frame (PING) and <*pn_len> more for the packet number. Note
6710 * that from here, we do not know if we will have to send a PING frame.
6711 * This will be decided after having computed the ack-eliciting frames
6712 * to be added to this packet.
6713 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006714 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 +01006715 if (!ack_frm_len)
6716 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006717 }
6718
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006719 /* Length field value without the ack-eliciting frames. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006720 len = ack_frm_len + *pn_len;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01006721 len_frms = 0;
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01006722 if (!cc && !LIST_ISEMPTY(frms)) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006723 ssize_t room = end - pos;
Frédéric Lécailleea604992020-12-24 13:01:37 +01006724
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006725 TRACE_DEVEL("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, frms);
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006726 /* Initialize the length of the frames built below to <len>.
6727 * If any frame could be successfully built by qc_build_frms(),
6728 * we will have len_frms > len.
6729 */
6730 len_frms = len;
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006731 if (!qc_build_frms(&frm_list, frms,
6732 end - pos, &len_frms, pos - beg, qel, qc)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006733 TRACE_DEVEL("Not enough room", QUIC_EV_CONN_TXPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006734 qc, NULL, NULL, &room);
Frédéric Lécaille834399c2022-04-25 17:17:07 +02006735 if (!ack_frm_len && !qel->pktns->tx.pto_probe)
6736 goto no_room;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006737 }
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006738 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006739
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006740 /* Length (of the remaining data). Must not fail because, the buffer size
6741 * has been checked above. Note that we have reserved QUIC_TLS_TAG_LEN bytes
6742 * for the encryption tag. It must be taken into an account for the length
6743 * of this packet.
6744 */
6745 if (len_frms)
6746 len = len_frms + QUIC_TLS_TAG_LEN;
6747 else
6748 len += QUIC_TLS_TAG_LEN;
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006749 /* CONNECTION_CLOSE frame */
6750 if (cc) {
Amaury Denoyelle0933c7b2022-07-18 14:11:50 +02006751 qc_build_cc_frm(qc, qel, &cc_frm);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006752 len += qc_frm_len(&cc_frm);
6753 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006754 add_ping_frm = 0;
6755 padding_len = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006756 len_sz = quic_int_getsize(len);
6757 /* Add this packet size to <dglen> */
6758 dglen += head_len + len_sz + len;
6759 if (padding && dglen < QUIC_INITIAL_PACKET_MINLEN) {
6760 /* This is a maximum padding size */
6761 padding_len = QUIC_INITIAL_PACKET_MINLEN - dglen;
6762 /* The length field value is of this packet is <len> + <padding_len>
6763 * the size of which may be greater than the initial computed size
Ilya Shipitsin5e87bcf2021-12-25 11:45:52 +05006764 * <len_sz>. So, let's deduce the difference between these to packet
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006765 * sizes from <padding_len>.
6766 */
6767 padding_len -= quic_int_getsize(len + padding_len) - len_sz;
6768 len += padding_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006769 }
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006770 else if (LIST_ISEMPTY(&frm_list) || len_frms == len) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006771 if (qel->pktns->tx.pto_probe) {
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006772 /* If we cannot send a frame, we send a PING frame. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006773 add_ping_frm = 1;
6774 len += 1;
6775 }
6776 /* 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 +01006777 if (!ack_frm_len && !cc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006778 len += padding_len = QUIC_PACKET_PN_MAXLEN - *pn_len;
6779 }
6780
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006781 if (pkt->type != QUIC_PACKET_TYPE_SHORT && !quic_enc_int(&pos, end, len))
6782 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006783
6784 /* Packet number field address. */
6785 *buf_pn = pos;
6786
6787 /* Packet number encoding. */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006788 if (!quic_packet_number_encode(&pos, end, pn, *pn_len))
6789 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006790
Frédéric Lécailleebb10702022-08-16 12:03:00 +02006791 /* payload building (ack-eliciting or not frames) */
6792 payload = pos;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01006793 if (ack_frm_len) {
6794 if (!qc_build_frm(&pos, end, &ack_frm, pkt, qc))
6795 goto no_room;
6796
6797 pkt->largest_acked_pn = quic_pktns_get_largest_acked_pn(qel->pktns);
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006798 pkt->flags |= QUIC_FL_TX_PACKET_ACK;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01006799 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006800
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006801 /* Ack-eliciting frames */
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006802 if (!LIST_ISEMPTY(&frm_list)) {
Frédéric Lécaillea8a60432022-08-23 11:42:48 +02006803 struct quic_frame *tmp_cf;
6804 list_for_each_entry_safe(cf, tmp_cf, &frm_list, list) {
Frédéric Lécailleb8047de2022-08-23 17:40:09 +02006805 if (!qc_build_frm(&pos, end, cf, pkt, qc)) {
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01006806 ssize_t room = end - pos;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006807 TRACE_DEVEL("Not enough room", QUIC_EV_CONN_TXPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006808 qc, NULL, NULL, &room);
Frédéric Lécailleebb10702022-08-16 12:03:00 +02006809 /* TODO: this should not have happened except if we
6810 * are limited by the congestion control.
6811 * Note that <cf> was added from <frm_list> to <frms> list by
6812 * qc_build_frms().
Frédéric Lécailledcc74ff2022-03-18 17:49:29 +01006813 */
6814 LIST_DELETE(&cf->list);
6815 LIST_INSERT(frms, &cf->list);
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006816 break;
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01006817 }
Frédéric Lécailledcc74ff2022-03-18 17:49:29 +01006818
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01006819 quic_tx_packet_refinc(pkt);
6820 cf->pkt = pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006821 }
6822 }
6823
6824 /* Build a PING frame if needed. */
6825 if (add_ping_frm) {
6826 frm.type = QUIC_FT_PING;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006827 if (!qc_build_frm(&pos, end, &frm, pkt, qc))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006828 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006829 }
6830
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006831 /* Build a CONNECTION_CLOSE frame if needed. */
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02006832 if (cc) {
6833 if (!qc_build_frm(&pos, end, &cc_frm, pkt, qc))
6834 goto no_room;
6835
6836 pkt->flags |= QUIC_FL_TX_PACKET_CC;
6837 }
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006838
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006839 /* Build a PADDING frame if needed. */
6840 if (padding_len) {
6841 frm.type = QUIC_FT_PADDING;
6842 frm.padding.len = padding_len;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006843 if (!qc_build_frm(&pos, end, &frm, pkt, qc))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006844 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006845 }
6846
Frédéric Lécailleebb10702022-08-16 12:03:00 +02006847 if (pos == payload) {
6848 /* No payload was built because of congestion control */
6849 TRACE_DEVEL("limited by congestion control", QUIC_EV_CONN_TXPKT, qc);
6850 goto no_room;
6851 }
6852
Frédéric Lécaille466e9da2021-12-29 12:04:13 +01006853 /* If this packet is ack-eliciting and we are probing let's
6854 * decrement the PTO probe counter.
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006855 */
Frédéric Lécaille466e9da2021-12-29 12:04:13 +01006856 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING &&
6857 qel->pktns->tx.pto_probe)
6858 qel->pktns->tx.pto_probe--;
6859
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006860 pkt->len = pos - beg;
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006861 LIST_SPLICE(&pkt->frms, &frm_list);
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006862
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006863 ret = 1;
6864 TRACE_DEVEL("Packet ack-eliciting frames", QUIC_EV_CONN_TXPKT, qc, pkt);
6865 leave:
6866 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
6867 return ret;
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006868
6869 no_room:
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006870 /* Replace the pre-built frames which could not be add to this packet */
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01006871 LIST_SPLICE(frms, &frm_list);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006872 TRACE_DEVEL("Remaining ack-eliciting frames", QUIC_EV_CONN_FRMLIST, qc, frms);
6873 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006874}
6875
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02006876static inline void quic_tx_packet_init(struct quic_tx_packet *pkt, int type)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006877{
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02006878 pkt->type = type;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006879 pkt->len = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006880 pkt->in_flight_len = 0;
Frédéric Lécaille0371cd52021-12-13 12:30:54 +01006881 pkt->pn_node.key = (uint64_t)-1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006882 LIST_INIT(&pkt->frms);
Frédéric Lécaille2899fe22022-03-21 10:43:53 +01006883 pkt->time_sent = TICK_ETERNITY;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006884 pkt->next = NULL;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01006885 pkt->largest_acked_pn = -1;
Frédéric Lécaille2899fe22022-03-21 10:43:53 +01006886 pkt->flags = 0;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01006887 pkt->refcnt = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006888}
6889
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006890/* Build a packet into <buf> packet buffer with <pkt_type> as packet
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01006891 * type for <qc> QUIC connection from <qel> encryption level from <frms> list
6892 * of prebuilt frames.
6893 *
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006894 * Return -2 if the packet could not be allocated or encrypted for any reason,
6895 * -1 if there was not enough room to build a packet.
Frédéric Lécaillee9a974a2022-03-13 19:19:12 +01006896 * XXX NOTE XXX
6897 * If you provide provide qc_build_pkt() with a big enough buffer to build a packet as big as
6898 * possible (to fill an MTU), the unique reason why this function may fail is the congestion
6899 * control window limitation.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006900 */
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006901static struct quic_tx_packet *qc_build_pkt(unsigned char **pos,
6902 const unsigned char *buf_end,
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006903 struct quic_enc_level *qel,
6904 struct quic_tls_ctx *tls_ctx, struct list *frms,
6905 struct quic_conn *qc, const struct quic_version *ver,
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02006906 size_t dglen, int pkt_type, int force_ack,
6907 int padding, int probe, int cc, int *err)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006908{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006909 struct quic_tx_packet *ret_pkt = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006910 /* The pointer to the packet number field. */
6911 unsigned char *buf_pn;
6912 unsigned char *beg, *end, *payload;
6913 int64_t pn;
6914 size_t pn_len, payload_len, aad_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006915 struct quic_tx_packet *pkt;
6916
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006917 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc, NULL, qel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006918 *err = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006919 pkt = pool_alloc(pool_head_quic_tx_packet);
6920 if (!pkt) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006921 TRACE_DEVEL("Not enough memory for a new packet", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006922 *err = -2;
6923 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006924 }
6925
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02006926 quic_tx_packet_init(pkt, pkt_type);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006927 beg = *pos;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006928 pn_len = 0;
6929 buf_pn = NULL;
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006930
6931 pn = qel->pktns->tx.next_pn + 1;
6932 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 +02006933 force_ack, padding, cc, probe, qel, qc, ver, frms)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006934 // trace already emitted by function above
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006935 *err = -1;
6936 goto err;
6937 }
6938
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006939 end = beg + pkt->len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006940 payload = buf_pn + pn_len;
6941 payload_len = end - payload;
6942 aad_len = payload - beg;
6943
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01006944 if (!quic_packet_encrypt(payload, payload_len, beg, aad_len, pn, tls_ctx, qc)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006945 // trace already emitted by function above
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006946 *err = -2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006947 goto err;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006948 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006949
6950 end += QUIC_TLS_TAG_LEN;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006951 pkt->len += QUIC_TLS_TAG_LEN;
Frédéric Lécaille86a53c52022-08-19 18:18:13 +02006952 if (!quic_apply_header_protection(qc, beg, buf_pn, pn_len, tls_ctx)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006953 // trace already emitted by function above
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006954 *err = -2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006955 goto err;
6956 }
6957
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006958 /* Consume a packet number */
6959 qel->pktns->tx.next_pn++;
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +01006960 qc->tx.prep_bytes += pkt->len;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006961 if (qc->tx.prep_bytes >= 3 * qc->rx.bytes && !quic_peer_validated_addr(qc)) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02006962 qc->flags |= QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006963 TRACE_PROTO("anti-amplification limit reached", QUIC_EV_CONN_TXPKT, qc);
6964 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006965 /* Now that a correct packet is built, let us consume <*pos> buffer. */
6966 *pos = end;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006967 /* Attach the built packet to its tree. */
Frédéric Lécaillea7348f62021-08-03 16:50:14 +02006968 pkt->pn_node.key = pn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006969 /* Set the packet in fligth length for in flight packet only. */
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006970 if (pkt->flags & QUIC_FL_TX_PACKET_IN_FLIGHT) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006971 pkt->in_flight_len = pkt->len;
6972 qc->path->prep_in_flight += pkt->len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006973 }
Frédéric Lécaille47756802022-03-25 09:12:16 +01006974 /* Always reset this flags */
6975 qc->flags &= ~QUIC_FL_CONN_IMMEDIATE_CLOSE;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006976 if (pkt->flags & QUIC_FL_TX_PACKET_ACK) {
6977 qel->pktns->flags &= ~QUIC_FL_PKTNS_ACK_REQUIRED;
6978 qel->pktns->rx.nb_aepkts_since_last_ack = 0;
6979 }
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02006980
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006981 pkt->pktns = qel->pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006982
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006983 ret_pkt = pkt;
6984 leave:
6985 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc, ret_pkt);
6986 return ret_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006987
6988 err:
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01006989 /* TODO: what about the frames which have been built
6990 * for this packet.
6991 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006992 free_quic_tx_packet(qc, pkt);
6993 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006994}
6995
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006996
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01006997/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6998 * event subscriber <es> is not allowed to change from a previous call as long
6999 * as at least one event is still subscribed. The <event_type> must only be a
7000 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
7001 */
7002static int quic_conn_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
7003{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007004 struct quic_conn *qc = conn->handle.qc;
7005 struct qcc *qcc = qc->qcc;
7006
7007 TRACE_ENTER(QUIC_EV_CONN_SUB, qc);
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02007008
7009 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
7010 BUG_ON(qcc->subs && qcc->subs != es);
7011
7012 es->events |= event_type;
7013 qcc->subs = es;
7014
7015 if (event_type & SUB_RETRY_RECV)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007016 TRACE_DEVEL("subscribe(recv)", QUIC_EV_CONN_XPRTRECV, qc, qcc);
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02007017
7018 if (event_type & SUB_RETRY_SEND)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007019 TRACE_DEVEL("subscribe(send)", QUIC_EV_CONN_XPRTSEND, qc, qcc);
7020
7021 TRACE_LEAVE(QUIC_EV_CONN_SUB, qc);
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02007022
7023 return 0;
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01007024}
7025
7026/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
7027 * The <es> pointer is not allowed to differ from the one passed to the
7028 * subscribe() call. It always returns zero.
7029 */
7030static int quic_conn_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
7031{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007032 int ret;
7033 struct quic_conn *qc = conn->handle.qc;
7034 struct qcc *qcc = qc->qcc;
7035
7036 TRACE_ENTER(QUIC_EV_CONN_SUB, qc);
7037
7038 if (event_type & SUB_RETRY_RECV)
7039 TRACE_DEVEL("unsubscribe(recv)", QUIC_EV_CONN_XPRTRECV, qc, qcc);
7040 if (event_type & SUB_RETRY_SEND)
7041 TRACE_DEVEL("unsubscribe(send)", QUIC_EV_CONN_XPRTSEND, qc, qcc);
7042
7043 ret = conn_unsubscribe(conn, xprt_ctx, event_type, es);
7044
7045 TRACE_LEAVE(QUIC_EV_CONN_SUB, qc);
7046
7047 return ret;
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01007048}
7049
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01007050/* Store in <xprt_ctx> the context attached to <conn>.
7051 * Returns always 0.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007052 */
7053static int qc_conn_init(struct connection *conn, void **xprt_ctx)
7054{
Amaury Denoyelle7ca7c842021-12-22 18:20:38 +01007055 struct quic_conn *qc = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007056
7057 TRACE_ENTER(QUIC_EV_CONN_NEW, conn);
7058
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01007059 /* do not store the context if already set */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007060 if (*xprt_ctx)
7061 goto out;
7062
Willy Tarreau784b8682022-04-11 14:18:10 +02007063 *xprt_ctx = conn->handle.qc->xprt_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007064
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007065 out:
Frédéric Lécaillefde2a982021-12-27 15:12:09 +01007066 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007067
7068 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007069}
7070
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02007071/* Start the QUIC transport layer */
7072static int qc_xprt_start(struct connection *conn, void *ctx)
7073{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007074 int ret = 0;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02007075 struct quic_conn *qc;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02007076 struct ssl_sock_ctx *qctx = ctx;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02007077
Willy Tarreau784b8682022-04-11 14:18:10 +02007078 qc = conn->handle.qc;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007079 TRACE_ENTER(QUIC_EV_CONN_NEW, qc);
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01007080 if (qcc_install_app_ops(qc->qcc, qc->app_ops)) {
7081 TRACE_PROTO("Cannot install app layer", QUIC_EV_CONN_LPKT, qc);
Amaury Denoyelle5d774de2022-04-14 14:59:35 +02007082 /* prepare a CONNECTION_CLOSE frame */
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02007083 quic_set_connection_close(qc, quic_err_transport(QC_ERR_APPLICATION_ERROR));
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007084 goto out;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01007085 }
7086
7087 /* mux-quic can now be considered ready. */
7088 qc->mux_state = QC_MUX_READY;
7089
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02007090 tasklet_wakeup(qctx->wait_event.tasklet);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007091
7092 ret = 1;
7093 out:
7094 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
7095 return ret;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02007096}
7097
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02007098static struct ssl_sock_ctx *qc_get_ssl_sock_ctx(struct connection *conn)
7099{
Willy Tarreau784b8682022-04-11 14:18:10 +02007100 if (!conn || conn->xprt != xprt_get(XPRT_QUIC) || !conn->handle.qc || !conn->xprt_ctx)
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02007101 return NULL;
7102
Willy Tarreau784b8682022-04-11 14:18:10 +02007103 return conn->handle.qc->xprt_ctx;
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02007104}
7105
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007106/* transport-layer operations for QUIC connections. */
7107static struct xprt_ops ssl_quic = {
Amaury Denoyelle414cac52021-09-22 11:14:37 +02007108 .close = quic_close,
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01007109 .subscribe = quic_conn_subscribe,
7110 .unsubscribe = quic_conn_unsubscribe,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007111 .init = qc_conn_init,
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02007112 .start = qc_xprt_start,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007113 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
7114 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01007115 .get_alpn = ssl_sock_get_alpn,
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02007116 .get_ssl_sock_ctx = qc_get_ssl_sock_ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007117 .name = "QUIC",
7118};
7119
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007120static void __quic_conn_init(void)
7121{
7122 ha_quic_meth = BIO_meth_new(0x666, "ha QUIC methods");
7123 xprt_register(XPRT_QUIC, &ssl_quic);
7124}
Willy Tarreau79367f92022-04-25 19:18:24 +02007125INITCALL0(STG_REGISTER, __quic_conn_init);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007126
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007127static void __quic_conn_deinit(void)
7128{
7129 BIO_meth_free(ha_quic_meth);
7130}
Willy Tarreau79367f92022-04-25 19:18:24 +02007131REGISTER_POST_DEINIT(__quic_conn_deinit);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007132
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01007133/* Read all the QUIC packets found in <buf> from QUIC connection with <owner>
7134 * as owner calling <func> function.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05007135 * Return the number of bytes read if succeeded, -1 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007136 */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01007137struct task *quic_lstnr_dghdlr(struct task *t, void *ctx, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007138{
7139 unsigned char *pos;
7140 const unsigned char *end;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01007141 struct quic_dghdlr *dghdlr = ctx;
7142 struct quic_dgram *dgram;
7143 int first_pkt = 1;
Frédéric Lécaille1b0707f2022-06-30 11:28:56 +02007144 struct list *tasklist_head = NULL;
Willy Tarreauf9d4a7d2022-08-05 08:45:56 +02007145 int max_dgrams = global.tune.maxpollevents;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007146
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007147 TRACE_ENTER(QUIC_EV_CONN_LPKT);
7148
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007149 while ((dgram = MT_LIST_POP(&dghdlr->dgrams, typeof(dgram), mt_list))) {
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007150 pos = dgram->buf;
7151 end = pos + dgram->len;
7152 do {
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007153 struct quic_rx_packet *pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007154
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007155 pkt = pool_zalloc(pool_head_quic_rx_packet);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007156 if (!pkt) {
7157 TRACE_ERROR("RX packet allocation failed", QUIC_EV_CONN_LPKT);
7158 goto leave;
7159 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007160
Amaury Denoyelle23f908c2022-06-20 10:58:03 +02007161 LIST_INIT(&pkt->qc_rx_pkt_list);
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02007162 pkt->time_received = now_ms;
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007163 quic_rx_packet_refinc(pkt);
Frédéric Lécaille1b0707f2022-06-30 11:28:56 +02007164 qc_lstnr_pkt_rcv(pos, end, pkt, first_pkt, dgram, &tasklist_head);
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007165 first_pkt = 0;
7166 pos += pkt->len;
7167 quic_rx_packet_refdec(pkt);
Amaury Denoyelle23f908c2022-06-20 10:58:03 +02007168
7169 /* Free rejected packets */
7170 if (!pkt->refcnt) {
7171 BUG_ON(LIST_INLIST(&pkt->qc_rx_pkt_list));
7172 pool_free(pool_head_quic_rx_packet, pkt);
7173 }
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007174 } while (pos < end);
7175
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007176 /* Increasing the received bytes counter by the UDP datagram length
7177 * if this datagram could be associated to a connection.
7178 */
7179 if (dgram->qc)
7180 dgram->qc->rx.bytes += dgram->len;
Frédéric Lécaille841bf5e2022-02-02 09:41:27 +01007181
7182 /* Mark this datagram as consumed */
7183 HA_ATOMIC_STORE(&dgram->buf, NULL);
Willy Tarreauf9d4a7d2022-08-05 08:45:56 +02007184
7185 if (--max_dgrams <= 0)
7186 goto stop_here;
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007187 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007188
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007189 TRACE_LEAVE(QUIC_EV_CONN_LPKT);
7190
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01007191 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007192
Willy Tarreauf9d4a7d2022-08-05 08:45:56 +02007193 stop_here:
7194 /* too much work done at once, come back here later */
7195 if (!MT_LIST_ISEMPTY(&dghdlr->dgrams))
7196 tasklet_wakeup((struct tasklet *)t);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007197 leave:
7198 TRACE_LEAVE(QUIC_EV_CONN_LPKT);
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01007199 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007200}
7201
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05007202/* Retrieve the DCID from a QUIC datagram or packet with <buf> as first octet.
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007203 * Returns 1 if succeeded, 0 if not.
7204 */
Frédéric Lécaille6492e662022-05-17 17:23:16 +02007205int quic_get_dgram_dcid(unsigned char *buf, const unsigned char *end,
7206 unsigned char **dcid, size_t *dcid_len)
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007207{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007208 int ret = 0, long_header;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007209 size_t minlen, skip;
7210
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007211 TRACE_ENTER(QUIC_EV_CONN_RXPKT);
7212
7213 if (!(*buf & QUIC_PACKET_FIXED_BIT)) {
7214 TRACE_PROTO("fixed bit not set", QUIC_EV_CONN_RXPKT);
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007215 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007216 }
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007217
7218 long_header = *buf & QUIC_PACKET_LONG_HEADER_BIT;
Frédéric Lécaille36b28ed2022-05-09 18:08:13 +02007219 minlen = long_header ? QUIC_LONG_PACKET_MINLEN :
7220 QUIC_SHORT_PACKET_MINLEN + QUIC_HAP_CID_LEN + QUIC_TLS_TAG_LEN;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007221 skip = long_header ? QUIC_LONG_PACKET_DCID_OFF : QUIC_SHORT_PACKET_DCID_OFF;
Willy Tarreauaf5138f2022-08-05 10:09:32 +02007222 if (end - buf < minlen)
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007223 goto err;
7224
7225 buf += skip;
7226 *dcid_len = long_header ? *buf++ : QUIC_HAP_CID_LEN;
7227 if (*dcid_len > QUIC_CID_MAXLEN || end - buf <= *dcid_len)
7228 goto err;
7229
7230 *dcid = buf;
7231
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007232 ret = 1;
7233 leave:
7234 TRACE_LEAVE(QUIC_EV_CONN_RXPKT);
7235 return ret;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007236
7237 err:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007238 TRACE_PROTO("wrong datagram", QUIC_EV_CONN_RXPKT);
7239 goto leave;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007240}
7241
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02007242/* Notify the MUX layer if alive about an imminent close of <qc>. */
7243void qc_notify_close(struct quic_conn *qc)
7244{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007245 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
7246
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02007247 if (qc->flags & QUIC_FL_CONN_NOTIFY_CLOSE)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007248 goto leave;
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02007249
7250 qc->flags |= QUIC_FL_CONN_NOTIFY_CLOSE;
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02007251 /* wake up the MUX */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007252 if (qc->mux_state == QC_MUX_READY && qc->conn->mux->wake) {
7253 TRACE_STATE("connection closure notidfied to mux",
7254 QUIC_FL_CONN_NOTIFY_CLOSE, qc);
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02007255 qc->conn->mux->wake(qc->conn);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007256 }
7257 else
7258 TRACE_STATE("connection closure not notidfied to mux",
7259 QUIC_FL_CONN_NOTIFY_CLOSE, qc);
7260 leave:
7261 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02007262}
7263
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007264/*
7265 * Local variables:
7266 * c-indent-level: 8
7267 * c-basic-offset: 8
7268 * End:
7269 */