blob: 4cfd60f875abb9af6677c1b9f7d55fd42220ffca [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);
Willy Tarreau41e701e2022-09-08 15:12:59 +0200217struct 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;
Frédéric Lécaille26236f52022-08-31 17:48:53 +0200342 list_for_each_entry(frm, l, list) {
343 chunk_appendf(&trace_buf, " frm@%p", frm);
Frédéric Lécailleb823bb72022-03-31 20:26:18 +0200344 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaille26236f52022-08-31 17:48:53 +0200345 }
Frédéric Lécailleb823bb72022-03-31 20:26:18 +0200346 }
347 }
348
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200349 if (mask & (QUIC_EV_CONN_TXPKT|QUIC_EV_CONN_PAPKT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100350 const struct quic_tx_packet *pkt = a2;
351 const struct quic_enc_level *qel = a3;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100352 const ssize_t *room = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100353
354 if (qel) {
Frédéric Lécaille3c1b81f2022-09-08 09:52:14 +0200355 const struct quic_pktns *pktns = qel->pktns;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100356 chunk_appendf(&trace_buf, " qel=%c cwnd=%llu ppif=%lld pif=%llu "
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100357 "if=%llu pp=%u",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100358 quic_enc_level_char_from_qel(qel, qc),
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100359 (unsigned long long)qc->path->cwnd,
360 (unsigned long long)qc->path->prep_in_flight,
361 (unsigned long long)qc->path->in_flight,
362 (unsigned long long)pktns->tx.in_flight,
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100363 pktns->tx.pto_probe);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100364 }
365 if (pkt) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +0200366 const struct quic_frame *frm;
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100367 if (pkt->pn_node.key != (uint64_t)-1)
368 chunk_appendf(&trace_buf, " pn=%llu",(ull)pkt->pn_node.key);
Frédéric Lécaille26236f52022-08-31 17:48:53 +0200369 list_for_each_entry(frm, &pkt->frms, list) {
370 chunk_appendf(&trace_buf, " frm@%p", frm);
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100371 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaille26236f52022-08-31 17:48:53 +0200372 }
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100373 }
374
375 if (room) {
376 chunk_appendf(&trace_buf, " room=%lld", (long long)*room);
377 chunk_appendf(&trace_buf, " dcid.len=%llu scid.len=%llu",
378 (unsigned long long)qc->dcid.len, (unsigned long long)qc->scid.len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100379 }
380 }
381
Frédéric Lécaille00e24002022-02-18 17:13:45 +0100382 if (mask & QUIC_EV_CONN_IO_CB) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100383 const enum quic_handshake_state *state = a2;
384 const int *err = a3;
385
386 if (state)
387 chunk_appendf(&trace_buf, " state=%s", quic_hdshk_state_str(*state));
388 if (err)
389 chunk_appendf(&trace_buf, " err=%s", ssl_error_str(*err));
390 }
391
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +0100392 if (mask & (QUIC_EV_CONN_TRMHP|QUIC_EV_CONN_ELRMHP|QUIC_EV_CONN_SPKT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100393 const struct quic_rx_packet *pkt = a2;
394 const unsigned long *pktlen = a3;
395 const SSL *ssl = a4;
396
397 if (pkt) {
Frédéric Lécaille3dfd4c42022-04-05 15:29:14 +0200398 chunk_appendf(&trace_buf, " pkt@%p", pkt);
399 if (pkt->type == QUIC_PACKET_TYPE_SHORT && pkt->data)
400 chunk_appendf(&trace_buf, " kp=%d",
401 !!(*pkt->data & QUIC_PACKET_KEY_PHASE_BIT));
402 chunk_appendf(&trace_buf, " el=%c",
403 quic_packet_type_enc_level_char(pkt->type));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100404 if (pkt->pnl)
405 chunk_appendf(&trace_buf, " pnl=%u pn=%llu", pkt->pnl,
406 (unsigned long long)pkt->pn);
407 if (pkt->token_len)
408 chunk_appendf(&trace_buf, " toklen=%llu",
409 (unsigned long long)pkt->token_len);
410 if (pkt->aad_len)
411 chunk_appendf(&trace_buf, " aadlen=%llu",
412 (unsigned long long)pkt->aad_len);
413 chunk_appendf(&trace_buf, " flags=0x%x len=%llu",
414 pkt->flags, (unsigned long long)pkt->len);
415 }
416 if (pktlen)
417 chunk_appendf(&trace_buf, " (%ld)", *pktlen);
418 if (ssl) {
419 enum ssl_encryption_level_t level = SSL_quic_read_level(ssl);
420 chunk_appendf(&trace_buf, " el=%c",
421 quic_enc_level_char(ssl_to_quic_enc_level(level)));
422 }
423 }
424
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200425 if (mask & (QUIC_EV_CONN_RXPKT|QUIC_EV_CONN_PRSHPKT|QUIC_EV_CONN_SSLDATA)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100426 const struct quic_rx_packet *pkt = a2;
427 const struct quic_rx_crypto_frm *cf = a3;
428 const SSL *ssl = a4;
429
430 if (pkt)
431 chunk_appendf(&trace_buf, " pkt@%p el=%c pn=%llu", pkt,
432 quic_packet_type_enc_level_char(pkt->type),
433 (unsigned long long)pkt->pn);
434 if (cf)
435 chunk_appendf(&trace_buf, " cfoff=%llu cflen=%llu",
436 (unsigned long long)cf->offset_node.key,
437 (unsigned long long)cf->len);
438 if (ssl) {
439 enum ssl_encryption_level_t level = SSL_quic_read_level(ssl);
Frédéric Lécaille57e6e9e2021-09-23 18:10:56 +0200440 chunk_appendf(&trace_buf, " rel=%c",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100441 quic_enc_level_char(ssl_to_quic_enc_level(level)));
442 }
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100443
Amaury Denoyelle57e6db72022-07-13 15:07:56 +0200444 if (qc->err.code)
445 chunk_appendf(&trace_buf, " err_code=0x%llx", (ull)qc->err.code);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100446 }
447
448 if (mask & (QUIC_EV_CONN_PRSFRM|QUIC_EV_CONN_BFRM)) {
449 const struct quic_frame *frm = a2;
450
451 if (frm)
452 chunk_appendf(&trace_buf, " %s", quic_frame_type_string(frm->type));
453 }
454
455 if (mask & QUIC_EV_CONN_PHPKTS) {
456 const struct quic_enc_level *qel = a2;
457
458 if (qel) {
Frédéric Lécailledd51da52021-12-29 15:36:25 +0100459 const struct quic_pktns *pktns = qel->pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100460 chunk_appendf(&trace_buf,
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100461 " 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 +0100462 quic_enc_level_char_from_qel(qel, qc),
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200463 quic_hdshk_state_str(qc->state),
Frédéric Lécaille205e4f32022-03-28 17:38:27 +0200464 !!(qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED),
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100465 (unsigned long long)qc->path->cwnd,
466 (unsigned long long)qc->path->prep_in_flight,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100467 (unsigned long long)qc->path->in_flight,
Frédéric Lécaille466e9da2021-12-29 12:04:13 +0100468 (unsigned long long)pktns->tx.in_flight,
469 pktns->tx.pto_probe);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100470 }
471 }
472
Frédéric Lécaillef63921f2020-12-18 09:48:20 +0100473 if (mask & QUIC_EV_CONN_ENCPKT) {
474 const struct enc_debug_info *edi = a2;
475
476 if (edi)
477 chunk_appendf(&trace_buf,
478 " payload=@%p payload_len=%llu"
479 " aad=@%p aad_len=%llu pn=%llu",
480 edi->payload, (unsigned long long)edi->payload_len,
481 edi->aad, (unsigned long long)edi->aad_len,
482 (unsigned long long)edi->pn);
483 }
484
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100485 if (mask & QUIC_EV_CONN_RMHP) {
486 const struct quic_rx_packet *pkt = a2;
487
488 if (pkt) {
489 const int *ret = a3;
490
491 chunk_appendf(&trace_buf, " pkt@%p", pkt);
492 if (ret && *ret)
493 chunk_appendf(&trace_buf, " pnl=%u pn=%llu",
494 pkt->pnl, (unsigned long long)pkt->pn);
495 }
496 }
497
498 if (mask & QUIC_EV_CONN_PRSAFRM) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +0200499 const struct quic_frame *frm = a2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100500 const unsigned long *val1 = a3;
501 const unsigned long *val2 = a4;
502
Frédéric Lécaille2f163482022-08-19 09:23:15 +0200503 if (frm) {
504 chunk_appendf(&trace_buf, " frm@%p", frm);
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100505 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaille2f163482022-08-19 09:23:15 +0200506 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100507 if (val1)
508 chunk_appendf(&trace_buf, " %lu", *val1);
509 if (val2)
510 chunk_appendf(&trace_buf, "..%lu", *val2);
511 }
512
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100513 if (mask & QUIC_EV_CONN_ACKSTRM) {
514 const struct quic_stream *s = a2;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +0200515 const struct qc_stream_desc *stream = a3;
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100516
517 if (s)
518 chunk_appendf(&trace_buf, " off=%llu len=%llu", (ull)s->offset.key, (ull)s->len);
Amaury Denoyelle7272cd72022-03-29 15:15:54 +0200519 if (stream)
520 chunk_appendf(&trace_buf, " ack_offset=%llu", (ull)stream->ack_offset);
Frédéric Lécaillece69cbc2022-03-22 12:45:33 +0100521 }
522
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100523 if (mask & QUIC_EV_CONN_RTTUPDT) {
524 const unsigned int *rtt_sample = a2;
525 const unsigned int *ack_delay = a3;
526 const struct quic_loss *ql = a4;
527
528 if (rtt_sample)
529 chunk_appendf(&trace_buf, " rtt_sample=%ums", *rtt_sample);
530 if (ack_delay)
531 chunk_appendf(&trace_buf, " ack_delay=%ums", *ack_delay);
532 if (ql)
533 chunk_appendf(&trace_buf,
534 " srtt=%ums rttvar=%ums min_rtt=%ums",
535 ql->srtt >> 3, ql->rtt_var >> 2, ql->rtt_min);
536 }
537 if (mask & QUIC_EV_CONN_CC) {
538 const struct quic_cc_event *ev = a2;
539 const struct quic_cc *cc = a3;
540
541 if (a2)
542 quic_cc_event_trace(&trace_buf, ev);
543 if (a3)
544 quic_cc_state_trace(&trace_buf, cc);
545 }
546
547 if (mask & QUIC_EV_CONN_PKTLOSS) {
548 const struct quic_pktns *pktns = a2;
549 const struct list *lost_pkts = a3;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100550
551 if (pktns) {
552 chunk_appendf(&trace_buf, " pktns=%s",
553 pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
554 pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H");
555 if (pktns->tx.loss_time)
556 chunk_appendf(&trace_buf, " loss_time=%dms",
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100557 TICKS_TO_MS(tick_remain(now_ms, pktns->tx.loss_time)));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100558 }
559 if (lost_pkts && !LIST_ISEMPTY(lost_pkts)) {
560 struct quic_tx_packet *pkt;
561
562 chunk_appendf(&trace_buf, " lost_pkts:");
563 list_for_each_entry(pkt, lost_pkts, list)
564 chunk_appendf(&trace_buf, " %lu", (unsigned long)pkt->pn_node.key);
565 }
566 }
567
568 if (mask & (QUIC_EV_CONN_STIMER|QUIC_EV_CONN_PTIMER|QUIC_EV_CONN_SPTO)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100569 const struct quic_pktns *pktns = a2;
570 const int *duration = a3;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100571 const uint64_t *ifae_pkts = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100572
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100573 if (ifae_pkts)
574 chunk_appendf(&trace_buf, " ifae_pkts=%llu",
575 (unsigned long long)*ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100576 if (pktns) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100577 chunk_appendf(&trace_buf, " pktns=%s pp=%d",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100578 pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100579 pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H",
580 pktns->tx.pto_probe);
Frédéric Lécaille22cfd832021-12-27 17:42:51 +0100581 if (mask & (QUIC_EV_CONN_STIMER|QUIC_EV_CONN_SPTO)) {
582 if (pktns->tx.in_flight)
583 chunk_appendf(&trace_buf, " if=%llu", (ull)pktns->tx.in_flight);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100584 if (pktns->tx.loss_time)
585 chunk_appendf(&trace_buf, " loss_time=%dms",
586 TICKS_TO_MS(pktns->tx.loss_time - now_ms));
587 }
588 if (mask & QUIC_EV_CONN_SPTO) {
589 if (pktns->tx.time_of_last_eliciting)
590 chunk_appendf(&trace_buf, " tole=%dms",
591 TICKS_TO_MS(pktns->tx.time_of_last_eliciting - now_ms));
592 if (duration)
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100593 chunk_appendf(&trace_buf, " dur=%dms", TICKS_TO_MS(*duration));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100594 }
595 }
596
Frédéric Lécaille03235d72022-03-30 14:36:40 +0200597 if (!(mask & (QUIC_EV_CONN_SPTO|QUIC_EV_CONN_PTIMER)) && qc->timer_task) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100598 chunk_appendf(&trace_buf,
599 " expire=%dms", TICKS_TO_MS(qc->timer - now_ms));
600 }
601 }
602
603 if (mask & QUIC_EV_CONN_SPPKTS) {
604 const struct quic_tx_packet *pkt = a2;
605
Frédéric Lécaille8ecb7362022-08-04 12:00:00 +0200606 chunk_appendf(&trace_buf, " cwnd=%llu ppif=%llu pif=%llu",
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100607 (unsigned long long)qc->path->cwnd,
608 (unsigned long long)qc->path->prep_in_flight,
609 (unsigned long long)qc->path->in_flight);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100610 if (pkt) {
Frédéric Lécaille449804e2022-09-02 22:16:10 +0200611 const struct quic_frame *frm;
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100612 chunk_appendf(&trace_buf, " pn=%lu(%s) iflen=%llu",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100613 (unsigned long)pkt->pn_node.key,
614 pkt->pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
615 pkt->pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H",
Frédéric Lécaille0371cd52021-12-13 12:30:54 +0100616 (unsigned long long)pkt->in_flight_len);
Frédéric Lécaille3a9b9442022-08-30 15:25:47 +0200617 chunk_appendf(&trace_buf, " rx.bytes=%llu tx.bytes=%llu",
618 (unsigned long long)qc->rx.bytes,
619 (unsigned long long)qc->tx.bytes);
Frédéric Lécaille449804e2022-09-02 22:16:10 +0200620 list_for_each_entry(frm, &pkt->frms, list) {
621 chunk_appendf(&trace_buf, " frm@%p", frm);
622 chunk_frm_appendf(&trace_buf, frm);
623 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100624 }
625 }
Frédéric Lécaille47c433f2020-12-10 17:03:11 +0100626
627 if (mask & QUIC_EV_CONN_SSLALERT) {
628 const uint8_t *alert = a2;
629 const enum ssl_encryption_level_t *level = a3;
630
631 if (alert)
632 chunk_appendf(&trace_buf, " alert=0x%02x", *alert);
633 if (level)
634 chunk_appendf(&trace_buf, " el=%c",
635 quic_enc_level_char(ssl_to_quic_enc_level(*level)));
636 }
Frédéric Lécailleea604992020-12-24 13:01:37 +0100637
638 if (mask & QUIC_EV_CONN_BCFRMS) {
639 const size_t *sz1 = a2;
640 const size_t *sz2 = a3;
641 const size_t *sz3 = a4;
642
643 if (sz1)
644 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz1);
645 if (sz2)
646 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz2);
647 if (sz3)
648 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz3);
649 }
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100650
651 if (mask & QUIC_EV_CONN_PSTRM) {
652 const struct quic_frame *frm = a2;
Frédéric Lécaille577fe482021-01-11 15:10:06 +0100653
Frédéric Lécaille26236f52022-08-31 17:48:53 +0200654 if (frm) {
655 chunk_appendf(&trace_buf, " frm@%p", frm);
Frédéric Lécaille1ede8232021-12-23 14:11:25 +0100656 chunk_frm_appendf(&trace_buf, frm);
Frédéric Lécaille26236f52022-08-31 17:48:53 +0200657 }
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100658 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100659 }
660 if (mask & QUIC_EV_CONN_LPKT) {
661 const struct quic_rx_packet *pkt = a2;
Frédéric Lécaille865b0782021-09-23 07:33:20 +0200662 const uint64_t *len = a3;
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200663 const struct quic_version *ver = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100664
Frédéric Lécaille8678eb02021-12-16 18:03:52 +0100665 if (pkt) {
666 chunk_appendf(&trace_buf, " pkt@%p type=0x%02x %s",
667 pkt, pkt->type, qc_pkt_long(pkt) ? "long" : "short");
668 if (pkt->pn_node.key != (uint64_t)-1)
669 chunk_appendf(&trace_buf, " pn=%llu", pkt->pn_node.key);
670 }
671
Frédéric Lécaille865b0782021-09-23 07:33:20 +0200672 if (len)
673 chunk_appendf(&trace_buf, " len=%llu", (ull)*len);
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200674
675 if (ver)
676 chunk_appendf(&trace_buf, " ver=0x%08x", ver->num);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100677 }
678
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +0200679 if (mask & QUIC_EV_STATELESS_RST) {
680 const struct quic_cid *cid = a2;
681
682 if (cid)
683 quic_cid_dump(&trace_buf, cid);
684 }
685
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100686}
687
688/* Returns 1 if the peer has validated <qc> QUIC connection address, 0 if not. */
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100689static inline int quic_peer_validated_addr(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100690{
Frédéric Lécaille67f47d02021-08-19 15:19:09 +0200691 struct quic_pktns *hdshk_pktns, *app_pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100692
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +0100693 if (!qc_is_listener(qc))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100694 return 1;
695
Frédéric Lécaille67f47d02021-08-19 15:19:09 +0200696 hdshk_pktns = qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns;
697 app_pktns = qc->els[QUIC_TLS_ENC_LEVEL_APP].pktns;
Frédéric Lécaille205e4f32022-03-28 17:38:27 +0200698 if ((hdshk_pktns->flags & QUIC_FL_PKTNS_PKT_RECEIVED) ||
699 (app_pktns->flags & QUIC_FL_PKTNS_PKT_RECEIVED) ||
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200700 qc->state >= QUIC_HS_ST_COMPLETE)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100701 return 1;
702
703 return 0;
704}
705
706/* Set the timer attached to the QUIC connection with <ctx> as I/O handler and used for
707 * both loss detection and PTO and schedule the task assiated to this timer if needed.
708 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100709static inline void qc_set_timer(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100710{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100711 struct quic_pktns *pktns;
712 unsigned int pto;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +0200713 int handshake_complete;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100714
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100715 TRACE_ENTER(QUIC_EV_CONN_STIMER, qc,
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100716 NULL, NULL, &qc->path->ifae_pkts);
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100717
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100718 pktns = quic_loss_pktns(qc);
719 if (tick_isset(pktns->tx.loss_time)) {
720 qc->timer = pktns->tx.loss_time;
721 goto out;
722 }
723
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +0100724 /* anti-amplification: the timer must be
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100725 * cancelled for a server which reached the anti-amplification limit.
726 */
Frédéric Lécaille078634d2022-01-04 16:59:42 +0100727 if (!quic_peer_validated_addr(qc) &&
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200728 (qc->flags & QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100729 TRACE_PROTO("anti-amplification reached", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +0100730 qc->timer = TICK_ETERNITY;
731 goto out;
732 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100733
Amaury Denoyellee81fed92021-12-22 11:06:34 +0100734 if (!qc->path->ifae_pkts && quic_peer_validated_addr(qc)) {
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100735 TRACE_PROTO("timer cancellation", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100736 /* Timer cancellation. */
737 qc->timer = TICK_ETERNITY;
738 goto out;
739 }
740
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200741 handshake_complete = qc->state >= QUIC_HS_ST_COMPLETE;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +0200742 pktns = quic_pto_pktns(qc, handshake_complete, &pto);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100743 if (tick_isset(pto))
744 qc->timer = pto;
745 out:
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100746 if (qc->timer_task && qc->timer != TICK_ETERNITY) {
Frédéric Lécailleaaf1f192022-03-22 15:37:41 +0100747 if (tick_is_expired(qc->timer, now_ms)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200748 TRACE_DEVEL("wakeup asap timer task", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100749 task_wakeup(qc->timer_task, TASK_WOKEN_MSG);
Frédéric Lécailleaaf1f192022-03-22 15:37:41 +0100750 }
751 else {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200752 TRACE_DEVEL("timer task scheduling", QUIC_EV_CONN_STIMER, qc);
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100753 task_schedule(qc->timer_task, qc->timer);
Frédéric Lécailleaaf1f192022-03-22 15:37:41 +0100754 }
Frédéric Lécaille5757b4a2022-02-16 14:46:17 +0100755 }
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +0100756 TRACE_LEAVE(QUIC_EV_CONN_STIMER, qc, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100757}
758
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100759/* Derive new keys and ivs required for Key Update feature for <qc> QUIC
760 * connection.
761 * Return 1 if succeeded, 0 if not.
762 */
763static int quic_tls_key_update(struct quic_conn *qc)
764{
765 struct quic_tls_ctx *tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
766 struct quic_tls_secrets *rx, *tx;
767 struct quic_tls_kp *nxt_rx = &qc->ku.nxt_rx;
768 struct quic_tls_kp *nxt_tx = &qc->ku.nxt_tx;
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200769 const struct quic_version *ver =
770 qc->negotiated_version ? qc->negotiated_version : qc->original_version;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200771 int ret = 0;
772
773 TRACE_ENTER(QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100774
775 tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
776 rx = &tls_ctx->rx;
777 tx = &tls_ctx->tx;
778 nxt_rx = &qc->ku.nxt_rx;
779 nxt_tx = &qc->ku.nxt_tx;
780
781 /* Prepare new RX secrets */
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200782 if (!quic_tls_sec_update(rx->md, ver, nxt_rx->secret, nxt_rx->secretlen,
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100783 rx->secret, rx->secretlen)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200784 TRACE_ERROR("New RX secret update failed", QUIC_EV_CONN_RWSEC, qc);
785 goto leave;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100786 }
787
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200788 if (!quic_tls_derive_keys(rx->aead, NULL, rx->md, ver,
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100789 nxt_rx->key, nxt_rx->keylen,
790 nxt_rx->iv, nxt_rx->ivlen, NULL, 0,
791 nxt_rx->secret, nxt_rx->secretlen)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200792 TRACE_ERROR("New RX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
793 goto leave;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100794 }
795
796 /* Prepare new TX secrets */
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200797 if (!quic_tls_sec_update(tx->md, ver, nxt_tx->secret, nxt_tx->secretlen,
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100798 tx->secret, tx->secretlen)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200799 TRACE_ERROR("New TX secret update failed", QUIC_EV_CONN_RWSEC, qc);
800 goto leave;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100801 }
802
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200803 if (!quic_tls_derive_keys(tx->aead, NULL, tx->md, ver,
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100804 nxt_tx->key, nxt_tx->keylen,
805 nxt_tx->iv, nxt_tx->ivlen, NULL, 0,
806 nxt_tx->secret, nxt_tx->secretlen)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200807 TRACE_ERROR("New TX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
808 goto leave;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100809 }
810
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200811 if (nxt_rx->ctx) {
812 EVP_CIPHER_CTX_free(nxt_rx->ctx);
813 nxt_rx->ctx = NULL;
814 }
815
816 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 +0200817 TRACE_ERROR("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
818 goto leave;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200819 }
820
821 if (nxt_tx->ctx) {
822 EVP_CIPHER_CTX_free(nxt_tx->ctx);
823 nxt_tx->ctx = NULL;
824 }
825
826 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 +0200827 TRACE_ERROR("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
828 goto leave;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200829 }
830
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200831 ret = 1;
832 leave:
833 TRACE_LEAVE(QUIC_EV_CONN_RWSEC, qc);
834 return ret;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100835}
836
837/* Rotate the Key Update information for <qc> QUIC connection.
838 * Must be used after having updated them.
839 * Always succeeds.
840 */
841static void quic_tls_rotate_keys(struct quic_conn *qc)
842{
843 struct quic_tls_ctx *tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
844 unsigned char *curr_secret, *curr_iv, *curr_key;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200845 EVP_CIPHER_CTX *curr_ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100846
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200847 TRACE_ENTER(QUIC_EV_CONN_RXPKT, qc);
848
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100849 /* Rotate the RX secrets */
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200850 curr_ctx = tls_ctx->rx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100851 curr_secret = tls_ctx->rx.secret;
852 curr_iv = tls_ctx->rx.iv;
853 curr_key = tls_ctx->rx.key;
854
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200855 tls_ctx->rx.ctx = qc->ku.nxt_rx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100856 tls_ctx->rx.secret = qc->ku.nxt_rx.secret;
857 tls_ctx->rx.iv = qc->ku.nxt_rx.iv;
858 tls_ctx->rx.key = qc->ku.nxt_rx.key;
859
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200860 qc->ku.nxt_rx.ctx = qc->ku.prv_rx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100861 qc->ku.nxt_rx.secret = qc->ku.prv_rx.secret;
862 qc->ku.nxt_rx.iv = qc->ku.prv_rx.iv;
863 qc->ku.nxt_rx.key = qc->ku.prv_rx.key;
864
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200865 qc->ku.prv_rx.ctx = curr_ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100866 qc->ku.prv_rx.secret = curr_secret;
867 qc->ku.prv_rx.iv = curr_iv;
868 qc->ku.prv_rx.key = curr_key;
869 qc->ku.prv_rx.pn = tls_ctx->rx.pn;
870
871 /* Update the TX secrets */
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200872 curr_ctx = tls_ctx->tx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100873 curr_secret = tls_ctx->tx.secret;
874 curr_iv = tls_ctx->tx.iv;
875 curr_key = tls_ctx->tx.key;
876
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200877 tls_ctx->tx.ctx = qc->ku.nxt_tx.ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100878 tls_ctx->tx.secret = qc->ku.nxt_tx.secret;
879 tls_ctx->tx.iv = qc->ku.nxt_tx.iv;
880 tls_ctx->tx.key = qc->ku.nxt_tx.key;
881
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +0200882 qc->ku.nxt_tx.ctx = curr_ctx;
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100883 qc->ku.nxt_tx.secret = curr_secret;
884 qc->ku.nxt_tx.iv = curr_iv;
885 qc->ku.nxt_tx.key = curr_key;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200886
887 TRACE_LEAVE(QUIC_EV_CONN_RXPKT, qc);
Frédéric Lécaillea7973a62021-11-30 11:10:36 +0100888}
889
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200890/* returns 0 on error, 1 on success */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100891int ha_quic_set_encryption_secrets(SSL *ssl, enum ssl_encryption_level_t level,
892 const uint8_t *read_secret,
893 const uint8_t *write_secret, size_t secret_len)
894{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100895 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
896 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 +0100897 const SSL_CIPHER *cipher = SSL_get_current_cipher(ssl);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100898 struct quic_tls_secrets *rx, *tx;
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200899 const struct quic_version *ver =
900 qc->negotiated_version ? qc->negotiated_version : qc->original_version;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200901 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100902
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100903 TRACE_ENTER(QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100904 BUG_ON(secret_len > QUIC_TLS_SECRET_LEN);
Frédéric Lécaillefc790062022-03-28 17:10:31 +0200905 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100906 TRACE_PROTO("CC required", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaillef44d19e2022-03-26 12:22:41 +0100907 goto no_secret;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100908 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100909
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100910 if (!quic_tls_ctx_keys_alloc(tls_ctx)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200911 TRACE_ERROR("keys allocation failed", QUIC_EV_CONN_RWSEC, qc);
912 goto leave;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +0100913 }
914
915 rx = &tls_ctx->rx;
916 tx = &tls_ctx->tx;
917
918 rx->aead = tx->aead = tls_aead(cipher);
919 rx->md = tx->md = tls_md(cipher);
920 rx->hp = tx->hp = tls_hp(cipher);
921
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200922 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 +0100923 rx->iv, rx->ivlen, rx->hp_key, sizeof rx->hp_key,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100924 read_secret, secret_len)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200925 TRACE_ERROR("RX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
926 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100927 }
928
Frédéric Lécaillef4605742022-04-05 10:28:29 +0200929 if (!quic_tls_rx_ctx_init(&rx->ctx, rx->aead, rx->key)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200930 TRACE_ERROR("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
931 goto leave;
Frédéric Lécaillef4605742022-04-05 10:28:29 +0200932 }
933
Frédéric Lécaille86a53c52022-08-19 18:18:13 +0200934 if (!quic_tls_dec_aes_ctx_init(&rx->hp_ctx, rx->hp, rx->hp_key)) {
935 TRACE_ERROR("could not initial RX TLS cipher context for HP", QUIC_EV_CONN_RWSEC, qc);
936 goto leave;
937 }
938
Frédéric Lécaille61b851d2022-01-28 21:38:45 +0100939 /* Enqueue this connection asap if we could derive O-RTT secrets as
940 * listener. Note that a listener derives only RX secrets for this
941 * level.
942 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200943 if (qc_is_listener(qc) && level == ssl_encryption_early_data) {
944 TRACE_DEVEL("pushing connection into accept queue", QUIC_EV_CONN_RWSEC, qc);
Frédéric Lécaille61b851d2022-01-28 21:38:45 +0100945 quic_accept_push_qc(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200946 }
Frédéric Lécaille4015cbb2021-12-14 19:29:34 +0100947
948 if (!write_secret)
Frédéric Lécailleee4508d2022-02-14 17:54:04 +0100949 goto out;
Frédéric Lécaille4015cbb2021-12-14 19:29:34 +0100950
Frédéric Lécaille301425b2022-06-14 17:40:39 +0200951 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 +0100952 tx->iv, tx->ivlen, tx->hp_key, sizeof tx->hp_key,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100953 write_secret, secret_len)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200954 TRACE_ERROR("TX key derivation failed", QUIC_EV_CONN_RWSEC, qc);
955 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100956 }
957
Frédéric Lécaillef4605742022-04-05 10:28:29 +0200958 if (!quic_tls_tx_ctx_init(&tx->ctx, tx->aead, tx->key)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200959 TRACE_ERROR("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc);
960 goto leave;
Frédéric Lécaillef4605742022-04-05 10:28:29 +0200961 }
962
Frédéric Lécaille86a53c52022-08-19 18:18:13 +0200963 if (!quic_tls_enc_aes_ctx_init(&tx->hp_ctx, tx->hp, tx->hp_key)) {
964 TRACE_ERROR("could not initial TX TLS cipher context for HP", QUIC_EV_CONN_RWSEC, qc);
965 goto leave;
966 }
967
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100968 if (level == ssl_encryption_application) {
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100969 struct quic_tls_kp *prv_rx = &qc->ku.prv_rx;
970 struct quic_tls_kp *nxt_rx = &qc->ku.nxt_rx;
971 struct quic_tls_kp *nxt_tx = &qc->ku.nxt_tx;
972
Frédéric Lécaille96fd1632022-04-01 11:21:47 +0200973 /* These secrets must be stored only for Application encryption level */
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100974 if (!(rx->secret = pool_alloc(pool_head_quic_tls_secret)) ||
975 !(tx->secret = pool_alloc(pool_head_quic_tls_secret))) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200976 TRACE_ERROR("Could not allocate secrete keys", QUIC_EV_CONN_RWSEC, qc);
977 goto leave;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100978 }
979
980 memcpy(rx->secret, read_secret, secret_len);
981 rx->secretlen = secret_len;
982 memcpy(tx->secret, write_secret, secret_len);
983 tx->secretlen = secret_len;
984 /* Initialize all the secret keys lengths */
985 prv_rx->secretlen = nxt_rx->secretlen = nxt_tx->secretlen = secret_len;
986 /* Prepare the next key update */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200987 if (!quic_tls_key_update(qc)) {
988 // trace already emitted by function above
989 goto leave;
990 }
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +0100991 }
Frédéric Lécailleee4508d2022-02-14 17:54:04 +0100992
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +0100993 out:
Frédéric Lécaillebd242082022-02-25 17:17:59 +0100994 tls_ctx->flags |= QUIC_FL_TLS_SECRETS_SET;
Frédéric Lécaillef44d19e2022-03-26 12:22:41 +0100995 no_secret:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200996 ret = 1;
997 leave:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100998 TRACE_LEAVE(QUIC_EV_CONN_RWSEC, qc, &level);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +0200999 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001000}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001001
1002/* This function copies the CRYPTO data provided by the TLS stack found at <data>
1003 * with <len> as size in CRYPTO buffers dedicated to store the information about
1004 * outgoing CRYPTO frames so that to be able to replay the CRYPTO data streams.
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001005 * It fails (returns 0) only if it could not managed to allocate enough CRYPTO
1006 * buffers to store all the data.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001007 * Note that CRYPTO data may exist at any encryption level except at 0-RTT.
1008 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001009static int quic_crypto_data_cpy(struct quic_conn *qc, struct quic_enc_level *qel,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001010 const unsigned char *data, size_t len)
1011{
1012 struct quic_crypto_buf **qcb;
1013 /* The remaining byte to store in CRYPTO buffers. */
1014 size_t cf_offset, cf_len, *nb_buf;
1015 unsigned char *pos;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001016 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001017
1018 nb_buf = &qel->tx.crypto.nb_buf;
1019 qcb = &qel->tx.crypto.bufs[*nb_buf - 1];
1020 cf_offset = (*nb_buf - 1) * QUIC_CRYPTO_BUF_SZ + (*qcb)->sz;
1021 cf_len = len;
1022
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001023 TRACE_ENTER(QUIC_EV_CONN_ADDDATA, qc);
1024
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001025 while (len) {
1026 size_t to_copy, room;
1027
1028 pos = (*qcb)->data + (*qcb)->sz;
1029 room = QUIC_CRYPTO_BUF_SZ - (*qcb)->sz;
1030 to_copy = len > room ? room : len;
1031 if (to_copy) {
1032 memcpy(pos, data, to_copy);
1033 /* Increment the total size of this CRYPTO buffers by <to_copy>. */
1034 qel->tx.crypto.sz += to_copy;
1035 (*qcb)->sz += to_copy;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001036 len -= to_copy;
1037 data += to_copy;
1038 }
1039 else {
1040 struct quic_crypto_buf **tmp;
1041
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001042 // FIXME: realloc!
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001043 tmp = realloc(qel->tx.crypto.bufs,
1044 (*nb_buf + 1) * sizeof *qel->tx.crypto.bufs);
1045 if (tmp) {
1046 qel->tx.crypto.bufs = tmp;
1047 qcb = &qel->tx.crypto.bufs[*nb_buf];
1048 *qcb = pool_alloc(pool_head_quic_crypto_buf);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001049 if (!*qcb) {
1050 TRACE_ERROR("Could not allocate crypto buf", QUIC_EV_CONN_ADDDATA, qc);
1051 goto leave;
1052 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001053
1054 (*qcb)->sz = 0;
1055 ++*nb_buf;
1056 }
1057 else {
1058 break;
1059 }
1060 }
1061 }
1062
1063 /* Allocate a TX CRYPTO frame only if all the CRYPTO data
1064 * have been buffered.
1065 */
1066 if (!len) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02001067 struct quic_frame *frm;
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +01001068 struct quic_frame *found = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001069
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +01001070 /* There is at most one CRYPTO frame in this packet number
1071 * space. Let's look for it.
1072 */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001073 list_for_each_entry(frm, &qel->pktns->tx.frms, list) {
Frédéric Lécaille81cd3c82022-01-10 18:31:07 +01001074 if (frm->type != QUIC_FT_CRYPTO)
1075 continue;
1076
1077 /* Found */
1078 found = frm;
1079 break;
1080 }
1081
1082 if (found) {
1083 found->crypto.len += cf_len;
1084 }
1085 else {
Frédéric Lécailleb9171912022-04-21 17:32:10 +02001086 frm = pool_zalloc(pool_head_quic_frame);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001087 if (!frm) {
1088 TRACE_ERROR("Could not allocate quic frame", QUIC_EV_CONN_ADDDATA, qc);
1089 goto leave;
1090 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001091
Frédéric Lécailleb9171912022-04-21 17:32:10 +02001092 LIST_INIT(&frm->reflist);
Frédéric Lécailled4ecf942022-01-04 23:15:40 +01001093 frm->type = QUIC_FT_CRYPTO;
1094 frm->crypto.offset = cf_offset;
1095 frm->crypto.len = cf_len;
1096 frm->crypto.qel = qel;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001097 LIST_APPEND(&qel->pktns->tx.frms, &frm->list);
Frédéric Lécailled4ecf942022-01-04 23:15:40 +01001098 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001099 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001100 ret = len == 0;
1101 leave:
1102 TRACE_LEAVE(QUIC_EV_CONN_ADDDATA, qc);
1103 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001104}
1105
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001106/* Prepare the emission of CONNECTION_CLOSE with error <err>. All send/receive
1107 * activity for <qc> will be interrupted.
1108 */
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02001109void quic_set_connection_close(struct quic_conn *qc, const struct quic_err err)
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001110{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001111 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001112 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001113 goto leave;
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001114
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001115 TRACE_STATE("setting immediate close", QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001116 qc->flags |= QUIC_FL_CONN_IMMEDIATE_CLOSE;
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02001117 qc->err.code = err.code;
1118 qc->err.app = err.app;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001119 leave:
1120 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001121}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001122
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01001123/* Set <alert> TLS alert as QUIC CRYPTO_ERROR error */
1124void quic_set_tls_alert(struct quic_conn *qc, int alert)
1125{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001126 TRACE_ENTER(QUIC_EV_CONN_SSLALERT, qc);
1127
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02001128 if (!(qc->flags & QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED)) {
1129 qc->flags |= QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001130 TRACE_DEVEL("dec half open counter", QUIC_EV_CONN_SSLALERT, qc);
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02001131 HA_ATOMIC_DEC(&qc->prx_counters->half_open_conn);
1132 }
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02001133 quic_set_connection_close(qc, quic_err_tls(alert));
Amaury Denoyelle9fab9fd2022-05-20 15:04:38 +02001134 qc->flags |= QUIC_FL_CONN_TLS_ALERT;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001135 TRACE_STATE("Alert set", QUIC_EV_CONN_SSLALERT, qc);
1136
1137 TRACE_LEAVE(QUIC_EV_CONN_SSLALERT, qc);
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01001138}
1139
Frédéric Lécailleb0bd62d2021-12-14 19:34:08 +01001140/* Set the application for <qc> QUIC connection.
1141 * Return 1 if succeeded, 0 if not.
1142 */
1143int quic_set_app_ops(struct quic_conn *qc, const unsigned char *alpn, size_t alpn_len)
1144{
Amaury Denoyelle4b40f192022-01-19 11:29:25 +01001145 if (alpn_len >= 2 && memcmp(alpn, "h3", 2) == 0)
1146 qc->app_ops = &h3_ops;
1147 else if (alpn_len >= 10 && memcmp(alpn, "hq-interop", 10) == 0)
1148 qc->app_ops = &hq_interop_ops;
Frédéric Lécailleb0bd62d2021-12-14 19:34:08 +01001149 else
1150 return 0;
1151
Frédéric Lécailleb0bd62d2021-12-14 19:34:08 +01001152 return 1;
1153}
1154
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001155/* ->add_handshake_data QUIC TLS callback used by the QUIC TLS stack when it
1156 * wants to provide the QUIC layer with CRYPTO data.
1157 * Returns 1 if succeeded, 0 if not.
1158 */
1159int ha_quic_add_handshake_data(SSL *ssl, enum ssl_encryption_level_t level,
1160 const uint8_t *data, size_t len)
1161{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001162 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001163 enum quic_tls_enc_level tel;
1164 struct quic_enc_level *qel;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001165 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001166
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001167 qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
1168 TRACE_ENTER(QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001169
Frédéric Lécaillefc790062022-03-28 17:10:31 +02001170 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001171 TRACE_PROTO("CC required", QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01001172 goto out;
1173 }
1174
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001175 tel = ssl_to_quic_enc_level(level);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001176 if (tel == -1) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001177 TRACE_ERROR("Wrong encryption level", QUIC_EV_CONN_ADDDATA, qc);
1178 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001179 }
1180
Frédéric Lécaille3916ca12022-02-02 14:09:05 +01001181 qel = &qc->els[tel];
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001182 if (!quic_crypto_data_cpy(qc, qel, data, len)) {
1183 TRACE_ERROR("Could not bufferize", QUIC_EV_CONN_ADDDATA, qc);
1184 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001185 }
1186
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001187 TRACE_DEVEL("CRYPTO data buffered", QUIC_EV_CONN_ADDDATA,
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001188 qc, &level, &len);
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01001189 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001190 ret = 1;
1191 leave:
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001192 TRACE_LEAVE(QUIC_EV_CONN_ADDDATA, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001193 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001194}
1195
1196int ha_quic_flush_flight(SSL *ssl)
1197{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001198 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001199
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001200 TRACE_ENTER(QUIC_EV_CONN_FFLIGHT, qc);
1201 TRACE_LEAVE(QUIC_EV_CONN_FFLIGHT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001202
1203 return 1;
1204}
1205
1206int ha_quic_send_alert(SSL *ssl, enum ssl_encryption_level_t level, uint8_t alert)
1207{
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001208 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001209
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001210 TRACE_ENTER(QUIC_EV_CONN_SSLALERT, qc);
1211
1212 TRACE_PROTO("Received TLS alert", QUIC_EV_CONN_SSLALERT, qc, &alert, &level);
1213
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001214 quic_set_tls_alert(qc, alert);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001215 TRACE_LEAVE(QUIC_EV_CONN_SSLALERT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001216 return 1;
1217}
1218
1219/* QUIC TLS methods */
1220static SSL_QUIC_METHOD ha_quic_method = {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001221 .set_encryption_secrets = ha_quic_set_encryption_secrets,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001222 .add_handshake_data = ha_quic_add_handshake_data,
1223 .flush_flight = ha_quic_flush_flight,
1224 .send_alert = ha_quic_send_alert,
1225};
1226
1227/* Initialize the TLS context of a listener with <bind_conf> as configuration.
1228 * Returns an error count.
1229 */
1230int ssl_quic_initial_ctx(struct bind_conf *bind_conf)
1231{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001232 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
1233 int cfgerr = 0;
1234
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001235 long options =
1236 (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) |
1237 SSL_OP_SINGLE_ECDH_USE |
1238 SSL_OP_CIPHER_SERVER_PREFERENCE;
1239 SSL_CTX *ctx;
1240
1241 ctx = SSL_CTX_new(TLS_server_method());
1242 bind_conf->initial_ctx = ctx;
1243
1244 SSL_CTX_set_options(ctx, options);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001245 SSL_CTX_set_mode(ctx, SSL_MODE_RELEASE_BUFFERS);
1246 SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
1247 SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001248
1249#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
William Lallemand373ce732022-09-07 11:11:59 +02001250# if defined(HAVE_SSL_CLIENT_HELLO_CB)
1251# if defined(SSL_OP_NO_ANTI_REPLAY)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001252 if (bind_conf->ssl_conf.early_data) {
1253 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
Frédéric Lécaillead3c07a2021-12-14 19:23:43 +01001254 SSL_CTX_set_max_early_data(ctx, 0xffffffff);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001255 }
William Lallemand373ce732022-09-07 11:11:59 +02001256# endif /* !SSL_OP_NO_ANTI_REPLAY */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001257 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
1258 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
William Lallemand373ce732022-09-07 11:11:59 +02001259# else /* ! HAVE_SSL_CLIENT_HELLO_CB */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001260 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
William Lallemand373ce732022-09-07 11:11:59 +02001261# endif
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001262 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
1263#endif
1264 SSL_CTX_set_quic_method(ctx, &ha_quic_method);
1265
1266 return cfgerr;
1267}
1268
1269/* Decode an expected packet number from <truncated_on> its truncated value,
1270 * depending on <largest_pn> the largest received packet number, and <pn_nbits>
1271 * the number of bits used to encode this packet number (its length in bytes * 8).
1272 * See https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#packet-encoding
1273 */
1274static uint64_t decode_packet_number(uint64_t largest_pn,
1275 uint32_t truncated_pn, unsigned int pn_nbits)
1276{
1277 uint64_t expected_pn = largest_pn + 1;
1278 uint64_t pn_win = (uint64_t)1 << pn_nbits;
1279 uint64_t pn_hwin = pn_win / 2;
1280 uint64_t pn_mask = pn_win - 1;
1281 uint64_t candidate_pn;
1282
1283
1284 candidate_pn = (expected_pn & ~pn_mask) | truncated_pn;
1285 /* Note that <pn_win> > <pn_hwin>. */
1286 if (candidate_pn < QUIC_MAX_PACKET_NUM - pn_win &&
1287 candidate_pn + pn_hwin <= expected_pn)
1288 return candidate_pn + pn_win;
1289
1290 if (candidate_pn > expected_pn + pn_hwin && candidate_pn >= pn_win)
1291 return candidate_pn - pn_win;
1292
1293 return candidate_pn;
1294}
1295
1296/* Remove the header protection of <pkt> QUIC packet using <tls_ctx> as QUIC TLS
1297 * cryptographic context.
1298 * <largest_pn> is the largest received packet number and <pn> the address of
1299 * the packet number field for this packet with <byte0> address of its first byte.
1300 * <end> points to one byte past the end of this packet.
1301 * Returns 1 if succeeded, 0 if not.
1302 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001303static int qc_do_rm_hp(struct quic_conn *qc,
1304 struct quic_rx_packet *pkt, struct quic_tls_ctx *tls_ctx,
Frédéric Lécaille99897d12022-08-08 10:28:07 +02001305 int64_t largest_pn, unsigned char *pn, unsigned char *byte0)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001306{
Frédéric Lécaille86a53c52022-08-19 18:18:13 +02001307 int ret, i, pnlen;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001308 uint64_t packet_number;
1309 uint32_t truncated_pn = 0;
1310 unsigned char mask[5] = {0};
1311 unsigned char *sample;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001312 EVP_CIPHER_CTX *cctx = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001313
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001314 TRACE_ENTER(QUIC_EV_CONN_RMHP, qc);
1315
1316 ret = 0;
1317
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001318 /* Check there is enough data in this packet. */
Frédéric Lécaille99897d12022-08-08 10:28:07 +02001319 if (pkt->len - (pn - byte0) < QUIC_PACKET_PN_MAXLEN + sizeof mask) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001320 TRACE_PROTO("too short packet", QUIC_EV_CONN_RMHP, qc, pkt);
1321 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001322 }
1323
1324 cctx = EVP_CIPHER_CTX_new();
1325 if (!cctx) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001326 TRACE_ERROR("memory allocation failed", QUIC_EV_CONN_RMHP, qc, pkt);
1327 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001328 }
1329
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001330 sample = pn + QUIC_PACKET_PN_MAXLEN;
1331
Frédéric Lécaille86a53c52022-08-19 18:18:13 +02001332 if (!quic_tls_aes_decrypt(mask, sample, sizeof mask, tls_ctx->rx.hp_ctx)) {
1333 TRACE_ERROR("HP removing failed", QUIC_EV_CONN_RMHP, qc, pkt);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001334 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001335 }
1336
1337 *byte0 ^= mask[0] & (*byte0 & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f);
1338 pnlen = (*byte0 & QUIC_PACKET_PNL_BITMASK) + 1;
1339 for (i = 0; i < pnlen; i++) {
1340 pn[i] ^= mask[i + 1];
1341 truncated_pn = (truncated_pn << 8) | pn[i];
1342 }
1343
1344 packet_number = decode_packet_number(largest_pn, truncated_pn, pnlen * 8);
1345 /* Store remaining information for this unprotected header */
1346 pkt->pn = packet_number;
1347 pkt->pnl = pnlen;
1348
1349 ret = 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001350 leave:
1351 if (cctx)
1352 EVP_CIPHER_CTX_free(cctx);
1353 TRACE_LEAVE(QUIC_EV_CONN_RMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001354 return ret;
1355}
1356
1357/* Encrypt the payload of a QUIC packet with <pn> as number found at <payload>
1358 * address, with <payload_len> as payload length, <aad> as address of
1359 * the ADD and <aad_len> as AAD length depending on the <tls_ctx> QUIC TLS
1360 * context.
1361 * Returns 1 if succeeded, 0 if not.
1362 */
1363static int quic_packet_encrypt(unsigned char *payload, size_t payload_len,
1364 unsigned char *aad, size_t aad_len, uint64_t pn,
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01001365 struct quic_tls_ctx *tls_ctx, struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001366{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001367 int ret = 0;
Frédéric Lécaillef2f4a4e2022-04-05 12:18:46 +02001368 unsigned char iv[QUIC_TLS_IV_LEN];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001369 unsigned char *tx_iv = tls_ctx->tx.iv;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +01001370 size_t tx_iv_sz = tls_ctx->tx.ivlen;
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001371 struct enc_debug_info edi;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001372
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001373 TRACE_ENTER(QUIC_EV_CONN_ENCPKT, qc);
1374
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001375 if (!quic_aead_iv_build(iv, sizeof iv, tx_iv, tx_iv_sz, pn)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001376 TRACE_ERROR("AEAD IV building for encryption failed", QUIC_EV_CONN_ENCPKT, qc);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001377 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001378 }
1379
1380 if (!quic_tls_encrypt(payload, payload_len, aad, aad_len,
Frédéric Lécaillef4605742022-04-05 10:28:29 +02001381 tls_ctx->tx.ctx, tls_ctx->tx.aead, tls_ctx->tx.key, iv)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001382 TRACE_ERROR("QUIC packet encryption failed", QUIC_EV_CONN_ENCPKT, qc);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001383 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001384 }
1385
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001386 ret = 1;
1387 leave:
1388 TRACE_LEAVE(QUIC_EV_CONN_ENCPKT, qc);
1389 return ret;
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001390
1391 err:
1392 enc_debug_info_init(&edi, payload, payload_len, aad, aad_len, pn);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001393 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001394}
1395
1396/* Decrypt <pkt> QUIC packet with <tls_ctx> as QUIC TLS cryptographic context.
1397 * Returns 1 if succeeded, 0 if not.
1398 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001399static int qc_pkt_decrypt(struct quic_rx_packet *pkt, struct quic_enc_level *qel,
1400 struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001401{
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001402 int ret, kp_changed;
Frédéric Lécaillef2f4a4e2022-04-05 12:18:46 +02001403 unsigned char iv[QUIC_TLS_IV_LEN];
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001404 struct quic_tls_ctx *tls_ctx = &qel->tls_ctx;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +02001405 EVP_CIPHER_CTX *rx_ctx = tls_ctx->rx.ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001406 unsigned char *rx_iv = tls_ctx->rx.iv;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001407 size_t rx_iv_sz = tls_ctx->rx.ivlen;
1408 unsigned char *rx_key = tls_ctx->rx.key;
1409
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001410 TRACE_ENTER(QUIC_EV_CONN_RXPKT, qc);
1411
1412 ret = 0;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001413 kp_changed = 0;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001414
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001415 if (pkt->type == QUIC_PACKET_TYPE_SHORT) {
1416 /* The two tested bits are not at the same position,
1417 * this is why they are first both inversed.
1418 */
1419 if (!(*pkt->data & QUIC_PACKET_KEY_PHASE_BIT) ^ !(tls_ctx->flags & QUIC_FL_TLS_KP_BIT_SET)) {
1420 if (pkt->pn < tls_ctx->rx.pn) {
1421 /* The lowest packet number of a previous key phase
1422 * cannot be null if it really stores previous key phase
1423 * secrets.
1424 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001425 // TODO: check if BUG_ON() more suitable
1426 if (!pkt->qc->ku.prv_rx.pn) {
1427 TRACE_ERROR("null previous packet number", QUIC_EV_CONN_RXPKT, qc);
1428 goto leave;
1429 }
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001430
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +02001431 rx_ctx = pkt->qc->ku.prv_rx.ctx;
1432 rx_iv = pkt->qc->ku.prv_rx.iv;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001433 rx_key = pkt->qc->ku.prv_rx.key;
1434 }
1435 else if (pkt->pn > qel->pktns->rx.largest_pn) {
1436 /* Next key phase */
1437 kp_changed = 1;
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +02001438 rx_ctx = pkt->qc->ku.nxt_rx.ctx;
1439 rx_iv = pkt->qc->ku.nxt_rx.iv;
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001440 rx_key = pkt->qc->ku.nxt_rx.key;
1441 }
1442 }
1443 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001444
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001445 if (!quic_aead_iv_build(iv, sizeof iv, rx_iv, rx_iv_sz, pkt->pn)) {
1446 TRACE_ERROR("quic_aead_iv_build() failed", QUIC_EV_CONN_RXPKT, qc);
1447 goto leave;
1448 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001449
1450 ret = quic_tls_decrypt(pkt->data + pkt->aad_len, pkt->len - pkt->aad_len,
1451 pkt->data, pkt->aad_len,
Frédéric Lécaille8c7927c2022-04-05 16:28:38 +02001452 rx_ctx, tls_ctx->rx.aead, rx_key, iv);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001453 if (!ret) {
1454 TRACE_ERROR("quic_tls_decrypt() failed", QUIC_EV_CONN_RXPKT, qc);
1455 goto leave;
1456 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001457
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001458 /* Update the keys only if the packet decryption succeeded. */
1459 if (kp_changed) {
1460 quic_tls_rotate_keys(pkt->qc);
1461 /* Toggle the Key Phase bit */
1462 tls_ctx->flags ^= QUIC_FL_TLS_KP_BIT_SET;
1463 /* Store the lowest packet number received for the current key phase */
1464 tls_ctx->rx.pn = pkt->pn;
1465 /* Prepare the next key update */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001466 if (!quic_tls_key_update(pkt->qc)) {
1467 TRACE_ERROR("quic_tls_key_update() failed", QUIC_EV_CONN_RXPKT, qc);
1468 goto leave;
1469 }
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01001470 }
1471
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001472 /* Update the packet length (required to parse the frames). */
Frédéric Lécaillef4605742022-04-05 10:28:29 +02001473 pkt->len -= QUIC_TLS_TAG_LEN;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001474 ret = 1;
1475 leave:
1476 TRACE_LEAVE(QUIC_EV_CONN_RXPKT, qc);
Frédéric Lécaille11a6f402022-08-16 14:48:59 +02001477 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001478}
1479
Frédéric Lécaille96367152022-04-25 09:40:19 +02001480
1481/* Remove references to <frm> frame */
1482static void qc_frm_unref(struct quic_conn *qc, struct quic_frame *frm)
1483{
Frédéric Lécaille96367152022-04-25 09:40:19 +02001484 struct quic_frame *f, *tmp;
1485
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001486 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1487
Frédéric Lécaille96367152022-04-25 09:40:19 +02001488 list_for_each_entry_safe(f, tmp, &frm->reflist, ref) {
Frédéric Lécaille96367152022-04-25 09:40:19 +02001489 f->origin = NULL;
1490 LIST_DELETE(&f->ref);
Frédéric Lécailleeba90882022-08-25 16:06:48 +02001491 if (f->pkt) {
1492 TRACE_DEVEL("remove frame reference",
1493 QUIC_EV_CONN_PRSAFRM, qc, f, &f->pkt->pn_node.key);
1494 }
1495 else {
1496 TRACE_DEVEL("remove frame reference for unsent frame",
1497 QUIC_EV_CONN_PRSAFRM, qc, f);
1498 }
Frédéric Lécaille96367152022-04-25 09:40:19 +02001499 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001500
1501 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001502}
1503
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001504/* Release <frm> frame and mark its copies as acknowledged */
Frédéric Lécailleda342552022-04-25 10:28:49 +02001505void qc_release_frm(struct quic_conn *qc, struct quic_frame *frm)
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001506{
1507 uint64_t pn;
1508 struct quic_frame *origin, *f, *tmp;
1509
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001510 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1511
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001512 /* Identify this frame: a frame copy or one of its copies */
1513 origin = frm->origin ? frm->origin : frm;
1514 /* Ensure the source of the copies is flagged as acked, <frm> being
1515 * possibly a copy of <origin>
1516 */
1517 origin->flags |= QUIC_FL_TX_FRAME_ACKED;
1518 /* Mark all the copy of <origin> as acknowledged. We must
1519 * not release the packets (releasing the frames) at this time as
1520 * they are possibly also to be acknowledged alongside the
1521 * the current one.
1522 */
1523 list_for_each_entry_safe(f, tmp, &origin->reflist, ref) {
Frédéric Lécailleeba90882022-08-25 16:06:48 +02001524 if (f->pkt) {
Frédéric Lécaille025945f2022-09-06 09:55:21 +02001525 f->flags |= QUIC_FL_TX_FRAME_ACKED;
1526 f->origin = NULL;
1527 LIST_DELETE(&f->ref);
Frédéric Lécailleeba90882022-08-25 16:06:48 +02001528 pn = f->pkt->pn_node.key;
1529 TRACE_DEVEL("mark frame as acked from packet",
1530 QUIC_EV_CONN_PRSAFRM, qc, f, &pn);
1531 }
1532 else {
Frédéric Lécaille025945f2022-09-06 09:55:21 +02001533 TRACE_DEVEL("freeing unsent frame",
Frédéric Lécailleeba90882022-08-25 16:06:48 +02001534 QUIC_EV_CONN_PRSAFRM, qc, f);
Frédéric Lécaille025945f2022-09-06 09:55:21 +02001535 LIST_DELETE(&f->ref);
1536 LIST_DELETE(&f->list);
1537 pool_free(pool_head_quic_frame, f);
Frédéric Lécailleeba90882022-08-25 16:06:48 +02001538 }
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001539 }
1540 LIST_DELETE(&frm->list);
1541 pn = frm->pkt->pn_node.key;
1542 quic_tx_packet_refdec(frm->pkt);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001543 TRACE_DEVEL("freeing frame from packet",
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001544 QUIC_EV_CONN_PRSAFRM, qc, frm, &pn);
1545 pool_free(pool_head_quic_frame, frm);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001546
1547 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02001548}
1549
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001550/* Schedule a CONNECTION_CLOSE emission on <qc> if the MUX has been released
1551 * and all STREAM data are acknowledged. The MUX is responsible to have set
1552 * <qc.err> before as it is reused for the CONNECTION_CLOSE frame.
1553 *
1554 * TODO this should also be called on lost packet detection
1555 */
1556static void qc_check_close_on_released_mux(struct quic_conn *qc)
1557{
1558 struct ssl_sock_ctx *ctx = qc->xprt_ctx;
1559
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001560 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
1561
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001562 if (qc->mux_state == QC_MUX_RELEASED && eb_is_empty(&qc->streams_by_id)) {
1563 /* Reuse errcode which should have been previously set by the MUX on release. */
1564 quic_set_connection_close(qc, qc->err);
1565 tasklet_wakeup(ctx->wait_event.tasklet);
1566 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001567
1568 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001569}
1570
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001571/* Remove from <stream> the acknowledged frames.
Amaury Denoyelle95e50fb2022-03-29 14:50:25 +02001572 *
1573 * Returns 1 if at least one frame was removed else 0.
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001574 */
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001575static int quic_stream_try_to_consume(struct quic_conn *qc,
1576 struct qc_stream_desc *stream)
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001577{
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001578 int ret;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001579 struct eb64_node *frm_node;
1580
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001581 TRACE_ENTER(QUIC_EV_CONN_ACKSTRM, qc);
1582
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001583 ret = 0;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001584 frm_node = eb64_first(&stream->acked_frms);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001585 while (frm_node) {
1586 struct quic_stream *strm;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001587 struct quic_frame *frm;
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001588 size_t offset, len;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001589
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02001590 strm = eb64_entry(frm_node, struct quic_stream, offset);
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001591 offset = strm->offset.key;
1592 len = strm->len;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001593
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001594 if (offset > stream->ack_offset)
1595 break;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001596
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001597 if (qc_stream_desc_ack(&stream, offset, len)) {
Amaury Denoyelle7586bef2022-04-25 14:26:54 +02001598 /* cf. next comment : frame may be freed at this stage. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001599 TRACE_DEVEL("stream consumed", QUIC_EV_CONN_ACKSTRM,
Amaury Denoyelle7586bef2022-04-25 14:26:54 +02001600 qc, stream ? strm : NULL, stream);
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001601 ret = 1;
1602 }
1603
Amaury Denoyelle7586bef2022-04-25 14:26:54 +02001604 /* If stream is NULL after qc_stream_desc_ack(), it means frame
1605 * has been freed. with the stream frames tree. Nothing to do
1606 * anymore in here.
1607 */
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001608 if (!stream) {
1609 qc_check_close_on_released_mux(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001610 ret = 1;
1611 goto leave;
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001612 }
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001613
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001614 frm_node = eb64_next(frm_node);
1615 eb64_delete(&strm->offset);
Amaury Denoyelle7b4c9d62022-02-24 10:50:58 +01001616
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001617 frm = container_of(strm, struct quic_frame, stream);
Frédéric Lécailleda342552022-04-25 10:28:49 +02001618 qc_release_frm(qc, frm);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001619 }
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001620
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001621 leave:
1622 TRACE_LEAVE(QUIC_EV_CONN_ACKSTRM, qc);
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001623 return ret;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001624}
1625
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001626/* Treat <frm> frame whose packet it is attached to has just been acknowledged. */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001627static inline void qc_treat_acked_tx_frm(struct quic_conn *qc,
1628 struct quic_frame *frm)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001629{
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001630 int stream_acked;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001631
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001632 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc, frm);
1633
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001634 stream_acked = 0;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001635 switch (frm->type) {
1636 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
1637 {
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001638 struct quic_stream *strm_frm = &frm->stream;
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001639 struct eb64_node *node = NULL;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001640 struct qc_stream_desc *stream = NULL;
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001641 const size_t offset = strm_frm->offset.key;
1642 const size_t len = strm_frm->len;
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001643
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001644 /* do not use strm_frm->stream as the qc_stream_desc instance
1645 * might be freed at this stage. Use the id to do a proper
Amaury Denoyellee4301da2022-04-19 17:59:50 +02001646 * lookup.
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001647 *
1648 * TODO if lookup operation impact on the perf is noticeable,
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001649 * implement a refcount on qc_stream_desc instances.
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001650 */
Amaury Denoyellee4301da2022-04-19 17:59:50 +02001651 node = eb64_lookup(&qc->streams_by_id, strm_frm->id);
1652 if (!node) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001653 TRACE_DEVEL("acked stream for released stream", QUIC_EV_CONN_ACKSTRM, qc, strm_frm);
Frédéric Lécailleda342552022-04-25 10:28:49 +02001654 qc_release_frm(qc, frm);
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001655 /* early return */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001656 goto leave;
Amaury Denoyelle8d5def02022-03-29 11:51:17 +02001657 }
Amaury Denoyellee4301da2022-04-19 17:59:50 +02001658 stream = eb64_entry(node, struct qc_stream_desc, by_id);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001659
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001660 TRACE_DEVEL("acked stream", QUIC_EV_CONN_ACKSTRM, qc, strm_frm, stream);
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001661 if (offset <= stream->ack_offset) {
1662 if (qc_stream_desc_ack(&stream, offset, len)) {
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001663 stream_acked = 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001664 TRACE_DEVEL("stream consumed", QUIC_EV_CONN_ACKSTRM,
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001665 qc, strm_frm, stream);
1666 }
Amaury Denoyelle0c7679d2022-02-24 10:56:33 +01001667
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001668 if (!stream) {
1669 /* no need to continue if stream freed. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001670 TRACE_DEVEL("stream released and freed", QUIC_EV_CONN_ACKSTRM, qc);
Frédéric Lécailleda342552022-04-25 10:28:49 +02001671 qc_release_frm(qc, frm);
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02001672 qc_check_close_on_released_mux(qc);
Amaury Denoyelle1b81dda2022-04-21 09:32:53 +02001673 break;
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001674 }
1675
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001676 TRACE_DEVEL("stream consumed", QUIC_EV_CONN_ACKSTRM,
Frédéric Lécailleda342552022-04-25 10:28:49 +02001677 qc, strm_frm, stream);
1678 qc_release_frm(qc, frm);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001679 }
1680 else {
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001681 eb64_insert(&stream->acked_frms, &strm_frm->offset);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001682 }
Amaury Denoyelle119965f2022-02-24 17:39:57 +01001683
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02001684 stream_acked |= quic_stream_try_to_consume(qc, stream);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001685 }
1686 break;
1687 default:
Frédéric Lécailleda342552022-04-25 10:28:49 +02001688 qc_release_frm(qc, frm);
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02001689 }
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001690
Frédéric Lécaille89a2ceb2022-04-20 15:59:07 +02001691 if (stream_acked && qc->mux_state == QC_MUX_READY) {
Frédéric Lécaille1c482c62021-09-20 16:59:51 +02001692 struct qcc *qcc = qc->qcc;
1693
1694 if (qcc->subs && qcc->subs->events & SUB_RETRY_SEND) {
1695 tasklet_wakeup(qcc->subs->tasklet);
1696 qcc->subs->events &= ~SUB_RETRY_SEND;
1697 if (!qcc->subs->events)
1698 qcc->subs = NULL;
1699 }
1700 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001701 leave:
1702 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001703}
1704
1705/* Remove <largest> down to <smallest> node entries from <pkts> tree of TX packet,
1706 * deallocating them, and their TX frames.
1707 * Returns the last node reached to be used for the next range.
1708 * May be NULL if <largest> node could not be found.
1709 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001710static inline struct eb64_node *qc_ackrng_pkts(struct quic_conn *qc,
1711 struct eb_root *pkts,
1712 unsigned int *pkt_flags,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001713 struct list *newly_acked_pkts,
1714 struct eb64_node *largest_node,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001715 uint64_t largest, uint64_t smallest)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001716{
1717 struct eb64_node *node;
1718 struct quic_tx_packet *pkt;
1719
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001720 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1721
Frédéric Lécaille843399f2022-07-22 16:27:44 +02001722 node = largest_node ? largest_node : eb64_lookup_le(pkts, largest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001723 while (node && node->key >= smallest) {
Frédéric Lécaille0ad04582021-07-27 14:51:54 +02001724 struct quic_frame *frm, *frmbak;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001725
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02001726 pkt = eb64_entry(node, struct quic_tx_packet, pn_node);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001727 *pkt_flags |= pkt->flags;
Willy Tarreau2b718102021-04-21 07:32:39 +02001728 LIST_INSERT(newly_acked_pkts, &pkt->list);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001729 TRACE_DEVEL("Removing packet #", QUIC_EV_CONN_PRSAFRM, qc, NULL, &pkt->pn_node.key);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001730 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list)
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001731 qc_treat_acked_tx_frm(qc, frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001732 node = eb64_prev(node);
1733 eb64_delete(&pkt->pn_node);
1734 }
1735
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001736 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001737 return node;
1738}
1739
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001740/* Remove all frames from <pkt_frm_list> and reinsert them in the
1741 * same order they have been sent into <pktns_frm_list>.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001742 */
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001743static inline void qc_requeue_nacked_pkt_tx_frms(struct quic_conn *qc,
Frédéric Lécaille96367152022-04-25 09:40:19 +02001744 struct quic_tx_packet *pkt,
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001745 struct list *pktns_frm_list)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001746{
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001747 struct quic_frame *frm, *frmbak;
1748 struct list tmp = LIST_HEAD_INIT(tmp);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001749 struct list *pkt_frm_list = &pkt->frms;
Frédéric Lécaille1ba25c22022-08-18 17:21:19 +02001750 uint64_t pn = pkt->pn_node.key;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001751
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001752 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1753
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001754 list_for_each_entry_safe(frm, frmbak, pkt_frm_list, list) {
Frédéric Lécaille96367152022-04-25 09:40:19 +02001755 /* First remove this frame from the packet it was attached to */
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001756 LIST_DELETE(&frm->list);
Frédéric Lécaille1ba25c22022-08-18 17:21:19 +02001757 quic_tx_packet_refdec(pkt);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001758 /* At this time, this frame is not freed but removed from its packet */
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001759 frm->pkt = NULL;
Frédéric Lécaille96367152022-04-25 09:40:19 +02001760 /* Remove any reference to this frame */
1761 qc_frm_unref(qc, frm);
1762 switch (frm->type) {
1763 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
1764 {
1765 struct quic_stream *strm_frm = &frm->stream;
1766 struct eb64_node *node = NULL;
1767 struct qc_stream_desc *stream_desc;
1768
1769 node = eb64_lookup(&qc->streams_by_id, strm_frm->id);
1770 if (!node) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001771 TRACE_DEVEL("released stream", QUIC_EV_CONN_PRSAFRM, qc, frm);
1772 TRACE_DEVEL("freeing frame from packet", QUIC_EV_CONN_PRSAFRM,
Frédéric Lécaille96367152022-04-25 09:40:19 +02001773 qc, frm, &pn);
1774 pool_free(pool_head_quic_frame, frm);
1775 continue;
1776 }
1777
1778 stream_desc = eb64_entry(node, struct qc_stream_desc, by_id);
1779 /* Do not resend this frame if in the "already acked range" */
1780 if (strm_frm->offset.key + strm_frm->len <= stream_desc->ack_offset) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001781 TRACE_DEVEL("ignored frame in already acked range",
Frédéric Lécaille96367152022-04-25 09:40:19 +02001782 QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaillebccbad22022-08-31 15:02:53 +02001783 pool_free(pool_head_quic_frame, frm);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001784 continue;
1785 }
1786 else if (strm_frm->offset.key < stream_desc->ack_offset) {
1787 strm_frm->offset.key = stream_desc->ack_offset;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001788 TRACE_DEVEL("updated partially acked frame",
Frédéric Lécaille96367152022-04-25 09:40:19 +02001789 QUIC_EV_CONN_PRSAFRM, qc, frm);
1790 }
Frédéric Lécaille96367152022-04-25 09:40:19 +02001791 break;
1792 }
1793
1794 default:
1795 break;
1796 }
1797
1798 /* Do not resend probing packet with old data */
1799 if (pkt->flags & QUIC_FL_TX_PACKET_PROBE_WITH_OLD_DATA) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001800 TRACE_DEVEL("ignored frame with old data from packet", QUIC_EV_CONN_PRSAFRM,
1801 qc, frm, &pn);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001802 if (frm->origin)
1803 LIST_DELETE(&frm->ref);
1804 pool_free(pool_head_quic_frame, frm);
1805 continue;
1806 }
1807
1808 if (frm->flags & QUIC_FL_TX_FRAME_ACKED) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001809 TRACE_DEVEL("already acked frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
1810 TRACE_DEVEL("freeing frame from packet", QUIC_EV_CONN_PRSAFRM,
Frédéric Lécaille96367152022-04-25 09:40:19 +02001811 qc, frm, &pn);
1812 pool_free(pool_head_quic_frame, frm);
1813 }
1814 else {
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02001815 if (QUIC_FT_STREAM_8 <= frm->type && frm->type <= QUIC_FT_STREAM_F) {
1816 /* Mark this STREAM frame as lost. A look up their stream descriptor
1817 * will be performed to check the stream is not consumed or released.
1818 */
Amaury Denoyellef372e742022-08-16 14:41:57 +02001819 frm->flags |= QUIC_FL_TX_FRAME_LOST;
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02001820 }
Frédéric Lécaille96367152022-04-25 09:40:19 +02001821 LIST_APPEND(&tmp, &frm->list);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001822 TRACE_DEVEL("frame requeued", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaille96367152022-04-25 09:40:19 +02001823 }
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001824 }
1825
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01001826 LIST_SPLICE(pktns_frm_list, &tmp);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001827
1828 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001829}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001830
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001831/* Free <pkt> TX packet and its attached frames.
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05001832 * This is the responsibility of the caller to remove this packet of
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001833 * any data structure it was possibly attached to.
1834 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001835static inline void free_quic_tx_packet(struct quic_conn *qc,
1836 struct quic_tx_packet *pkt)
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001837{
1838 struct quic_frame *frm, *frmbak;
1839
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001840 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
1841
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001842 if (!pkt)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001843 goto leave;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001844
1845 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list) {
1846 LIST_DELETE(&frm->list);
1847 pool_free(pool_head_quic_frame, frm);
1848 }
1849 pool_free(pool_head_quic_tx_packet, pkt);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001850
1851 leave:
1852 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01001853}
1854
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001855/* Free the TX packets of <pkts> list */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001856static inline void free_quic_tx_pkts(struct quic_conn *qc, struct list *pkts)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001857{
1858 struct quic_tx_packet *pkt, *tmp;
1859
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001860 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
1861
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001862 list_for_each_entry_safe(pkt, tmp, pkts, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001863 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001864 eb64_delete(&pkt->pn_node);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001865 free_quic_tx_packet(qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001866 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001867
1868 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001869}
1870
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001871/* Remove already sent ranges of acknowledged packet numbers from
1872 * <pktns> packet number space tree below <largest_acked_pn> possibly
1873 * updating the range which contains <largest_acked_pn>.
1874 * Never fails.
1875 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001876static void qc_treat_ack_of_ack(struct quic_conn *qc,
1877 struct quic_pktns *pktns,
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001878 int64_t largest_acked_pn)
1879{
1880 struct eb64_node *ar, *next_ar;
1881 struct quic_arngs *arngs = &pktns->rx.arngs;
1882
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001883 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1884
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001885 ar = eb64_first(&arngs->root);
1886 while (ar) {
1887 struct quic_arng_node *ar_node;
1888
1889 next_ar = eb64_next(ar);
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02001890 ar_node = eb64_entry(ar, struct quic_arng_node, first);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001891
1892 if ((int64_t)ar_node->first.key > largest_acked_pn) {
1893 TRACE_DEVEL("first.key > largest", QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001894 break;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001895 }
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001896
1897 if (largest_acked_pn < ar_node->last) {
1898 eb64_delete(ar);
1899 ar_node->first.key = largest_acked_pn + 1;
1900 eb64_insert(&arngs->root, ar);
1901 break;
1902 }
1903
1904 eb64_delete(ar);
1905 pool_free(pool_head_quic_arng, ar_node);
1906 arngs->sz--;
1907 ar = next_ar;
1908 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001909
1910 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001911}
1912
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001913/* Send a packet ack event nofication for each newly acked packet of
1914 * <newly_acked_pkts> list and free them.
1915 * Always succeeds.
1916 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001917static inline void qc_treat_newly_acked_pkts(struct quic_conn *qc,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001918 struct list *newly_acked_pkts)
1919{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001920 struct quic_tx_packet *pkt, *tmp;
1921 struct quic_cc_event ev = { .type = QUIC_CC_EVT_ACK, };
1922
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001923 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1924
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001925 list_for_each_entry_safe(pkt, tmp, newly_acked_pkts, list) {
1926 pkt->pktns->tx.in_flight -= pkt->in_flight_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01001927 qc->path->prep_in_flight -= pkt->in_flight_len;
Frédéric Lécailleba9db402022-03-01 17:06:50 +01001928 qc->path->in_flight -= pkt->in_flight_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001929 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01001930 qc->path->ifae_pkts--;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01001931 /* If this packet contained an ACK frame, proceed to the
1932 * acknowledging of range of acks from the largest acknowledged
1933 * packet number which was sent in an ACK frame by this packet.
1934 */
1935 if (pkt->largest_acked_pn != -1)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001936 qc_treat_ack_of_ack(qc, pkt->pktns, pkt->largest_acked_pn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001937 ev.ack.acked = pkt->in_flight_len;
1938 ev.ack.time_sent = pkt->time_sent;
1939 quic_cc_event(&qc->path->cc, &ev);
Willy Tarreau2b718102021-04-21 07:32:39 +02001940 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001941 eb64_delete(&pkt->pn_node);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02001942 quic_tx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001943 }
1944
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001945 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
1946
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001947}
1948
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01001949/* Release all the frames attached to <pktns> packet number space */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001950static inline void qc_release_pktns_frms(struct quic_conn *qc,
1951 struct quic_pktns *pktns)
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01001952{
1953 struct quic_frame *frm, *frmbak;
1954
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001955 TRACE_ENTER(QUIC_EV_CONN_PHPKTS, qc);
1956
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01001957 list_for_each_entry_safe(frm, frmbak, &pktns->tx.frms, list) {
1958 LIST_DELETE(&frm->list);
1959 pool_free(pool_head_quic_frame, frm);
1960 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001961
1962 TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillee87524d2022-01-19 17:48:40 +01001963}
1964
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001965/* Handle <pkts> list of lost packets detected at <now_us> handling
1966 * their TX frames.
1967 * Send a packet loss event to the congestion controller if
1968 * in flight packet have been lost.
1969 * Also frees the packet in <pkts> list.
1970 * Never fails.
1971 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01001972static inline void qc_release_lost_pkts(struct quic_conn *qc,
1973 struct quic_pktns *pktns,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001974 struct list *pkts,
1975 uint64_t now_us)
1976{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001977 struct quic_tx_packet *pkt, *tmp, *oldest_lost, *newest_lost;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001978
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02001979 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
1980
Frédéric Lécaille277c4622022-08-24 17:06:04 +02001981 if (LIST_ISEMPTY(pkts))
1982 goto leave;
1983
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001984 oldest_lost = newest_lost = NULL;
1985 list_for_each_entry_safe(pkt, tmp, pkts, list) {
Frédéric Lécaille7065dd02022-01-14 15:51:52 +01001986 struct list tmp = LIST_HEAD_INIT(tmp);
1987
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001988 pkt->pktns->tx.in_flight -= pkt->in_flight_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01001989 qc->path->prep_in_flight -= pkt->in_flight_len;
Frédéric Lécailleba9db402022-03-01 17:06:50 +01001990 qc->path->in_flight -= pkt->in_flight_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001991 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01001992 qc->path->ifae_pkts--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001993 /* Treat the frames of this lost packet. */
Frédéric Lécaille96367152022-04-25 09:40:19 +02001994 qc_requeue_nacked_pkt_tx_frms(qc, pkt, &pktns->tx.frms);
Willy Tarreau2b718102021-04-21 07:32:39 +02001995 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001996 if (!oldest_lost) {
1997 oldest_lost = newest_lost = pkt;
1998 }
1999 else {
2000 if (newest_lost != oldest_lost)
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02002001 quic_tx_packet_refdec(newest_lost);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002002 newest_lost = pkt;
2003 }
2004 }
2005
Frédéric Lécaillea5ee0ae2022-03-02 14:52:56 +01002006 if (newest_lost) {
2007 /* Sent a congestion event to the controller */
Benoit DOLEZ69e3f052022-06-08 09:28:56 +02002008 struct quic_cc_event ev = { };
2009
2010 ev.type = QUIC_CC_EVT_LOSS;
2011 ev.loss.time_sent = newest_lost->time_sent;
Frédéric Lécaillea5ee0ae2022-03-02 14:52:56 +01002012
2013 quic_cc_event(&qc->path->cc, &ev);
2014 }
2015
2016 /* If an RTT have been already sampled, <rtt_min> has been set.
2017 * We must check if we are experiencing a persistent congestion.
2018 * If this is the case, the congestion controller must re-enter
2019 * slow start state.
2020 */
2021 if (qc->path->loss.rtt_min && newest_lost != oldest_lost) {
2022 unsigned int period = newest_lost->time_sent - oldest_lost->time_sent;
2023
2024 if (quic_loss_persistent_congestion(&qc->path->loss, period,
2025 now_ms, qc->max_ack_delay))
2026 qc->path->cc.algo->slow_start(&qc->path->cc);
2027 }
2028
Frédéric Lécaille277c4622022-08-24 17:06:04 +02002029 quic_tx_packet_refdec(oldest_lost);
2030 if (newest_lost != oldest_lost)
2031 quic_tx_packet_refdec(newest_lost);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002032
Frédéric Lécaille277c4622022-08-24 17:06:04 +02002033 leave:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002034 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002035}
2036
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002037/* Parse ACK frame into <frm> from a buffer at <buf> address with <end> being at
2038 * one byte past the end of this buffer. Also update <rtt_sample> if needed, i.e.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05002039 * 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 +01002040 * acked ack-eliciting packet.
2041 * Return 1, if succeeded, 0 if not.
2042 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002043static inline int qc_parse_ack_frm(struct quic_conn *qc,
2044 struct quic_frame *frm,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002045 struct quic_enc_level *qel,
2046 unsigned int *rtt_sample,
2047 const unsigned char **pos, const unsigned char *end)
2048{
2049 struct quic_ack *ack = &frm->ack;
2050 uint64_t smallest, largest;
2051 struct eb_root *pkts;
2052 struct eb64_node *largest_node;
2053 unsigned int time_sent, pkt_flags;
2054 struct list newly_acked_pkts = LIST_HEAD_INIT(newly_acked_pkts);
2055 struct list lost_pkts = LIST_HEAD_INIT(lost_pkts);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002056 int ret = 0;
2057
2058 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002059
2060 if (ack->largest_ack > qel->pktns->tx.next_pn) {
2061 TRACE_DEVEL("ACK for not sent packet", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002062 qc, NULL, &ack->largest_ack);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002063 goto err;
2064 }
2065
2066 if (ack->first_ack_range > ack->largest_ack) {
2067 TRACE_DEVEL("too big first ACK range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002068 qc, NULL, &ack->first_ack_range);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002069 goto err;
2070 }
2071
2072 largest = ack->largest_ack;
2073 smallest = largest - ack->first_ack_range;
2074 pkts = &qel->pktns->tx.pkts;
2075 pkt_flags = 0;
2076 largest_node = NULL;
2077 time_sent = 0;
2078
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02002079 if ((int64_t)ack->largest_ack > qel->pktns->rx.largest_acked_pn) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002080 largest_node = eb64_lookup(pkts, largest);
2081 if (!largest_node) {
2082 TRACE_DEVEL("Largest acked packet not found",
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002083 QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille83b7a5b2021-11-17 16:16:04 +01002084 }
2085 else {
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02002086 time_sent = eb64_entry(largest_node,
Frédéric Lécaille83b7a5b2021-11-17 16:16:04 +01002087 struct quic_tx_packet, pn_node)->time_sent;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002088 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002089 }
2090
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002091 TRACE_PROTO("rcvd ack range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002092 qc, NULL, &largest, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002093 do {
2094 uint64_t gap, ack_range;
2095
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002096 qc_ackrng_pkts(qc, pkts, &pkt_flags, &newly_acked_pkts,
2097 largest_node, largest, smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002098 if (!ack->ack_range_num--)
2099 break;
2100
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002101 if (!quic_dec_int(&gap, pos, end)) {
2102 TRACE_ERROR("quic_dec_int(gap) failed", QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002103 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002104 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002105
2106 if (smallest < gap + 2) {
2107 TRACE_DEVEL("wrong gap value", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002108 qc, NULL, &gap, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002109 goto err;
2110 }
2111
2112 largest = smallest - gap - 2;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002113 if (!quic_dec_int(&ack_range, pos, end)) {
2114 TRACE_ERROR("quic_dec_int(ack_range) failed", QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002115 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002116 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002117
2118 if (largest < ack_range) {
2119 TRACE_DEVEL("wrong ack range value", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002120 qc, NULL, &largest, &ack_range);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002121 goto err;
2122 }
2123
2124 /* Do not use this node anymore. */
2125 largest_node = NULL;
2126 /* Next range */
2127 smallest = largest - ack_range;
2128
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002129 TRACE_PROTO("rcvd next ack range", QUIC_EV_CONN_PRSAFRM,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002130 qc, NULL, &largest, &smallest);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002131 } while (1);
2132
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002133 if (time_sent && (pkt_flags & QUIC_FL_TX_PACKET_ACK_ELICITING)) {
2134 *rtt_sample = tick_remain(time_sent, now_ms);
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02002135 qel->pktns->rx.largest_acked_pn = ack->largest_ack;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002136 }
2137
2138 if (!LIST_ISEMPTY(&newly_acked_pkts)) {
2139 if (!eb_is_empty(&qel->pktns->tx.pkts)) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002140 qc_packet_loss_lookup(qel->pktns, qc, &lost_pkts);
Frédéric Lécaille277c4622022-08-24 17:06:04 +02002141 qc_release_lost_pkts(qc, qel->pktns, &lost_pkts, now_ms);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002142 }
Amaury Denoyellee81fed92021-12-22 11:06:34 +01002143 qc_treat_newly_acked_pkts(qc, &newly_acked_pkts);
2144 if (quic_peer_validated_addr(qc))
2145 qc->path->loss.pto_count = 0;
2146 qc_set_timer(qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002147 }
2148
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002149 ret = 1;
2150 leave:
2151 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
2152 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002153
2154 err:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002155 free_quic_tx_pkts(qc, &newly_acked_pkts);
2156 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002157}
2158
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02002159/* This function gives the detail of the SSL error. It is used only
2160 * if the debug mode and the verbose mode are activated. It dump all
2161 * the SSL error until the stack was empty.
2162 */
2163static forceinline void qc_ssl_dump_errors(struct connection *conn)
2164{
2165 if (unlikely(global.mode & MODE_DEBUG)) {
2166 while (1) {
Willy Tarreau325fc632022-04-11 18:47:38 +02002167 const char *func = NULL;
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02002168 unsigned long ret;
2169
Willy Tarreau325fc632022-04-11 18:47:38 +02002170 ERR_peek_error_func(&func);
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02002171 ret = ERR_get_error();
2172 if (!ret)
2173 return;
2174
2175 fprintf(stderr, "conn. @%p OpenSSL error[0x%lx] %s: %s\n", conn, ret,
Willy Tarreau325fc632022-04-11 18:47:38 +02002176 func, ERR_reason_error_string(ret));
Frédéric Lécaille6f0fadb2021-09-28 09:04:12 +02002177 }
2178 }
2179}
2180
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01002181int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx,
2182 const char **str, int *len);
2183
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002184/* Provide CRYPTO data to the TLS stack found at <data> with <len> as length
2185 * from <qel> encryption level with <ctx> as QUIC connection context.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05002186 * Remaining parameter are there for debugging purposes.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002187 * Return 1 if succeeded, 0 if not.
2188 */
2189static inline int qc_provide_cdata(struct quic_enc_level *el,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002190 struct ssl_sock_ctx *ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002191 const unsigned char *data, size_t len,
2192 struct quic_rx_packet *pkt,
2193 struct quic_rx_crypto_frm *cf)
2194{
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02002195 int ssl_err, state;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002196 struct quic_conn *qc;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002197 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002198
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002199 ssl_err = SSL_ERROR_NONE;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01002200 qc = ctx->qc;
2201
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002202 TRACE_ENTER(QUIC_EV_CONN_SSLDATA, qc);
2203
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002204 if (SSL_provide_quic_data(ctx->ssl, el->level, data, len) != 1) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002205 TRACE_ERROR("SSL_provide_quic_data() error",
Frédéric Lécaillefde2a982021-12-27 15:12:09 +01002206 QUIC_EV_CONN_SSLDATA, qc, pkt, cf, ctx->ssl);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002207 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002208 }
2209
2210 el->rx.crypto.offset += len;
2211 TRACE_PROTO("in order CRYPTO data",
Frédéric Lécaillee7ff2b22021-12-22 17:40:38 +01002212 QUIC_EV_CONN_SSLDATA, qc, NULL, cf, ctx->ssl);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002213
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002214 state = qc->state;
Frédéric Lécailleeed7a7d2021-08-18 09:16:01 +02002215 if (state < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002216 ssl_err = SSL_do_handshake(ctx->ssl);
2217 if (ssl_err != 1) {
2218 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
2219 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002220 TRACE_PROTO("SSL handshake in progress",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002221 QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002222 goto out;
2223 }
2224
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02002225 /* TODO: Should close the connection asap */
2226 if (!(qc->flags & QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED)) {
2227 qc->flags |= QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED;
2228 HA_ATOMIC_DEC(&qc->prx_counters->half_open_conn);
2229 HA_ATOMIC_INC(&qc->prx_counters->hdshk_fail);
2230 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002231 TRACE_ERROR("SSL handshake error", QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaille7c881bd2021-09-28 09:05:59 +02002232 qc_ssl_dump_errors(ctx->conn);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01002233 ERR_clear_error();
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002234 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002235 }
2236
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002237 TRACE_PROTO("SSL handshake OK", QUIC_EV_CONN_IO_CB, qc, &state);
Frédéric Lécaillebc964bd2022-04-13 16:20:09 +02002238
2239 /* Check the alpn could be negotiated */
2240 if (!qc->app_ops) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002241 TRACE_ERROR("No negotiated ALPN", QUIC_EV_CONN_IO_CB, qc, &state);
Frédéric Lécaillebc964bd2022-04-13 16:20:09 +02002242 quic_set_tls_alert(qc, SSL_AD_NO_APPLICATION_PROTOCOL);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002243 goto leave;
Frédéric Lécaillebc964bd2022-04-13 16:20:09 +02002244 }
2245
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02002246 if (!(qc->flags & QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002247 TRACE_DEVEL("dec half open counter", QUIC_EV_CONN_IO_CB, qc, &state);
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02002248 qc->flags |= QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED;
2249 HA_ATOMIC_DEC(&qc->prx_counters->half_open_conn);
2250 }
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002251 /* I/O callback switch */
2252 ctx->wait_event.tasklet->process = quic_conn_app_io_cb;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01002253 if (qc_is_listener(ctx->qc)) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002254 qc->state = QUIC_HS_ST_CONFIRMED;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01002255 /* The connection is ready to be accepted. */
2256 quic_accept_push_qc(qc);
2257 }
2258 else {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002259 qc->state = QUIC_HS_ST_COMPLETE;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01002260 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002261 } else {
2262 ssl_err = SSL_process_quic_post_handshake(ctx->ssl);
2263 if (ssl_err != 1) {
2264 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
2265 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002266 TRACE_PROTO("SSL post handshake in progress",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002267 QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002268 goto out;
2269 }
2270
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002271 TRACE_ERROR("SSL post handshake error",
Frédéric Lécaille00e24002022-02-18 17:13:45 +01002272 QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002273 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002274 }
2275
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002276 TRACE_STATE("SSL post handshake succeeded", QUIC_EV_CONN_IO_CB, qc, &state);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002277 }
Amaury Denoyellee2288c32021-12-03 14:44:21 +01002278
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002279 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002280 ret = 1;
2281 leave:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002282 TRACE_LEAVE(QUIC_EV_CONN_SSLDATA, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002283 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002284}
2285
Amaury Denoyellef8db5aa2022-05-24 15:26:07 +02002286/* Parse a STREAM frame <strm_frm>
2287 *
2288 * Return 1 on success. On error, 0 is returned. In this case, the packet
2289 * containing the frame must not be acknowledged.
Amaury Denoyelle74cf2372022-04-29 15:58:22 +02002290 */
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002291static inline int qc_handle_strm_frm(struct quic_rx_packet *pkt,
2292 struct quic_stream *strm_frm,
2293 struct quic_conn *qc)
2294{
Amaury Denoyellef8db5aa2022-05-24 15:26:07 +02002295 int ret;
2296
Amaury Denoyelle74cf2372022-04-29 15:58:22 +02002297 /* RFC9000 13.1. Packet Processing
2298 *
2299 * A packet MUST NOT be acknowledged until packet protection has been
2300 * successfully removed and all frames contained in the packet have
2301 * been processed. For STREAM frames, this means the data has been
2302 * enqueued in preparation to be received by the application protocol,
2303 * but it does not require that data be delivered and consumed.
2304 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002305 TRACE_ENTER(QUIC_EV_CONN_PRSFRM, qc);
2306
Amaury Denoyellef8db5aa2022-05-24 15:26:07 +02002307 ret = qcc_recv(qc->qcc, strm_frm->id, strm_frm->len,
2308 strm_frm->offset.key, strm_frm->fin,
2309 (char *)strm_frm->data);
Amaury Denoyelle74cf2372022-04-29 15:58:22 +02002310
Amaury Denoyellef8db5aa2022-05-24 15:26:07 +02002311 /* frame rejected - packet must not be acknowledeged */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002312 TRACE_LEAVE(QUIC_EV_CONN_PRSFRM, qc);
2313 return !ret;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002314}
2315
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002316/* Duplicate all frames from <pkt_frm_list> list into <out_frm_list> list
2317 * for <qc> QUIC connection.
2318 * This is a best effort function which never fails even if no memory could be
2319 * allocated to duplicate these frames.
2320 */
2321static void qc_dup_pkt_frms(struct quic_conn *qc,
2322 struct list *pkt_frm_list, struct list *out_frm_list)
2323{
2324 struct quic_frame *frm, *frmbak;
2325 struct list tmp = LIST_HEAD_INIT(tmp);
2326
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002327 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
2328
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002329 list_for_each_entry_safe(frm, frmbak, pkt_frm_list, list) {
2330 struct quic_frame *dup_frm, *origin;
2331
2332 switch (frm->type) {
2333 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
2334 {
2335 struct quic_stream *strm_frm = &frm->stream;
2336 struct eb64_node *node = NULL;
2337 struct qc_stream_desc *stream_desc;
2338
2339 node = eb64_lookup(&qc->streams_by_id, strm_frm->id);
2340 if (!node) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002341 TRACE_DEVEL("ignored frame for a released stream", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002342 continue;
2343 }
2344
2345 stream_desc = eb64_entry(node, struct qc_stream_desc, by_id);
2346 /* Do not resend this frame if in the "already acked range" */
2347 if (strm_frm->offset.key + strm_frm->len <= stream_desc->ack_offset) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002348 TRACE_DEVEL("ignored frame in already acked range",
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002349 QUIC_EV_CONN_PRSAFRM, qc, frm);
2350 continue;
2351 }
2352 else if (strm_frm->offset.key < stream_desc->ack_offset) {
2353 strm_frm->offset.key = stream_desc->ack_offset;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002354 TRACE_DEVEL("updated partially acked frame",
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002355 QUIC_EV_CONN_PRSAFRM, qc, frm);
2356 }
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002357 break;
2358 }
2359
2360 default:
2361 break;
2362 }
2363
Frédéric Lécaille4173a392022-08-18 08:20:47 +02002364 dup_frm = pool_alloc(pool_head_quic_frame);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002365 if (!dup_frm) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002366 TRACE_ERROR("could not duplicate frame", QUIC_EV_CONN_PRSAFRM, qc, frm);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002367 break;
2368 }
2369
2370 /* If <frm> is already a copy of another frame, we must take
2371 * its original frame as source for the copy.
2372 */
2373 origin = frm->origin ? frm->origin : frm;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002374 TRACE_DEVEL("built probing frame", QUIC_EV_CONN_PRSAFRM, qc, origin);
Frédéric Lécaillee35463c2022-08-27 10:19:42 +02002375 if (origin->pkt)
2376 TRACE_DEVEL("duplicated from packet", QUIC_EV_CONN_PRSAFRM,
2377 qc, NULL, &origin->pkt->pn_node.key);
2378 else {
2379 /* <origin> is a frame which was sent from a packet detected as lost. */
2380 TRACE_DEVEL("duplicated from lost packet", QUIC_EV_CONN_PRSAFRM, qc);
2381 }
Frédéric Lécaille4173a392022-08-18 08:20:47 +02002382 *dup_frm = *origin;
2383 dup_frm->pkt = NULL;
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002384 dup_frm->origin = origin;
Frédéric Lécaille4173a392022-08-18 08:20:47 +02002385 dup_frm->flags = 0;
2386 LIST_INIT(&dup_frm->reflist);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002387 LIST_APPEND(&origin->reflist, &dup_frm->ref);
2388 LIST_APPEND(&tmp, &dup_frm->list);
2389 }
2390
2391 LIST_SPLICE(out_frm_list, &tmp);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002392
2393 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02002394}
2395
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002396/* Prepare a fast retransmission from <qel> encryption level */
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002397static void qc_prep_fast_retrans(struct quic_conn *qc,
2398 struct quic_enc_level *qel,
2399 struct list *frms1, struct list *frms2)
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002400{
2401 struct eb_root *pkts = &qel->pktns->tx.pkts;
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002402 struct list *frms = frms1;
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002403 struct eb64_node *node;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002404 struct quic_tx_packet *pkt;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002405
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002406 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
2407
2408 BUG_ON(frms1 == frms2);
2409
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002410 pkt = NULL;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002411 node = eb64_first(pkts);
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002412 start:
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002413 while (node) {
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002414 pkt = eb64_entry(node, struct quic_tx_packet, pn_node);
2415 node = eb64_next(node);
2416 /* Skip the empty and coalesced packets */
Frédéric Lécailleb44cbc62022-04-21 17:58:46 +02002417 if (!LIST_ISEMPTY(&pkt->frms) && !(pkt->flags & QUIC_FL_TX_PACKET_COALESCED))
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002418 break;
Frédéric Lécaillef010f0a2022-01-06 17:28:05 +01002419 }
2420
2421 if (!pkt)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002422 goto leave;
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002423
Frédéric Lécaille12fd2592022-03-31 08:42:06 +02002424 /* When building a packet from another one, the field which may increase the
2425 * packet size is the packet number. And the maximum increase is 4 bytes.
2426 */
2427 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc) &&
2428 pkt->len + 4 > 3 * qc->rx.bytes - qc->tx.prep_bytes) {
Frédéric Lécaille3a9b9442022-08-30 15:25:47 +02002429 TRACE_PROTO("anti-amplification limit would be reached", QUIC_EV_CONN_SPPKTS, qc, pkt);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002430 goto leave;
Frédéric Lécaille12fd2592022-03-31 08:42:06 +02002431 }
2432
Frédéric Lécaille3a9b9442022-08-30 15:25:47 +02002433 TRACE_DEVEL("duplicating packet", QUIC_EV_CONN_SPPKTS, qc, pkt);
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002434 qc_dup_pkt_frms(qc, &pkt->frms, frms);
2435 if (frms == frms1 && frms2) {
2436 frms = frms2;
2437 goto start;
2438 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002439 leave:
Frédéric Lécaille3a9b9442022-08-30 15:25:47 +02002440 TRACE_LEAVE(QUIC_EV_CONN_SPPKTS, qc);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002441}
2442
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002443/* Prepare a fast retransmission during a handshake after a client
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002444 * has resent Initial packets. According to the RFC a server may retransmit
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002445 * Initial packets send them coalescing with others (Handshake here).
2446 * (Listener only function).
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002447 */
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002448static void qc_prep_hdshk_fast_retrans(struct quic_conn *qc,
2449 struct list *ifrms, struct list *hfrms)
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002450{
2451 struct list itmp = LIST_HEAD_INIT(itmp);
2452 struct list htmp = LIST_HEAD_INIT(htmp);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002453
2454 struct quic_enc_level *iqel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
2455 struct quic_enc_level *hqel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
2456 struct quic_enc_level *qel = iqel;
2457 struct eb_root *pkts;
2458 struct eb64_node *node;
2459 struct quic_tx_packet *pkt;
2460 struct list *tmp = &itmp;
2461
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002462 TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002463 start:
2464 pkt = NULL;
2465 pkts = &qel->pktns->tx.pkts;
2466 node = eb64_first(pkts);
2467 /* Skip the empty packet (they have already been retransmitted) */
2468 while (node) {
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02002469 pkt = eb64_entry(node, struct quic_tx_packet, pn_node);
Frédéric Lécailleb44cbc62022-04-21 17:58:46 +02002470 if (!LIST_ISEMPTY(&pkt->frms) && !(pkt->flags & QUIC_FL_TX_PACKET_COALESCED))
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002471 break;
2472 node = eb64_next(node);
2473 }
2474
2475 if (!pkt)
2476 goto end;
2477
Frédéric Lécaille12fd2592022-03-31 08:42:06 +02002478 /* When building a packet from another one, the field which may increase the
2479 * packet size is the packet number. And the maximum increase is 4 bytes.
2480 */
2481 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc) &&
2482 pkt->len + 4 > 3 * qc->rx.bytes - qc->tx.prep_bytes) {
2483 TRACE_PROTO("anti-amplification limit would be reached", QUIC_EV_CONN_PRSAFRM, qc);
2484 goto end;
2485 }
2486
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002487 qel->pktns->tx.pto_probe += 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002488
2489 /* No risk to loop here, #packet per datagram is bounded */
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002490 requeue:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002491 TRACE_DEVEL("duplicating packet", QUIC_EV_CONN_PRSAFRM, qc, NULL, &pkt->pn_node.key);
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002492 qc_dup_pkt_frms(qc, &pkt->frms, tmp);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002493 if (qel == iqel) {
2494 if (pkt->next && pkt->next->type == QUIC_PACKET_TYPE_HANDSHAKE) {
2495 pkt = pkt->next;
2496 tmp = &htmp;
2497 hqel->pktns->tx.pto_probe += 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002498 TRACE_DEVEL("looping for next packet", QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002499 goto requeue;
2500 }
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002501 }
Frédéric Lécaille04e63aa2022-01-17 18:16:27 +01002502
2503 end:
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002504 LIST_SPLICE(ifrms, &itmp);
2505 LIST_SPLICE(hfrms, &htmp);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002506
2507 TRACE_LEAVE(QUIC_EV_CONN_PRSAFRM, qc);
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002508}
2509
Frédéric Lécaille6f7607e2022-05-25 22:25:37 +02002510static void qc_cc_err_count_inc(struct quic_conn *qc, struct quic_frame *frm)
Frédéric Lécaille3ccea6d2022-05-23 22:54:54 +02002511{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002512 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
2513
Frédéric Lécaille6f7607e2022-05-25 22:25:37 +02002514 if (frm->type == QUIC_FT_CONNECTION_CLOSE)
2515 quic_stats_transp_err_count_inc(qc->prx_counters, frm->connection_close.error_code);
2516 else if (frm->type == QUIC_FT_CONNECTION_CLOSE_APP) {
2517 if (qc->mux_state != QC_MUX_READY || !qc->qcc->app_ops->inc_err_cnt)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002518 goto out;
Frédéric Lécaille6f7607e2022-05-25 22:25:37 +02002519
2520 qc->qcc->app_ops->inc_err_cnt(qc->qcc->ctx, frm->connection_close_app.error_code);
2521 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002522
2523 out:
2524 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Frédéric Lécaille3ccea6d2022-05-23 22:54:54 +02002525}
2526
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002527/* Enqueue a STOP_SENDING frame to send into 1RTT packet number space
2528 * frame list to send.
2529 * Return 1 if succeeded, 0 if not.
2530 */
2531static int qc_stop_sending_frm_enqueue(struct quic_conn *qc, uint64_t id)
2532{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002533 int ret = 0;
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002534 struct quic_frame *frm;
2535 struct quic_enc_level *qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
2536 uint64_t app_error_code;
2537
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002538 TRACE_ENTER(QUIC_EV_CONN_PRSHPKT, qc);
2539
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002540 /* TODO: the mux may be released, we cannot have more
2541 * information about the application error code to send
2542 * at this time.
2543 */
2544 app_error_code = H3_REQUEST_REJECTED;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002545 // fixme: zalloc
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002546 frm = pool_zalloc(pool_head_quic_frame);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002547 if (!frm) {
2548 TRACE_ERROR("failed to allocate quic_frame", QUIC_EV_CONN_PRSHPKT, qc);
2549 goto out;
2550 }
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002551
2552 frm->type = QUIC_FT_STOP_SENDING;
2553 frm->stop_sending.id = id;
2554 frm->stop_sending.app_error_code = app_error_code;
2555 LIST_INIT(&frm->reflist);
2556 LIST_APPEND(&qel->pktns->tx.frms, &frm->list);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002557 ret = 1;
2558 out:
2559 TRACE_LEAVE(QUIC_EV_CONN_PRSHPKT, qc);
2560 return ret;
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002561}
2562
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002563/* Parse all the frames of <pkt> QUIC packet for QUIC connection with <ctx>
2564 * as I/O handler context and <qel> as encryption level.
2565 * Returns 1 if succeeded, 0 if failed.
2566 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002567static 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 +01002568 struct quic_enc_level *qel)
2569{
2570 struct quic_frame frm;
2571 const unsigned char *pos, *end;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01002572 struct quic_conn *qc = ctx->qc;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002573 int fast_retrans = 0, ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002574
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002575 TRACE_ENTER(QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002576 /* Skip the AAD */
2577 pos = pkt->data + pkt->aad_len;
2578 end = pkt->data + pkt->len;
2579
2580 while (pos < end) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002581 if (!qc_parse_frm(&frm, pkt, &pos, end, qc)) {
2582 // trace already emitted by function above
2583 goto leave;
2584 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002585
Frédéric Lécaille1ede8232021-12-23 14:11:25 +01002586 TRACE_PROTO("RX frame", QUIC_EV_CONN_PSTRM, qc, &frm);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002587 switch (frm.type) {
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002588 case QUIC_FT_PADDING:
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002589 break;
2590 case QUIC_FT_PING:
2591 break;
2592 case QUIC_FT_ACK:
2593 {
2594 unsigned int rtt_sample;
2595
2596 rtt_sample = 0;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002597 if (!qc_parse_ack_frm(qc, &frm, qel, &rtt_sample, &pos, end)) {
2598 // trace already emitted by function above
2599 goto leave;
2600 }
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002601
2602 if (rtt_sample) {
2603 unsigned int ack_delay;
2604
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002605 ack_delay = !quic_application_pktns(qel->pktns, qc) ? 0 :
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002606 qc->state >= QUIC_HS_ST_CONFIRMED ?
Frédéric Lécaille22576a22021-12-28 14:27:43 +01002607 MS_TO_TICKS(QUIC_MIN(quic_ack_delay_ms(&frm.ack, qc), qc->max_ack_delay)) :
2608 MS_TO_TICKS(quic_ack_delay_ms(&frm.ack, qc));
Amaury Denoyelle17a74162021-12-21 14:45:39 +01002609 quic_loss_srtt_update(&qc->path->loss, rtt_sample, ack_delay, qc);
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002610 }
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002611 break;
2612 }
Frédéric Lécaillee06ca652022-05-29 11:48:58 +02002613 case QUIC_FT_RESET_STREAM:
2614 /* TODO: handle this frame at STREAM level */
2615 break;
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002616 case QUIC_FT_STOP_SENDING:
Amaury Denoyellea5b50752022-07-04 11:44:53 +02002617 {
2618 struct quic_stop_sending *stop_sending = &frm.stop_sending;
2619 if (qc->mux_state == QC_MUX_READY) {
2620 if (qcc_recv_stop_sending(qc->qcc, stop_sending->id,
2621 stop_sending->app_error_code)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002622 TRACE_ERROR("qcc_recv_stop_sending() failed", QUIC_EV_CONN_PRSHPKT, qc);
2623 goto leave;
Amaury Denoyellea5b50752022-07-04 11:44:53 +02002624 }
2625 }
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002626 break;
Amaury Denoyellea5b50752022-07-04 11:44:53 +02002627 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002628 case QUIC_FT_CRYPTO:
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002629 {
2630 struct quic_rx_crypto_frm *cf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002631
Frédéric Lécaillebd242082022-02-25 17:17:59 +01002632 if (unlikely(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD)) {
Frédéric Lécaille917a7db2022-01-03 17:00:35 +01002633 /* XXX TO DO: <cfdebug> is used only for the traces. */
2634 struct quic_rx_crypto_frm cfdebug = { };
2635
2636 cfdebug.offset_node.key = frm.crypto.offset;
2637 cfdebug.len = frm.crypto.len;
2638 TRACE_PROTO("CRYPTO data discarded",
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002639 QUIC_EV_CONN_RXPKT, qc, pkt, &cfdebug);
Frédéric Lécaille917a7db2022-01-03 17:00:35 +01002640 break;
2641 }
2642
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002643 if (unlikely(frm.crypto.offset < qel->rx.crypto.offset)) {
2644 if (frm.crypto.offset + frm.crypto.len <= qel->rx.crypto.offset) {
2645 /* XXX TO DO: <cfdebug> is used only for the traces. */
2646 struct quic_rx_crypto_frm cfdebug = { };
2647
2648 cfdebug.offset_node.key = frm.crypto.offset;
2649 cfdebug.len = frm.crypto.len;
2650 /* Nothing to do */
2651 TRACE_PROTO("Already received CRYPTO data",
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002652 QUIC_EV_CONN_RXPKT, qc, pkt, &cfdebug);
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002653 if (qc_is_listener(ctx->qc) &&
Frédéric Lécaillebb995ea2022-09-07 17:34:18 +02002654 qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL] &&
2655 !(qc->flags & QUIC_FL_CONN_HANDSHAKE_SPEED_UP))
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002656 fast_retrans = 1;
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002657 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002658 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002659 else {
2660 size_t diff = qel->rx.crypto.offset - frm.crypto.offset;
2661 /* XXX TO DO: <cfdebug> is used only for the traces. */
2662 struct quic_rx_crypto_frm cfdebug = { };
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002663
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002664 cfdebug.offset_node.key = frm.crypto.offset;
2665 cfdebug.len = frm.crypto.len;
2666 TRACE_PROTO("Partially already received CRYPTO data",
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002667 QUIC_EV_CONN_RXPKT, qc, pkt, &cfdebug);
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002668 frm.crypto.len -= diff;
2669 frm.crypto.data += diff;
2670 frm.crypto.offset = qel->rx.crypto.offset;
2671 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002672 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002673
2674 if (frm.crypto.offset == qel->rx.crypto.offset) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002675 /* XXX TO DO: <cf> is used only for the traces. */
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002676 struct quic_rx_crypto_frm cfdebug = { };
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002677
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002678 cfdebug.offset_node.key = frm.crypto.offset;
2679 cfdebug.len = frm.crypto.len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002680 if (!qc_provide_cdata(qel, ctx,
2681 frm.crypto.data, frm.crypto.len,
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002682 pkt, &cfdebug)) {
2683 // trace already emitted by function above
2684 goto leave;
2685 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002686
2687 break;
2688 }
2689
2690 /* frm.crypto.offset > qel->rx.crypto.offset */
2691 cf = pool_alloc(pool_head_quic_rx_crypto_frm);
2692 if (!cf) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002693 TRACE_ERROR("CRYPTO frame allocation failed",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002694 QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002695 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002696 }
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002697
2698 cf->offset_node.key = frm.crypto.offset;
2699 cf->len = frm.crypto.len;
2700 cf->data = frm.crypto.data;
2701 cf->pkt = pkt;
2702 eb64_insert(&qel->rx.crypto.frms, &cf->offset_node);
2703 quic_rx_packet_refinc(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002704 break;
Frédéric Lécaillef9cb3a92021-12-02 11:25:58 +01002705 }
Frédéric Lécailled8b84432021-12-10 15:18:36 +01002706 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002707 {
2708 struct quic_stream *stream = &frm.stream;
Frédéric Lécailled62240c2022-05-02 18:52:58 +02002709 unsigned nb_streams = qc->rx.strms[qcs_id_type(stream->id)].nb_streams;
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002710
Frédéric Lécailled62240c2022-05-02 18:52:58 +02002711 /* The upper layer may not be allocated. */
2712 if (qc->mux_state != QC_MUX_READY) {
2713 if ((stream->id >> QCS_ID_TYPE_SHIFT) < nb_streams) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002714 TRACE_DATA("Already closed stream", QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécailled62240c2022-05-02 18:52:58 +02002715 break;
2716 }
2717 else {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002718 TRACE_DEVEL("No mux for new stream", QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaille4df2fe92022-05-29 11:36:03 +02002719 if (!qc_stop_sending_frm_enqueue(qc, stream->id))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002720 TRACE_ERROR("could not enqueue STOP_SENDING frame", QUIC_EV_CONN_PRSHPKT, qc);
2721 /* This packet will not be acknowledged */
2722 goto leave;
Frédéric Lécailled62240c2022-05-02 18:52:58 +02002723 }
2724 }
Frédéric Lécaille12aa26b2022-03-21 11:37:13 +01002725
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002726 if (!qc_handle_strm_frm(pkt, stream, qc)) {
2727 TRACE_ERROR("qc_handle_strm_frm() failed", QUIC_EV_CONN_PRSHPKT, qc);
2728 goto leave;
2729 }
Frédéric Lécailledfbae762021-02-18 09:59:01 +01002730
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01002731 break;
2732 }
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002733 case QUIC_FT_MAX_DATA:
Amaury Denoyelle1e5e5132022-03-08 16:23:03 +01002734 if (qc->mux_state == QC_MUX_READY) {
2735 struct quic_max_data *data = &frm.max_data;
2736 qcc_recv_max_data(qc->qcc, data->max_data);
2737 }
2738 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002739 case QUIC_FT_MAX_STREAM_DATA:
Amaury Denoyelle8727ff42022-03-08 10:39:55 +01002740 if (qc->mux_state == QC_MUX_READY) {
2741 struct quic_max_stream_data *data = &frm.max_stream_data;
Amaury Denoyelleb68559a2022-07-06 15:45:20 +02002742 if (qcc_recv_max_stream_data(qc->qcc, data->id,
2743 data->max_stream_data)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002744 TRACE_ERROR("qcc_recv_max_stream_data() failed", QUIC_EV_CONN_PRSHPKT, qc);
2745 goto leave;
Amaury Denoyelleb68559a2022-07-06 15:45:20 +02002746 }
Amaury Denoyelle8727ff42022-03-08 10:39:55 +01002747 }
2748 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002749 case QUIC_FT_MAX_STREAMS_BIDI:
2750 case QUIC_FT_MAX_STREAMS_UNI:
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02002751 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002752 case QUIC_FT_DATA_BLOCKED:
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02002753 HA_ATOMIC_INC(&qc->prx_counters->data_blocked);
2754 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002755 case QUIC_FT_STREAM_DATA_BLOCKED:
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02002756 HA_ATOMIC_INC(&qc->prx_counters->stream_data_blocked);
2757 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002758 case QUIC_FT_STREAMS_BLOCKED_BIDI:
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02002759 HA_ATOMIC_INC(&qc->prx_counters->streams_data_blocked_bidi);
2760 break;
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002761 case QUIC_FT_STREAMS_BLOCKED_UNI:
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02002762 HA_ATOMIC_INC(&qc->prx_counters->streams_data_blocked_uni);
Frédéric Lécaillef366cb72021-11-18 10:57:18 +01002763 break;
Frédéric Lécaille0c140202020-12-09 15:56:48 +01002764 case QUIC_FT_NEW_CONNECTION_ID:
Frédéric Lécaille2cca2412022-01-21 13:55:03 +01002765 case QUIC_FT_RETIRE_CONNECTION_ID:
2766 /* XXX TO DO XXX */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002767 break;
2768 case QUIC_FT_CONNECTION_CLOSE:
2769 case QUIC_FT_CONNECTION_CLOSE_APP:
Frédéric Lécaille6f7607e2022-05-25 22:25:37 +02002770 /* Increment the error counters */
2771 qc_cc_err_count_inc(qc, &frm);
Frédéric Lécaille47756802022-03-25 09:12:16 +01002772 if (!(qc->flags & QUIC_FL_CONN_DRAINING)) {
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02002773 if (!(qc->flags & QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED)) {
2774 qc->flags |= QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED;
Frédéric Lécailleeb791452022-05-24 16:01:39 +02002775 HA_ATOMIC_DEC(&qc->prx_counters->half_open_conn);
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02002776 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002777 TRACE_STATE("Entering draining state", QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaille47756802022-03-25 09:12:16 +01002778 /* RFC 9000 10.2. Immediate Close:
2779 * The closing and draining connection states exist to ensure
2780 * that connections close cleanly and that delayed or reordered
2781 * packets are properly discarded. These states SHOULD persist
2782 * for at least three times the current PTO interval...
2783 *
2784 * Rearm the idle timeout only one time when entering draining
2785 * state.
2786 */
2787 qc_idle_timer_do_rearm(qc);
2788 qc->flags |= QUIC_FL_CONN_DRAINING|QUIC_FL_CONN_IMMEDIATE_CLOSE;
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02002789 qc_notify_close(qc);
Frédéric Lécaille47756802022-03-25 09:12:16 +01002790 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002791 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002792 case QUIC_FT_HANDSHAKE_DONE:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002793 if (qc_is_listener(ctx->qc)) {
2794 TRACE_ERROR("non accepted QUIC_FT_HANDSHAKE_DONE frame",
2795 QUIC_EV_CONN_PRSHPKT, qc);
2796 goto leave;
2797 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002798
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002799 qc->state = QUIC_HS_ST_CONFIRMED;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002800 break;
2801 default:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002802 TRACE_ERROR("unknosw frame type", QUIC_EV_CONN_PRSHPKT, qc);
2803 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002804 }
2805 }
2806
Frédéric Lécaille44ae7522022-03-21 12:18:00 +01002807 /* Flag this packet number space as having received a packet. */
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02002808 qel->pktns->flags |= QUIC_FL_PKTNS_PKT_RECEIVED;
Frédéric Lécaille44ae7522022-03-21 12:18:00 +01002809
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002810 if (fast_retrans) {
2811 struct quic_enc_level *iqel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
2812 struct quic_enc_level *hqel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
2813
Frédéric Lécaillebb995ea2022-09-07 17:34:18 +02002814 TRACE_PROTO("speeding up handshake completion", QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002815 qc_prep_hdshk_fast_retrans(qc, &iqel->pktns->tx.frms, &hqel->pktns->tx.frms);
Frédéric Lécaillebb995ea2022-09-07 17:34:18 +02002816 qc->flags |= QUIC_FL_CONN_HANDSHAKE_SPEED_UP;
Frédéric Lécaillee248e372022-04-25 09:25:56 +02002817 }
Frédéric Lécaille3bb457c2021-12-30 16:14:20 +01002818
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002819 /* The server must switch from INITIAL to HANDSHAKE handshake state when it
2820 * has successfully parse a Handshake packet. The Initial encryption must also
2821 * be discarded.
2822 */
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01002823 if (pkt->type == QUIC_PACKET_TYPE_HANDSHAKE && qc_is_listener(ctx->qc)) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002824 if (qc->state >= QUIC_HS_ST_SERVER_INITIAL) {
Frédéric Lécaille05bd92b2022-03-29 19:09:46 +02002825 if (!(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].tls_ctx.flags &
2826 QUIC_FL_TLS_SECRETS_DCD)) {
2827 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
2828 TRACE_PROTO("discarding Initial pktns", QUIC_EV_CONN_PRSHPKT, qc);
2829 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, qc);
2830 qc_set_timer(ctx->qc);
2831 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002832 qc_release_pktns_frms(qc, qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns);
Frédéric Lécaille05bd92b2022-03-29 19:09:46 +02002833 }
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002834 if (qc->state < QUIC_HS_ST_SERVER_HANDSHAKE)
2835 qc->state = QUIC_HS_ST_SERVER_HANDSHAKE;
Frédéric Lécaille8c27de72021-09-20 11:00:46 +02002836 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002837 }
2838
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002839 ret = 1;
2840 leave:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01002841 TRACE_LEAVE(QUIC_EV_CONN_PRSHPKT, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002842 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002843}
2844
Amaury Denoyelle5b689862022-08-08 16:07:30 +02002845/* Allocate Tx buffer from <qc> quic-conn if needed.
2846 *
2847 * Returns allocated buffer or NULL on error.
2848 */
2849static struct buffer *qc_txb_alloc(struct quic_conn *qc)
2850{
2851 struct buffer *buf = &qc->tx.buf;
2852 if (!b_alloc(buf))
2853 return NULL;
2854
2855 return buf;
2856}
2857
2858/* Free Tx buffer from <qc> if it is empty. */
2859static void qc_txb_release(struct quic_conn *qc)
2860{
2861 struct buffer *buf = &qc->tx.buf;
2862
2863 /* For the moment sending function is responsible to purge the buffer
2864 * entirely. It may change in the future but this requires to be able
2865 * to reuse old data.
2866 */
Amaury Denoyelle654269c2022-08-08 15:38:57 +02002867 BUG_ON_HOT(buf && b_data(buf));
Amaury Denoyelle5b689862022-08-08 16:07:30 +02002868
2869 if (!b_data(buf)) {
2870 b_free(buf);
2871 offer_buffers(NULL, 1);
2872 }
2873}
2874
Amaury Denoyelle654269c2022-08-08 15:38:57 +02002875/* Commit a datagram payload written into <buf> of length <length>. <first_pkt>
2876 * must contains the address of the first packet stored in the payload.
2877 *
2878 * Caller is responsible that there is enough space in the buffer.
2879 */
2880static void qc_txb_store(struct buffer *buf, uint16_t length,
2881 struct quic_tx_packet *first_pkt)
2882{
2883 const size_t hdlen = sizeof(uint16_t) + sizeof(void *);
2884 BUG_ON_HOT(b_contig_space(buf) < hdlen); /* this must not happen */
2885
2886 write_u16(b_tail(buf), length);
2887 write_ptr(b_tail(buf) + sizeof(length), first_pkt);
2888 b_add(buf, hdlen + length);
2889}
2890
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002891/* Returns 1 if a packet may be built for <qc> from <qel> encryption level
2892 * with <frms> as ack-eliciting frame list to send, 0 if not.
2893 * <cc> must equal to 1 if an immediate close was asked, 0 if not.
2894 * <probe> must equalt to 1 if a probing packet is required, 0 if not.
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02002895 * <force_ack> may be set to 1 if you want to force an ack.
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002896 */
2897static int qc_may_build_pkt(struct quic_conn *qc, struct list *frms,
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02002898 struct quic_enc_level *qel, int cc, int probe, int force_ack)
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002899{
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02002900 unsigned int must_ack = force_ack ||
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02002901 (LIST_ISEMPTY(frms) && (qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED));
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002902
2903 /* Do not build any more packet if the TX secrets are not available or
2904 * if there is nothing to send, i.e. if no CONNECTION_CLOSE or ACK are required
2905 * and if there is no more packets to send upon PTO expiration
2906 * and if there is no more ack-eliciting frames to send or in flight
2907 * congestion control limit is reached for prepared data
2908 */
2909 if (!(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET) ||
2910 (!cc && !probe && !must_ack &&
2911 (LIST_ISEMPTY(frms) || qc->path->prep_in_flight >= qc->path->cwnd))) {
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002912 return 0;
2913 }
2914
2915 return 1;
2916}
2917
Amaury Denoyellef2476052022-08-04 16:19:57 +02002918/* Prepare as much as possible QUIC packets for sending from prebuilt frames
2919 * <frms>. Each packet is stored in a distinct datagram written to <buf>.
2920 *
2921 * Each datagram is prepended by a two fields header : the datagram length and
2922 * the address of the packet contained in the datagram.
2923 *
2924 * Returns the number of bytes prepared in packets if succeeded (may be 0), or
2925 * -1 if something wrong happened.
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002926 */
Amaury Denoyellef2476052022-08-04 16:19:57 +02002927static int qc_prep_app_pkts(struct quic_conn *qc, struct buffer *buf,
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01002928 struct list *frms)
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002929{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002930 int ret = -1;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002931 struct quic_enc_level *qel;
Amaury Denoyelle654269c2022-08-08 15:38:57 +02002932 unsigned char *end, *pos;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002933 struct quic_tx_packet *pkt;
2934 size_t total;
Amaury Denoyellef2476052022-08-04 16:19:57 +02002935 /* Each datagram is prepended with its length followed by the address
2936 * of the first packet in the datagram.
2937 */
2938 const size_t dg_headlen = sizeof(uint16_t) + sizeof(pkt);
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002939
2940 TRACE_ENTER(QUIC_EV_CONN_PHPKTS, qc);
Amaury Denoyellef2476052022-08-04 16:19:57 +02002941
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002942 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
2943 total = 0;
Amaury Denoyelle654269c2022-08-08 15:38:57 +02002944 pos = (unsigned char *)b_tail(buf);
Amaury Denoyellef2476052022-08-04 16:19:57 +02002945 while (b_contig_space(buf) >= (int)qc->path->mtu + dg_headlen) {
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002946 int err, probe, cc;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002947
2948 TRACE_POINT(QUIC_EV_CONN_PHPKTS, qc, qel);
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002949 probe = 0;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02002950 cc = qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002951 /* We do not probe if an immediate close was asked */
2952 if (!cc)
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002953 probe = qel->pktns->tx.pto_probe;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02002954
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02002955 if (!qc_may_build_pkt(qc, frms, qel, cc, probe, 0))
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002956 break;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002957
2958 /* Leave room for the datagram header */
2959 pos += dg_headlen;
2960 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc)) {
Frédéric Lécaille628e89c2022-06-24 12:13:53 +02002961 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 +01002962 }
2963 else {
2964 end = pos + qc->path->mtu;
2965 }
2966
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02002967 pkt = qc_build_pkt(&pos, end, qel, &qel->tls_ctx, frms, qc, NULL, 0,
2968 QUIC_PACKET_TYPE_SHORT, 0, 0, probe, cc, &err);
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002969 switch (err) {
2970 case -2:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002971 // trace already emitted by function above
2972 goto leave;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002973 case -1:
Frédéric Lécaillee9a974a2022-03-13 19:19:12 +01002974 /* As we provide qc_build_pkt() with an enough big buffer to fulfill an
2975 * MTU, we are here because of the congestion control window. There is
2976 * no need to try to reuse this buffer.
2977 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002978 TRACE_DEVEL("could not prepare anymore packet", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillee9a974a2022-03-13 19:19:12 +01002979 goto out;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002980 default:
2981 break;
2982 }
2983
2984 /* This is to please to GCC. We cannot have (err >= 0 && !pkt) */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002985 BUG_ON(!pkt);
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002986
Frédéric Lécaille1809c332022-04-25 10:24:12 +02002987 if (qc->flags & QUIC_FL_CONN_RETRANS_OLD_DATA)
2988 pkt->flags |= QUIC_FL_TX_PACKET_PROBE_WITH_OLD_DATA;
2989
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002990 total += pkt->len;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002991
Amaury Denoyellef2476052022-08-04 16:19:57 +02002992 /* Write datagram header. */
Amaury Denoyelle654269c2022-08-08 15:38:57 +02002993 qc_txb_store(buf, pkt->len, pkt);
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002994 }
2995
2996 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02002997 ret = total;
2998 leave:
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01002999 TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003000 return ret;
Frédéric Lécaille1c5968b2022-02-25 17:15:21 +01003001}
3002
Amaury Denoyellef2476052022-08-04 16:19:57 +02003003/* Prepare as much as possible QUIC packets for sending from prebuilt frames
3004 * <frms>. Several packets can be regrouped in a single datagram. The result is
3005 * written into <buf>.
3006 *
3007 * Each datagram is prepended by a two fields header : the datagram length and
3008 * the address of first packet in the datagram.
3009 *
3010 * Returns the number of bytes prepared in packets if succeeded (may be 0), or
3011 * -1 if something wrong happened.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003012 */
Amaury Denoyellef2476052022-08-04 16:19:57 +02003013static int qc_prep_pkts(struct quic_conn *qc, struct buffer *buf,
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003014 enum quic_tls_enc_level tel, struct list *tel_frms,
3015 enum quic_tls_enc_level next_tel, struct list *next_tel_frms)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003016{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003017 struct quic_enc_level *qel;
Amaury Denoyelle654269c2022-08-08 15:38:57 +02003018 unsigned char *end, *pos;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003019 struct quic_tx_packet *first_pkt, *cur_pkt, *prv_pkt;
3020 /* length of datagrams */
3021 uint16_t dglen;
3022 size_t total;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003023 int ret = -1, padding;
Amaury Denoyellef2476052022-08-04 16:19:57 +02003024 /* Each datagram is prepended with its length followed by the address
3025 * of the first packet in the datagram.
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003026 */
Amaury Denoyellef2476052022-08-04 16:19:57 +02003027 const size_t dg_headlen = sizeof(uint16_t) + sizeof(first_pkt);
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003028 struct list *frms;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003029
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003030 TRACE_ENTER(QUIC_EV_CONN_PHPKTS, qc);
3031
Amaury Denoyellef2476052022-08-04 16:19:57 +02003032 /* Currently qc_prep_pkts() does not handle buffer wrapping so the
3033 * caller must ensure that buf is resetted.
3034 */
3035 BUG_ON_HOT(buf->head || buf->data);
3036
Frédéric Lécaille99942d62022-01-07 14:32:31 +01003037 total = 0;
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003038 qel = &qc->els[tel];
3039 frms = tel_frms;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003040 dglen = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01003041 padding = 0;
Amaury Denoyelle654269c2022-08-08 15:38:57 +02003042 pos = (unsigned char *)b_head(buf);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003043 first_pkt = prv_pkt = NULL;
Amaury Denoyellef2476052022-08-04 16:19:57 +02003044 while (b_contig_space(buf) >= (int)qc->path->mtu + dg_headlen || prv_pkt) {
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003045 int err, probe, cc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003046 enum quic_pkt_type pkt_type;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02003047 struct quic_tls_ctx *tls_ctx;
3048 const struct quic_version *ver;
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02003049 int force_ack = (qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) &&
3050 (qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL] ||
3051 qel == &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003052
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003053 TRACE_POINT(QUIC_EV_CONN_PHPKTS, qc, qel);
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003054 probe = 0;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003055 cc = qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003056 /* We do not probe if an immediate close was asked */
3057 if (!cc)
Frédéric Lécaille94fca872022-01-19 18:54:18 +01003058 probe = qel->pktns->tx.pto_probe;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003059
Frédéric Lécaille57bddbc2022-06-20 17:51:24 +02003060 if (!qc_may_build_pkt(qc, frms, qel, cc, probe, force_ack)) {
Amaury Denoyelle654269c2022-08-08 15:38:57 +02003061 if (prv_pkt)
3062 qc_txb_store(buf, dglen, first_pkt);
Frédéric Lécaille39ba1c32022-01-21 16:52:56 +01003063 /* Let's select the next encryption level */
3064 if (tel != next_tel && next_tel != QUIC_TLS_ENC_LEVEL_NONE) {
3065 tel = next_tel;
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003066 frms = next_tel_frms;
Frédéric Lécaille39ba1c32022-01-21 16:52:56 +01003067 qel = &qc->els[tel];
3068 /* Build a new datagram */
3069 prv_pkt = NULL;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003070 TRACE_DEVEL("next encryption level selected", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaille39ba1c32022-01-21 16:52:56 +01003071 continue;
3072 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003073 break;
3074 }
3075
3076 pkt_type = quic_tls_level_pkt_type(tel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003077 if (!prv_pkt) {
3078 /* Leave room for the datagram header */
3079 pos += dg_headlen;
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01003080 if (!quic_peer_validated_addr(qc) && qc_is_listener(qc)) {
Frédéric Lécaille628e89c2022-06-24 12:13:53 +02003081 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 +01003082 }
3083 else {
3084 end = pos + qc->path->mtu;
3085 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003086 }
3087
Frédéric Lécaille301425b2022-06-14 17:40:39 +02003088 if (qc->negotiated_version) {
3089 ver = qc->negotiated_version;
3090 if (qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL])
3091 tls_ctx = &qc->negotiated_ictx;
3092 else
3093 tls_ctx = &qel->tls_ctx;
3094 }
3095 else {
3096 ver = qc->original_version;
3097 tls_ctx = &qel->tls_ctx;
3098 }
3099
3100 cur_pkt = qc_build_pkt(&pos, end, qel, tls_ctx, frms,
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02003101 qc, ver, dglen, pkt_type,
3102 force_ack, padding, probe, cc, &err);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003103 switch (err) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003104 case -2:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003105 // trace already emitted by function above
3106 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003107 case -1:
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003108 /* If there was already a correct packet present, set the
3109 * current datagram as prepared into <cbuf>.
3110 */
Amaury Denoyelle654269c2022-08-08 15:38:57 +02003111 if (prv_pkt)
3112 qc_txb_store(buf, dglen, first_pkt);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003113 TRACE_DEVEL("could not prepare anymore packet", QUIC_EV_CONN_PHPKTS, qc);
Amaury Denoyellef2476052022-08-04 16:19:57 +02003114 goto out;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003115 default:
Frédéric Lécaille63556772021-12-29 17:18:21 +01003116 break;
3117 }
Frédéric Lécaille67f47d02021-08-19 15:19:09 +02003118
Frédéric Lécaille63556772021-12-29 17:18:21 +01003119 /* This is to please to GCC. We cannot have (err >= 0 && !cur_pkt) */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003120 BUG_ON(!cur_pkt);
Frédéric Lécaille63556772021-12-29 17:18:21 +01003121
Frédéric Lécaille1809c332022-04-25 10:24:12 +02003122 if (qc->flags & QUIC_FL_CONN_RETRANS_OLD_DATA)
3123 cur_pkt->flags |= QUIC_FL_TX_PACKET_PROBE_WITH_OLD_DATA;
3124
Frédéric Lécaille63556772021-12-29 17:18:21 +01003125 total += cur_pkt->len;
3126 /* keep trace of the first packet in the datagram */
3127 if (!first_pkt)
3128 first_pkt = cur_pkt;
3129 /* Attach the current one to the previous one */
Frédéric Lécailleb44cbc62022-04-21 17:58:46 +02003130 if (prv_pkt) {
Frédéric Lécaille63556772021-12-29 17:18:21 +01003131 prv_pkt->next = cur_pkt;
Frédéric Lécailleb44cbc62022-04-21 17:58:46 +02003132 cur_pkt->flags |= QUIC_FL_TX_PACKET_COALESCED;
3133 }
Frédéric Lécaille63556772021-12-29 17:18:21 +01003134 /* Let's say we have to build a new dgram */
3135 prv_pkt = NULL;
3136 dglen += cur_pkt->len;
3137 /* Client: discard the Initial encryption keys as soon as
3138 * a handshake packet could be built.
3139 */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003140 if (qc->state == QUIC_HS_ST_CLIENT_INITIAL &&
Frédéric Lécaille63556772021-12-29 17:18:21 +01003141 pkt_type == QUIC_PACKET_TYPE_HANDSHAKE) {
3142 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
3143 TRACE_PROTO("discarding Initial pktns", QUIC_EV_CONN_PHPKTS, qc);
3144 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, qc);
3145 qc_set_timer(qc);
Frédéric Lécaillea6255f52022-01-19 17:29:48 +01003146 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003147 qc_release_pktns_frms(qc, qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns);
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003148 qc->state = QUIC_HS_ST_CLIENT_HANDSHAKE;
Frédéric Lécaille63556772021-12-29 17:18:21 +01003149 }
3150 /* If the data for the current encryption level have all been sent,
3151 * select the next level.
3152 */
3153 if ((tel == QUIC_TLS_ENC_LEVEL_INITIAL || tel == QUIC_TLS_ENC_LEVEL_HANDSHAKE) &&
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02003154 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 +01003155 /* If QUIC_TLS_ENC_LEVEL_HANDSHAKE was already reached let's try QUIC_TLS_ENC_LEVEL_APP */
3156 if (tel == QUIC_TLS_ENC_LEVEL_HANDSHAKE && next_tel == tel)
3157 next_tel = QUIC_TLS_ENC_LEVEL_APP;
3158 tel = next_tel;
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003159 if (tel == QUIC_TLS_ENC_LEVEL_APP)
3160 frms = &qc->els[tel].pktns->tx.frms;
3161 else
3162 frms = next_tel_frms;
Frédéric Lécaille63556772021-12-29 17:18:21 +01003163 qel = &qc->els[tel];
Frédéric Lécaillefc888442022-04-11 15:39:34 +02003164 if (!LIST_ISEMPTY(frms)) {
Frédéric Lécaille63556772021-12-29 17:18:21 +01003165 /* If there is data for the next level, do not
3166 * consume a datagram.
3167 */
3168 prv_pkt = cur_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003169 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003170 }
Amaury Denoyellef2476052022-08-04 16:19:57 +02003171
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003172 /* If we have to build a new datagram, set the current datagram as
3173 * prepared into <cbuf>.
3174 */
3175 if (!prv_pkt) {
Amaury Denoyelle654269c2022-08-08 15:38:57 +02003176 qc_txb_store(buf, dglen, first_pkt);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003177 first_pkt = NULL;
3178 dglen = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01003179 padding = 0;
3180 }
3181 else if (prv_pkt->type == QUIC_TLS_ENC_LEVEL_INITIAL &&
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +01003182 (!qc_is_listener(qc) ||
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01003183 prv_pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)) {
3184 padding = 1;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003185 }
3186 }
3187
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003188 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003189 ret = total;
3190 leave:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003191 TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003192 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003193}
3194
Amaury Denoyellef2476052022-08-04 16:19:57 +02003195/* Send datagrams stored in <buf>.
3196 *
3197 * This function always returns 1 for success. Even if sendto() syscall failed,
3198 * buffer is drained and packets are considered as emitted. QUIC loss detection
3199 * mechanism is used as a back door way to retry sending.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003200 */
Amaury Denoyellef2476052022-08-04 16:19:57 +02003201int qc_send_ppkts(struct buffer *buf, struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003202{
3203 struct quic_conn *qc;
Amaury Denoyelle906b0582022-08-05 15:22:28 +02003204 char skip_sendto = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003205
Amaury Denoyellec15dd922021-12-21 11:41:52 +01003206 qc = ctx->qc;
Frédéric Lécaille8726d632022-05-03 10:32:21 +02003207 TRACE_ENTER(QUIC_EV_CONN_SPPKTS, qc);
Amaury Denoyellef2476052022-08-04 16:19:57 +02003208 while (b_contig_data(buf, 0)) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003209 unsigned char *pos;
3210 struct buffer tmpbuf = { };
3211 struct quic_tx_packet *first_pkt, *pkt, *next_pkt;
3212 uint16_t dglen;
3213 size_t headlen = sizeof dglen + sizeof first_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003214 unsigned int time_sent;
3215
Amaury Denoyellef2476052022-08-04 16:19:57 +02003216 pos = (unsigned char *)b_head(buf);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003217 dglen = read_u16(pos);
Amaury Denoyellef2476052022-08-04 16:19:57 +02003218 BUG_ON_HOT(!dglen); /* this should not happen */
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003219
3220 pos += sizeof dglen;
3221 first_pkt = read_ptr(pos);
3222 pos += sizeof first_pkt;
3223 tmpbuf.area = (char *)pos;
3224 tmpbuf.size = tmpbuf.data = dglen;
3225
Frédéric Lécaille3a561372022-08-29 18:05:44 +02003226 TRACE_DATA("send dgram", QUIC_EV_CONN_SPPKTS, qc);
Amaury Denoyelle906b0582022-08-05 15:22:28 +02003227 /* If sendto is on error just skip the call to it for the rest
3228 * of the loop but continue to purge the buffer. Data will be
3229 * transmitted when QUIC packets are detected as lost on our
3230 * side.
3231 *
3232 * TODO use fd-monitoring to detect when send operation can be
3233 * retry. This should improve the bandwidth without relying on
3234 * retransmission timer. However, it requires a major rework on
3235 * quic-conn fd management.
3236 */
Amaury Denoyelle906b0582022-08-05 15:22:28 +02003237 if (!skip_sendto) {
3238 if (qc_snd_buf(qc, &tmpbuf, tmpbuf.data, 0)) {
3239 skip_sendto = 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003240 TRACE_ERROR("sendto error, simulate sending for the rest of data", QUIC_EV_CONN_SPPKTS, qc);
Amaury Denoyelle906b0582022-08-05 15:22:28 +02003241 }
3242 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003243
Amaury Denoyellef2476052022-08-04 16:19:57 +02003244 b_del(buf, dglen + headlen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003245 qc->tx.bytes += tmpbuf.data;
3246 time_sent = now_ms;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003247
3248 for (pkt = first_pkt; pkt; pkt = next_pkt) {
3249 pkt->time_sent = time_sent;
3250 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING) {
3251 pkt->pktns->tx.time_of_last_eliciting = time_sent;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01003252 qc->path->ifae_pkts++;
Frédéric Lécaille530601c2022-03-10 15:11:57 +01003253 if (qc->flags & QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ)
3254 qc_idle_timer_rearm(qc, 0);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003255 }
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02003256 if (!(qc->flags & QUIC_FL_CONN_CLOSING) &&
3257 (pkt->flags & QUIC_FL_TX_PACKET_CC)) {
3258 qc->flags |= QUIC_FL_CONN_CLOSING;
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02003259 qc_notify_close(qc);
3260
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02003261 /* RFC 9000 10.2. Immediate Close:
3262 * The closing and draining connection states exist to ensure
3263 * that connections close cleanly and that delayed or reordered
3264 * packets are properly discarded. These states SHOULD persist
3265 * for at least three times the current PTO interval...
3266 *
3267 * Rearm the idle timeout only one time when entering closing
3268 * state.
3269 */
3270 qc_idle_timer_do_rearm(qc);
3271 if (qc->timer_task) {
3272 task_destroy(qc->timer_task);
3273 qc->timer_task = NULL;
3274 }
3275 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02003276 qc->path->in_flight += pkt->in_flight_len;
3277 pkt->pktns->tx.in_flight += pkt->in_flight_len;
Frédéric Lécaille5f6c25e2022-08-24 16:23:44 +02003278 if (pkt->in_flight_len)
Frédéric Lécailleda9c4412022-08-22 18:47:51 +02003279 qc_set_timer(qc);
Frédéric Lécaille5f6c25e2022-08-24 16:23:44 +02003280 TRACE_DATA("sent pkt", QUIC_EV_CONN_SPPKTS, qc, pkt);
3281 next_pkt = pkt->next;
3282 quic_tx_packet_refinc(pkt);
3283 eb64_insert(&pkt->pktns->tx.pkts, &pkt->pn_node);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003284 }
3285 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003286
Frédéric Lécaille8726d632022-05-03 10:32:21 +02003287 TRACE_LEAVE(QUIC_EV_CONN_SPPKTS, qc);
3288
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003289 return 1;
3290}
3291
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003292/* Copy into <buf> buffer a stateless reset token depending on the
3293 * <salt> salt input. This is the cluster secret which will be derived
3294 * as HKDF input secret to generate this token.
3295 * Return 1 if succeeded, 0 if not.
3296 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003297static int quic_stateless_reset_token_cpy(struct quic_conn *qc,
3298 unsigned char *buf, size_t len,
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003299 const unsigned char *salt, size_t saltlen)
3300{
3301 /* Input secret */
3302 const unsigned char *key = (const unsigned char *)global.cluster_secret;
3303 size_t keylen = strlen(global.cluster_secret);
3304 /* Info */
3305 const unsigned char label[] = "stateless token";
3306 size_t labellen = sizeof label - 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003307 int ret;
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003308
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003309 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3310
3311 ret = quic_hkdf_extract_and_expand(EVP_sha256(), buf, len,
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003312 key, keylen, salt, saltlen, label, labellen);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003313 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
3314 return ret;
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003315}
3316
3317/* Initialize the stateless reset token attached to <cid> connection ID.
3318 * Returns 1 if succeeded, 0 if not.
3319 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003320static int quic_stateless_reset_token_init(struct quic_conn *qc,
3321 struct quic_connection_id *quic_cid)
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003322{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003323 int ret;
3324
3325 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3326
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003327 if (global.cluster_secret) {
3328 /* Output secret */
3329 unsigned char *token = quic_cid->stateless_reset_token;
3330 size_t tokenlen = sizeof quic_cid->stateless_reset_token;
3331 /* Salt */
3332 const unsigned char *cid = quic_cid->cid.data;
3333 size_t cidlen = quic_cid->cid.len;
3334
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003335 ret = quic_stateless_reset_token_cpy(qc, token, tokenlen, cid, cidlen);
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003336 }
3337 else {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003338 /* TODO: RAND_bytes() should be replaced */
3339 ret = RAND_bytes(quic_cid->stateless_reset_token,
3340 sizeof quic_cid->stateless_reset_token) == 1;
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003341 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003342
3343 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
3344 return ret;
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003345}
3346
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003347/* Allocate a new CID with <seq_num> as sequence number and attach it to <root>
3348 * ebtree.
3349 *
3350 * The CID is randomly generated in part with the result altered to be
3351 * associated with the current thread ID. This means this function must only
3352 * be called by the quic_conn thread.
3353 *
3354 * Returns the new CID if succeeded, NULL if not.
3355 */
3356static struct quic_connection_id *new_quic_cid(struct eb_root *root,
3357 struct quic_conn *qc,
3358 int seq_num)
3359{
3360 struct quic_connection_id *cid;
3361
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003362 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3363
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003364 cid = pool_alloc(pool_head_quic_connection_id);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003365 if (!cid) {
3366 TRACE_ERROR("cid allocation failed", QUIC_EV_CONN_TXPKT, qc);
3367 goto err;
3368 }
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003369
3370 cid->cid.len = QUIC_HAP_CID_LEN;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003371 /* TODO: RAND_bytes() should be replaced */
3372 if (RAND_bytes(cid->cid.data, cid->cid.len) != 1) {
3373 TRACE_ERROR("RAND_bytes() failed", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003374 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003375 }
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003376
3377 quic_pin_cid_to_tid(cid->cid.data, tid);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003378 if (quic_stateless_reset_token_init(qc, cid) != 1) {
3379 TRACE_ERROR("quic_stateless_reset_token_init() failed", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaille28a17952022-05-06 15:07:20 +02003380 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003381 }
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003382
3383 cid->qc = qc;
3384
3385 cid->seq_num.key = seq_num;
3386 cid->retire_prior_to = 0;
3387 /* insert the allocated CID in the quic_conn tree */
3388 eb64_insert(root, &cid->seq_num);
3389
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003390 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003391 return cid;
3392
3393 err:
3394 pool_free(pool_head_quic_connection_id, cid);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003395 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaille0226c522022-05-06 14:18:53 +02003396 return NULL;
3397}
3398
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003399/* Build all the frames which must be sent just after the handshake have succeeded.
3400 * This is essentially NEW_CONNECTION_ID frames. A QUIC server must also send
3401 * a HANDSHAKE_DONE frame.
3402 * Return 1 if succeeded, 0 if not.
3403 */
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02003404static int quic_build_post_handshake_frames(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003405{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003406 int ret = 0, i, first, max;
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02003407 struct quic_enc_level *qel;
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003408 struct quic_frame *frm, *frmbak;
3409 struct list frm_list = LIST_HEAD_INIT(frm_list);
3410 struct eb64_node *node;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003411
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003412 TRACE_ENTER(QUIC_EV_CONN_IO_CB, qc);
3413
Frédéric Lécaille522c65c2021-08-03 14:29:03 +02003414 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003415 /* Only servers must send a HANDSHAKE_DONE frame. */
Frédéric Lécaille1aa57d32022-01-12 09:46:02 +01003416 if (qc_is_listener(qc)) {
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);
3420 goto leave;
3421 }
Frédéric Lécaille153d4a82021-01-06 12:12:39 +01003422
Frédéric Lécailleb9171912022-04-21 17:32:10 +02003423 LIST_INIT(&frm->reflist);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003424 frm->type = QUIC_FT_HANDSHAKE_DONE;
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003425 LIST_APPEND(&frm_list, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003426 }
3427
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003428 /* Initialize <max> connection IDs minus one: there is
3429 * already one connection ID used for the current connection.
3430 */
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003431 first = 1;
3432 max = qc->tx.params.active_connection_id_limit;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003433
3434 /* TODO: check limit */
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003435 for (i = first; i < max; i++) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003436 struct quic_connection_id *cid;
3437
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003438 frm = pool_zalloc(pool_head_quic_frame);
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003439 if (!frm) {
3440 TRACE_ERROR("frame allocation error", QUIC_EV_CONN_IO_CB, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003441 goto err;
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003442 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003443
Frédéric Lécailleb9171912022-04-21 17:32:10 +02003444 LIST_INIT(&frm->reflist);
Amaury Denoyelle0442efd2022-01-28 16:02:13 +01003445 cid = new_quic_cid(&qc->cids, qc, i);
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003446 if (!cid) {
Frédéric Lécaillebccbad22022-08-31 15:02:53 +02003447 pool_free(pool_head_quic_frame, frm);
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003448 TRACE_ERROR("CID allocation error", QUIC_EV_CONN_IO_CB, qc);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003449 goto err;
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003450 }
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003451
Frédéric Lécaille74904a42022-01-27 15:35:56 +01003452 /* insert the allocated CID in the receiver datagram handler tree */
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01003453 ebmb_insert(&quic_dghdlrs[tid].cids, &cid->node, cid->cid.len);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01003454
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003455 quic_connection_id_to_frm_cpy(frm, cid);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003456 LIST_APPEND(&frm_list, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003457 }
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003458
3459 LIST_SPLICE(&qel->pktns->tx.frms, &frm_list);
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003460 qc->flags |= QUIC_FL_CONN_POST_HANDSHAKE_FRAMES_BUILT;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003461
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003462 ret = 1;
3463 leave:
3464 TRACE_LEAVE(QUIC_EV_CONN_IO_CB, qc);
3465 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003466
3467 err:
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003468 /* free the frames */
3469 list_for_each_entry_safe(frm, frmbak, &frm_list, list)
3470 pool_free(pool_head_quic_frame, frm);
3471
Frédéric Lécaille96d08d32022-08-11 12:04:07 +02003472 node = eb64_lookup_ge(&qc->cids, first);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003473 while (node) {
3474 struct quic_connection_id *cid;
3475
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003476 cid = eb64_entry(node, struct quic_connection_id, seq_num);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003477 if (cid->seq_num.key >= max)
3478 break;
3479
Frédéric Lécaille411aa6d2022-03-21 12:01:22 +01003480 node = eb64_next(node);
Frédéric Lécailled64f68f2022-03-18 17:45:28 +01003481 ebmb_delete(&cid->node);
3482 eb64_delete(&cid->seq_num);
3483 pool_free(pool_head_quic_connection_id, cid);
3484 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003485 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003486}
3487
3488/* Deallocate <l> list of ACK ranges. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003489void quic_free_arngs(struct quic_conn *qc, struct quic_arngs *arngs)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003490{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003491 struct eb64_node *n;
3492 struct quic_arng_node *ar;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003493
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003494 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
3495
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003496 n = eb64_first(&arngs->root);
3497 while (n) {
3498 struct eb64_node *next;
3499
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003500 ar = eb64_entry(n, struct quic_arng_node, first);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003501 next = eb64_next(n);
3502 eb64_delete(n);
Frédéric Lécaille82851bd2022-04-04 13:43:58 +02003503 pool_free(pool_head_quic_arng, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003504 n = next;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003505 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003506
3507 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003508}
3509
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003510/* Return the gap value between <p> and <q> ACK ranges where <q> follows <p> in
3511 * descending order.
3512 */
3513static inline size_t sack_gap(struct quic_arng_node *p,
3514 struct quic_arng_node *q)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003515{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003516 return p->first.key - q->last - 2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003517}
3518
3519
3520/* Remove the last elements of <ack_ranges> list of ack range updating its
3521 * encoded size until it goes below <limit>.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003522 * Returns 1 if succeeded, 0 if not (no more element to remove).
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003523 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003524static int quic_rm_last_ack_ranges(struct quic_conn *qc,
3525 struct quic_arngs *arngs, size_t limit)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003526{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003527 int ret = 0;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003528 struct eb64_node *last, *prev;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003529
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003530 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3531
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003532 last = eb64_last(&arngs->root);
3533 while (last && arngs->enc_sz > limit) {
3534 struct quic_arng_node *last_node, *prev_node;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003535
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003536 prev = eb64_prev(last);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003537 if (!prev) {
3538 TRACE_DEVEL("<last> not found", QUIC_EV_CONN_TXPKT, qc);
3539 goto out;
3540 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003541
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003542 last_node = eb64_entry(last, struct quic_arng_node, first);
3543 prev_node = eb64_entry(prev, struct quic_arng_node, first);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003544 arngs->enc_sz -= quic_int_getsize(last_node->last - last_node->first.key);
3545 arngs->enc_sz -= quic_int_getsize(sack_gap(prev_node, last_node));
3546 arngs->enc_sz -= quic_decint_size_diff(arngs->sz);
3547 --arngs->sz;
3548 eb64_delete(last);
3549 pool_free(pool_head_quic_arng, last);
3550 last = prev;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003551 }
3552
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003553 ret = 1;
3554 out:
3555 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
3556 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003557}
3558
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003559/* Set the encoded size of <arngs> QUIC ack ranges. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003560static void quic_arngs_set_enc_sz(struct quic_conn *qc, struct quic_arngs *arngs)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003561{
3562 struct eb64_node *node, *next;
3563 struct quic_arng_node *ar, *ar_next;
3564
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003565 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3566
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003567 node = eb64_last(&arngs->root);
3568 if (!node)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003569 goto leave;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003570
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003571 ar = eb64_entry(node, struct quic_arng_node, first);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003572 arngs->enc_sz = quic_int_getsize(ar->last) +
3573 quic_int_getsize(ar->last - ar->first.key) + quic_int_getsize(arngs->sz - 1);
3574
3575 while ((next = eb64_prev(node))) {
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003576 ar_next = eb64_entry(next, struct quic_arng_node, first);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003577 arngs->enc_sz += quic_int_getsize(sack_gap(ar, ar_next)) +
3578 quic_int_getsize(ar_next->last - ar_next->first.key);
3579 node = next;
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003580 ar = eb64_entry(node, struct quic_arng_node, first);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003581 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003582
3583 leave:
3584 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003585}
3586
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003587/* Insert <ar> ack range into <argns> tree of ack ranges.
3588 * Returns the ack range node which has been inserted if succeeded, NULL if not.
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003589 */
3590static inline
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003591struct quic_arng_node *quic_insert_new_range(struct quic_conn *qc,
3592 struct quic_arngs *arngs,
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003593 struct quic_arng *ar)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003594{
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003595 struct quic_arng_node *new_ar;
3596
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003597 TRACE_ENTER(QUIC_EV_CONN_RXPKT, qc);
3598
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003599 new_ar = pool_alloc(pool_head_quic_arng);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003600 if (!new_ar) {
3601 TRACE_ERROR("ack range allocation failed", QUIC_EV_CONN_RXPKT, qc);
3602 goto leave;
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003603 }
3604
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003605 new_ar->first.key = ar->first;
3606 new_ar->last = ar->last;
3607 eb64_insert(&arngs->root, &new_ar->first);
3608 arngs->sz++;
3609
3610 leave:
3611 TRACE_LEAVE(QUIC_EV_CONN_RXPKT, qc);
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02003612 return new_ar;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003613}
3614
3615/* Update <arngs> tree of ACK ranges with <ar> as new ACK range value.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003616 * Note that this function computes the number of bytes required to encode
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003617 * this tree of ACK ranges in descending order.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003618 *
3619 * Descending order
3620 * ------------->
3621 * range1 range2
3622 * ..........|--------|..............|--------|
3623 * ^ ^ ^ ^
3624 * | | | |
3625 * last1 first1 last2 first2
3626 * ..........+--------+--------------+--------+......
3627 * diff1 gap12 diff2
3628 *
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003629 * To encode the previous list of ranges we must encode integers as follows in
3630 * descending order:
3631 * enc(last2),enc(diff2),enc(gap12),enc(diff1)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003632 * with diff1 = last1 - first1
3633 * diff2 = last2 - first2
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003634 * gap12 = first1 - last2 - 2 (>= 0)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003635 *
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003636
3637returns 0 on error
3638
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003639 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003640int quic_update_ack_ranges_list(struct quic_conn *qc,
3641 struct quic_arngs *arngs,
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003642 struct quic_arng *ar)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003643{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003644 int ret = 0;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003645 struct eb64_node *le;
3646 struct quic_arng_node *new_node;
3647 struct eb64_node *new;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003648
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003649 TRACE_ENTER(QUIC_EV_CONN_RXPKT, qc);
3650
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003651 new = NULL;
3652 if (eb_is_empty(&arngs->root)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003653 new_node = quic_insert_new_range(qc, arngs, ar);
3654 if (new_node)
3655 ret = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003656
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003657 goto leave;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003658 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003659
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003660 le = eb64_lookup_le(&arngs->root, ar->first);
3661 if (!le) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003662 new_node = quic_insert_new_range(qc, arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003663 if (!new_node)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003664 goto leave;
Frédéric Lécaille0e257832021-11-16 10:54:19 +01003665
3666 new = &new_node->first;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003667 }
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003668 else {
3669 struct quic_arng_node *le_ar =
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003670 eb64_entry(le, struct quic_arng_node, first);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003671
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003672 /* Already existing range */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003673 if (le_ar->last >= ar->last) {
3674 ret = 1;
3675 }
3676 else if (le_ar->last + 1 >= ar->first) {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003677 le_ar->last = ar->last;
3678 new = le;
3679 new_node = le_ar;
3680 }
3681 else {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003682 new_node = quic_insert_new_range(qc, arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003683 if (!new_node)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003684 goto leave;
Frédéric Lécaille8ba42762021-06-02 17:40:09 +02003685
3686 new = &new_node->first;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003687 }
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003688 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003689
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003690 /* Verify that the new inserted node does not overlap the nodes
3691 * which follow it.
3692 */
3693 if (new) {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003694 struct eb64_node *next;
3695 struct quic_arng_node *next_node;
3696
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003697 while ((next = eb64_next(new))) {
3698 next_node =
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003699 eb64_entry(next, struct quic_arng_node, first);
Frédéric Lécaillec825eba2021-06-02 17:38:13 +02003700 if (new_node->last + 1 < next_node->first.key)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003701 break;
3702
3703 if (next_node->last > new_node->last)
3704 new_node->last = next_node->last;
3705 eb64_delete(next);
Frédéric Lécaillebaea2842021-06-02 15:04:03 +02003706 pool_free(pool_head_quic_arng, next_node);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003707 /* Decrement the size of these ranges. */
3708 arngs->sz--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003709 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003710 }
3711
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003712 ret = 1;
3713 leave:
3714 quic_arngs_set_enc_sz(qc, arngs);
3715 TRACE_LEAVE(QUIC_EV_CONN_RXPKT, qc);
3716 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003717}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003718/* Remove the header protection of packets at <el> encryption level.
3719 * Always succeeds.
3720 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003721static 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 +01003722{
3723 struct quic_tls_ctx *tls_ctx;
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02003724 struct quic_rx_packet *pqpkt, *pkttmp;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003725 struct quic_enc_level *app_qel;
3726
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003727 TRACE_ENTER(QUIC_EV_CONN_ELRMHP, qc);
3728 app_qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003729 /* A server must not process incoming 1-RTT packets before the handshake is complete. */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02003730 if (el == app_qel && qc_is_listener(qc) && qc->state < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003731 TRACE_DEVEL("hp not removed (handshake not completed)",
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003732 QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003733 goto out;
3734 }
3735 tls_ctx = &el->tls_ctx;
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02003736 list_for_each_entry_safe(pqpkt, pkttmp, &el->rx.pqpkts, list) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003737 if (!qc_do_rm_hp(qc, pqpkt, tls_ctx, el->pktns->rx.largest_pn,
Frédéric Lécaille99897d12022-08-08 10:28:07 +02003738 pqpkt->data + pqpkt->pn_offset, pqpkt->data)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003739 TRACE_ERROR("hp removing error", QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003740 }
3741 else {
3742 /* The AAD includes the packet number field */
3743 pqpkt->aad_len = pqpkt->pn_offset + pqpkt->pnl;
3744 /* Store the packet into the tree of packets to decrypt. */
3745 pqpkt->pn_node.key = pqpkt->pn;
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02003746 eb64_insert(&el->rx.pkts, &pqpkt->pn_node);
3747 quic_rx_packet_refinc(pqpkt);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003748 TRACE_DEVEL("hp removed", QUIC_EV_CONN_ELRMHP, qc, pqpkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003749 }
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02003750 LIST_DELETE(&pqpkt->list);
Frédéric Lécaillea11d0e22021-06-07 14:38:18 +02003751 quic_rx_packet_refdec(pqpkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003752 }
3753
3754 out:
Amaury Denoyellee81fed92021-12-22 11:06:34 +01003755 TRACE_LEAVE(QUIC_EV_CONN_ELRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003756}
3757
3758/* Process all the CRYPTO frame at <el> encryption level.
3759 * Return 1 if succeeded, 0 if not.
3760 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003761static inline int qc_treat_rx_crypto_frms(struct quic_conn *qc,
3762 struct quic_enc_level *el,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02003763 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003764{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003765 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003766 struct eb64_node *node;
3767
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003768 TRACE_ENTER(QUIC_EV_CONN_TRMHP, qc);
3769
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003770 node = eb64_first(&el->rx.crypto.frms);
3771 while (node) {
3772 struct quic_rx_crypto_frm *cf;
3773
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003774 cf = eb64_entry(node, struct quic_rx_crypto_frm, offset_node);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003775 if (cf->offset_node.key != el->rx.crypto.offset)
3776 break;
3777
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003778 if (!qc_provide_cdata(el, ctx, cf->data, cf->len, cf->pkt, cf)) {
3779 TRACE_ERROR("qc_provide_cdata() failed", QUIC_EV_CONN_TRMHP);
3780 goto leave;
3781 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003782
3783 node = eb64_next(node);
3784 quic_rx_packet_refdec(cf->pkt);
3785 eb64_delete(&cf->offset_node);
3786 pool_free(pool_head_quic_rx_crypto_frm, cf);
3787 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003788
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003789 ret = 1;
3790 leave:
3791 TRACE_LEAVE(QUIC_EV_CONN_TRMHP, qc);
3792 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003793}
3794
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003795/* Process all the packets at <el> and <next_el> encryption level.
Ilya Shipitsinbd6b4be2021-10-15 16:18:21 +05003796 * 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 +02003797 * as pointer value.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003798 * Return 1 if succeeded, 0 if not.
3799 */
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003800int qc_treat_rx_pkts(struct quic_enc_level *cur_el, struct quic_enc_level *next_el,
3801 struct ssl_sock_ctx *ctx, int force_ack)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003802{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003803 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003804 struct eb64_node *node;
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003805 int64_t largest_pn = -1;
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02003806 unsigned int largest_pn_time_received = 0;
Amaury Denoyelle29632b82022-01-18 16:50:58 +01003807 struct quic_conn *qc = ctx->qc;
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003808 struct quic_enc_level *qel = cur_el;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003809
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003810 TRACE_ENTER(QUIC_EV_CONN_RXPKT, ctx->qc);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003811 qel = cur_el;
3812 next_tel:
3813 if (!qel)
3814 goto out;
3815
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003816 node = eb64_first(&qel->rx.pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003817 while (node) {
3818 struct quic_rx_packet *pkt;
3819
Frédéric Lécaillea54e49d2022-05-10 15:15:24 +02003820 pkt = eb64_entry(node, struct quic_rx_packet, pn_node);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003821 TRACE_DATA("new packet", QUIC_EV_CONN_RXPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01003822 ctx->qc, pkt, NULL, ctx->ssl);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003823 if (!qc_pkt_decrypt(pkt, qel, qc)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003824 /* Drop the packet */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003825 TRACE_ERROR("packet decryption failed -> dropped",
3826 QUIC_EV_CONN_RXPKT, ctx->qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003827 }
3828 else {
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003829 if (!qc_parse_pkt_frms(pkt, ctx, qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003830 /* Drop the packet */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003831 TRACE_ERROR("packet parsing failed -> dropped",
3832 QUIC_EV_CONN_RXPKT, ctx->qc, pkt);
Frédéric Lécailleeb791452022-05-24 16:01:39 +02003833 HA_ATOMIC_INC(&qc->prx_counters->dropped_parsing);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003834 }
3835 else {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003836 struct quic_arng ar = { .first = pkt->pn, .last = pkt->pn };
3837
Frédéric Lécailleb0021452022-03-29 11:42:03 +02003838 if (pkt->flags & QUIC_FL_RX_PACKET_ACK_ELICITING || force_ack) {
3839 qel->pktns->flags |= QUIC_FL_PKTNS_ACK_REQUIRED;
3840 qel->pktns->rx.nb_aepkts_since_last_ack++;
Frédéric Lécaille530601c2022-03-10 15:11:57 +01003841 qc_idle_timer_rearm(qc, 1);
3842 }
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02003843 if (pkt->pn > largest_pn) {
Frédéric Lécaille120ea6f2021-07-26 16:42:56 +02003844 largest_pn = pkt->pn;
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02003845 largest_pn_time_received = pkt->time_received;
3846 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003847 /* Update the list of ranges to acknowledge. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003848 if (!quic_update_ack_ranges_list(qc, &qel->pktns->rx.arngs, &ar))
3849 TRACE_ERROR("Could not update ack range list",
3850 QUIC_EV_CONN_RXPKT, ctx->qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003851 }
3852 }
3853 node = eb64_next(node);
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02003854 eb64_delete(&pkt->pn_node);
3855 quic_rx_packet_refdec(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003856 }
3857
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02003858 if (largest_pn != -1 && largest_pn > qel->pktns->rx.largest_pn) {
3859 /* Update the largest packet number. */
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02003860 qel->pktns->rx.largest_pn = largest_pn;
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02003861 /* Update the largest acknowledged packet timestamps */
3862 qel->pktns->rx.largest_time_received = largest_pn_time_received;
3863 qel->pktns->flags |= QUIC_FL_PKTNS_NEW_LARGEST_PN;
3864 }
3865
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003866 if (!qc_treat_rx_crypto_frms(qc, qel, ctx)) {
3867 // trace already emitted by function above
3868 goto leave;
3869 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003870
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003871 if (qel == cur_el) {
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02003872 BUG_ON(qel == next_el);
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003873 qel = next_el;
Frédéric Lécaille91a211f2022-05-24 10:54:42 +02003874 largest_pn = -1;
Frédéric Lécaille2766e782021-08-30 17:16:07 +02003875 goto next_tel;
3876 }
3877
3878 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003879 ret = 1;
3880 leave:
3881 TRACE_LEAVE(QUIC_EV_CONN_RXPKT, ctx->qc);
3882 return ret;
3883}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003884
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003885/* Check if it's possible to remove header protection for packets related to
3886 * encryption level <qel>. If <qel> is NULL, assume it's false.
3887 *
3888 * Return true if the operation is possible else false.
3889 */
3890static int qc_qel_may_rm_hp(struct quic_conn *qc, struct quic_enc_level *qel)
3891{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003892 int ret = 0;
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003893 enum quic_tls_enc_level tel;
3894
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003895 TRACE_ENTER(QUIC_EV_CONN_TRMHP, qc);
3896
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003897 if (!qel)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003898 goto cant_rm_hp;
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003899
3900 tel = ssl_to_quic_enc_level(qel->level);
3901
3902 /* check if tls secrets are available */
Frédéric Lécaillebd242082022-02-25 17:17:59 +01003903 if (qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD) {
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003904 TRACE_DEVEL("Discarded keys", QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003905 goto cant_rm_hp;
Frédéric Lécaille51c90652022-02-22 11:39:14 +01003906 }
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003907
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003908 if (!(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET)) {
3909 TRACE_DEVEL("non available secrets", QUIC_EV_CONN_TRMHP, qc);
3910 goto cant_rm_hp;
3911 }
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003912
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01003913 /* check if the connection layer is ready before using app level */
Frédéric Lécaille298931d2022-01-28 21:41:06 +01003914 if ((tel == QUIC_TLS_ENC_LEVEL_APP || tel == QUIC_TLS_ENC_LEVEL_EARLY_DATA) &&
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003915 qc->mux_state == QC_MUX_NULL) {
3916 TRACE_DEVEL("connection layer not ready", QUIC_EV_CONN_TRMHP, qc);
3917 goto cant_rm_hp;
3918 }
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003919
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003920 ret = 1;
3921 cant_rm_hp:
3922 TRACE_LEAVE(QUIC_EV_CONN_TRMHP, qc);
3923 return ret;
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01003924}
3925
Amaury Denoyellecc130472022-08-17 10:08:16 +02003926/* Try to send application frames from list <frms> on connection <qc>.
3927 *
Amaury Denoyelle70467562022-08-17 16:33:13 +02003928 * Use qc_send_app_probing wrapper when probing with old data.
Amaury Denoyellecc130472022-08-17 10:08:16 +02003929 *
3930 * Returns 1 on success. Some data might not have been sent due to congestion,
3931 * in this case they are left in <frms> input list. The caller may subscribe on
3932 * quic-conn to retry later.
3933 *
3934 * Returns 0 on critical error.
3935 * TODO review and classify more distinctly transient from definitive errors to
3936 * allow callers to properly handle it.
3937 */
Amaury Denoyelle70467562022-08-17 16:33:13 +02003938static int qc_send_app_pkts(struct quic_conn *qc, struct list *frms)
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003939{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003940 int status = 0;
3941 struct buffer *buf;
3942
3943 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3944
3945 buf = qc_txb_alloc(qc);
3946 if (!buf) {
3947 TRACE_ERROR("buffer allocation failed", QUIC_EV_CONN_TXPKT, qc);
3948 goto leave;
3949 }
3950
Frédéric Lécailledc077512022-07-26 09:17:19 +02003951 /* Prepare and send packets until we could not further prepare packets. */
3952 while (1) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003953 int ret;
Amaury Denoyellef2476052022-08-04 16:19:57 +02003954 /* Currently buf cannot be non-empty at this stage. Even if a
3955 * previous sendto() has failed it is emptied to simulate
3956 * packet emission and rely on QUIC lost detection to try to
3957 * emit it.
3958 */
3959 BUG_ON_HOT(b_data(buf));
3960 b_reset(buf);
3961
Amaury Denoyellef2476052022-08-04 16:19:57 +02003962 ret = qc_prep_app_pkts(qc, buf, frms);
Frédéric Lécailledc077512022-07-26 09:17:19 +02003963 if (ret == -1)
3964 goto err;
3965 else if (ret == 0)
3966 goto out;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003967
Amaury Denoyellef2476052022-08-04 16:19:57 +02003968 if (!qc_send_ppkts(buf, qc->xprt_ctx))
Frédéric Lécailledc077512022-07-26 09:17:19 +02003969 goto err;
3970 }
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003971
3972 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003973 status = 1;
Amaury Denoyelle5b689862022-08-08 16:07:30 +02003974 qc_txb_release(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003975 leave:
3976 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
3977 return status;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003978
3979 err:
Amaury Denoyelle5b689862022-08-08 16:07:30 +02003980 qc_txb_release(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02003981 goto leave;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01003982}
3983
Amaury Denoyellecc130472022-08-17 10:08:16 +02003984/* Try to send application frames from list <frms> on connection <qc>. Use this
Amaury Denoyelle70467562022-08-17 16:33:13 +02003985 * function when probing is required.
Amaury Denoyelleb29a1dc2022-08-12 14:30:04 +02003986 *
3987 * Returns the result from qc_send_app_pkts function.
3988 */
Amaury Denoyelle70467562022-08-17 16:33:13 +02003989static forceinline int qc_send_app_probing(struct quic_conn *qc,
3990 struct list *frms)
Amaury Denoyelleb29a1dc2022-08-12 14:30:04 +02003991{
3992 int ret;
3993
3994 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
3995
Amaury Denoyelle70467562022-08-17 16:33:13 +02003996 TRACE_STATE("preparing old data (probing)", QUIC_EV_CONN_TXPKT, qc);
3997 qc->flags |= QUIC_FL_CONN_RETRANS_OLD_DATA;
Amaury Denoyelleb29a1dc2022-08-12 14:30:04 +02003998 ret = qc_send_app_pkts(qc, frms);
Amaury Denoyelle70467562022-08-17 16:33:13 +02003999 qc->flags &= ~QUIC_FL_CONN_RETRANS_OLD_DATA;
Amaury Denoyelleb29a1dc2022-08-12 14:30:04 +02004000
4001 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
4002 return ret;
4003}
4004
Amaury Denoyelle70467562022-08-17 16:33:13 +02004005/* Try to send application frames from list <frms> on connection <qc>. This
4006 * function is provided for MUX upper layer usage only.
Amaury Denoyellecc130472022-08-17 10:08:16 +02004007 *
4008 * Returns the result from qc_send_app_pkts function.
4009 */
Amaury Denoyelle70467562022-08-17 16:33:13 +02004010int qc_send_mux(struct quic_conn *qc, struct list *frms)
Amaury Denoyellecc130472022-08-17 10:08:16 +02004011{
4012 int ret;
4013
4014 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
Amaury Denoyelle70467562022-08-17 16:33:13 +02004015 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 +02004016
Amaury Denoyelle70467562022-08-17 16:33:13 +02004017 TRACE_STATE("preparing data (from MUX)", QUIC_EV_CONN_TXPKT, qc);
4018 qc->flags |= QUIC_FL_CONN_TX_MUX_CONTEXT;
Amaury Denoyellecc130472022-08-17 10:08:16 +02004019 ret = qc_send_app_pkts(qc, frms);
Amaury Denoyelle70467562022-08-17 16:33:13 +02004020 qc->flags &= ~QUIC_FL_CONN_TX_MUX_CONTEXT;
Amaury Denoyellecc130472022-08-17 10:08:16 +02004021
4022 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
4023 return ret;
4024}
4025
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004026/* Sends handshake packets from up to two encryption levels <tel> and <next_te>
4027 * with <tel_frms> and <next_tel_frms> as frame list respectively for <qc>
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004028 * QUIC connection. <old_data> is used as boolean to send data already sent but
4029 * not already acknowledged (in flight).
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004030 * Returns 1 if succeeded, 0 if not.
4031 */
4032int qc_send_hdshk_pkts(struct quic_conn *qc, int old_data,
4033 enum quic_tls_enc_level tel, struct list *tel_frms,
4034 enum quic_tls_enc_level next_tel, struct list *next_tel_frms)
4035{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004036 int ret, status = 0;
Amaury Denoyelle5b689862022-08-08 16:07:30 +02004037 struct buffer *buf = qc_txb_alloc(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004038
4039 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
4040
4041 if (!buf) {
4042 TRACE_ERROR("buffer allocation failed", QUIC_EV_CONN_TXPKT, qc);
4043 goto leave;
4044 }
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004045
Amaury Denoyellef2476052022-08-04 16:19:57 +02004046 /* Currently buf cannot be non-empty at this stage. Even if a previous
4047 * sendto() has failed it is emptied to simulate packet emission and
4048 * rely on QUIC lost detection to try to emit it.
4049 */
4050 BUG_ON_HOT(b_data(buf));
4051 b_reset(buf);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004052
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004053 if (old_data) {
4054 TRACE_STATE("old data for probing asked", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004055 qc->flags |= QUIC_FL_CONN_RETRANS_OLD_DATA;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004056 }
Amaury Denoyellef2476052022-08-04 16:19:57 +02004057
4058 ret = qc_prep_pkts(qc, buf, tel, tel_frms, next_tel, next_tel_frms);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004059 if (ret == -1)
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004060 goto out;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004061 else if (ret == 0)
4062 goto skip_send;
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004063
Amaury Denoyellef2476052022-08-04 16:19:57 +02004064 if (!qc_send_ppkts(buf, qc->xprt_ctx))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004065 goto out;
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004066
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004067 skip_send:
4068 status = 1;
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004069 out:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004070 TRACE_STATE("no more need old data for probing", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004071 qc->flags &= ~QUIC_FL_CONN_RETRANS_OLD_DATA;
Amaury Denoyelle5b689862022-08-08 16:07:30 +02004072 qc_txb_release(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004073 leave:
4074 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
4075 return status;
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004076}
4077
4078/* Retransmit up to two datagrams depending on packet number space */
4079static void qc_dgrams_retransmit(struct quic_conn *qc)
4080{
4081 struct quic_enc_level *iqel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
4082 struct quic_enc_level *hqel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
4083 struct quic_enc_level *aqel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
4084
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004085 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
4086
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004087 if (iqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) {
4088 struct list ifrms = LIST_HEAD_INIT(ifrms);
4089 struct list hfrms = LIST_HEAD_INIT(hfrms);
4090
4091 qc_prep_hdshk_fast_retrans(qc, &ifrms, &hfrms);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004092 TRACE_DEVEL("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &ifrms);
4093 TRACE_DEVEL("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &hfrms);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004094 if (!LIST_ISEMPTY(&ifrms)) {
4095 iqel->pktns->tx.pto_probe = 1;
4096 if (!LIST_ISEMPTY(&hfrms)) {
4097 hqel->pktns->tx.pto_probe = 1;
4098 qc_send_hdshk_pkts(qc, 1, QUIC_TLS_ENC_LEVEL_INITIAL, &ifrms,
4099 QUIC_TLS_ENC_LEVEL_HANDSHAKE, &hfrms);
Frédéric Lécaillea1075202022-09-01 10:51:19 +02004100 /* Put back unsent frames in their packet number spaces */
4101 LIST_SPLICE(&iqel->pktns->tx.frms, &ifrms);
4102 LIST_SPLICE(&hqel->pktns->tx.frms, &hfrms);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004103 }
4104 }
4105 if (hqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) {
Frédéric Lécaillea1075202022-09-01 10:51:19 +02004106 /* This list has potentially been already used and spliced
4107 * to another one attached to the connection. We must reinitialize it.
4108 */
4109 LIST_INIT(&hfrms);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004110 qc_prep_fast_retrans(qc, hqel, &hfrms, NULL);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004111 TRACE_DEVEL("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &hfrms);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004112 if (!LIST_ISEMPTY(&hfrms)) {
4113 hqel->pktns->tx.pto_probe = 1;
4114 qc_send_hdshk_pkts(qc, 1, QUIC_TLS_ENC_LEVEL_HANDSHAKE, &hfrms,
4115 QUIC_TLS_ENC_LEVEL_NONE, NULL);
Frédéric Lécaillea1075202022-09-01 10:51:19 +02004116 /* Put back unsent frames into their packet number spaces */
4117 LIST_SPLICE(&hqel->pktns->tx.frms, &hfrms);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004118 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004119 TRACE_STATE("no more need to probe Handshake packet number space",
4120 QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004121 hqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED;
4122 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004123 TRACE_STATE("no more need to probe Initial packet number space",
4124 QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004125 iqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED;
4126 }
4127 else {
4128 int i;
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004129
4130 if (hqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) {
Frédéric Lécaillea1075202022-09-01 10:51:19 +02004131 struct list frms1 = LIST_HEAD_INIT(frms1);
4132
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004133 hqel->pktns->tx.pto_probe = 0;
4134 for (i = 0; i < QUIC_MAX_NB_PTO_DGRAMS; i++) {
4135 qc_prep_fast_retrans(qc, hqel, &frms1, NULL);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004136 TRACE_DEVEL("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &frms1);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004137 if (!LIST_ISEMPTY(&frms1)) {
4138 hqel->pktns->tx.pto_probe = 1;
4139 qc_send_hdshk_pkts(qc, 1, QUIC_TLS_ENC_LEVEL_HANDSHAKE, &frms1,
4140 QUIC_TLS_ENC_LEVEL_NONE, NULL);
Frédéric Lécaillea1075202022-09-01 10:51:19 +02004141 /* Put back unsent frames into their packet number spaces */
4142 LIST_SPLICE(&hqel->pktns->tx.frms, &frms1);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004143 }
4144 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004145 TRACE_STATE("no more need to probe Handshake packet number space",
4146 QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004147 hqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED;
4148 }
4149 else if (aqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) {
Frédéric Lécaillea1075202022-09-01 10:51:19 +02004150 struct list frms2 = LIST_HEAD_INIT(frms2);
4151 struct list frms1 = LIST_HEAD_INIT(frms1);
4152
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004153 aqel->pktns->tx.pto_probe = 0;
4154 qc_prep_fast_retrans(qc, aqel, &frms1, &frms2);
4155 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &frms1);
4156 TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &frms2);
4157 if (!LIST_ISEMPTY(&frms1)) {
4158 aqel->pktns->tx.pto_probe = 1;
Amaury Denoyellecc130472022-08-17 10:08:16 +02004159 qc_send_app_probing(qc, &frms1);
Frédéric Lécaillea1075202022-09-01 10:51:19 +02004160 /* Put back unsent frames into their packet number spaces */
4161 LIST_SPLICE(&aqel->pktns->tx.frms, &frms1);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004162 }
4163 if (!LIST_ISEMPTY(&frms2)) {
4164 aqel->pktns->tx.pto_probe = 1;
Amaury Denoyellecc130472022-08-17 10:08:16 +02004165 qc_send_app_probing(qc, &frms2);
Frédéric Lécaillea1075202022-09-01 10:51:19 +02004166 /* Put back unsent frames into their packet number spaces */
4167 LIST_SPLICE(&aqel->pktns->tx.frms, &frms2);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004168 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004169 TRACE_STATE("no more need to probe 01RTT packet number space",
4170 QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004171 aqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED;
4172 }
4173 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004174 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea9568412022-04-25 08:58:04 +02004175}
4176
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004177/* QUIC connection packet handler task (post handshake) */
Willy Tarreau41e701e2022-09-08 15:12:59 +02004178struct task *quic_conn_app_io_cb(struct task *t, void *context, unsigned int state)
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004179{
4180 struct ssl_sock_ctx *ctx;
4181 struct quic_conn *qc;
4182 struct quic_enc_level *qel;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004183
4184
4185 ctx = context;
4186 qc = ctx->qc;
4187 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004188
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004189 TRACE_ENTER(QUIC_EV_CONN_IO_CB, qc);
4190 TRACE_STATE("connection handshake state", QUIC_EV_CONN_IO_CB, qc, &qc->state);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004191
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02004192 /* Retranmissions */
4193 if (qc->flags & QUIC_FL_CONN_RETRANS_NEEDED) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004194 TRACE_STATE("retransmission needed", QUIC_EV_CONN_IO_CB, qc);
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02004195 qc->flags &= ~QUIC_FL_CONN_RETRANS_NEEDED;
4196 qc_dgrams_retransmit(qc);
4197 }
4198
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02004199 if (!LIST_ISEMPTY(&qel->rx.pqpkts) && qc_qel_may_rm_hp(qc, qel))
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004200 qc_rm_hp_pkts(qc, qel);
4201
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004202 if (!qc_treat_rx_pkts(qel, NULL, ctx, 0)) {
4203 TRACE_DEVEL("qc_treat_rx_pkts() failed", QUIC_EV_CONN_IO_CB, qc);
4204 goto out;
4205 }
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004206
Frédéric Lécaille47756802022-03-25 09:12:16 +01004207 if ((qc->flags & QUIC_FL_CONN_DRAINING) &&
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004208 !(qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE)) {
4209 TRACE_STATE("draining connection (must not send packets)", QUIC_EV_CONN_IO_CB, qc);
Frédéric Lécaille47756802022-03-25 09:12:16 +01004210 goto out;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004211 }
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004212
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004213 /* XXX TODO: how to limit the list frames to send */
Amaury Denoyelle70467562022-08-17 16:33:13 +02004214 if (!qc_send_app_pkts(qc, &qel->pktns->tx.frms)) {
4215 TRACE_DEVEL("qc_send_app_pkts() failed", QUIC_EV_CONN_IO_CB, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004216 goto out;
4217 }
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004218
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004219 out:
4220 TRACE_LEAVE(QUIC_EV_CONN_IO_CB, qc);
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004221 return t;
4222}
4223
Amaury Denoyellec09ef0c2022-08-08 18:15:24 +02004224/* Returns a boolean if <qc> needs to emit frames for <qel> encryption level. */
4225static int qc_need_sending(struct quic_conn *qc, struct quic_enc_level *qel)
4226{
4227 return (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) ||
4228 (qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) ||
4229 qel->pktns->tx.pto_probe ||
4230 !LIST_ISEMPTY(&qel->pktns->tx.frms);
4231}
4232
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004233/* QUIC connection packet handler task. */
4234struct task *quic_conn_io_cb(struct task *t, void *context, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004235{
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004236 int ret, ssl_err;
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004237 struct ssl_sock_ctx *ctx;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004238 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004239 enum quic_tls_enc_level tel, next_tel;
4240 struct quic_enc_level *qel, *next_qel;
Amaury Denoyellef2476052022-08-04 16:19:57 +02004241 struct buffer *buf = NULL;
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004242 int st, force_ack, zero_rtt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004243
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004244 ctx = context;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01004245 qc = ctx->qc;
Frédéric Lécaille00e24002022-02-18 17:13:45 +01004246 TRACE_ENTER(QUIC_EV_CONN_IO_CB, qc);
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004247 st = qc->state;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004248 TRACE_PROTO("connection state", QUIC_EV_CONN_IO_CB, qc, &st);
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02004249
4250 /* Retranmissions */
4251 if (qc->flags & QUIC_FL_CONN_RETRANS_NEEDED) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004252 TRACE_DEVEL("retransmission needed", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaille7aef5f42022-04-25 10:33:12 +02004253 qc->flags &= ~QUIC_FL_CONN_RETRANS_NEEDED;
4254 qc_dgrams_retransmit(qc);
4255 }
4256
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004257 if (qc->flags & QUIC_FL_CONN_IO_CB_WAKEUP) {
4258 qc->flags &= ~QUIC_FL_CONN_IO_CB_WAKEUP;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004259 TRACE_DEVEL("needs to wakeup the timer task after the anti-amplicaiton limit was reached",
4260 QUIC_EV_CONN_IO_CB, qc);
4261 /* 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 +01004262 * after the anti-amplification was reached.
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004263 *
4264 * TODO: this part should be removed. This was there because the
4265 * datagram parser was not executed by only one thread.
Frédéric Lécaille59507de2022-08-11 12:14:07 +02004266 */
Frédéric Lécaille6b663152022-01-04 17:03:11 +01004267 qc_set_timer(qc);
4268 if (tick_isset(qc->timer) && tick_is_lt(qc->timer, now_ms))
4269 task_wakeup(qc->timer_task, TASK_WOKEN_MSG);
4270 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004271 ssl_err = SSL_ERROR_NONE;
Frédéric Lécaille4137b2d2021-12-17 18:24:16 +01004272 zero_rtt = st < QUIC_HS_ST_COMPLETE &&
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02004273 (!LIST_ISEMPTY(&qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA].rx.pqpkts) ||
Frédéric Lécaille4137b2d2021-12-17 18:24:16 +01004274 qc_el_rx_pkts(&qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA]));
Frédéric Lécaille2766e782021-08-30 17:16:07 +02004275 start:
Frédéric Lécaille917a7db2022-01-03 17:00:35 +01004276 if (st >= QUIC_HS_ST_COMPLETE &&
4277 qc_el_rx_pkts(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE])) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004278 TRACE_DEVEL("remaining Handshake packets", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaille917a7db2022-01-03 17:00:35 +01004279 /* There may be remaining Handshake packets to treat and acknowledge. */
4280 tel = QUIC_TLS_ENC_LEVEL_HANDSHAKE;
4281 next_tel = QUIC_TLS_ENC_LEVEL_APP;
4282 }
4283 else if (!quic_get_tls_enc_levels(&tel, &next_tel, st, zero_rtt))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004284 goto out;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004285
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004286 qel = &qc->els[tel];
Frédéric Lécaillef7980962021-08-19 17:35:21 +02004287 next_qel = next_tel == QUIC_TLS_ENC_LEVEL_NONE ? NULL : &qc->els[next_tel];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004288
4289 next_level:
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01004290 /* Treat packets waiting for header packet protection decryption */
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02004291 if (!LIST_ISEMPTY(&qel->rx.pqpkts) && qc_qel_may_rm_hp(qc, qel))
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004292 qc_rm_hp_pkts(qc, qel);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004293
Frédéric Lécaille2766e782021-08-30 17:16:07 +02004294 force_ack = qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL] ||
4295 qel == &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
4296 if (!qc_treat_rx_pkts(qel, next_qel, ctx, force_ack))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004297 goto out;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004298
Frédéric Lécaille47756802022-03-25 09:12:16 +01004299 if ((qc->flags & QUIC_FL_CONN_DRAINING) &&
4300 !(qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE))
4301 goto out;
4302
Frédéric Lécaille1231d3c2022-04-28 15:43:46 +02004303 if (next_qel && next_qel == &qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA] &&
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02004304 !LIST_ISEMPTY(&next_qel->rx.pqpkts)) {
Frédéric Lécaille1231d3c2022-04-28 15:43:46 +02004305 if ((next_qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET)) {
4306 qel = next_qel;
4307 next_qel = NULL;
4308 goto next_level;
4309 }
4310 else {
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02004311 struct quic_rx_packet *pkt, *pkttmp;
Frédéric Lécaille1231d3c2022-04-28 15:43:46 +02004312 struct quic_enc_level *aqel = &qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA];
4313
4314 /* Drop these 0-RTT packets */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004315 TRACE_DEVEL("drop all 0-RTT packets", QUIC_EV_CONN_PHPKTS, qc);
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02004316 list_for_each_entry_safe(pkt, pkttmp, &aqel->rx.pqpkts, list) {
4317 LIST_DELETE(&pkt->list);
Frédéric Lécaille1231d3c2022-04-28 15:43:46 +02004318 quic_rx_packet_refdec(pkt);
4319 }
4320 }
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01004321 }
4322
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004323 st = qc->state;
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004324 if (st >= QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004325 if (!(qc->flags & QUIC_FL_CONN_POST_HANDSHAKE_FRAMES_BUILT) &&
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004326 !quic_build_post_handshake_frames(qc))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004327 goto out;
Frédéric Lécaillefee7ba62021-12-06 12:09:08 +01004328
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004329 if (!(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].tls_ctx.flags &
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004330 QUIC_FL_TLS_SECRETS_DCD)) {
4331 /* Discard the Handshake keys. */
4332 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
4333 TRACE_PROTO("discarding Handshake pktns", QUIC_EV_CONN_PHPKTS, qc);
4334 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns, qc);
4335 qc_set_timer(qc);
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004336 qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004337 qc_release_pktns_frms(qc, qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns);
Frédéric Lécaillede6f7c52022-01-03 17:25:53 +01004338 }
4339
4340 if (qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) {
4341 /* There may be remaining handshake to build (acks) */
4342 st = QUIC_HS_ST_SERVER_HANDSHAKE;
4343 }
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004344 }
4345
Frédéric Lécaillebec186d2022-01-12 15:32:55 +01004346 /* A listener does not send any O-RTT packet. O-RTT packet number space must not
4347 * be considered.
4348 */
4349 if (!quic_get_tls_enc_levels(&tel, &next_tel, st, 0))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004350 goto out;
Amaury Denoyellef2476052022-08-04 16:19:57 +02004351
Amaury Denoyellef0f92b22022-08-09 17:52:52 +02004352 if (!qc_need_sending(qc, qel) &&
4353 (!next_qel || !qc_need_sending(qc, next_qel))) {
Amaury Denoyellec09ef0c2022-08-08 18:15:24 +02004354 goto skip_send;
Amaury Denoyellef0f92b22022-08-09 17:52:52 +02004355 }
Amaury Denoyellec09ef0c2022-08-08 18:15:24 +02004356
Amaury Denoyelle5b689862022-08-08 16:07:30 +02004357 buf = qc_txb_alloc(qc);
Amaury Denoyellef2476052022-08-04 16:19:57 +02004358 if (!buf)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004359 goto out;
Amaury Denoyellef2476052022-08-04 16:19:57 +02004360
4361 /* Currently buf cannot be non-empty at this stage. Even if a previous
4362 * sendto() has failed it is emptied to simulate packet emission and
4363 * rely on QUIC lost detection to try to emit it.
4364 */
4365 BUG_ON_HOT(b_data(buf));
4366 b_reset(buf);
4367
4368 ret = qc_prep_pkts(qc, buf, tel, &qc->els[tel].pktns->tx.frms,
Frédéric Lécaillefc888442022-04-11 15:39:34 +02004369 next_tel, &qc->els[next_tel].pktns->tx.frms);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004370 if (ret == -1)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004371 goto out;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004372 else if (ret == 0)
4373 goto skip_send;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004374
Amaury Denoyellef2476052022-08-04 16:19:57 +02004375 if (!qc_send_ppkts(buf, ctx))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004376 goto out;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004377
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02004378 skip_send:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004379 /* Check if there is something to do for the next level.
4380 */
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02004381 if (next_qel && next_qel != qel &&
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004382 (next_qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET) &&
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02004383 (!LIST_ISEMPTY(&next_qel->rx.pqpkts) || qc_el_rx_pkts(next_qel))) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004384 qel = next_qel;
Frédéric Lécaille3230bcf2021-09-22 15:15:46 +02004385 next_qel = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004386 goto next_level;
4387 }
4388
Frédéric Lécaille47756802022-03-25 09:12:16 +01004389 out:
Amaury Denoyelle5b689862022-08-08 16:07:30 +02004390 qc_txb_release(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004391 TRACE_LEAVE(QUIC_EV_CONN_IO_CB, qc, &st, &ssl_err);
Frédéric Lécaille91ae7aa2021-08-03 16:45:39 +02004392 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004393}
4394
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05004395/* Uninitialize <qel> QUIC encryption level. Never fails. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004396static 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 +01004397{
4398 int i;
4399
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004400 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
4401
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004402 for (i = 0; i < qel->tx.crypto.nb_buf; i++) {
4403 if (qel->tx.crypto.bufs[i]) {
4404 pool_free(pool_head_quic_crypto_buf, qel->tx.crypto.bufs[i]);
4405 qel->tx.crypto.bufs[i] = NULL;
4406 }
4407 }
Willy Tarreau61cfdf42021-02-20 10:46:51 +01004408 ha_free(&qel->tx.crypto.bufs);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004409
4410 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004411}
4412
4413/* Initialize QUIC TLS encryption level with <level<> as level for <qc> QUIC
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05004414 * connection allocating everything needed.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004415 * Returns 1 if succeeded, 0 if not.
4416 */
4417static int quic_conn_enc_level_init(struct quic_conn *qc,
4418 enum quic_tls_enc_level level)
4419{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004420 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004421 struct quic_enc_level *qel;
4422
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004423 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
4424
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004425 qel = &qc->els[level];
4426 qel->level = quic_to_ssl_enc_level(level);
4427 qel->tls_ctx.rx.aead = qel->tls_ctx.tx.aead = NULL;
4428 qel->tls_ctx.rx.md = qel->tls_ctx.tx.md = NULL;
4429 qel->tls_ctx.rx.hp = qel->tls_ctx.tx.hp = NULL;
Frédéric Lécaillefc768ec2021-11-23 21:02:04 +01004430 qel->tls_ctx.flags = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004431
4432 qel->rx.pkts = EB_ROOT;
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02004433 LIST_INIT(&qel->rx.pqpkts);
Frédéric Lécaille9054d1b2021-07-26 16:23:53 +02004434 qel->rx.crypto.offset = 0;
4435 qel->rx.crypto.frms = EB_ROOT_UNIQUE;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004436
4437 /* Allocate only one buffer. */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004438 /* TODO: use a pool */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004439 qel->tx.crypto.bufs = malloc(sizeof *qel->tx.crypto.bufs);
4440 if (!qel->tx.crypto.bufs)
4441 goto err;
4442
4443 qel->tx.crypto.bufs[0] = pool_alloc(pool_head_quic_crypto_buf);
4444 if (!qel->tx.crypto.bufs[0])
4445 goto err;
4446
4447 qel->tx.crypto.bufs[0]->sz = 0;
4448 qel->tx.crypto.nb_buf = 1;
4449
4450 qel->tx.crypto.sz = 0;
4451 qel->tx.crypto.offset = 0;
4452
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004453 ret = 1;
4454 leave:
4455 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
4456 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004457
4458 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01004459 ha_free(&qel->tx.crypto.bufs);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004460 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004461}
4462
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004463/* Release the quic_conn <qc>. The connection is removed from the CIDs tree.
4464 * The connection tasklet is killed.
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004465 *
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004466 * This function must only be called by the thread responsible of the quic_conn
4467 * tasklet.
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004468 */
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004469static void quic_conn_release(struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004470{
4471 int i;
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004472 struct ssl_sock_ctx *conn_ctx;
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004473 struct eb64_node *node;
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02004474 struct quic_tls_ctx *app_tls_ctx;
Amaury Denoyelle2c31e122022-06-20 10:52:55 +02004475 struct quic_rx_packet *pkt, *pktback;
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004476
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004477 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
4478
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02004479 /* We must not free the quic-conn if the MUX is still allocated. */
4480 BUG_ON(qc->mux_state == QC_MUX_READY);
4481
Willy Tarreau54bc7862022-08-10 07:26:27 +02004482 /* in the unlikely (but possible) case the connection was just added to
4483 * the accept_list we must delete it from there.
4484 */
4485 MT_LIST_DELETE(&qc->accept_list);
4486
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004487 /* free remaining stream descriptors */
4488 node = eb64_first(&qc->streams_by_id);
4489 while (node) {
4490 struct qc_stream_desc *stream;
4491
4492 stream = eb64_entry(node, struct qc_stream_desc, by_id);
4493 node = eb64_next(node);
4494
Amaury Denoyellec9acc312022-04-01 16:41:21 +02004495 /* all streams attached to the quic-conn are released, so
4496 * qc_stream_desc_free will liberate the stream instance.
4497 */
4498 BUG_ON(!stream->release);
Frédéric Lécailleea4a5cb2022-08-20 18:59:36 +02004499 qc_stream_desc_free(stream, 1);
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004500 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004501
Amaury Denoyelle2c31e122022-06-20 10:52:55 +02004502 /* Purge Rx packet list. */
4503 list_for_each_entry_safe(pkt, pktback, &qc->rx.pkt_list, qc_rx_pkt_list) {
4504 LIST_DELETE(&pkt->qc_rx_pkt_list);
4505 pool_free(pool_head_quic_rx_packet, pkt);
4506 }
4507
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004508 if (qc->idle_timer_task) {
4509 task_destroy(qc->idle_timer_task);
4510 qc->idle_timer_task = NULL;
4511 }
4512
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004513 if (qc->timer_task) {
4514 task_destroy(qc->timer_task);
4515 qc->timer_task = NULL;
4516 }
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004517
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004518 /* remove the connection from receiver cids trees */
4519 ebmb_delete(&qc->odcid_node);
4520 ebmb_delete(&qc->scid_node);
4521 free_quic_conn_cids(qc);
Amaury Denoyelle2af19852021-09-30 11:03:28 +02004522
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004523 conn_ctx = qc->xprt_ctx;
Amaury Denoyelle2d9794b2022-01-20 17:43:20 +01004524 if (conn_ctx) {
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004525 tasklet_free(conn_ctx->wait_event.tasklet);
Amaury Denoyelle2d9794b2022-01-20 17:43:20 +01004526 SSL_free(conn_ctx->ssl);
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004527 pool_free(pool_head_quic_conn_ctx, conn_ctx);
Amaury Denoyelle2d9794b2022-01-20 17:43:20 +01004528 }
Amaury Denoyelle76f47ca2021-12-23 10:02:50 +01004529
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02004530 quic_tls_ku_free(qc);
4531 for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++) {
4532 quic_tls_ctx_secs_free(&qc->els[i].tls_ctx);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004533 quic_conn_enc_level_uninit(qc, &qc->els[i]);
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02004534 }
Frédéric Lécaille301425b2022-06-14 17:40:39 +02004535 quic_tls_ctx_secs_free(&qc->negotiated_ictx);
Frédéric Lécaille96fd1632022-04-01 11:21:47 +02004536
4537 app_tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx;
4538 pool_free(pool_head_quic_tls_secret, app_tls_ctx->rx.secret);
4539 pool_free(pool_head_quic_tls_secret, app_tls_ctx->tx.secret);
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01004540
Frédéric Lécailleeb2a2da2022-04-01 12:15:24 +02004541 for (i = 0; i < QUIC_TLS_PKTNS_MAX; i++) {
Frédéric Lécaille8ddde4f2022-08-01 14:07:50 +02004542 quic_pktns_tx_pkts_release(&qc->pktns[i], qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004543 quic_free_arngs(qc, &qc->pktns[i].rx.arngs);
Frédéric Lécailleeb2a2da2022-04-01 12:15:24 +02004544 }
Frédéric Lécaille64670882022-04-01 11:57:19 +02004545
Amaury Denoyelle67e6cd52021-12-13 17:07:03 +01004546 pool_free(pool_head_quic_conn_rxbuf, qc->rx.buf.area);
4547 pool_free(pool_head_quic_conn, qc);
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01004548 TRACE_PROTO("QUIC conn. freed", QUIC_EV_CONN_FREED, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004549
4550 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004551}
4552
Amaury Denoyellee0be5732022-04-05 17:34:18 +02004553static void quic_close(struct connection *conn, void *xprt_ctx)
Amaury Denoyelle414cac52021-09-22 11:14:37 +02004554{
4555 struct ssl_sock_ctx *conn_ctx = xprt_ctx;
Amaury Denoyelle29632b82022-01-18 16:50:58 +01004556 struct quic_conn *qc = conn_ctx->qc;
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01004557
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01004558 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle0a29e132021-12-23 15:06:56 +01004559
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01004560 /* Next application data can be dropped. */
4561 qc->mux_state = QC_MUX_RELEASED;
4562
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02004563 /* If the quic-conn timer has already expired free the quic-conn. */
4564 if (qc->flags & QUIC_FL_CONN_EXP_TIMER) {
4565 quic_conn_release(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004566 goto leave;
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02004567 }
4568
Amaury Denoyelle240b1b12022-07-13 15:18:16 +02004569 qc_check_close_on_released_mux(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004570 leave:
Frédéric Lécailleba85acd2022-01-11 14:43:50 +01004571 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelle414cac52021-09-22 11:14:37 +02004572}
4573
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004574/* Callback called upon loss detection and PTO timer expirations. */
Willy Tarreau41e701e2022-09-08 15:12:59 +02004575struct task *qc_process_timer(struct task *task, void *ctx, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004576{
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02004577 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004578 struct quic_conn *qc;
4579 struct quic_pktns *pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004580
4581 conn_ctx = task->context;
Amaury Denoyellec15dd922021-12-21 11:41:52 +01004582 qc = conn_ctx->qc;
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004583 TRACE_ENTER(QUIC_EV_CONN_PTIMER, qc,
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01004584 NULL, NULL, &qc->path->ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004585 task->expire = TICK_ETERNITY;
4586 pktns = quic_loss_pktns(qc);
4587 if (tick_isset(pktns->tx.loss_time)) {
4588 struct list lost_pkts = LIST_HEAD_INIT(lost_pkts);
4589
4590 qc_packet_loss_lookup(pktns, qc, &lost_pkts);
Frédéric Lécaille15773f22022-08-24 17:57:09 +02004591 if (!LIST_ISEMPTY(&lost_pkts))
4592 tasklet_wakeup(conn_ctx->wait_event.tasklet);
Frédéric Lécaille277c4622022-08-24 17:06:04 +02004593 qc_release_lost_pkts(qc, pktns, &lost_pkts, now_ms);
Amaury Denoyellee81fed92021-12-22 11:06:34 +01004594 qc_set_timer(qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004595 goto out;
4596 }
4597
4598 if (qc->path->in_flight) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004599 pktns = quic_pto_pktns(qc, qc->state >= QUIC_HS_ST_COMPLETE, NULL);
Frédéric Lécailledafbde62022-04-26 13:54:28 +02004600 if (qc->mux_state == QC_MUX_READY && qc->qcc->subs &&
4601 qc->qcc->subs->events & SUB_RETRY_SEND) {
4602 struct qcc *qcc = qc->qcc;
4603
4604 pktns->tx.pto_probe = QUIC_MAX_NB_PTO_DGRAMS;
4605 tasklet_wakeup(qcc->subs->tasklet);
4606 qcc->subs->events &= ~SUB_RETRY_SEND;
4607 if (!qcc->subs->events)
4608 qcc->subs = NULL;
4609 }
4610 else {
4611 qc->flags |= QUIC_FL_CONN_RETRANS_NEEDED;
4612 pktns->flags |= QUIC_FL_PKTNS_PROBE_NEEDED;
4613 if (pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL]) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004614 TRACE_STATE("needs to probe Initial packet number space", QUIC_EV_CONN_TXPKT, qc);
4615 if (qc->pktns[QUIC_TLS_PKTNS_HANDSHAKE].tx.in_flight) {
Frédéric Lécailledafbde62022-04-26 13:54:28 +02004616 qc->pktns[QUIC_TLS_PKTNS_HANDSHAKE].flags |= QUIC_FL_PKTNS_PROBE_NEEDED;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004617 TRACE_STATE("needs to probe Handshake packet number space", QUIC_EV_CONN_TXPKT, qc);
4618 }
4619 }
4620 else if (pktns == &qc->pktns[QUIC_TLS_PKTNS_HANDSHAKE]) {
4621 TRACE_STATE("needs to probe Handshake packet number space", QUIC_EV_CONN_TXPKT, qc);
4622 }
4623 else if (pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT]) {
4624 TRACE_STATE("needs to probe 01RTT packet number space", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécailledafbde62022-04-26 13:54:28 +02004625 }
Frédéric Lécaille0fa553d2022-01-17 14:26:12 +01004626 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004627 }
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004628 else if (!qc_is_listener(qc) && qc->state <= QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004629 struct quic_enc_level *iel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
4630 struct quic_enc_level *hel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
4631
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004632 if (hel->tls_ctx.flags == QUIC_FL_TLS_SECRETS_SET)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004633 hel->pktns->tx.pto_probe = 1;
Frédéric Lécaillebd242082022-02-25 17:17:59 +01004634 if (iel->tls_ctx.flags == QUIC_FL_TLS_SECRETS_SET)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004635 iel->pktns->tx.pto_probe = 1;
4636 }
Frédéric Lécaillea56054e2021-12-31 16:35:28 +01004637
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004638 tasklet_wakeup(conn_ctx->wait_event.tasklet);
4639 qc->path->loss.pto_count++;
4640
4641 out:
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01004642 TRACE_LEAVE(QUIC_EV_CONN_PTIMER, qc, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004643
4644 return task;
4645}
4646
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004647/* Parse the Retry token from buffer <token> with <end> a pointer to
4648 * one byte past the end of this buffer. This will extract the ODCID
4649 * which will be stored into <odcid>
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004650 *
4651 * Returns 0 on success else non-zero.
4652 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004653static int parse_retry_token(struct quic_conn *qc,
4654 const unsigned char *token, const unsigned char *end,
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004655 struct quic_cid *odcid)
4656{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004657 int ret = 0;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004658 uint64_t odcid_len;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004659 uint32_t timestamp;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004660
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004661 TRACE_ENTER(QUIC_EV_CONN_LPKT, qc);
4662
4663 if (!quic_dec_int(&odcid_len, &token, end)) {
4664 TRACE_ERROR("quic_dec_int() error", QUIC_EV_CONN_LPKT, qc);
4665 goto leave;
4666 }
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004667
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004668 /* RFC 9000 7.2. Negotiating Connection IDs:
4669 * When an Initial packet is sent by a client that has not previously
4670 * received an Initial or Retry packet from the server, the client
4671 * populates the Destination Connection ID field with an unpredictable
4672 * value. This Destination Connection ID MUST be at least 8 bytes in length.
4673 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004674 if (odcid_len < QUIC_ODCID_MINLEN || odcid_len > QUIC_CID_MAXLEN) {
4675 TRACE_ERROR("wrong ODCID length", QUIC_EV_CONN_LPKT, qc);
4676 goto leave;
4677 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004678
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004679 if (end - token < odcid_len + sizeof timestamp) {
4680 TRACE_ERROR("too long ODCID length", QUIC_EV_CONN_LPKT, qc);
4681 goto leave;
4682 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02004683
4684 timestamp = ntohl(read_u32(token + odcid_len));
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004685 if (timestamp + MS_TO_TICKS(QUIC_RETRY_DURATION_MS) <= now_ms) {
4686 TRACE_ERROR("token has expired", QUIC_EV_CONN_LPKT, qc);
4687 goto leave;
4688 }
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004689
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004690 ret = 1;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004691 memcpy(odcid->data, token, odcid_len);
4692 odcid->len = odcid_len;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004693 leave:
4694 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc);
4695 return !ret;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004696}
4697
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004698/* Allocate a new QUIC connection with <version> as QUIC version. <ipv4>
4699 * boolean is set to 1 for IPv4 connection, 0 for IPv6. <server> is set to 1
4700 * for QUIC servers (or haproxy listeners).
4701 * <dcid> is the destination connection ID, <scid> is the source connection ID,
4702 * <token> the token found to be used for this connection with <token_len> as
4703 * length. <saddr> is the source address.
4704 * Returns the connection if succeeded, NULL if not.
4705 */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02004706static struct quic_conn *qc_new_conn(const struct quic_version *qv, int ipv4,
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004707 struct quic_cid *dcid, struct quic_cid *scid,
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02004708 const struct quic_cid *token_odcid,
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004709 struct sockaddr_storage *saddr,
Frédéric Lécaille748ece62022-05-21 23:58:40 +02004710 int server, int token, void *owner)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004711{
4712 int i;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004713 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004714 /* Initial CID. */
4715 struct quic_connection_id *icid;
Frédéric Lécaillec0b481f2022-02-02 15:39:55 +01004716 char *buf_area = NULL;
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01004717 struct listener *l = NULL;
Frédéric Lécaille43910a92022-07-11 10:24:21 +02004718 struct quic_cc_algo *cc_algo = NULL;
Frédéric Lécaille86a53c52022-08-19 18:18:13 +02004719 struct quic_tls_ctx *ictx;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004720 TRACE_ENTER(QUIC_EV_CONN_INIT);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004721 qc = pool_zalloc(pool_head_quic_conn);
4722 if (!qc) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004723 TRACE_ERROR("Could not allocate a new connection", QUIC_EV_CONN_INIT);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004724 goto err;
4725 }
4726
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004727 buf_area = pool_alloc(pool_head_quic_conn_rxbuf);
4728 if (!buf_area) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004729 TRACE_ERROR("Could not allocate a new RX buffer", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004730 goto err;
4731 }
4732
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004733 qc->cids = EB_ROOT;
4734 /* QUIC Server (or listener). */
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004735 if (server) {
Frédéric Lécaillea89659a2022-05-19 11:58:53 +02004736 struct proxy *prx;
4737
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01004738 l = owner;
Frédéric Lécaillea89659a2022-05-19 11:58:53 +02004739 prx = l->bind_conf->frontend;
Frédéric Lécaille43910a92022-07-11 10:24:21 +02004740 cc_algo = l->bind_conf->quic_cc_algo;
Frédéric Lécaille6b197642021-07-06 16:25:08 +02004741
Frédéric Lécaillea89659a2022-05-19 11:58:53 +02004742 qc->prx_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe,
4743 &quic_stats_module);
Frédéric Lécaille2fe8b3b2022-01-10 12:10:10 +01004744 qc->flags |= QUIC_FL_CONN_LISTENER;
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004745 qc->state = QUIC_HS_ST_SERVER_INITIAL;
Amaury Denoyellec92cbfc2021-12-14 17:20:59 +01004746 /* Copy the initial DCID with the address. */
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004747 qc->odcid.len = dcid->len;
4748 qc->odcid.addrlen = dcid->addrlen;
4749 memcpy(qc->odcid.data, dcid->data, dcid->len + dcid->addrlen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004750
Amaury Denoyelle42b9f1c2021-11-24 15:29:53 +01004751 /* copy the packet SCID to reuse it as DCID for sending */
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004752 if (scid->len)
4753 memcpy(qc->dcid.data, scid->data, scid->len);
4754 qc->dcid.len = scid->len;
Amaury Denoyellef2476052022-08-04 16:19:57 +02004755 qc->tx.buf = BUF_NULL;
Amaury Denoyelle2af19852021-09-30 11:03:28 +02004756 qc->li = l;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004757 }
4758 /* QUIC Client (outgoing connection to servers) */
4759 else {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02004760 qc->state = QUIC_HS_ST_CLIENT_INITIAL;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004761 if (dcid->len)
4762 memcpy(qc->dcid.data, dcid->data, dcid->len);
4763 qc->dcid.len = dcid->len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004764 }
Amaury Denoyelle0b1f9312022-01-26 09:51:28 +01004765 qc->mux_state = QC_MUX_NULL;
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02004766 qc->err = quic_err_transport(QC_ERR_NO_ERROR);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004767
Amaury Denoyelle0442efd2022-01-28 16:02:13 +01004768 icid = new_quic_cid(&qc->cids, qc, 0);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004769 if (!icid) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004770 TRACE_ERROR("Could not allocate a new connection ID", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004771 goto err;
4772 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004773
Frédéric Lécaille74904a42022-01-27 15:35:56 +01004774 /* insert the allocated CID in the receiver datagram handler tree */
4775 if (server)
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01004776 ebmb_insert(&quic_dghdlrs[tid].cids, &icid->node, icid->cid.len);
Amaury Denoyelled6a352a2021-11-24 15:32:46 +01004777
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004778 /* Select our SCID which is the first CID with 0 as sequence number. */
4779 qc->scid = icid->cid;
4780
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004781 /* Packet number spaces initialization. */
4782 for (i = 0; i < QUIC_TLS_PKTNS_MAX; i++)
4783 quic_pktns_init(&qc->pktns[i]);
4784 /* QUIC encryption level context initialization. */
4785 for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++) {
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004786 if (!quic_conn_enc_level_init(qc, i)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004787 TRACE_ERROR("Could not initialize an encryption level", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004788 goto err;
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004789 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004790 /* Initialize the packet number space. */
4791 qc->els[i].pktns = &qc->pktns[quic_tls_pktns(i)];
4792 }
4793
Frédéric Lécaille301425b2022-06-14 17:40:39 +02004794 qc->original_version = qv;
4795 qc->tps_tls_ext = (qc->original_version->num & 0xff000000) == 0xff000000 ?
Frédéric Lécaillea956d152021-11-10 09:24:22 +01004796 TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS_DRAFT:
4797 TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004798 /* TX part. */
4799 LIST_INIT(&qc->tx.frms_to_send);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004800 qc->tx.nb_buf = QUIC_CONN_TX_BUFS_NB;
4801 qc->tx.wbuf = qc->tx.rbuf = 0;
4802 qc->tx.bytes = 0;
Amaury Denoyellef2476052022-08-04 16:19:57 +02004803 qc->tx.buf = BUF_NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004804 /* RX part. */
4805 qc->rx.bytes = 0;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004806 qc->rx.buf = b_make(buf_area, QUIC_CONN_RX_BUFSZ, 0, 0);
Frédéric Lécaille664741e2022-05-02 18:46:58 +02004807 for (i = 0; i < QCS_MAX_TYPES; i++)
4808 qc->rx.strms[i].nb_streams = 0;
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02004809
4810 qc->nb_pkt_for_cc = 1;
4811 qc->nb_pkt_since_cc = 0;
4812
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01004813 LIST_INIT(&qc->rx.pkt_list);
Frédéric Lécaille40df78f2021-11-30 10:59:37 +01004814 if (!quic_tls_ku_init(qc)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004815 TRACE_ERROR("Key update initialization failed", QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille40df78f2021-11-30 10:59:37 +01004816 goto err;
4817 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004818
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004819 /* XXX TO DO: Only one path at this time. */
4820 qc->path = &qc->paths[0];
Frédéric Lécaille43910a92022-07-11 10:24:21 +02004821 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 +01004822
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01004823 /* required to use MTLIST_IN_LIST */
4824 MT_LIST_INIT(&qc->accept_list);
4825
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004826 qc->streams_by_id = EB_ROOT_UNIQUE;
Amaury Denoyelled2f80a22022-04-15 17:30:49 +02004827 qc->stream_buf_count = 0;
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004828 memcpy(&qc->peer_addr, saddr, sizeof qc->peer_addr);
4829
Frédéric Lécaille748ece62022-05-21 23:58:40 +02004830 if (server && !qc_lstnr_params_init(qc, &l->bind_conf->quic_params,
4831 icid->stateless_reset_token,
4832 dcid->data, dcid->len,
Frédéric Lécaille7629f5d2022-08-11 18:54:26 +02004833 qc->scid.data, qc->scid.len, token_odcid))
Frédéric Lécaille395a64d2022-05-09 15:42:26 +02004834 goto err;
Amaury Denoyelle5c3859c2022-03-29 14:49:35 +02004835
Frédéric Lécaille3fd92f62022-05-19 14:35:20 +02004836 if (qc_conn_alloc_ssl_ctx(qc) ||
4837 !quic_conn_init_timer(qc) ||
4838 !quic_conn_init_idle_timer_task(qc))
4839 goto err;
4840
Frédéric Lécaille86a53c52022-08-19 18:18:13 +02004841 ictx = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].tls_ctx;
4842 if (!qc_new_isecs(qc, ictx,qc->original_version, dcid->data, dcid->len, 1))
Frédéric Lécaille3fd92f62022-05-19 14:35:20 +02004843 goto err;
4844
Amaury Denoyellee770ce32021-12-21 14:51:56 +01004845 TRACE_LEAVE(QUIC_EV_CONN_INIT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004846
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004847 return qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004848
4849 err:
Frédéric Lécaillec0b481f2022-02-02 15:39:55 +01004850 pool_free(pool_head_quic_conn_rxbuf, buf_area);
4851 if (qc)
4852 qc->rx.buf.area = NULL;
Frédéric Lécaillef293b692022-03-08 16:59:54 +01004853 quic_conn_release(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004854 TRACE_LEAVE(QUIC_EV_CONN_INIT, qc);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02004855 return NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004856}
4857
4858/* Initialize the timer task of <qc> QUIC connection.
4859 * Returns 1 if succeeded, 0 if not.
4860 */
4861static int quic_conn_init_timer(struct quic_conn *qc)
4862{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004863 int ret = 0;
Frédéric Lécaillef57c3332021-12-09 10:06:21 +01004864 /* Attach this task to the same thread ID used for the connection */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004865 TRACE_ENTER(QUIC_EV_CONN_NEW, qc);
4866
Willy Tarreau87168752022-06-13 16:31:53 +02004867 qc->timer_task = task_new_on(qc->tid);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004868 if (!qc->timer_task) {
4869 TRACE_ERROR("timer task allocation failed", QUIC_EV_CONN_NEW, qc);
4870 goto leave;
4871 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004872
4873 qc->timer = TICK_ETERNITY;
Willy Tarreau41e701e2022-09-08 15:12:59 +02004874 qc->timer_task->process = qc_process_timer;
Frédéric Lécaille7fbb94d2022-01-31 10:37:07 +01004875 qc->timer_task->context = qc->xprt_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004876
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004877 ret = 1;
4878 leave:
4879 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
4880 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004881}
4882
Frédéric Lécaille47756802022-03-25 09:12:16 +01004883/* Rearm the idle timer for <qc> QUIC connection. */
4884static void qc_idle_timer_do_rearm(struct quic_conn *qc)
4885{
4886 unsigned int expire;
4887
4888 expire = QUIC_MAX(3 * quic_pto(qc), qc->max_idle_timeout);
4889 qc->idle_timer_task->expire = tick_add(now_ms, MS_TO_TICKS(expire));
4890}
4891
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004892/* Rearm the idle timer for <qc> QUIC connection depending on <read> boolean
4893 * which is set to 1 when receiving a packet , and 0 when sending packet
4894 */
4895static void qc_idle_timer_rearm(struct quic_conn *qc, int read)
4896{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004897 TRACE_ENTER(QUIC_EV_CONN_IDLE_TIMER, qc);
4898
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004899 if (read) {
4900 qc->flags |= QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ;
4901 }
4902 else {
4903 qc->flags &= ~QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ;
4904 }
Frédéric Lécaille47756802022-03-25 09:12:16 +01004905 qc_idle_timer_do_rearm(qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004906
4907 TRACE_LEAVE(QUIC_EV_CONN_IDLE_TIMER, qc);
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004908}
4909
4910/* The task handling the idle timeout */
Willy Tarreau41e701e2022-09-08 15:12:59 +02004911struct task *qc_idle_timer_task(struct task *t, void *ctx, unsigned int state)
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004912{
4913 struct quic_conn *qc = ctx;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02004914 struct quic_counters *prx_counters = qc->prx_counters;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02004915 unsigned int qc_flags = qc->flags;
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004916
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004917 TRACE_ENTER(QUIC_EV_CONN_IDLE_TIMER, qc);
4918
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02004919 /* Notify the MUX before settings QUIC_FL_CONN_EXP_TIMER or the MUX
4920 * might free the quic-conn too early via quic_close().
4921 */
4922 qc_notify_close(qc);
4923
Amaury Denoyelledb71e3b2022-04-06 17:22:12 +02004924 /* If the MUX is still alive, keep the quic-conn. The MUX is
4925 * responsible to call quic_close to release it.
4926 */
4927 qc->flags |= QUIC_FL_CONN_EXP_TIMER;
4928 if (qc->mux_state != QC_MUX_READY)
4929 quic_conn_release(qc);
4930
4931 /* TODO if the quic-conn cannot be freed because of the MUX, we may at
4932 * least clean some parts of it such as the tasklet.
4933 */
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02004934
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02004935 if (!(qc_flags & QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED)) {
4936 qc_flags |= QUIC_FL_CONN_HALF_OPEN_CNT_DECREMENTED;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004937 TRACE_DEVEL("dec half open counter", QUIC_EV_CONN_SSLALERT, qc);
Frédéric Lécailleeb791452022-05-24 16:01:39 +02004938 HA_ATOMIC_DEC(&prx_counters->half_open_conn);
Frédéric Lécaille2aebaa42022-06-17 15:11:32 +02004939 }
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004940
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004941 TRACE_LEAVE(QUIC_EV_CONN_IDLE_TIMER, qc);
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004942 return NULL;
4943}
4944
4945/* Initialize the idle timeout task for <qc>.
4946 * Returns 1 if succeeded, 0 if not.
4947 */
4948static int quic_conn_init_idle_timer_task(struct quic_conn *qc)
4949{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004950 int ret = 0;
4951
4952 TRACE_ENTER(QUIC_EV_CONN_NEW, qc);
4953
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004954 qc->idle_timer_task = task_new_here();
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004955 if (!qc->idle_timer_task) {
4956 TRACE_ERROR("Idle timer task allocation failed", QUIC_EV_CONN_NEW, qc);
4957 goto leave;
4958 }
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004959
4960 qc->idle_timer_task->process = qc_idle_timer_task;
4961 qc->idle_timer_task->context = qc;
4962 qc_idle_timer_rearm(qc, 1);
4963 task_queue(qc->idle_timer_task);
4964
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004965 ret = 1;
4966 leave:
4967 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
4968 return ret;
Frédéric Lécaille530601c2022-03-10 15:11:57 +01004969}
4970
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004971/* Parse into <pkt> a long header located at <*buf> buffer, <end> begin a pointer to the end
4972 * past one byte of this buffer.
4973 */
4974static inline int quic_packet_read_long_header(unsigned char **buf, const unsigned char *end,
4975 struct quic_rx_packet *pkt)
4976{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004977 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004978 unsigned char dcid_len, scid_len;
4979
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02004980 TRACE_ENTER(QUIC_EV_CONN_RXPKT);
4981
4982 if (end == *buf) {
4983 TRACE_ERROR("buffer data consumed", QUIC_EV_CONN_RXPKT);
4984 goto leave;
4985 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004986
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004987 /* Destination Connection ID Length */
4988 dcid_len = *(*buf)++;
4989 /* 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 +02004990 if (dcid_len > QUIC_CID_MAXLEN || end - *buf < dcid_len + 1) {
4991 TRACE_ERROR("too long DCID", QUIC_EV_CONN_RXPKT);
4992 goto leave;
4993 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004994
4995 if (dcid_len) {
4996 /* Check that the length of this received DCID matches the CID lengths
4997 * of our implementation for non Initials packets only.
4998 */
Frédéric Lécaillea5da31d2021-12-14 19:44:14 +01004999 if (pkt->type != QUIC_PACKET_TYPE_INITIAL &&
5000 pkt->type != QUIC_PACKET_TYPE_0RTT &&
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005001 dcid_len != QUIC_HAP_CID_LEN) {
5002 TRACE_ERROR("wrong DCID length", QUIC_EV_CONN_RXPKT);
5003 goto leave;
5004 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005005
5006 memcpy(pkt->dcid.data, *buf, dcid_len);
5007 }
5008
5009 pkt->dcid.len = dcid_len;
5010 *buf += dcid_len;
5011
5012 /* Source Connection ID Length */
5013 scid_len = *(*buf)++;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005014 if (scid_len > QUIC_CID_MAXLEN || end - *buf < scid_len) {
5015 TRACE_ERROR("too long SCID", QUIC_EV_CONN_RXPKT);
5016 goto leave;
5017 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005018
5019 if (scid_len)
5020 memcpy(pkt->scid.data, *buf, scid_len);
5021 pkt->scid.len = scid_len;
5022 *buf += scid_len;
5023
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005024 ret = 1;
5025 leave:
5026 TRACE_LEAVE(QUIC_EV_CONN_RXPKT);
5027 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005028}
5029
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005030/* Insert <pkt> RX packet in its <qel> RX packets tree */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005031static void qc_pkt_insert(struct quic_conn *qc,
5032 struct quic_rx_packet *pkt, struct quic_enc_level *qel)
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005033{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005034 TRACE_ENTER(QUIC_EV_CONN_RXPKT, qc);
5035
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005036 pkt->pn_node.key = pkt->pn;
Frédéric Lécaille2ce5acf2021-12-20 14:41:19 +01005037 quic_rx_packet_refinc(pkt);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005038 eb64_insert(&qel->rx.pkts, &pkt->pn_node);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005039
5040 TRACE_LEAVE(QUIC_EV_CONN_RXPKT, qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005041}
5042
5043/* Try to remove the header protection of <pkt> QUIC packet attached to <qc>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005044 * QUIC connection with <buf> as packet number field address, <end> a pointer to one
5045 * byte past the end of the buffer containing this packet and <beg> the address of
5046 * the packet first byte.
5047 * If succeeded, this function updates <*buf> to point to the next packet in the buffer.
5048 * Returns 1 if succeeded, 0 if not.
5049 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01005050static inline int qc_try_rm_hp(struct quic_conn *qc,
5051 struct quic_rx_packet *pkt,
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005052 unsigned char *buf, unsigned char *beg,
Amaury Denoyellee81fed92021-12-22 11:06:34 +01005053 struct quic_enc_level **el)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005054{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005055 int ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005056 unsigned char *pn = NULL; /* Packet number field */
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01005057 enum quic_tls_enc_level tel;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005058 struct quic_enc_level *qel;
5059 /* Only for traces. */
5060 struct quic_rx_packet *qpkt_trace;
5061
5062 qpkt_trace = NULL;
Amaury Denoyellee81fed92021-12-22 11:06:34 +01005063 TRACE_ENTER(QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005064 /* The packet number is here. This is also the start minus
5065 * QUIC_PACKET_PN_MAXLEN of the sample used to add/remove the header
5066 * protection.
5067 */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005068 pn = buf;
Amaury Denoyelle8ae28072022-01-24 18:34:52 +01005069
5070 tel = quic_packet_type_enc_level(pkt->type);
5071 qel = &qc->els[tel];
5072
5073 if (qc_qel_may_rm_hp(qc, qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005074 /* Note that the following function enables us to unprotect the packet
5075 * number and its length subsequently used to decrypt the entire
5076 * packets.
5077 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01005078 if (!qc_do_rm_hp(qc, pkt, &qel->tls_ctx,
Frédéric Lécaille99897d12022-08-08 10:28:07 +02005079 qel->pktns->rx.largest_pn, pn, beg)) {
Amaury Denoyellee81fed92021-12-22 11:06:34 +01005080 TRACE_PROTO("hp error", QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005081 goto out;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005082 }
5083
5084 /* The AAD includes the packet number field found at <pn>. */
5085 pkt->aad_len = pn - beg + pkt->pnl;
Frédéric Lécailleffde3162022-08-08 18:41:16 +02005086 if (pkt->len - pkt->aad_len < QUIC_TLS_TAG_LEN) {
5087 TRACE_PROTO("Too short packet", QUIC_EV_CONN_TRMHP, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005088 goto out;
Frédéric Lécailleffde3162022-08-08 18:41:16 +02005089 }
5090
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005091 qpkt_trace = pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005092 }
Frédéric Lécaille7d845f12022-02-21 19:22:09 +01005093 else {
Frédéric Lécaillebd242082022-02-25 17:17:59 +01005094 if (qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD) {
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005095 /* If the packet number space has been discarded, this packet
5096 * will be not parsed.
5097 */
Amaury Denoyellee81fed92021-12-22 11:06:34 +01005098 TRACE_PROTO("Discarded pktns", QUIC_EV_CONN_TRMHP, qc, pkt);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005099 goto out;
5100 }
5101
Amaury Denoyellee81fed92021-12-22 11:06:34 +01005102 TRACE_PROTO("hp not removed", QUIC_EV_CONN_TRMHP, qc, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005103 pkt->pn_offset = pn - beg;
Frédéric Lécaillea2d8ad22022-08-23 17:45:52 +02005104 LIST_APPEND(&qel->rx.pqpkts, &pkt->list);
Frédéric Lécailleebc3fc12021-09-22 08:34:21 +02005105 quic_rx_packet_refinc(pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005106 }
5107
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005108 *el = qel;
5109 /* No reference counter incrementation here!!! */
5110 LIST_APPEND(&qc->rx.pkt_list, &pkt->qc_rx_pkt_list);
5111 memcpy(b_tail(&qc->rx.buf), beg, pkt->len);
5112 pkt->data = (unsigned char *)b_tail(&qc->rx.buf);
5113 b_add(&qc->rx.buf, pkt->len);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005114
5115 ret = 1;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005116 out:
Amaury Denoyellee81fed92021-12-22 11:06:34 +01005117 TRACE_LEAVE(QUIC_EV_CONN_TRMHP, qc, qpkt_trace);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005118 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005119}
5120
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005121/* 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 +02005122 * Also set <*long_header> to 1 if this form is long, 0 if not and the version
5123 * of this packet into <*version>.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005124 */
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005125static inline int qc_parse_hd_form(struct quic_rx_packet *pkt,
5126 unsigned char **buf, const unsigned char *end,
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005127 int *long_header, uint32_t *version)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005128{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005129 int ret = 0;
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005130 const unsigned char byte0 = **buf;
5131
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005132 TRACE_ENTER(QUIC_EV_CONN_RXPKT);
5133
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005134 (*buf)++;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005135 if (byte0 & QUIC_PACKET_LONG_HEADER_BIT) {
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005136 unsigned char type =
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005137 (byte0 >> QUIC_PACKET_TYPE_SHIFT) & QUIC_PACKET_TYPE_BITMASK;
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005138
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005139 *long_header = 1;
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005140 /* Version */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005141 if (!quic_read_uint32(version, (const unsigned char **)buf, end)) {
5142 TRACE_ERROR("could not read the packet version", QUIC_EV_CONN_RXPKT);
5143 goto out;
5144 }
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005145
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005146 if (*version != QUIC_PROTOCOL_VERSION_2_DRAFT) {
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005147 pkt->type = type;
5148 }
5149 else {
5150 switch (type) {
5151 case 0:
5152 pkt->type = QUIC_PACKET_TYPE_RETRY;
5153 break;
5154 case 1:
5155 pkt->type = QUIC_PACKET_TYPE_INITIAL;
5156 break;
5157 case 2:
5158 pkt->type = QUIC_PACKET_TYPE_0RTT;
5159 break;
5160 case 3:
5161 pkt->type = QUIC_PACKET_TYPE_HANDSHAKE;
5162 break;
5163 }
5164 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005165 }
5166 else {
5167 pkt->type = QUIC_PACKET_TYPE_SHORT;
5168 *long_header = 0;
5169 }
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005170
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005171 ret = 1;
5172 out:
5173 TRACE_LEAVE(QUIC_EV_CONN_RXPKT);
Frédéric Lécaille59507de2022-08-11 12:14:07 +02005174 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005175}
5176
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005177/* Return the QUIC version (quic_version struct) with <version> as version number
5178 * if supported or NULL if not.
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005179 */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005180static inline const struct quic_version *qc_supported_version(uint32_t version)
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005181{
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005182 int i;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005183
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005184 for (i = 0; i < quic_versions_nb; i++)
5185 if (quic_versions[i].num == version)
5186 return &quic_versions[i];
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005187
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005188 return NULL;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005189}
5190
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005191/*
5192 * Send a Version Negotiation packet on response to <pkt> on socket <fd> to
5193 * address <addr>.
5194 * Implementation of RFC9000 6. Version Negotiation
5195 *
5196 * TODO implement a rate-limiting sending of Version Negotiation packets
5197 *
5198 * Returns 0 on success else non-zero
5199 */
Amaury Denoyelled6b16672021-12-23 10:37:19 +01005200static int send_version_negotiation(int fd, struct sockaddr_storage *addr,
5201 struct quic_rx_packet *pkt)
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005202{
5203 char buf[256];
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005204 int ret = 0, i = 0, j;
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005205 uint32_t version;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005206 const socklen_t addrlen = get_addr_len(addr);
5207
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005208 TRACE_ENTER(QUIC_EV_CONN_TXPKT);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005209 /*
5210 * header form
5211 * long header, fixed bit to 0 for Version Negotiation
5212 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005213 /* TODO: RAND_bytes() should be replaced? */
5214 if (RAND_bytes((unsigned char *)buf, 1) != 1) {
5215 TRACE_ERROR("RAND_bytes() error", QUIC_EV_CONN_TXPKT);
5216 goto out;
5217 }
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005218
Frédéric Lécailleea78ee12021-11-18 13:54:43 +01005219 buf[i++] |= '\x80';
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005220 /* null version for Version Negotiation */
5221 buf[i++] = '\x00';
5222 buf[i++] = '\x00';
5223 buf[i++] = '\x00';
5224 buf[i++] = '\x00';
5225
5226 /* source connection id */
5227 buf[i++] = pkt->scid.len;
Amaury Denoyelle10eed8e2021-11-18 13:48:57 +01005228 memcpy(&buf[i], pkt->scid.data, pkt->scid.len);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005229 i += pkt->scid.len;
5230
5231 /* destination connection id */
5232 buf[i++] = pkt->dcid.len;
Amaury Denoyelle10eed8e2021-11-18 13:48:57 +01005233 memcpy(&buf[i], pkt->dcid.data, pkt->dcid.len);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005234 i += pkt->dcid.len;
5235
5236 /* supported version */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005237 for (j = 0; j < quic_versions_nb; j++) {
5238 version = htonl(quic_versions[j].num);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005239 memcpy(&buf[i], &version, sizeof(version));
5240 i += sizeof(version);
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005241 }
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005242
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005243 if (sendto(fd, buf, i, 0, (struct sockaddr *)addr, addrlen) < 0)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005244 goto out;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005245
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005246 ret = 1;
5247 out:
5248 TRACE_LEAVE(QUIC_EV_CONN_TXPKT);
5249 return !ret;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005250}
5251
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005252/* Send a stateless reset packet depending on <pkt> RX packet information
5253 * from <fd> UDP socket to <dst>
5254 * Return 1 if succeeded, 0 if not.
5255 */
Frédéric Lécailleeb791452022-05-24 16:01:39 +02005256static int send_stateless_reset(struct listener *l, struct sockaddr_storage *dstaddr,
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005257 struct quic_rx_packet *rxpkt)
5258{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005259 int ret = 0, pktlen, rndlen;
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005260 unsigned char pkt[64];
5261 const socklen_t addrlen = get_addr_len(dstaddr);
Frédéric Lécailleeb791452022-05-24 16:01:39 +02005262 struct proxy *prx;
5263 struct quic_counters *prx_counters;
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005264
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005265 TRACE_ENTER(QUIC_EV_STATELESS_RST);
5266
Frédéric Lécailleeb791452022-05-24 16:01:39 +02005267 prx = l->bind_conf->frontend;
5268 prx_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe, &quic_stats_module);
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005269 /* 10.3 Stateless Reset (https://www.rfc-editor.org/rfc/rfc9000.html#section-10.3)
5270 * The resulting minimum size of 21 bytes does not guarantee that a Stateless
5271 * Reset is difficult to distinguish from other packets if the recipient requires
5272 * the use of a connection ID. To achieve that end, the endpoint SHOULD ensure
5273 * that all packets it sends are at least 22 bytes longer than the minimum
5274 * connection ID length that it requests the peer to include in its packets,
5275 * adding PADDING frames as necessary. This ensures that any Stateless Reset
5276 * sent by the peer is indistinguishable from a valid packet sent to the endpoint.
5277 * An endpoint that sends a Stateless Reset in response to a packet that is
5278 * 43 bytes or shorter SHOULD send a Stateless Reset that is one byte shorter
5279 * than the packet it responds to.
5280 */
5281
5282 /* Note that we build at most a 42 bytes QUIC packet to mimic a short packet */
5283 pktlen = rxpkt->len <= 43 ? rxpkt->len - 1 : 0;
5284 pktlen = QUIC_MAX(QUIC_STATELESS_RESET_PACKET_MINLEN, pktlen);
5285 rndlen = pktlen - QUIC_STATELESS_RESET_TOKEN_LEN;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005286
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005287 /* Put a header of random bytes */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005288 /* TODO: RAND_bytes() should be replaced */
5289 if (RAND_bytes(pkt, rndlen) != 1) {
5290 TRACE_ERROR("RAND_bytes() failed", QUIC_EV_STATELESS_RST);
5291 goto leave;
5292 }
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005293
5294 /* Clear the most significant bit, and set the second one */
5295 *pkt = (*pkt & ~0x80) | 0x40;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005296 if (!quic_stateless_reset_token_cpy(NULL, pkt + rndlen, QUIC_STATELESS_RESET_TOKEN_LEN,
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005297 rxpkt->dcid.data, rxpkt->dcid.len))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005298 goto leave;
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005299
Frédéric Lécailleeb791452022-05-24 16:01:39 +02005300 if (sendto(l->rx.fd, pkt, pktlen, 0, (struct sockaddr *)dstaddr, addrlen) < 0)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005301 goto leave;
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005302
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005303 ret = 1;
Frédéric Lécailleeb791452022-05-24 16:01:39 +02005304 HA_ATOMIC_INC(&prx_counters->stateless_reset_sent);
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005305 TRACE_PROTO("stateless reset sent", QUIC_EV_STATELESS_RST, NULL, &rxpkt->dcid);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005306 leave:
5307 TRACE_LEAVE(QUIC_EV_STATELESS_RST);
5308 return ret;
Frédéric Lécaillee2fb1bf2022-05-09 16:30:55 +02005309}
5310
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005311/* QUIC server only function.
5312 * Add AAD to <add> buffer from <cid> connection ID and <addr> socket address.
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05005313 * This is the responsibility of the caller to check <aad> size is big enough
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005314 * to contain these data.
5315 * Return the number of bytes copied to <aad>.
5316 */
5317static int quic_generate_retry_token_aad(unsigned char *aad,
5318 uint32_t version,
5319 const struct quic_cid *cid,
5320 const struct sockaddr_storage *addr)
5321{
5322 unsigned char *p;
5323
5324 p = aad;
5325 memcpy(p, &version, sizeof version);
5326 p += sizeof version;
5327 p += quic_saddr_cpy(p, addr);
5328 memcpy(p, cid->data, cid->len);
5329 p += cid->len;
5330
5331 return p - aad;
5332}
5333
5334/* QUIC server only function.
5335 * Generate the token to be used in Retry packets. The token is written to
5336 * <buf> whith <len> as length. <odcid> is the original destination connection
5337 * ID and <dcid> is our side destination connection ID (or client source
5338 * connection ID).
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005339 * Returns the length of the encoded token or 0 on error.
5340 */
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005341static int quic_generate_retry_token(unsigned char *buf, size_t len,
5342 const uint32_t version,
5343 const struct quic_cid *odcid,
5344 const struct quic_cid *dcid,
5345 struct sockaddr_storage *addr)
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005346{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005347 int ret = 0;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005348 unsigned char *p;
5349 unsigned char aad[sizeof(uint32_t) + sizeof(in_port_t) +
5350 sizeof(struct in6_addr) + QUIC_HAP_CID_LEN];
5351 size_t aadlen;
5352 unsigned char salt[QUIC_RETRY_TOKEN_SALTLEN];
5353 unsigned char key[QUIC_TLS_KEY_LEN];
5354 unsigned char iv[QUIC_TLS_IV_LEN];
5355 const unsigned char *sec = (const unsigned char *)global.cluster_secret;
5356 size_t seclen = strlen(global.cluster_secret);
5357 EVP_CIPHER_CTX *ctx = NULL;
5358 const EVP_CIPHER *aead = EVP_aes_128_gcm();
5359 uint32_t timestamp = now_ms;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005360
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005361 TRACE_ENTER(QUIC_EV_CONN_TXPKT);
5362
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005363 /* We copy the odcid into the token, prefixed by its one byte
5364 * length, the format token byte. It is followed by an AEAD TAG, and finally
5365 * the random bytes used to derive the secret to encrypt the token.
5366 */
5367 if (1 + dcid->len + 1 + QUIC_TLS_TAG_LEN + sizeof salt > len)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005368 goto err;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005369
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005370 aadlen = quic_generate_retry_token_aad(aad, version, dcid, addr);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005371 /* TODO: RAND_bytes() should be replaced */
5372 if (RAND_bytes(salt, sizeof salt) != 1) {
5373 TRACE_ERROR("RAND_bytes()", QUIC_EV_CONN_TXPKT);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005374 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005375 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005376
5377 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 +02005378 salt, sizeof salt, sec, seclen)) {
5379 TRACE_ERROR("quic_tls_derive_retry_token_secret() failed", QUIC_EV_CONN_TXPKT);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005380 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005381 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005382
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005383 if (!quic_tls_tx_ctx_init(&ctx, aead, key)) {
5384 TRACE_ERROR("quic_tls_tx_ctx_init() failed", QUIC_EV_CONN_TXPKT);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005385 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005386 }
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005387
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005388 /* Token build */
5389 p = buf;
5390 *p++ = QUIC_TOKEN_FMT_RETRY,
5391 *p++ = odcid->len;
5392 memcpy(p, odcid->data, odcid->len);
5393 p += odcid->len;
5394 write_u32(p, htonl(timestamp));
5395 p += sizeof timestamp;
5396
5397 /* Do not encrypt the QUIC_TOKEN_FMT_RETRY byte */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005398 if (!quic_tls_encrypt(buf + 1, p - buf - 1, aad, aadlen, ctx, aead, key, iv)) {
5399 TRACE_ERROR("quic_tls_encrypt() failed", QUIC_EV_CONN_TXPKT);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005400 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005401 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005402
5403 p += QUIC_TLS_TAG_LEN;
5404 memcpy(p, salt, sizeof salt);
5405 p += sizeof salt;
5406 EVP_CIPHER_CTX_free(ctx);
5407
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005408 ret = p - buf;
5409 leave:
5410 TRACE_LEAVE(QUIC_EV_CONN_TXPKT);
5411 return ret;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005412
5413 err:
5414 if (ctx)
5415 EVP_CIPHER_CTX_free(ctx);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005416 goto leave;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005417}
5418
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005419/* QUIC server only function.
5420 * Check the validity of the Retry token from <token> buffer with <tokenlen>
5421 * as length. If valid, the ODCID of <qc> QUIC connection will be put
5422 * into <odcid> connection ID. <dcid> is our side destination connection ID
5423 * of client source connection ID.
5424 * Return 1 if succeeded, 0 if not.
5425 */
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005426static int quic_retry_token_check(const unsigned char *token, size_t tokenlen,
5427 const struct quic_version *qv,
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005428 struct quic_cid *odcid,
5429 const struct quic_cid *dcid,
5430 struct quic_conn *qc,
5431 struct sockaddr_storage *addr)
5432{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005433 int ret = 0;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005434 unsigned char buf[128];
5435 unsigned char aad[sizeof(uint32_t) + sizeof(in_port_t) +
5436 sizeof(struct in6_addr) + QUIC_HAP_CID_LEN];
5437 size_t aadlen;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005438 const unsigned char *salt;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005439 unsigned char key[QUIC_TLS_KEY_LEN];
5440 unsigned char iv[QUIC_TLS_IV_LEN];
5441 const unsigned char *sec = (const unsigned char *)global.cluster_secret;
5442 size_t seclen = strlen(global.cluster_secret);
5443 EVP_CIPHER_CTX *ctx = NULL;
5444 const EVP_CIPHER *aead = EVP_aes_128_gcm();
5445
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005446 TRACE_ENTER(QUIC_EV_CONN_LPKT, qc);
5447
5448 if (sizeof buf < tokenlen) {
5449 TRACE_ERROR("too short buffer", QUIC_EV_CONN_LPKT, qc);
5450 goto err;
5451 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005452
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005453 aadlen = quic_generate_retry_token_aad(aad, qv->num, dcid, addr);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005454 salt = token + tokenlen - QUIC_RETRY_TOKEN_SALTLEN;
5455 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 +02005456 salt, QUIC_RETRY_TOKEN_SALTLEN, sec, seclen)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005457 TRACE_ERROR("Could not derive retry secret", QUIC_EV_CONN_LPKT, qc);
5458 goto err;
Frédéric Lécaille01d515e2022-06-07 11:39:00 +02005459 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005460
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005461 if (!quic_tls_rx_ctx_init(&ctx, aead, key)) {
5462 TRACE_ERROR("quic_tls_rx_ctx_init() failed", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005463 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005464 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005465
5466 /* Do not decrypt the QUIC_TOKEN_FMT_RETRY byte */
5467 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 +02005468 ctx, aead, key, iv)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005469 TRACE_ERROR("Could not decrypt retry token", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005470 goto err;
Frédéric Lécaille01d515e2022-06-07 11:39:00 +02005471 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005472
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005473 if (parse_retry_token(qc, buf, buf + tokenlen - QUIC_RETRY_TOKEN_SALTLEN - 1, odcid)) {
5474 TRACE_ERROR("Error during Initial token parsing", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005475 goto err;
5476 }
5477
5478 EVP_CIPHER_CTX_free(ctx);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005479
5480 ret = 1;
5481 leave:
5482 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc);
5483 return ret;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005484
5485 err:
5486 if (ctx)
5487 EVP_CIPHER_CTX_free(ctx);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005488 goto leave;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005489}
5490
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005491/* Generate a Retry packet and send it on <fd> socket to <addr> in response to
5492 * the Initial <pkt> packet.
5493 *
5494 * Returns 0 on success else non-zero.
5495 */
5496static int send_retry(int fd, struct sockaddr_storage *addr,
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005497 struct quic_rx_packet *pkt, const struct quic_version *qv)
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005498{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005499 int ret = 0;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005500 unsigned char buf[128];
5501 int i = 0, token_len;
5502 const socklen_t addrlen = get_addr_len(addr);
5503 struct quic_cid scid;
5504
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005505 TRACE_ENTER(QUIC_EV_CONN_TXPKT);
5506
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005507 /* long header + fixed bit + packet type QUIC_PACKET_TYPE_RETRY */
5508 buf[i++] = (QUIC_PACKET_LONG_HEADER_BIT | QUIC_PACKET_FIXED_BIT) |
5509 (quic_pkt_type(QUIC_PACKET_TYPE_RETRY, qv->num) << QUIC_PACKET_TYPE_SHIFT);
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005510 /* version */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005511 buf[i++] = *((unsigned char *)&qv->num + 3);
5512 buf[i++] = *((unsigned char *)&qv->num + 2);
5513 buf[i++] = *((unsigned char *)&qv->num + 1);
5514 buf[i++] = *(unsigned char *)&qv->num;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005515
5516 /* Use the SCID from <pkt> for Retry DCID. */
5517 buf[i++] = pkt->scid.len;
5518 memcpy(&buf[i], pkt->scid.data, pkt->scid.len);
5519 i += pkt->scid.len;
5520
5521 /* Generate a new CID to be used as SCID for the Retry packet. */
5522 scid.len = QUIC_HAP_CID_LEN;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005523 /* TODO: RAND_bytes() should be replaced */
5524 if (RAND_bytes(scid.data, scid.len) != 1) {
5525 TRACE_ERROR("RAND_bytes() failed", QUIC_EV_CONN_TXPKT);
5526 goto out;
5527 }
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005528
5529 buf[i++] = scid.len;
5530 memcpy(&buf[i], scid.data, scid.len);
5531 i += scid.len;
5532
5533 /* token */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005534 if (!(token_len = quic_generate_retry_token(&buf[i], sizeof(buf) - i, qv->num,
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005535 &pkt->dcid, &pkt->scid, addr))) {
5536 TRACE_ERROR("quic_generate_retry_token() failed", QUIC_EV_CONN_TXPKT);
5537 goto out;
5538 }
Frédéric Lécaillecc2764e2022-03-23 14:09:09 +01005539
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005540 i += token_len;
5541
5542 /* token integrity tag */
5543 if ((&buf[i] - buf < QUIC_TLS_TAG_LEN) ||
5544 !quic_tls_generate_retry_integrity_tag(pkt->dcid.data,
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005545 pkt->dcid.len, buf, i, qv)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005546 TRACE_ERROR("quic_tls_generate_retry_integrity_tag() failed", QUIC_EV_CONN_TXPKT);
5547 goto out;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005548 }
5549
5550 i += QUIC_TLS_TAG_LEN;
5551
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005552 if (sendto(fd, buf, i, 0, (struct sockaddr *)addr, addrlen) < 0) {
5553 TRACE_ERROR("quic_tls_generate_retry_integrity_tag() failed", QUIC_EV_CONN_TXPKT);
5554 goto out;
5555 }
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005556
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005557 ret = 1;
5558 out:
5559 TRACE_LEAVE(QUIC_EV_CONN_TXPKT);
5560 return !ret;
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005561}
5562
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005563/* Retrieve a quic_conn instance from the <pkt> DCID field. If the packet is of
5564 * type INITIAL, the ODCID tree is first used. In this case, <saddr> is
5565 * concatenated to the <pkt> DCID field.
5566 *
5567 * Returns the instance or NULL if not found.
5568 */
Amaury Denoyelled6b16672021-12-23 10:37:19 +01005569static struct quic_conn *retrieve_qc_conn_from_cid(struct quic_rx_packet *pkt,
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005570 struct listener *l,
5571 struct sockaddr_storage *saddr)
5572{
5573 struct quic_conn *qc = NULL;
5574 struct ebmb_node *node;
5575 struct quic_connection_id *id;
Amaury Denoyelle250ac422021-12-22 11:29:05 +01005576 /* set if the quic_conn is found in the second DCID tree */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005577
5578 TRACE_ENTER(QUIC_EV_CONN_RXPKT);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005579
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005580 /* Look first into ODCIDs tree for INITIAL/0-RTT packets. */
5581 if (pkt->type == QUIC_PACKET_TYPE_INITIAL ||
5582 pkt->type == QUIC_PACKET_TYPE_0RTT) {
5583 /* DCIDs of first packets coming from multiple clients may have
5584 * the same values. Let's distinguish them by concatenating the
5585 * socket addresses.
5586 */
5587 quic_cid_saddr_cat(&pkt->dcid, saddr);
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01005588 node = ebmb_lookup(&quic_dghdlrs[tid].odcids, pkt->dcid.data,
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005589 pkt->dcid.len + pkt->dcid.addrlen);
5590 if (node) {
5591 qc = ebmb_entry(node, struct quic_conn, odcid_node);
5592 goto end;
5593 }
5594 }
5595
5596 /* Look into DCIDs tree for non-INITIAL/0-RTT packets. This may be used
5597 * also for INITIAL/0-RTT non-first packets with the final DCID in
5598 * used.
5599 */
Amaury Denoyelle8524f0f2022-02-08 15:03:40 +01005600 node = ebmb_lookup(&quic_dghdlrs[tid].cids, pkt->dcid.data, pkt->dcid.len);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005601 if (!node)
5602 goto end;
5603
5604 id = ebmb_entry(node, struct quic_connection_id, node);
5605 qc = id->qc;
Amaury Denoyelle250ac422021-12-22 11:29:05 +01005606
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005607 /* If found in DCIDs tree, remove the quic_conn from the ODCIDs tree.
5608 * If already done, this is a noop.
5609 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005610 if (qc)
Amaury Denoyelle250ac422021-12-22 11:29:05 +01005611 ebmb_delete(&qc->odcid_node);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005612
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005613 end:
Frédéric Lécaille614742b2022-09-07 12:15:43 +02005614 TRACE_LEAVE(QUIC_EV_CONN_RXPKT, qc);
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005615 return qc;
5616}
5617
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005618/* Try to allocate the <*ssl> SSL session object for <qc> QUIC connection
5619 * with <ssl_ctx> as SSL context inherited settings. Also set the transport
5620 * parameters of this session.
5621 * This is the responsibility of the caller to check the validity of all the
5622 * pointers passed as parameter to this function.
5623 * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <qc->conn> to
5624 * CO_ER_SSL_NO_MEM.
5625 */
5626static int qc_ssl_sess_init(struct quic_conn *qc, SSL_CTX *ssl_ctx, SSL **ssl,
5627 unsigned char *params, size_t params_len)
5628{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005629 int retry, ret = -1;
5630
5631 TRACE_ENTER(QUIC_EV_CONN_NEW, qc);
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005632
5633 retry = 1;
5634 retry:
5635 *ssl = SSL_new(ssl_ctx);
5636 if (!*ssl) {
5637 if (!retry--)
5638 goto err;
5639
5640 pool_gc(NULL);
5641 goto retry;
5642 }
5643
5644 if (!SSL_set_quic_method(*ssl, &ha_quic_method) ||
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005645 !SSL_set_ex_data(*ssl, ssl_qc_app_data_index, qc)) {
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005646 SSL_free(*ssl);
5647 *ssl = NULL;
5648 if (!retry--)
5649 goto err;
5650
5651 pool_gc(NULL);
5652 goto retry;
5653 }
5654
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005655 ret = 0;
5656 leave:
5657 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
5658 return ret;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005659
5660 err:
5661 qc->conn->err_code = CO_ER_SSL_NO_MEM;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005662 goto leave;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005663}
5664
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005665/* Finalize <qc> QUIC connection:
5666 * - initialize the Initial QUIC TLS context for negotiated version,
5667 * - derive the secrets for this context,
5668 * - encode the transport parameters to be sent,
5669 * - set them into the TLS stack,
5670 * - initialize ->max_ack_delay and max_idle_timeout,
5671 *
5672 * MUST be called after having received the remote transport parameters.
5673 * Return 1 if succeeded, 0 if not.
5674 */
5675int qc_conn_finalize(struct quic_conn *qc, int server)
5676{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005677 int ret = 0;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005678 struct quic_transport_params *tx_tp = &qc->tx.params;
5679 struct quic_transport_params *rx_tp = &qc->rx.params;
5680 const struct quic_version *ver;
5681
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005682 TRACE_ENTER(QUIC_EV_CONN_NEW, qc);
5683
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005684 if (tx_tp->version_information.negotiated_version &&
5685 tx_tp->version_information.negotiated_version != qc->original_version) {
5686 qc->negotiated_version =
5687 qc->tx.params.version_information.negotiated_version;
5688 if (!qc_new_isecs(qc, &qc->negotiated_ictx, qc->negotiated_version,
5689 qc->odcid.data, qc->odcid.len, !server))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005690 goto out;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005691
5692 ver = qc->negotiated_version;
5693 }
5694 else {
5695 ver = qc->original_version;
5696 }
5697
5698 qc->enc_params_len =
5699 quic_transport_params_encode(qc->enc_params,
5700 qc->enc_params + sizeof qc->enc_params,
5701 &qc->rx.params, ver, 1);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005702 if (!qc->enc_params_len) {
5703 TRACE_ERROR("quic_transport_params_encode() failed", QUIC_EV_CONN_TXPKT);
5704 goto out;
5705 }
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005706
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005707 if (!SSL_set_quic_transport_params(qc->xprt_ctx->ssl, qc->enc_params, qc->enc_params_len)) {
5708 TRACE_ERROR("SSL_set_quic_transport_params() failed", QUIC_EV_CONN_TXPKT);
5709 goto out;
5710 }
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005711
5712 if (tx_tp->max_ack_delay)
5713 qc->max_ack_delay = tx_tp->max_ack_delay;
5714
5715 if (tx_tp->max_idle_timeout && rx_tp->max_idle_timeout)
5716 qc->max_idle_timeout =
5717 QUIC_MIN(tx_tp->max_idle_timeout, rx_tp->max_idle_timeout);
5718 else
5719 qc->max_idle_timeout =
5720 QUIC_MAX(tx_tp->max_idle_timeout, rx_tp->max_idle_timeout);
5721
5722 TRACE_PROTO("\nTX(remote) transp. params.", QUIC_EV_TRANSP_PARAMS, qc, tx_tp);
5723
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005724 ret = 1;
5725 out:
5726 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
5727 return ret;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005728}
5729
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005730/* Allocate the ssl_sock_ctx from connection <qc>. This creates the tasklet
5731 * used to process <qc> received packets. The allocated context is stored in
5732 * <qc.xprt_ctx>.
5733 *
5734 * Returns 0 on success else non-zero.
5735 */
Frédéric Lécaille3fd92f62022-05-19 14:35:20 +02005736static int qc_conn_alloc_ssl_ctx(struct quic_conn *qc)
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005737{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005738 int ret = 0;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005739 struct bind_conf *bc = qc->li->bind_conf;
5740 struct ssl_sock_ctx *ctx = NULL;
5741
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005742 TRACE_ENTER(QUIC_EV_CONN_NEW, qc);
5743
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005744 ctx = pool_zalloc(pool_head_quic_conn_ctx);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005745 if (!ctx) {
5746 TRACE_ERROR("SSL context allocation failed", QUIC_EV_CONN_TXPKT);
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005747 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005748 }
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005749
5750 ctx->wait_event.tasklet = tasklet_new();
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005751 if (!ctx->wait_event.tasklet) {
5752 TRACE_ERROR("tasklet_new() failed", QUIC_EV_CONN_TXPKT);
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005753 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005754 }
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005755
5756 ctx->wait_event.tasklet->process = quic_conn_io_cb;
5757 ctx->wait_event.tasklet->context = ctx;
5758 ctx->wait_event.events = 0;
5759 ctx->subs = NULL;
5760 ctx->xprt_ctx = NULL;
5761 ctx->qc = qc;
5762
5763 /* Set tasklet tid based on the SCID selected by us for this
5764 * connection. The upper layer will also be binded on the same thread.
5765 */
Frédéric Lécaille220894a2022-01-26 18:04:50 +01005766 qc->tid = ctx->wait_event.tasklet->tid = quic_get_cid_tid(qc->scid.data);
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005767
5768 if (qc_is_listener(qc)) {
5769 if (qc_ssl_sess_init(qc, bc->initial_ctx, &ctx->ssl,
5770 qc->enc_params, qc->enc_params_len) == -1) {
5771 goto err;
5772 }
William Lallemande6ec6262022-09-02 16:24:39 +02005773#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005774 /* Enabling 0-RTT */
5775 if (bc->ssl_conf.early_data)
5776 SSL_set_quic_early_data_enabled(ctx->ssl, 1);
William Lallemande6ec6262022-09-02 16:24:39 +02005777#endif
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005778
5779 SSL_set_accept_state(ctx->ssl);
5780 }
5781
5782 ctx->xprt = xprt_get(XPRT_QUIC);
5783
5784 /* Store the allocated context in <qc>. */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02005785 qc->xprt_ctx = ctx;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005786
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005787 ret = 1;
5788 leave:
5789 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
5790 return !ret;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005791
5792 err:
5793 if (ctx && ctx->wait_event.tasklet)
5794 tasklet_free(ctx->wait_event.tasklet);
5795 pool_free(pool_head_quic_conn_ctx, ctx);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005796 goto leave;
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01005797}
5798
Frédéric Lécaillef6954c52022-05-21 14:42:21 +02005799/* Check that all the bytes between <buf> included and <end> address
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05005800 * excluded are null. This is the responsibility of the caller to
Frédéric Lécaillef6954c52022-05-21 14:42:21 +02005801 * check that there is at least one byte between <buf> end <end>.
5802 * Return 1 if this all the bytes are null, 0 if not.
5803 */
5804static inline int quic_padding_check(const unsigned char *buf,
5805 const unsigned char *end)
5806{
5807 while (buf < end && !*buf)
5808 buf++;
5809
5810 return buf == end;
5811}
5812
Frédéric Lécaille4646cf32022-04-27 15:09:53 +02005813/* Parse a QUIC packet from UDP datagram found in <buf> buffer with <end> the
5814 * end of this buffer past one byte and populate <pkt> RX packet structure
5815 * with the information collected from the packet.
5816 * This function sets ->len <pkt> field value to the end of the packet past one
5817 * byte to enable the caller to run this function again to continue to parse
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05005818 * the remaining QUIC packets carried by the datagram.
Frédéric Lécaille4646cf32022-04-27 15:09:53 +02005819 * Note that this function always sets this ->len value. If a paquet could
5820 * not be correctly found, ->len value will be set to the remaining number
5821 * bytes in the datagram to entirely consume this latter.
5822 */
5823static void qc_lstnr_pkt_rcv(unsigned char *buf, const unsigned char *end,
5824 struct quic_rx_packet *pkt, int first_pkt,
Frédéric Lécaille1b0707f2022-06-30 11:28:56 +02005825 struct quic_dgram *dgram, struct list **tasklist_head)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005826{
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005827 unsigned char *beg, *payload;
Frédéric Lécaille560ddfa2022-08-24 18:59:23 +02005828 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005829 struct listener *l;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005830 struct proxy *prx;
5831 struct quic_counters *prx_counters;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02005832 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005833 int drop_no_conn = 0, long_header = 0, io_cb_wakeup = 0;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01005834 size_t b_cspace;
5835 struct quic_enc_level *qel;
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005836 uint32_t version;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005837 const struct quic_version *qv = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005838
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005839 TRACE_ENTER(QUIC_EV_CONN_LPKT);
5840
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005841 beg = buf;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005842 qc = NULL;
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02005843 conn_ctx = NULL;
Frédéric Lécaillec4becf52021-11-08 11:23:17 +01005844 qel = NULL;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005845 l = dgram->owner;
5846 prx = l->bind_conf->frontend;
5847 prx_counters = EXTRA_COUNTERS_GET(prx->extra_counters_fe, &quic_stats_module);
Frédéric Lécaille8678eb02021-12-16 18:03:52 +01005848 /* This ist only to please to traces and distinguish the
5849 * packet with parsed packet number from others.
5850 */
5851 pkt->pn_node.key = (uint64_t)-1;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005852 if (end <= buf) {
5853 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
5854 goto drop;
5855 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005856
5857 /* Fixed bit */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005858 if (!(*buf & QUIC_PACKET_FIXED_BIT)) {
Frédéric Lécaillef6954c52022-05-21 14:42:21 +02005859 if (!first_pkt && quic_padding_check(buf, end)) {
5860 /* Some browsers may pad the remaining datagram space with null bytes.
5861 * That is what we called add padding out of QUIC packets. Such
5862 * datagrams must be considered as valid. But we can only consume
5863 * the remaining space.
5864 */
5865 pkt->len = end - buf;
5866 goto drop_no_conn;
5867 }
5868
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005869 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005870 goto drop;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005871 }
5872
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005873 /* Header form */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005874 if (!qc_parse_hd_form(pkt, &buf, end, &long_header, &version)) {
Frédéric Lécailleea0ec272022-06-08 13:22:17 +02005875 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
5876 goto drop;
5877 }
5878
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005879 if (long_header) {
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005880 uint64_t len;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005881 struct quic_cid odcid;
Frédéric Lécaille7629f5d2022-08-11 18:54:26 +02005882 const struct quic_cid *token_odcid = NULL; // ODCID received from client token
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005883
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005884 TRACE_PROTO("long header packet received", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005885 if (!quic_packet_read_long_header(&buf, end, pkt)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005886 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005887 goto drop;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005888 }
5889
Frédéric Lécaille3e266982022-04-27 15:37:28 +02005890 if (pkt->type == QUIC_PACKET_TYPE_0RTT && !l->bind_conf->ssl_conf.early_data) {
5891 TRACE_PROTO("0-RTT packet not supported", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005892 drop_no_conn = 1;
Frédéric Lécaille3e266982022-04-27 15:37:28 +02005893 }
5894 else if (pkt->type == QUIC_PACKET_TYPE_INITIAL &&
5895 dgram->len < QUIC_INITIAL_PACKET_MINLEN) {
Frédéric Lécaille87373e72022-04-27 11:42:08 +02005896 TRACE_PROTO("Too short datagram with an Initial packet", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille3ccea6d2022-05-23 22:54:54 +02005897 HA_ATOMIC_INC(&prx_counters->too_short_initial_dgram);
Frédéric Lécaillee7df68a2022-08-05 09:34:44 +02005898 goto drop;
Frédéric Lécaille87373e72022-04-27 11:42:08 +02005899 }
5900
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005901 /* When multiple QUIC packets are coalesced on the same UDP datagram,
5902 * they must have the same DCID.
5903 */
5904 if (!first_pkt &&
5905 (pkt->dcid.len != dgram->dcid_len ||
5906 memcmp(dgram->dcid, pkt->dcid.data, pkt->dcid.len))) {
5907 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005908 goto drop;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005909 }
5910
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005911 /* Retry of Version Negotiation packets are only sent by servers */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005912 if (pkt->type == QUIC_PACKET_TYPE_RETRY || !version) {
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005913 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005914 goto drop;
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005915 }
5916
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005917 /* RFC9000 6. Version Negotiation */
Frédéric Lécaille86845c52022-06-08 19:28:36 +02005918 qv = qc_supported_version(version);
5919 if (!qv) {
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005920 /* unsupported version, send Negotiation packet */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005921 if (send_version_negotiation(l->rx.fd, &dgram->saddr, pkt)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02005922 TRACE_ERROR("VN packet not sent", QUIC_EV_CONN_LPKT);
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005923 goto err;
5924 }
5925
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005926 TRACE_PROTO("VN packet sent", QUIC_EV_CONN_LPKT);
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005927 goto err;
Amaury Denoyellea22d8602021-11-10 15:17:56 +01005928 }
5929
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005930 /* For Initial packets, and for servers (QUIC clients connections),
5931 * there is no Initial connection IDs storage.
5932 */
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005933 if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02005934 uint64_t token_len;
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02005935
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01005936 if (!quic_dec_int(&token_len, (const unsigned char **)&buf, end) ||
5937 end - buf < token_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écaillea5da31d2021-12-14 19:44:14 +01005941 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005942
Amaury Denoyelleb76ae692022-01-11 14:16:37 +01005943 /* TODO Retry should be automatically activated if
5944 * suspect network usage is detected.
5945 */
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02005946 if (global.cluster_secret && !token_len) {
5947 if (l->bind_conf->options & BC_O_QUIC_FORCE_RETRY) {
5948 TRACE_PROTO("Initial without token, sending retry",
5949 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
5950 if (send_retry(l->rx.fd, &dgram->saddr, pkt, qv)) {
5951 TRACE_PROTO("Error during Retry generation",
5952 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005953 goto err;
5954 }
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02005955
5956 HA_ATOMIC_INC(&prx_counters->retry_sent);
5957 goto err;
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005958 }
Amaury Denoyelle5ff1c972022-01-11 14:11:32 +01005959 }
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02005960 else if (!global.cluster_secret && token_len) {
5961 /* Impossible case: a token was received without configured
5962 * cluster secret.
5963 */
5964 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT,
5965 NULL, NULL, NULL, qv);
5966 goto drop;
5967 }
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02005968
5969 pkt->token = buf;
5970 pkt->token_len = token_len;
5971 buf += pkt->token_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005972 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01005973 else if (pkt->type != QUIC_PACKET_TYPE_0RTT) {
Amaury Denoyelled4962512021-12-14 17:17:28 +01005974 if (pkt->dcid.len != QUIC_HAP_CID_LEN) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005975 TRACE_PROTO("Packet dropped",
5976 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005977 goto drop;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005978 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005979 }
5980
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005981 if (!quic_dec_int(&len, (const unsigned char **)&buf, end) ||
5982 end - buf < len) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005983 TRACE_PROTO("Packet dropped",
5984 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écaillef3d078d2021-06-14 14:18:10 +02005986 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01005987
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005988 payload = buf;
5989 pkt->len = len + payload - beg;
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02005990 if (drop_no_conn)
5991 goto drop_no_conn;
Frédéric Lécaille2c15a662021-12-22 20:39:12 +01005992
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01005993 qc = retrieve_qc_conn_from_cid(pkt, l, &dgram->saddr);
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02005994 if (global.cluster_secret && pkt->token_len) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02005995 if (*pkt->token == QUIC_TOKEN_FMT_RETRY) {
5996 const struct quic_version *ver = qc ? qc->original_version : qv;
5997 if (!quic_retry_token_check(pkt->token, pkt->token_len, ver, &odcid,
5998 &pkt->scid, qc, &dgram->saddr)) {
5999 HA_ATOMIC_INC(&prx_counters->retry_error);
6000 TRACE_PROTO("Wrong retry token",
6001 QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
6002 /* TODO: RFC 9000 8.1.2 A server SHOULD immediately close the connection
6003 * with an INVALID_TOKEN error.
6004 */
6005 goto drop;
6006 }
6007
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02006008 token_odcid = &odcid;
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006009 HA_ATOMIC_INC(&prx_counters->retry_validated);
6010 }
6011 else {
6012 /* TODO: New token check */
6013 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
6014 goto drop;
6015 }
6016 }
Amaury Denoyelle8efe0322021-12-15 16:32:56 +01006017 if (!qc) {
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02006018 int ipv4;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02006019
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006020 if (pkt->type != QUIC_PACKET_TYPE_INITIAL) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006021 TRACE_PROTO("Non Initial packet", QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006022 goto drop;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006023 }
6024
Willy Tarreau787e92a2022-05-20 16:06:01 +02006025 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 +02006026 HA_ATOMIC_LOAD(&prx_counters->half_open_conn) >= global.tune.quic_retry_threshold) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006027 TRACE_PROTO("Initial without token, sending retry",
6028 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaille86845c52022-06-08 19:28:36 +02006029 if (send_retry(l->rx.fd, &dgram->saddr, pkt, qv)) {
Frédéric Lécaille59507de2022-08-11 12:14:07 +02006030 TRACE_ERROR("Error during Retry generation",
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006031 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécailledfd13012022-05-20 16:37:36 +02006032 goto err;
6033 }
6034
6035 HA_ATOMIC_INC(&prx_counters->retry_sent);
6036 goto err;
6037 }
6038
Frédéric Lécaille3f3ff472022-05-12 14:47:59 +02006039 /* RFC 9000 7.2. Negotiating Connection IDs:
6040 * When an Initial packet is sent by a client that has not previously
6041 * received an Initial or Retry packet from the server, the client
6042 * populates the Destination Connection ID field with an unpredictable
6043 * value. This Destination Connection ID MUST be at least 8 bytes in length.
6044 */
Frédéric Lécailledc364042022-01-27 16:51:54 +01006045 if (pkt->dcid.len < QUIC_ODCID_MINLEN) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006046 TRACE_PROTO("dropped packet",
6047 QUIC_EV_CONN_LPKT, NULL, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006048 goto drop;
Frédéric Lécailledc364042022-01-27 16:51:54 +01006049 }
6050
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006051 pkt->saddr = dgram->saddr;
6052 ipv4 = dgram->saddr.ss_family == AF_INET;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006053
Frédéric Lécaillee9325e92022-08-11 17:24:38 +02006054 qc = qc_new_conn(qv, ipv4, &pkt->dcid, &pkt->scid, token_odcid,
Frédéric Lécaille748ece62022-05-21 23:58:40 +02006055 &pkt->saddr, 1, !!pkt->token_len, l);
Frédéric Lécaille6de72872021-06-11 15:44:24 +02006056 if (qc == NULL)
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006057 goto drop;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02006058
Frédéric Lécailleeb791452022-05-24 16:01:39 +02006059 HA_ATOMIC_INC(&prx_counters->half_open_conn);
Frédéric Lécaillef3d078d2021-06-14 14:18:10 +02006060 /* Insert the DCID the QUIC client has chosen (only for listeners) */
Frédéric Lécaille560ddfa2022-08-24 18:59:23 +02006061 ebmb_insert(&quic_dghdlrs[tid].odcids, &qc->odcid_node,
6062 qc->odcid.len + qc->odcid.addrlen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006063 }
Frédéric Lécaille560ddfa2022-08-24 18:59:23 +02006064
6065 pkt->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006066 }
6067 else {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006068 TRACE_PROTO("short header packet received", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01006069 if (end - buf < QUIC_HAP_CID_LEN) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006070 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006071 goto drop;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006072 }
6073
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01006074 memcpy(pkt->dcid.data, buf, QUIC_HAP_CID_LEN);
Amaury Denoyelleadb22762021-12-14 15:04:14 +01006075 pkt->dcid.len = QUIC_HAP_CID_LEN;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006076
6077 /* When multiple QUIC packets are coalesced on the same UDP datagram,
6078 * they must have the same DCID.
6079 */
6080 if (!first_pkt &&
6081 (pkt->dcid.len != dgram->dcid_len ||
6082 memcmp(dgram->dcid, pkt->dcid.data, pkt->dcid.len))) {
6083 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006084 goto drop;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006085 }
6086
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01006087 buf += QUIC_HAP_CID_LEN;
6088
6089 /* A short packet is the last one of a UDP datagram. */
6090 payload = buf;
6091 pkt->len = end - beg;
Amaury Denoyelleadb22762021-12-14 15:04:14 +01006092
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006093 qc = retrieve_qc_conn_from_cid(pkt, l, &dgram->saddr);
Frédéric Lécaille4d118d62021-12-21 14:48:58 +01006094 if (!qc) {
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01006095 size_t pktlen = end - buf;
Frédéric Lécaille4d118d62021-12-21 14:48:58 +01006096 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, NULL, pkt, &pktlen);
Frédéric Lécailleeb791452022-05-24 16:01:39 +02006097 if (global.cluster_secret && !send_stateless_reset(l, &dgram->saddr, pkt))
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006098 TRACE_ERROR("stateless reset not sent", QUIC_EV_CONN_LPKT, qc);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006099 goto drop;
Frédéric Lécaille4d118d62021-12-21 14:48:58 +01006100 }
6101
Frédéric Lécaille8370c932021-11-08 17:01:46 +01006102 pkt->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006103 }
6104
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02006105 if (qc->flags & QUIC_FL_CONN_CLOSING) {
6106 if (++qc->nb_pkt_since_cc >= qc->nb_pkt_for_cc) {
6107 qc->flags |= QUIC_FL_CONN_IMMEDIATE_CLOSE;
6108 qc->nb_pkt_for_cc++;
6109 qc->nb_pkt_since_cc = 0;
6110 }
6111 /* Skip the entire datagram */
6112 pkt->len = end - beg;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006113 TRACE_STATE("Closing state connection",
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006114 QUIC_EV_CONN_LPKT, pkt->qc, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006115 goto drop;
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02006116 }
Amaury Denoyelleadb22762021-12-14 15:04:14 +01006117
6118 /* When multiple QUIC packets are coalesced on the same UDP datagram,
6119 * they must have the same DCID.
6120 *
6121 * This check must be done after the final update to pkt.len to
6122 * properly drop the packet on failure.
6123 */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006124 if (first_pkt && !quic_peer_validated_addr(qc) &&
Frédéric Lécaillefc790062022-03-28 17:10:31 +02006125 qc->flags & QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED) {
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006126 TRACE_PROTO("PTO timer must be armed after anti-amplication was reached",
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006127 QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006128 /* Reset the anti-amplification bit. It will be set again
6129 * when sending the next packet if reached again.
6130 */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02006131 qc->flags &= ~QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED;
6132 qc->flags |= QUIC_FL_CONN_IO_CB_WAKEUP;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006133 io_cb_wakeup = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006134 }
Amaury Denoyelleadb22762021-12-14 15:04:14 +01006135
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01006136 dgram->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006137
Amaury Denoyelle72d86502022-07-13 15:08:23 +02006138 if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006139 TRACE_PROTO("Connection error",
6140 QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006141 goto out;
6142 }
6143
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01006144 pkt->raw_len = pkt->len;
Frédéric Lécailled61bc8d2021-12-02 14:46:19 +01006145 quic_rx_pkts_del(qc);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01006146 b_cspace = b_contig_space(&qc->rx.buf);
6147 if (b_cspace < pkt->len) {
Amaury Denoyelle80d05722022-05-16 18:13:56 +02006148 /* Do not consume buf if space not at the end. */
6149 if (b_tail(&qc->rx.buf) + b_cspace < b_wrap(&qc->rx.buf)) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006150 TRACE_PROTO("Packet dropped",
6151 QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
Frédéric Lécaille45a16292022-06-29 12:03:34 +02006152 HA_ATOMIC_INC(&prx_counters->dropped_pkt_bufoverrun);
6153 goto drop_no_conn;
Amaury Denoyelle80d05722022-05-16 18:13:56 +02006154 }
6155
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01006156 /* Let us consume the remaining contiguous space. */
Frédéric Lécailled61bc8d2021-12-02 14:46:19 +01006157 if (b_cspace) {
6158 b_putchr(&qc->rx.buf, 0x00);
6159 b_cspace--;
6160 }
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01006161 b_add(&qc->rx.buf, b_cspace);
6162 if (b_contig_space(&qc->rx.buf) < pkt->len) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006163 TRACE_PROTO("Too big packet",
6164 QUIC_EV_CONN_LPKT, qc, pkt, &pkt->len, qv);
Frédéric Lécaille45a16292022-06-29 12:03:34 +02006165 HA_ATOMIC_INC(&prx_counters->dropped_pkt_bufoverrun);
6166 goto drop_no_conn;
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01006167 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006168 }
6169
Frédéric Lécaille99897d12022-08-08 10:28:07 +02006170 if (!qc_try_rm_hp(qc, pkt, payload, beg, &qel)) {
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006171 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc, NULL, NULL, qv);
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006172 goto drop;
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02006173 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006174
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006175 TRACE_DATA("New packet", QUIC_EV_CONN_LPKT, qc, pkt, NULL, qv);
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01006176 if (pkt->aad_len)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006177 qc_pkt_insert(qc, pkt, qel);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006178 out:
Frédéric Lécaille01abc462021-07-21 09:34:27 +02006179 /* Wake up the connection packet handler task from here only if all
6180 * the contexts have been initialized, especially the mux context
6181 * conn_ctx->conn->ctx. Note that this is ->start xprt callback which
6182 * will start it if these contexts for the connection are not already
6183 * initialized.
6184 */
Frédéric Lécaillefc790062022-03-28 17:10:31 +02006185 conn_ctx = qc->xprt_ctx;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01006186 if (conn_ctx)
Frédéric Lécaille1b0707f2022-06-30 11:28:56 +02006187 *tasklist_head = tasklet_wakeup_after(*tasklist_head, conn_ctx->wait_event.tasklet);
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02006188
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006189 drop_no_conn:
6190 if (drop_no_conn)
6191 HA_ATOMIC_INC(&prx_counters->dropped_pkt);
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006192 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc ? qc : NULL, pkt, NULL, qv);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006193
Frédéric Lécaille4646cf32022-04-27 15:09:53 +02006194 return;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006195
Frédéric Lécaillecbd59c72022-05-20 08:11:26 +02006196 drop:
6197 HA_ATOMIC_INC(&prx_counters->dropped_pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006198 err:
Frédéric Lécaille6b663152022-01-04 17:03:11 +01006199 /* Wakeup the I/O handler callback if the PTO timer must be armed.
6200 * This cannot be done by this thread.
6201 */
6202 if (io_cb_wakeup) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02006203 conn_ctx = qc->xprt_ctx;
Frédéric Lécaille6b663152022-01-04 17:03:11 +01006204 if (conn_ctx && conn_ctx->wait_event.tasklet)
6205 tasklet_wakeup(conn_ctx->wait_event.tasklet);
6206 }
Frédéric Lécaillef7ef9762021-12-31 16:37:58 +01006207 /* If length not found, consume the entire datagram */
Frédéric Lécaille01cfec72021-12-22 10:17:01 +01006208 if (!pkt->len)
6209 pkt->len = end - beg;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006210 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc ? qc : NULL, pkt, NULL, qv);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006211}
6212
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006213/* This function builds into <buf> buffer a QUIC long packet header.
6214 * Return 1 if enough room to build this header, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006215 */
6216static int quic_build_packet_long_header(unsigned char **buf, const unsigned char *end,
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006217 int type, size_t pn_len,
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006218 struct quic_conn *qc, const struct quic_version *ver)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006219{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006220 int ret = 0;
6221
6222 TRACE_ENTER(QUIC_EV_CONN_LPKT, qc);
6223
6224 if (end - *buf < sizeof ver->num + qc->dcid.len + qc->scid.len + 3) {
6225 TRACE_DEVEL("not enough room", QUIC_EV_CONN_LPKT, qc);
6226 goto leave;
6227 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006228
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006229 type = quic_pkt_type(type, ver->num);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006230 /* #0 byte flags */
6231 *(*buf)++ = QUIC_PACKET_FIXED_BIT | QUIC_PACKET_LONG_HEADER_BIT |
6232 (type << QUIC_PACKET_TYPE_SHIFT) | (pn_len - 1);
6233 /* Version */
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006234 quic_write_uint32(buf, end, ver->num);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006235 *(*buf)++ = qc->dcid.len;
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 }
6241 /* Source connection ID */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006242 *(*buf)++ = qc->scid.len;
6243 if (qc->scid.len) {
6244 memcpy(*buf, qc->scid.data, qc->scid.len);
6245 *buf += qc->scid.len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006246 }
6247
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006248 ret = 1;
6249 leave:
6250 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc);
6251 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006252}
6253
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006254/* This function builds into <buf> buffer a QUIC short packet header.
6255 * Return 1 if enough room to build this header, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006256 */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006257static int quic_build_packet_short_header(unsigned char **buf, const unsigned char *end,
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006258 size_t pn_len, struct quic_conn *qc,
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006259 unsigned char tls_flags)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006260{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006261 int ret = 0;
6262
6263 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
6264
6265 if (end - *buf < 1 + qc->dcid.len) {
6266 TRACE_DEVEL("not enough room", QUIC_EV_CONN_LPKT, qc);
6267 goto leave;
6268 }
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006269
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006270 /* #0 byte flags */
Frédéric Lécaillea7d2c092021-11-30 11:18:18 +01006271 *(*buf)++ = QUIC_PACKET_FIXED_BIT |
6272 ((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 +01006273 /* Destination connection ID */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006274 if (qc->dcid.len) {
6275 memcpy(*buf, qc->dcid.data, qc->dcid.len);
6276 *buf += qc->dcid.len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006277 }
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006278
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006279 ret = 1;
6280 leave:
6281 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
6282 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006283}
6284
6285/* Apply QUIC header protection to the packet with <buf> as first byte address,
6286 * <pn> as address of the Packet number field, <pnlen> being this field length
6287 * with <aead> as AEAD cipher and <key> as secret key.
6288 * Returns 1 if succeeded or 0 if failed.
6289 */
Frédéric Lécaille86a53c52022-08-19 18:18:13 +02006290static int quic_apply_header_protection(struct quic_conn *qc, unsigned char *buf,
6291 unsigned char *pn, size_t pnlen,
6292 struct quic_tls_ctx *tls_ctx)
6293
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006294{
Frédéric Lécaille86a53c52022-08-19 18:18:13 +02006295 int i, ret = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006296 /* We need an IV of at least 5 bytes: one byte for bytes #0
6297 * and at most 4 bytes for the packet number
6298 */
6299 unsigned char mask[5] = {0};
Frédéric Lécaille86a53c52022-08-19 18:18:13 +02006300 EVP_CIPHER_CTX *aes_ctx = tls_ctx->tx.hp_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006301
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006302 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
6303
Frédéric Lécaille86a53c52022-08-19 18:18:13 +02006304 if (!quic_tls_aes_encrypt(mask, pn + QUIC_PACKET_PN_MAXLEN, sizeof mask, aes_ctx)) {
6305 TRACE_ERROR("could not apply header protection", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006306 goto out;
6307 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006308
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006309 *buf ^= mask[0] & (*buf & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f);
6310 for (i = 0; i < pnlen; i++)
6311 pn[i] ^= mask[i + 1];
6312
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006313 ret = 1;
6314 out:
6315 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006316 return ret;
6317}
6318
6319/* Reduce the encoded size of <ack_frm> ACK frame removing the last
6320 * ACK ranges if needed to a value below <limit> in bytes.
6321 * Return 1 if succeeded, 0 if not.
6322 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006323static int quic_ack_frm_reduce_sz(struct quic_conn *qc,
6324 struct quic_frame *ack_frm, size_t limit)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006325{
6326 size_t room, ack_delay_sz;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006327 int ret = 0;
6328
6329 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006330
6331 ack_delay_sz = quic_int_getsize(ack_frm->tx_ack.ack_delay);
6332 /* A frame is made of 1 byte for the frame type. */
6333 room = limit - ack_delay_sz - 1;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006334 if (!quic_rm_last_ack_ranges(qc, ack_frm->tx_ack.arngs, room))
6335 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006336
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006337 ret = 1 + ack_delay_sz + ack_frm->tx_ack.arngs->enc_sz;
6338 leave:
6339 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
6340 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006341}
6342
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006343/* Prepare into <outlist> as most as possible ack-eliciting frame from their
6344 * <inlist> prebuilt frames for <qel> encryption level to be encoded in a buffer
6345 * with <room> as available room, and <*len> the packet Length field initialized
6346 * with the number of bytes already present in this buffer which must be taken
6347 * into an account for the Length packet field value. <headlen> is the number of
6348 * bytes already present in this packet before building frames.
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006349 *
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006350 * Update consequently <*len> to reflect the size of these frames built
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006351 * by this function. Also attach these frames to <l> frame list.
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006352 * 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 +01006353 */
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006354static inline int qc_build_frms(struct list *outlist, struct list *inlist,
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006355 size_t room, size_t *len, size_t headlen,
6356 struct quic_enc_level *qel,
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006357 struct quic_conn *qc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006358{
Frédéric Lécailleea604992020-12-24 13:01:37 +01006359 int ret;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01006360 struct quic_frame *cf, *cfbak;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006361
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006362 TRACE_ENTER(QUIC_EV_CONN_BCFRMS, qc);
6363
Frédéric Lécailleea604992020-12-24 13:01:37 +01006364 ret = 0;
Frédéric Lécaillef4e5a7c2022-01-17 17:56:20 +01006365 if (*len > room)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006366 goto leave;
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006367
Frédéric Lécailleea604992020-12-24 13:01:37 +01006368 /* If we are not probing we must take into an account the congestion
6369 * control window.
6370 */
Frédéric Lécaillef4e5a7c2022-01-17 17:56:20 +01006371 if (!qel->pktns->tx.pto_probe) {
6372 size_t remain = quic_path_prep_data(qc->path);
6373
6374 if (headlen > remain)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006375 goto leave;
Frédéric Lécaillef4e5a7c2022-01-17 17:56:20 +01006376
6377 room = QUIC_MIN(room, remain - headlen);
6378 }
6379
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006380 TRACE_PROTO("************** frames build (headlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006381 QUIC_EV_CONN_BCFRMS, qc, &headlen);
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006382
6383 /* NOTE: switch/case block inside a loop, a successful status must be
6384 * returned by this function only if at least one frame could be built
6385 * in the switch/case block.
6386 */
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006387 list_for_each_entry_safe(cf, cfbak, inlist, list) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006388 /* header length, data length, frame length. */
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006389 size_t hlen, dlen, dlen_sz, avail_room, flen;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006390
Frédéric Lécailleea604992020-12-24 13:01:37 +01006391 if (!room)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006392 break;
6393
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006394 switch (cf->type) {
6395 case QUIC_FT_CRYPTO:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006396 TRACE_DEVEL(" New CRYPTO frame build (room, len)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006397 QUIC_EV_CONN_BCFRMS, qc, &room, len);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006398 /* Compute the length of this CRYPTO frame header */
6399 hlen = 1 + quic_int_getsize(cf->crypto.offset);
6400 /* Compute the data length of this CRyPTO frame. */
6401 dlen = max_stream_data_size(room, *len + hlen, cf->crypto.len);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006402 TRACE_DEVEL(" CRYPTO data length (hlen, crypto.len, dlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006403 QUIC_EV_CONN_BCFRMS, qc, &hlen, &cf->crypto.len, &dlen);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006404 if (!dlen)
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006405 continue;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006406
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006407 /* CRYPTO frame length. */
6408 flen = hlen + quic_int_getsize(dlen) + dlen;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006409 TRACE_DEVEL(" CRYPTO frame length (flen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006410 QUIC_EV_CONN_BCFRMS, qc, &flen);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006411 /* Add the CRYPTO data length and its encoded length to the packet
6412 * length and the length of this length.
6413 */
6414 *len += flen;
6415 room -= flen;
6416 if (dlen == cf->crypto.len) {
6417 /* <cf> CRYPTO data have been consumed. */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01006418 LIST_DELETE(&cf->list);
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006419 LIST_APPEND(outlist, &cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006420 }
6421 else {
6422 struct quic_frame *new_cf;
6423
Frédéric Lécailleb9171912022-04-21 17:32:10 +02006424 new_cf = pool_zalloc(pool_head_quic_frame);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006425 if (!new_cf) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006426 TRACE_ERROR("No memory for new crypto frame", QUIC_EV_CONN_BCFRMS, qc);
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006427 continue;
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006428 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006429
Frédéric Lécailleb9171912022-04-21 17:32:10 +02006430 LIST_INIT(&new_cf->reflist);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006431 new_cf->type = QUIC_FT_CRYPTO;
6432 new_cf->crypto.len = dlen;
6433 new_cf->crypto.offset = cf->crypto.offset;
6434 new_cf->crypto.qel = qel;
Frédéric Lécailleb8278402022-08-19 09:32:14 +02006435 TRACE_DEVEL("splitted frame", QUIC_EV_CONN_PRSAFRM, qc, new_cf);
6436 if (cf->origin) {
6437 TRACE_DEVEL("duplicated frame", QUIC_EV_CONN_PRSAFRM, qc);
6438 /* This <cf> frame was duplicated */
6439 LIST_APPEND(&cf->origin->reflist, &new_cf->ref);
6440 new_cf->origin = cf->origin;
6441 }
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006442 LIST_APPEND(outlist, &new_cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006443 /* Consume <dlen> bytes of the current frame. */
6444 cf->crypto.len -= dlen;
6445 cf->crypto.offset += dlen;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006446 }
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006447 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006448
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006449 case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F:
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02006450 if (cf->flags & QUIC_FL_TX_FRAME_LOST) {
6451 struct eb64_node *node = NULL;
6452 struct qc_stream_desc *stream_desc = NULL;
6453 struct quic_stream *strm = &cf->stream;
6454
6455 /* As this frame has been already lost, ensure the stream is always
6456 * available or the range of this frame is not consumed before
6457 * resending it.
6458 */
6459 node = eb64_lookup(&qc->streams_by_id, strm->id);
6460 if (!node) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006461 TRACE_DEVEL("released stream", QUIC_EV_CONN_PRSAFRM, qc, cf);
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02006462 LIST_DELETE(&cf->list);
6463 pool_free(pool_head_quic_frame, cf);
6464 continue;
6465 }
6466
6467 stream_desc = eb64_entry(node, struct qc_stream_desc, by_id);
6468 if (strm->offset.key + strm->len <= stream_desc->ack_offset) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006469 TRACE_DEVEL("ignored frame frame in already acked range",
Frédéric Lécaillefdc1b962022-05-31 12:04:42 +02006470 QUIC_EV_CONN_PRSAFRM, qc, cf);
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02006471 LIST_DELETE(&cf->list);
6472 pool_free(pool_head_quic_frame, cf);
6473 continue;
6474 }
6475 else if (strm->offset.key < stream_desc->ack_offset) {
6476 strm->offset.key = stream_desc->ack_offset;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006477 TRACE_DEVEL("updated partially acked frame",
Frédéric Lécaillefdc1b962022-05-31 12:04:42 +02006478 QUIC_EV_CONN_PRSAFRM, qc, cf);
Frédéric Lécaille77cb38d2022-04-27 07:17:56 +02006479 }
6480 }
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006481 /* Note that these frames are accepted in short packets only without
6482 * "Length" packet field. Here, <*len> is used only to compute the
6483 * sum of the lengths of the already built frames for this packet.
Frédéric Lécailled8b84432021-12-10 15:18:36 +01006484 *
6485 * Compute the length of this STREAM frame "header" made a all the field
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006486 * excepting the variable ones. Note that +1 is for the type of this frame.
6487 */
6488 hlen = 1 + quic_int_getsize(cf->stream.id) +
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02006489 ((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 +02006490 /* Compute the data length of this STREAM frame. */
6491 avail_room = room - hlen - *len;
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006492 if ((ssize_t)avail_room <= 0)
6493 continue;
6494
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006495 TRACE_DEVEL(" New STREAM frame build (room, len)",
Frédéric Lécailleadc76412022-08-08 16:09:46 +02006496 QUIC_EV_CONN_BCFRMS, qc, &room, len);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006497 if (cf->type & QUIC_STREAM_FRAME_TYPE_LEN_BIT) {
6498 dlen = max_available_room(avail_room, &dlen_sz);
6499 if (dlen > cf->stream.len) {
6500 dlen = cf->stream.len;
6501 }
6502 dlen_sz = quic_int_getsize(dlen);
6503 flen = hlen + dlen_sz + dlen;
6504 }
6505 else {
Frédéric Lécaille628e89c2022-06-24 12:13:53 +02006506 dlen = QUIC_MIN((uint64_t)avail_room, cf->stream.len);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006507 flen = hlen + dlen;
6508 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006509 TRACE_DEVEL(" STREAM data length (hlen, stream.len, dlen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006510 QUIC_EV_CONN_BCFRMS, qc, &hlen, &cf->stream.len, &dlen);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006511 TRACE_DEVEL(" STREAM frame length (flen)",
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006512 QUIC_EV_CONN_BCFRMS, qc, &flen);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006513 /* Add the STREAM data length and its encoded length to the packet
6514 * length and the length of this length.
6515 */
6516 *len += flen;
6517 room -= flen;
6518 if (dlen == cf->stream.len) {
6519 /* <cf> STREAM data have been consumed. */
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01006520 LIST_DELETE(&cf->list);
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006521 LIST_APPEND(outlist, &cf->list);
Amaury Denoyelle54445d02022-03-10 16:44:14 +01006522
Amaury Denoyelleb29a1dc2022-08-12 14:30:04 +02006523 /* Do not notify MUX on retransmission. */
Amaury Denoyelle70467562022-08-17 16:33:13 +02006524 if (qc->flags & QUIC_FL_CONN_TX_MUX_CONTEXT) {
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02006525 qcc_streams_sent_done(cf->stream.stream->ctx,
6526 cf->stream.len,
6527 cf->stream.offset.key);
6528 }
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006529 }
6530 else {
6531 struct quic_frame *new_cf;
Amaury Denoyelle642ab062022-02-23 10:54:42 +01006532 struct buffer cf_buf;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006533
6534 new_cf = pool_zalloc(pool_head_quic_frame);
6535 if (!new_cf) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006536 TRACE_ERROR("No memory for new STREAM frame", QUIC_EV_CONN_BCFRMS, qc);
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006537 continue;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006538 }
6539
Frédéric Lécailleb9171912022-04-21 17:32:10 +02006540 LIST_INIT(&new_cf->reflist);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006541 new_cf->type = cf->type;
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02006542 new_cf->stream.stream = cf->stream.stream;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02006543 new_cf->stream.buf = cf->stream.buf;
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006544 new_cf->stream.id = cf->stream.id;
6545 if (cf->type & QUIC_STREAM_FRAME_TYPE_OFF_BIT)
6546 new_cf->stream.offset = cf->stream.offset;
6547 new_cf->stream.len = dlen;
6548 new_cf->type |= QUIC_STREAM_FRAME_TYPE_LEN_BIT;
6549 /* FIN bit reset */
6550 new_cf->type &= ~QUIC_STREAM_FRAME_TYPE_FIN_BIT;
6551 new_cf->stream.data = cf->stream.data;
Frédéric Lécailleb8278402022-08-19 09:32:14 +02006552 TRACE_DEVEL("splitted frame", QUIC_EV_CONN_PRSAFRM, qc, new_cf);
6553 if (cf->origin) {
6554 TRACE_DEVEL("duplicated frame", QUIC_EV_CONN_PRSAFRM, qc);
6555 /* This <cf> frame was duplicated */
6556 LIST_APPEND(&cf->origin->reflist, &new_cf->ref);
6557 new_cf->origin = cf->origin;
6558 }
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006559 LIST_APPEND(outlist, &new_cf->list);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006560 cf->type |= QUIC_STREAM_FRAME_TYPE_OFF_BIT;
6561 /* Consume <dlen> bytes of the current frame. */
Amaury Denoyelle642ab062022-02-23 10:54:42 +01006562 cf_buf = b_make(b_orig(cf->stream.buf),
6563 b_size(cf->stream.buf),
6564 (char *)cf->stream.data - b_orig(cf->stream.buf), 0);
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006565 cf->stream.len -= dlen;
Frédéric Lécaille785d3bd2021-09-10 09:13:39 +02006566 cf->stream.offset.key += dlen;
Amaury Denoyelle642ab062022-02-23 10:54:42 +01006567 cf->stream.data = (unsigned char *)b_peek(&cf_buf, dlen);
Amaury Denoyelle54445d02022-03-10 16:44:14 +01006568
Amaury Denoyelleb29a1dc2022-08-12 14:30:04 +02006569 /* Do not notify MUX on retransmission. */
Amaury Denoyelle70467562022-08-17 16:33:13 +02006570 if (qc->flags & QUIC_FL_CONN_TX_MUX_CONTEXT) {
Amaury Denoyelle7272cd72022-03-29 15:15:54 +02006571 qcc_streams_sent_done(new_cf->stream.stream->ctx,
6572 new_cf->stream.len,
6573 new_cf->stream.offset.key);
6574 }
Frédéric Lécaillea5b1b892021-08-25 17:56:22 +02006575 }
Amaury Denoyelle54445d02022-03-10 16:44:14 +01006576
6577 /* TODO the MUX is notified about the frame sending via
6578 * previous qcc_streams_sent_done call. However, the
6579 * sending can fail later, for example if the sendto
6580 * system call returns an error. As the MUX has been
6581 * notified, the transport layer is responsible to
6582 * bufferize and resent the announced data later.
6583 */
6584
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006585 break;
6586
6587 default:
6588 flen = qc_frm_len(cf);
6589 BUG_ON(!flen);
6590 if (flen > room)
6591 continue;
6592
6593 *len += flen;
6594 room -= flen;
Frédéric Lécaille82468ea2022-01-14 20:23:22 +01006595 LIST_DELETE(&cf->list);
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006596 LIST_APPEND(outlist, &cf->list);
Frédéric Lécaille0ac38512021-08-03 16:38:49 +02006597 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006598 }
Frédéric Lécaille573b56b2022-04-25 15:42:56 +02006599
6600 /* Successful status as soon as a frame could be built */
Frédéric Lécailleea604992020-12-24 13:01:37 +01006601 ret = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006602 }
6603
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006604 leave:
6605 TRACE_LEAVE(QUIC_EV_CONN_BCFRMS, qc);
Frédéric Lécailleea604992020-12-24 13:01:37 +01006606 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006607}
6608
Amaury Denoyelle0933c7b2022-07-18 14:11:50 +02006609/* Generate a CONNECTION_CLOSE frame for <qc> on <qel> encryption level. <out>
6610 * is used as return parameter and should be zero'ed by the caller.
6611 */
6612static void qc_build_cc_frm(struct quic_conn *qc, struct quic_enc_level *qel,
6613 struct quic_frame *out)
6614{
6615 /* TODO improve CONNECTION_CLOSE on Initial/Handshake encryption levels
6616 *
6617 * A CONNECTION_CLOSE frame should be sent in several packets with
6618 * different encryption levels depending on the client context. This is
6619 * to ensure that the client can decrypt it. See RFC 9000 10.2.3 for
6620 * more details on how to implement it.
6621 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006622 TRACE_ENTER(QUIC_EV_CONN_BFRM, qc);
6623
Amaury Denoyelle0933c7b2022-07-18 14:11:50 +02006624
6625 if (qc->err.app) {
6626 if (unlikely(qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL] ||
6627 qel == &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE])) {
6628 /* RFC 9000 10.2.3. Immediate Close during the Handshake
6629 *
6630 * Sending a CONNECTION_CLOSE of type 0x1d in an Initial or Handshake
6631 * packet could expose application state or be used to alter application
6632 * state. A CONNECTION_CLOSE of type 0x1d MUST be replaced by a
6633 * CONNECTION_CLOSE of type 0x1c when sending the frame in Initial or
6634 * Handshake packets. Otherwise, information about the application
6635 * state might be revealed. Endpoints MUST clear the value of the
6636 * Reason Phrase field and SHOULD use the APPLICATION_ERROR code when
6637 * converting to a CONNECTION_CLOSE of type 0x1c.
6638 */
6639 out->type = QUIC_FT_CONNECTION_CLOSE;
6640 out->connection_close.error_code = QC_ERR_APPLICATION_ERROR;
6641 out->connection_close.reason_phrase_len = 0;
6642 }
6643 else {
6644 out->type = QUIC_FT_CONNECTION_CLOSE_APP;
6645 out->connection_close.error_code = qc->err.code;
6646 }
6647 }
6648 else {
6649 out->type = QUIC_FT_CONNECTION_CLOSE;
6650 out->connection_close.error_code = qc->err.code;
6651 }
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006652 TRACE_LEAVE(QUIC_EV_CONN_BFRM, qc);
6653
Amaury Denoyelle0933c7b2022-07-18 14:11:50 +02006654}
6655
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006656/* This function builds a clear packet from <pkt> information (its type)
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006657 * into a buffer with <pos> as position pointer and <qel> as QUIC TLS encryption
6658 * level for <conn> QUIC connection and <qel> as QUIC TLS encryption level,
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01006659 * filling the buffer with as much frames as possible from <frms> list of
6660 * prebuilt frames.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006661 * 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 +02006662 * 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 +02006663 * having returned from this function.
6664 * 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 +01006665 * number field in this packet. <pn_len> will also have the packet number
6666 * length as value.
6667 *
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006668 * Return 1 if succeeded (enough room to buile this packet), O if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006669 */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006670static int qc_do_build_pkt(unsigned char *pos, const unsigned char *end,
6671 size_t dglen, struct quic_tx_packet *pkt,
6672 int64_t pn, size_t *pn_len, unsigned char **buf_pn,
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02006673 int force_ack, int padding, int cc, int probe,
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01006674 struct quic_enc_level *qel, struct quic_conn *qc,
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006675 const struct quic_version *ver, struct list *frms)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006676{
Frédéric Lécailleebb10702022-08-16 12:03:00 +02006677 unsigned char *beg, *payload;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006678 size_t len, len_sz, len_frms, padding_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006679 struct quic_frame frm = { .type = QUIC_FT_CRYPTO, };
6680 struct quic_frame ack_frm = { .type = QUIC_FT_ACK, };
Amaury Denoyellef9e190e2022-05-23 16:12:15 +02006681 struct quic_frame cc_frm = { };
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006682 size_t ack_frm_len, head_len;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01006683 int64_t rx_largest_acked_pn;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006684 int add_ping_frm;
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006685 struct list frm_list = LIST_HEAD_INIT(frm_list);
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01006686 struct quic_frame *cf;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006687 int must_ack, ret = 0;
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02006688 int nb_aepkts_since_last_ack;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006689
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006690 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc);
6691
Frédéric Lécailleea604992020-12-24 13:01:37 +01006692 /* Length field value with CRYPTO frames if present. */
6693 len_frms = 0;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006694 beg = pos;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006695 /* When not probing, and no immediate close is required, reduce the size of this
6696 * buffer to respect the congestion controller window.
6697 * 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 +01006698 */
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006699 if (!probe && !LIST_ISEMPTY(frms) && !cc) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006700 size_t path_room;
6701
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006702 path_room = quic_path_prep_data(qc->path);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006703 if (end - beg > path_room)
6704 end = beg + path_room;
6705 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006706
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006707 /* Ensure there is enough room for the TLS encryption tag and a zero token
6708 * length field if any.
6709 */
6710 if (end - pos < QUIC_TLS_TAG_LEN +
6711 (pkt->type == QUIC_PACKET_TYPE_INITIAL ? 1 : 0))
6712 goto no_room;
6713
6714 end -= QUIC_TLS_TAG_LEN;
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02006715 rx_largest_acked_pn = qel->pktns->rx.largest_acked_pn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006716 /* packet number length */
Frédéric Lécaille141982a2022-03-15 18:44:20 +01006717 *pn_len = quic_packet_number_length(pn, rx_largest_acked_pn);
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006718 /* Build the header */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006719 if ((pkt->type == QUIC_PACKET_TYPE_SHORT &&
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006720 !quic_build_packet_short_header(&pos, end, *pn_len, qc, qel->tls_ctx.flags)) ||
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006721 (pkt->type != QUIC_PACKET_TYPE_SHORT &&
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006722 !quic_build_packet_long_header(&pos, end, pkt->type, *pn_len, qc, ver)))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006723 goto no_room;
6724
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006725 /* Encode the token length (0) for an Initial packet. */
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006726 if (pkt->type == QUIC_PACKET_TYPE_INITIAL)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006727 *pos++ = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006728 head_len = pos - beg;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006729 /* Build an ACK frame if required. */
6730 ack_frm_len = 0;
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02006731 nb_aepkts_since_last_ack = qel->pktns->rx.nb_aepkts_since_last_ack;
6732 must_ack = !qel->pktns->tx.pto_probe &&
6733 (force_ack || ((qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) &&
6734 (LIST_ISEMPTY(frms) || nb_aepkts_since_last_ack >= QUIC_MAX_RX_AEPKTS_SINCE_LAST_ACK)));
Frédéric Lécailleb866c692022-08-30 16:24:54 +02006735 if (must_ack) {
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02006736 struct quic_arngs *arngs = &qel->pktns->rx.arngs;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006737 BUG_ON(eb_is_empty(&qel->pktns->rx.arngs.root));
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02006738 ack_frm.tx_ack.arngs = arngs;
6739 if (qel->pktns->flags & QUIC_FL_PKTNS_NEW_LARGEST_PN) {
6740 qel->pktns->tx.ack_delay =
6741 quic_compute_ack_delay_us(qel->pktns->rx.largest_time_received, qc);
6742 qel->pktns->flags &= ~QUIC_FL_PKTNS_NEW_LARGEST_PN;
6743 }
6744 ack_frm.tx_ack.ack_delay = qel->pktns->tx.ack_delay;
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006745 /* XXX BE CAREFUL XXX : here we reserved at least one byte for the
6746 * smallest frame (PING) and <*pn_len> more for the packet number. Note
6747 * that from here, we do not know if we will have to send a PING frame.
6748 * This will be decided after having computed the ack-eliciting frames
6749 * to be added to this packet.
6750 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006751 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 +01006752 if (!ack_frm_len)
6753 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006754 }
6755
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006756 /* Length field value without the ack-eliciting frames. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006757 len = ack_frm_len + *pn_len;
Frédéric Lécaille1fc5e162021-11-22 14:25:57 +01006758 len_frms = 0;
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01006759 if (!cc && !LIST_ISEMPTY(frms)) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006760 ssize_t room = end - pos;
Frédéric Lécailleea604992020-12-24 13:01:37 +01006761
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006762 TRACE_DEVEL("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, frms);
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006763 /* Initialize the length of the frames built below to <len>.
6764 * If any frame could be successfully built by qc_build_frms(),
6765 * we will have len_frms > len.
6766 */
6767 len_frms = len;
Frédéric Lécailleedc81462022-02-25 17:44:29 +01006768 if (!qc_build_frms(&frm_list, frms,
6769 end - pos, &len_frms, pos - beg, qel, qc)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006770 TRACE_DEVEL("Not enough room", QUIC_EV_CONN_TXPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006771 qc, NULL, NULL, &room);
Frédéric Lécaille834399c2022-04-25 17:17:07 +02006772 if (!ack_frm_len && !qel->pktns->tx.pto_probe)
6773 goto no_room;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006774 }
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006775 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006776
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006777 /* Length (of the remaining data). Must not fail because, the buffer size
6778 * has been checked above. Note that we have reserved QUIC_TLS_TAG_LEN bytes
6779 * for the encryption tag. It must be taken into an account for the length
6780 * of this packet.
6781 */
6782 if (len_frms)
6783 len = len_frms + QUIC_TLS_TAG_LEN;
6784 else
6785 len += QUIC_TLS_TAG_LEN;
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006786 /* CONNECTION_CLOSE frame */
6787 if (cc) {
Amaury Denoyelle0933c7b2022-07-18 14:11:50 +02006788 qc_build_cc_frm(qc, qel, &cc_frm);
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006789 len += qc_frm_len(&cc_frm);
6790 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006791 add_ping_frm = 0;
6792 padding_len = 0;
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006793 len_sz = quic_int_getsize(len);
6794 /* Add this packet size to <dglen> */
6795 dglen += head_len + len_sz + len;
6796 if (padding && dglen < QUIC_INITIAL_PACKET_MINLEN) {
6797 /* This is a maximum padding size */
6798 padding_len = QUIC_INITIAL_PACKET_MINLEN - dglen;
6799 /* The length field value is of this packet is <len> + <padding_len>
6800 * the size of which may be greater than the initial computed size
Ilya Shipitsin5e87bcf2021-12-25 11:45:52 +05006801 * <len_sz>. So, let's deduce the difference between these to packet
Frédéric Lécaille28f51fa2021-11-09 14:12:12 +01006802 * sizes from <padding_len>.
6803 */
6804 padding_len -= quic_int_getsize(len + padding_len) - len_sz;
6805 len += padding_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006806 }
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006807 else if (LIST_ISEMPTY(&frm_list) || len_frms == len) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006808 if (qel->pktns->tx.pto_probe) {
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006809 /* If we cannot send a frame, we send a PING frame. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006810 add_ping_frm = 1;
6811 len += 1;
6812 }
6813 /* 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 +01006814 if (!ack_frm_len && !cc)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006815 len += padding_len = QUIC_PACKET_PN_MAXLEN - *pn_len;
6816 }
6817
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006818 if (pkt->type != QUIC_PACKET_TYPE_SHORT && !quic_enc_int(&pos, end, len))
6819 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006820
6821 /* Packet number field address. */
6822 *buf_pn = pos;
6823
6824 /* Packet number encoding. */
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006825 if (!quic_packet_number_encode(&pos, end, pn, *pn_len))
6826 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006827
Frédéric Lécailleebb10702022-08-16 12:03:00 +02006828 /* payload building (ack-eliciting or not frames) */
6829 payload = pos;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01006830 if (ack_frm_len) {
6831 if (!qc_build_frm(&pos, end, &ack_frm, pkt, qc))
6832 goto no_room;
6833
6834 pkt->largest_acked_pn = quic_pktns_get_largest_acked_pn(qel->pktns);
Frédéric Lécailleb0021452022-03-29 11:42:03 +02006835 pkt->flags |= QUIC_FL_TX_PACKET_ACK;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01006836 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006837
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006838 /* Ack-eliciting frames */
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006839 if (!LIST_ISEMPTY(&frm_list)) {
Frédéric Lécaillea8a60432022-08-23 11:42:48 +02006840 struct quic_frame *tmp_cf;
6841 list_for_each_entry_safe(cf, tmp_cf, &frm_list, list) {
Frédéric Lécailleb8047de2022-08-23 17:40:09 +02006842 if (!qc_build_frm(&pos, end, cf, pkt, qc)) {
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01006843 ssize_t room = end - pos;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006844 TRACE_DEVEL("Not enough room", QUIC_EV_CONN_TXPKT,
Amaury Denoyelle7aaeb5b2021-12-21 14:29:15 +01006845 qc, NULL, NULL, &room);
Frédéric Lécaille149c5312022-08-27 15:51:30 +02006846 /* Note that <cf> was added from <frms> to <frm_list> list by
Frédéric Lécailleebb10702022-08-16 12:03:00 +02006847 * qc_build_frms().
Frédéric Lécailledcc74ff2022-03-18 17:49:29 +01006848 */
6849 LIST_DELETE(&cf->list);
6850 LIST_INSERT(frms, &cf->list);
Frédéric Lécaille149c5312022-08-27 15:51:30 +02006851 continue;
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01006852 }
Frédéric Lécailledcc74ff2022-03-18 17:49:29 +01006853
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01006854 quic_tx_packet_refinc(pkt);
6855 cf->pkt = pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006856 }
6857 }
6858
6859 /* Build a PING frame if needed. */
6860 if (add_ping_frm) {
6861 frm.type = QUIC_FT_PING;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006862 if (!qc_build_frm(&pos, end, &frm, pkt, qc))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006863 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006864 }
6865
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006866 /* Build a CONNECTION_CLOSE frame if needed. */
Frédéric Lécaille59bf2552022-03-28 12:13:09 +02006867 if (cc) {
6868 if (!qc_build_frm(&pos, end, &cc_frm, pkt, qc))
6869 goto no_room;
6870
6871 pkt->flags |= QUIC_FL_TX_PACKET_CC;
6872 }
Frédéric Lécaille66cbb822021-11-17 11:56:21 +01006873
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006874 /* Build a PADDING frame if needed. */
6875 if (padding_len) {
6876 frm.type = QUIC_FT_PADDING;
6877 frm.padding.len = padding_len;
Amaury Denoyelle17a74162021-12-21 14:45:39 +01006878 if (!qc_build_frm(&pos, end, &frm, pkt, qc))
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006879 goto no_room;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006880 }
6881
Frédéric Lécailleebb10702022-08-16 12:03:00 +02006882 if (pos == payload) {
6883 /* No payload was built because of congestion control */
6884 TRACE_DEVEL("limited by congestion control", QUIC_EV_CONN_TXPKT, qc);
6885 goto no_room;
6886 }
6887
Frédéric Lécaille466e9da2021-12-29 12:04:13 +01006888 /* If this packet is ack-eliciting and we are probing let's
6889 * decrement the PTO probe counter.
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01006890 */
Frédéric Lécaille466e9da2021-12-29 12:04:13 +01006891 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING &&
6892 qel->pktns->tx.pto_probe)
6893 qel->pktns->tx.pto_probe--;
6894
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006895 pkt->len = pos - beg;
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006896 LIST_SPLICE(&pkt->frms, &frm_list);
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006897
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006898 ret = 1;
6899 TRACE_DEVEL("Packet ack-eliciting frames", QUIC_EV_CONN_TXPKT, qc, pkt);
6900 leave:
6901 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc);
6902 return ret;
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006903
6904 no_room:
Frédéric Lécaillecba4cd42022-01-14 20:39:18 +01006905 /* Replace the pre-built frames which could not be add to this packet */
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01006906 LIST_SPLICE(frms, &frm_list);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006907 TRACE_DEVEL("Remaining ack-eliciting frames", QUIC_EV_CONN_FRMLIST, qc, frms);
6908 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006909}
6910
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02006911static inline void quic_tx_packet_init(struct quic_tx_packet *pkt, int type)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006912{
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02006913 pkt->type = type;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006914 pkt->len = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006915 pkt->in_flight_len = 0;
Frédéric Lécaille0371cd52021-12-13 12:30:54 +01006916 pkt->pn_node.key = (uint64_t)-1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006917 LIST_INIT(&pkt->frms);
Frédéric Lécaille2899fe22022-03-21 10:43:53 +01006918 pkt->time_sent = TICK_ETERNITY;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006919 pkt->next = NULL;
Frédéric Lécaille141982a2022-03-15 18:44:20 +01006920 pkt->largest_acked_pn = -1;
Frédéric Lécaille2899fe22022-03-21 10:43:53 +01006921 pkt->flags = 0;
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01006922 pkt->refcnt = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006923}
6924
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006925/* Build a packet into <buf> packet buffer with <pkt_type> as packet
Frédéric Lécaille28c7ea32022-02-25 17:41:39 +01006926 * type for <qc> QUIC connection from <qel> encryption level from <frms> list
6927 * of prebuilt frames.
6928 *
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006929 * Return -2 if the packet could not be allocated or encrypted for any reason,
6930 * -1 if there was not enough room to build a packet.
Frédéric Lécaillee9a974a2022-03-13 19:19:12 +01006931 * XXX NOTE XXX
6932 * If you provide provide qc_build_pkt() with a big enough buffer to build a packet as big as
6933 * possible (to fill an MTU), the unique reason why this function may fail is the congestion
6934 * control window limitation.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006935 */
Frédéric Lécaille9445abc2021-08-04 10:49:51 +02006936static struct quic_tx_packet *qc_build_pkt(unsigned char **pos,
6937 const unsigned char *buf_end,
Frédéric Lécaille301425b2022-06-14 17:40:39 +02006938 struct quic_enc_level *qel,
6939 struct quic_tls_ctx *tls_ctx, struct list *frms,
6940 struct quic_conn *qc, const struct quic_version *ver,
Frédéric Lécaille77ac6f52022-06-21 15:14:59 +02006941 size_t dglen, int pkt_type, int force_ack,
6942 int padding, int probe, int cc, int *err)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006943{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006944 struct quic_tx_packet *ret_pkt = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006945 /* The pointer to the packet number field. */
6946 unsigned char *buf_pn;
6947 unsigned char *beg, *end, *payload;
6948 int64_t pn;
6949 size_t pn_len, payload_len, aad_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006950 struct quic_tx_packet *pkt;
6951
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006952 TRACE_ENTER(QUIC_EV_CONN_TXPKT, qc, NULL, qel);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006953 *err = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006954 pkt = pool_alloc(pool_head_quic_tx_packet);
6955 if (!pkt) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006956 TRACE_DEVEL("Not enough memory for a new packet", QUIC_EV_CONN_TXPKT, qc);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006957 *err = -2;
6958 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006959 }
6960
Frédéric Lécaille0e50e1b2021-08-03 15:03:35 +02006961 quic_tx_packet_init(pkt, pkt_type);
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006962 beg = *pos;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006963 pn_len = 0;
6964 buf_pn = NULL;
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006965
6966 pn = qel->pktns->tx.next_pn + 1;
6967 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 +02006968 force_ack, padding, cc, probe, qel, qc, ver, frms)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006969 // trace already emitted by function above
Frédéric Lécaille4436cb62021-08-16 12:06:46 +02006970 *err = -1;
6971 goto err;
6972 }
6973
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006974 end = beg + pkt->len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006975 payload = buf_pn + pn_len;
6976 payload_len = end - payload;
6977 aad_len = payload - beg;
6978
Frédéric Lécaille5f7f1182022-01-10 11:00:16 +01006979 if (!quic_packet_encrypt(payload, payload_len, beg, aad_len, pn, tls_ctx, qc)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006980 // trace already emitted by function above
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006981 *err = -2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006982 goto err;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006983 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006984
6985 end += QUIC_TLS_TAG_LEN;
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006986 pkt->len += QUIC_TLS_TAG_LEN;
Frédéric Lécaille86a53c52022-08-19 18:18:13 +02006987 if (!quic_apply_header_protection(qc, beg, buf_pn, pn_len, tls_ctx)) {
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006988 // trace already emitted by function above
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02006989 *err = -2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01006990 goto err;
6991 }
6992
Frédéric Lécaille73dcc6e2021-12-07 15:27:44 +01006993 /* Consume a packet number */
6994 qel->pktns->tx.next_pn++;
Frédéric Lécailleca98a7f2021-11-10 17:30:15 +01006995 qc->tx.prep_bytes += pkt->len;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006996 if (qc->tx.prep_bytes >= 3 * qc->rx.bytes && !quic_peer_validated_addr(qc)) {
Frédéric Lécaillefc790062022-03-28 17:10:31 +02006997 qc->flags |= QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02006998 TRACE_PROTO("anti-amplification limit reached", QUIC_EV_CONN_TXPKT, qc);
6999 }
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02007000 /* Now that a correct packet is built, let us consume <*pos> buffer. */
7001 *pos = end;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007002 /* Attach the built packet to its tree. */
Frédéric Lécaillea7348f62021-08-03 16:50:14 +02007003 pkt->pn_node.key = pn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007004 /* Set the packet in fligth length for in flight packet only. */
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01007005 if (pkt->flags & QUIC_FL_TX_PACKET_IN_FLIGHT) {
Frédéric Lécaillec5b0c932021-07-06 16:35:52 +02007006 pkt->in_flight_len = pkt->len;
7007 qc->path->prep_in_flight += pkt->len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01007008 }
Frédéric Lécaille47756802022-03-25 09:12:16 +01007009 /* Always reset this flags */
7010 qc->flags &= ~QUIC_FL_CONN_IMMEDIATE_CLOSE;
Frédéric Lécailleb0021452022-03-29 11:42:03 +02007011 if (pkt->flags & QUIC_FL_TX_PACKET_ACK) {
7012 qel->pktns->flags &= ~QUIC_FL_PKTNS_ACK_REQUIRED;
7013 qel->pktns->rx.nb_aepkts_since_last_ack = 0;
7014 }
Frédéric Lécaille205e4f32022-03-28 17:38:27 +02007015
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007016 pkt->pktns = qel->pktns;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007017
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007018 ret_pkt = pkt;
7019 leave:
7020 TRACE_LEAVE(QUIC_EV_CONN_TXPKT, qc, ret_pkt);
7021 return ret_pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007022
7023 err:
Frédéric Lécaillee2a1c1b2022-03-17 11:28:10 +01007024 /* TODO: what about the frames which have been built
7025 * for this packet.
7026 */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007027 free_quic_tx_packet(qc, pkt);
7028 goto leave;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007029}
7030
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007031
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01007032/* Called from the upper layer, to subscribe <es> to events <event_type>. The
7033 * event subscriber <es> is not allowed to change from a previous call as long
7034 * as at least one event is still subscribed. The <event_type> must only be a
7035 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
7036 */
7037static int quic_conn_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
7038{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007039 struct quic_conn *qc = conn->handle.qc;
7040 struct qcc *qcc = qc->qcc;
7041
7042 TRACE_ENTER(QUIC_EV_CONN_SUB, qc);
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02007043
7044 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
7045 BUG_ON(qcc->subs && qcc->subs != es);
7046
7047 es->events |= event_type;
7048 qcc->subs = es;
7049
7050 if (event_type & SUB_RETRY_RECV)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007051 TRACE_DEVEL("subscribe(recv)", QUIC_EV_CONN_XPRTRECV, qc, qcc);
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02007052
7053 if (event_type & SUB_RETRY_SEND)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007054 TRACE_DEVEL("subscribe(send)", QUIC_EV_CONN_XPRTSEND, qc, qcc);
7055
7056 TRACE_LEAVE(QUIC_EV_CONN_SUB, qc);
Frédéric Lécaille513b4f22021-09-20 15:23:17 +02007057
7058 return 0;
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01007059}
7060
7061/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
7062 * The <es> pointer is not allowed to differ from the one passed to the
7063 * subscribe() call. It always returns zero.
7064 */
7065static int quic_conn_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
7066{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007067 int ret;
7068 struct quic_conn *qc = conn->handle.qc;
7069 struct qcc *qcc = qc->qcc;
7070
7071 TRACE_ENTER(QUIC_EV_CONN_SUB, qc);
7072
7073 if (event_type & SUB_RETRY_RECV)
7074 TRACE_DEVEL("unsubscribe(recv)", QUIC_EV_CONN_XPRTRECV, qc, qcc);
7075 if (event_type & SUB_RETRY_SEND)
7076 TRACE_DEVEL("unsubscribe(send)", QUIC_EV_CONN_XPRTSEND, qc, qcc);
7077
7078 ret = conn_unsubscribe(conn, xprt_ctx, event_type, es);
7079
7080 TRACE_LEAVE(QUIC_EV_CONN_SUB, qc);
7081
7082 return ret;
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01007083}
7084
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01007085/* Store in <xprt_ctx> the context attached to <conn>.
7086 * Returns always 0.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007087 */
7088static int qc_conn_init(struct connection *conn, void **xprt_ctx)
7089{
Amaury Denoyelle7ca7c842021-12-22 18:20:38 +01007090 struct quic_conn *qc = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007091
7092 TRACE_ENTER(QUIC_EV_CONN_NEW, conn);
7093
Amaury Denoyelle33ac3462022-01-18 16:44:34 +01007094 /* do not store the context if already set */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007095 if (*xprt_ctx)
7096 goto out;
7097
Willy Tarreau784b8682022-04-11 14:18:10 +02007098 *xprt_ctx = conn->handle.qc->xprt_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007099
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007100 out:
Frédéric Lécaillefde2a982021-12-27 15:12:09 +01007101 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007102
7103 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007104}
7105
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02007106/* Start the QUIC transport layer */
7107static int qc_xprt_start(struct connection *conn, void *ctx)
7108{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007109 int ret = 0;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02007110 struct quic_conn *qc;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02007111 struct ssl_sock_ctx *qctx = ctx;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02007112
Willy Tarreau784b8682022-04-11 14:18:10 +02007113 qc = conn->handle.qc;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007114 TRACE_ENTER(QUIC_EV_CONN_NEW, qc);
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01007115 if (qcc_install_app_ops(qc->qcc, qc->app_ops)) {
7116 TRACE_PROTO("Cannot install app layer", QUIC_EV_CONN_LPKT, qc);
Amaury Denoyelle5d774de2022-04-14 14:59:35 +02007117 /* prepare a CONNECTION_CLOSE frame */
Amaury Denoyelle57e6db72022-07-13 15:07:56 +02007118 quic_set_connection_close(qc, quic_err_transport(QC_ERR_APPLICATION_ERROR));
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007119 goto out;
Amaury Denoyellecfa2d562022-01-19 16:01:05 +01007120 }
7121
7122 /* mux-quic can now be considered ready. */
7123 qc->mux_state = QC_MUX_READY;
7124
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02007125 tasklet_wakeup(qctx->wait_event.tasklet);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007126
7127 ret = 1;
7128 out:
7129 TRACE_LEAVE(QUIC_EV_CONN_NEW, qc);
7130 return ret;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02007131}
7132
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02007133static struct ssl_sock_ctx *qc_get_ssl_sock_ctx(struct connection *conn)
7134{
Willy Tarreau784b8682022-04-11 14:18:10 +02007135 if (!conn || conn->xprt != xprt_get(XPRT_QUIC) || !conn->handle.qc || !conn->xprt_ctx)
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02007136 return NULL;
7137
Willy Tarreau784b8682022-04-11 14:18:10 +02007138 return conn->handle.qc->xprt_ctx;
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02007139}
7140
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007141/* transport-layer operations for QUIC connections. */
7142static struct xprt_ops ssl_quic = {
Amaury Denoyelle414cac52021-09-22 11:14:37 +02007143 .close = quic_close,
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01007144 .subscribe = quic_conn_subscribe,
7145 .unsubscribe = quic_conn_unsubscribe,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007146 .init = qc_conn_init,
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02007147 .start = qc_xprt_start,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007148 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
7149 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01007150 .get_alpn = ssl_sock_get_alpn,
Willy Tarreau54a1dcb2022-04-11 11:57:35 +02007151 .get_ssl_sock_ctx = qc_get_ssl_sock_ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007152 .name = "QUIC",
7153};
7154
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007155static void __quic_conn_init(void)
7156{
7157 ha_quic_meth = BIO_meth_new(0x666, "ha QUIC methods");
7158 xprt_register(XPRT_QUIC, &ssl_quic);
7159}
Willy Tarreau79367f92022-04-25 19:18:24 +02007160INITCALL0(STG_REGISTER, __quic_conn_init);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007161
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007162static void __quic_conn_deinit(void)
7163{
7164 BIO_meth_free(ha_quic_meth);
7165}
Willy Tarreau79367f92022-04-25 19:18:24 +02007166REGISTER_POST_DEINIT(__quic_conn_deinit);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007167
Frédéric Lécaille324ecda2021-11-02 10:14:44 +01007168/* Read all the QUIC packets found in <buf> from QUIC connection with <owner>
7169 * as owner calling <func> function.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05007170 * Return the number of bytes read if succeeded, -1 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007171 */
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01007172struct task *quic_lstnr_dghdlr(struct task *t, void *ctx, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007173{
7174 unsigned char *pos;
7175 const unsigned char *end;
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01007176 struct quic_dghdlr *dghdlr = ctx;
7177 struct quic_dgram *dgram;
7178 int first_pkt = 1;
Frédéric Lécaille1b0707f2022-06-30 11:28:56 +02007179 struct list *tasklist_head = NULL;
Willy Tarreauf9d4a7d2022-08-05 08:45:56 +02007180 int max_dgrams = global.tune.maxpollevents;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007181
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007182 TRACE_ENTER(QUIC_EV_CONN_LPKT);
7183
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007184 while ((dgram = MT_LIST_POP(&dghdlr->dgrams, typeof(dgram), mt_list))) {
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007185 pos = dgram->buf;
7186 end = pos + dgram->len;
7187 do {
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007188 struct quic_rx_packet *pkt;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007189
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007190 pkt = pool_zalloc(pool_head_quic_rx_packet);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007191 if (!pkt) {
7192 TRACE_ERROR("RX packet allocation failed", QUIC_EV_CONN_LPKT);
7193 goto leave;
7194 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007195
Amaury Denoyelle23f908c2022-06-20 10:58:03 +02007196 LIST_INIT(&pkt->qc_rx_pkt_list);
Frédéric Lécaille7cc8b312022-05-05 12:04:28 +02007197 pkt->time_received = now_ms;
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007198 quic_rx_packet_refinc(pkt);
Frédéric Lécaille1b0707f2022-06-30 11:28:56 +02007199 qc_lstnr_pkt_rcv(pos, end, pkt, first_pkt, dgram, &tasklist_head);
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007200 first_pkt = 0;
7201 pos += pkt->len;
7202 quic_rx_packet_refdec(pkt);
Amaury Denoyelle23f908c2022-06-20 10:58:03 +02007203
7204 /* Free rejected packets */
7205 if (!pkt->refcnt) {
7206 BUG_ON(LIST_INLIST(&pkt->qc_rx_pkt_list));
7207 pool_free(pool_head_quic_rx_packet, pkt);
7208 }
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007209 } while (pos < end);
7210
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007211 /* Increasing the received bytes counter by the UDP datagram length
7212 * if this datagram could be associated to a connection.
7213 */
7214 if (dgram->qc)
7215 dgram->qc->rx.bytes += dgram->len;
Frédéric Lécaille841bf5e2022-02-02 09:41:27 +01007216
7217 /* Mark this datagram as consumed */
7218 HA_ATOMIC_STORE(&dgram->buf, NULL);
Willy Tarreauf9d4a7d2022-08-05 08:45:56 +02007219
7220 if (--max_dgrams <= 0)
7221 goto stop_here;
Frédéric Lécailledf1c7c72022-01-28 15:38:52 +01007222 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007223
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007224 TRACE_LEAVE(QUIC_EV_CONN_LPKT);
7225
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01007226 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007227
Willy Tarreauf9d4a7d2022-08-05 08:45:56 +02007228 stop_here:
7229 /* too much work done at once, come back here later */
7230 if (!MT_LIST_ISEMPTY(&dghdlr->dgrams))
7231 tasklet_wakeup((struct tasklet *)t);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007232 leave:
7233 TRACE_LEAVE(QUIC_EV_CONN_LPKT);
Frédéric Lécaille25bc8872022-01-27 09:15:40 +01007234 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007235}
7236
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05007237/* Retrieve the DCID from a QUIC datagram or packet with <buf> as first octet.
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007238 * Returns 1 if succeeded, 0 if not.
7239 */
Frédéric Lécaille6492e662022-05-17 17:23:16 +02007240int quic_get_dgram_dcid(unsigned char *buf, const unsigned char *end,
7241 unsigned char **dcid, size_t *dcid_len)
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007242{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007243 int ret = 0, long_header;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007244 size_t minlen, skip;
7245
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007246 TRACE_ENTER(QUIC_EV_CONN_RXPKT);
7247
7248 if (!(*buf & QUIC_PACKET_FIXED_BIT)) {
7249 TRACE_PROTO("fixed bit not set", QUIC_EV_CONN_RXPKT);
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007250 goto err;
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007251 }
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007252
7253 long_header = *buf & QUIC_PACKET_LONG_HEADER_BIT;
Frédéric Lécaille36b28ed2022-05-09 18:08:13 +02007254 minlen = long_header ? QUIC_LONG_PACKET_MINLEN :
7255 QUIC_SHORT_PACKET_MINLEN + QUIC_HAP_CID_LEN + QUIC_TLS_TAG_LEN;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007256 skip = long_header ? QUIC_LONG_PACKET_DCID_OFF : QUIC_SHORT_PACKET_DCID_OFF;
Willy Tarreauaf5138f2022-08-05 10:09:32 +02007257 if (end - buf < minlen)
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007258 goto err;
7259
7260 buf += skip;
7261 *dcid_len = long_header ? *buf++ : QUIC_HAP_CID_LEN;
7262 if (*dcid_len > QUIC_CID_MAXLEN || end - buf <= *dcid_len)
7263 goto err;
7264
7265 *dcid = buf;
7266
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007267 ret = 1;
7268 leave:
7269 TRACE_LEAVE(QUIC_EV_CONN_RXPKT);
7270 return ret;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007271
7272 err:
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007273 TRACE_PROTO("wrong datagram", QUIC_EV_CONN_RXPKT);
7274 goto leave;
Frédéric Lécaille3d4bfe72022-01-26 16:07:16 +01007275}
7276
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02007277/* Notify the MUX layer if alive about an imminent close of <qc>. */
7278void qc_notify_close(struct quic_conn *qc)
7279{
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007280 TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc);
7281
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02007282 if (qc->flags & QUIC_FL_CONN_NOTIFY_CLOSE)
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007283 goto leave;
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02007284
7285 qc->flags |= QUIC_FL_CONN_NOTIFY_CLOSE;
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02007286 /* wake up the MUX */
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007287 if (qc->mux_state == QC_MUX_READY && qc->conn->mux->wake) {
7288 TRACE_STATE("connection closure notidfied to mux",
7289 QUIC_FL_CONN_NOTIFY_CLOSE, qc);
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02007290 qc->conn->mux->wake(qc->conn);
Frédéric Lécaillea8b2f842022-08-10 17:56:45 +02007291 }
7292 else
7293 TRACE_STATE("connection closure not notidfied to mux",
7294 QUIC_FL_CONN_NOTIFY_CLOSE, qc);
7295 leave:
7296 TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc);
Amaury Denoyelleb515b0a2022-04-06 10:28:43 +02007297}
7298
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01007299/*
7300 * Local variables:
7301 * c-indent-level: 8
7302 * c-basic-offset: 8
7303 * End:
7304 */