blob: 6a0f9bfacc65b1454ff22cc6b9d1b8af6452ccf9 [file] [log] [blame]
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001/*
2 * QUIC transport layer over SOCK_DGRAM sockets.
3 *
4 * Copyright 2020 HAProxy Technologies, Frédéric Lécaille <flecaille@haproxy.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#define _GNU_SOURCE
14#include <errno.h>
15#include <fcntl.h>
16#include <stdio.h>
17#include <stdlib.h>
18
19#include <sys/socket.h>
20#include <sys/stat.h>
21#include <sys/types.h>
22
23#include <netinet/tcp.h>
24
25#include <haproxy/buf-t.h>
26#include <haproxy/compat.h>
27#include <haproxy/api.h>
28#include <haproxy/debug.h>
29#include <haproxy/tools.h>
30#include <haproxy/ticks.h>
31#include <haproxy/time.h>
32
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>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010038#include <haproxy/log.h>
Frédéric Lécailledfbae762021-02-18 09:59:01 +010039#include <haproxy/mux_quic.h>
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010040#include <haproxy/pipe.h>
41#include <haproxy/proxy.h>
42#include <haproxy/quic_cc.h>
43#include <haproxy/quic_frame.h>
44#include <haproxy/quic_loss.h>
45#include <haproxy/quic_tls.h>
46#include <haproxy/ssl_sock.h>
47#include <haproxy/stream_interface.h>
48#include <haproxy/task.h>
49#include <haproxy/trace.h>
50#include <haproxy/xprt_quic.h>
51
52struct quic_transport_params quic_dflt_transport_params = {
Frédéric Lécaille785c9c92021-05-17 16:42:21 +020053 .max_udp_payload_size = QUIC_DFLT_MAX_UDP_PAYLOAD_SIZE,
54 .ack_delay_exponent = QUIC_DFLT_ACK_DELAY_COMPONENT,
55 .max_ack_delay = QUIC_DFLT_MAX_ACK_DELAY,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010056};
57
58/* trace source and events */
59static void quic_trace(enum trace_level level, uint64_t mask, \
60 const struct trace_source *src,
61 const struct ist where, const struct ist func,
62 const void *a1, const void *a2, const void *a3, const void *a4);
63
64static const struct trace_event quic_trace_events[] = {
65 { .mask = QUIC_EV_CONN_NEW, .name = "new_conn", .desc = "new QUIC connection" },
66 { .mask = QUIC_EV_CONN_INIT, .name = "new_conn_init", .desc = "new QUIC connection initialization" },
67 { .mask = QUIC_EV_CONN_ISEC, .name = "init_secs", .desc = "initial secrets derivation" },
68 { .mask = QUIC_EV_CONN_RSEC, .name = "read_secs", .desc = "read secrets derivation" },
69 { .mask = QUIC_EV_CONN_WSEC, .name = "write_secs", .desc = "write secrets derivation" },
70 { .mask = QUIC_EV_CONN_LPKT, .name = "lstnr_packet", .desc = "new listener received packet" },
71 { .mask = QUIC_EV_CONN_SPKT, .name = "srv_packet", .desc = "new server received packet" },
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +050072 { .mask = QUIC_EV_CONN_ENCPKT, .name = "enc_hdshk_pkt", .desc = "handhshake packet encryption" },
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010073 { .mask = QUIC_EV_CONN_HPKT, .name = "hdshk_pkt", .desc = "handhshake packet building" },
74 { .mask = QUIC_EV_CONN_PAPKT, .name = "phdshk_apkt", .desc = "post handhshake application packet preparation" },
75 { .mask = QUIC_EV_CONN_PAPKTS, .name = "phdshk_apkts", .desc = "post handhshake application packets preparation" },
76 { .mask = QUIC_EV_CONN_HDSHK, .name = "hdshk", .desc = "SSL handhshake processing" },
77 { .mask = QUIC_EV_CONN_RMHP, .name = "rm_hp", .desc = "Remove header protection" },
78 { .mask = QUIC_EV_CONN_PRSHPKT, .name = "parse_hpkt", .desc = "parse handshake packet" },
79 { .mask = QUIC_EV_CONN_PRSAPKT, .name = "parse_apkt", .desc = "parse application packet" },
80 { .mask = QUIC_EV_CONN_PRSFRM, .name = "parse_frm", .desc = "parse frame" },
81 { .mask = QUIC_EV_CONN_PRSAFRM, .name = "parse_ack_frm", .desc = "parse ACK frame" },
82 { .mask = QUIC_EV_CONN_BFRM, .name = "build_frm", .desc = "build frame" },
83 { .mask = QUIC_EV_CONN_PHPKTS, .name = "phdshk_pkts", .desc = "handhshake packets preparation" },
84 { .mask = QUIC_EV_CONN_TRMHP, .name = "rm_hp_try", .desc = "header protection removing try" },
85 { .mask = QUIC_EV_CONN_ELRMHP, .name = "el_rm_hp", .desc = "handshake enc. level header protection removing" },
86 { .mask = QUIC_EV_CONN_ELRXPKTS, .name = "el_treat_rx_pkts", .desc = "handshake enc. level rx packets treatment" },
87 { .mask = QUIC_EV_CONN_SSLDATA, .name = "ssl_provide_data", .desc = "CRYPTO data provision to TLS stack" },
88 { .mask = QUIC_EV_CONN_RXCDATA, .name = "el_treat_rx_cfrms",.desc = "enc. level RX CRYPTO frames processing"},
89 { .mask = QUIC_EV_CONN_ADDDATA, .name = "add_hdshk_data", .desc = "TLS stack ->add_handshake_data() call"},
90 { .mask = QUIC_EV_CONN_FFLIGHT, .name = "flush_flight", .desc = "TLS stack ->flush_flight() call"},
91 { .mask = QUIC_EV_CONN_SSLALERT, .name = "send_alert", .desc = "TLS stack ->send_alert() call"},
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010092 { .mask = QUIC_EV_CONN_RTTUPDT, .name = "rtt_updt", .desc = "RTT sampling" },
93 { .mask = QUIC_EV_CONN_SPPKTS, .name = "sppkts", .desc = "send prepared packets" },
94 { .mask = QUIC_EV_CONN_PKTLOSS, .name = "pktloss", .desc = "detect packet loss" },
95 { .mask = QUIC_EV_CONN_STIMER, .name = "stimer", .desc = "set timer" },
96 { .mask = QUIC_EV_CONN_PTIMER, .name = "ptimer", .desc = "process timer" },
97 { .mask = QUIC_EV_CONN_SPTO, .name = "spto", .desc = "set PTO" },
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +010098 { .mask = QUIC_EV_CONN_BCFRMS, .name = "bcfrms", .desc = "build CRYPTO data frames" },
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +010099 { /* end */ }
100};
101
102static const struct name_desc quic_trace_lockon_args[4] = {
103 /* arg1 */ { /* already used by the connection */ },
104 /* arg2 */ { .name="quic", .desc="QUIC transport" },
105 /* arg3 */ { },
106 /* arg4 */ { }
107};
108
109static const struct name_desc quic_trace_decoding[] = {
110#define QUIC_VERB_CLEAN 1
111 { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" },
112 { /* end */ }
113};
114
115
116struct trace_source trace_quic = {
117 .name = IST("quic"),
118 .desc = "QUIC xprt",
119 .arg_def = TRC_ARG1_CONN, /* TRACE()'s first argument is always a connection */
120 .default_cb = quic_trace,
121 .known_events = quic_trace_events,
122 .lockon_args = quic_trace_lockon_args,
123 .decoding = quic_trace_decoding,
124 .report_events = ~0, /* report everything by default */
125};
126
127#define TRACE_SOURCE &trace_quic
128INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE);
129
130static BIO_METHOD *ha_quic_meth;
131
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100132DECLARE_STATIC_POOL(pool_head_quic_conn_ctx,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +0200133 "quic_conn_ctx_pool", sizeof(struct ssl_sock_ctx));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100134
135DECLARE_STATIC_POOL(pool_head_quic_conn, "quic_conn", sizeof(struct quic_conn));
136
137DECLARE_POOL(pool_head_quic_connection_id,
138 "quic_connnection_id_pool", sizeof(struct quic_connection_id));
139
140DECLARE_POOL(pool_head_quic_rx_packet, "quic_rx_packet_pool", sizeof(struct quic_rx_packet));
141
142DECLARE_POOL(pool_head_quic_tx_packet, "quic_tx_packet_pool", sizeof(struct quic_tx_packet));
143
144DECLARE_STATIC_POOL(pool_head_quic_rx_crypto_frm, "quic_rx_crypto_frm_pool", sizeof(struct quic_rx_crypto_frm));
145
Frédéric Lécailledfbae762021-02-18 09:59:01 +0100146DECLARE_POOL(pool_head_quic_rx_strm_frm, "quic_rx_strm_frm", sizeof(struct quic_rx_strm_frm));
147
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100148DECLARE_POOL(pool_head_quic_tx_frm, "quic_tx_frm_pool", sizeof(struct quic_tx_frm));
149
150DECLARE_STATIC_POOL(pool_head_quic_crypto_buf, "quic_crypto_buf_pool", sizeof(struct quic_crypto_buf));
151
152DECLARE_STATIC_POOL(pool_head_quic_frame, "quic_frame_pool", sizeof(struct quic_frame));
153
Frédéric Lécaille8090b512020-11-30 16:19:22 +0100154DECLARE_STATIC_POOL(pool_head_quic_arng, "quic_arng_pool", sizeof(struct quic_arng_node));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100155
156static ssize_t qc_build_hdshk_pkt(struct q_buf *buf, struct quic_conn *qc, int pkt_type,
157 struct quic_enc_level *qel);
158
159int qc_prep_phdshk_pkts(struct quic_conn *qc);
160
161/* Add traces to <buf> depending on <frm> TX frame type. */
162static inline void chunk_tx_frm_appendf(struct buffer *buf,
163 const struct quic_tx_frm *frm)
164{
165 switch (frm->type) {
166 case QUIC_FT_CRYPTO:
167 chunk_appendf(buf, " cfoff=%llu cflen=%llu",
168 (unsigned long long)frm->crypto.offset,
169 (unsigned long long)frm->crypto.len);
170 break;
171 default:
172 chunk_appendf(buf, " %s", quic_frame_type_string(frm->type));
173 }
174}
175
Frédéric Lécaillef63921f2020-12-18 09:48:20 +0100176/* Only for debug purpose */
177struct enc_debug_info {
178 unsigned char *payload;
179 size_t payload_len;
180 unsigned char *aad;
181 size_t aad_len;
182 uint64_t pn;
183};
184
185/* Initializes a enc_debug_info struct (only for debug purpose) */
186static inline void enc_debug_info_init(struct enc_debug_info *edi,
187 unsigned char *payload, size_t payload_len,
188 unsigned char *aad, size_t aad_len, uint64_t pn)
189{
190 edi->payload = payload;
191 edi->payload_len = payload_len;
192 edi->aad = aad;
193 edi->aad_len = aad_len;
194 edi->pn = pn;
195}
196
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100197/* Trace callback for QUIC.
198 * These traces always expect that arg1, if non-null, is of type connection.
199 */
200static void quic_trace(enum trace_level level, uint64_t mask, const struct trace_source *src,
201 const struct ist where, const struct ist func,
202 const void *a1, const void *a2, const void *a3, const void *a4)
203{
204 const struct connection *conn = a1;
205
206 if (conn) {
207 struct quic_tls_secrets *secs;
208 struct quic_conn *qc;
209
210 qc = conn->qc;
211 chunk_appendf(&trace_buf, " : conn@%p", conn);
212 if ((mask & QUIC_EV_CONN_INIT) && qc) {
213 chunk_appendf(&trace_buf, "\n odcid");
214 quic_cid_dump(&trace_buf, &qc->odcid);
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100215 chunk_appendf(&trace_buf, "\n dcid");
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100216 quic_cid_dump(&trace_buf, &qc->dcid);
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100217 chunk_appendf(&trace_buf, "\n scid");
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100218 quic_cid_dump(&trace_buf, &qc->scid);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100219 }
220
221 if (mask & QUIC_EV_CONN_ADDDATA) {
222 const enum ssl_encryption_level_t *level = a2;
223 const size_t *len = a3;
224
225 if (level) {
226 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
227
228 chunk_appendf(&trace_buf, " el=%c(%d)", quic_enc_level_char(lvl), lvl);
229 }
230 if (len)
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100231 chunk_appendf(&trace_buf, " len=%llu", (unsigned long long)*len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100232 }
233 if ((mask & QUIC_EV_CONN_ISEC) && qc) {
234 /* Initial read & write secrets. */
235 enum quic_tls_enc_level level = QUIC_TLS_ENC_LEVEL_INITIAL;
236 const unsigned char *rx_sec = a2;
237 const unsigned char *tx_sec = a3;
238
239 secs = &qc->els[level].tls_ctx.rx;
240 if (secs->flags & QUIC_FL_TLS_SECRETS_SET) {
241 chunk_appendf(&trace_buf, "\n RX el=%c", quic_enc_level_char(level));
242 if (rx_sec)
243 quic_tls_secret_hexdump(&trace_buf, rx_sec, 32);
244 quic_tls_keys_hexdump(&trace_buf, secs);
245 }
246 secs = &qc->els[level].tls_ctx.tx;
247 if (secs->flags & QUIC_FL_TLS_SECRETS_SET) {
248 chunk_appendf(&trace_buf, "\n TX el=%c", quic_enc_level_char(level));
249 if (tx_sec)
250 quic_tls_secret_hexdump(&trace_buf, tx_sec, 32);
251 quic_tls_keys_hexdump(&trace_buf, secs);
252 }
253 }
254 if (mask & (QUIC_EV_CONN_RSEC|QUIC_EV_CONN_RWSEC)) {
255 const enum ssl_encryption_level_t *level = a2;
256 const unsigned char *secret = a3;
257 const size_t *secret_len = a4;
258
259 if (level) {
260 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
261
262 chunk_appendf(&trace_buf, "\n RX el=%c", quic_enc_level_char(lvl));
263 if (secret && secret_len)
264 quic_tls_secret_hexdump(&trace_buf, secret, *secret_len);
265 secs = &qc->els[lvl].tls_ctx.rx;
266 if (secs->flags & QUIC_FL_TLS_SECRETS_SET)
267 quic_tls_keys_hexdump(&trace_buf, secs);
268 }
269 }
270
271 if (mask & (QUIC_EV_CONN_WSEC|QUIC_EV_CONN_RWSEC)) {
272 const enum ssl_encryption_level_t *level = a2;
273 const unsigned char *secret = a3;
274 const size_t *secret_len = a4;
275
276 if (level) {
277 enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level);
278
279 chunk_appendf(&trace_buf, "\n TX el=%c", quic_enc_level_char(lvl));
280 if (secret && secret_len)
281 quic_tls_secret_hexdump(&trace_buf, secret, *secret_len);
282 secs = &qc->els[lvl].tls_ctx.tx;
283 if (secs->flags & QUIC_FL_TLS_SECRETS_SET)
284 quic_tls_keys_hexdump(&trace_buf, secs);
285 }
286
287 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100288
Frédéric Lécaille133e8a72020-12-18 09:33:27 +0100289 if (mask & (QUIC_EV_CONN_HPKT|QUIC_EV_CONN_PAPKT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100290 const struct quic_tx_packet *pkt = a2;
291 const struct quic_enc_level *qel = a3;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100292 const ssize_t *room = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100293
294 if (qel) {
295 struct quic_pktns *pktns;
296
297 pktns = qc->pktns;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100298 chunk_appendf(&trace_buf, " qel=%c cwnd=%llu ppif=%lld pif=%llu "
299 "if=%llu pp=%u pdg=%d",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100300 quic_enc_level_char_from_qel(qel, qc),
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100301 (unsigned long long)qc->path->cwnd,
302 (unsigned long long)qc->path->prep_in_flight,
303 (unsigned long long)qc->path->in_flight,
304 (unsigned long long)pktns->tx.in_flight,
305 pktns->tx.pto_probe, qc->tx.nb_pto_dgrams);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100306 }
307 if (pkt) {
308 const struct quic_tx_frm *frm;
309 chunk_appendf(&trace_buf, " pn=%llu cdlen=%u",
310 (unsigned long long)pkt->pn_node.key, pkt->cdata_len);
311 list_for_each_entry(frm, &pkt->frms, list)
312 chunk_tx_frm_appendf(&trace_buf, frm);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100313 chunk_appendf(&trace_buf, " tx.bytes=%llu", (unsigned long long)qc->tx.bytes);
314 }
315
316 if (room) {
317 chunk_appendf(&trace_buf, " room=%lld", (long long)*room);
318 chunk_appendf(&trace_buf, " dcid.len=%llu scid.len=%llu",
319 (unsigned long long)qc->dcid.len, (unsigned long long)qc->scid.len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100320 }
321 }
322
323 if (mask & QUIC_EV_CONN_HDSHK) {
324 const enum quic_handshake_state *state = a2;
325 const int *err = a3;
326
327 if (state)
328 chunk_appendf(&trace_buf, " state=%s", quic_hdshk_state_str(*state));
329 if (err)
330 chunk_appendf(&trace_buf, " err=%s", ssl_error_str(*err));
331 }
332
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +0100333 if (mask & (QUIC_EV_CONN_TRMHP|QUIC_EV_CONN_ELRMHP|QUIC_EV_CONN_SPKT)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100334 const struct quic_rx_packet *pkt = a2;
335 const unsigned long *pktlen = a3;
336 const SSL *ssl = a4;
337
338 if (pkt) {
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100339 chunk_appendf(&trace_buf, " pkt@%p el=%c",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100340 pkt, quic_packet_type_enc_level_char(pkt->type));
341 if (pkt->pnl)
342 chunk_appendf(&trace_buf, " pnl=%u pn=%llu", pkt->pnl,
343 (unsigned long long)pkt->pn);
344 if (pkt->token_len)
345 chunk_appendf(&trace_buf, " toklen=%llu",
346 (unsigned long long)pkt->token_len);
347 if (pkt->aad_len)
348 chunk_appendf(&trace_buf, " aadlen=%llu",
349 (unsigned long long)pkt->aad_len);
350 chunk_appendf(&trace_buf, " flags=0x%x len=%llu",
351 pkt->flags, (unsigned long long)pkt->len);
352 }
353 if (pktlen)
354 chunk_appendf(&trace_buf, " (%ld)", *pktlen);
355 if (ssl) {
356 enum ssl_encryption_level_t level = SSL_quic_read_level(ssl);
357 chunk_appendf(&trace_buf, " el=%c",
358 quic_enc_level_char(ssl_to_quic_enc_level(level)));
359 }
360 }
361
362 if (mask & (QUIC_EV_CONN_ELRXPKTS|QUIC_EV_CONN_PRSHPKT|QUIC_EV_CONN_SSLDATA)) {
363 const struct quic_rx_packet *pkt = a2;
364 const struct quic_rx_crypto_frm *cf = a3;
365 const SSL *ssl = a4;
366
367 if (pkt)
368 chunk_appendf(&trace_buf, " pkt@%p el=%c pn=%llu", pkt,
369 quic_packet_type_enc_level_char(pkt->type),
370 (unsigned long long)pkt->pn);
371 if (cf)
372 chunk_appendf(&trace_buf, " cfoff=%llu cflen=%llu",
373 (unsigned long long)cf->offset_node.key,
374 (unsigned long long)cf->len);
375 if (ssl) {
376 enum ssl_encryption_level_t level = SSL_quic_read_level(ssl);
377 chunk_appendf(&trace_buf, " el=%c",
378 quic_enc_level_char(ssl_to_quic_enc_level(level)));
379 }
380 }
381
382 if (mask & (QUIC_EV_CONN_PRSFRM|QUIC_EV_CONN_BFRM)) {
383 const struct quic_frame *frm = a2;
384
385 if (frm)
386 chunk_appendf(&trace_buf, " %s", quic_frame_type_string(frm->type));
387 }
388
389 if (mask & QUIC_EV_CONN_PHPKTS) {
390 const struct quic_enc_level *qel = a2;
391
392 if (qel) {
393 struct quic_pktns *pktns;
394
395 pktns = qc->pktns;
396 chunk_appendf(&trace_buf,
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100397 " qel=%c ack?%d cwnd=%llu ppif=%lld pif=%llu if=%llu pp=%u pdg=%llu",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100398 quic_enc_level_char_from_qel(qel, qc),
399 !!(pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED),
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100400 (unsigned long long)qc->path->cwnd,
401 (unsigned long long)qc->path->prep_in_flight,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100402 (unsigned long long)qc->path->in_flight,
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100403 (unsigned long long)pktns->tx.in_flight, pktns->tx.pto_probe,
404 (unsigned long long)qc->tx.nb_pto_dgrams);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100405 }
406 }
407
Frédéric Lécaillef63921f2020-12-18 09:48:20 +0100408 if (mask & QUIC_EV_CONN_ENCPKT) {
409 const struct enc_debug_info *edi = a2;
410
411 if (edi)
412 chunk_appendf(&trace_buf,
413 " payload=@%p payload_len=%llu"
414 " aad=@%p aad_len=%llu pn=%llu",
415 edi->payload, (unsigned long long)edi->payload_len,
416 edi->aad, (unsigned long long)edi->aad_len,
417 (unsigned long long)edi->pn);
418 }
419
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100420 if (mask & QUIC_EV_CONN_RMHP) {
421 const struct quic_rx_packet *pkt = a2;
422
423 if (pkt) {
424 const int *ret = a3;
425
426 chunk_appendf(&trace_buf, " pkt@%p", pkt);
427 if (ret && *ret)
428 chunk_appendf(&trace_buf, " pnl=%u pn=%llu",
429 pkt->pnl, (unsigned long long)pkt->pn);
430 }
431 }
432
433 if (mask & QUIC_EV_CONN_PRSAFRM) {
434 const struct quic_tx_frm *frm = a2;
435 const unsigned long *val1 = a3;
436 const unsigned long *val2 = a4;
437
438 if (frm)
439 chunk_tx_frm_appendf(&trace_buf, frm);
440 if (val1)
441 chunk_appendf(&trace_buf, " %lu", *val1);
442 if (val2)
443 chunk_appendf(&trace_buf, "..%lu", *val2);
444 }
445
446 if (mask & QUIC_EV_CONN_RTTUPDT) {
447 const unsigned int *rtt_sample = a2;
448 const unsigned int *ack_delay = a3;
449 const struct quic_loss *ql = a4;
450
451 if (rtt_sample)
452 chunk_appendf(&trace_buf, " rtt_sample=%ums", *rtt_sample);
453 if (ack_delay)
454 chunk_appendf(&trace_buf, " ack_delay=%ums", *ack_delay);
455 if (ql)
456 chunk_appendf(&trace_buf,
457 " srtt=%ums rttvar=%ums min_rtt=%ums",
458 ql->srtt >> 3, ql->rtt_var >> 2, ql->rtt_min);
459 }
460 if (mask & QUIC_EV_CONN_CC) {
461 const struct quic_cc_event *ev = a2;
462 const struct quic_cc *cc = a3;
463
464 if (a2)
465 quic_cc_event_trace(&trace_buf, ev);
466 if (a3)
467 quic_cc_state_trace(&trace_buf, cc);
468 }
469
470 if (mask & QUIC_EV_CONN_PKTLOSS) {
471 const struct quic_pktns *pktns = a2;
472 const struct list *lost_pkts = a3;
473 struct quic_conn *qc = conn->qc;
474
475 if (pktns) {
476 chunk_appendf(&trace_buf, " pktns=%s",
477 pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
478 pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H");
479 if (pktns->tx.loss_time)
480 chunk_appendf(&trace_buf, " loss_time=%dms",
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100481 TICKS_TO_MS(tick_remain(now_ms, pktns->tx.loss_time)));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100482 }
483 if (lost_pkts && !LIST_ISEMPTY(lost_pkts)) {
484 struct quic_tx_packet *pkt;
485
486 chunk_appendf(&trace_buf, " lost_pkts:");
487 list_for_each_entry(pkt, lost_pkts, list)
488 chunk_appendf(&trace_buf, " %lu", (unsigned long)pkt->pn_node.key);
489 }
490 }
491
492 if (mask & (QUIC_EV_CONN_STIMER|QUIC_EV_CONN_PTIMER|QUIC_EV_CONN_SPTO)) {
493 struct quic_conn *qc = conn->qc;
494 const struct quic_pktns *pktns = a2;
495 const int *duration = a3;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100496 const uint64_t *ifae_pkts = a4;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100497
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100498 if (ifae_pkts)
499 chunk_appendf(&trace_buf, " ifae_pkts=%llu",
500 (unsigned long long)*ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100501 if (pktns) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100502 chunk_appendf(&trace_buf, " pktns=%s pp=%d",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100503 pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100504 pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H",
505 pktns->tx.pto_probe);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100506 if (mask & QUIC_EV_CONN_STIMER) {
507 if (pktns->tx.loss_time)
508 chunk_appendf(&trace_buf, " loss_time=%dms",
509 TICKS_TO_MS(pktns->tx.loss_time - now_ms));
510 }
511 if (mask & QUIC_EV_CONN_SPTO) {
512 if (pktns->tx.time_of_last_eliciting)
513 chunk_appendf(&trace_buf, " tole=%dms",
514 TICKS_TO_MS(pktns->tx.time_of_last_eliciting - now_ms));
515 if (duration)
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +0100516 chunk_appendf(&trace_buf, " dur=%dms", TICKS_TO_MS(*duration));
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100517 }
518 }
519
520 if (!(mask & QUIC_EV_CONN_SPTO) && qc->timer_task) {
521 chunk_appendf(&trace_buf,
522 " expire=%dms", TICKS_TO_MS(qc->timer - now_ms));
523 }
524 }
525
526 if (mask & QUIC_EV_CONN_SPPKTS) {
527 const struct quic_tx_packet *pkt = a2;
528
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100529 chunk_appendf(&trace_buf, " cwnd=%llu ppif=%llu pif=%llu",
530 (unsigned long long)qc->path->cwnd,
531 (unsigned long long)qc->path->prep_in_flight,
532 (unsigned long long)qc->path->in_flight);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100533 if (pkt) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100534 chunk_appendf(&trace_buf, " pn=%lu(%s) iflen=%llu cdlen=%llu",
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100535 (unsigned long)pkt->pn_node.key,
536 pkt->pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" :
537 pkt->pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H",
Frédéric Lécaille04ffb662020-12-08 15:58:39 +0100538 (unsigned long long)pkt->in_flight_len,
539 (unsigned long long)pkt->cdata_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100540 }
541 }
Frédéric Lécaille47c433f2020-12-10 17:03:11 +0100542
543 if (mask & QUIC_EV_CONN_SSLALERT) {
544 const uint8_t *alert = a2;
545 const enum ssl_encryption_level_t *level = a3;
546
547 if (alert)
548 chunk_appendf(&trace_buf, " alert=0x%02x", *alert);
549 if (level)
550 chunk_appendf(&trace_buf, " el=%c",
551 quic_enc_level_char(ssl_to_quic_enc_level(*level)));
552 }
Frédéric Lécailleea604992020-12-24 13:01:37 +0100553
554 if (mask & QUIC_EV_CONN_BCFRMS) {
555 const size_t *sz1 = a2;
556 const size_t *sz2 = a3;
557 const size_t *sz3 = a4;
558
559 if (sz1)
560 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz1);
561 if (sz2)
562 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz2);
563 if (sz3)
564 chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz3);
565 }
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100566
567 if (mask & QUIC_EV_CONN_PSTRM) {
568 const struct quic_frame *frm = a2;
Frédéric Lécaille577fe482021-01-11 15:10:06 +0100569
570 if (a2) {
571 const struct quic_stream *s = &frm->stream;
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100572
Frédéric Lécaille577fe482021-01-11 15:10:06 +0100573 chunk_appendf(&trace_buf, " uni=%d fin=%d id=%llu off=%llu len=%llu",
574 !!(s->id & QUIC_STREAM_FRAME_ID_DIR_BIT),
575 !!(frm->type & QUIC_STREAM_FRAME_TYPE_FIN_BIT),
576 (unsigned long long)s->id,
577 (unsigned long long)s->offset,
578 (unsigned long long)s->len);
579 }
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +0100580 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100581 }
582 if (mask & QUIC_EV_CONN_LPKT) {
583 const struct quic_rx_packet *pkt = a2;
584
585 if (conn)
586 chunk_appendf(&trace_buf, " xprt_ctx@%p", conn->xprt_ctx);
587 if (pkt)
588 chunk_appendf(&trace_buf, " type=0x%02x %s",
589 pkt->type, qc_pkt_long(pkt) ? "long" : "short");
590 }
591
592}
593
594/* Returns 1 if the peer has validated <qc> QUIC connection address, 0 if not. */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +0200595static inline int quic_peer_validated_addr(struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100596{
597 struct quic_conn *qc;
598
599 qc = ctx->conn->qc;
600 if (objt_server(qc->conn->target))
601 return 1;
602
603 if ((qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns->flags & QUIC_FL_PKTNS_ACK_RECEIVED) ||
604 (qc->els[QUIC_TLS_ENC_LEVEL_APP].pktns->flags & QUIC_FL_PKTNS_ACK_RECEIVED) ||
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +0200605 (qc->state & QUIC_HS_ST_COMPLETE))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100606 return 1;
607
608 return 0;
609}
610
611/* Set the timer attached to the QUIC connection with <ctx> as I/O handler and used for
612 * both loss detection and PTO and schedule the task assiated to this timer if needed.
613 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +0200614static inline void qc_set_timer(struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100615{
616 struct quic_conn *qc;
617 struct quic_pktns *pktns;
618 unsigned int pto;
619
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100620 TRACE_ENTER(QUIC_EV_CONN_STIMER, ctx->conn,
621 NULL, NULL, &ctx->conn->qc->path->ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100622 qc = ctx->conn->qc;
623 pktns = quic_loss_pktns(qc);
624 if (tick_isset(pktns->tx.loss_time)) {
625 qc->timer = pktns->tx.loss_time;
626 goto out;
627 }
628
629 /* XXX TODO: anti-amplification: the timer must be
630 * cancelled for a server which reached the anti-amplification limit.
631 */
632
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +0100633 if (!qc->path->ifae_pkts && quic_peer_validated_addr(ctx)) {
634 TRACE_PROTO("timer cancellation", QUIC_EV_CONN_STIMER, ctx->conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100635 /* Timer cancellation. */
636 qc->timer = TICK_ETERNITY;
637 goto out;
638 }
639
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +0200640 pktns = quic_pto_pktns(qc, qc->state & QUIC_HS_ST_COMPLETE, &pto);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100641 if (tick_isset(pto))
642 qc->timer = pto;
643 out:
644 task_schedule(qc->timer_task, qc->timer);
645 TRACE_LEAVE(QUIC_EV_CONN_STIMER, ctx->conn, pktns);
646}
647
648#ifndef OPENSSL_IS_BORINGSSL
649int ha_quic_set_encryption_secrets(SSL *ssl, enum ssl_encryption_level_t level,
650 const uint8_t *read_secret,
651 const uint8_t *write_secret, size_t secret_len)
652{
653 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
654 struct quic_tls_ctx *tls_ctx =
655 &conn->qc->els[ssl_to_quic_enc_level(level)].tls_ctx;
656 const SSL_CIPHER *cipher = SSL_get_current_cipher(ssl);
657
658 TRACE_ENTER(QUIC_EV_CONN_RWSEC, conn);
659 tls_ctx->rx.aead = tls_ctx->tx.aead = tls_aead(cipher);
660 tls_ctx->rx.md = tls_ctx->tx.md = tls_md(cipher);
661 tls_ctx->rx.hp = tls_ctx->tx.hp = tls_hp(cipher);
662
663 if (!quic_tls_derive_keys(tls_ctx->rx.aead, tls_ctx->rx.hp, tls_ctx->rx.md,
664 tls_ctx->rx.key, sizeof tls_ctx->rx.key,
665 tls_ctx->rx.iv, sizeof tls_ctx->rx.iv,
666 tls_ctx->rx.hp_key, sizeof tls_ctx->rx.hp_key,
667 read_secret, secret_len)) {
668 TRACE_DEVEL("RX key derivation failed", QUIC_EV_CONN_RWSEC, conn);
669 return 0;
670 }
671
672 tls_ctx->rx.flags |= QUIC_FL_TLS_SECRETS_SET;
673 if (!quic_tls_derive_keys(tls_ctx->tx.aead, tls_ctx->tx.hp, tls_ctx->tx.md,
674 tls_ctx->tx.key, sizeof tls_ctx->tx.key,
675 tls_ctx->tx.iv, sizeof tls_ctx->tx.iv,
676 tls_ctx->tx.hp_key, sizeof tls_ctx->tx.hp_key,
677 write_secret, secret_len)) {
678 TRACE_DEVEL("TX key derivation failed", QUIC_EV_CONN_RWSEC, conn);
679 return 0;
680 }
681
682 tls_ctx->tx.flags |= QUIC_FL_TLS_SECRETS_SET;
683 if (objt_server(conn->target) && level == ssl_encryption_application) {
684 const unsigned char *buf;
685 size_t buflen;
686
687 SSL_get_peer_quic_transport_params(ssl, &buf, &buflen);
688 if (!buflen)
689 return 0;
690
691 if (!quic_transport_params_store(conn->qc, 1, buf, buf + buflen))
692 return 0;
693 }
694 TRACE_LEAVE(QUIC_EV_CONN_RWSEC, conn, &level);
695
696 return 1;
697}
698#else
699/* ->set_read_secret callback to derive the RX secrets at <level> encryption
700 * level.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +0500701 * Returns 1 if succeeded, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100702 */
703int ha_set_rsec(SSL *ssl, enum ssl_encryption_level_t level,
704 const SSL_CIPHER *cipher,
705 const uint8_t *secret, size_t secret_len)
706{
707 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
708 struct quic_tls_ctx *tls_ctx =
709 &conn->qc->els[ssl_to_quic_enc_level(level)].tls_ctx;
710
711 TRACE_ENTER(QUIC_EV_CONN_RSEC, conn);
712 tls_ctx->rx.aead = tls_aead(cipher);
713 tls_ctx->rx.md = tls_md(cipher);
714 tls_ctx->rx.hp = tls_hp(cipher);
715
716 if (!quic_tls_derive_keys(tls_ctx->rx.aead, tls_ctx->rx.hp, tls_ctx->rx.md,
717 tls_ctx->rx.key, sizeof tls_ctx->rx.key,
718 tls_ctx->rx.iv, sizeof tls_ctx->rx.iv,
719 tls_ctx->rx.hp_key, sizeof tls_ctx->rx.hp_key,
720 secret, secret_len)) {
721 TRACE_DEVEL("RX key derivation failed", QUIC_EV_CONN_RSEC, conn);
722 goto err;
723 }
724
725 if (objt_server(conn->target) && level == ssl_encryption_application) {
726 const unsigned char *buf;
727 size_t buflen;
728
729 SSL_get_peer_quic_transport_params(ssl, &buf, &buflen);
730 if (!buflen)
731 goto err;
732
733 if (!quic_transport_params_store(conn->qc, 1, buf, buf + buflen))
734 goto err;
735 }
736
737 tls_ctx->rx.flags |= QUIC_FL_TLS_SECRETS_SET;
738 TRACE_LEAVE(QUIC_EV_CONN_RSEC, conn, &level, secret, &secret_len);
739
740 return 1;
741
742 err:
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +0100743 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RSEC, conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100744 return 0;
745}
746
747/* ->set_write_secret callback to derive the TX secrets at <level>
748 * encryption level.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +0500749 * Returns 1 if succeeded, 0 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100750 */
751int ha_set_wsec(SSL *ssl, enum ssl_encryption_level_t level,
752 const SSL_CIPHER *cipher,
753 const uint8_t *secret, size_t secret_len)
754{
755 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
756 struct quic_tls_ctx *tls_ctx =
757 &conn->qc->els[ssl_to_quic_enc_level(level)].tls_ctx;
758
759 TRACE_ENTER(QUIC_EV_CONN_WSEC, conn);
760 tls_ctx->tx.aead = tls_aead(cipher);
761 tls_ctx->tx.md = tls_md(cipher);
762 tls_ctx->tx.hp = tls_hp(cipher);
763
764 if (!quic_tls_derive_keys(tls_ctx->tx.aead, tls_ctx->tx.hp, tls_ctx->tx.md,
765 tls_ctx->tx.key, sizeof tls_ctx->tx.key,
766 tls_ctx->tx.iv, sizeof tls_ctx->tx.iv,
767 tls_ctx->tx.hp_key, sizeof tls_ctx->tx.hp_key,
768 secret, secret_len)) {
769 TRACE_DEVEL("TX key derivation failed", QUIC_EV_CONN_WSEC, conn);
770 goto err;
771 }
772
773 tls_ctx->tx.flags |= QUIC_FL_TLS_SECRETS_SET;
774 TRACE_LEAVE(QUIC_EV_CONN_WSEC, conn, &level, secret, &secret_len);
775
776 return 1;
777
778 err:
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +0100779 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_WSEC, conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100780 return 0;
781}
782#endif
783
784/* This function copies the CRYPTO data provided by the TLS stack found at <data>
785 * with <len> as size in CRYPTO buffers dedicated to store the information about
786 * outgoing CRYPTO frames so that to be able to replay the CRYPTO data streams.
787 * It fails only if it could not managed to allocate enough CRYPTO buffers to
788 * store all the data.
789 * Note that CRYPTO data may exist at any encryption level except at 0-RTT.
790 */
791static int quic_crypto_data_cpy(struct quic_enc_level *qel,
792 const unsigned char *data, size_t len)
793{
794 struct quic_crypto_buf **qcb;
795 /* The remaining byte to store in CRYPTO buffers. */
796 size_t cf_offset, cf_len, *nb_buf;
797 unsigned char *pos;
798
799 nb_buf = &qel->tx.crypto.nb_buf;
800 qcb = &qel->tx.crypto.bufs[*nb_buf - 1];
801 cf_offset = (*nb_buf - 1) * QUIC_CRYPTO_BUF_SZ + (*qcb)->sz;
802 cf_len = len;
803
804 while (len) {
805 size_t to_copy, room;
806
807 pos = (*qcb)->data + (*qcb)->sz;
808 room = QUIC_CRYPTO_BUF_SZ - (*qcb)->sz;
809 to_copy = len > room ? room : len;
810 if (to_copy) {
811 memcpy(pos, data, to_copy);
812 /* Increment the total size of this CRYPTO buffers by <to_copy>. */
813 qel->tx.crypto.sz += to_copy;
814 (*qcb)->sz += to_copy;
815 pos += to_copy;
816 len -= to_copy;
817 data += to_copy;
818 }
819 else {
820 struct quic_crypto_buf **tmp;
821
822 tmp = realloc(qel->tx.crypto.bufs,
823 (*nb_buf + 1) * sizeof *qel->tx.crypto.bufs);
824 if (tmp) {
825 qel->tx.crypto.bufs = tmp;
826 qcb = &qel->tx.crypto.bufs[*nb_buf];
827 *qcb = pool_alloc(pool_head_quic_crypto_buf);
828 if (!*qcb)
829 return 0;
830
831 (*qcb)->sz = 0;
832 ++*nb_buf;
833 }
834 else {
835 break;
836 }
837 }
838 }
839
840 /* Allocate a TX CRYPTO frame only if all the CRYPTO data
841 * have been buffered.
842 */
843 if (!len) {
844 struct quic_tx_frm *frm;
845
846 frm = pool_alloc(pool_head_quic_tx_frm);
847 if (!frm)
848 return 0;
849
850 frm->type = QUIC_FT_CRYPTO;
851 frm->crypto.offset = cf_offset;
852 frm->crypto.len = cf_len;
Willy Tarreau2b718102021-04-21 07:32:39 +0200853 LIST_APPEND(&qel->pktns->tx.frms, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100854 }
855
856 return len == 0;
857}
858
859
860/* ->add_handshake_data QUIC TLS callback used by the QUIC TLS stack when it
861 * wants to provide the QUIC layer with CRYPTO data.
862 * Returns 1 if succeeded, 0 if not.
863 */
864int ha_quic_add_handshake_data(SSL *ssl, enum ssl_encryption_level_t level,
865 const uint8_t *data, size_t len)
866{
867 struct connection *conn;
868 enum quic_tls_enc_level tel;
869 struct quic_enc_level *qel;
870
871 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
872 TRACE_ENTER(QUIC_EV_CONN_ADDDATA, conn);
873 tel = ssl_to_quic_enc_level(level);
874 qel = &conn->qc->els[tel];
875
876 if (tel == -1) {
877 TRACE_PROTO("Wrong encryption level", QUIC_EV_CONN_ADDDATA, conn);
878 goto err;
879 }
880
881 if (!quic_crypto_data_cpy(qel, data, len)) {
882 TRACE_PROTO("Could not bufferize", QUIC_EV_CONN_ADDDATA, conn);
883 goto err;
884 }
885
886 TRACE_PROTO("CRYPTO data buffered", QUIC_EV_CONN_ADDDATA,
887 conn, &level, &len);
888
889 TRACE_LEAVE(QUIC_EV_CONN_ADDDATA, conn);
890 return 1;
891
892 err:
893 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ADDDATA, conn);
894 return 0;
895}
896
897int ha_quic_flush_flight(SSL *ssl)
898{
899 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
900
901 TRACE_ENTER(QUIC_EV_CONN_FFLIGHT, conn);
902 TRACE_LEAVE(QUIC_EV_CONN_FFLIGHT, conn);
903
904 return 1;
905}
906
907int ha_quic_send_alert(SSL *ssl, enum ssl_encryption_level_t level, uint8_t alert)
908{
909 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
910
Frédéric Lécaille47c433f2020-12-10 17:03:11 +0100911 TRACE_DEVEL("SSL alert", QUIC_EV_CONN_SSLALERT, conn, &alert, &level);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +0100912 return 1;
913}
914
915/* QUIC TLS methods */
916static SSL_QUIC_METHOD ha_quic_method = {
917#ifdef OPENSSL_IS_BORINGSSL
918 .set_read_secret = ha_set_rsec,
919 .set_write_secret = ha_set_wsec,
920#else
921 .set_encryption_secrets = ha_quic_set_encryption_secrets,
922#endif
923 .add_handshake_data = ha_quic_add_handshake_data,
924 .flush_flight = ha_quic_flush_flight,
925 .send_alert = ha_quic_send_alert,
926};
927
928/* Initialize the TLS context of a listener with <bind_conf> as configuration.
929 * Returns an error count.
930 */
931int ssl_quic_initial_ctx(struct bind_conf *bind_conf)
932{
933 struct proxy *curproxy = bind_conf->frontend;
934 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
935 int cfgerr = 0;
936
937#if 0
938 /* XXX Did not manage to use this. */
939 const char *ciphers =
940 "TLS_AES_128_GCM_SHA256:"
941 "TLS_AES_256_GCM_SHA384:"
942 "TLS_CHACHA20_POLY1305_SHA256:"
943 "TLS_AES_128_CCM_SHA256";
944#endif
945 const char *groups = "P-256:X25519:P-384:P-521";
946 long options =
947 (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) |
948 SSL_OP_SINGLE_ECDH_USE |
949 SSL_OP_CIPHER_SERVER_PREFERENCE;
950 SSL_CTX *ctx;
951
952 ctx = SSL_CTX_new(TLS_server_method());
953 bind_conf->initial_ctx = ctx;
954
955 SSL_CTX_set_options(ctx, options);
956#if 0
957 if (SSL_CTX_set_cipher_list(ctx, ciphers) != 1) {
958 ha_alert("Proxy '%s': unable to set TLS 1.3 cipher list to '%s' "
959 "for bind '%s' at [%s:%d].\n",
960 curproxy->id, ciphers,
961 bind_conf->arg, bind_conf->file, bind_conf->line);
962 cfgerr++;
963 }
964#endif
965
966 if (SSL_CTX_set1_curves_list(ctx, groups) != 1) {
967 ha_alert("Proxy '%s': unable to set TLS 1.3 curves list to '%s' "
968 "for bind '%s' at [%s:%d].\n",
969 curproxy->id, groups,
970 bind_conf->arg, bind_conf->file, bind_conf->line);
971 cfgerr++;
972 }
973
974 SSL_CTX_set_mode(ctx, SSL_MODE_RELEASE_BUFFERS);
975 SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
976 SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION);
977 SSL_CTX_set_default_verify_paths(ctx);
978
979#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
980#ifdef OPENSSL_IS_BORINGSSL
981 SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk);
982 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
983#elif (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
984 if (bind_conf->ssl_conf.early_data) {
985 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
986 SSL_CTX_set_max_early_data(ctx, global.tune.bufsize - global.tune.maxrewrite);
987 }
988 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
989 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
990#else
991 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
992#endif
993 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
994#endif
995 SSL_CTX_set_quic_method(ctx, &ha_quic_method);
996
997 return cfgerr;
998}
999
1000/* Decode an expected packet number from <truncated_on> its truncated value,
1001 * depending on <largest_pn> the largest received packet number, and <pn_nbits>
1002 * the number of bits used to encode this packet number (its length in bytes * 8).
1003 * See https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#packet-encoding
1004 */
1005static uint64_t decode_packet_number(uint64_t largest_pn,
1006 uint32_t truncated_pn, unsigned int pn_nbits)
1007{
1008 uint64_t expected_pn = largest_pn + 1;
1009 uint64_t pn_win = (uint64_t)1 << pn_nbits;
1010 uint64_t pn_hwin = pn_win / 2;
1011 uint64_t pn_mask = pn_win - 1;
1012 uint64_t candidate_pn;
1013
1014
1015 candidate_pn = (expected_pn & ~pn_mask) | truncated_pn;
1016 /* Note that <pn_win> > <pn_hwin>. */
1017 if (candidate_pn < QUIC_MAX_PACKET_NUM - pn_win &&
1018 candidate_pn + pn_hwin <= expected_pn)
1019 return candidate_pn + pn_win;
1020
1021 if (candidate_pn > expected_pn + pn_hwin && candidate_pn >= pn_win)
1022 return candidate_pn - pn_win;
1023
1024 return candidate_pn;
1025}
1026
1027/* Remove the header protection of <pkt> QUIC packet using <tls_ctx> as QUIC TLS
1028 * cryptographic context.
1029 * <largest_pn> is the largest received packet number and <pn> the address of
1030 * the packet number field for this packet with <byte0> address of its first byte.
1031 * <end> points to one byte past the end of this packet.
1032 * Returns 1 if succeeded, 0 if not.
1033 */
1034static int qc_do_rm_hp(struct quic_rx_packet *pkt, struct quic_tls_ctx *tls_ctx,
1035 int64_t largest_pn, unsigned char *pn,
1036 unsigned char *byte0, const unsigned char *end,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001037 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001038{
1039 int ret, outlen, i, pnlen;
1040 uint64_t packet_number;
1041 uint32_t truncated_pn = 0;
1042 unsigned char mask[5] = {0};
1043 unsigned char *sample;
1044 EVP_CIPHER_CTX *cctx;
1045 unsigned char *hp_key;
1046
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001047 /* Check there is enough data in this packet. */
1048 if (end - pn < QUIC_PACKET_PN_MAXLEN + sizeof mask) {
1049 TRACE_DEVEL("too short packet", QUIC_EV_CONN_RMHP, ctx->conn, pkt);
1050 return 0;
1051 }
1052
1053 cctx = EVP_CIPHER_CTX_new();
1054 if (!cctx) {
1055 TRACE_DEVEL("memory allocation failed", QUIC_EV_CONN_RMHP, ctx->conn, pkt);
1056 return 0;
1057 }
1058
1059 ret = 0;
1060 sample = pn + QUIC_PACKET_PN_MAXLEN;
1061
1062 hp_key = tls_ctx->rx.hp_key;
1063 if (!EVP_DecryptInit_ex(cctx, tls_ctx->rx.hp, NULL, hp_key, sample) ||
1064 !EVP_DecryptUpdate(cctx, mask, &outlen, mask, sizeof mask) ||
1065 !EVP_DecryptFinal_ex(cctx, mask, &outlen)) {
1066 TRACE_DEVEL("decryption failed", QUIC_EV_CONN_RMHP, ctx->conn, pkt);
1067 goto out;
1068 }
1069
1070 *byte0 ^= mask[0] & (*byte0 & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f);
1071 pnlen = (*byte0 & QUIC_PACKET_PNL_BITMASK) + 1;
1072 for (i = 0; i < pnlen; i++) {
1073 pn[i] ^= mask[i + 1];
1074 truncated_pn = (truncated_pn << 8) | pn[i];
1075 }
1076
1077 packet_number = decode_packet_number(largest_pn, truncated_pn, pnlen * 8);
1078 /* Store remaining information for this unprotected header */
1079 pkt->pn = packet_number;
1080 pkt->pnl = pnlen;
1081
1082 ret = 1;
1083
1084 out:
1085 EVP_CIPHER_CTX_free(cctx);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001086
1087 return ret;
1088}
1089
1090/* Encrypt the payload of a QUIC packet with <pn> as number found at <payload>
1091 * address, with <payload_len> as payload length, <aad> as address of
1092 * the ADD and <aad_len> as AAD length depending on the <tls_ctx> QUIC TLS
1093 * context.
1094 * Returns 1 if succeeded, 0 if not.
1095 */
1096static int quic_packet_encrypt(unsigned char *payload, size_t payload_len,
1097 unsigned char *aad, size_t aad_len, uint64_t pn,
1098 struct quic_tls_ctx *tls_ctx, struct connection *conn)
1099{
1100 unsigned char iv[12];
1101 unsigned char *tx_iv = tls_ctx->tx.iv;
1102 size_t tx_iv_sz = sizeof tls_ctx->tx.iv;
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001103 struct enc_debug_info edi;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001104
1105 if (!quic_aead_iv_build(iv, sizeof iv, tx_iv, tx_iv_sz, pn)) {
1106 TRACE_DEVEL("AEAD IV building for encryption failed", QUIC_EV_CONN_HPKT, conn);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001107 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001108 }
1109
1110 if (!quic_tls_encrypt(payload, payload_len, aad, aad_len,
1111 tls_ctx->tx.aead, tls_ctx->tx.key, iv)) {
1112 TRACE_DEVEL("QUIC packet encryption failed", QUIC_EV_CONN_HPKT, conn);
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001113 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001114 }
1115
1116 return 1;
Frédéric Lécaillef63921f2020-12-18 09:48:20 +01001117
1118 err:
1119 enc_debug_info_init(&edi, payload, payload_len, aad, aad_len, pn);
1120 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ENCPKT, conn, &edi);
1121 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001122}
1123
1124/* Decrypt <pkt> QUIC packet with <tls_ctx> as QUIC TLS cryptographic context.
1125 * Returns 1 if succeeded, 0 if not.
1126 */
1127static int qc_pkt_decrypt(struct quic_rx_packet *pkt, struct quic_tls_ctx *tls_ctx)
1128{
1129 int ret;
1130 unsigned char iv[12];
1131 unsigned char *rx_iv = tls_ctx->rx.iv;
1132 size_t rx_iv_sz = sizeof tls_ctx->rx.iv;
1133
1134 if (!quic_aead_iv_build(iv, sizeof iv, rx_iv, rx_iv_sz, pkt->pn))
1135 return 0;
1136
1137 ret = quic_tls_decrypt(pkt->data + pkt->aad_len, pkt->len - pkt->aad_len,
1138 pkt->data, pkt->aad_len,
1139 tls_ctx->rx.aead, tls_ctx->rx.key, iv);
1140 if (!ret)
1141 return 0;
1142
1143 /* Update the packet length (required to parse the frames). */
1144 pkt->len = pkt->aad_len + ret;
1145
1146 return 1;
1147}
1148
1149/* Treat <frm> frame whose packet it is attached to has just been acknowledged. */
1150static inline void qc_treat_acked_tx_frm(struct quic_tx_frm *frm,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001151 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001152{
1153 TRACE_PROTO("Removing frame", QUIC_EV_CONN_PRSAFRM, ctx->conn, frm);
Willy Tarreau2b718102021-04-21 07:32:39 +02001154 LIST_DELETE(&frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001155 pool_free(pool_head_quic_tx_frm, frm);
1156}
1157
1158/* Remove <largest> down to <smallest> node entries from <pkts> tree of TX packet,
1159 * deallocating them, and their TX frames.
1160 * Returns the last node reached to be used for the next range.
1161 * May be NULL if <largest> node could not be found.
1162 */
1163static inline struct eb64_node *qc_ackrng_pkts(struct eb_root *pkts, unsigned int *pkt_flags,
1164 struct list *newly_acked_pkts,
1165 struct eb64_node *largest_node,
1166 uint64_t largest, uint64_t smallest,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001167 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001168{
1169 struct eb64_node *node;
1170 struct quic_tx_packet *pkt;
1171
1172 if (largest_node)
1173 node = largest_node;
1174 else {
1175 node = eb64_lookup(pkts, largest);
1176 while (!node && largest > smallest) {
1177 node = eb64_lookup(pkts, --largest);
1178 }
1179 }
1180
1181 while (node && node->key >= smallest) {
1182 struct quic_tx_frm *frm, *frmbak;
1183
1184 pkt = eb64_entry(&node->node, struct quic_tx_packet, pn_node);
1185 *pkt_flags |= pkt->flags;
Willy Tarreau2b718102021-04-21 07:32:39 +02001186 LIST_INSERT(newly_acked_pkts, &pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001187 TRACE_PROTO("Removing packet #", QUIC_EV_CONN_PRSAFRM, ctx->conn,, &pkt->pn_node.key);
1188 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list)
1189 qc_treat_acked_tx_frm(frm, ctx);
1190 node = eb64_prev(node);
1191 eb64_delete(&pkt->pn_node);
1192 }
1193
1194 return node;
1195}
1196
1197/* Treat <frm> frame whose packet it is attached to has just been detected as non
1198 * acknowledged.
1199 */
1200static inline void qc_treat_nacked_tx_frm(struct quic_tx_frm *frm,
1201 struct quic_pktns *pktns,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001202 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001203{
1204 TRACE_PROTO("to resend frame", QUIC_EV_CONN_PRSAFRM, ctx->conn, frm);
Willy Tarreau2b718102021-04-21 07:32:39 +02001205 LIST_DELETE(&frm->list);
1206 LIST_INSERT(&pktns->tx.frms, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001207}
1208
1209
1210/* Free the TX packets of <pkts> list */
1211static inline void free_quic_tx_pkts(struct list *pkts)
1212{
1213 struct quic_tx_packet *pkt, *tmp;
1214
1215 list_for_each_entry_safe(pkt, tmp, pkts, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001216 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001217 eb64_delete(&pkt->pn_node);
1218 pool_free(pool_head_quic_tx_packet, pkt);
1219 }
1220}
1221
1222/* Send a packet loss event nofification to the congestion controller
1223 * attached to <qc> connection with <lost_bytes> the number of lost bytes,
1224 * <oldest_lost>, <newest_lost> the oldest lost packet and newest lost packet
1225 * at <now_us> current time.
1226 * Always succeeds.
1227 */
1228static inline void qc_cc_loss_event(struct quic_conn *qc,
1229 unsigned int lost_bytes,
1230 unsigned int newest_time_sent,
1231 unsigned int period,
1232 unsigned int now_us)
1233{
1234 struct quic_cc_event ev = {
1235 .type = QUIC_CC_EVT_LOSS,
1236 .loss.now_ms = now_ms,
1237 .loss.max_ack_delay = qc->max_ack_delay,
1238 .loss.lost_bytes = lost_bytes,
1239 .loss.newest_time_sent = newest_time_sent,
1240 .loss.period = period,
1241 };
1242
1243 quic_cc_event(&qc->path->cc, &ev);
1244}
1245
1246/* Send a packet ack event nofication for each newly acked packet of
1247 * <newly_acked_pkts> list and free them.
1248 * Always succeeds.
1249 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001250static inline void qc_treat_newly_acked_pkts(struct ssl_sock_ctx *ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001251 struct list *newly_acked_pkts)
1252{
1253 struct quic_conn *qc = ctx->conn->qc;
1254 struct quic_tx_packet *pkt, *tmp;
1255 struct quic_cc_event ev = { .type = QUIC_CC_EVT_ACK, };
1256
1257 list_for_each_entry_safe(pkt, tmp, newly_acked_pkts, list) {
1258 pkt->pktns->tx.in_flight -= pkt->in_flight_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01001259 qc->path->prep_in_flight -= pkt->in_flight_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001260 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01001261 qc->path->ifae_pkts--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001262 ev.ack.acked = pkt->in_flight_len;
1263 ev.ack.time_sent = pkt->time_sent;
1264 quic_cc_event(&qc->path->cc, &ev);
Willy Tarreau2b718102021-04-21 07:32:39 +02001265 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001266 eb64_delete(&pkt->pn_node);
1267 pool_free(pool_head_quic_tx_packet, pkt);
1268 }
1269
1270}
1271
1272/* Handle <pkts> list of lost packets detected at <now_us> handling
1273 * their TX frames.
1274 * Send a packet loss event to the congestion controller if
1275 * in flight packet have been lost.
1276 * Also frees the packet in <pkts> list.
1277 * Never fails.
1278 */
1279static inline void qc_release_lost_pkts(struct quic_pktns *pktns,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001280 struct ssl_sock_ctx *ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001281 struct list *pkts,
1282 uint64_t now_us)
1283{
1284 struct quic_conn *qc = ctx->conn->qc;
1285 struct quic_tx_packet *pkt, *tmp, *oldest_lost, *newest_lost;
1286 struct quic_tx_frm *frm, *frmbak;
1287 uint64_t lost_bytes;
1288
1289 lost_bytes = 0;
1290 oldest_lost = newest_lost = NULL;
1291 list_for_each_entry_safe(pkt, tmp, pkts, list) {
1292 lost_bytes += pkt->in_flight_len;
1293 pkt->pktns->tx.in_flight -= pkt->in_flight_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01001294 qc->path->prep_in_flight -= pkt->in_flight_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001295 if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01001296 qc->path->ifae_pkts--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001297 /* Treat the frames of this lost packet. */
1298 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list)
1299 qc_treat_nacked_tx_frm(frm, pktns, ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02001300 LIST_DELETE(&pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001301 if (!oldest_lost) {
1302 oldest_lost = newest_lost = pkt;
1303 }
1304 else {
1305 if (newest_lost != oldest_lost)
1306 pool_free(pool_head_quic_tx_packet, newest_lost);
1307 newest_lost = pkt;
1308 }
1309 }
1310
1311 if (lost_bytes) {
1312 /* Sent a packet loss event to the congestion controller. */
1313 qc_cc_loss_event(ctx->conn->qc, lost_bytes, newest_lost->time_sent,
1314 newest_lost->time_sent - oldest_lost->time_sent, now_us);
1315 pool_free(pool_head_quic_tx_packet, oldest_lost);
1316 if (newest_lost != oldest_lost)
1317 pool_free(pool_head_quic_tx_packet, newest_lost);
1318 }
1319}
1320
1321/* Look for packet loss from sent packets for <qel> encryption level of a
1322 * connection with <ctx> as I/O handler context. If remove is true, remove them from
1323 * their tree if deemed as lost or set the <loss_time> value the packet number
1324 * space if any not deemed lost.
1325 * Should be called after having received an ACK frame with newly acknowledged
1326 * packets or when the the loss detection timer has expired.
1327 * Always succeeds.
1328 */
1329static void qc_packet_loss_lookup(struct quic_pktns *pktns,
1330 struct quic_conn *qc,
1331 struct list *lost_pkts)
1332{
1333 struct eb_root *pkts;
1334 struct eb64_node *node;
1335 struct quic_loss *ql;
1336 unsigned int loss_delay;
1337
1338 TRACE_ENTER(QUIC_EV_CONN_PKTLOSS, qc->conn, pktns);
1339 pkts = &pktns->tx.pkts;
1340 pktns->tx.loss_time = TICK_ETERNITY;
1341 if (eb_is_empty(pkts))
1342 goto out;
1343
1344 ql = &qc->path->loss;
1345 loss_delay = QUIC_MAX(ql->latest_rtt, ql->srtt >> 3);
1346 loss_delay += loss_delay >> 3;
1347 loss_delay = QUIC_MAX(loss_delay, MS_TO_TICKS(QUIC_TIMER_GRANULARITY));
1348
1349 node = eb64_first(pkts);
1350 while (node) {
1351 struct quic_tx_packet *pkt;
1352 int64_t largest_acked_pn;
1353 unsigned int loss_time_limit, time_sent;
1354
1355 pkt = eb64_entry(&node->node, struct quic_tx_packet, pn_node);
1356 largest_acked_pn = pktns->tx.largest_acked_pn;
1357 node = eb64_next(node);
1358 if ((int64_t)pkt->pn_node.key > largest_acked_pn)
1359 break;
1360
1361 time_sent = pkt->time_sent;
1362 loss_time_limit = tick_add(time_sent, loss_delay);
1363 if (tick_is_le(time_sent, now_ms) ||
1364 (int64_t)largest_acked_pn >= pkt->pn_node.key + QUIC_LOSS_PACKET_THRESHOLD) {
1365 eb64_delete(&pkt->pn_node);
Willy Tarreau2b718102021-04-21 07:32:39 +02001366 LIST_APPEND(lost_pkts, &pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001367 }
1368 else {
1369 pktns->tx.loss_time = tick_first(pktns->tx.loss_time, loss_time_limit);
1370 }
1371 }
1372
1373 out:
1374 TRACE_LEAVE(QUIC_EV_CONN_PKTLOSS, qc->conn, pktns, lost_pkts);
1375}
1376
1377/* Parse ACK frame into <frm> from a buffer at <buf> address with <end> being at
1378 * one byte past the end of this buffer. Also update <rtt_sample> if needed, i.e.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05001379 * 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 +01001380 * acked ack-eliciting packet.
1381 * Return 1, if succeeded, 0 if not.
1382 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001383static inline int qc_parse_ack_frm(struct quic_frame *frm, struct ssl_sock_ctx *ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001384 struct quic_enc_level *qel,
1385 unsigned int *rtt_sample,
1386 const unsigned char **pos, const unsigned char *end)
1387{
1388 struct quic_ack *ack = &frm->ack;
1389 uint64_t smallest, largest;
1390 struct eb_root *pkts;
1391 struct eb64_node *largest_node;
1392 unsigned int time_sent, pkt_flags;
1393 struct list newly_acked_pkts = LIST_HEAD_INIT(newly_acked_pkts);
1394 struct list lost_pkts = LIST_HEAD_INIT(lost_pkts);
1395
1396 if (ack->largest_ack > qel->pktns->tx.next_pn) {
1397 TRACE_DEVEL("ACK for not sent packet", QUIC_EV_CONN_PRSAFRM,
1398 ctx->conn,, &ack->largest_ack);
1399 goto err;
1400 }
1401
1402 if (ack->first_ack_range > ack->largest_ack) {
1403 TRACE_DEVEL("too big first ACK range", QUIC_EV_CONN_PRSAFRM,
1404 ctx->conn,, &ack->first_ack_range);
1405 goto err;
1406 }
1407
1408 largest = ack->largest_ack;
1409 smallest = largest - ack->first_ack_range;
1410 pkts = &qel->pktns->tx.pkts;
1411 pkt_flags = 0;
1412 largest_node = NULL;
1413 time_sent = 0;
1414
1415 if ((int64_t)ack->largest_ack > qel->pktns->tx.largest_acked_pn) {
1416 largest_node = eb64_lookup(pkts, largest);
1417 if (!largest_node) {
1418 TRACE_DEVEL("Largest acked packet not found",
1419 QUIC_EV_CONN_PRSAFRM, ctx->conn);
1420 goto err;
1421 }
1422
1423 time_sent = eb64_entry(&largest_node->node,
1424 struct quic_tx_packet, pn_node)->time_sent;
1425 }
1426
1427 TRACE_PROTO("ack range", QUIC_EV_CONN_PRSAFRM,
1428 ctx->conn,, &largest, &smallest);
1429 do {
1430 uint64_t gap, ack_range;
1431
1432 qc_ackrng_pkts(pkts, &pkt_flags, &newly_acked_pkts,
1433 largest_node, largest, smallest, ctx);
1434 if (!ack->ack_range_num--)
1435 break;
1436
1437 if (!quic_dec_int(&gap, pos, end))
1438 goto err;
1439
1440 if (smallest < gap + 2) {
1441 TRACE_DEVEL("wrong gap value", QUIC_EV_CONN_PRSAFRM,
1442 ctx->conn,, &gap, &smallest);
1443 goto err;
1444 }
1445
1446 largest = smallest - gap - 2;
1447 if (!quic_dec_int(&ack_range, pos, end))
1448 goto err;
1449
1450 if (largest < ack_range) {
1451 TRACE_DEVEL("wrong ack range value", QUIC_EV_CONN_PRSAFRM,
1452 ctx->conn,, &largest, &ack_range);
1453 goto err;
1454 }
1455
1456 /* Do not use this node anymore. */
1457 largest_node = NULL;
1458 /* Next range */
1459 smallest = largest - ack_range;
1460
1461 TRACE_PROTO("ack range", QUIC_EV_CONN_PRSAFRM,
1462 ctx->conn,, &largest, &smallest);
1463 } while (1);
1464
1465 /* Flag this packet number space as having received an ACK. */
1466 qel->pktns->flags |= QUIC_FL_PKTNS_ACK_RECEIVED;
1467
1468 if (time_sent && (pkt_flags & QUIC_FL_TX_PACKET_ACK_ELICITING)) {
1469 *rtt_sample = tick_remain(time_sent, now_ms);
1470 qel->pktns->tx.largest_acked_pn = ack->largest_ack;
1471 }
1472
1473 if (!LIST_ISEMPTY(&newly_acked_pkts)) {
1474 if (!eb_is_empty(&qel->pktns->tx.pkts)) {
1475 qc_packet_loss_lookup(qel->pktns, ctx->conn->qc, &lost_pkts);
1476 if (!LIST_ISEMPTY(&lost_pkts))
1477 qc_release_lost_pkts(qel->pktns, ctx, &lost_pkts, now_ms);
1478 }
1479 qc_treat_newly_acked_pkts(ctx, &newly_acked_pkts);
1480 if (quic_peer_validated_addr(ctx))
1481 ctx->conn->qc->path->loss.pto_count = 0;
1482 qc_set_timer(ctx);
1483 }
1484
1485
1486 return 1;
1487
1488 err:
1489 free_quic_tx_pkts(&newly_acked_pkts);
1490 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PRSAFRM, ctx->conn);
1491 return 0;
1492}
1493
1494/* Provide CRYPTO data to the TLS stack found at <data> with <len> as length
1495 * from <qel> encryption level with <ctx> as QUIC connection context.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05001496 * Remaining parameter are there for debugging purposes.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001497 * Return 1 if succeeded, 0 if not.
1498 */
1499static inline int qc_provide_cdata(struct quic_enc_level *el,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001500 struct ssl_sock_ctx *ctx,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001501 const unsigned char *data, size_t len,
1502 struct quic_rx_packet *pkt,
1503 struct quic_rx_crypto_frm *cf)
1504{
1505 int ssl_err;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001506 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001507
1508 TRACE_ENTER(QUIC_EV_CONN_SSLDATA, ctx->conn);
1509 ssl_err = SSL_ERROR_NONE;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001510 qc = ctx->conn->qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001511 if (SSL_provide_quic_data(ctx->ssl, el->level, data, len) != 1) {
1512 TRACE_PROTO("SSL_provide_quic_data() error",
1513 QUIC_EV_CONN_SSLDATA, ctx->conn, pkt, cf, ctx->ssl);
1514 goto err;
1515 }
1516
1517 el->rx.crypto.offset += len;
1518 TRACE_PROTO("in order CRYPTO data",
1519 QUIC_EV_CONN_SSLDATA, ctx->conn,, cf, ctx->ssl);
1520
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001521 if (qc->state < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001522 ssl_err = SSL_do_handshake(ctx->ssl);
1523 if (ssl_err != 1) {
1524 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
1525 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
1526 TRACE_PROTO("SSL handshake",
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001527 QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001528 goto out;
1529 }
1530
1531 TRACE_DEVEL("SSL handshake error",
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001532 QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001533 goto err;
1534 }
1535
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001536 TRACE_PROTO("SSL handshake OK", QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001537 if (objt_listener(ctx->conn->target))
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001538 qc->state = QUIC_HS_ST_CONFIRMED;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001539 else
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001540 qc->state = QUIC_HS_ST_COMPLETE;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001541 } else {
1542 ssl_err = SSL_process_quic_post_handshake(ctx->ssl);
1543 if (ssl_err != 1) {
1544 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
1545 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
1546 TRACE_DEVEL("SSL post handshake",
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001547 QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001548 goto out;
1549 }
1550
1551 TRACE_DEVEL("SSL post handshake error",
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001552 QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001553 goto err;
1554 }
1555
1556 TRACE_PROTO("SSL post handshake succeeded",
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001557 QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001558 }
1559
1560 out:
1561 TRACE_LEAVE(QUIC_EV_CONN_SSLDATA, ctx->conn);
1562 return 1;
1563
1564 err:
1565 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_SSLDATA, ctx->conn);
1566 return 0;
1567}
1568
Frédéric Lécailledfbae762021-02-18 09:59:01 +01001569/* Allocate a new STREAM RX frame from <stream_fm> STREAM frame attached to
1570 * <pkt> RX packet.
1571 * Return it if succeeded, NULL if not.
1572 */
1573static inline
1574struct quic_rx_strm_frm *new_quic_rx_strm_frm(struct quic_stream *stream_frm,
1575 struct quic_rx_packet *pkt)
1576{
1577 struct quic_rx_strm_frm *frm;
1578
1579 frm = pool_alloc(pool_head_quic_rx_strm_frm);
1580 if (frm) {
1581 frm->offset_node.key = stream_frm->offset;
1582 frm->len = stream_frm->len;
1583 frm->data = stream_frm->data;
1584 frm->pkt = pkt;
1585 }
1586
1587 return frm;
1588}
1589
1590/* Retrieve as an ebtree node the stream with <id> as ID, possibly allocates
1591 * several streams, depending on the already open onces.
1592 * Return this node if succeeded, NULL if not.
1593 */
1594static struct eb64_node *qcc_get_qcs(struct qcc *qcc, uint64_t id)
1595{
1596 unsigned int strm_type;
1597 int64_t sub_id;
1598 struct eb64_node *strm_node;
1599
1600 TRACE_ENTER(QUIC_EV_CONN_PSTRM, qcc->conn);
1601
1602 strm_type = id & QCS_ID_TYPE_MASK;
1603 sub_id = id >> QCS_ID_TYPE_SHIFT;
1604 strm_node = NULL;
1605 if (qc_local_stream_id(qcc, id)) {
1606 /* Local streams: this stream must be already opened. */
1607 strm_node = eb64_lookup(&qcc->streams_by_id, id);
1608 if (!strm_node) {
1609 TRACE_PROTO("Unknown stream ID", QUIC_EV_CONN_PSTRM, qcc->conn);
1610 goto out;
1611 }
1612 }
1613 else {
1614 /* Remote streams. */
1615 struct eb_root *strms;
1616 uint64_t largest_id;
1617 enum qcs_type qcs_type;
1618
1619 strms = &qcc->streams_by_id;
1620 qcs_type = qcs_id_type(id);
1621 if (sub_id + 1 > qcc->strms[qcs_type].max_streams) {
1622 TRACE_PROTO("Streams limit reached", QUIC_EV_CONN_PSTRM, qcc->conn);
1623 goto out;
1624 }
1625
1626 /* Note: ->largest_id was initialized with (uint64_t)-1 as value, 0 being a
1627 * correct value.
1628 */
1629 largest_id = qcc->strms[qcs_type].largest_id;
1630 if (sub_id > (int64_t)largest_id) {
1631 /* RFC: "A stream ID that is used out of order results in all streams
1632 * of that type with lower-numbered stream IDs also being opened".
1633 * So, let's "open" these streams.
1634 */
1635 int64_t i;
1636 struct qcs *qcs;
1637
1638 qcs = NULL;
1639 for (i = largest_id + 1; i <= sub_id; i++) {
1640 qcs = qcs_new(qcc, (i << QCS_ID_TYPE_SHIFT) | strm_type);
1641 if (!qcs) {
1642 TRACE_PROTO("Could not allocate a new stream",
1643 QUIC_EV_CONN_PSTRM, qcc->conn);
1644 goto out;
1645 }
1646
1647 qcc->strms[qcs_type].largest_id = i;
1648 }
1649 if (qcs)
1650 strm_node = &qcs->by_id;
1651 }
1652 else {
1653 strm_node = eb64_lookup(strms, id);
1654 }
1655 }
1656
1657 TRACE_LEAVE(QUIC_EV_CONN_PSTRM, qcc->conn);
1658 return strm_node;
1659
1660 out:
1661 TRACE_LEAVE(QUIC_EV_CONN_PSTRM, qcc->conn);
1662 return NULL;
1663}
1664
1665/* Copy as most as possible STREAM data from <strm_frm> into <strm> stream.
1666 * Returns the number of bytes copied or -1 if failed. Also update <strm_frm> frame
1667 * to reflect the data which have been consumed.
1668 */
1669static size_t qc_strm_cpy(struct buffer *buf, struct quic_stream *strm_frm)
1670{
1671 size_t ret;
1672
1673 ret = 0;
1674 while (strm_frm->len) {
1675 size_t try;
1676
1677 try = b_contig_space(buf);
1678 if (!try)
1679 break;
1680
1681 if (try > strm_frm->len)
1682 try = strm_frm->len;
1683 memcpy(b_tail(buf), strm_frm->data, try);
1684 strm_frm->len -= try;
1685 strm_frm->offset += try;
1686 b_add(buf, try);
1687 ret += try;
1688 }
1689
1690 return ret;
1691}
1692
1693/* Handle <strm_frm> bidirectional STREAM frame. Depending on its ID, several
1694 * streams may be open. The data are copied to the stream RX buffer if possible.
1695 * If not, the STREAM frame is stored to be treated again later.
1696 * We rely on the flow control so that not to store too much STREAM frames.
1697 * Return 1 if succeeded, 0 if not.
1698 */
1699static int qc_handle_bidi_strm_frm(struct quic_rx_packet *pkt,
1700 struct quic_stream *strm_frm,
1701 struct quic_conn *qc)
1702{
1703 struct qcs *strm;
1704 struct eb64_node *strm_node, *frm_node;
1705 struct quic_rx_strm_frm *frm;
1706
1707 strm_node = qcc_get_qcs(qc->qcc, strm_frm->id);
1708 if (!strm_node) {
1709 TRACE_PROTO("Stream not found", QUIC_EV_CONN_PSTRM, qc->conn);
1710 return 0;
1711 }
1712
1713 strm = eb64_entry(&strm_node->node, struct qcs, by_id);
1714 frm_node = eb64_lookup(&strm->frms, strm_frm->offset);
1715 /* FIXME: handle the case where this frame overlap others */
1716 if (frm_node) {
1717 TRACE_PROTO("Already existing stream data",
1718 QUIC_EV_CONN_PSTRM, qc->conn);
1719 goto out;
1720 }
1721
1722 if (strm_frm->offset == strm->rx.offset) {
1723 int ret;
1724
1725 if (!qc_get_buf(qc->qcc, &strm->rx.buf))
1726 goto store_frm;
1727
1728 ret = qc_strm_cpy(&strm->rx.buf, strm_frm);
1729 if (ret && qc->qcc->app_ops->decode_qcs(strm, qc->qcc->ctx) == -1) {
1730 TRACE_PROTO("Decoding error", QUIC_EV_CONN_PSTRM);
1731 return 0;
1732 }
1733
1734 strm->rx.offset += ret;
1735 }
1736
1737 if (!strm_frm->len)
1738 goto out;
1739
1740 store_frm:
1741 frm = new_quic_rx_strm_frm(strm_frm, pkt);
1742 if (!frm) {
1743 TRACE_PROTO("Could not alloc RX STREAM frame",
1744 QUIC_EV_CONN_PSTRM, qc->conn);
1745 return 0;
1746 }
1747
1748 eb64_insert(&strm->frms, &frm->offset_node);
1749 quic_rx_packet_refinc(pkt);
1750
1751 out:
1752 return 1;
1753}
1754
1755/* Handle <strm_frm> unidirectional STREAM frame. Depending on its ID, several
1756 * streams may be open. The data are copied to the stream RX buffer if possible.
1757 * If not, the STREAM frame is stored to be treated again later.
1758 * We rely on the flow control so that not to store too much STREAM frames.
1759 * Return 1 if succeeded, 0 if not.
1760 */
1761static int qc_handle_uni_strm_frm(struct quic_rx_packet *pkt,
1762 struct quic_stream *strm_frm,
1763 struct quic_conn *qc)
1764{
1765 struct qcs *strm;
1766 struct eb64_node *strm_node, *frm_node;
1767 struct quic_rx_strm_frm *frm;
1768 size_t strm_frm_len;
1769
1770 strm_node = qcc_get_qcs(qc->qcc, strm_frm->id);
1771 if (!strm_node) {
1772 TRACE_PROTO("Stream not found", QUIC_EV_CONN_PSTRM, qc->conn);
1773 return 0;
1774 }
1775
1776 strm = eb64_entry(&strm_node->node, struct qcs, by_id);
1777 frm_node = eb64_lookup(&strm->frms, strm_frm->offset);
1778 /* FIXME: handle the case where this frame overlap others */
1779 if (frm_node) {
1780 TRACE_PROTO("Already existing stream data",
1781 QUIC_EV_CONN_PSTRM, qc->conn);
1782 goto out;
1783 }
1784
1785 strm_frm_len = strm_frm->len;
1786 if (strm_frm->offset == strm->rx.offset) {
1787 int ret;
1788
1789 if (!qc_get_buf(qc->qcc, &strm->rx.buf))
1790 goto store_frm;
1791
1792 /* qc_strm_cpy() will modify the offset, depending on the number
1793 * of bytes copied.
1794 */
1795 ret = qc_strm_cpy(&strm->rx.buf, strm_frm);
1796 /* Inform the application of the arrival of this new stream */
1797 if (!strm->rx.offset && !qc->qcc->app_ops->attach_ruqs(strm, qc->qcc->ctx)) {
1798 TRACE_PROTO("Could not set an uni-stream", QUIC_EV_CONN_PSTRM, qc->conn);
1799 return 0;
1800 }
1801
1802 if (ret)
1803 ruqs_notify_recv(strm);
1804
1805 strm_frm->offset += ret;
1806 }
1807 /* Take this frame into an account for the stream flow control */
1808 strm->rx.offset += strm_frm_len;
1809 /* It all the data were provided to the application, there is no need to
1810 * store any more inforamtion for it.
1811 */
1812 if (!strm_frm->len)
1813 goto out;
1814
1815 store_frm:
1816 frm = new_quic_rx_strm_frm(strm_frm, pkt);
1817 if (!frm) {
1818 TRACE_PROTO("Could not alloc RX STREAM frame",
1819 QUIC_EV_CONN_PSTRM, qc->conn);
1820 return 0;
1821 }
1822
1823 eb64_insert(&strm->frms, &frm->offset_node);
1824 quic_rx_packet_refinc(pkt);
1825
1826 out:
1827 return 1;
1828}
1829
1830static inline int qc_handle_strm_frm(struct quic_rx_packet *pkt,
1831 struct quic_stream *strm_frm,
1832 struct quic_conn *qc)
1833{
1834 if (strm_frm->id & QCS_ID_DIR_BIT)
1835 return qc_handle_uni_strm_frm(pkt, strm_frm, qc);
1836 else
1837 return qc_handle_bidi_strm_frm(pkt, strm_frm, qc);
1838}
1839
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001840/* Parse all the frames of <pkt> QUIC packet for QUIC connection with <ctx>
1841 * as I/O handler context and <qel> as encryption level.
1842 * Returns 1 if succeeded, 0 if failed.
1843 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001844static 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 +01001845 struct quic_enc_level *qel)
1846{
1847 struct quic_frame frm;
1848 const unsigned char *pos, *end;
1849 struct quic_conn *conn = ctx->conn->qc;
1850
1851 TRACE_ENTER(QUIC_EV_CONN_PRSHPKT, ctx->conn);
1852 /* Skip the AAD */
1853 pos = pkt->data + pkt->aad_len;
1854 end = pkt->data + pkt->len;
1855
1856 while (pos < end) {
1857 if (!qc_parse_frm(&frm, pkt, &pos, end, conn))
1858 goto err;
1859
1860 switch (frm.type) {
Frédéric Lécaille0c140202020-12-09 15:56:48 +01001861 case QUIC_FT_PADDING:
1862 if (pos != end) {
1863 TRACE_DEVEL("wrong frame", QUIC_EV_CONN_PRSHPKT, ctx->conn, pkt);
1864 goto err;
1865 }
1866 break;
1867 case QUIC_FT_PING:
1868 break;
1869 case QUIC_FT_ACK:
1870 {
1871 unsigned int rtt_sample;
1872
1873 rtt_sample = 0;
1874 if (!qc_parse_ack_frm(&frm, ctx, qel, &rtt_sample, &pos, end))
1875 goto err;
1876
1877 if (rtt_sample) {
1878 unsigned int ack_delay;
1879
1880 ack_delay = !quic_application_pktns(qel->pktns, conn) ? 0 :
1881 MS_TO_TICKS(QUIC_MIN(quic_ack_delay_ms(&frm.ack, conn), conn->max_ack_delay));
1882 quic_loss_srtt_update(&conn->path->loss, rtt_sample, ack_delay, conn);
1883 }
1884 tasklet_wakeup(ctx->wait_event.tasklet);
1885 break;
1886 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001887 case QUIC_FT_CRYPTO:
1888 if (frm.crypto.offset != qel->rx.crypto.offset) {
1889 struct quic_rx_crypto_frm *cf;
1890
1891 cf = pool_alloc(pool_head_quic_rx_crypto_frm);
1892 if (!cf) {
1893 TRACE_DEVEL("CRYPTO frame allocation failed",
1894 QUIC_EV_CONN_PRSHPKT, ctx->conn);
1895 goto err;
1896 }
1897
1898 cf->offset_node.key = frm.crypto.offset;
1899 cf->len = frm.crypto.len;
1900 cf->data = frm.crypto.data;
1901 cf->pkt = pkt;
1902 eb64_insert(&qel->rx.crypto.frms, &cf->offset_node);
1903 quic_rx_packet_refinc(pkt);
1904 }
1905 else {
1906 /* XXX TO DO: <cf> is used only for the traces. */
1907 struct quic_rx_crypto_frm cf = { };
1908
1909 cf.offset_node.key = frm.crypto.offset;
1910 cf.len = frm.crypto.len;
1911 if (!qc_provide_cdata(qel, ctx,
1912 frm.crypto.data, frm.crypto.len,
1913 pkt, &cf))
1914 goto err;
1915 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001916 break;
Frédéric Lécaille0c140202020-12-09 15:56:48 +01001917 case QUIC_FT_STREAM_8:
1918 case QUIC_FT_STREAM_9:
1919 case QUIC_FT_STREAM_A:
1920 case QUIC_FT_STREAM_B:
1921 case QUIC_FT_STREAM_C:
1922 case QUIC_FT_STREAM_D:
1923 case QUIC_FT_STREAM_E:
1924 case QUIC_FT_STREAM_F:
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01001925 {
1926 struct quic_stream *stream = &frm.stream;
1927
1928 TRACE_PROTO("STREAM frame", QUIC_EV_CONN_PSTRM, ctx->conn, &frm);
1929 if (objt_listener(ctx->conn->target)) {
1930 if (stream->id & QUIC_STREAM_FRAME_ID_INITIATOR_BIT)
1931 goto err;
1932 } else if (!(stream->id & QUIC_STREAM_FRAME_ID_INITIATOR_BIT))
1933 goto err;
Frédéric Lécailledfbae762021-02-18 09:59:01 +01001934
1935 if (!qc_handle_strm_frm(pkt, stream, ctx->conn->qc))
1936 goto err;
1937
Frédéric Lécaille242fb1b2020-12-31 12:45:38 +01001938 break;
1939 }
Frédéric Lécaille0c140202020-12-09 15:56:48 +01001940 case QUIC_FT_NEW_CONNECTION_ID:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001941 break;
1942 case QUIC_FT_CONNECTION_CLOSE:
1943 case QUIC_FT_CONNECTION_CLOSE_APP:
1944 break;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001945 case QUIC_FT_HANDSHAKE_DONE:
1946 if (objt_listener(ctx->conn->target))
1947 goto err;
1948
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001949 conn->state = QUIC_HS_ST_CONFIRMED;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001950 break;
1951 default:
1952 goto err;
1953 }
1954 }
1955
1956 /* The server must switch from INITIAL to HANDSHAKE handshake state when it
1957 * has successfully parse a Handshake packet. The Initial encryption must also
1958 * be discarded.
1959 */
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001960 if (conn->state == QUIC_HS_ST_SERVER_INITIAL &&
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001961 pkt->type == QUIC_PACKET_TYPE_HANDSHAKE) {
1962 quic_tls_discard_keys(&conn->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
1963 quic_pktns_discard(conn->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, conn);
1964 qc_set_timer(ctx);
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001965 conn->state = QUIC_HS_ST_SERVER_HANDSHAKE;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001966 }
1967
1968 TRACE_LEAVE(QUIC_EV_CONN_PRSHPKT, ctx->conn);
1969 return 1;
1970
1971 err:
1972 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PRSHPKT, ctx->conn);
1973 return 0;
1974}
1975
1976/* Prepare as much as possible handshake packets for the QUIC connection
1977 * with <ctx> as I/O handler context.
1978 * Returns 1 if succeeded, or 0 if something wrong happened.
1979 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02001980static int qc_prep_hdshk_pkts(struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001981{
1982 struct quic_conn *qc;
1983 enum quic_tls_enc_level tel, next_tel;
1984 struct quic_enc_level *qel;
1985 struct q_buf *wbuf;
1986 /* A boolean to flag <wbuf> as reusable, even if not empty. */
1987 int reuse_wbuf;
1988
1989 TRACE_ENTER(QUIC_EV_CONN_PHPKTS, ctx->conn);
1990 qc = ctx->conn->qc;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02001991 if (!quic_get_tls_enc_levels(&tel, &next_tel, qc->state)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01001992 TRACE_DEVEL("unknown enc. levels",
1993 QUIC_EV_CONN_PHPKTS, ctx->conn);
1994 goto err;
1995 }
1996
1997 reuse_wbuf = 0;
1998 wbuf = q_wbuf(qc);
1999 qel = &qc->els[tel];
Ilya Shipitsin01881082021-08-07 14:41:56 +05002000 /* When entering this function, the writer buffer must be empty.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002001 * Most of the time it points to the reader buffer.
2002 */
2003 while ((q_buf_empty(wbuf) || reuse_wbuf)) {
2004 ssize_t ret;
2005 enum quic_pkt_type pkt_type;
2006
Frédéric Lécaillec5e72b92020-12-02 16:11:40 +01002007 TRACE_POINT(QUIC_EV_CONN_PHPKTS, ctx->conn, qel);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01002008 /* Do not build any more packet f the TX secrets are not available or
2009 * f there is nothing to send, i.e. if no ACK are required
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002010 * and if there is no more packets to send upon PTO expiration
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01002011 * and if there is no more CRYPTO data available or in flight
2012 * congestion control limit is reached for prepared data
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002013 */
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01002014 if (!(qel->tls_ctx.tx.flags & QUIC_FL_TLS_SECRETS_SET) ||
2015 (!(qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) &&
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002016 !qc->tx.nb_pto_dgrams &&
2017 (LIST_ISEMPTY(&qel->pktns->tx.frms) ||
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01002018 qc->path->prep_in_flight >= qc->path->cwnd))) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002019 TRACE_DEVEL("nothing more to do", QUIC_EV_CONN_PHPKTS, ctx->conn);
2020 /* Consume the buffer if we were supposed to reuse it. */
2021 if (reuse_wbuf)
2022 wbuf = q_next_wbuf(qc);
2023 break;
2024 }
2025
2026 pkt_type = quic_tls_level_pkt_type(tel);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002027 ret = qc_build_hdshk_pkt(wbuf, qc, pkt_type, qel);
2028 switch (ret) {
2029 case -2:
2030 goto err;
2031 case -1:
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01002032 if (!reuse_wbuf)
2033 goto out;
2034
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002035 /* Not enough room in <wbuf>. */
2036 wbuf = q_next_wbuf(qc);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01002037 reuse_wbuf = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002038 continue;
2039 case 0:
2040 goto out;
2041 default:
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01002042 reuse_wbuf = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002043 /* Discard the Initial encryption keys as soon as
2044 * a handshake packet could be built.
2045 */
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002046 if (qc->state == QUIC_HS_ST_CLIENT_INITIAL &&
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002047 pkt_type == QUIC_PACKET_TYPE_HANDSHAKE) {
2048 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]);
2049 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, qc);
2050 qc_set_timer(ctx);
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002051 qc->state = QUIC_HS_ST_CLIENT_HANDSHAKE;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002052 }
2053 /* Special case for Initial packets: when they have all
2054 * been sent, select the next level.
2055 */
2056 if ((LIST_ISEMPTY(&qel->pktns->tx.frms) || qc->els[next_tel].pktns->tx.in_flight) &&
2057 tel == QUIC_TLS_ENC_LEVEL_INITIAL) {
2058 tel = next_tel;
2059 qel = &qc->els[tel];
2060 if (LIST_ISEMPTY(&qel->pktns->tx.frms)) {
2061 /* If there is no more data for the next level, let's
2062 * consume a buffer. This is the case for a client
2063 * which sends only one Initial packet, then wait
2064 * for additional CRYPTO data from the server to enter the
2065 * next level.
2066 */
2067 wbuf = q_next_wbuf(qc);
2068 }
2069 else {
2070 /* Let's try to reuse this buffer. */
2071 reuse_wbuf = 1;
2072 }
2073 }
2074 else {
2075 wbuf = q_next_wbuf(qc);
2076 }
2077 }
2078 }
2079
2080 out:
2081 TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, ctx->conn);
2082 return 1;
2083
2084 err:
2085 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PHPKTS, ctx->conn);
2086 return 0;
2087}
2088
2089/* Send the QUIC packets which have been prepared for QUIC connections
2090 * with <ctx> as I/O handler context.
2091 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002092int qc_send_ppkts(struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002093{
2094 struct quic_conn *qc;
2095 struct buffer tmpbuf = { };
2096 struct q_buf *rbuf;
2097
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002098 qc = ctx->conn->qc;
2099 for (rbuf = q_rbuf(qc); !q_buf_empty(rbuf) ; rbuf = q_next_rbuf(qc)) {
2100 struct quic_tx_packet *p, *q;
2101 unsigned int time_sent;
2102
2103 tmpbuf.area = (char *)rbuf->area;
2104 tmpbuf.size = tmpbuf.data = rbuf->data;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01002105 TRACE_PROTO("to send", QUIC_EV_CONN_SPPKTS, ctx->conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002106 if (ctx->xprt->snd_buf(qc->conn, qc->conn->xprt_ctx,
2107 &tmpbuf, tmpbuf.data, 0) <= 0)
2108 break;
2109
2110 qc->tx.bytes += tmpbuf.data;
2111 time_sent = now_ms;
2112 /* Reset this buffer to make it available for the next packet to prepare. */
2113 q_buf_reset(rbuf);
2114 /* Remove from <rbuf> the packets which have just been sent. */
2115 list_for_each_entry_safe(p, q, &rbuf->pkts, list) {
2116 p->time_sent = time_sent;
2117 if (p->flags & QUIC_FL_TX_PACKET_ACK_ELICITING) {
2118 p->pktns->tx.time_of_last_eliciting = time_sent;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01002119 qc->path->ifae_pkts++;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002120 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002121 qc->path->in_flight += p->in_flight_len;
2122 p->pktns->tx.in_flight += p->in_flight_len;
2123 if (p->in_flight_len)
2124 qc_set_timer(ctx);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01002125 TRACE_PROTO("sent pkt", QUIC_EV_CONN_SPPKTS, ctx->conn, p);
Willy Tarreau2b718102021-04-21 07:32:39 +02002126 LIST_DELETE(&p->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002127 }
2128 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002129
2130 return 1;
2131}
2132
2133/* Build all the frames which must be sent just after the handshake have succeeded.
2134 * This is essentially NEW_CONNECTION_ID frames. A QUIC server must also send
2135 * a HANDSHAKE_DONE frame.
2136 * Return 1 if succeeded, 0 if not.
2137 */
2138static int quic_build_post_handshake_frames(struct quic_conn *conn)
2139{
2140 int i;
2141 struct quic_frame *frm;
2142
2143 /* Only servers must send a HANDSHAKE_DONE frame. */
2144 if (!objt_server(conn->conn->target)) {
2145 frm = pool_alloc(pool_head_quic_frame);
Frédéric Lécaille153d4a82021-01-06 12:12:39 +01002146 if (!frm)
2147 return 0;
2148
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002149 frm->type = QUIC_FT_HANDSHAKE_DONE;
Willy Tarreau2b718102021-04-21 07:32:39 +02002150 LIST_APPEND(&conn->tx.frms_to_send, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002151 }
2152
Frédéric Lécaille5aa41432021-01-28 16:22:52 +01002153 for (i = 1; i < conn->tx.params.active_connection_id_limit; i++) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002154 struct quic_connection_id *cid;
2155
2156 frm = pool_alloc(pool_head_quic_frame);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002157 cid = new_quic_cid(&conn->cids, i);
2158 if (!frm || !cid)
2159 goto err;
2160
2161 quic_connection_id_to_frm_cpy(frm, cid);
Willy Tarreau2b718102021-04-21 07:32:39 +02002162 LIST_APPEND(&conn->tx.frms_to_send, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002163 }
2164
2165 return 1;
2166
2167 err:
2168 free_quic_conn_cids(conn);
2169 return 0;
2170}
2171
2172/* Deallocate <l> list of ACK ranges. */
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002173void free_quic_arngs(struct quic_arngs *arngs)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002174{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002175 struct eb64_node *n;
2176 struct quic_arng_node *ar;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002177
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002178 n = eb64_first(&arngs->root);
2179 while (n) {
2180 struct eb64_node *next;
2181
2182 ar = eb64_entry(&n->node, struct quic_arng_node, first);
2183 next = eb64_next(n);
2184 eb64_delete(n);
2185 free(ar);
2186 n = next;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002187 }
2188}
2189
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002190/* Return the gap value between <p> and <q> ACK ranges where <q> follows <p> in
2191 * descending order.
2192 */
2193static inline size_t sack_gap(struct quic_arng_node *p,
2194 struct quic_arng_node *q)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002195{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002196 return p->first.key - q->last - 2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002197}
2198
2199
2200/* Remove the last elements of <ack_ranges> list of ack range updating its
2201 * encoded size until it goes below <limit>.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05002202 * Returns 1 if succeeded, 0 if not (no more element to remove).
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002203 */
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002204static int quic_rm_last_ack_ranges(struct quic_arngs *arngs, size_t limit)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002205{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002206 struct eb64_node *last, *prev;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002207
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002208 last = eb64_last(&arngs->root);
2209 while (last && arngs->enc_sz > limit) {
2210 struct quic_arng_node *last_node, *prev_node;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002211
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002212 prev = eb64_prev(last);
2213 if (!prev)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002214 return 0;
2215
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002216 last_node = eb64_entry(&last->node, struct quic_arng_node, first);
2217 prev_node = eb64_entry(&prev->node, struct quic_arng_node, first);
2218 arngs->enc_sz -= quic_int_getsize(last_node->last - last_node->first.key);
2219 arngs->enc_sz -= quic_int_getsize(sack_gap(prev_node, last_node));
2220 arngs->enc_sz -= quic_decint_size_diff(arngs->sz);
2221 --arngs->sz;
2222 eb64_delete(last);
2223 pool_free(pool_head_quic_arng, last);
2224 last = prev;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002225 }
2226
2227 return 1;
2228}
2229
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002230/* Set the encoded size of <arngs> QUIC ack ranges. */
2231static void quic_arngs_set_enc_sz(struct quic_arngs *arngs)
2232{
2233 struct eb64_node *node, *next;
2234 struct quic_arng_node *ar, *ar_next;
2235
2236 node = eb64_last(&arngs->root);
2237 if (!node)
2238 return;
2239
2240 ar = eb64_entry(&node->node, struct quic_arng_node, first);
2241 arngs->enc_sz = quic_int_getsize(ar->last) +
2242 quic_int_getsize(ar->last - ar->first.key) + quic_int_getsize(arngs->sz - 1);
2243
2244 while ((next = eb64_prev(node))) {
2245 ar_next = eb64_entry(&next->node, struct quic_arng_node, first);
2246 arngs->enc_sz += quic_int_getsize(sack_gap(ar, ar_next)) +
2247 quic_int_getsize(ar_next->last - ar_next->first.key);
2248 node = next;
2249 ar = eb64_entry(&node->node, struct quic_arng_node, first);
2250 }
2251}
2252
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002253/* Insert <ar> ack range into <argns> tree of ack ranges.
2254 * Returns the ack range node which has been inserted if succeeded, NULL if not.
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002255 */
2256static inline
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002257struct quic_arng_node *quic_insert_new_range(struct quic_arngs *arngs,
2258 struct quic_arng *ar)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002259{
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002260 struct quic_arng_node *new_ar;
2261
2262 new_ar = pool_alloc(pool_head_quic_arng);
2263 if (new_ar) {
2264 new_ar->first.key = ar->first;
2265 new_ar->last = ar->last;
2266 eb64_insert(&arngs->root, &new_ar->first);
2267 arngs->sz++;
2268 }
2269
2270 return new_ar;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002271}
2272
2273/* Update <arngs> tree of ACK ranges with <ar> as new ACK range value.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002274 * Note that this function computes the number of bytes required to encode
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002275 * this tree of ACK ranges in descending order.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002276 *
2277 * Descending order
2278 * ------------->
2279 * range1 range2
2280 * ..........|--------|..............|--------|
2281 * ^ ^ ^ ^
2282 * | | | |
2283 * last1 first1 last2 first2
2284 * ..........+--------+--------------+--------+......
2285 * diff1 gap12 diff2
2286 *
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002287 * To encode the previous list of ranges we must encode integers as follows in
2288 * descending order:
2289 * enc(last2),enc(diff2),enc(gap12),enc(diff1)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002290 * with diff1 = last1 - first1
2291 * diff2 = last2 - first2
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002292 * gap12 = first1 - last2 - 2 (>= 0)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002293 *
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002294 */
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002295int quic_update_ack_ranges_list(struct quic_arngs *arngs,
2296 struct quic_arng *ar)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002297{
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002298 struct eb64_node *le;
2299 struct quic_arng_node *new_node;
2300 struct eb64_node *new;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002301
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002302 new = NULL;
2303 if (eb_is_empty(&arngs->root)) {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002304 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002305 if (!new_node)
2306 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002307
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002308 goto out;
2309 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002310
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002311 le = eb64_lookup_le(&arngs->root, ar->first);
2312 if (!le) {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002313 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002314 if (!new_node)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002315 return 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002316 }
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002317 else {
2318 struct quic_arng_node *le_ar =
2319 eb64_entry(&le->node, struct quic_arng_node, first);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002320
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002321 /* Already existing range */
Frédéric Lécailled3f4dd82021-06-02 15:36:12 +02002322 if (le_ar->last >= ar->last)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002323 return 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002324
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002325 if (le_ar->last + 1 >= ar->first) {
2326 le_ar->last = ar->last;
2327 new = le;
2328 new_node = le_ar;
2329 }
2330 else {
Frédéric Lécaille9ef64cd2021-06-02 15:27:34 +02002331 new_node = quic_insert_new_range(arngs, ar);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002332 if (!new_node)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002333 return 0;
Frédéric Lécaille8ba42762021-06-02 17:40:09 +02002334
2335 new = &new_node->first;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002336 }
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002337 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002338
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002339 /* Verify that the new inserted node does not overlap the nodes
2340 * which follow it.
2341 */
2342 if (new) {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002343 struct eb64_node *next;
2344 struct quic_arng_node *next_node;
2345
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002346 while ((next = eb64_next(new))) {
2347 next_node =
2348 eb64_entry(&next->node, struct quic_arng_node, first);
Frédéric Lécaillec825eba2021-06-02 17:38:13 +02002349 if (new_node->last + 1 < next_node->first.key)
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002350 break;
2351
2352 if (next_node->last > new_node->last)
2353 new_node->last = next_node->last;
2354 eb64_delete(next);
Frédéric Lécaillebaea2842021-06-02 15:04:03 +02002355 pool_free(pool_head_quic_arng, next_node);
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002356 /* Decrement the size of these ranges. */
2357 arngs->sz--;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002358 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002359 }
2360
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002361 quic_arngs_set_enc_sz(arngs);
2362
2363 out:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002364 return 1;
2365}
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002366/* Remove the header protection of packets at <el> encryption level.
2367 * Always succeeds.
2368 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002369static inline void qc_rm_hp_pkts(struct quic_enc_level *el, struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002370{
2371 struct quic_tls_ctx *tls_ctx;
2372 struct quic_rx_packet *pqpkt, *qqpkt;
2373 struct quic_enc_level *app_qel;
2374
2375 TRACE_ENTER(QUIC_EV_CONN_ELRMHP, ctx->conn);
2376 app_qel = &ctx->conn->qc->els[QUIC_TLS_ENC_LEVEL_APP];
2377 /* A server must not process incoming 1-RTT packets before the handshake is complete. */
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002378 if (el == app_qel && objt_listener(ctx->conn->target) &&
2379 ctx->conn->qc->state < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002380 TRACE_PROTO("hp not removed (handshake not completed)",
2381 QUIC_EV_CONN_ELRMHP, ctx->conn);
2382 goto out;
2383 }
2384 tls_ctx = &el->tls_ctx;
2385 list_for_each_entry_safe(pqpkt, qqpkt, &el->rx.pqpkts, list) {
2386 if (!qc_do_rm_hp(pqpkt, tls_ctx, el->pktns->rx.largest_pn,
2387 pqpkt->data + pqpkt->pn_offset,
2388 pqpkt->data, pqpkt->data + pqpkt->len, ctx)) {
2389 TRACE_PROTO("hp removing error", QUIC_EV_CONN_ELRMHP, ctx->conn);
2390 /* XXX TO DO XXX */
2391 }
2392 else {
2393 /* The AAD includes the packet number field */
2394 pqpkt->aad_len = pqpkt->pn_offset + pqpkt->pnl;
2395 /* Store the packet into the tree of packets to decrypt. */
2396 pqpkt->pn_node.key = pqpkt->pn;
Frédéric Lécaille9fccace2021-06-04 10:33:32 +02002397 HA_RWLOCK_WRLOCK(QUIC_LOCK, &el->rx.rwlock);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002398 quic_rx_packet_eb64_insert(&el->rx.pkts, &pqpkt->pn_node);
Frédéric Lécaille9fccace2021-06-04 10:33:32 +02002399 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &el->rx.rwlock);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002400 TRACE_PROTO("hp removed", QUIC_EV_CONN_ELRMHP, ctx->conn, pqpkt);
2401 }
2402 quic_rx_packet_list_del(pqpkt);
2403 }
2404
2405 out:
2406 TRACE_LEAVE(QUIC_EV_CONN_ELRMHP, ctx->conn);
2407}
2408
2409/* Process all the CRYPTO frame at <el> encryption level.
2410 * Return 1 if succeeded, 0 if not.
2411 */
2412static inline int qc_treat_rx_crypto_frms(struct quic_enc_level *el,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002413 struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002414{
2415 struct eb64_node *node;
2416
2417 TRACE_ENTER(QUIC_EV_CONN_RXCDATA, ctx->conn);
2418 node = eb64_first(&el->rx.crypto.frms);
2419 while (node) {
2420 struct quic_rx_crypto_frm *cf;
2421
2422 cf = eb64_entry(&node->node, struct quic_rx_crypto_frm, offset_node);
2423 if (cf->offset_node.key != el->rx.crypto.offset)
2424 break;
2425
2426 if (!qc_provide_cdata(el, ctx, cf->data, cf->len, cf->pkt, cf))
2427 goto err;
2428
2429 node = eb64_next(node);
2430 quic_rx_packet_refdec(cf->pkt);
2431 eb64_delete(&cf->offset_node);
2432 pool_free(pool_head_quic_rx_crypto_frm, cf);
2433 }
2434
2435 TRACE_LEAVE(QUIC_EV_CONN_RXCDATA, ctx->conn);
2436 return 1;
2437
2438 err:
2439 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RXCDATA, ctx->conn);
2440 return 0;
2441}
2442
2443/* Process all the packets at <el> encryption level.
2444 * Return 1 if succeeded, 0 if not.
2445 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002446int qc_treat_rx_pkts(struct quic_enc_level *el, struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002447{
2448 struct quic_tls_ctx *tls_ctx;
2449 struct eb64_node *node;
2450
2451 TRACE_ENTER(QUIC_EV_CONN_ELRXPKTS, ctx->conn);
2452 tls_ctx = &el->tls_ctx;
Frédéric Lécaille9fccace2021-06-04 10:33:32 +02002453 HA_RWLOCK_WRLOCK(QUIC_LOCK, &el->rx.rwlock);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002454 node = eb64_first(&el->rx.pkts);
2455 while (node) {
2456 struct quic_rx_packet *pkt;
2457
2458 pkt = eb64_entry(&node->node, struct quic_rx_packet, pn_node);
2459 if (!qc_pkt_decrypt(pkt, tls_ctx)) {
2460 /* Drop the packet */
2461 TRACE_PROTO("packet decryption failed -> dropped",
2462 QUIC_EV_CONN_ELRXPKTS, ctx->conn, pkt);
2463 }
2464 else {
Frédéric Lécaillec4b93ea2021-06-04 10:12:43 +02002465 if (!qc_parse_pkt_frms(pkt, ctx, el)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002466 /* Drop the packet */
2467 TRACE_PROTO("packet parsing failed -> dropped",
2468 QUIC_EV_CONN_ELRXPKTS, ctx->conn, pkt);
2469 }
2470 else {
Frédéric Lécaille8090b512020-11-30 16:19:22 +01002471 struct quic_arng ar = { .first = pkt->pn, .last = pkt->pn };
2472
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002473 if (pkt->flags & QUIC_FL_RX_PACKET_ACK_ELICITING) {
2474 el->pktns->rx.nb_ack_eliciting++;
2475 if (!(el->pktns->rx.nb_ack_eliciting & 1))
2476 el->pktns->flags |= QUIC_FL_PKTNS_ACK_REQUIRED;
2477 }
2478
2479 /* Update the largest packet number. */
2480 if (pkt->pn > el->pktns->rx.largest_pn)
2481 el->pktns->rx.largest_pn = pkt->pn;
2482
2483 /* Update the list of ranges to acknowledge. */
Frédéric Lécaille654c6912021-06-04 10:27:23 +02002484 if (!quic_update_ack_ranges_list(&el->pktns->rx.arngs, &ar))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002485 TRACE_DEVEL("Could not update ack range list",
2486 QUIC_EV_CONN_ELRXPKTS, ctx->conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002487 }
2488 }
2489 node = eb64_next(node);
2490 quic_rx_packet_eb64_delete(&pkt->pn_node);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002491 }
Frédéric Lécaille9fccace2021-06-04 10:33:32 +02002492 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &el->rx.rwlock);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002493
2494 if (!qc_treat_rx_crypto_frms(el, ctx))
2495 goto err;
2496
2497 TRACE_LEAVE(QUIC_EV_CONN_ELRXPKTS, ctx->conn);
2498 return 1;
2499
2500 err:
2501 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ELRXPKTS, ctx->conn);
2502 return 0;
2503}
2504
2505/* Called during handshakes to parse and build Initial and Handshake packets for QUIC
2506 * connections with <ctx> as I/O handler context.
2507 * Returns 1 if succeeded, 0 if not.
2508 */
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002509int qc_do_hdshk(struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002510{
2511 int ssl_err;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002512 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002513 enum quic_tls_enc_level tel, next_tel;
2514 struct quic_enc_level *qel, *next_qel;
2515 struct quic_tls_ctx *tls_ctx;
2516
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002517 qc = ctx->conn->qc;
2518 TRACE_ENTER(QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002519 ssl_err = SSL_ERROR_NONE;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002520 if (!quic_get_tls_enc_levels(&tel, &next_tel, qc->state))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002521 goto err;
2522
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002523 qel = &qc->els[tel];
2524 next_qel = &qc->els[next_tel];
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002525
2526 next_level:
2527 tls_ctx = &qel->tls_ctx;
2528
2529 /* If the header protection key for this level has been derived,
2530 * remove the packet header protections.
2531 */
2532 if (!LIST_ISEMPTY(&qel->rx.pqpkts) &&
2533 (tls_ctx->rx.flags & QUIC_FL_TLS_SECRETS_SET))
2534 qc_rm_hp_pkts(qel, ctx);
2535
2536 if (!eb_is_empty(&qel->rx.pkts) &&
2537 !qc_treat_rx_pkts(qel, ctx))
2538 goto err;
2539
2540 if (!qc_prep_hdshk_pkts(ctx))
2541 goto err;
2542
2543 if (!qc_send_ppkts(ctx))
2544 goto err;
2545
2546 /* Check if there is something to do for the next level.
2547 */
2548 if ((next_qel->tls_ctx.rx.flags & QUIC_FL_TLS_SECRETS_SET) &&
2549 (!LIST_ISEMPTY(&next_qel->rx.pqpkts) || !eb_is_empty(&next_qel->rx.pkts))) {
2550 qel = next_qel;
2551 goto next_level;
2552 }
2553
2554 /* If the handshake has not been completed -> out! */
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002555 if (qc->state < QUIC_HS_ST_COMPLETE)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002556 goto out;
2557
2558 /* Discard the Handshake keys. */
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002559 quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]);
2560 quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns, qc);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002561 qc_set_timer(ctx);
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002562 if (!quic_build_post_handshake_frames(qc) ||
2563 !qc_prep_phdshk_pkts(qc) ||
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002564 !qc_send_ppkts(ctx))
2565 goto err;
2566
2567 out:
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002568 TRACE_LEAVE(QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002569 return 1;
2570
2571 err:
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002572 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002573 return 0;
2574}
2575
2576/* Allocate a new QUIC connection and return it if succeeded, NULL if not. */
2577struct quic_conn *new_quic_conn(uint32_t version)
2578{
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002579 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002580
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002581 qc = pool_zalloc(pool_head_quic_conn);
2582 if (qc) {
2583 qc->version = version;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002584 }
2585
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002586 return qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002587}
2588
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05002589/* Uninitialize <qel> QUIC encryption level. Never fails. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002590static void quic_conn_enc_level_uninit(struct quic_enc_level *qel)
2591{
2592 int i;
2593
2594 for (i = 0; i < qel->tx.crypto.nb_buf; i++) {
2595 if (qel->tx.crypto.bufs[i]) {
2596 pool_free(pool_head_quic_crypto_buf, qel->tx.crypto.bufs[i]);
2597 qel->tx.crypto.bufs[i] = NULL;
2598 }
2599 }
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002600 ha_free(&qel->tx.crypto.bufs);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002601}
2602
2603/* Initialize QUIC TLS encryption level with <level<> as level for <qc> QUIC
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05002604 * connection allocating everything needed.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002605 * Returns 1 if succeeded, 0 if not.
2606 */
2607static int quic_conn_enc_level_init(struct quic_conn *qc,
2608 enum quic_tls_enc_level level)
2609{
2610 struct quic_enc_level *qel;
2611
2612 qel = &qc->els[level];
2613 qel->level = quic_to_ssl_enc_level(level);
2614 qel->tls_ctx.rx.aead = qel->tls_ctx.tx.aead = NULL;
2615 qel->tls_ctx.rx.md = qel->tls_ctx.tx.md = NULL;
2616 qel->tls_ctx.rx.hp = qel->tls_ctx.tx.hp = NULL;
2617 qel->tls_ctx.rx.flags = 0;
2618 qel->tls_ctx.tx.flags = 0;
2619
2620 qel->rx.pkts = EB_ROOT;
Frédéric Lécaille9fccace2021-06-04 10:33:32 +02002621 HA_RWLOCK_INIT(&qel->rx.rwlock);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002622 LIST_INIT(&qel->rx.pqpkts);
2623
2624 /* Allocate only one buffer. */
2625 qel->tx.crypto.bufs = malloc(sizeof *qel->tx.crypto.bufs);
2626 if (!qel->tx.crypto.bufs)
2627 goto err;
2628
2629 qel->tx.crypto.bufs[0] = pool_alloc(pool_head_quic_crypto_buf);
2630 if (!qel->tx.crypto.bufs[0])
2631 goto err;
2632
2633 qel->tx.crypto.bufs[0]->sz = 0;
2634 qel->tx.crypto.nb_buf = 1;
2635
2636 qel->tx.crypto.sz = 0;
2637 qel->tx.crypto.offset = 0;
2638
2639 return 1;
2640
2641 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002642 ha_free(&qel->tx.crypto.bufs);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002643 return 0;
2644}
2645
2646/* Release the memory allocated for <buf> array of buffers, with <nb> as size.
2647 * Never fails.
2648 */
2649static inline void free_quic_conn_tx_bufs(struct q_buf **bufs, size_t nb)
2650{
2651 struct q_buf **p;
2652
2653 if (!bufs)
2654 return;
2655
2656 p = bufs;
2657 while (--nb) {
2658 if (!*p) {
2659 p++;
2660 continue;
2661 }
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002662 ha_free(&(*p)->area);
2663 ha_free(p);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002664 p++;
2665 }
2666 free(bufs);
2667}
2668
2669/* Allocate an array or <nb> buffers of <sz> bytes each.
2670 * Return this array if succeeded, NULL if failed.
2671 */
2672static inline struct q_buf **quic_conn_tx_bufs_alloc(size_t nb, size_t sz)
2673{
2674 int i;
2675 struct q_buf **bufs, **p;
2676
2677 bufs = calloc(nb, sizeof *bufs);
2678 if (!bufs)
2679 return NULL;
2680
2681 i = 0;
2682 p = bufs;
2683 while (i++ < nb) {
2684 *p = calloc(1, sizeof **p);
2685 if (!*p)
2686 goto err;
2687
2688 (*p)->area = malloc(sz);
2689 if (!(*p)->area)
2690 goto err;
2691
2692 (*p)->pos = (*p)->area;
2693 (*p)->end = (*p)->area + sz;
2694 (*p)->data = 0;
2695 LIST_INIT(&(*p)->pkts);
2696 p++;
2697 }
2698
2699 return bufs;
2700
2701 err:
2702 free_quic_conn_tx_bufs(bufs, nb);
2703 return NULL;
2704}
2705
2706/* Release all the memory allocated for <conn> QUIC connection. */
2707static void quic_conn_free(struct quic_conn *conn)
2708{
2709 int i;
2710
2711 free_quic_conn_cids(conn);
2712 for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++)
2713 quic_conn_enc_level_uninit(&conn->els[i]);
2714 free_quic_conn_tx_bufs(conn->tx.bufs, conn->tx.nb_buf);
2715 if (conn->timer_task)
2716 task_destroy(conn->timer_task);
2717 pool_free(pool_head_quic_conn, conn);
2718}
2719
2720/* Callback called upon loss detection and PTO timer expirations. */
Willy Tarreau144f84a2021-03-02 16:09:26 +01002721static struct task *process_timer(struct task *task, void *ctx, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002722{
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002723 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002724 struct quic_conn *qc;
2725 struct quic_pktns *pktns;
2726
2727
2728 conn_ctx = task->context;
2729 qc = conn_ctx->conn->qc;
Frédéric Lécaillef7e0b8d2020-12-16 17:33:11 +01002730 TRACE_ENTER(QUIC_EV_CONN_PTIMER, conn_ctx->conn,
2731 NULL, NULL, &qc->path->ifae_pkts);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002732 task->expire = TICK_ETERNITY;
2733 pktns = quic_loss_pktns(qc);
2734 if (tick_isset(pktns->tx.loss_time)) {
2735 struct list lost_pkts = LIST_HEAD_INIT(lost_pkts);
2736
2737 qc_packet_loss_lookup(pktns, qc, &lost_pkts);
2738 if (!LIST_ISEMPTY(&lost_pkts))
2739 qc_release_lost_pkts(pktns, ctx, &lost_pkts, now_ms);
2740 qc_set_timer(conn_ctx);
2741 goto out;
2742 }
2743
2744 if (qc->path->in_flight) {
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002745 pktns = quic_pto_pktns(qc, qc->state >= QUIC_HS_ST_COMPLETE, NULL);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002746 pktns->tx.pto_probe = 1;
2747 }
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002748 else if (objt_server(qc->conn->target) && qc->state <= QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002749 struct quic_enc_level *iel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
2750 struct quic_enc_level *hel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE];
2751
2752 if (hel->tls_ctx.rx.flags == QUIC_FL_TLS_SECRETS_SET)
2753 hel->pktns->tx.pto_probe = 1;
2754 if (iel->tls_ctx.rx.flags == QUIC_FL_TLS_SECRETS_SET)
2755 iel->pktns->tx.pto_probe = 1;
2756 }
2757 qc->tx.nb_pto_dgrams = QUIC_MAX_NB_PTO_DGRAMS;
2758 tasklet_wakeup(conn_ctx->wait_event.tasklet);
2759 qc->path->loss.pto_count++;
2760
2761 out:
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01002762 TRACE_LEAVE(QUIC_EV_CONN_PTIMER, conn_ctx->conn, pktns);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002763
2764 return task;
2765}
2766
2767/* Initialize <conn> QUIC connection with <quic_initial_clients> as root of QUIC
2768 * connections used to identify the first Initial packets of client connecting
2769 * to listeners. This parameter must be NULL for QUIC connections attached
2770 * to listeners. <dcid> is the destination connection ID with <dcid_len> as length.
2771 * <scid> is the source connection ID with <scid_len> as length.
2772 * Returns 1 if succeeded, 0 if not.
2773 */
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02002774static int qc_new_conn_init(struct quic_conn *qc, int ipv4,
2775 struct eb_root *quic_initial_clients,
2776 struct eb_root *quic_clients,
2777 unsigned char *dcid, size_t dcid_len,
2778 unsigned char *scid, size_t scid_len, int server)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002779{
2780 int i;
2781 /* Initial CID. */
2782 struct quic_connection_id *icid;
2783
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02002784 TRACE_ENTER(QUIC_EV_CONN_INIT);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002785 qc->cids = EB_ROOT;
2786 /* QUIC Server (or listener). */
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02002787 if (server) {
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002788 qc->state = QUIC_HS_ST_SERVER_INITIAL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002789 /* Copy the initial DCID. */
2790 qc->odcid.len = dcid_len;
2791 if (qc->odcid.len)
2792 memcpy(qc->odcid.data, dcid, dcid_len);
2793
2794 /* Copy the SCID as our DCID for this connection. */
2795 if (scid_len)
2796 memcpy(qc->dcid.data, scid, scid_len);
2797 qc->dcid.len = scid_len;
2798 }
2799 /* QUIC Client (outgoing connection to servers) */
2800 else {
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002801 qc->state = QUIC_HS_ST_CLIENT_INITIAL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002802 if (dcid_len)
2803 memcpy(qc->dcid.data, dcid, dcid_len);
2804 qc->dcid.len = dcid_len;
2805 }
2806
2807 /* Initialize the output buffer */
2808 qc->obuf.pos = qc->obuf.data;
2809
2810 icid = new_quic_cid(&qc->cids, 0);
2811 if (!icid)
2812 return 0;
2813
2814 /* Select our SCID which is the first CID with 0 as sequence number. */
2815 qc->scid = icid->cid;
2816
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05002817 /* Insert the DCID the QUIC client has chosen (only for listeners) */
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02002818 if (server)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002819 ebmb_insert(quic_initial_clients, &qc->odcid_node, qc->odcid.len);
2820
2821 /* Insert our SCID, the connection ID for the QUIC client. */
2822 ebmb_insert(quic_clients, &qc->scid_node, qc->scid.len);
2823
2824 /* Packet number spaces initialization. */
2825 for (i = 0; i < QUIC_TLS_PKTNS_MAX; i++)
2826 quic_pktns_init(&qc->pktns[i]);
2827 /* QUIC encryption level context initialization. */
2828 for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++) {
2829 if (!quic_conn_enc_level_init(qc, i))
2830 goto err;
2831 /* Initialize the packet number space. */
2832 qc->els[i].pktns = &qc->pktns[quic_tls_pktns(i)];
2833 }
2834
2835 /* TX part. */
2836 LIST_INIT(&qc->tx.frms_to_send);
2837 qc->tx.bufs = quic_conn_tx_bufs_alloc(QUIC_CONN_TX_BUFS_NB, QUIC_CONN_TX_BUF_SZ);
2838 if (!qc->tx.bufs)
2839 goto err;
2840
2841 qc->tx.nb_buf = QUIC_CONN_TX_BUFS_NB;
2842 qc->tx.wbuf = qc->tx.rbuf = 0;
2843 qc->tx.bytes = 0;
2844 qc->tx.nb_pto_dgrams = 0;
2845 /* RX part. */
2846 qc->rx.bytes = 0;
2847
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002848 /* XXX TO DO: Only one path at this time. */
2849 qc->path = &qc->paths[0];
2850 quic_path_init(qc->path, ipv4, default_quic_cc_algo, qc);
2851
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02002852 TRACE_LEAVE(QUIC_EV_CONN_INIT);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002853
2854 return 1;
2855
2856 err:
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02002857 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_INIT);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002858 quic_conn_free(qc);
2859 return 0;
2860}
2861
2862/* Initialize the timer task of <qc> QUIC connection.
2863 * Returns 1 if succeeded, 0 if not.
2864 */
2865static int quic_conn_init_timer(struct quic_conn *qc)
2866{
2867 qc->timer_task = task_new(MAX_THREADS_MASK);
2868 if (!qc->timer_task)
2869 return 0;
2870
2871 qc->timer = TICK_ETERNITY;
2872 qc->timer_task->process = process_timer;
2873 qc->timer_task->context = qc->conn->xprt_ctx;
2874
2875 return 1;
2876}
2877
2878/* Parse into <pkt> a long header located at <*buf> buffer, <end> begin a pointer to the end
2879 * past one byte of this buffer.
2880 */
2881static inline int quic_packet_read_long_header(unsigned char **buf, const unsigned char *end,
2882 struct quic_rx_packet *pkt)
2883{
2884 unsigned char dcid_len, scid_len;
2885
2886 /* Version */
2887 if (!quic_read_uint32(&pkt->version, (const unsigned char **)buf, end))
2888 return 0;
2889
2890 if (!pkt->version) { /* XXX TO DO XXX Version negotiation packet */ };
2891
2892 /* Destination Connection ID Length */
2893 dcid_len = *(*buf)++;
2894 /* We want to be sure we can read <dcid_len> bytes and one more for <scid_len> value */
2895 if (dcid_len > QUIC_CID_MAXLEN || end - *buf < dcid_len + 1)
2896 /* XXX MUST BE DROPPED */
2897 return 0;
2898
2899 if (dcid_len) {
2900 /* Check that the length of this received DCID matches the CID lengths
2901 * of our implementation for non Initials packets only.
2902 */
2903 if (pkt->type != QUIC_PACKET_TYPE_INITIAL && dcid_len != QUIC_CID_LEN)
2904 return 0;
2905
2906 memcpy(pkt->dcid.data, *buf, dcid_len);
2907 }
2908
2909 pkt->dcid.len = dcid_len;
2910 *buf += dcid_len;
2911
2912 /* Source Connection ID Length */
2913 scid_len = *(*buf)++;
2914 if (scid_len > QUIC_CID_MAXLEN || end - *buf < scid_len)
2915 /* XXX MUST BE DROPPED */
2916 return 0;
2917
2918 if (scid_len)
2919 memcpy(pkt->scid.data, *buf, scid_len);
2920 pkt->scid.len = scid_len;
2921 *buf += scid_len;
2922
2923 return 1;
2924}
2925
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02002926/* If the header protection of <pkt> packet attached to <qc> connection with <ctx>
2927 * as context may be removed, return 1, 0 if not. Also set <*qel> to the associated
2928 * encryption level matching with the packet type. <*qel> may be null if not found.
2929 * Note that <ctx> may be null (for Initial packets).
2930 */
2931static int qc_pkt_may_rm_hp(struct quic_rx_packet *pkt,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002932 struct quic_conn *qc, struct ssl_sock_ctx *ctx,
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02002933 struct quic_enc_level **qel)
2934{
2935 enum quic_tls_enc_level tel;
2936
2937 /* Special case without connection context (firt Initial packets) */
2938 if (!ctx) {
2939 *qel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL];
2940 return 1;
2941 }
2942
2943 tel = quic_packet_type_enc_level(pkt->type);
2944 if (tel == QUIC_TLS_ENC_LEVEL_NONE) {
2945 *qel = NULL;
2946 return 0;
2947 }
2948
2949 *qel = &qc->els[tel];
2950 if ((*qel)->tls_ctx.rx.flags & QUIC_FL_TLS_SECRETS_DCD) {
2951 TRACE_DEVEL("Discarded keys", QUIC_EV_CONN_TRMHP, ctx->conn);
2952 return 0;
2953 }
2954
2955 if (((*qel)->tls_ctx.rx.flags & QUIC_FL_TLS_SECRETS_SET) &&
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02002956 (tel != QUIC_TLS_ENC_LEVEL_APP || ctx->conn->qc->state >= QUIC_HS_ST_COMPLETE))
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02002957 return 1;
2958
2959 return 0;
2960}
2961
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002962/* Try to remove the header protecttion of <pkt> QUIC packet attached to <conn>
2963 * QUIC connection with <buf> as packet number field address, <end> a pointer to one
2964 * byte past the end of the buffer containing this packet and <beg> the address of
2965 * the packet first byte.
2966 * If succeeded, this function updates <*buf> to point to the next packet in the buffer.
2967 * Returns 1 if succeeded, 0 if not.
2968 */
2969static inline int qc_try_rm_hp(struct quic_rx_packet *pkt,
2970 unsigned char **buf, unsigned char *beg,
2971 const unsigned char *end,
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02002972 struct quic_conn *qc, struct ssl_sock_ctx *ctx)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002973{
2974 unsigned char *pn = NULL; /* Packet number field */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002975 struct quic_enc_level *qel;
2976 /* Only for traces. */
2977 struct quic_rx_packet *qpkt_trace;
2978
2979 qpkt_trace = NULL;
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02002980 TRACE_ENTER(QUIC_EV_CONN_TRMHP, ctx ? ctx->conn : NULL);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002981 /* The packet number is here. This is also the start minus
2982 * QUIC_PACKET_PN_MAXLEN of the sample used to add/remove the header
2983 * protection.
2984 */
2985 pn = *buf;
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02002986 if (qc_pkt_may_rm_hp(pkt, qc, ctx, &qel)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002987 /* Note that the following function enables us to unprotect the packet
2988 * number and its length subsequently used to decrypt the entire
2989 * packets.
2990 */
2991 if (!qc_do_rm_hp(pkt, &qel->tls_ctx,
2992 qel->pktns->rx.largest_pn, pn, beg, end, ctx)) {
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02002993 TRACE_PROTO("hp error", QUIC_EV_CONN_TRMHP, ctx ? ctx->conn : NULL);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01002994 goto err;
2995 }
2996
2997 /* The AAD includes the packet number field found at <pn>. */
2998 pkt->aad_len = pn - beg + pkt->pnl;
2999 qpkt_trace = pkt;
3000 /* Store the packet */
3001 pkt->pn_node.key = pkt->pn;
Frédéric Lécaille9fccace2021-06-04 10:33:32 +02003002 HA_RWLOCK_WRLOCK(QUIC_LOCK, &qel->rx.rwlock);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003003 quic_rx_packet_eb64_insert(&qel->rx.pkts, &pkt->pn_node);
Frédéric Lécaille9fccace2021-06-04 10:33:32 +02003004 HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qel->rx.rwlock);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003005 }
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003006 else if (qel) {
3007 TRACE_PROTO("hp not removed", QUIC_EV_CONN_TRMHP, ctx ? ctx->conn : NULL, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003008 pkt->pn_offset = pn - beg;
3009 quic_rx_packet_list_addq(&qel->rx.pqpkts, pkt);
3010 }
3011
3012 memcpy(pkt->data, beg, pkt->len);
3013 /* Updtate the offset of <*buf> for the next QUIC packet. */
3014 *buf = beg + pkt->len;
3015
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003016 TRACE_LEAVE(QUIC_EV_CONN_TRMHP, ctx ? ctx->conn : NULL, qpkt_trace);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003017 return 1;
3018
3019 err:
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003020 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_TRMHP, ctx ? ctx->conn : NULL, qpkt_trace);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003021 return 0;
3022}
3023
3024/* Parse the header form from <byte0> first byte of <pkt> pacekt to set type.
3025 * Also set <*long_header> to 1 if this form is long, 0 if not.
3026 */
3027static inline void qc_parse_hd_form(struct quic_rx_packet *pkt,
3028 unsigned char byte0, int *long_header)
3029{
3030 if (byte0 & QUIC_PACKET_LONG_HEADER_BIT) {
3031 pkt->type =
3032 (byte0 >> QUIC_PACKET_TYPE_SHIFT) & QUIC_PACKET_TYPE_BITMASK;
3033 *long_header = 1;
3034 }
3035 else {
3036 pkt->type = QUIC_PACKET_TYPE_SHORT;
3037 *long_header = 0;
3038 }
3039}
3040
3041static ssize_t qc_srv_pkt_rcv(unsigned char **buf, const unsigned char *end,
3042 struct quic_rx_packet *pkt,
3043 struct quic_dgram_ctx *dgram_ctx,
3044 struct sockaddr_storage *saddr)
3045{
3046 unsigned char *beg;
3047 uint64_t len;
3048 struct quic_conn *qc;
3049 struct eb_root *cids;
3050 struct ebmb_node *node;
3051 struct connection *srv_conn;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02003052 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003053 int long_header;
3054
3055 qc = NULL;
3056 TRACE_ENTER(QUIC_EV_CONN_SPKT);
3057 if (end <= *buf)
3058 goto err;
3059
3060 /* Fixed bit */
3061 if (!(**buf & QUIC_PACKET_FIXED_BIT))
3062 /* XXX TO BE DISCARDED */
3063 goto err;
3064
3065 srv_conn = dgram_ctx->owner;
3066 beg = *buf;
3067 /* Header form */
3068 qc_parse_hd_form(pkt, *(*buf)++, &long_header);
3069 if (long_header) {
3070 size_t cid_lookup_len;
3071
3072 if (!quic_packet_read_long_header(buf, end, pkt))
3073 goto err;
3074
3075 /* For Initial packets, and for servers (QUIC clients connections),
3076 * there is no Initial connection IDs storage.
3077 */
3078 if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {
3079 cids = &((struct server *)__objt_server(srv_conn->target))->cids;
3080 cid_lookup_len = pkt->dcid.len;
3081 }
3082 else {
3083 cids = &((struct server *)__objt_server(srv_conn->target))->cids;
3084 cid_lookup_len = QUIC_CID_LEN;
3085 }
3086
3087 node = ebmb_lookup(cids, pkt->dcid.data, cid_lookup_len);
3088 if (!node)
3089 goto err;
3090
3091 qc = ebmb_entry(node, struct quic_conn, scid_node);
3092
3093 if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {
3094 qc->dcid.len = pkt->scid.len;
3095 if (pkt->scid.len)
3096 memcpy(qc->dcid.data, pkt->scid.data, pkt->scid.len);
3097 }
3098
3099 if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {
3100 uint64_t token_len;
3101
3102 if (!quic_dec_int(&token_len, (const unsigned char **)buf, end) || end - *buf < token_len)
3103 goto err;
3104
3105 /* XXX TO DO XXX 0 value means "the token is not present".
3106 * A server which sends an Initial packet must not set the token.
3107 * So, a client which receives an Initial packet with a token
3108 * MUST discard the packet or generate a connection error with
3109 * PROTOCOL_VIOLATION as type.
3110 * The token must be provided in a Retry packet or NEW_TOKEN frame.
3111 */
3112 pkt->token_len = token_len;
3113 }
3114 }
3115 else {
3116 /* XXX TO DO: Short header XXX */
3117 if (end - *buf < QUIC_CID_LEN)
3118 goto err;
3119
3120 cids = &((struct server *)__objt_server(srv_conn->target))->cids;
3121 node = ebmb_lookup(cids, *buf, QUIC_CID_LEN);
3122 if (!node)
3123 goto err;
3124
3125 qc = ebmb_entry(node, struct quic_conn, scid_node);
3126 *buf += QUIC_CID_LEN;
3127 }
3128 /* Store the DCID used for this packet to check the packet which
3129 * come in this UDP datagram match with it.
3130 */
3131 if (!dgram_ctx->dcid_node)
3132 dgram_ctx->dcid_node = node;
3133 /* Only packets packets with long headers and not RETRY or VERSION as type
3134 * have a length field.
3135 */
3136 if (long_header && pkt->type != QUIC_PACKET_TYPE_RETRY && pkt->version) {
3137 if (!quic_dec_int(&len, (const unsigned char **)buf, end) || end - *buf < len)
3138 goto err;
3139
3140 pkt->len = len;
3141 }
3142 else if (!long_header) {
3143 /* A short packet is the last one of an UDP datagram. */
3144 pkt->len = end - *buf;
3145 }
3146
3147 conn_ctx = qc->conn->xprt_ctx;
3148
3149 /* Increase the total length of this packet by the header length. */
3150 pkt->len += *buf - beg;
3151 /* Do not check the DCID node before the length. */
3152 if (dgram_ctx->dcid_node != node) {
3153 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_SPKT, qc->conn);
3154 goto err;
3155 }
3156
3157 if (pkt->len > sizeof pkt->data) {
3158 TRACE_PROTO("Too big packet", QUIC_EV_CONN_SPKT, qc->conn, pkt, &pkt->len);
3159 goto err;
3160 }
3161
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003162 if (!qc_try_rm_hp(pkt, buf, beg, end, qc, conn_ctx))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003163 goto err;
3164
3165 /* Wake the tasklet of the QUIC connection packet handler. */
3166 if (conn_ctx)
3167 tasklet_wakeup(conn_ctx->wait_event.tasklet);
3168
3169 TRACE_LEAVE(QUIC_EV_CONN_SPKT, qc->conn);
3170
3171 return pkt->len;
3172
3173 err:
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +01003174 TRACE_DEVEL("Leaing in error", QUIC_EV_CONN_SPKT, qc ? qc->conn : NULL);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003175 return -1;
3176}
3177
3178static ssize_t qc_lstnr_pkt_rcv(unsigned char **buf, const unsigned char *end,
3179 struct quic_rx_packet *pkt,
3180 struct quic_dgram_ctx *dgram_ctx,
3181 struct sockaddr_storage *saddr)
3182{
3183 unsigned char *beg;
3184 uint64_t len;
3185 struct quic_conn *qc;
3186 struct eb_root *cids;
3187 struct ebmb_node *node;
3188 struct listener *l;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02003189 struct ssl_sock_ctx *conn_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003190 int long_header = 0;
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02003191 /* boolean to denote if a connection exists for this packet.
3192 * This does not mean there is an xprt context for it.
3193 */
3194 int found_conn = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003195
3196 qc = NULL;
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02003197 conn_ctx = NULL;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003198 TRACE_ENTER(QUIC_EV_CONN_LPKT);
3199 if (end <= *buf)
3200 goto err;
3201
3202 /* Fixed bit */
3203 if (!(**buf & QUIC_PACKET_FIXED_BIT)) {
3204 /* XXX TO BE DISCARDED */
3205 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
3206 goto err;
3207 }
3208
3209 l = dgram_ctx->owner;
3210 beg = *buf;
3211 /* Header form */
3212 qc_parse_hd_form(pkt, *(*buf)++, &long_header);
3213 if (long_header) {
3214 unsigned char dcid_len;
3215
3216 if (!quic_packet_read_long_header(buf, end, pkt)) {
3217 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
3218 goto err;
3219 }
3220
3221 dcid_len = pkt->dcid.len;
3222 /* For Initial packets, and for servers (QUIC clients connections),
3223 * there is no Initial connection IDs storage.
3224 */
3225 if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {
3226 /* DCIDs of first packets coming from clients may have the same values.
3227 * Let's distinguish them concatenating the socket addresses to the DCIDs.
3228 */
3229 quic_cid_saddr_cat(&pkt->dcid, saddr);
3230 cids = &l->rx.odcids;
3231 }
3232 else {
3233 if (pkt->dcid.len != QUIC_CID_LEN) {
3234 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
3235 goto err;
3236 }
3237
3238 cids = &l->rx.cids;
3239 }
3240
3241 node = ebmb_lookup(cids, pkt->dcid.data, pkt->dcid.len);
3242 if (!node && pkt->type == QUIC_PACKET_TYPE_INITIAL && dcid_len == QUIC_CID_LEN &&
3243 cids == &l->rx.odcids) {
3244 /* Switch to the definitive tree ->cids containing the final CIDs. */
3245 node = ebmb_lookup(&l->rx.cids, pkt->dcid.data, dcid_len);
3246 if (node) {
3247 /* If found, signal this with NULL as special value for <cids>. */
3248 pkt->dcid.len = dcid_len;
3249 cids = NULL;
3250 }
3251 }
3252
3253 if (!node) {
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02003254 int ipv4;
3255 struct quic_cid *odcid;
3256
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003257 if (pkt->type != QUIC_PACKET_TYPE_INITIAL) {
3258 TRACE_PROTO("Non Initiial packet", QUIC_EV_CONN_LPKT);
3259 goto err;
3260 }
3261
3262 qc = new_quic_conn(pkt->version);
3263 if (!qc) {
3264 TRACE_PROTO("Non allocated new connection", QUIC_EV_CONN_LPKT);
3265 goto err;
3266 }
3267
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003268 pkt->saddr = *saddr;
3269 /* Note that here, odcid_len equals to pkt->dcid.len minus the length
3270 * of <saddr>.
3271 */
3272 pkt->odcid_len = dcid_len;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02003273 ipv4 = saddr->ss_family == AF_INET;
3274 if (!qc_new_conn_init(qc, ipv4, &l->rx.odcids, &l->rx.cids,
3275 pkt->dcid.data, pkt->dcid.len,
3276 pkt->scid.data, pkt->scid.len, 1))
3277 goto err;
3278
3279 odcid = &qc->rx.params.original_destination_connection_id;
3280 /* Copy the transport parameters. */
3281 qc->rx.params = l->bind_conf->quic_params;
3282 /* Copy original_destination_connection_id transport parameter. */
3283 memcpy(odcid->data, &pkt->dcid, pkt->odcid_len);
3284 odcid->len = pkt->odcid_len;
3285 /* Copy the initial source connection ID. */
3286 quic_cid_cpy(&qc->rx.params.initial_source_connection_id, &qc->scid);
3287 qc->enc_params_len =
3288 quic_transport_params_encode(qc->enc_params,
3289 qc->enc_params + sizeof qc->enc_params,
3290 &qc->rx.params, 1);
3291 if (!qc->enc_params_len)
3292 goto err;
3293
Frédéric Lécaille497fa782021-05-31 15:16:13 +02003294 /* NOTE: the socket address has been concatenated to the destination ID
3295 * chosen by the client for Initial packets.
3296 */
3297 if (!qc_new_isecs(qc, pkt->dcid.data, pkt->odcid_len, 1)) {
3298 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc->conn);
3299 goto err;
3300 }
3301
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02003302 pkt->qc = qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003303 /* This is the DCID node sent in this packet by the client. */
3304 node = &qc->odcid_node;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003305 }
3306 else {
3307 if (pkt->type == QUIC_PACKET_TYPE_INITIAL && cids == &l->rx.odcids)
3308 qc = ebmb_entry(node, struct quic_conn, odcid_node);
3309 else
3310 qc = ebmb_entry(node, struct quic_conn, scid_node);
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02003311 conn_ctx = qc->conn->xprt_ctx;
3312 found_conn = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003313 }
3314
3315 if (pkt->type == QUIC_PACKET_TYPE_INITIAL) {
3316 uint64_t token_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003317
3318 if (!quic_dec_int(&token_len, (const unsigned char **)buf, end) ||
3319 end - *buf < token_len) {
3320 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc->conn);
3321 goto err;
3322 }
3323
3324 /* XXX TO DO XXX 0 value means "the token is not present".
3325 * A server which sends an Initial packet must not set the token.
3326 * So, a client which receives an Initial packet with a token
3327 * MUST discard the packet or generate a connection error with
3328 * PROTOCOL_VIOLATION as type.
3329 * The token must be provided in a Retry packet or NEW_TOKEN frame.
3330 */
3331 pkt->token_len = token_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003332 }
3333 }
3334 else {
3335 if (end - *buf < QUIC_CID_LEN) {
3336 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
3337 goto err;
3338 }
3339
3340 cids = &l->rx.cids;
3341 node = ebmb_lookup(cids, *buf, QUIC_CID_LEN);
3342 if (!node) {
3343 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT);
3344 goto err;
3345 }
3346
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02003347 found_conn = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003348 qc = ebmb_entry(node, struct quic_conn, scid_node);
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02003349 conn_ctx = qc->conn->xprt_ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003350 *buf += QUIC_CID_LEN;
3351 }
3352
3353 /* Store the DCID used for this packet to check the packet which
3354 * come in this UDP datagram match with it.
3355 */
3356 if (!dgram_ctx->dcid_node) {
3357 dgram_ctx->dcid_node = node;
3358 dgram_ctx->qc = qc;
3359 }
3360
3361 /* Only packets packets with long headers and not RETRY or VERSION as type
3362 * have a length field.
3363 */
3364 if (long_header && pkt->type != QUIC_PACKET_TYPE_RETRY && pkt->version) {
3365 if (!quic_dec_int(&len, (const unsigned char **)buf, end) ||
3366 end - *buf < len) {
3367 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc->conn);
3368 goto err;
3369 }
3370
3371 pkt->len = len;
3372 }
3373 else if (!long_header) {
3374 /* A short packet is the last one of an UDP datagram. */
3375 pkt->len = end - *buf;
3376 }
3377
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003378 /* Increase the total length of this packet by the header length. */
3379 pkt->len += *buf - beg;
3380 /* Do not check the DCID node before the length. */
3381 if (dgram_ctx->dcid_node != node) {
3382 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc->conn);
3383 goto err;
3384 }
3385
3386 if (pkt->len > sizeof pkt->data) {
3387 TRACE_PROTO("Too big packet", QUIC_EV_CONN_LPKT, qc->conn, pkt, &pkt->len);
3388 goto err;
3389 }
3390
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003391 if (!qc_try_rm_hp(pkt, buf, beg, end, qc, conn_ctx)) {
3392 TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc->conn);
3393 goto err;
3394 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003395
Frédéric Lécaille1a5e88c2021-05-31 18:04:07 +02003396 if (conn_ctx) {
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02003397 /* Wake the tasklet of the QUIC connection packet handler. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003398 tasklet_wakeup(conn_ctx->wait_event.tasklet);
Frédéric Lécailled24c2ec2021-05-31 10:24:49 +02003399 }
3400 else if (!found_conn) {
3401 /* Enqueue this packet. */
3402 LIST_APPEND(&l->rx.qpkts, &pkt->rx_list);
3403 /* Try to accept a new connection. */
3404 listener_accept(l);
3405 }
3406
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003407 TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc->conn, pkt);
3408
3409 return pkt->len;
3410
3411 err:
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +01003412 TRACE_DEVEL("Leaving in error", QUIC_EV_CONN_LPKT,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003413 qc ? qc->conn : NULL, pkt);
3414 return -1;
3415}
3416
3417/* This function builds into <buf> buffer a QUIC long packet header whose size may be computed
3418 * in advance. This is the reponsability of the caller to check there is enough room in this
3419 * buffer to build a long header.
3420 * Returns 0 if <type> QUIC packet type is not supported by long header, or 1 if succeeded.
3421 */
3422static int quic_build_packet_long_header(unsigned char **buf, const unsigned char *end,
3423 int type, size_t pn_len, struct quic_conn *conn)
3424{
3425 if (type > QUIC_PACKET_TYPE_RETRY)
3426 return 0;
3427
3428 /* #0 byte flags */
3429 *(*buf)++ = QUIC_PACKET_FIXED_BIT | QUIC_PACKET_LONG_HEADER_BIT |
3430 (type << QUIC_PACKET_TYPE_SHIFT) | (pn_len - 1);
3431 /* Version */
3432 quic_write_uint32(buf, end, conn->version);
3433 *(*buf)++ = conn->dcid.len;
3434 /* Destination connection ID */
3435 if (conn->dcid.len) {
3436 memcpy(*buf, conn->dcid.data, conn->dcid.len);
3437 *buf += conn->dcid.len;
3438 }
3439 /* Source connection ID */
3440 *(*buf)++ = conn->scid.len;
3441 if (conn->scid.len) {
3442 memcpy(*buf, conn->scid.data, conn->scid.len);
3443 *buf += conn->scid.len;
3444 }
3445
3446 return 1;
3447}
3448
3449/* This function builds into <buf> buffer a QUIC long packet header whose size may be computed
3450 * in advance. This is the reponsability of the caller to check there is enough room in this
3451 * buffer to build a long header.
3452 * Returns 0 if <type> QUIC packet type is not supported by long header, or 1 if succeeded.
3453 */
3454static int quic_build_packet_short_header(unsigned char **buf, const unsigned char *end,
3455 size_t pn_len, struct quic_conn *conn)
3456{
3457 /* #0 byte flags */
3458 *(*buf)++ = QUIC_PACKET_FIXED_BIT | (pn_len - 1);
3459 /* Destination connection ID */
3460 if (conn->dcid.len) {
3461 memcpy(*buf, conn->dcid.data, conn->dcid.len);
3462 *buf += conn->dcid.len;
3463 }
3464
3465 return 1;
3466}
3467
3468/* Apply QUIC header protection to the packet with <buf> as first byte address,
3469 * <pn> as address of the Packet number field, <pnlen> being this field length
3470 * with <aead> as AEAD cipher and <key> as secret key.
3471 * Returns 1 if succeeded or 0 if failed.
3472 */
3473static int quic_apply_header_protection(unsigned char *buf, unsigned char *pn, size_t pnlen,
3474 const EVP_CIPHER *aead, const unsigned char *key)
3475{
3476 int i, ret, outlen;
3477 EVP_CIPHER_CTX *ctx;
3478 /* We need an IV of at least 5 bytes: one byte for bytes #0
3479 * and at most 4 bytes for the packet number
3480 */
3481 unsigned char mask[5] = {0};
3482
3483 ret = 0;
3484 ctx = EVP_CIPHER_CTX_new();
3485 if (!ctx)
3486 return 0;
3487
3488 if (!EVP_EncryptInit_ex(ctx, aead, NULL, key, pn + QUIC_PACKET_PN_MAXLEN) ||
3489 !EVP_EncryptUpdate(ctx, mask, &outlen, mask, sizeof mask) ||
3490 !EVP_EncryptFinal_ex(ctx, mask, &outlen))
3491 goto out;
3492
3493 *buf ^= mask[0] & (*buf & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f);
3494 for (i = 0; i < pnlen; i++)
3495 pn[i] ^= mask[i + 1];
3496
3497 ret = 1;
3498
3499 out:
3500 EVP_CIPHER_CTX_free(ctx);
3501
3502 return ret;
3503}
3504
3505/* Reduce the encoded size of <ack_frm> ACK frame removing the last
3506 * ACK ranges if needed to a value below <limit> in bytes.
3507 * Return 1 if succeeded, 0 if not.
3508 */
3509static int quic_ack_frm_reduce_sz(struct quic_frame *ack_frm, size_t limit)
3510{
3511 size_t room, ack_delay_sz;
3512
3513 ack_delay_sz = quic_int_getsize(ack_frm->tx_ack.ack_delay);
3514 /* A frame is made of 1 byte for the frame type. */
3515 room = limit - ack_delay_sz - 1;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003516 if (!quic_rm_last_ack_ranges(ack_frm->tx_ack.arngs, room))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003517 return 0;
3518
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003519 return 1 + ack_delay_sz + ack_frm->tx_ack.arngs->enc_sz;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003520}
3521
3522/* Prepare as most as possible CRYPTO frames from prebuilt CRYPTO frames for <qel>
3523 * encryption level to be encoded in a buffer with <room> as available room,
Frédéric Lécailleea604992020-12-24 13:01:37 +01003524 * and <*len> the packet Length field initialized with the number of bytes already present
3525 * in this buffer which must be taken into an account for the Length packet field value.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003526 * <headlen> is the number of bytes already present in this packet before building
Frédéric Lécailleea604992020-12-24 13:01:37 +01003527 * CRYPTO frames.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003528 * This is the responsibility of the caller to check that <*len> < <room> as this is
3529 * the responsibility to check that <headlen> < quic_path_prep_data(conn->path).
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003530 * Update consequently <*len> to reflect the size of these CRYPTO frames built
3531 * by this function. Also attach these CRYPTO frames to <pkt> QUIC packet.
3532 * Return 1 if succeeded, 0 if not.
3533 */
3534static inline int qc_build_cfrms(struct quic_tx_packet *pkt,
Frédéric Lécailleea604992020-12-24 13:01:37 +01003535 size_t room, size_t *len, size_t headlen,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003536 struct quic_enc_level *qel,
3537 struct quic_conn *conn)
3538{
Frédéric Lécailleea604992020-12-24 13:01:37 +01003539 int ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003540 struct quic_tx_frm *cf, *cfbak;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003541
Frédéric Lécailleea604992020-12-24 13:01:37 +01003542 ret = 0;
3543 /* If we are not probing we must take into an account the congestion
3544 * control window.
3545 */
3546 if (!conn->tx.nb_pto_dgrams)
3547 room = QUIC_MIN(room, quic_path_prep_data(conn->path) - headlen);
3548 TRACE_PROTO("************** CRYPTO frames build (headlen)",
3549 QUIC_EV_CONN_BCFRMS, conn->conn, &headlen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003550 list_for_each_entry_safe(cf, cfbak, &qel->pktns->tx.frms, list) {
3551 /* header length, data length, frame length. */
3552 size_t hlen, dlen, cflen;
3553
Frédéric Lécailleea604992020-12-24 13:01:37 +01003554 TRACE_PROTO(" New CRYPTO frame build (room, len)",
3555 QUIC_EV_CONN_BCFRMS, conn->conn, &room, len);
3556 if (!room)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003557 break;
3558
3559 /* Compute the length of this CRYPTO frame header */
3560 hlen = 1 + quic_int_getsize(cf->crypto.offset);
3561 /* Compute the data length of this CRyPTO frame. */
3562 dlen = max_stream_data_size(room, *len + hlen, cf->crypto.len);
Frédéric Lécailleea604992020-12-24 13:01:37 +01003563 TRACE_PROTO(" CRYPTO data length (hlen, crypto.len, dlen)",
3564 QUIC_EV_CONN_BCFRMS, conn->conn, &hlen, &cf->crypto.len, &dlen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003565 if (!dlen)
3566 break;
3567
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003568 pkt->cdata_len += dlen;
3569 /* CRYPTO frame length. */
3570 cflen = hlen + quic_int_getsize(dlen) + dlen;
Frédéric Lécailleea604992020-12-24 13:01:37 +01003571 TRACE_PROTO(" CRYPTO frame length (cflen)",
3572 QUIC_EV_CONN_BCFRMS, conn->conn, &cflen);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003573 /* Add the CRYPTO data length and its encoded length to the packet
3574 * length and the length of this length.
3575 */
3576 *len += cflen;
Frédéric Lécailleea604992020-12-24 13:01:37 +01003577 room -= cflen;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003578 if (dlen == cf->crypto.len) {
3579 /* <cf> CRYPTO data have been consumed. */
Willy Tarreau2b718102021-04-21 07:32:39 +02003580 LIST_DELETE(&cf->list);
3581 LIST_APPEND(&pkt->frms, &cf->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003582 }
3583 else {
3584 struct quic_tx_frm *new_cf;
3585
3586 new_cf = pool_alloc(pool_head_quic_tx_frm);
3587 if (!new_cf) {
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +01003588 TRACE_PROTO("No memory for new crypto frame", QUIC_EV_CONN_BCFRMS, conn->conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003589 return 0;
3590 }
3591
3592 new_cf->type = QUIC_FT_CRYPTO;
3593 new_cf->crypto.len = dlen;
3594 new_cf->crypto.offset = cf->crypto.offset;
Willy Tarreau2b718102021-04-21 07:32:39 +02003595 LIST_APPEND(&pkt->frms, &new_cf->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003596 /* Consume <dlen> bytes of the current frame. */
3597 cf->crypto.len -= dlen;
3598 cf->crypto.offset += dlen;
3599 }
Frédéric Lécailleea604992020-12-24 13:01:37 +01003600 ret = 1;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003601 }
3602
Frédéric Lécailleea604992020-12-24 13:01:37 +01003603 return ret;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003604}
3605
3606/* This function builds a clear handshake packet used during a QUIC TLS handshakes
3607 * into <wbuf> the current <wbuf> for <conn> QUIC connection with <qel> as QUIC
3608 * TLS encryption level for outgoing packets filling it with as much as CRYPTO
3609 * data as possible from <offset> offset in the CRYPTO data stream. Note that
3610 * this offset value is updated by the length of the CRYPTO frame used to embed
3611 * the CRYPTO data if this packet and only if the packet is successfully built.
3612 * The trailing QUIC_TLS_TAG_LEN bytes of this packet are not built. But they are
3613 * reserved so that to be sure there is enough room to build this AEAD TAG after
3614 * having successfully returned from this function and to be sure the position
3615 * pointer of <wbuf> may be safely incremented by QUIC_TLS_TAG_LEN. After having
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003616 * returned from this function, <wbuf> position will point one past the last
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003617 * byte of the payload with the confidence there is at least QUIC_TLS_TAG_LEN bytes
3618 * available packet to encrypt this packet.
3619 * This function also update the value of <buf_pn> pointer to point to the packet
3620 * number field in this packet. <pn_len> will also have the packet number
3621 * length as value.
3622 *
3623 * Return the length of the packet if succeeded minus QUIC_TLS_TAG_LEN, or -1 if
3624 * failed (not enough room in <wbuf> to build this packet plus QUIC_TLS_TAG_LEN
3625 * bytes), -2 if there are too much CRYPTO data in flight to build a packet.
3626 */
3627static ssize_t qc_do_build_hdshk_pkt(struct q_buf *wbuf,
3628 struct quic_tx_packet *pkt, int pkt_type,
3629 int64_t pn, size_t *pn_len,
3630 unsigned char **buf_pn,
3631 struct quic_enc_level *qel,
3632 struct quic_conn *conn)
3633{
3634 unsigned char *beg, *pos;
3635 const unsigned char *end;
Frédéric Lécailleea604992020-12-24 13:01:37 +01003636 size_t len, len_frms, token_fields_len, padding_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003637 struct quic_frame frm = { .type = QUIC_FT_CRYPTO, };
3638 struct quic_frame ack_frm = { .type = QUIC_FT_ACK, };
3639 struct quic_crypto *crypto = &frm.crypto;
3640 size_t ack_frm_len;
3641 int64_t largest_acked_pn;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003642 int add_ping_frm;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003643
Frédéric Lécailleea604992020-12-24 13:01:37 +01003644 /* Length field value with CRYPTO frames if present. */
3645 len_frms = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003646 beg = pos = q_buf_getpos(wbuf);
3647 end = q_buf_end(wbuf);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003648 /* When not probing and not acking, reduce the size of this buffer to respect
3649 * the congestion controller window.
3650 */
3651 if (!conn->tx.nb_pto_dgrams && !(qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED)) {
3652 size_t path_room;
3653
3654 path_room = quic_path_prep_data(conn->path);
3655 if (end - beg > path_room)
3656 end = beg + path_room;
3657 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003658
3659 /* For a server, the token field of an Initial packet is empty. */
3660 token_fields_len = pkt_type == QUIC_PACKET_TYPE_INITIAL ? 1 : 0;
3661
3662 /* Check there is enough room to build the header followed by a token. */
3663 if (end - pos < QUIC_LONG_PACKET_MINLEN + conn->dcid.len +
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003664 conn->scid.len + token_fields_len + QUIC_TLS_TAG_LEN) {
3665 ssize_t room = end - pos;
3666 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
3667 conn->conn, NULL, NULL, &room);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003668 goto err;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003669 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003670
3671 /* Reserve enough room at the end of the packet for the AEAD TAG. */
3672 end -= QUIC_TLS_TAG_LEN;
3673 largest_acked_pn = qel->pktns->tx.largest_acked_pn;
3674 /* packet number length */
3675 *pn_len = quic_packet_number_length(pn, largest_acked_pn);
3676
3677 quic_build_packet_long_header(&pos, end, pkt_type, *pn_len, conn);
3678
3679 /* Encode the token length (0) for an Initial packet. */
3680 if (pkt_type == QUIC_PACKET_TYPE_INITIAL)
3681 *pos++ = 0;
3682
3683 /* Build an ACK frame if required. */
3684 ack_frm_len = 0;
3685 if ((qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) &&
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003686 !eb_is_empty(&qel->pktns->rx.arngs.root)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003687 ack_frm.tx_ack.ack_delay = 0;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003688 ack_frm.tx_ack.arngs = &qel->pktns->rx.arngs;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003689 ack_frm_len = quic_ack_frm_reduce_sz(&ack_frm, end - pos);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003690 if (!ack_frm_len) {
3691 ssize_t room = end - pos;
3692 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
3693 conn->conn, NULL, NULL, &room);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003694 goto err;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003695 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003696
3697 qel->pktns->flags &= ~QUIC_FL_PKTNS_ACK_REQUIRED;
3698 }
3699
3700 /* Length field value without the CRYPTO frames data length. */
3701 len = ack_frm_len + *pn_len;
Frédéric Lécailleea604992020-12-24 13:01:37 +01003702 if (!LIST_ISEMPTY(&qel->pktns->tx.frms)) {
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003703 ssize_t room = end - pos;
Frédéric Lécailleea604992020-12-24 13:01:37 +01003704
3705 len_frms = len + QUIC_TLS_TAG_LEN;
3706 if (!qc_build_cfrms(pkt, end - pos, &len_frms, pos - beg, qel, conn)) {
3707 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
3708 conn->conn, NULL, NULL, &room);
3709 goto err;
3710 }
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003711 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003712
3713 add_ping_frm = 0;
3714 padding_len = 0;
3715 if (objt_server(conn->conn->target) &&
3716 pkt_type == QUIC_PACKET_TYPE_INITIAL &&
3717 len < QUIC_INITIAL_PACKET_MINLEN) {
3718 len += padding_len = QUIC_INITIAL_PACKET_MINLEN - len;
3719 }
3720 else if (LIST_ISEMPTY(&pkt->frms)) {
3721 if (qel->pktns->tx.pto_probe) {
3722 /* If we cannot send a CRYPTO frame, we send a PING frame. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003723 add_ping_frm = 1;
3724 len += 1;
3725 }
3726 /* If there is no frame at all to follow, add at least a PADDING frame. */
3727 if (!ack_frm_len)
3728 len += padding_len = QUIC_PACKET_PN_MAXLEN - *pn_len;
3729 }
3730
3731 /* Length (of the remaining data). Must not fail because, the buffer size
3732 * has been checked above. Note that we have reserved QUIC_TLS_TAG_LEN bytes
3733 * for the encryption TAG. It must be taken into an account for the length
3734 * of this packet.
3735 */
Frédéric Lécailleea604992020-12-24 13:01:37 +01003736 if (len_frms)
3737 len = len_frms;
3738 else
3739 len += QUIC_TLS_TAG_LEN;
3740 quic_enc_int(&pos, end, len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003741
3742 /* Packet number field address. */
3743 *buf_pn = pos;
3744
3745 /* Packet number encoding. */
3746 quic_packet_number_encode(&pos, end, pn, *pn_len);
3747
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01003748 if (ack_frm_len && !qc_build_frm(&pos, end, &ack_frm, pkt, conn)) {
3749 ssize_t room = end - pos;
3750 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
3751 conn->conn, NULL, NULL, &room);
3752 goto err;
3753 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003754
3755 /* Crypto frame */
3756 if (!LIST_ISEMPTY(&pkt->frms)) {
3757 struct quic_tx_frm *cf;
3758
3759 list_for_each_entry(cf, &pkt->frms, list) {
3760 crypto->offset = cf->crypto.offset;
3761 crypto->len = cf->crypto.len;
3762 crypto->qel = qel;
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01003763 if (!qc_build_frm(&pos, end, &frm, pkt, conn)) {
3764 ssize_t room = end - pos;
3765 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
3766 conn->conn, NULL, NULL, &room);
3767 goto err;
3768 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003769 }
3770 }
3771
3772 /* Build a PING frame if needed. */
3773 if (add_ping_frm) {
3774 frm.type = QUIC_FT_PING;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003775 if (!qc_build_frm(&pos, end, &frm, pkt, conn)) {
3776 ssize_t room = end - pos;
3777 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
3778 conn->conn, NULL, NULL, &room);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003779 goto err;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003780 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003781 }
3782
3783 /* Build a PADDING frame if needed. */
3784 if (padding_len) {
3785 frm.type = QUIC_FT_PADDING;
3786 frm.padding.len = padding_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003787 if (!qc_build_frm(&pos, end, &frm, pkt, conn)) {
3788 ssize_t room = end - pos;
3789 TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT,
3790 conn->conn, NULL, NULL, &room);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003791 goto err;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003792 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003793 }
3794
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003795 /* Always reset this variable as this function has no idea
3796 * if it was set. It is handle by the loss detection timer.
3797 */
3798 qel->pktns->tx.pto_probe = 0;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003799
3800 out:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003801 return pos - beg;
3802
3803 err:
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003804 return -1;
3805}
3806
3807static inline void quic_tx_packet_init(struct quic_tx_packet *pkt)
3808{
3809 pkt->cdata_len = 0;
3810 pkt->in_flight_len = 0;
3811 LIST_INIT(&pkt->frms);
3812}
3813
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003814/* Free <pkt> TX packet which has not already attached to any tree. */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003815static inline void free_quic_tx_packet(struct quic_tx_packet *pkt)
3816{
3817 struct quic_tx_frm *frm, *frmbak;
3818
3819 list_for_each_entry_safe(frm, frmbak, &pkt->frms, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02003820 LIST_DELETE(&frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003821 pool_free(pool_head_quic_tx_frm, frm);
3822 }
3823 pool_free(pool_head_quic_tx_packet, pkt);
3824}
3825
3826/* Build a handshake packet into <buf> packet buffer with <pkt_type> as packet
3827 * type for <qc> QUIC connection from CRYPTO data stream at <*offset> offset to
3828 * be encrypted at <qel> encryption level.
3829 * Return -2 if the packet could not be encrypted for any reason, -1 if there was
3830 * not enough room in <buf> to build the packet, or the size of the built packet
3831 * if succeeded (may be zero if there is too much crypto data in flight to build the packet).
3832 */
3833static ssize_t qc_build_hdshk_pkt(struct q_buf *buf, struct quic_conn *qc, int pkt_type,
3834 struct quic_enc_level *qel)
3835{
3836 /* The pointer to the packet number field. */
3837 unsigned char *buf_pn;
3838 unsigned char *beg, *end, *payload;
3839 int64_t pn;
3840 size_t pn_len, payload_len, aad_len;
3841 ssize_t pkt_len;
3842 struct quic_tls_ctx *tls_ctx;
3843 struct quic_tx_packet *pkt;
3844
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01003845 TRACE_ENTER(QUIC_EV_CONN_HPKT, qc->conn, NULL, qel);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003846 pkt = pool_alloc(pool_head_quic_tx_packet);
3847 if (!pkt) {
3848 TRACE_DEVEL("Not enough memory for a new packet", QUIC_EV_CONN_HPKT, qc->conn);
3849 return -2;
3850 }
3851
3852 quic_tx_packet_init(pkt);
3853 beg = q_buf_getpos(buf);
3854 pn_len = 0;
3855 buf_pn = NULL;
3856 pn = qel->pktns->tx.next_pn + 1;
3857 pkt_len = qc_do_build_hdshk_pkt(buf, pkt, pkt_type, pn, &pn_len, &buf_pn, qel, qc);
3858 if (pkt_len <= 0) {
3859 free_quic_tx_packet(pkt);
3860 return pkt_len;
3861 }
3862
3863 end = beg + pkt_len;
3864 payload = buf_pn + pn_len;
3865 payload_len = end - payload;
3866 aad_len = payload - beg;
3867
3868 tls_ctx = &qel->tls_ctx;
3869 if (!quic_packet_encrypt(payload, payload_len, beg, aad_len, pn, tls_ctx, qc->conn))
3870 goto err;
3871
3872 end += QUIC_TLS_TAG_LEN;
3873 pkt_len += QUIC_TLS_TAG_LEN;
3874 if (!quic_apply_header_protection(beg, buf_pn, pn_len,
3875 tls_ctx->tx.hp, tls_ctx->tx.hp_key)) {
3876 TRACE_DEVEL("Could not apply the header protection", QUIC_EV_CONN_HPKT, qc->conn);
3877 goto err;
3878 }
3879
3880 /* Now that a correct packet is built, let us set the position pointer of
3881 * <buf> buffer for the next packet.
3882 */
3883 q_buf_setpos(buf, end);
3884 /* Consume a packet number. */
3885 ++qel->pktns->tx.next_pn;
3886 /* Attach the built packet to its tree. */
3887 pkt->pn_node.key = qel->pktns->tx.next_pn;
3888 /* Set the packet in fligth length for in flight packet only. */
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003889 if (pkt->flags & QUIC_FL_TX_PACKET_IN_FLIGHT) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003890 pkt->in_flight_len = pkt_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003891 qc->path->prep_in_flight += pkt_len;
3892 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003893 pkt->pktns = qel->pktns;
3894 eb64_insert(&qel->pktns->tx.pkts, &pkt->pn_node);
3895 /* Increment the number of bytes in <buf> buffer by the length of this packet. */
3896 buf->data += pkt_len;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003897 /* Attach this packet to <buf>. */
Willy Tarreau2b718102021-04-21 07:32:39 +02003898 LIST_APPEND(&buf->pkts, &pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003899 TRACE_LEAVE(QUIC_EV_CONN_HPKT, qc->conn, pkt);
3900
3901 return pkt_len;
3902
3903 err:
3904 free_quic_tx_packet(pkt);
3905 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_HPKT, qc->conn);
3906 return -2;
3907}
3908
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05003909/* Prepare a clear post handhskake packet for <conn> QUIC connection.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003910 * Return the length of this packet if succeeded, -1 <wbuf> was full.
3911 */
3912static ssize_t qc_do_build_phdshk_apkt(struct q_buf *wbuf,
3913 struct quic_tx_packet *pkt,
3914 int64_t pn, size_t *pn_len,
3915 unsigned char **buf_pn, struct quic_enc_level *qel,
3916 struct quic_conn *conn)
3917{
3918 const unsigned char *beg, *end;
3919 unsigned char *pos;
3920 struct quic_frame *frm, *sfrm;
3921 struct quic_frame ack_frm = { .type = QUIC_FT_ACK, };
3922 size_t fake_len, ack_frm_len;
3923 int64_t largest_acked_pn;
3924
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01003925 TRACE_ENTER(QUIC_EV_CONN_PAPKT, conn->conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003926 beg = pos = q_buf_getpos(wbuf);
3927 end = q_buf_end(wbuf);
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01003928 /* When not probing and not acking, reduce the size of this buffer to respect
3929 * the congestion controller window.
3930 */
3931 if (!conn->tx.nb_pto_dgrams && !(qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED)) {
3932 size_t path_room;
3933
3934 path_room = quic_path_prep_data(conn->path);
3935 if (end - beg > path_room)
3936 end = beg + path_room;
3937 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003938 largest_acked_pn = qel->pktns->tx.largest_acked_pn;
3939 /* Packet number length */
3940 *pn_len = quic_packet_number_length(pn, largest_acked_pn);
3941 /* Check there is enough room to build this packet (without payload). */
3942 if (end - pos < QUIC_SHORT_PACKET_MINLEN + sizeof_quic_cid(&conn->dcid) +
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01003943 *pn_len + QUIC_TLS_TAG_LEN) {
3944 ssize_t room = end - pos;
3945 TRACE_PROTO("Not enough room", QUIC_EV_CONN_PAPKT,
3946 conn->conn, NULL, NULL, &room);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003947 goto err;
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01003948 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003949
3950 /* Reserve enough room at the end of the packet for the AEAD TAG. */
3951 end -= QUIC_TLS_TAG_LEN;
3952 quic_build_packet_short_header(&pos, end, *pn_len, conn);
3953 /* Packet number field. */
3954 *buf_pn = pos;
3955 /* Packet number encoding. */
3956 quic_packet_number_encode(&pos, end, pn, *pn_len);
3957
3958 /* Build an ACK frame if required. */
3959 ack_frm_len = 0;
3960 if ((qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) &&
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003961 !eb_is_empty(&qel->pktns->rx.arngs.root)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003962 ack_frm.tx_ack.ack_delay = 0;
Frédéric Lécaille8090b512020-11-30 16:19:22 +01003963 ack_frm.tx_ack.arngs = &qel->pktns->rx.arngs;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003964 ack_frm_len = quic_ack_frm_reduce_sz(&ack_frm, end - pos);
3965 if (!ack_frm_len)
3966 goto err;
3967
3968 qel->pktns->flags &= ~QUIC_FL_PKTNS_ACK_REQUIRED;
3969 }
3970
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01003971 if (ack_frm_len && !qc_build_frm(&pos, end, &ack_frm, pkt, conn)) {
3972 ssize_t room = end - pos;
3973 TRACE_PROTO("Not enough room", QUIC_EV_CONN_PAPKT,
3974 conn->conn, NULL, NULL, &room);
3975 goto err;
3976 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003977
3978 fake_len = ack_frm_len;
3979 if (!LIST_ISEMPTY(&qel->pktns->tx.frms) &&
Frédéric Lécailleea604992020-12-24 13:01:37 +01003980 !qc_build_cfrms(pkt, end - pos, &fake_len, pos - beg, qel, conn)) {
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01003981 ssize_t room = end - pos;
3982 TRACE_PROTO("some CRYPTO frames could not be built",
3983 QUIC_EV_CONN_PAPKT, conn->conn, NULL, NULL, &room);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01003984 goto err;
3985 }
3986
3987 /* Crypto frame */
3988 if (!LIST_ISEMPTY(&pkt->frms)) {
3989 struct quic_frame frm = { .type = QUIC_FT_CRYPTO, };
3990 struct quic_crypto *crypto = &frm.crypto;
3991 struct quic_tx_frm *cf;
3992
3993 list_for_each_entry(cf, &pkt->frms, list) {
3994 crypto->offset = cf->crypto.offset;
3995 crypto->len = cf->crypto.len;
3996 crypto->qel = qel;
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01003997 if (!qc_build_frm(&pos, end, &frm, pkt, conn)) {
3998 ssize_t room = end - pos;
3999 TRACE_PROTO("Not enough room", QUIC_EV_CONN_PAPKT,
4000 conn->conn, NULL, NULL, &room);
4001 goto err;
4002 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004003 }
4004 }
4005
4006 /* Encode a maximum of frames. */
4007 list_for_each_entry_safe(frm, sfrm, &conn->tx.frms_to_send, list) {
4008 unsigned char *ppos;
4009
4010 ppos = pos;
4011 if (!qc_build_frm(&ppos, end, frm, pkt, conn)) {
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01004012 TRACE_DEVEL("Frames not built", QUIC_EV_CONN_PAPKT, conn->conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004013 break;
4014 }
4015
Willy Tarreau2b718102021-04-21 07:32:39 +02004016 LIST_DELETE(&frm->list);
4017 LIST_APPEND(&pkt->frms, &frm->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004018 pos = ppos;
4019 }
4020
4021 out:
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01004022 TRACE_LEAVE(QUIC_EV_CONN_PAPKT, conn->conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004023 return pos - beg;
4024
4025 err:
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01004026 TRACE_DEVEL("leaving in error (buffer full)", QUIC_EV_CONN_PAPKT, conn->conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004027 return -1;
4028}
4029
4030/* Prepare a post handhskake packet at Application encryption level for <conn>
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05004031 * QUIC connection.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004032 * Return the length of this packet if succeeded, -1 if <wbuf> was full,
4033 * -2 in case of major error (encryption failure).
4034 */
4035static ssize_t qc_build_phdshk_apkt(struct q_buf *wbuf, struct quic_conn *qc)
4036{
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05004037 /* A pointer to the packet number field in <buf> */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004038 unsigned char *buf_pn;
4039 unsigned char *beg, *end, *payload;
4040 int64_t pn;
4041 size_t pn_len, aad_len, payload_len;
4042 ssize_t pkt_len;
4043 struct quic_tls_ctx *tls_ctx;
4044 struct quic_enc_level *qel;
4045 struct quic_tx_packet *pkt;
4046
4047 TRACE_ENTER(QUIC_EV_CONN_PAPKT, qc->conn);
4048 pkt = pool_alloc(pool_head_quic_tx_packet);
4049 if (!pkt) {
4050 TRACE_DEVEL("Not enough memory for a new packet", QUIC_EV_CONN_PAPKT, qc->conn);
4051 return -2;
4052 }
4053
4054 quic_tx_packet_init(pkt);
4055 beg = q_buf_getpos(wbuf);
4056 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
4057 pn_len = 0;
4058 buf_pn = NULL;
4059 pn = qel->pktns->tx.next_pn + 1;
4060 pkt_len = qc_do_build_phdshk_apkt(wbuf, pkt, pn, &pn_len, &buf_pn, qel, qc);
4061 if (pkt_len <= 0) {
4062 free_quic_tx_packet(pkt);
4063 return pkt_len;
4064 }
4065
4066 end = beg + pkt_len;
4067 payload = buf_pn + pn_len;
4068 payload_len = end - payload;
4069 aad_len = payload - beg;
4070
4071 tls_ctx = &qel->tls_ctx;
4072 if (!quic_packet_encrypt(payload, payload_len, beg, aad_len, pn, tls_ctx, qc->conn))
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01004073 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004074
4075 end += QUIC_TLS_TAG_LEN;
4076 pkt_len += QUIC_TLS_TAG_LEN;
4077 if (!quic_apply_header_protection(beg, buf_pn, pn_len,
4078 tls_ctx->tx.hp, tls_ctx->tx.hp_key))
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01004079 goto err;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004080
4081 q_buf_setpos(wbuf, end);
4082 /* Consume a packet number. */
4083 ++qel->pktns->tx.next_pn;
4084 /* Attach the built packet to its tree. */
4085 pkt->pn_node.key = qel->pktns->tx.next_pn;
4086 eb64_insert(&qel->pktns->tx.pkts, &pkt->pn_node);
4087 /* Set the packet in fligth length for in flight packet only. */
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004088 if (pkt->flags & QUIC_FL_TX_PACKET_IN_FLIGHT) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004089 pkt->in_flight_len = pkt_len;
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004090 qc->path->prep_in_flight += pkt_len;
4091 }
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004092 pkt->pktns = qel->pktns;
4093 /* Increment the number of bytes in <buf> buffer by the length of this packet. */
4094 wbuf->data += pkt_len;
4095 /* Attach this packet to <buf>. */
Willy Tarreau2b718102021-04-21 07:32:39 +02004096 LIST_APPEND(&wbuf->pkts, &pkt->list);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004097
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01004098 TRACE_LEAVE(QUIC_EV_CONN_PAPKT, qc->conn, pkt);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004099
4100 return pkt_len;
Frédéric Lécaille133e8a72020-12-18 09:33:27 +01004101
4102 err:
4103 free_quic_tx_packet(pkt);
4104 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PAPKT, qc->conn);
4105 return -2;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004106}
4107
4108/* Prepare a maximum of QUIC Application level packets from <ctx> QUIC
4109 * connection I/O handler context.
4110 * Returns 1 if succeeded, 0 if not.
4111 */
4112int qc_prep_phdshk_pkts(struct quic_conn *qc)
4113{
4114 struct q_buf *wbuf;
4115 struct quic_enc_level *qel;
4116
4117 TRACE_ENTER(QUIC_EV_CONN_PAPKTS, qc->conn);
4118 wbuf = q_wbuf(qc);
4119 qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP];
4120 while (q_buf_empty(wbuf)) {
4121 ssize_t ret;
4122
4123 if (!(qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) &&
4124 (LIST_ISEMPTY(&qel->pktns->tx.frms) ||
Frédéric Lécaille04ffb662020-12-08 15:58:39 +01004125 qc->path->prep_in_flight >= qc->path->cwnd)) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004126 TRACE_DEVEL("nothing more to do",
4127 QUIC_EV_CONN_PAPKTS, qc->conn);
4128 break;
4129 }
4130
4131 ret = qc_build_phdshk_apkt(wbuf, qc);
4132 switch (ret) {
4133 case -1:
4134 /* Not enough room left in <wbuf>. */
4135 wbuf = q_next_wbuf(qc);
4136 continue;
4137 case -2:
4138 return 0;
4139 default:
4140 /* XXX TO CHECK: consume a buffer. */
4141 wbuf = q_next_wbuf(qc);
4142 continue;
4143 }
4144 }
4145 TRACE_LEAVE(QUIC_EV_CONN_PAPKTS, qc->conn);
4146
4147 return 1;
4148}
4149
4150/* QUIC connection packet handler task. */
Willy Tarreau144f84a2021-03-02 16:09:26 +01004151struct task *quic_conn_io_cb(struct task *t, void *context, unsigned int state)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004152{
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02004153 struct ssl_sock_ctx *ctx = context;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004154
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004155 if (ctx->conn->qc->state < QUIC_HS_ST_COMPLETE) {
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004156 qc_do_hdshk(ctx);
4157 }
4158 else {
4159 struct quic_conn *qc = ctx->conn->qc;
4160
4161 /* XXX TO DO: may fail!!! XXX */
4162 qc_treat_rx_pkts(&qc->els[QUIC_TLS_ENC_LEVEL_APP], ctx);
4163 qc_prep_phdshk_pkts(qc);
4164 qc_send_ppkts(ctx);
4165 }
4166
Willy Tarreau74163142021-03-13 11:30:19 +01004167 return t;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004168}
4169
Frédéric Lécaillefbe3b772021-03-03 16:23:44 +01004170/* Copy up to <count> bytes from connection <conn> internal stream storage into buffer <buf>.
4171 * Return the number of bytes which have been copied.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004172 */
Frédéric Lécaillefbe3b772021-03-03 16:23:44 +01004173static size_t quic_conn_to_buf(struct connection *conn, void *xprt_ctx,
4174 struct buffer *buf, size_t count, int flags)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004175{
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004176 size_t try, done = 0;
4177
4178 if (!conn_ctrl_ready(conn))
4179 return 0;
4180
4181 if (!fd_recv_ready(conn->handle.fd))
4182 return 0;
4183
4184 conn->flags &= ~CO_FL_WAIT_ROOM;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004185
4186 /* read the largest possible block. For this, we perform only one call
4187 * to recv() unless the buffer wraps and we exactly fill the first hunk,
Frédéric Lécaillefbe3b772021-03-03 16:23:44 +01004188 * in which case we accept to do it once again.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004189 */
4190 while (count > 0) {
4191 try = b_contig_space(buf);
4192 if (!try)
4193 break;
4194
4195 if (try > count)
4196 try = count;
4197
Frédéric Lécaillefbe3b772021-03-03 16:23:44 +01004198 b_add(buf, try);
4199 done += try;
4200 count -= try;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004201 }
4202
4203 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN) && done)
4204 conn->flags &= ~CO_FL_WAIT_L4_CONN;
4205
4206 leave:
4207 return done;
4208
4209 read0:
4210 conn_sock_read0(conn);
4211 conn->flags &= ~CO_FL_WAIT_L4_CONN;
4212
4213 /* Now a final check for a possible asynchronous low-level error
4214 * report. This can happen when a connection receives a reset
4215 * after a shutdown, both POLL_HUP and POLL_ERR are queued, and
4216 * we might have come from there by just checking POLL_HUP instead
4217 * of recv()'s return value 0, so we have no way to tell there was
4218 * an error without checking.
4219 */
Willy Tarreauf5090652021-04-06 17:23:40 +02004220 if (unlikely(fdtab[conn->handle.fd].state & FD_POLL_ERR))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004221 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
4222 goto leave;
4223}
4224
4225
4226/* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s
4227 * socket. <flags> may contain some CO_SFL_* flags to hint the system about
4228 * other pending data for example, but this flag is ignored at the moment.
4229 * Only one call to send() is performed, unless the buffer wraps, in which case
4230 * a second call may be performed. The connection's flags are updated with
4231 * whatever special event is detected (error, empty). The caller is responsible
4232 * for taking care of those events and avoiding the call if inappropriate. The
4233 * function does not call the connection's polling update function, so the caller
4234 * is responsible for this. It's up to the caller to update the buffer's contents
4235 * based on the return value.
4236 */
4237static size_t quic_conn_from_buf(struct connection *conn, void *xprt_ctx, const struct buffer *buf, size_t count, int flags)
4238{
4239 ssize_t ret;
4240 size_t try, done;
4241 int send_flag;
4242
4243 if (!conn_ctrl_ready(conn))
4244 return 0;
4245
4246 if (!fd_send_ready(conn->handle.fd))
4247 return 0;
4248
4249 done = 0;
4250 /* send the largest possible block. For this we perform only one call
4251 * to send() unless the buffer wraps and we exactly fill the first hunk,
4252 * in which case we accept to do it once again.
4253 */
4254 while (count) {
4255 try = b_contig_data(buf, done);
4256 if (try > count)
4257 try = count;
4258
4259 send_flag = MSG_DONTWAIT | MSG_NOSIGNAL;
4260 if (try < count || flags & CO_SFL_MSG_MORE)
4261 send_flag |= MSG_MORE;
4262
4263 ret = sendto(conn->handle.fd, b_peek(buf, done), try, send_flag,
4264 (struct sockaddr *)conn->dst, get_addr_len(conn->dst));
4265 if (ret > 0) {
4266 count -= ret;
4267 done += ret;
4268
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05004269 /* A send succeeded, so we can consider ourself connected */
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004270 conn->flags |= CO_FL_WAIT_L4L6;
4271 /* if the system buffer is full, don't insist */
4272 if (ret < try)
4273 break;
4274 }
4275 else if (ret == 0 || errno == EAGAIN || errno == ENOTCONN || errno == EINPROGRESS) {
4276 /* nothing written, we need to poll for write first */
4277 fd_cant_send(conn->handle.fd);
4278 break;
4279 }
4280 else if (errno != EINTR) {
4281 conn->flags |= CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH;
4282 break;
4283 }
4284 }
4285 if (unlikely(conn->flags & CO_FL_WAIT_L4_CONN) && done)
4286 conn->flags &= ~CO_FL_WAIT_L4_CONN;
4287
4288 if (done > 0) {
4289 /* we count the total bytes sent, and the send rate for 32-byte
4290 * blocks. The reason for the latter is that freq_ctr are
4291 * limited to 4GB and that it's not enough per second.
4292 */
4293 _HA_ATOMIC_ADD(&global.out_bytes, done);
4294 update_freq_ctr(&global.out_32bps, (done + 16) / 32);
4295 }
4296 return done;
4297}
4298
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01004299/* Called from the upper layer, to subscribe <es> to events <event_type>. The
4300 * event subscriber <es> is not allowed to change from a previous call as long
4301 * as at least one event is still subscribed. The <event_type> must only be a
4302 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0.
4303 */
4304static int quic_conn_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
4305{
4306 return conn_subscribe(conn, xprt_ctx, event_type, es);
4307}
4308
4309/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
4310 * The <es> pointer is not allowed to differ from the one passed to the
4311 * subscribe() call. It always returns zero.
4312 */
4313static int quic_conn_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
4314{
4315 return conn_unsubscribe(conn, xprt_ctx, event_type, es);
4316}
4317
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004318/* Initialize a QUIC connection (quic_conn struct) to be attached to <conn>
4319 * connection with <xprt_ctx> as address of the xprt context.
4320 * Returns 1 if succeeded, 0 if not.
4321 */
4322static int qc_conn_init(struct connection *conn, void **xprt_ctx)
4323{
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02004324 struct ssl_sock_ctx *ctx;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004325
4326 TRACE_ENTER(QUIC_EV_CONN_NEW, conn);
4327
4328 if (*xprt_ctx)
4329 goto out;
4330
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004331 ctx = pool_alloc(pool_head_quic_conn_ctx);
4332 if (!ctx) {
4333 conn->err_code = CO_ER_SYS_MEMLIM;
4334 goto err;
4335 }
4336
4337 ctx->wait_event.tasklet = tasklet_new();
4338 if (!ctx->wait_event.tasklet) {
4339 conn->err_code = CO_ER_SYS_MEMLIM;
4340 goto err;
4341 }
4342
4343 ctx->wait_event.tasklet->process = quic_conn_io_cb;
4344 ctx->wait_event.tasklet->context = ctx;
4345 ctx->wait_event.events = 0;
4346 ctx->conn = conn;
4347 ctx->subs = NULL;
4348 ctx->xprt_ctx = NULL;
4349
4350 ctx->xprt = xprt_get(XPRT_QUIC);
4351 if (objt_server(conn->target)) {
4352 /* Server */
4353 struct server *srv = __objt_server(conn->target);
4354 unsigned char dcid[QUIC_CID_LEN];
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004355 struct quic_conn *qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004356 int ssl_err, ipv4;
4357
4358 ssl_err = SSL_ERROR_NONE;
4359 if (RAND_bytes(dcid, sizeof dcid) != 1)
4360 goto err;
4361
4362 conn->qc = new_quic_conn(QUIC_PROTOCOL_VERSION_DRAFT_28);
4363 if (!conn->qc)
4364 goto err;
4365
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004366 qc = conn->qc;
4367 qc->conn = conn;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004368 ipv4 = conn->dst->ss_family == AF_INET;
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004369 if (!qc_new_conn_init(qc, ipv4, NULL, &srv->cids,
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004370 dcid, sizeof dcid, NULL, 0, 0))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004371 goto err;
4372
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004373 if (!qc_new_isecs(qc, dcid, sizeof dcid, 0))
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004374 goto err;
4375
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004376 if (ssl_bio_and_sess_init(conn, srv->ssl_ctx.ctx,
4377 &ctx->ssl, &ctx->bio, ha_quic_meth, ctx) == -1)
4378 goto err;
4379
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004380 qc->rx.params = srv->quic_params;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004381 /* Copy the initial source connection ID. */
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004382 quic_cid_cpy(&qc->rx.params.initial_source_connection_id, &qc->scid);
4383 qc->enc_params_len =
4384 quic_transport_params_encode(qc->enc_params, qc->enc_params + sizeof qc->enc_params,
4385 &qc->rx.params, 0);
4386 if (!qc->enc_params_len)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004387 goto err;
4388
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004389 SSL_set_quic_transport_params(ctx->ssl, qc->enc_params, qc->enc_params_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004390 SSL_set_connect_state(ctx->ssl);
4391 ssl_err = SSL_do_handshake(ctx->ssl);
4392 if (ssl_err != 1) {
4393 ssl_err = SSL_get_error(ctx->ssl, ssl_err);
4394 if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) {
4395 TRACE_PROTO("SSL handshake",
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004396 QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004397 }
4398 else {
4399 TRACE_DEVEL("SSL handshake error",
Frédéric Lécaillea5fe49f2021-06-04 11:52:35 +02004400 QUIC_EV_CONN_HDSHK, ctx->conn, &qc->state, &ssl_err);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004401 goto err;
4402 }
4403 }
4404 }
4405 else if (objt_listener(conn->target)) {
4406 /* Listener */
4407 struct bind_conf *bc = __objt_listener(conn->target)->bind_conf;
Frédéric Lécaille1e1aad42021-05-27 14:57:09 +02004408 struct quic_conn *qc = ctx->conn->qc;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004409
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004410 if (ssl_bio_and_sess_init(conn, bc->initial_ctx,
4411 &ctx->ssl, &ctx->bio, ha_quic_meth, ctx) == -1)
4412 goto err;
4413
Frédéric Lécaille1e1aad42021-05-27 14:57:09 +02004414 SSL_set_quic_transport_params(ctx->ssl, qc->enc_params, qc->enc_params_len);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004415 SSL_set_accept_state(ctx->ssl);
4416 }
4417
4418 *xprt_ctx = ctx;
4419
4420 /* Leave init state and start handshake */
4421 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004422
4423 out:
4424 TRACE_LEAVE(QUIC_EV_CONN_NEW, conn);
4425
4426 return 0;
4427
4428 err:
Willy Tarreau7deb28c2021-05-10 07:40:27 +02004429 if (ctx && ctx->wait_event.tasklet)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004430 tasklet_free(ctx->wait_event.tasklet);
4431 pool_free(pool_head_quic_conn_ctx, ctx);
Frédéric Lécaille6c1e36c2020-12-23 17:17:37 +01004432 TRACE_DEVEL("leaving in error", QUIC_EV_CONN_NEW, conn);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004433 return -1;
4434}
4435
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004436/* Start the QUIC transport layer */
4437static int qc_xprt_start(struct connection *conn, void *ctx)
4438{
4439 struct quic_conn *qc;
Frédéric Lécaille1eaec332021-06-04 14:59:59 +02004440 struct ssl_sock_ctx *qctx = ctx;
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004441
4442 qc = conn->qc;
4443 if (!quic_conn_init_timer(qc)) {
4444 TRACE_PROTO("Non initialized timer", QUIC_EV_CONN_LPKT, conn);
4445 return 0;
4446 }
4447
4448 tasklet_wakeup(qctx->wait_event.tasklet);
4449 return 1;
4450}
4451
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004452/* transport-layer operations for QUIC connections. */
4453static struct xprt_ops ssl_quic = {
4454 .snd_buf = quic_conn_from_buf,
4455 .rcv_buf = quic_conn_to_buf,
Frédéric Lécaille422a39c2021-03-03 17:28:34 +01004456 .subscribe = quic_conn_subscribe,
4457 .unsubscribe = quic_conn_unsubscribe,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004458 .init = qc_conn_init,
Frédéric Lécaille3d77fa72021-05-31 09:30:14 +02004459 .start = qc_xprt_start,
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004460 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
4461 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
4462 .name = "QUIC",
4463};
4464
4465__attribute__((constructor))
4466static void __quic_conn_init(void)
4467{
4468 ha_quic_meth = BIO_meth_new(0x666, "ha QUIC methods");
4469 xprt_register(XPRT_QUIC, &ssl_quic);
4470}
4471
4472__attribute__((destructor))
4473static void __quic_conn_deinit(void)
4474{
4475 BIO_meth_free(ha_quic_meth);
4476}
4477
4478/* Read all the QUIC packets found in <buf> with <len> as length (typically a UDP
4479 * datagram), <ctx> being the QUIC I/O handler context, from QUIC connections,
4480 * calling <func> function;
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05004481 * Return the number of bytes read if succeeded, -1 if not.
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004482 */
4483static ssize_t quic_dgram_read(char *buf, size_t len, void *owner,
4484 struct sockaddr_storage *saddr, qpkt_read_func *func)
4485{
4486 unsigned char *pos;
4487 const unsigned char *end;
4488 struct quic_dgram_ctx dgram_ctx = {
4489 .dcid_node = NULL,
4490 .owner = owner,
4491 };
4492
4493 pos = (unsigned char *)buf;
4494 end = pos + len;
4495
4496 do {
4497 int ret;
4498 struct quic_rx_packet *pkt;
4499
Willy Tarreaue4498932021-03-22 21:13:05 +01004500 pkt = pool_zalloc(pool_head_quic_rx_packet);
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004501 if (!pkt)
4502 goto err;
4503
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004504 quic_rx_packet_refinc(pkt);
4505 ret = func(&pos, end, pkt, &dgram_ctx, saddr);
4506 if (ret == -1) {
4507 size_t pkt_len;
4508
4509 pkt_len = pkt->len;
4510 free_quic_rx_packet(pkt);
4511 /* If the packet length could not be found, we cannot continue. */
4512 if (!pkt_len)
4513 break;
4514 }
4515 } while (pos < end);
4516
4517 /* Increasing the received bytes counter by the UDP datagram length
4518 * if this datagram could be associated to a connection.
4519 */
4520 if (dgram_ctx.qc)
4521 dgram_ctx.qc->rx.bytes += len;
4522
4523 return pos - (unsigned char *)buf;
4524
4525 err:
4526 return -1;
4527}
4528
4529ssize_t quic_lstnr_dgram_read(char *buf, size_t len, void *owner,
4530 struct sockaddr_storage *saddr)
4531{
4532 return quic_dgram_read(buf, len, owner, saddr, qc_lstnr_pkt_rcv);
4533}
4534
4535ssize_t quic_srv_dgram_read(char *buf, size_t len, void *owner,
4536 struct sockaddr_storage *saddr)
4537{
4538 return quic_dgram_read(buf, len, owner, saddr, qc_srv_pkt_rcv);
4539}
4540
4541/* QUIC I/O handler for connection to local listeners or remove servers
4542 * depending on <listener> boolean value, with <fd> as socket file
4543 * descriptor and <ctx> as context.
4544 */
4545static size_t quic_conn_handler(int fd, void *ctx, qpkt_read_func *func)
4546{
4547 ssize_t ret;
4548 size_t done = 0;
4549 struct buffer *buf = get_trash_chunk();
4550 /* Source address */
4551 struct sockaddr_storage saddr = {0};
4552 socklen_t saddrlen = sizeof saddr;
4553
4554 if (!fd_recv_ready(fd))
4555 return 0;
4556
4557 do {
4558 ret = recvfrom(fd, buf->area, buf->size, 0,
4559 (struct sockaddr *)&saddr, &saddrlen);
4560 if (ret < 0) {
4561 if (errno == EINTR)
4562 continue;
4563 if (errno == EAGAIN)
4564 fd_cant_recv(fd);
4565 goto out;
4566 }
4567 } while (0);
4568
4569 done = buf->data = ret;
4570 quic_dgram_read(buf->area, buf->data, ctx, &saddr, func);
4571
4572 out:
4573 return done;
4574}
4575
4576/* QUIC I/O handler for connections to local listeners with <fd> as socket
4577 * file descriptor.
4578 */
4579void quic_fd_handler(int fd)
4580{
Willy Tarreauf5090652021-04-06 17:23:40 +02004581 if (fdtab[fd].state & FD_POLL_IN)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004582 quic_conn_handler(fd, fdtab[fd].owner, &qc_lstnr_pkt_rcv);
4583}
4584
4585/* QUIC I/O handler for connections to remote servers with <fd> as socket
4586 * file descriptor.
4587 */
4588void quic_conn_fd_handler(int fd)
4589{
Willy Tarreauf5090652021-04-06 17:23:40 +02004590 if (fdtab[fd].state & FD_POLL_IN)
Frédéric Lécaillea7e7ce92020-11-23 14:14:04 +01004591 quic_conn_handler(fd, fdtab[fd].owner, &qc_srv_pkt_rcv);
4592}
4593
4594/*
4595 * Local variables:
4596 * c-indent-level: 8
4597 * c-basic-offset: 8
4598 * End:
4599 */