Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1 | /* |
| 2 | * QUIC transport layer over SOCK_DGRAM sockets. |
| 3 | * |
Willy Tarreau | 3dfb7da | 2022-03-02 22:33:39 +0100 | [diff] [blame] | 4 | * Copyright 2020 HAProxy Technologies, Frederic Lecaille <flecaille@haproxy.com> |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 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> |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 15 | #include <stdio.h> |
| 16 | #include <stdlib.h> |
| 17 | |
| 18 | #include <sys/socket.h> |
| 19 | #include <sys/stat.h> |
| 20 | #include <sys/types.h> |
| 21 | |
| 22 | #include <netinet/tcp.h> |
| 23 | |
Amaury Denoyelle | eb01f59 | 2021-10-07 16:44:05 +0200 | [diff] [blame] | 24 | #include <import/ebmbtree.h> |
| 25 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 26 | #include <haproxy/buf-t.h> |
| 27 | #include <haproxy/compat.h> |
| 28 | #include <haproxy/api.h> |
| 29 | #include <haproxy/debug.h> |
| 30 | #include <haproxy/tools.h> |
| 31 | #include <haproxy/ticks.h> |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 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écaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 37 | #include <haproxy/h3.h> |
Amaury Denoyelle | 154bc7f | 2021-11-12 16:09:54 +0100 | [diff] [blame] | 38 | #include <haproxy/hq_interop.h> |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 39 | #include <haproxy/log.h> |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 40 | #include <haproxy/mux_quic.h> |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 41 | #include <haproxy/pipe.h> |
| 42 | #include <haproxy/proxy.h> |
| 43 | #include <haproxy/quic_cc.h> |
| 44 | #include <haproxy/quic_frame.h> |
| 45 | #include <haproxy/quic_loss.h> |
Amaury Denoyelle | cfa2d56 | 2022-01-19 16:01:05 +0100 | [diff] [blame] | 46 | #include <haproxy/quic_sock.h> |
Amaury Denoyelle | 0cc02a3 | 2022-04-19 17:21:11 +0200 | [diff] [blame] | 47 | #include <haproxy/quic_stream.h> |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 48 | #include <haproxy/cbuf.h> |
Amaury Denoyelle | 8524f0f | 2022-02-08 15:03:40 +0100 | [diff] [blame] | 49 | #include <haproxy/proto_quic.h> |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 50 | #include <haproxy/quic_tls.h> |
Amaury Denoyelle | 118b2cb | 2021-11-25 16:05:16 +0100 | [diff] [blame] | 51 | #include <haproxy/sink.h> |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 52 | #include <haproxy/ssl_sock.h> |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 53 | #include <haproxy/task.h> |
| 54 | #include <haproxy/trace.h> |
| 55 | #include <haproxy/xprt_quic.h> |
| 56 | |
Amaury Denoyelle | a22d860 | 2021-11-10 15:17:56 +0100 | [diff] [blame] | 57 | /* list of supported QUIC versions by this implementation */ |
| 58 | static int quic_supported_version[] = { |
| 59 | 0x00000001, |
Frédéric Lécaille | 56d3e1b | 2021-11-19 14:32:52 +0100 | [diff] [blame] | 60 | 0xff00001d, /* draft-29 */ |
Amaury Denoyelle | a22d860 | 2021-11-10 15:17:56 +0100 | [diff] [blame] | 61 | |
| 62 | /* placeholder, do not add entry after this */ |
| 63 | 0x0 |
| 64 | }; |
| 65 | |
Frédéric Lécaille | 48fc74a | 2021-09-03 16:42:19 +0200 | [diff] [blame] | 66 | /* This is the values of some QUIC transport parameters when absent. |
| 67 | * Should be used to initialize any transport parameters (local or remote) |
| 68 | * before updating them with customized values. |
| 69 | */ |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 70 | struct quic_transport_params quic_dflt_transport_params = { |
Frédéric Lécaille | 46be7e9 | 2021-10-22 15:04:27 +0200 | [diff] [blame] | 71 | .max_udp_payload_size = QUIC_PACKET_MAXLEN, |
Frédéric Lécaille | 785c9c9 | 2021-05-17 16:42:21 +0200 | [diff] [blame] | 72 | .ack_delay_exponent = QUIC_DFLT_ACK_DELAY_COMPONENT, |
| 73 | .max_ack_delay = QUIC_DFLT_MAX_ACK_DELAY, |
Frédéric Lécaille | 48fc74a | 2021-09-03 16:42:19 +0200 | [diff] [blame] | 74 | .active_connection_id_limit = QUIC_ACTIVE_CONNECTION_ID_LIMIT, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 75 | }; |
| 76 | |
| 77 | /* trace source and events */ |
| 78 | static void quic_trace(enum trace_level level, uint64_t mask, \ |
| 79 | const struct trace_source *src, |
| 80 | const struct ist where, const struct ist func, |
| 81 | const void *a1, const void *a2, const void *a3, const void *a4); |
| 82 | |
| 83 | static const struct trace_event quic_trace_events[] = { |
| 84 | { .mask = QUIC_EV_CONN_NEW, .name = "new_conn", .desc = "new QUIC connection" }, |
| 85 | { .mask = QUIC_EV_CONN_INIT, .name = "new_conn_init", .desc = "new QUIC connection initialization" }, |
| 86 | { .mask = QUIC_EV_CONN_ISEC, .name = "init_secs", .desc = "initial secrets derivation" }, |
| 87 | { .mask = QUIC_EV_CONN_RSEC, .name = "read_secs", .desc = "read secrets derivation" }, |
| 88 | { .mask = QUIC_EV_CONN_WSEC, .name = "write_secs", .desc = "write secrets derivation" }, |
| 89 | { .mask = QUIC_EV_CONN_LPKT, .name = "lstnr_packet", .desc = "new listener received packet" }, |
| 90 | { .mask = QUIC_EV_CONN_SPKT, .name = "srv_packet", .desc = "new server received packet" }, |
Ilya Shipitsin | 1e9a666 | 2021-01-05 22:10:46 +0500 | [diff] [blame] | 91 | { .mask = QUIC_EV_CONN_ENCPKT, .name = "enc_hdshk_pkt", .desc = "handhshake packet encryption" }, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 92 | { .mask = QUIC_EV_CONN_HPKT, .name = "hdshk_pkt", .desc = "handhshake packet building" }, |
| 93 | { .mask = QUIC_EV_CONN_PAPKT, .name = "phdshk_apkt", .desc = "post handhshake application packet preparation" }, |
| 94 | { .mask = QUIC_EV_CONN_PAPKTS, .name = "phdshk_apkts", .desc = "post handhshake application packets preparation" }, |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 95 | { .mask = QUIC_EV_CONN_IO_CB, .name = "qc_io_cb", .desc = "QUIC conn. I/O processin" }, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 96 | { .mask = QUIC_EV_CONN_RMHP, .name = "rm_hp", .desc = "Remove header protection" }, |
| 97 | { .mask = QUIC_EV_CONN_PRSHPKT, .name = "parse_hpkt", .desc = "parse handshake packet" }, |
| 98 | { .mask = QUIC_EV_CONN_PRSAPKT, .name = "parse_apkt", .desc = "parse application packet" }, |
| 99 | { .mask = QUIC_EV_CONN_PRSFRM, .name = "parse_frm", .desc = "parse frame" }, |
| 100 | { .mask = QUIC_EV_CONN_PRSAFRM, .name = "parse_ack_frm", .desc = "parse ACK frame" }, |
| 101 | { .mask = QUIC_EV_CONN_BFRM, .name = "build_frm", .desc = "build frame" }, |
| 102 | { .mask = QUIC_EV_CONN_PHPKTS, .name = "phdshk_pkts", .desc = "handhshake packets preparation" }, |
| 103 | { .mask = QUIC_EV_CONN_TRMHP, .name = "rm_hp_try", .desc = "header protection removing try" }, |
| 104 | { .mask = QUIC_EV_CONN_ELRMHP, .name = "el_rm_hp", .desc = "handshake enc. level header protection removing" }, |
| 105 | { .mask = QUIC_EV_CONN_ELRXPKTS, .name = "el_treat_rx_pkts", .desc = "handshake enc. level rx packets treatment" }, |
| 106 | { .mask = QUIC_EV_CONN_SSLDATA, .name = "ssl_provide_data", .desc = "CRYPTO data provision to TLS stack" }, |
| 107 | { .mask = QUIC_EV_CONN_RXCDATA, .name = "el_treat_rx_cfrms",.desc = "enc. level RX CRYPTO frames processing"}, |
| 108 | { .mask = QUIC_EV_CONN_ADDDATA, .name = "add_hdshk_data", .desc = "TLS stack ->add_handshake_data() call"}, |
| 109 | { .mask = QUIC_EV_CONN_FFLIGHT, .name = "flush_flight", .desc = "TLS stack ->flush_flight() call"}, |
| 110 | { .mask = QUIC_EV_CONN_SSLALERT, .name = "send_alert", .desc = "TLS stack ->send_alert() call"}, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 111 | { .mask = QUIC_EV_CONN_RTTUPDT, .name = "rtt_updt", .desc = "RTT sampling" }, |
| 112 | { .mask = QUIC_EV_CONN_SPPKTS, .name = "sppkts", .desc = "send prepared packets" }, |
| 113 | { .mask = QUIC_EV_CONN_PKTLOSS, .name = "pktloss", .desc = "detect packet loss" }, |
| 114 | { .mask = QUIC_EV_CONN_STIMER, .name = "stimer", .desc = "set timer" }, |
| 115 | { .mask = QUIC_EV_CONN_PTIMER, .name = "ptimer", .desc = "process timer" }, |
| 116 | { .mask = QUIC_EV_CONN_SPTO, .name = "spto", .desc = "set PTO" }, |
Frédéric Lécaille | 6c1e36c | 2020-12-23 17:17:37 +0100 | [diff] [blame] | 117 | { .mask = QUIC_EV_CONN_BCFRMS, .name = "bcfrms", .desc = "build CRYPTO data frames" }, |
Frédéric Lécaille | 513b4f2 | 2021-09-20 15:23:17 +0200 | [diff] [blame] | 118 | { .mask = QUIC_EV_CONN_XPRTSEND, .name = "xprt_send", .desc = "sending XRPT subscription" }, |
| 119 | { .mask = QUIC_EV_CONN_XPRTRECV, .name = "xprt_recv", .desc = "receiving XRPT subscription" }, |
Frédéric Lécaille | ba85acd | 2022-01-11 14:43:50 +0100 | [diff] [blame] | 120 | { .mask = QUIC_EV_CONN_FREED, .name = "conn_freed", .desc = "releasing conn. memory" }, |
| 121 | { .mask = QUIC_EV_CONN_CLOSE, .name = "conn_close", .desc = "closing conn." }, |
Frédéric Lécaille | ce69cbc | 2022-03-22 12:45:33 +0100 | [diff] [blame] | 122 | { .mask = QUIC_EV_CONN_ACKSTRM, .name = "ack_strm", .desc = "STREAM ack."}, |
Frédéric Lécaille | b823bb7 | 2022-03-31 20:26:18 +0200 | [diff] [blame] | 123 | { .mask = QUIC_EV_CONN_FRMLIST, .name = "frm_list", .desc = "frame list"}, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 124 | { /* end */ } |
| 125 | }; |
| 126 | |
| 127 | static const struct name_desc quic_trace_lockon_args[4] = { |
| 128 | /* arg1 */ { /* already used by the connection */ }, |
| 129 | /* arg2 */ { .name="quic", .desc="QUIC transport" }, |
| 130 | /* arg3 */ { }, |
| 131 | /* arg4 */ { } |
| 132 | }; |
| 133 | |
| 134 | static const struct name_desc quic_trace_decoding[] = { |
| 135 | #define QUIC_VERB_CLEAN 1 |
| 136 | { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" }, |
| 137 | { /* end */ } |
| 138 | }; |
| 139 | |
| 140 | |
| 141 | struct trace_source trace_quic = { |
| 142 | .name = IST("quic"), |
| 143 | .desc = "QUIC xprt", |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 144 | .arg_def = TRC_ARG1_QCON, /* TRACE()'s first argument is always a quic_conn */ |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 145 | .default_cb = quic_trace, |
| 146 | .known_events = quic_trace_events, |
| 147 | .lockon_args = quic_trace_lockon_args, |
| 148 | .decoding = quic_trace_decoding, |
| 149 | .report_events = ~0, /* report everything by default */ |
| 150 | }; |
| 151 | |
| 152 | #define TRACE_SOURCE &trace_quic |
| 153 | INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE); |
| 154 | |
| 155 | static BIO_METHOD *ha_quic_meth; |
| 156 | |
Frédéric Lécaille | dbe25af | 2021-08-04 15:27:37 +0200 | [diff] [blame] | 157 | DECLARE_POOL(pool_head_quic_tx_ring, "quic_tx_ring_pool", QUIC_TX_RING_BUFSZ); |
Frédéric Lécaille | 324ecda | 2021-11-02 10:14:44 +0100 | [diff] [blame] | 158 | DECLARE_POOL(pool_head_quic_conn_rxbuf, "quic_conn_rxbuf", QUIC_CONN_RX_BUFSZ); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 159 | DECLARE_STATIC_POOL(pool_head_quic_conn_ctx, |
Frédéric Lécaille | 1eaec33 | 2021-06-04 14:59:59 +0200 | [diff] [blame] | 160 | "quic_conn_ctx_pool", sizeof(struct ssl_sock_ctx)); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 161 | DECLARE_STATIC_POOL(pool_head_quic_conn, "quic_conn", sizeof(struct quic_conn)); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 162 | DECLARE_POOL(pool_head_quic_connection_id, |
| 163 | "quic_connnection_id_pool", sizeof(struct quic_connection_id)); |
Frédéric Lécaille | 3d4bfe7 | 2022-01-26 16:07:16 +0100 | [diff] [blame] | 164 | DECLARE_POOL(pool_head_quic_dgram, "quic_dgram", sizeof(struct quic_dgram)); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 165 | DECLARE_POOL(pool_head_quic_rx_packet, "quic_rx_packet_pool", sizeof(struct quic_rx_packet)); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 166 | DECLARE_POOL(pool_head_quic_tx_packet, "quic_tx_packet_pool", sizeof(struct quic_tx_packet)); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 167 | DECLARE_STATIC_POOL(pool_head_quic_rx_crypto_frm, "quic_rx_crypto_frm_pool", sizeof(struct quic_rx_crypto_frm)); |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 168 | DECLARE_POOL(pool_head_quic_rx_strm_frm, "quic_rx_strm_frm", sizeof(struct quic_rx_strm_frm)); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 169 | DECLARE_STATIC_POOL(pool_head_quic_crypto_buf, "quic_crypto_buf_pool", sizeof(struct quic_crypto_buf)); |
Frédéric Lécaille | 0ad0458 | 2021-07-27 14:51:54 +0200 | [diff] [blame] | 170 | DECLARE_POOL(pool_head_quic_frame, "quic_frame_pool", sizeof(struct quic_frame)); |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 171 | DECLARE_STATIC_POOL(pool_head_quic_arng, "quic_arng_pool", sizeof(struct quic_arng_node)); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 172 | |
Frédéric Lécaille | 9445abc | 2021-08-04 10:49:51 +0200 | [diff] [blame] | 173 | static struct quic_tx_packet *qc_build_pkt(unsigned char **pos, const unsigned char *buf_end, |
Frédéric Lécaille | 28c7ea3 | 2022-02-25 17:41:39 +0100 | [diff] [blame] | 174 | struct quic_enc_level *qel, struct list *frms, |
Frédéric Lécaille | 28f51fa | 2021-11-09 14:12:12 +0100 | [diff] [blame] | 175 | struct quic_conn *qc, size_t dglen, int pkt_type, |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 176 | int padding, int probe, int cc, int *err); |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 177 | static struct task *quic_conn_app_io_cb(struct task *t, void *context, unsigned int state); |
Frédéric Lécaille | 4775680 | 2022-03-25 09:12:16 +0100 | [diff] [blame] | 178 | static void qc_idle_timer_do_rearm(struct quic_conn *qc); |
Frédéric Lécaille | 530601c | 2022-03-10 15:11:57 +0100 | [diff] [blame] | 179 | static void qc_idle_timer_rearm(struct quic_conn *qc, int read); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 180 | |
Frédéric Lécaille | f63921f | 2020-12-18 09:48:20 +0100 | [diff] [blame] | 181 | /* Only for debug purpose */ |
| 182 | struct enc_debug_info { |
| 183 | unsigned char *payload; |
| 184 | size_t payload_len; |
| 185 | unsigned char *aad; |
| 186 | size_t aad_len; |
| 187 | uint64_t pn; |
| 188 | }; |
| 189 | |
| 190 | /* Initializes a enc_debug_info struct (only for debug purpose) */ |
| 191 | static inline void enc_debug_info_init(struct enc_debug_info *edi, |
| 192 | unsigned char *payload, size_t payload_len, |
| 193 | unsigned char *aad, size_t aad_len, uint64_t pn) |
| 194 | { |
| 195 | edi->payload = payload; |
| 196 | edi->payload_len = payload_len; |
| 197 | edi->aad = aad; |
| 198 | edi->aad_len = aad_len; |
| 199 | edi->pn = pn; |
| 200 | } |
| 201 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 202 | /* Trace callback for QUIC. |
| 203 | * These traces always expect that arg1, if non-null, is of type connection. |
| 204 | */ |
| 205 | static void quic_trace(enum trace_level level, uint64_t mask, const struct trace_source *src, |
| 206 | const struct ist where, const struct ist func, |
| 207 | const void *a1, const void *a2, const void *a3, const void *a4) |
| 208 | { |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 209 | const struct quic_conn *qc = a1; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 210 | |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 211 | if (qc) { |
Frédéric Lécaille | bd24208 | 2022-02-25 17:17:59 +0100 | [diff] [blame] | 212 | const struct quic_tls_ctx *tls_ctx; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 213 | |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 214 | chunk_appendf(&trace_buf, " : qc@%p", qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 215 | if ((mask & QUIC_EV_CONN_INIT) && qc) { |
| 216 | chunk_appendf(&trace_buf, "\n odcid"); |
| 217 | quic_cid_dump(&trace_buf, &qc->odcid); |
Frédéric Lécaille | c5e72b9 | 2020-12-02 16:11:40 +0100 | [diff] [blame] | 218 | chunk_appendf(&trace_buf, "\n dcid"); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 219 | quic_cid_dump(&trace_buf, &qc->dcid); |
Frédéric Lécaille | c5e72b9 | 2020-12-02 16:11:40 +0100 | [diff] [blame] | 220 | chunk_appendf(&trace_buf, "\n scid"); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 221 | quic_cid_dump(&trace_buf, &qc->scid); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 222 | } |
| 223 | |
| 224 | if (mask & QUIC_EV_CONN_ADDDATA) { |
| 225 | const enum ssl_encryption_level_t *level = a2; |
| 226 | const size_t *len = a3; |
| 227 | |
| 228 | if (level) { |
| 229 | enum quic_tls_enc_level lvl = ssl_to_quic_enc_level(*level); |
| 230 | |
| 231 | chunk_appendf(&trace_buf, " el=%c(%d)", quic_enc_level_char(lvl), lvl); |
| 232 | } |
| 233 | if (len) |
Frédéric Lécaille | 04ffb66 | 2020-12-08 15:58:39 +0100 | [diff] [blame] | 234 | chunk_appendf(&trace_buf, " len=%llu", (unsigned long long)*len); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 235 | } |
| 236 | if ((mask & QUIC_EV_CONN_ISEC) && qc) { |
| 237 | /* Initial read & write secrets. */ |
| 238 | enum quic_tls_enc_level level = QUIC_TLS_ENC_LEVEL_INITIAL; |
| 239 | const unsigned char *rx_sec = a2; |
| 240 | const unsigned char *tx_sec = a3; |
| 241 | |
Frédéric Lécaille | bd24208 | 2022-02-25 17:17:59 +0100 | [diff] [blame] | 242 | tls_ctx = &qc->els[level].tls_ctx; |
| 243 | if (tls_ctx->flags & QUIC_FL_TLS_SECRETS_SET) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 244 | chunk_appendf(&trace_buf, "\n RX el=%c", quic_enc_level_char(level)); |
| 245 | if (rx_sec) |
| 246 | quic_tls_secret_hexdump(&trace_buf, rx_sec, 32); |
Frédéric Lécaille | bd24208 | 2022-02-25 17:17:59 +0100 | [diff] [blame] | 247 | quic_tls_keys_hexdump(&trace_buf, &tls_ctx->rx); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 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); |
Frédéric Lécaille | bd24208 | 2022-02-25 17:17:59 +0100 | [diff] [blame] | 251 | quic_tls_keys_hexdump(&trace_buf, &tls_ctx->tx); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 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); |
Frédéric Lécaille | bd24208 | 2022-02-25 17:17:59 +0100 | [diff] [blame] | 265 | tls_ctx = &qc->els[lvl].tls_ctx; |
| 266 | if (tls_ctx->flags & QUIC_FL_TLS_SECRETS_SET) |
| 267 | quic_tls_keys_hexdump(&trace_buf, &tls_ctx->rx); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 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); |
Frédéric Lécaille | bd24208 | 2022-02-25 17:17:59 +0100 | [diff] [blame] | 282 | tls_ctx = &qc->els[lvl].tls_ctx; |
| 283 | if (tls_ctx->flags & QUIC_FL_TLS_SECRETS_SET) |
| 284 | quic_tls_keys_hexdump(&trace_buf, &tls_ctx->tx); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 285 | } |
| 286 | |
| 287 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 288 | |
Frédéric Lécaille | b823bb7 | 2022-03-31 20:26:18 +0200 | [diff] [blame] | 289 | if (mask & QUIC_EV_CONN_FRMLIST) { |
| 290 | const struct list *l = a2; |
| 291 | |
| 292 | if (l) { |
| 293 | const struct quic_frame *frm; |
| 294 | list_for_each_entry(frm, l, list) |
| 295 | chunk_frm_appendf(&trace_buf, frm); |
| 296 | } |
| 297 | } |
| 298 | |
Frédéric Lécaille | 133e8a7 | 2020-12-18 09:33:27 +0100 | [diff] [blame] | 299 | if (mask & (QUIC_EV_CONN_HPKT|QUIC_EV_CONN_PAPKT)) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 300 | const struct quic_tx_packet *pkt = a2; |
| 301 | const struct quic_enc_level *qel = a3; |
Frédéric Lécaille | 04ffb66 | 2020-12-08 15:58:39 +0100 | [diff] [blame] | 302 | const ssize_t *room = a4; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 303 | |
| 304 | if (qel) { |
Amaury Denoyelle | 4fd53d7 | 2021-12-21 14:28:26 +0100 | [diff] [blame] | 305 | const struct quic_pktns *pktns = qc->pktns; |
Frédéric Lécaille | 04ffb66 | 2020-12-08 15:58:39 +0100 | [diff] [blame] | 306 | chunk_appendf(&trace_buf, " qel=%c cwnd=%llu ppif=%lld pif=%llu " |
Frédéric Lécaille | 466e9da | 2021-12-29 12:04:13 +0100 | [diff] [blame] | 307 | "if=%llu pp=%u", |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 308 | quic_enc_level_char_from_qel(qel, qc), |
Frédéric Lécaille | 04ffb66 | 2020-12-08 15:58:39 +0100 | [diff] [blame] | 309 | (unsigned long long)qc->path->cwnd, |
| 310 | (unsigned long long)qc->path->prep_in_flight, |
| 311 | (unsigned long long)qc->path->in_flight, |
| 312 | (unsigned long long)pktns->tx.in_flight, |
Frédéric Lécaille | 466e9da | 2021-12-29 12:04:13 +0100 | [diff] [blame] | 313 | pktns->tx.pto_probe); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 314 | } |
| 315 | if (pkt) { |
Frédéric Lécaille | 0ad0458 | 2021-07-27 14:51:54 +0200 | [diff] [blame] | 316 | const struct quic_frame *frm; |
Frédéric Lécaille | 0371cd5 | 2021-12-13 12:30:54 +0100 | [diff] [blame] | 317 | if (pkt->pn_node.key != (uint64_t)-1) |
| 318 | chunk_appendf(&trace_buf, " pn=%llu",(ull)pkt->pn_node.key); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 319 | list_for_each_entry(frm, &pkt->frms, list) |
Frédéric Lécaille | 1ede823 | 2021-12-23 14:11:25 +0100 | [diff] [blame] | 320 | chunk_frm_appendf(&trace_buf, frm); |
Frédéric Lécaille | 8b6ea17 | 2022-01-17 10:51:43 +0100 | [diff] [blame] | 321 | chunk_appendf(&trace_buf, " rx.bytes=%llu tx.bytes=%llu", |
| 322 | (unsigned long long)qc->rx.bytes, |
| 323 | (unsigned long long)qc->tx.bytes); |
Frédéric Lécaille | 04ffb66 | 2020-12-08 15:58:39 +0100 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | if (room) { |
| 327 | chunk_appendf(&trace_buf, " room=%lld", (long long)*room); |
| 328 | chunk_appendf(&trace_buf, " dcid.len=%llu scid.len=%llu", |
| 329 | (unsigned long long)qc->dcid.len, (unsigned long long)qc->scid.len); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 330 | } |
| 331 | } |
| 332 | |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 333 | if (mask & QUIC_EV_CONN_IO_CB) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 334 | const enum quic_handshake_state *state = a2; |
| 335 | const int *err = a3; |
| 336 | |
| 337 | if (state) |
| 338 | chunk_appendf(&trace_buf, " state=%s", quic_hdshk_state_str(*state)); |
| 339 | if (err) |
| 340 | chunk_appendf(&trace_buf, " err=%s", ssl_error_str(*err)); |
| 341 | } |
| 342 | |
Frédéric Lécaille | 6c1e36c | 2020-12-23 17:17:37 +0100 | [diff] [blame] | 343 | if (mask & (QUIC_EV_CONN_TRMHP|QUIC_EV_CONN_ELRMHP|QUIC_EV_CONN_SPKT)) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 344 | const struct quic_rx_packet *pkt = a2; |
| 345 | const unsigned long *pktlen = a3; |
| 346 | const SSL *ssl = a4; |
| 347 | |
| 348 | if (pkt) { |
Frédéric Lécaille | 3dfd4c4 | 2022-04-05 15:29:14 +0200 | [diff] [blame] | 349 | chunk_appendf(&trace_buf, " pkt@%p", pkt); |
| 350 | if (pkt->type == QUIC_PACKET_TYPE_SHORT && pkt->data) |
| 351 | chunk_appendf(&trace_buf, " kp=%d", |
| 352 | !!(*pkt->data & QUIC_PACKET_KEY_PHASE_BIT)); |
| 353 | chunk_appendf(&trace_buf, " el=%c", |
| 354 | quic_packet_type_enc_level_char(pkt->type)); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 355 | if (pkt->pnl) |
| 356 | chunk_appendf(&trace_buf, " pnl=%u pn=%llu", pkt->pnl, |
| 357 | (unsigned long long)pkt->pn); |
| 358 | if (pkt->token_len) |
| 359 | chunk_appendf(&trace_buf, " toklen=%llu", |
| 360 | (unsigned long long)pkt->token_len); |
| 361 | if (pkt->aad_len) |
| 362 | chunk_appendf(&trace_buf, " aadlen=%llu", |
| 363 | (unsigned long long)pkt->aad_len); |
| 364 | chunk_appendf(&trace_buf, " flags=0x%x len=%llu", |
| 365 | pkt->flags, (unsigned long long)pkt->len); |
| 366 | } |
| 367 | if (pktlen) |
| 368 | chunk_appendf(&trace_buf, " (%ld)", *pktlen); |
| 369 | if (ssl) { |
| 370 | enum ssl_encryption_level_t level = SSL_quic_read_level(ssl); |
| 371 | chunk_appendf(&trace_buf, " el=%c", |
| 372 | quic_enc_level_char(ssl_to_quic_enc_level(level))); |
| 373 | } |
| 374 | } |
| 375 | |
| 376 | if (mask & (QUIC_EV_CONN_ELRXPKTS|QUIC_EV_CONN_PRSHPKT|QUIC_EV_CONN_SSLDATA)) { |
| 377 | const struct quic_rx_packet *pkt = a2; |
| 378 | const struct quic_rx_crypto_frm *cf = a3; |
| 379 | const SSL *ssl = a4; |
| 380 | |
| 381 | if (pkt) |
| 382 | chunk_appendf(&trace_buf, " pkt@%p el=%c pn=%llu", pkt, |
| 383 | quic_packet_type_enc_level_char(pkt->type), |
| 384 | (unsigned long long)pkt->pn); |
| 385 | if (cf) |
| 386 | chunk_appendf(&trace_buf, " cfoff=%llu cflen=%llu", |
| 387 | (unsigned long long)cf->offset_node.key, |
| 388 | (unsigned long long)cf->len); |
| 389 | if (ssl) { |
| 390 | enum ssl_encryption_level_t level = SSL_quic_read_level(ssl); |
Frédéric Lécaille | 57e6e9e | 2021-09-23 18:10:56 +0200 | [diff] [blame] | 391 | chunk_appendf(&trace_buf, " rel=%c", |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 392 | quic_enc_level_char(ssl_to_quic_enc_level(level))); |
| 393 | } |
Frédéric Lécaille | 1fc5e16 | 2021-11-22 14:25:57 +0100 | [diff] [blame] | 394 | |
| 395 | if (qc->err_code) |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 396 | chunk_appendf(&trace_buf, " err_code=0x%llx", (ull)qc->err_code); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | if (mask & (QUIC_EV_CONN_PRSFRM|QUIC_EV_CONN_BFRM)) { |
| 400 | const struct quic_frame *frm = a2; |
| 401 | |
| 402 | if (frm) |
| 403 | chunk_appendf(&trace_buf, " %s", quic_frame_type_string(frm->type)); |
| 404 | } |
| 405 | |
| 406 | if (mask & QUIC_EV_CONN_PHPKTS) { |
| 407 | const struct quic_enc_level *qel = a2; |
| 408 | |
| 409 | if (qel) { |
Frédéric Lécaille | dd51da5 | 2021-12-29 15:36:25 +0100 | [diff] [blame] | 410 | const struct quic_pktns *pktns = qel->pktns; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 411 | chunk_appendf(&trace_buf, |
Frédéric Lécaille | 466e9da | 2021-12-29 12:04:13 +0100 | [diff] [blame] | 412 | " qel=%c state=%s ack?%d cwnd=%llu ppif=%lld pif=%llu if=%llu pp=%u", |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 413 | quic_enc_level_char_from_qel(qel, qc), |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 414 | quic_hdshk_state_str(qc->state), |
Frédéric Lécaille | 205e4f3 | 2022-03-28 17:38:27 +0200 | [diff] [blame] | 415 | !!(qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED), |
Frédéric Lécaille | 04ffb66 | 2020-12-08 15:58:39 +0100 | [diff] [blame] | 416 | (unsigned long long)qc->path->cwnd, |
| 417 | (unsigned long long)qc->path->prep_in_flight, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 418 | (unsigned long long)qc->path->in_flight, |
Frédéric Lécaille | 466e9da | 2021-12-29 12:04:13 +0100 | [diff] [blame] | 419 | (unsigned long long)pktns->tx.in_flight, |
| 420 | pktns->tx.pto_probe); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 421 | } |
| 422 | } |
| 423 | |
Frédéric Lécaille | f63921f | 2020-12-18 09:48:20 +0100 | [diff] [blame] | 424 | if (mask & QUIC_EV_CONN_ENCPKT) { |
| 425 | const struct enc_debug_info *edi = a2; |
| 426 | |
| 427 | if (edi) |
| 428 | chunk_appendf(&trace_buf, |
| 429 | " payload=@%p payload_len=%llu" |
| 430 | " aad=@%p aad_len=%llu pn=%llu", |
| 431 | edi->payload, (unsigned long long)edi->payload_len, |
| 432 | edi->aad, (unsigned long long)edi->aad_len, |
| 433 | (unsigned long long)edi->pn); |
| 434 | } |
| 435 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 436 | if (mask & QUIC_EV_CONN_RMHP) { |
| 437 | const struct quic_rx_packet *pkt = a2; |
| 438 | |
| 439 | if (pkt) { |
| 440 | const int *ret = a3; |
| 441 | |
| 442 | chunk_appendf(&trace_buf, " pkt@%p", pkt); |
| 443 | if (ret && *ret) |
| 444 | chunk_appendf(&trace_buf, " pnl=%u pn=%llu", |
| 445 | pkt->pnl, (unsigned long long)pkt->pn); |
| 446 | } |
| 447 | } |
| 448 | |
| 449 | if (mask & QUIC_EV_CONN_PRSAFRM) { |
Frédéric Lécaille | 0ad0458 | 2021-07-27 14:51:54 +0200 | [diff] [blame] | 450 | const struct quic_frame *frm = a2; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 451 | const unsigned long *val1 = a3; |
| 452 | const unsigned long *val2 = a4; |
| 453 | |
| 454 | if (frm) |
Frédéric Lécaille | 1ede823 | 2021-12-23 14:11:25 +0100 | [diff] [blame] | 455 | chunk_frm_appendf(&trace_buf, frm); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 456 | if (val1) |
| 457 | chunk_appendf(&trace_buf, " %lu", *val1); |
| 458 | if (val2) |
| 459 | chunk_appendf(&trace_buf, "..%lu", *val2); |
| 460 | } |
| 461 | |
Frédéric Lécaille | ce69cbc | 2022-03-22 12:45:33 +0100 | [diff] [blame] | 462 | if (mask & QUIC_EV_CONN_ACKSTRM) { |
| 463 | const struct quic_stream *s = a2; |
Amaury Denoyelle | 7272cd7 | 2022-03-29 15:15:54 +0200 | [diff] [blame] | 464 | const struct qc_stream_desc *stream = a3; |
Frédéric Lécaille | ce69cbc | 2022-03-22 12:45:33 +0100 | [diff] [blame] | 465 | |
| 466 | if (s) |
| 467 | chunk_appendf(&trace_buf, " off=%llu len=%llu", (ull)s->offset.key, (ull)s->len); |
Amaury Denoyelle | 7272cd7 | 2022-03-29 15:15:54 +0200 | [diff] [blame] | 468 | if (stream) |
| 469 | chunk_appendf(&trace_buf, " ack_offset=%llu", (ull)stream->ack_offset); |
Frédéric Lécaille | ce69cbc | 2022-03-22 12:45:33 +0100 | [diff] [blame] | 470 | } |
| 471 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 472 | if (mask & QUIC_EV_CONN_RTTUPDT) { |
| 473 | const unsigned int *rtt_sample = a2; |
| 474 | const unsigned int *ack_delay = a3; |
| 475 | const struct quic_loss *ql = a4; |
| 476 | |
| 477 | if (rtt_sample) |
| 478 | chunk_appendf(&trace_buf, " rtt_sample=%ums", *rtt_sample); |
| 479 | if (ack_delay) |
| 480 | chunk_appendf(&trace_buf, " ack_delay=%ums", *ack_delay); |
| 481 | if (ql) |
| 482 | chunk_appendf(&trace_buf, |
| 483 | " srtt=%ums rttvar=%ums min_rtt=%ums", |
| 484 | ql->srtt >> 3, ql->rtt_var >> 2, ql->rtt_min); |
| 485 | } |
| 486 | if (mask & QUIC_EV_CONN_CC) { |
| 487 | const struct quic_cc_event *ev = a2; |
| 488 | const struct quic_cc *cc = a3; |
| 489 | |
| 490 | if (a2) |
| 491 | quic_cc_event_trace(&trace_buf, ev); |
| 492 | if (a3) |
| 493 | quic_cc_state_trace(&trace_buf, cc); |
| 494 | } |
| 495 | |
| 496 | if (mask & QUIC_EV_CONN_PKTLOSS) { |
| 497 | const struct quic_pktns *pktns = a2; |
| 498 | const struct list *lost_pkts = a3; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 499 | |
| 500 | if (pktns) { |
| 501 | chunk_appendf(&trace_buf, " pktns=%s", |
| 502 | pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" : |
| 503 | pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H"); |
| 504 | if (pktns->tx.loss_time) |
| 505 | chunk_appendf(&trace_buf, " loss_time=%dms", |
Frédéric Lécaille | f7e0b8d | 2020-12-16 17:33:11 +0100 | [diff] [blame] | 506 | TICKS_TO_MS(tick_remain(now_ms, pktns->tx.loss_time))); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 507 | } |
| 508 | if (lost_pkts && !LIST_ISEMPTY(lost_pkts)) { |
| 509 | struct quic_tx_packet *pkt; |
| 510 | |
| 511 | chunk_appendf(&trace_buf, " lost_pkts:"); |
| 512 | list_for_each_entry(pkt, lost_pkts, list) |
| 513 | chunk_appendf(&trace_buf, " %lu", (unsigned long)pkt->pn_node.key); |
| 514 | } |
| 515 | } |
| 516 | |
| 517 | if (mask & (QUIC_EV_CONN_STIMER|QUIC_EV_CONN_PTIMER|QUIC_EV_CONN_SPTO)) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 518 | const struct quic_pktns *pktns = a2; |
| 519 | const int *duration = a3; |
Frédéric Lécaille | f7e0b8d | 2020-12-16 17:33:11 +0100 | [diff] [blame] | 520 | const uint64_t *ifae_pkts = a4; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 521 | |
Frédéric Lécaille | f7e0b8d | 2020-12-16 17:33:11 +0100 | [diff] [blame] | 522 | if (ifae_pkts) |
| 523 | chunk_appendf(&trace_buf, " ifae_pkts=%llu", |
| 524 | (unsigned long long)*ifae_pkts); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 525 | if (pktns) { |
Frédéric Lécaille | 04ffb66 | 2020-12-08 15:58:39 +0100 | [diff] [blame] | 526 | chunk_appendf(&trace_buf, " pktns=%s pp=%d", |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 527 | pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" : |
Frédéric Lécaille | 04ffb66 | 2020-12-08 15:58:39 +0100 | [diff] [blame] | 528 | pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H", |
| 529 | pktns->tx.pto_probe); |
Frédéric Lécaille | 22cfd83 | 2021-12-27 17:42:51 +0100 | [diff] [blame] | 530 | if (mask & (QUIC_EV_CONN_STIMER|QUIC_EV_CONN_SPTO)) { |
| 531 | if (pktns->tx.in_flight) |
| 532 | chunk_appendf(&trace_buf, " if=%llu", (ull)pktns->tx.in_flight); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 533 | if (pktns->tx.loss_time) |
| 534 | chunk_appendf(&trace_buf, " loss_time=%dms", |
| 535 | TICKS_TO_MS(pktns->tx.loss_time - now_ms)); |
| 536 | } |
| 537 | if (mask & QUIC_EV_CONN_SPTO) { |
| 538 | if (pktns->tx.time_of_last_eliciting) |
| 539 | chunk_appendf(&trace_buf, " tole=%dms", |
| 540 | TICKS_TO_MS(pktns->tx.time_of_last_eliciting - now_ms)); |
| 541 | if (duration) |
Frédéric Lécaille | c5e72b9 | 2020-12-02 16:11:40 +0100 | [diff] [blame] | 542 | chunk_appendf(&trace_buf, " dur=%dms", TICKS_TO_MS(*duration)); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 543 | } |
| 544 | } |
| 545 | |
Frédéric Lécaille | 03235d7 | 2022-03-30 14:36:40 +0200 | [diff] [blame] | 546 | if (!(mask & (QUIC_EV_CONN_SPTO|QUIC_EV_CONN_PTIMER)) && qc->timer_task) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 547 | chunk_appendf(&trace_buf, |
| 548 | " expire=%dms", TICKS_TO_MS(qc->timer - now_ms)); |
| 549 | } |
| 550 | } |
| 551 | |
| 552 | if (mask & QUIC_EV_CONN_SPPKTS) { |
| 553 | const struct quic_tx_packet *pkt = a2; |
| 554 | |
Frédéric Lécaille | 04ffb66 | 2020-12-08 15:58:39 +0100 | [diff] [blame] | 555 | chunk_appendf(&trace_buf, " cwnd=%llu ppif=%llu pif=%llu", |
| 556 | (unsigned long long)qc->path->cwnd, |
| 557 | (unsigned long long)qc->path->prep_in_flight, |
| 558 | (unsigned long long)qc->path->in_flight); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 559 | if (pkt) { |
Frédéric Lécaille | 0371cd5 | 2021-12-13 12:30:54 +0100 | [diff] [blame] | 560 | chunk_appendf(&trace_buf, " pn=%lu(%s) iflen=%llu", |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 561 | (unsigned long)pkt->pn_node.key, |
| 562 | pkt->pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL] ? "I" : |
| 563 | pkt->pktns == &qc->pktns[QUIC_TLS_PKTNS_01RTT] ? "01RTT": "H", |
Frédéric Lécaille | 0371cd5 | 2021-12-13 12:30:54 +0100 | [diff] [blame] | 564 | (unsigned long long)pkt->in_flight_len); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 565 | } |
| 566 | } |
Frédéric Lécaille | 47c433f | 2020-12-10 17:03:11 +0100 | [diff] [blame] | 567 | |
| 568 | if (mask & QUIC_EV_CONN_SSLALERT) { |
| 569 | const uint8_t *alert = a2; |
| 570 | const enum ssl_encryption_level_t *level = a3; |
| 571 | |
| 572 | if (alert) |
| 573 | chunk_appendf(&trace_buf, " alert=0x%02x", *alert); |
| 574 | if (level) |
| 575 | chunk_appendf(&trace_buf, " el=%c", |
| 576 | quic_enc_level_char(ssl_to_quic_enc_level(*level))); |
| 577 | } |
Frédéric Lécaille | ea60499 | 2020-12-24 13:01:37 +0100 | [diff] [blame] | 578 | |
| 579 | if (mask & QUIC_EV_CONN_BCFRMS) { |
| 580 | const size_t *sz1 = a2; |
| 581 | const size_t *sz2 = a3; |
| 582 | const size_t *sz3 = a4; |
| 583 | |
| 584 | if (sz1) |
| 585 | chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz1); |
| 586 | if (sz2) |
| 587 | chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz2); |
| 588 | if (sz3) |
| 589 | chunk_appendf(&trace_buf, " %llu", (unsigned long long)*sz3); |
| 590 | } |
Frédéric Lécaille | 242fb1b | 2020-12-31 12:45:38 +0100 | [diff] [blame] | 591 | |
| 592 | if (mask & QUIC_EV_CONN_PSTRM) { |
| 593 | const struct quic_frame *frm = a2; |
Frédéric Lécaille | 577fe48 | 2021-01-11 15:10:06 +0100 | [diff] [blame] | 594 | |
Frédéric Lécaille | d8b8443 | 2021-12-10 15:18:36 +0100 | [diff] [blame] | 595 | if (frm) |
Frédéric Lécaille | 1ede823 | 2021-12-23 14:11:25 +0100 | [diff] [blame] | 596 | chunk_frm_appendf(&trace_buf, frm); |
Frédéric Lécaille | 242fb1b | 2020-12-31 12:45:38 +0100 | [diff] [blame] | 597 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 598 | } |
| 599 | if (mask & QUIC_EV_CONN_LPKT) { |
| 600 | const struct quic_rx_packet *pkt = a2; |
Frédéric Lécaille | 865b078 | 2021-09-23 07:33:20 +0200 | [diff] [blame] | 601 | const uint64_t *len = a3; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 602 | |
Frédéric Lécaille | 8678eb0 | 2021-12-16 18:03:52 +0100 | [diff] [blame] | 603 | if (pkt) { |
| 604 | chunk_appendf(&trace_buf, " pkt@%p type=0x%02x %s", |
| 605 | pkt, pkt->type, qc_pkt_long(pkt) ? "long" : "short"); |
| 606 | if (pkt->pn_node.key != (uint64_t)-1) |
| 607 | chunk_appendf(&trace_buf, " pn=%llu", pkt->pn_node.key); |
| 608 | } |
| 609 | |
Frédéric Lécaille | 865b078 | 2021-09-23 07:33:20 +0200 | [diff] [blame] | 610 | if (len) |
| 611 | chunk_appendf(&trace_buf, " len=%llu", (ull)*len); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 612 | } |
| 613 | |
| 614 | } |
| 615 | |
| 616 | /* Returns 1 if the peer has validated <qc> QUIC connection address, 0 if not. */ |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 617 | static inline int quic_peer_validated_addr(struct quic_conn *qc) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 618 | { |
Frédéric Lécaille | 67f47d0 | 2021-08-19 15:19:09 +0200 | [diff] [blame] | 619 | struct quic_pktns *hdshk_pktns, *app_pktns; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 620 | |
Frédéric Lécaille | 1aa57d3 | 2022-01-12 09:46:02 +0100 | [diff] [blame] | 621 | if (!qc_is_listener(qc)) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 622 | return 1; |
| 623 | |
Frédéric Lécaille | 67f47d0 | 2021-08-19 15:19:09 +0200 | [diff] [blame] | 624 | hdshk_pktns = qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns; |
| 625 | app_pktns = qc->els[QUIC_TLS_ENC_LEVEL_APP].pktns; |
Frédéric Lécaille | 205e4f3 | 2022-03-28 17:38:27 +0200 | [diff] [blame] | 626 | if ((hdshk_pktns->flags & QUIC_FL_PKTNS_PKT_RECEIVED) || |
| 627 | (app_pktns->flags & QUIC_FL_PKTNS_PKT_RECEIVED) || |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 628 | qc->state >= QUIC_HS_ST_COMPLETE) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 629 | return 1; |
| 630 | |
| 631 | return 0; |
| 632 | } |
| 633 | |
| 634 | /* Set the timer attached to the QUIC connection with <ctx> as I/O handler and used for |
| 635 | * both loss detection and PTO and schedule the task assiated to this timer if needed. |
| 636 | */ |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 637 | static inline void qc_set_timer(struct quic_conn *qc) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 638 | { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 639 | struct quic_pktns *pktns; |
| 640 | unsigned int pto; |
Frédéric Lécaille | eed7a7d | 2021-08-18 09:16:01 +0200 | [diff] [blame] | 641 | int handshake_complete; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 642 | |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 643 | TRACE_ENTER(QUIC_EV_CONN_STIMER, qc, |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 644 | NULL, NULL, &qc->path->ifae_pkts); |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 645 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 646 | pktns = quic_loss_pktns(qc); |
| 647 | if (tick_isset(pktns->tx.loss_time)) { |
| 648 | qc->timer = pktns->tx.loss_time; |
| 649 | goto out; |
| 650 | } |
| 651 | |
Frédéric Lécaille | ca98a7f | 2021-11-10 17:30:15 +0100 | [diff] [blame] | 652 | /* anti-amplification: the timer must be |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 653 | * cancelled for a server which reached the anti-amplification limit. |
| 654 | */ |
Frédéric Lécaille | 078634d | 2022-01-04 16:59:42 +0100 | [diff] [blame] | 655 | if (!quic_peer_validated_addr(qc) && |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 656 | (qc->flags & QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED)) { |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 657 | TRACE_PROTO("anti-amplification reached", QUIC_EV_CONN_STIMER, qc); |
Frédéric Lécaille | ca98a7f | 2021-11-10 17:30:15 +0100 | [diff] [blame] | 658 | qc->timer = TICK_ETERNITY; |
| 659 | goto out; |
| 660 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 661 | |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 662 | if (!qc->path->ifae_pkts && quic_peer_validated_addr(qc)) { |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 663 | TRACE_PROTO("timer cancellation", QUIC_EV_CONN_STIMER, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 664 | /* Timer cancellation. */ |
| 665 | qc->timer = TICK_ETERNITY; |
| 666 | goto out; |
| 667 | } |
| 668 | |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 669 | handshake_complete = qc->state >= QUIC_HS_ST_COMPLETE; |
Frédéric Lécaille | eed7a7d | 2021-08-18 09:16:01 +0200 | [diff] [blame] | 670 | pktns = quic_pto_pktns(qc, handshake_complete, &pto); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 671 | if (tick_isset(pto)) |
| 672 | qc->timer = pto; |
| 673 | out: |
Frédéric Lécaille | 5757b4a | 2022-02-16 14:46:17 +0100 | [diff] [blame] | 674 | if (qc->timer_task && qc->timer != TICK_ETERNITY) { |
Frédéric Lécaille | aaf1f19 | 2022-03-22 15:37:41 +0100 | [diff] [blame] | 675 | if (tick_is_expired(qc->timer, now_ms)) { |
| 676 | TRACE_PROTO("wakeup asap timer task", QUIC_EV_CONN_STIMER, qc); |
Frédéric Lécaille | 5757b4a | 2022-02-16 14:46:17 +0100 | [diff] [blame] | 677 | task_wakeup(qc->timer_task, TASK_WOKEN_MSG); |
Frédéric Lécaille | aaf1f19 | 2022-03-22 15:37:41 +0100 | [diff] [blame] | 678 | } |
| 679 | else { |
| 680 | TRACE_PROTO("timer task scheduling", QUIC_EV_CONN_STIMER, qc); |
Frédéric Lécaille | 5757b4a | 2022-02-16 14:46:17 +0100 | [diff] [blame] | 681 | task_schedule(qc->timer_task, qc->timer); |
Frédéric Lécaille | aaf1f19 | 2022-03-22 15:37:41 +0100 | [diff] [blame] | 682 | } |
Frédéric Lécaille | 5757b4a | 2022-02-16 14:46:17 +0100 | [diff] [blame] | 683 | } |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 684 | TRACE_LEAVE(QUIC_EV_CONN_STIMER, qc, pktns); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 685 | } |
| 686 | |
Frédéric Lécaille | a7973a6 | 2021-11-30 11:10:36 +0100 | [diff] [blame] | 687 | /* Derive new keys and ivs required for Key Update feature for <qc> QUIC |
| 688 | * connection. |
| 689 | * Return 1 if succeeded, 0 if not. |
| 690 | */ |
| 691 | static int quic_tls_key_update(struct quic_conn *qc) |
| 692 | { |
| 693 | struct quic_tls_ctx *tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx; |
| 694 | struct quic_tls_secrets *rx, *tx; |
| 695 | struct quic_tls_kp *nxt_rx = &qc->ku.nxt_rx; |
| 696 | struct quic_tls_kp *nxt_tx = &qc->ku.nxt_tx; |
| 697 | |
| 698 | tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx; |
| 699 | rx = &tls_ctx->rx; |
| 700 | tx = &tls_ctx->tx; |
| 701 | nxt_rx = &qc->ku.nxt_rx; |
| 702 | nxt_tx = &qc->ku.nxt_tx; |
| 703 | |
| 704 | /* Prepare new RX secrets */ |
| 705 | if (!quic_tls_sec_update(rx->md, nxt_rx->secret, nxt_rx->secretlen, |
| 706 | rx->secret, rx->secretlen)) { |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 707 | TRACE_DEVEL("New RX secret update failed", QUIC_EV_CONN_RWSEC, qc); |
Frédéric Lécaille | a7973a6 | 2021-11-30 11:10:36 +0100 | [diff] [blame] | 708 | return 0; |
| 709 | } |
| 710 | |
| 711 | if (!quic_tls_derive_keys(rx->aead, NULL, rx->md, |
| 712 | nxt_rx->key, nxt_rx->keylen, |
| 713 | nxt_rx->iv, nxt_rx->ivlen, NULL, 0, |
| 714 | nxt_rx->secret, nxt_rx->secretlen)) { |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 715 | TRACE_DEVEL("New RX key derivation failed", QUIC_EV_CONN_RWSEC, qc); |
Frédéric Lécaille | a7973a6 | 2021-11-30 11:10:36 +0100 | [diff] [blame] | 716 | return 0; |
| 717 | } |
| 718 | |
| 719 | /* Prepare new TX secrets */ |
| 720 | if (!quic_tls_sec_update(tx->md, nxt_tx->secret, nxt_tx->secretlen, |
| 721 | tx->secret, tx->secretlen)) { |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 722 | TRACE_DEVEL("New TX secret update failed", QUIC_EV_CONN_RWSEC, qc); |
Frédéric Lécaille | a7973a6 | 2021-11-30 11:10:36 +0100 | [diff] [blame] | 723 | return 0; |
| 724 | } |
| 725 | |
| 726 | if (!quic_tls_derive_keys(tx->aead, NULL, tx->md, |
| 727 | nxt_tx->key, nxt_tx->keylen, |
| 728 | nxt_tx->iv, nxt_tx->ivlen, NULL, 0, |
| 729 | nxt_tx->secret, nxt_tx->secretlen)) { |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 730 | TRACE_DEVEL("New TX key derivation failed", QUIC_EV_CONN_RWSEC, qc); |
Frédéric Lécaille | a7973a6 | 2021-11-30 11:10:36 +0100 | [diff] [blame] | 731 | return 0; |
| 732 | } |
| 733 | |
Frédéric Lécaille | 8c7927c | 2022-04-05 16:28:38 +0200 | [diff] [blame] | 734 | if (nxt_rx->ctx) { |
| 735 | EVP_CIPHER_CTX_free(nxt_rx->ctx); |
| 736 | nxt_rx->ctx = NULL; |
| 737 | } |
| 738 | |
| 739 | if (!quic_tls_rx_ctx_init(&nxt_rx->ctx, tls_ctx->rx.aead, nxt_rx->key)) { |
| 740 | TRACE_DEVEL("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc); |
| 741 | return 0; |
| 742 | } |
| 743 | |
| 744 | if (nxt_tx->ctx) { |
| 745 | EVP_CIPHER_CTX_free(nxt_tx->ctx); |
| 746 | nxt_tx->ctx = NULL; |
| 747 | } |
| 748 | |
| 749 | if (!quic_tls_rx_ctx_init(&nxt_tx->ctx, tls_ctx->tx.aead, nxt_tx->key)) { |
| 750 | TRACE_DEVEL("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc); |
| 751 | return 0; |
| 752 | } |
| 753 | |
Frédéric Lécaille | a7973a6 | 2021-11-30 11:10:36 +0100 | [diff] [blame] | 754 | return 1; |
| 755 | } |
| 756 | |
| 757 | /* Rotate the Key Update information for <qc> QUIC connection. |
| 758 | * Must be used after having updated them. |
| 759 | * Always succeeds. |
| 760 | */ |
| 761 | static void quic_tls_rotate_keys(struct quic_conn *qc) |
| 762 | { |
| 763 | struct quic_tls_ctx *tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx; |
| 764 | unsigned char *curr_secret, *curr_iv, *curr_key; |
Frédéric Lécaille | 8c7927c | 2022-04-05 16:28:38 +0200 | [diff] [blame] | 765 | EVP_CIPHER_CTX *curr_ctx; |
Frédéric Lécaille | a7973a6 | 2021-11-30 11:10:36 +0100 | [diff] [blame] | 766 | |
| 767 | /* Rotate the RX secrets */ |
Frédéric Lécaille | 8c7927c | 2022-04-05 16:28:38 +0200 | [diff] [blame] | 768 | curr_ctx = tls_ctx->rx.ctx; |
Frédéric Lécaille | a7973a6 | 2021-11-30 11:10:36 +0100 | [diff] [blame] | 769 | curr_secret = tls_ctx->rx.secret; |
| 770 | curr_iv = tls_ctx->rx.iv; |
| 771 | curr_key = tls_ctx->rx.key; |
| 772 | |
Frédéric Lécaille | 8c7927c | 2022-04-05 16:28:38 +0200 | [diff] [blame] | 773 | tls_ctx->rx.ctx = qc->ku.nxt_rx.ctx; |
Frédéric Lécaille | a7973a6 | 2021-11-30 11:10:36 +0100 | [diff] [blame] | 774 | tls_ctx->rx.secret = qc->ku.nxt_rx.secret; |
| 775 | tls_ctx->rx.iv = qc->ku.nxt_rx.iv; |
| 776 | tls_ctx->rx.key = qc->ku.nxt_rx.key; |
| 777 | |
Frédéric Lécaille | 8c7927c | 2022-04-05 16:28:38 +0200 | [diff] [blame] | 778 | qc->ku.nxt_rx.ctx = qc->ku.prv_rx.ctx; |
Frédéric Lécaille | a7973a6 | 2021-11-30 11:10:36 +0100 | [diff] [blame] | 779 | qc->ku.nxt_rx.secret = qc->ku.prv_rx.secret; |
| 780 | qc->ku.nxt_rx.iv = qc->ku.prv_rx.iv; |
| 781 | qc->ku.nxt_rx.key = qc->ku.prv_rx.key; |
| 782 | |
Frédéric Lécaille | 8c7927c | 2022-04-05 16:28:38 +0200 | [diff] [blame] | 783 | qc->ku.prv_rx.ctx = curr_ctx; |
Frédéric Lécaille | a7973a6 | 2021-11-30 11:10:36 +0100 | [diff] [blame] | 784 | qc->ku.prv_rx.secret = curr_secret; |
| 785 | qc->ku.prv_rx.iv = curr_iv; |
| 786 | qc->ku.prv_rx.key = curr_key; |
| 787 | qc->ku.prv_rx.pn = tls_ctx->rx.pn; |
| 788 | |
| 789 | /* Update the TX secrets */ |
Frédéric Lécaille | 8c7927c | 2022-04-05 16:28:38 +0200 | [diff] [blame] | 790 | curr_ctx = tls_ctx->tx.ctx; |
Frédéric Lécaille | a7973a6 | 2021-11-30 11:10:36 +0100 | [diff] [blame] | 791 | curr_secret = tls_ctx->tx.secret; |
| 792 | curr_iv = tls_ctx->tx.iv; |
| 793 | curr_key = tls_ctx->tx.key; |
| 794 | |
Frédéric Lécaille | 8c7927c | 2022-04-05 16:28:38 +0200 | [diff] [blame] | 795 | tls_ctx->tx.ctx = qc->ku.nxt_tx.ctx; |
Frédéric Lécaille | a7973a6 | 2021-11-30 11:10:36 +0100 | [diff] [blame] | 796 | tls_ctx->tx.secret = qc->ku.nxt_tx.secret; |
| 797 | tls_ctx->tx.iv = qc->ku.nxt_tx.iv; |
| 798 | tls_ctx->tx.key = qc->ku.nxt_tx.key; |
| 799 | |
Frédéric Lécaille | 8c7927c | 2022-04-05 16:28:38 +0200 | [diff] [blame] | 800 | qc->ku.nxt_tx.ctx = curr_ctx; |
Frédéric Lécaille | a7973a6 | 2021-11-30 11:10:36 +0100 | [diff] [blame] | 801 | qc->ku.nxt_tx.secret = curr_secret; |
| 802 | qc->ku.nxt_tx.iv = curr_iv; |
| 803 | qc->ku.nxt_tx.key = curr_key; |
| 804 | } |
| 805 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 806 | #ifndef OPENSSL_IS_BORINGSSL |
| 807 | int ha_quic_set_encryption_secrets(SSL *ssl, enum ssl_encryption_level_t level, |
| 808 | const uint8_t *read_secret, |
| 809 | const uint8_t *write_secret, size_t secret_len) |
| 810 | { |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 811 | struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index); |
| 812 | struct quic_tls_ctx *tls_ctx = &qc->els[ssl_to_quic_enc_level(level)].tls_ctx; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 813 | const SSL_CIPHER *cipher = SSL_get_current_cipher(ssl); |
Frédéric Lécaille | fc768ec | 2021-11-23 21:02:04 +0100 | [diff] [blame] | 814 | struct quic_tls_secrets *rx, *tx; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 815 | |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 816 | TRACE_ENTER(QUIC_EV_CONN_RWSEC, qc); |
Frédéric Lécaille | fc768ec | 2021-11-23 21:02:04 +0100 | [diff] [blame] | 817 | BUG_ON(secret_len > QUIC_TLS_SECRET_LEN); |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 818 | if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) { |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 819 | TRACE_PROTO("CC required", QUIC_EV_CONN_RWSEC, qc); |
Frédéric Lécaille | f44d19e | 2022-03-26 12:22:41 +0100 | [diff] [blame] | 820 | goto no_secret; |
Frédéric Lécaille | 1fc5e16 | 2021-11-22 14:25:57 +0100 | [diff] [blame] | 821 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 822 | |
Frédéric Lécaille | fc768ec | 2021-11-23 21:02:04 +0100 | [diff] [blame] | 823 | if (!quic_tls_ctx_keys_alloc(tls_ctx)) { |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 824 | TRACE_DEVEL("keys allocation failed", QUIC_EV_CONN_RWSEC, qc); |
Frédéric Lécaille | fc768ec | 2021-11-23 21:02:04 +0100 | [diff] [blame] | 825 | goto err; |
| 826 | } |
| 827 | |
| 828 | rx = &tls_ctx->rx; |
| 829 | tx = &tls_ctx->tx; |
| 830 | |
| 831 | rx->aead = tx->aead = tls_aead(cipher); |
| 832 | rx->md = tx->md = tls_md(cipher); |
| 833 | rx->hp = tx->hp = tls_hp(cipher); |
| 834 | |
| 835 | if (!quic_tls_derive_keys(rx->aead, rx->hp, rx->md, rx->key, rx->keylen, |
| 836 | rx->iv, rx->ivlen, rx->hp_key, sizeof rx->hp_key, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 837 | read_secret, secret_len)) { |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 838 | TRACE_DEVEL("RX key derivation failed", QUIC_EV_CONN_RWSEC, qc); |
Frédéric Lécaille | fc768ec | 2021-11-23 21:02:04 +0100 | [diff] [blame] | 839 | goto err; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 840 | } |
| 841 | |
Frédéric Lécaille | f460574 | 2022-04-05 10:28:29 +0200 | [diff] [blame] | 842 | if (!quic_tls_rx_ctx_init(&rx->ctx, rx->aead, rx->key)) { |
| 843 | TRACE_DEVEL("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc); |
| 844 | goto err; |
| 845 | } |
| 846 | |
Frédéric Lécaille | 61b851d | 2022-01-28 21:38:45 +0100 | [diff] [blame] | 847 | /* Enqueue this connection asap if we could derive O-RTT secrets as |
| 848 | * listener. Note that a listener derives only RX secrets for this |
| 849 | * level. |
| 850 | */ |
| 851 | if (qc_is_listener(qc) && level == ssl_encryption_early_data) |
| 852 | quic_accept_push_qc(qc); |
Frédéric Lécaille | 4015cbb | 2021-12-14 19:29:34 +0100 | [diff] [blame] | 853 | |
| 854 | if (!write_secret) |
Frédéric Lécaille | ee4508d | 2022-02-14 17:54:04 +0100 | [diff] [blame] | 855 | goto out; |
Frédéric Lécaille | 4015cbb | 2021-12-14 19:29:34 +0100 | [diff] [blame] | 856 | |
Frédéric Lécaille | fc768ec | 2021-11-23 21:02:04 +0100 | [diff] [blame] | 857 | if (!quic_tls_derive_keys(tx->aead, tx->hp, tx->md, tx->key, tx->keylen, |
| 858 | tx->iv, tx->ivlen, tx->hp_key, sizeof tx->hp_key, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 859 | write_secret, secret_len)) { |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 860 | TRACE_DEVEL("TX key derivation failed", QUIC_EV_CONN_RWSEC, qc); |
Frédéric Lécaille | fc768ec | 2021-11-23 21:02:04 +0100 | [diff] [blame] | 861 | goto err; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 862 | } |
| 863 | |
Frédéric Lécaille | f460574 | 2022-04-05 10:28:29 +0200 | [diff] [blame] | 864 | if (!quic_tls_tx_ctx_init(&tx->ctx, tx->aead, tx->key)) { |
| 865 | TRACE_DEVEL("could not initial RX TLS cipher context", QUIC_EV_CONN_RWSEC, qc); |
| 866 | goto err; |
| 867 | } |
| 868 | |
Frédéric Lécaille | a7d2c09 | 2021-11-30 11:18:18 +0100 | [diff] [blame] | 869 | if (level == ssl_encryption_application) { |
Frédéric Lécaille | a7d2c09 | 2021-11-30 11:18:18 +0100 | [diff] [blame] | 870 | struct quic_tls_kp *prv_rx = &qc->ku.prv_rx; |
| 871 | struct quic_tls_kp *nxt_rx = &qc->ku.nxt_rx; |
| 872 | struct quic_tls_kp *nxt_tx = &qc->ku.nxt_tx; |
| 873 | |
Frédéric Lécaille | 96fd163 | 2022-04-01 11:21:47 +0200 | [diff] [blame] | 874 | /* These secrets must be stored only for Application encryption level */ |
Frédéric Lécaille | a7d2c09 | 2021-11-30 11:18:18 +0100 | [diff] [blame] | 875 | if (!(rx->secret = pool_alloc(pool_head_quic_tls_secret)) || |
| 876 | !(tx->secret = pool_alloc(pool_head_quic_tls_secret))) { |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 877 | TRACE_DEVEL("Could not allocate secrete keys", QUIC_EV_CONN_RWSEC, qc); |
Frédéric Lécaille | a7d2c09 | 2021-11-30 11:18:18 +0100 | [diff] [blame] | 878 | goto err; |
| 879 | } |
| 880 | |
| 881 | memcpy(rx->secret, read_secret, secret_len); |
| 882 | rx->secretlen = secret_len; |
| 883 | memcpy(tx->secret, write_secret, secret_len); |
| 884 | tx->secretlen = secret_len; |
| 885 | /* Initialize all the secret keys lengths */ |
| 886 | prv_rx->secretlen = nxt_rx->secretlen = nxt_tx->secretlen = secret_len; |
| 887 | /* Prepare the next key update */ |
| 888 | if (!quic_tls_key_update(qc)) |
| 889 | goto err; |
| 890 | } |
Frédéric Lécaille | ee4508d | 2022-02-14 17:54:04 +0100 | [diff] [blame] | 891 | |
Frédéric Lécaille | 1fc5e16 | 2021-11-22 14:25:57 +0100 | [diff] [blame] | 892 | out: |
Frédéric Lécaille | bd24208 | 2022-02-25 17:17:59 +0100 | [diff] [blame] | 893 | tls_ctx->flags |= QUIC_FL_TLS_SECRETS_SET; |
Frédéric Lécaille | f44d19e | 2022-03-26 12:22:41 +0100 | [diff] [blame] | 894 | no_secret: |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 895 | TRACE_LEAVE(QUIC_EV_CONN_RWSEC, qc, &level); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 896 | return 1; |
Frédéric Lécaille | fc768ec | 2021-11-23 21:02:04 +0100 | [diff] [blame] | 897 | |
| 898 | err: |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 899 | TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RWSEC, qc); |
Frédéric Lécaille | fc768ec | 2021-11-23 21:02:04 +0100 | [diff] [blame] | 900 | return 0; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 901 | } |
| 902 | #else |
| 903 | /* ->set_read_secret callback to derive the RX secrets at <level> encryption |
| 904 | * level. |
Ilya Shipitsin | 1e9a666 | 2021-01-05 22:10:46 +0500 | [diff] [blame] | 905 | * Returns 1 if succeeded, 0 if not. |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 906 | */ |
| 907 | int ha_set_rsec(SSL *ssl, enum ssl_encryption_level_t level, |
| 908 | const SSL_CIPHER *cipher, |
| 909 | const uint8_t *secret, size_t secret_len) |
| 910 | { |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 911 | struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 912 | struct quic_tls_ctx *tls_ctx = |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 913 | &qc->els[ssl_to_quic_enc_level(level)].tls_ctx; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 914 | |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 915 | TRACE_ENTER(QUIC_EV_CONN_RSEC, qc); |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 916 | if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) { |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 917 | TRACE_PROTO("CC required", QUIC_EV_CONN_RSEC, qc); |
Frédéric Lécaille | 1fc5e16 | 2021-11-22 14:25:57 +0100 | [diff] [blame] | 918 | goto out; |
| 919 | } |
| 920 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 921 | tls_ctx->rx.aead = tls_aead(cipher); |
| 922 | tls_ctx->rx.md = tls_md(cipher); |
| 923 | tls_ctx->rx.hp = tls_hp(cipher); |
| 924 | |
Frédéric Lécaille | fc768ec | 2021-11-23 21:02:04 +0100 | [diff] [blame] | 925 | if (!(ctx->rx.key = pool_alloc(pool_head_quic_tls_key))) |
| 926 | goto err; |
| 927 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 928 | if (!quic_tls_derive_keys(tls_ctx->rx.aead, tls_ctx->rx.hp, tls_ctx->rx.md, |
Frédéric Lécaille | fc768ec | 2021-11-23 21:02:04 +0100 | [diff] [blame] | 929 | tls_ctx->rx.key, tls_ctx->rx.keylen, |
| 930 | tls_ctx->rx.iv, tls_ctx->rx.ivlen, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 931 | tls_ctx->rx.hp_key, sizeof tls_ctx->rx.hp_key, |
| 932 | secret, secret_len)) { |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 933 | TRACE_DEVEL("RX key derivation failed", QUIC_EV_CONN_RSEC, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 934 | goto err; |
| 935 | } |
| 936 | |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 937 | if (!qc_is_listener(qc) && level == ssl_encryption_application) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 938 | const unsigned char *buf; |
| 939 | size_t buflen; |
| 940 | |
| 941 | SSL_get_peer_quic_transport_params(ssl, &buf, &buflen); |
| 942 | if (!buflen) |
| 943 | goto err; |
| 944 | |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 945 | if (!quic_transport_params_store(qc, 1, buf, buf + buflen)) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 946 | goto err; |
| 947 | } |
| 948 | |
| 949 | tls_ctx->rx.flags |= QUIC_FL_TLS_SECRETS_SET; |
Frédéric Lécaille | 1fc5e16 | 2021-11-22 14:25:57 +0100 | [diff] [blame] | 950 | out: |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 951 | TRACE_LEAVE(QUIC_EV_CONN_RSEC, qc, &level, secret, &secret_len); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 952 | |
| 953 | return 1; |
| 954 | |
| 955 | err: |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 956 | TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RSEC, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 957 | return 0; |
| 958 | } |
| 959 | |
| 960 | /* ->set_write_secret callback to derive the TX secrets at <level> |
| 961 | * encryption level. |
Ilya Shipitsin | 1e9a666 | 2021-01-05 22:10:46 +0500 | [diff] [blame] | 962 | * Returns 1 if succeeded, 0 if not. |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 963 | */ |
| 964 | int ha_set_wsec(SSL *ssl, enum ssl_encryption_level_t level, |
| 965 | const SSL_CIPHER *cipher, |
| 966 | const uint8_t *secret, size_t secret_len) |
| 967 | { |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 968 | struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index); |
| 969 | struct quic_tls_ctx *tls_ctx = &qc->els[ssl_to_quic_enc_level(level)].tls_ctx; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 970 | |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 971 | TRACE_ENTER(QUIC_EV_CONN_WSEC, qc); |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 972 | if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) { |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 973 | TRACE_PROTO("CC required", QUIC_EV_CONN_WSEC, qc); |
Frédéric Lécaille | 1fc5e16 | 2021-11-22 14:25:57 +0100 | [diff] [blame] | 974 | goto out; |
| 975 | } |
| 976 | |
Frédéric Lécaille | fc768ec | 2021-11-23 21:02:04 +0100 | [diff] [blame] | 977 | if (!(ctx->tx.key = pool_alloc(pool_head_quic_tls_key))) |
| 978 | goto err; |
| 979 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 980 | tls_ctx->tx.aead = tls_aead(cipher); |
| 981 | tls_ctx->tx.md = tls_md(cipher); |
| 982 | tls_ctx->tx.hp = tls_hp(cipher); |
| 983 | |
| 984 | if (!quic_tls_derive_keys(tls_ctx->tx.aead, tls_ctx->tx.hp, tls_ctx->tx.md, |
Frédéric Lécaille | fc768ec | 2021-11-23 21:02:04 +0100 | [diff] [blame] | 985 | tls_ctx->tx.key, tls_ctx->tx.keylen, |
| 986 | tls_ctx->tx.iv, tls_ctx->tx.ivlen, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 987 | tls_ctx->tx.hp_key, sizeof tls_ctx->tx.hp_key, |
| 988 | secret, secret_len)) { |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 989 | TRACE_DEVEL("TX key derivation failed", QUIC_EV_CONN_WSEC, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 990 | goto err; |
| 991 | } |
| 992 | |
| 993 | tls_ctx->tx.flags |= QUIC_FL_TLS_SECRETS_SET; |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 994 | TRACE_LEAVE(QUIC_EV_CONN_WSEC, qc, &level, secret, &secret_len); |
Frédéric Lécaille | 1fc5e16 | 2021-11-22 14:25:57 +0100 | [diff] [blame] | 995 | out: |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 996 | return 1; |
| 997 | |
| 998 | err: |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 999 | TRACE_DEVEL("leaving in error", QUIC_EV_CONN_WSEC, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1000 | return 0; |
| 1001 | } |
| 1002 | #endif |
| 1003 | |
| 1004 | /* This function copies the CRYPTO data provided by the TLS stack found at <data> |
| 1005 | * with <len> as size in CRYPTO buffers dedicated to store the information about |
| 1006 | * outgoing CRYPTO frames so that to be able to replay the CRYPTO data streams. |
| 1007 | * It fails only if it could not managed to allocate enough CRYPTO buffers to |
| 1008 | * store all the data. |
| 1009 | * Note that CRYPTO data may exist at any encryption level except at 0-RTT. |
| 1010 | */ |
| 1011 | static int quic_crypto_data_cpy(struct quic_enc_level *qel, |
| 1012 | const unsigned char *data, size_t len) |
| 1013 | { |
| 1014 | struct quic_crypto_buf **qcb; |
| 1015 | /* The remaining byte to store in CRYPTO buffers. */ |
| 1016 | size_t cf_offset, cf_len, *nb_buf; |
| 1017 | unsigned char *pos; |
| 1018 | |
| 1019 | nb_buf = &qel->tx.crypto.nb_buf; |
| 1020 | qcb = &qel->tx.crypto.bufs[*nb_buf - 1]; |
| 1021 | cf_offset = (*nb_buf - 1) * QUIC_CRYPTO_BUF_SZ + (*qcb)->sz; |
| 1022 | cf_len = len; |
| 1023 | |
| 1024 | while (len) { |
| 1025 | size_t to_copy, room; |
| 1026 | |
| 1027 | pos = (*qcb)->data + (*qcb)->sz; |
| 1028 | room = QUIC_CRYPTO_BUF_SZ - (*qcb)->sz; |
| 1029 | to_copy = len > room ? room : len; |
| 1030 | if (to_copy) { |
| 1031 | memcpy(pos, data, to_copy); |
| 1032 | /* Increment the total size of this CRYPTO buffers by <to_copy>. */ |
| 1033 | qel->tx.crypto.sz += to_copy; |
| 1034 | (*qcb)->sz += to_copy; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1035 | len -= to_copy; |
| 1036 | data += to_copy; |
| 1037 | } |
| 1038 | else { |
| 1039 | struct quic_crypto_buf **tmp; |
| 1040 | |
| 1041 | tmp = realloc(qel->tx.crypto.bufs, |
| 1042 | (*nb_buf + 1) * sizeof *qel->tx.crypto.bufs); |
| 1043 | if (tmp) { |
| 1044 | qel->tx.crypto.bufs = tmp; |
| 1045 | qcb = &qel->tx.crypto.bufs[*nb_buf]; |
| 1046 | *qcb = pool_alloc(pool_head_quic_crypto_buf); |
| 1047 | if (!*qcb) |
| 1048 | return 0; |
| 1049 | |
| 1050 | (*qcb)->sz = 0; |
| 1051 | ++*nb_buf; |
| 1052 | } |
| 1053 | else { |
| 1054 | break; |
| 1055 | } |
| 1056 | } |
| 1057 | } |
| 1058 | |
| 1059 | /* Allocate a TX CRYPTO frame only if all the CRYPTO data |
| 1060 | * have been buffered. |
| 1061 | */ |
| 1062 | if (!len) { |
Frédéric Lécaille | 0ad0458 | 2021-07-27 14:51:54 +0200 | [diff] [blame] | 1063 | struct quic_frame *frm; |
Frédéric Lécaille | 81cd3c8 | 2022-01-10 18:31:07 +0100 | [diff] [blame] | 1064 | struct quic_frame *found = NULL; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1065 | |
Frédéric Lécaille | 81cd3c8 | 2022-01-10 18:31:07 +0100 | [diff] [blame] | 1066 | /* There is at most one CRYPTO frame in this packet number |
| 1067 | * space. Let's look for it. |
| 1068 | */ |
Frédéric Lécaille | 82468ea | 2022-01-14 20:23:22 +0100 | [diff] [blame] | 1069 | list_for_each_entry(frm, &qel->pktns->tx.frms, list) { |
Frédéric Lécaille | 81cd3c8 | 2022-01-10 18:31:07 +0100 | [diff] [blame] | 1070 | if (frm->type != QUIC_FT_CRYPTO) |
| 1071 | continue; |
| 1072 | |
| 1073 | /* Found */ |
| 1074 | found = frm; |
| 1075 | break; |
| 1076 | } |
| 1077 | |
| 1078 | if (found) { |
| 1079 | found->crypto.len += cf_len; |
| 1080 | } |
| 1081 | else { |
Frédéric Lécaille | b917191 | 2022-04-21 17:32:10 +0200 | [diff] [blame] | 1082 | frm = pool_zalloc(pool_head_quic_frame); |
Frédéric Lécaille | d4ecf94 | 2022-01-04 23:15:40 +0100 | [diff] [blame] | 1083 | if (!frm) |
| 1084 | return 0; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1085 | |
Frédéric Lécaille | b917191 | 2022-04-21 17:32:10 +0200 | [diff] [blame] | 1086 | LIST_INIT(&frm->reflist); |
Frédéric Lécaille | d4ecf94 | 2022-01-04 23:15:40 +0100 | [diff] [blame] | 1087 | frm->type = QUIC_FT_CRYPTO; |
| 1088 | frm->crypto.offset = cf_offset; |
| 1089 | frm->crypto.len = cf_len; |
| 1090 | frm->crypto.qel = qel; |
Frédéric Lécaille | 82468ea | 2022-01-14 20:23:22 +0100 | [diff] [blame] | 1091 | LIST_APPEND(&qel->pktns->tx.frms, &frm->list); |
Frédéric Lécaille | d4ecf94 | 2022-01-04 23:15:40 +0100 | [diff] [blame] | 1092 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1093 | } |
| 1094 | |
| 1095 | return len == 0; |
| 1096 | } |
| 1097 | |
| 1098 | |
Frédéric Lécaille | 067a82b | 2021-11-19 17:02:20 +0100 | [diff] [blame] | 1099 | /* Set <alert> TLS alert as QUIC CRYPTO_ERROR error */ |
| 1100 | void quic_set_tls_alert(struct quic_conn *qc, int alert) |
| 1101 | { |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 1102 | qc->err_code = QC_ERR_CRYPTO_ERROR | alert; |
| 1103 | qc->flags |= QUIC_FL_CONN_IMMEDIATE_CLOSE; |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 1104 | TRACE_PROTO("Alert set", QUIC_EV_CONN_SSLDATA, qc); |
Frédéric Lécaille | 067a82b | 2021-11-19 17:02:20 +0100 | [diff] [blame] | 1105 | } |
| 1106 | |
Frédéric Lécaille | b0bd62d | 2021-12-14 19:34:08 +0100 | [diff] [blame] | 1107 | /* Set the application for <qc> QUIC connection. |
| 1108 | * Return 1 if succeeded, 0 if not. |
| 1109 | */ |
| 1110 | int quic_set_app_ops(struct quic_conn *qc, const unsigned char *alpn, size_t alpn_len) |
| 1111 | { |
Amaury Denoyelle | 4b40f19 | 2022-01-19 11:29:25 +0100 | [diff] [blame] | 1112 | if (alpn_len >= 2 && memcmp(alpn, "h3", 2) == 0) |
| 1113 | qc->app_ops = &h3_ops; |
| 1114 | else if (alpn_len >= 10 && memcmp(alpn, "hq-interop", 10) == 0) |
| 1115 | qc->app_ops = &hq_interop_ops; |
Frédéric Lécaille | b0bd62d | 2021-12-14 19:34:08 +0100 | [diff] [blame] | 1116 | else |
| 1117 | return 0; |
| 1118 | |
Frédéric Lécaille | b0bd62d | 2021-12-14 19:34:08 +0100 | [diff] [blame] | 1119 | return 1; |
| 1120 | } |
| 1121 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1122 | /* ->add_handshake_data QUIC TLS callback used by the QUIC TLS stack when it |
| 1123 | * wants to provide the QUIC layer with CRYPTO data. |
| 1124 | * Returns 1 if succeeded, 0 if not. |
| 1125 | */ |
| 1126 | int ha_quic_add_handshake_data(SSL *ssl, enum ssl_encryption_level_t level, |
| 1127 | const uint8_t *data, size_t len) |
| 1128 | { |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1129 | struct quic_conn *qc; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1130 | enum quic_tls_enc_level tel; |
| 1131 | struct quic_enc_level *qel; |
| 1132 | |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1133 | qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index); |
| 1134 | TRACE_ENTER(QUIC_EV_CONN_ADDDATA, qc); |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 1135 | if (qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE) { |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1136 | TRACE_PROTO("CC required", QUIC_EV_CONN_ADDDATA, qc); |
Frédéric Lécaille | 1fc5e16 | 2021-11-22 14:25:57 +0100 | [diff] [blame] | 1137 | goto out; |
| 1138 | } |
| 1139 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1140 | tel = ssl_to_quic_enc_level(level); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1141 | if (tel == -1) { |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1142 | TRACE_PROTO("Wrong encryption level", QUIC_EV_CONN_ADDDATA, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1143 | goto err; |
| 1144 | } |
| 1145 | |
Frédéric Lécaille | 3916ca1 | 2022-02-02 14:09:05 +0100 | [diff] [blame] | 1146 | qel = &qc->els[tel]; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1147 | if (!quic_crypto_data_cpy(qel, data, len)) { |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1148 | TRACE_PROTO("Could not bufferize", QUIC_EV_CONN_ADDDATA, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1149 | goto err; |
| 1150 | } |
| 1151 | |
| 1152 | TRACE_PROTO("CRYPTO data buffered", QUIC_EV_CONN_ADDDATA, |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1153 | qc, &level, &len); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1154 | |
Frédéric Lécaille | 1fc5e16 | 2021-11-22 14:25:57 +0100 | [diff] [blame] | 1155 | out: |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1156 | TRACE_LEAVE(QUIC_EV_CONN_ADDDATA, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1157 | return 1; |
| 1158 | |
| 1159 | err: |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1160 | TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ADDDATA, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1161 | return 0; |
| 1162 | } |
| 1163 | |
| 1164 | int ha_quic_flush_flight(SSL *ssl) |
| 1165 | { |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1166 | struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1167 | |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1168 | TRACE_ENTER(QUIC_EV_CONN_FFLIGHT, qc); |
| 1169 | TRACE_LEAVE(QUIC_EV_CONN_FFLIGHT, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1170 | |
| 1171 | return 1; |
| 1172 | } |
| 1173 | |
| 1174 | int ha_quic_send_alert(SSL *ssl, enum ssl_encryption_level_t level, uint8_t alert) |
| 1175 | { |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1176 | struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1177 | |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1178 | TRACE_DEVEL("SSL alert", QUIC_EV_CONN_SSLALERT, qc, &alert, &level); |
| 1179 | quic_set_tls_alert(qc, alert); |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 1180 | qc->flags |= QUIC_FL_CONN_IMMEDIATE_CLOSE; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1181 | return 1; |
| 1182 | } |
| 1183 | |
| 1184 | /* QUIC TLS methods */ |
| 1185 | static SSL_QUIC_METHOD ha_quic_method = { |
| 1186 | #ifdef OPENSSL_IS_BORINGSSL |
| 1187 | .set_read_secret = ha_set_rsec, |
| 1188 | .set_write_secret = ha_set_wsec, |
| 1189 | #else |
| 1190 | .set_encryption_secrets = ha_quic_set_encryption_secrets, |
| 1191 | #endif |
| 1192 | .add_handshake_data = ha_quic_add_handshake_data, |
| 1193 | .flush_flight = ha_quic_flush_flight, |
| 1194 | .send_alert = ha_quic_send_alert, |
| 1195 | }; |
| 1196 | |
| 1197 | /* Initialize the TLS context of a listener with <bind_conf> as configuration. |
| 1198 | * Returns an error count. |
| 1199 | */ |
| 1200 | int ssl_quic_initial_ctx(struct bind_conf *bind_conf) |
| 1201 | { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1202 | struct ssl_bind_conf __maybe_unused *ssl_conf_cur; |
| 1203 | int cfgerr = 0; |
| 1204 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1205 | long options = |
| 1206 | (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) | |
| 1207 | SSL_OP_SINGLE_ECDH_USE | |
| 1208 | SSL_OP_CIPHER_SERVER_PREFERENCE; |
| 1209 | SSL_CTX *ctx; |
| 1210 | |
| 1211 | ctx = SSL_CTX_new(TLS_server_method()); |
| 1212 | bind_conf->initial_ctx = ctx; |
| 1213 | |
| 1214 | SSL_CTX_set_options(ctx, options); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1215 | SSL_CTX_set_mode(ctx, SSL_MODE_RELEASE_BUFFERS); |
| 1216 | SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION); |
| 1217 | SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1218 | |
| 1219 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 1220 | #ifdef OPENSSL_IS_BORINGSSL |
| 1221 | SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk); |
| 1222 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk); |
| 1223 | #elif (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
| 1224 | if (bind_conf->ssl_conf.early_data) { |
| 1225 | SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY); |
Frédéric Lécaille | ad3c07a | 2021-12-14 19:23:43 +0100 | [diff] [blame] | 1226 | SSL_CTX_set_max_early_data(ctx, 0xffffffff); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1227 | } |
| 1228 | SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL); |
| 1229 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk); |
| 1230 | #else |
| 1231 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk); |
| 1232 | #endif |
| 1233 | SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf); |
| 1234 | #endif |
| 1235 | SSL_CTX_set_quic_method(ctx, &ha_quic_method); |
| 1236 | |
| 1237 | return cfgerr; |
| 1238 | } |
| 1239 | |
| 1240 | /* Decode an expected packet number from <truncated_on> its truncated value, |
| 1241 | * depending on <largest_pn> the largest received packet number, and <pn_nbits> |
| 1242 | * the number of bits used to encode this packet number (its length in bytes * 8). |
| 1243 | * See https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#packet-encoding |
| 1244 | */ |
| 1245 | static uint64_t decode_packet_number(uint64_t largest_pn, |
| 1246 | uint32_t truncated_pn, unsigned int pn_nbits) |
| 1247 | { |
| 1248 | uint64_t expected_pn = largest_pn + 1; |
| 1249 | uint64_t pn_win = (uint64_t)1 << pn_nbits; |
| 1250 | uint64_t pn_hwin = pn_win / 2; |
| 1251 | uint64_t pn_mask = pn_win - 1; |
| 1252 | uint64_t candidate_pn; |
| 1253 | |
| 1254 | |
| 1255 | candidate_pn = (expected_pn & ~pn_mask) | truncated_pn; |
| 1256 | /* Note that <pn_win> > <pn_hwin>. */ |
| 1257 | if (candidate_pn < QUIC_MAX_PACKET_NUM - pn_win && |
| 1258 | candidate_pn + pn_hwin <= expected_pn) |
| 1259 | return candidate_pn + pn_win; |
| 1260 | |
| 1261 | if (candidate_pn > expected_pn + pn_hwin && candidate_pn >= pn_win) |
| 1262 | return candidate_pn - pn_win; |
| 1263 | |
| 1264 | return candidate_pn; |
| 1265 | } |
| 1266 | |
| 1267 | /* Remove the header protection of <pkt> QUIC packet using <tls_ctx> as QUIC TLS |
| 1268 | * cryptographic context. |
| 1269 | * <largest_pn> is the largest received packet number and <pn> the address of |
| 1270 | * the packet number field for this packet with <byte0> address of its first byte. |
| 1271 | * <end> points to one byte past the end of this packet. |
| 1272 | * Returns 1 if succeeded, 0 if not. |
| 1273 | */ |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 1274 | static int qc_do_rm_hp(struct quic_conn *qc, |
| 1275 | struct quic_rx_packet *pkt, struct quic_tls_ctx *tls_ctx, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1276 | int64_t largest_pn, unsigned char *pn, |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 1277 | unsigned char *byte0, const unsigned char *end) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1278 | { |
| 1279 | int ret, outlen, i, pnlen; |
| 1280 | uint64_t packet_number; |
| 1281 | uint32_t truncated_pn = 0; |
| 1282 | unsigned char mask[5] = {0}; |
| 1283 | unsigned char *sample; |
| 1284 | EVP_CIPHER_CTX *cctx; |
| 1285 | unsigned char *hp_key; |
| 1286 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1287 | /* Check there is enough data in this packet. */ |
| 1288 | if (end - pn < QUIC_PACKET_PN_MAXLEN + sizeof mask) { |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 1289 | TRACE_DEVEL("too short packet", QUIC_EV_CONN_RMHP, qc, pkt); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1290 | return 0; |
| 1291 | } |
| 1292 | |
| 1293 | cctx = EVP_CIPHER_CTX_new(); |
| 1294 | if (!cctx) { |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 1295 | TRACE_DEVEL("memory allocation failed", QUIC_EV_CONN_RMHP, qc, pkt); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1296 | return 0; |
| 1297 | } |
| 1298 | |
| 1299 | ret = 0; |
| 1300 | sample = pn + QUIC_PACKET_PN_MAXLEN; |
| 1301 | |
| 1302 | hp_key = tls_ctx->rx.hp_key; |
| 1303 | if (!EVP_DecryptInit_ex(cctx, tls_ctx->rx.hp, NULL, hp_key, sample) || |
| 1304 | !EVP_DecryptUpdate(cctx, mask, &outlen, mask, sizeof mask) || |
| 1305 | !EVP_DecryptFinal_ex(cctx, mask, &outlen)) { |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 1306 | TRACE_DEVEL("decryption failed", QUIC_EV_CONN_RMHP, qc, pkt); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1307 | goto out; |
| 1308 | } |
| 1309 | |
| 1310 | *byte0 ^= mask[0] & (*byte0 & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f); |
| 1311 | pnlen = (*byte0 & QUIC_PACKET_PNL_BITMASK) + 1; |
| 1312 | for (i = 0; i < pnlen; i++) { |
| 1313 | pn[i] ^= mask[i + 1]; |
| 1314 | truncated_pn = (truncated_pn << 8) | pn[i]; |
| 1315 | } |
| 1316 | |
| 1317 | packet_number = decode_packet_number(largest_pn, truncated_pn, pnlen * 8); |
| 1318 | /* Store remaining information for this unprotected header */ |
| 1319 | pkt->pn = packet_number; |
| 1320 | pkt->pnl = pnlen; |
| 1321 | |
| 1322 | ret = 1; |
| 1323 | |
| 1324 | out: |
| 1325 | EVP_CIPHER_CTX_free(cctx); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1326 | |
| 1327 | return ret; |
| 1328 | } |
| 1329 | |
| 1330 | /* Encrypt the payload of a QUIC packet with <pn> as number found at <payload> |
| 1331 | * address, with <payload_len> as payload length, <aad> as address of |
| 1332 | * the ADD and <aad_len> as AAD length depending on the <tls_ctx> QUIC TLS |
| 1333 | * context. |
| 1334 | * Returns 1 if succeeded, 0 if not. |
| 1335 | */ |
| 1336 | static int quic_packet_encrypt(unsigned char *payload, size_t payload_len, |
| 1337 | unsigned char *aad, size_t aad_len, uint64_t pn, |
Frédéric Lécaille | 5f7f118 | 2022-01-10 11:00:16 +0100 | [diff] [blame] | 1338 | struct quic_tls_ctx *tls_ctx, struct quic_conn *qc) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1339 | { |
Frédéric Lécaille | f2f4a4e | 2022-04-05 12:18:46 +0200 | [diff] [blame] | 1340 | unsigned char iv[QUIC_TLS_IV_LEN]; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1341 | unsigned char *tx_iv = tls_ctx->tx.iv; |
Frédéric Lécaille | fc768ec | 2021-11-23 21:02:04 +0100 | [diff] [blame] | 1342 | size_t tx_iv_sz = tls_ctx->tx.ivlen; |
Frédéric Lécaille | f63921f | 2020-12-18 09:48:20 +0100 | [diff] [blame] | 1343 | struct enc_debug_info edi; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1344 | |
| 1345 | if (!quic_aead_iv_build(iv, sizeof iv, tx_iv, tx_iv_sz, pn)) { |
Frédéric Lécaille | 5f7f118 | 2022-01-10 11:00:16 +0100 | [diff] [blame] | 1346 | TRACE_DEVEL("AEAD IV building for encryption failed", QUIC_EV_CONN_HPKT, qc); |
Frédéric Lécaille | f63921f | 2020-12-18 09:48:20 +0100 | [diff] [blame] | 1347 | goto err; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1348 | } |
| 1349 | |
| 1350 | if (!quic_tls_encrypt(payload, payload_len, aad, aad_len, |
Frédéric Lécaille | f460574 | 2022-04-05 10:28:29 +0200 | [diff] [blame] | 1351 | tls_ctx->tx.ctx, tls_ctx->tx.aead, tls_ctx->tx.key, iv)) { |
Frédéric Lécaille | 5f7f118 | 2022-01-10 11:00:16 +0100 | [diff] [blame] | 1352 | TRACE_DEVEL("QUIC packet encryption failed", QUIC_EV_CONN_HPKT, qc); |
Frédéric Lécaille | f63921f | 2020-12-18 09:48:20 +0100 | [diff] [blame] | 1353 | goto err; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1354 | } |
| 1355 | |
| 1356 | return 1; |
Frédéric Lécaille | f63921f | 2020-12-18 09:48:20 +0100 | [diff] [blame] | 1357 | |
| 1358 | err: |
| 1359 | enc_debug_info_init(&edi, payload, payload_len, aad, aad_len, pn); |
Frédéric Lécaille | 5f7f118 | 2022-01-10 11:00:16 +0100 | [diff] [blame] | 1360 | TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ENCPKT, qc, &edi); |
Frédéric Lécaille | f63921f | 2020-12-18 09:48:20 +0100 | [diff] [blame] | 1361 | return 0; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1362 | } |
| 1363 | |
| 1364 | /* Decrypt <pkt> QUIC packet with <tls_ctx> as QUIC TLS cryptographic context. |
| 1365 | * Returns 1 if succeeded, 0 if not. |
| 1366 | */ |
Frédéric Lécaille | a7d2c09 | 2021-11-30 11:18:18 +0100 | [diff] [blame] | 1367 | static int qc_pkt_decrypt(struct quic_rx_packet *pkt, struct quic_enc_level *qel) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1368 | { |
Frédéric Lécaille | a7d2c09 | 2021-11-30 11:18:18 +0100 | [diff] [blame] | 1369 | int ret, kp_changed; |
Frédéric Lécaille | f2f4a4e | 2022-04-05 12:18:46 +0200 | [diff] [blame] | 1370 | unsigned char iv[QUIC_TLS_IV_LEN]; |
Frédéric Lécaille | a7d2c09 | 2021-11-30 11:18:18 +0100 | [diff] [blame] | 1371 | struct quic_tls_ctx *tls_ctx = &qel->tls_ctx; |
Frédéric Lécaille | 8c7927c | 2022-04-05 16:28:38 +0200 | [diff] [blame] | 1372 | EVP_CIPHER_CTX *rx_ctx = tls_ctx->rx.ctx; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1373 | unsigned char *rx_iv = tls_ctx->rx.iv; |
Frédéric Lécaille | a7d2c09 | 2021-11-30 11:18:18 +0100 | [diff] [blame] | 1374 | size_t rx_iv_sz = tls_ctx->rx.ivlen; |
| 1375 | unsigned char *rx_key = tls_ctx->rx.key; |
| 1376 | |
| 1377 | kp_changed = 0; |
| 1378 | if (pkt->type == QUIC_PACKET_TYPE_SHORT) { |
| 1379 | /* The two tested bits are not at the same position, |
| 1380 | * this is why they are first both inversed. |
| 1381 | */ |
| 1382 | if (!(*pkt->data & QUIC_PACKET_KEY_PHASE_BIT) ^ !(tls_ctx->flags & QUIC_FL_TLS_KP_BIT_SET)) { |
| 1383 | if (pkt->pn < tls_ctx->rx.pn) { |
| 1384 | /* The lowest packet number of a previous key phase |
| 1385 | * cannot be null if it really stores previous key phase |
| 1386 | * secrets. |
| 1387 | */ |
| 1388 | if (!pkt->qc->ku.prv_rx.pn) |
| 1389 | return 0; |
| 1390 | |
Frédéric Lécaille | 8c7927c | 2022-04-05 16:28:38 +0200 | [diff] [blame] | 1391 | rx_ctx = pkt->qc->ku.prv_rx.ctx; |
| 1392 | rx_iv = pkt->qc->ku.prv_rx.iv; |
Frédéric Lécaille | a7d2c09 | 2021-11-30 11:18:18 +0100 | [diff] [blame] | 1393 | rx_key = pkt->qc->ku.prv_rx.key; |
| 1394 | } |
| 1395 | else if (pkt->pn > qel->pktns->rx.largest_pn) { |
| 1396 | /* Next key phase */ |
| 1397 | kp_changed = 1; |
Frédéric Lécaille | 8c7927c | 2022-04-05 16:28:38 +0200 | [diff] [blame] | 1398 | rx_ctx = pkt->qc->ku.nxt_rx.ctx; |
| 1399 | rx_iv = pkt->qc->ku.nxt_rx.iv; |
Frédéric Lécaille | a7d2c09 | 2021-11-30 11:18:18 +0100 | [diff] [blame] | 1400 | rx_key = pkt->qc->ku.nxt_rx.key; |
| 1401 | } |
| 1402 | } |
| 1403 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1404 | |
| 1405 | if (!quic_aead_iv_build(iv, sizeof iv, rx_iv, rx_iv_sz, pkt->pn)) |
| 1406 | return 0; |
| 1407 | |
| 1408 | ret = quic_tls_decrypt(pkt->data + pkt->aad_len, pkt->len - pkt->aad_len, |
| 1409 | pkt->data, pkt->aad_len, |
Frédéric Lécaille | 8c7927c | 2022-04-05 16:28:38 +0200 | [diff] [blame] | 1410 | rx_ctx, tls_ctx->rx.aead, rx_key, iv); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1411 | if (!ret) |
| 1412 | return 0; |
| 1413 | |
Frédéric Lécaille | a7d2c09 | 2021-11-30 11:18:18 +0100 | [diff] [blame] | 1414 | /* Update the keys only if the packet decryption succeeded. */ |
| 1415 | if (kp_changed) { |
| 1416 | quic_tls_rotate_keys(pkt->qc); |
| 1417 | /* Toggle the Key Phase bit */ |
| 1418 | tls_ctx->flags ^= QUIC_FL_TLS_KP_BIT_SET; |
| 1419 | /* Store the lowest packet number received for the current key phase */ |
| 1420 | tls_ctx->rx.pn = pkt->pn; |
| 1421 | /* Prepare the next key update */ |
| 1422 | if (!quic_tls_key_update(pkt->qc)) |
| 1423 | return 0; |
| 1424 | } |
| 1425 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1426 | /* Update the packet length (required to parse the frames). */ |
Frédéric Lécaille | f460574 | 2022-04-05 10:28:29 +0200 | [diff] [blame] | 1427 | pkt->len -= QUIC_TLS_TAG_LEN; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1428 | |
| 1429 | return 1; |
| 1430 | } |
| 1431 | |
Frédéric Lécaille | 9636715 | 2022-04-25 09:40:19 +0200 | [diff] [blame] | 1432 | |
| 1433 | /* Remove references to <frm> frame */ |
| 1434 | static void qc_frm_unref(struct quic_conn *qc, struct quic_frame *frm) |
| 1435 | { |
| 1436 | uint64_t pn; |
| 1437 | struct quic_frame *f, *tmp; |
| 1438 | |
| 1439 | list_for_each_entry_safe(f, tmp, &frm->reflist, ref) { |
| 1440 | pn = f->pkt->pn_node.key; |
| 1441 | f->origin = NULL; |
| 1442 | LIST_DELETE(&f->ref); |
| 1443 | TRACE_PROTO("remove frame reference", QUIC_EV_CONN_PRSAFRM, qc, f, &pn); |
| 1444 | } |
| 1445 | } |
| 1446 | |
Frédéric Lécaille | a956841 | 2022-04-25 08:58:04 +0200 | [diff] [blame] | 1447 | /* Release <frm> frame and mark its copies as acknowledged */ |
Frédéric Lécaille | da34255 | 2022-04-25 10:28:49 +0200 | [diff] [blame] | 1448 | void qc_release_frm(struct quic_conn *qc, struct quic_frame *frm) |
Frédéric Lécaille | a956841 | 2022-04-25 08:58:04 +0200 | [diff] [blame] | 1449 | { |
| 1450 | uint64_t pn; |
| 1451 | struct quic_frame *origin, *f, *tmp; |
| 1452 | |
| 1453 | /* Identify this frame: a frame copy or one of its copies */ |
| 1454 | origin = frm->origin ? frm->origin : frm; |
| 1455 | /* Ensure the source of the copies is flagged as acked, <frm> being |
| 1456 | * possibly a copy of <origin> |
| 1457 | */ |
| 1458 | origin->flags |= QUIC_FL_TX_FRAME_ACKED; |
| 1459 | /* Mark all the copy of <origin> as acknowledged. We must |
| 1460 | * not release the packets (releasing the frames) at this time as |
| 1461 | * they are possibly also to be acknowledged alongside the |
| 1462 | * the current one. |
| 1463 | */ |
| 1464 | list_for_each_entry_safe(f, tmp, &origin->reflist, ref) { |
| 1465 | pn = f->pkt->pn_node.key; |
| 1466 | TRACE_PROTO("mark frame as acked from packet", |
| 1467 | QUIC_EV_CONN_PRSAFRM, qc, f, &pn); |
| 1468 | f->flags |= QUIC_FL_TX_FRAME_ACKED; |
| 1469 | f->origin = NULL; |
| 1470 | LIST_DELETE(&f->ref); |
| 1471 | } |
| 1472 | LIST_DELETE(&frm->list); |
| 1473 | pn = frm->pkt->pn_node.key; |
| 1474 | quic_tx_packet_refdec(frm->pkt); |
| 1475 | TRACE_PROTO("freeing frame from packet", |
| 1476 | QUIC_EV_CONN_PRSAFRM, qc, frm, &pn); |
| 1477 | pool_free(pool_head_quic_frame, frm); |
| 1478 | } |
| 1479 | |
Amaury Denoyelle | 7272cd7 | 2022-03-29 15:15:54 +0200 | [diff] [blame] | 1480 | /* Remove from <stream> the acknowledged frames. |
Amaury Denoyelle | 95e50fb | 2022-03-29 14:50:25 +0200 | [diff] [blame] | 1481 | * |
| 1482 | * Returns 1 if at least one frame was removed else 0. |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 1483 | */ |
Amaury Denoyelle | 7272cd7 | 2022-03-29 15:15:54 +0200 | [diff] [blame] | 1484 | static int quic_stream_try_to_consume(struct quic_conn *qc, |
| 1485 | struct qc_stream_desc *stream) |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 1486 | { |
Frédéric Lécaille | 1c482c6 | 2021-09-20 16:59:51 +0200 | [diff] [blame] | 1487 | int ret; |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 1488 | struct eb64_node *frm_node; |
| 1489 | |
Frédéric Lécaille | 1c482c6 | 2021-09-20 16:59:51 +0200 | [diff] [blame] | 1490 | ret = 0; |
Amaury Denoyelle | 7272cd7 | 2022-03-29 15:15:54 +0200 | [diff] [blame] | 1491 | frm_node = eb64_first(&stream->acked_frms); |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 1492 | while (frm_node) { |
| 1493 | struct quic_stream *strm; |
Frédéric Lécaille | e2a1c1b | 2022-03-17 11:28:10 +0100 | [diff] [blame] | 1494 | struct quic_frame *frm; |
Amaury Denoyelle | 1b81dda | 2022-04-21 09:32:53 +0200 | [diff] [blame] | 1495 | size_t offset, len; |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 1496 | |
| 1497 | strm = eb64_entry(&frm_node->node, struct quic_stream, offset); |
Amaury Denoyelle | 1b81dda | 2022-04-21 09:32:53 +0200 | [diff] [blame] | 1498 | offset = strm->offset.key; |
| 1499 | len = strm->len; |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 1500 | |
Amaury Denoyelle | 1b81dda | 2022-04-21 09:32:53 +0200 | [diff] [blame] | 1501 | if (offset > stream->ack_offset) |
| 1502 | break; |
Amaury Denoyelle | 7272cd7 | 2022-03-29 15:15:54 +0200 | [diff] [blame] | 1503 | |
Amaury Denoyelle | 1b81dda | 2022-04-21 09:32:53 +0200 | [diff] [blame] | 1504 | if (qc_stream_desc_ack(&stream, offset, len)) { |
Amaury Denoyelle | 7586bef | 2022-04-25 14:26:54 +0200 | [diff] [blame] | 1505 | /* cf. next comment : frame may be freed at this stage. */ |
Amaury Denoyelle | 1b81dda | 2022-04-21 09:32:53 +0200 | [diff] [blame] | 1506 | TRACE_PROTO("stream consumed", QUIC_EV_CONN_ACKSTRM, |
Amaury Denoyelle | 7586bef | 2022-04-25 14:26:54 +0200 | [diff] [blame] | 1507 | qc, stream ? strm : NULL, stream); |
Amaury Denoyelle | 119965f | 2022-02-24 17:39:57 +0100 | [diff] [blame] | 1508 | ret = 1; |
| 1509 | } |
| 1510 | |
Amaury Denoyelle | 7586bef | 2022-04-25 14:26:54 +0200 | [diff] [blame] | 1511 | /* If stream is NULL after qc_stream_desc_ack(), it means frame |
| 1512 | * has been freed. with the stream frames tree. Nothing to do |
| 1513 | * anymore in here. |
| 1514 | */ |
Amaury Denoyelle | 1b81dda | 2022-04-21 09:32:53 +0200 | [diff] [blame] | 1515 | if (!stream) |
| 1516 | return 1; |
| 1517 | |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 1518 | frm_node = eb64_next(frm_node); |
| 1519 | eb64_delete(&strm->offset); |
Amaury Denoyelle | 7b4c9d6 | 2022-02-24 10:50:58 +0100 | [diff] [blame] | 1520 | |
Frédéric Lécaille | e2a1c1b | 2022-03-17 11:28:10 +0100 | [diff] [blame] | 1521 | frm = container_of(strm, struct quic_frame, stream); |
Frédéric Lécaille | da34255 | 2022-04-25 10:28:49 +0200 | [diff] [blame] | 1522 | qc_release_frm(qc, frm); |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 1523 | } |
Frédéric Lécaille | 1c482c6 | 2021-09-20 16:59:51 +0200 | [diff] [blame] | 1524 | |
| 1525 | return ret; |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 1526 | } |
| 1527 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1528 | /* Treat <frm> frame whose packet it is attached to has just been acknowledged. */ |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 1529 | static inline void qc_treat_acked_tx_frm(struct quic_conn *qc, |
| 1530 | struct quic_frame *frm) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1531 | { |
Frédéric Lécaille | 1c482c6 | 2021-09-20 16:59:51 +0200 | [diff] [blame] | 1532 | int stream_acked; |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 1533 | |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 1534 | TRACE_PROTO("Removing frame", QUIC_EV_CONN_PRSAFRM, qc, frm); |
Frédéric Lécaille | 1c482c6 | 2021-09-20 16:59:51 +0200 | [diff] [blame] | 1535 | stream_acked = 0; |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 1536 | switch (frm->type) { |
| 1537 | case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F: |
| 1538 | { |
Amaury Denoyelle | 7272cd7 | 2022-03-29 15:15:54 +0200 | [diff] [blame] | 1539 | struct quic_stream *strm_frm = &frm->stream; |
Amaury Denoyelle | 8d5def0 | 2022-03-29 11:51:17 +0200 | [diff] [blame] | 1540 | struct eb64_node *node = NULL; |
Amaury Denoyelle | 7272cd7 | 2022-03-29 15:15:54 +0200 | [diff] [blame] | 1541 | struct qc_stream_desc *stream = NULL; |
Amaury Denoyelle | 1b81dda | 2022-04-21 09:32:53 +0200 | [diff] [blame] | 1542 | const size_t offset = strm_frm->offset.key; |
| 1543 | const size_t len = strm_frm->len; |
Amaury Denoyelle | 8d5def0 | 2022-03-29 11:51:17 +0200 | [diff] [blame] | 1544 | |
Amaury Denoyelle | 7272cd7 | 2022-03-29 15:15:54 +0200 | [diff] [blame] | 1545 | /* do not use strm_frm->stream as the qc_stream_desc instance |
| 1546 | * might be freed at this stage. Use the id to do a proper |
Amaury Denoyelle | e4301da | 2022-04-19 17:59:50 +0200 | [diff] [blame] | 1547 | * lookup. |
Amaury Denoyelle | 8d5def0 | 2022-03-29 11:51:17 +0200 | [diff] [blame] | 1548 | * |
| 1549 | * TODO if lookup operation impact on the perf is noticeable, |
Amaury Denoyelle | 7272cd7 | 2022-03-29 15:15:54 +0200 | [diff] [blame] | 1550 | * implement a refcount on qc_stream_desc instances. |
Amaury Denoyelle | 8d5def0 | 2022-03-29 11:51:17 +0200 | [diff] [blame] | 1551 | */ |
Amaury Denoyelle | e4301da | 2022-04-19 17:59:50 +0200 | [diff] [blame] | 1552 | node = eb64_lookup(&qc->streams_by_id, strm_frm->id); |
| 1553 | if (!node) { |
Amaury Denoyelle | 7272cd7 | 2022-03-29 15:15:54 +0200 | [diff] [blame] | 1554 | TRACE_PROTO("acked stream for released stream", QUIC_EV_CONN_ACKSTRM, qc, strm_frm); |
Frédéric Lécaille | da34255 | 2022-04-25 10:28:49 +0200 | [diff] [blame] | 1555 | qc_release_frm(qc, frm); |
Amaury Denoyelle | 8d5def0 | 2022-03-29 11:51:17 +0200 | [diff] [blame] | 1556 | /* early return */ |
| 1557 | return; |
| 1558 | } |
Amaury Denoyelle | e4301da | 2022-04-19 17:59:50 +0200 | [diff] [blame] | 1559 | stream = eb64_entry(node, struct qc_stream_desc, by_id); |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 1560 | |
Amaury Denoyelle | 7272cd7 | 2022-03-29 15:15:54 +0200 | [diff] [blame] | 1561 | TRACE_PROTO("acked stream", QUIC_EV_CONN_ACKSTRM, qc, strm_frm, stream); |
Amaury Denoyelle | 1b81dda | 2022-04-21 09:32:53 +0200 | [diff] [blame] | 1562 | if (offset <= stream->ack_offset) { |
| 1563 | if (qc_stream_desc_ack(&stream, offset, len)) { |
Amaury Denoyelle | 119965f | 2022-02-24 17:39:57 +0100 | [diff] [blame] | 1564 | stream_acked = 1; |
Amaury Denoyelle | 1b81dda | 2022-04-21 09:32:53 +0200 | [diff] [blame] | 1565 | TRACE_PROTO("stream consumed", QUIC_EV_CONN_ACKSTRM, |
| 1566 | qc, strm_frm, stream); |
| 1567 | } |
Amaury Denoyelle | 0c7679d | 2022-02-24 10:56:33 +0100 | [diff] [blame] | 1568 | |
Amaury Denoyelle | 1b81dda | 2022-04-21 09:32:53 +0200 | [diff] [blame] | 1569 | if (!stream) { |
| 1570 | /* no need to continue if stream freed. */ |
| 1571 | TRACE_PROTO("stream released and freed", QUIC_EV_CONN_ACKSTRM, qc); |
Frédéric Lécaille | da34255 | 2022-04-25 10:28:49 +0200 | [diff] [blame] | 1572 | qc_release_frm(qc, frm); |
Amaury Denoyelle | 1b81dda | 2022-04-21 09:32:53 +0200 | [diff] [blame] | 1573 | break; |
Amaury Denoyelle | 119965f | 2022-02-24 17:39:57 +0100 | [diff] [blame] | 1574 | } |
| 1575 | |
Frédéric Lécaille | da34255 | 2022-04-25 10:28:49 +0200 | [diff] [blame] | 1576 | TRACE_PROTO("stream consumed", QUIC_EV_CONN_ACKSTRM, |
| 1577 | qc, strm_frm, stream); |
| 1578 | qc_release_frm(qc, frm); |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 1579 | } |
| 1580 | else { |
Amaury Denoyelle | 7272cd7 | 2022-03-29 15:15:54 +0200 | [diff] [blame] | 1581 | eb64_insert(&stream->acked_frms, &strm_frm->offset); |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 1582 | } |
Amaury Denoyelle | 119965f | 2022-02-24 17:39:57 +0100 | [diff] [blame] | 1583 | |
Amaury Denoyelle | 7272cd7 | 2022-03-29 15:15:54 +0200 | [diff] [blame] | 1584 | stream_acked |= quic_stream_try_to_consume(qc, stream); |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 1585 | } |
| 1586 | break; |
| 1587 | default: |
Frédéric Lécaille | da34255 | 2022-04-25 10:28:49 +0200 | [diff] [blame] | 1588 | qc_release_frm(qc, frm); |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 1589 | } |
Frédéric Lécaille | 1c482c6 | 2021-09-20 16:59:51 +0200 | [diff] [blame] | 1590 | |
Frédéric Lécaille | 89a2ceb | 2022-04-20 15:59:07 +0200 | [diff] [blame] | 1591 | if (stream_acked && qc->mux_state == QC_MUX_READY) { |
Frédéric Lécaille | 1c482c6 | 2021-09-20 16:59:51 +0200 | [diff] [blame] | 1592 | struct qcc *qcc = qc->qcc; |
| 1593 | |
| 1594 | if (qcc->subs && qcc->subs->events & SUB_RETRY_SEND) { |
| 1595 | tasklet_wakeup(qcc->subs->tasklet); |
| 1596 | qcc->subs->events &= ~SUB_RETRY_SEND; |
| 1597 | if (!qcc->subs->events) |
| 1598 | qcc->subs = NULL; |
| 1599 | } |
| 1600 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1601 | } |
| 1602 | |
| 1603 | /* Remove <largest> down to <smallest> node entries from <pkts> tree of TX packet, |
| 1604 | * deallocating them, and their TX frames. |
| 1605 | * Returns the last node reached to be used for the next range. |
| 1606 | * May be NULL if <largest> node could not be found. |
| 1607 | */ |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 1608 | static inline struct eb64_node *qc_ackrng_pkts(struct quic_conn *qc, |
| 1609 | struct eb_root *pkts, |
| 1610 | unsigned int *pkt_flags, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1611 | struct list *newly_acked_pkts, |
| 1612 | struct eb64_node *largest_node, |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 1613 | uint64_t largest, uint64_t smallest) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1614 | { |
| 1615 | struct eb64_node *node; |
| 1616 | struct quic_tx_packet *pkt; |
| 1617 | |
| 1618 | if (largest_node) |
| 1619 | node = largest_node; |
| 1620 | else { |
| 1621 | node = eb64_lookup(pkts, largest); |
| 1622 | while (!node && largest > smallest) { |
| 1623 | node = eb64_lookup(pkts, --largest); |
| 1624 | } |
| 1625 | } |
| 1626 | |
| 1627 | while (node && node->key >= smallest) { |
Frédéric Lécaille | 0ad0458 | 2021-07-27 14:51:54 +0200 | [diff] [blame] | 1628 | struct quic_frame *frm, *frmbak; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1629 | |
| 1630 | pkt = eb64_entry(&node->node, struct quic_tx_packet, pn_node); |
| 1631 | *pkt_flags |= pkt->flags; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1632 | LIST_INSERT(newly_acked_pkts, &pkt->list); |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 1633 | TRACE_PROTO("Removing packet #", QUIC_EV_CONN_PRSAFRM, qc, NULL, &pkt->pn_node.key); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1634 | list_for_each_entry_safe(frm, frmbak, &pkt->frms, list) |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 1635 | qc_treat_acked_tx_frm(qc, frm); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1636 | node = eb64_prev(node); |
| 1637 | eb64_delete(&pkt->pn_node); |
| 1638 | } |
| 1639 | |
| 1640 | return node; |
| 1641 | } |
| 1642 | |
Frédéric Lécaille | 7065dd0 | 2022-01-14 15:51:52 +0100 | [diff] [blame] | 1643 | /* Remove all frames from <pkt_frm_list> and reinsert them in the |
| 1644 | * same order they have been sent into <pktns_frm_list>. |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1645 | */ |
Frédéric Lécaille | 7065dd0 | 2022-01-14 15:51:52 +0100 | [diff] [blame] | 1646 | static inline void qc_requeue_nacked_pkt_tx_frms(struct quic_conn *qc, |
Frédéric Lécaille | 9636715 | 2022-04-25 09:40:19 +0200 | [diff] [blame] | 1647 | struct quic_tx_packet *pkt, |
Frédéric Lécaille | 82468ea | 2022-01-14 20:23:22 +0100 | [diff] [blame] | 1648 | struct list *pktns_frm_list) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1649 | { |
Frédéric Lécaille | 7065dd0 | 2022-01-14 15:51:52 +0100 | [diff] [blame] | 1650 | struct quic_frame *frm, *frmbak; |
| 1651 | struct list tmp = LIST_HEAD_INIT(tmp); |
Frédéric Lécaille | 9636715 | 2022-04-25 09:40:19 +0200 | [diff] [blame] | 1652 | struct list *pkt_frm_list = &pkt->frms; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1653 | |
Frédéric Lécaille | 7065dd0 | 2022-01-14 15:51:52 +0100 | [diff] [blame] | 1654 | list_for_each_entry_safe(frm, frmbak, pkt_frm_list, list) { |
Frédéric Lécaille | 9636715 | 2022-04-25 09:40:19 +0200 | [diff] [blame] | 1655 | /* Only for debug */ |
| 1656 | uint64_t pn; |
| 1657 | |
| 1658 | /* First remove this frame from the packet it was attached to */ |
Frédéric Lécaille | 7065dd0 | 2022-01-14 15:51:52 +0100 | [diff] [blame] | 1659 | LIST_DELETE(&frm->list); |
Frédéric Lécaille | 9636715 | 2022-04-25 09:40:19 +0200 | [diff] [blame] | 1660 | pn = frm->pkt->pn_node.key; |
Frédéric Lécaille | e2a1c1b | 2022-03-17 11:28:10 +0100 | [diff] [blame] | 1661 | quic_tx_packet_refdec(frm->pkt); |
Frédéric Lécaille | 9636715 | 2022-04-25 09:40:19 +0200 | [diff] [blame] | 1662 | /* At this time, this frame is not freed but removed from its packet */ |
Frédéric Lécaille | e2a1c1b | 2022-03-17 11:28:10 +0100 | [diff] [blame] | 1663 | frm->pkt = NULL; |
Frédéric Lécaille | 9636715 | 2022-04-25 09:40:19 +0200 | [diff] [blame] | 1664 | /* Remove any reference to this frame */ |
| 1665 | qc_frm_unref(qc, frm); |
| 1666 | switch (frm->type) { |
| 1667 | case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F: |
| 1668 | { |
| 1669 | struct quic_stream *strm_frm = &frm->stream; |
| 1670 | struct eb64_node *node = NULL; |
| 1671 | struct qc_stream_desc *stream_desc; |
| 1672 | |
| 1673 | node = eb64_lookup(&qc->streams_by_id, strm_frm->id); |
| 1674 | if (!node) { |
| 1675 | TRACE_PROTO("released stream", QUIC_EV_CONN_PRSAFRM, qc, strm_frm); |
| 1676 | TRACE_PROTO("freeing frame from packet", QUIC_EV_CONN_PRSAFRM, |
| 1677 | qc, frm, &pn); |
| 1678 | pool_free(pool_head_quic_frame, frm); |
| 1679 | continue; |
| 1680 | } |
| 1681 | |
| 1682 | stream_desc = eb64_entry(node, struct qc_stream_desc, by_id); |
| 1683 | /* Do not resend this frame if in the "already acked range" */ |
| 1684 | if (strm_frm->offset.key + strm_frm->len <= stream_desc->ack_offset) { |
| 1685 | TRACE_PROTO("ignored frame in already acked range", |
| 1686 | QUIC_EV_CONN_PRSAFRM, qc, frm); |
| 1687 | continue; |
| 1688 | } |
| 1689 | else if (strm_frm->offset.key < stream_desc->ack_offset) { |
| 1690 | strm_frm->offset.key = stream_desc->ack_offset; |
| 1691 | TRACE_PROTO("updated partially acked frame", |
| 1692 | QUIC_EV_CONN_PRSAFRM, qc, frm); |
| 1693 | } |
| 1694 | |
| 1695 | break; |
| 1696 | } |
| 1697 | |
| 1698 | default: |
| 1699 | break; |
| 1700 | } |
| 1701 | |
| 1702 | /* Do not resend probing packet with old data */ |
| 1703 | if (pkt->flags & QUIC_FL_TX_PACKET_PROBE_WITH_OLD_DATA) { |
| 1704 | TRACE_PROTO("ignored frame with old data from packet", QUIC_EV_CONN_PRSAFRM, |
| 1705 | qc, frm, &pn); |
| 1706 | if (frm->origin) |
| 1707 | LIST_DELETE(&frm->ref); |
| 1708 | pool_free(pool_head_quic_frame, frm); |
| 1709 | continue; |
| 1710 | } |
| 1711 | |
| 1712 | if (frm->flags & QUIC_FL_TX_FRAME_ACKED) { |
| 1713 | TRACE_PROTO("already acked frame", QUIC_EV_CONN_PRSAFRM, qc, frm); |
| 1714 | TRACE_PROTO("freeing frame from packet", QUIC_EV_CONN_PRSAFRM, |
| 1715 | qc, frm, &pn); |
| 1716 | pool_free(pool_head_quic_frame, frm); |
| 1717 | } |
| 1718 | else { |
| 1719 | TRACE_PROTO("to resend frame", QUIC_EV_CONN_PRSAFRM, qc, frm); |
Frédéric Lécaille | 77cb38d | 2022-04-27 07:17:56 +0200 | [diff] [blame^] | 1720 | if (QUIC_FT_STREAM_8 <= frm->type && frm->type <= QUIC_FT_STREAM_F) { |
| 1721 | /* Mark this STREAM frame as lost. A look up their stream descriptor |
| 1722 | * will be performed to check the stream is not consumed or released. |
| 1723 | */ |
| 1724 | fprintf(stderr, "LOST STREAM FRAME\n"); |
| 1725 | frm->flags = QUIC_FL_TX_FRAME_LOST; |
| 1726 | } |
Frédéric Lécaille | 9636715 | 2022-04-25 09:40:19 +0200 | [diff] [blame] | 1727 | LIST_APPEND(&tmp, &frm->list); |
| 1728 | } |
Frédéric Lécaille | 7065dd0 | 2022-01-14 15:51:52 +0100 | [diff] [blame] | 1729 | } |
| 1730 | |
Frédéric Lécaille | 82468ea | 2022-01-14 20:23:22 +0100 | [diff] [blame] | 1731 | LIST_SPLICE(pktns_frm_list, &tmp); |
Frédéric Lécaille | 7065dd0 | 2022-01-14 15:51:52 +0100 | [diff] [blame] | 1732 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1733 | |
Frédéric Lécaille | e2a1c1b | 2022-03-17 11:28:10 +0100 | [diff] [blame] | 1734 | /* Free <pkt> TX packet and its attached frames. |
| 1735 | * This is the responsability of the caller to remove this packet of |
| 1736 | * any data structure it was possibly attached to. |
| 1737 | */ |
| 1738 | static inline void free_quic_tx_packet(struct quic_tx_packet *pkt) |
| 1739 | { |
| 1740 | struct quic_frame *frm, *frmbak; |
| 1741 | |
| 1742 | if (!pkt) |
| 1743 | return; |
| 1744 | |
| 1745 | list_for_each_entry_safe(frm, frmbak, &pkt->frms, list) { |
| 1746 | LIST_DELETE(&frm->list); |
| 1747 | pool_free(pool_head_quic_frame, frm); |
| 1748 | } |
| 1749 | pool_free(pool_head_quic_tx_packet, pkt); |
| 1750 | } |
| 1751 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1752 | /* Free the TX packets of <pkts> list */ |
| 1753 | static inline void free_quic_tx_pkts(struct list *pkts) |
| 1754 | { |
| 1755 | struct quic_tx_packet *pkt, *tmp; |
| 1756 | |
| 1757 | list_for_each_entry_safe(pkt, tmp, pkts, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1758 | LIST_DELETE(&pkt->list); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1759 | eb64_delete(&pkt->pn_node); |
Frédéric Lécaille | e2a1c1b | 2022-03-17 11:28:10 +0100 | [diff] [blame] | 1760 | free_quic_tx_packet(pkt); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1761 | } |
| 1762 | } |
| 1763 | |
Frédéric Lécaille | 141982a | 2022-03-15 18:44:20 +0100 | [diff] [blame] | 1764 | /* Remove already sent ranges of acknowledged packet numbers from |
| 1765 | * <pktns> packet number space tree below <largest_acked_pn> possibly |
| 1766 | * updating the range which contains <largest_acked_pn>. |
| 1767 | * Never fails. |
| 1768 | */ |
| 1769 | static void qc_treat_ack_of_ack(struct quic_pktns *pktns, |
| 1770 | int64_t largest_acked_pn) |
| 1771 | { |
| 1772 | struct eb64_node *ar, *next_ar; |
| 1773 | struct quic_arngs *arngs = &pktns->rx.arngs; |
| 1774 | |
| 1775 | ar = eb64_first(&arngs->root); |
| 1776 | while (ar) { |
| 1777 | struct quic_arng_node *ar_node; |
| 1778 | |
| 1779 | next_ar = eb64_next(ar); |
| 1780 | ar_node = eb64_entry(&ar->node, struct quic_arng_node, first); |
| 1781 | if ((int64_t)ar_node->first.key > largest_acked_pn) |
| 1782 | break; |
| 1783 | |
| 1784 | if (largest_acked_pn < ar_node->last) { |
| 1785 | eb64_delete(ar); |
| 1786 | ar_node->first.key = largest_acked_pn + 1; |
| 1787 | eb64_insert(&arngs->root, ar); |
| 1788 | break; |
| 1789 | } |
| 1790 | |
| 1791 | eb64_delete(ar); |
| 1792 | pool_free(pool_head_quic_arng, ar_node); |
| 1793 | arngs->sz--; |
| 1794 | ar = next_ar; |
| 1795 | } |
| 1796 | } |
| 1797 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1798 | /* Send a packet ack event nofication for each newly acked packet of |
| 1799 | * <newly_acked_pkts> list and free them. |
| 1800 | * Always succeeds. |
| 1801 | */ |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 1802 | static inline void qc_treat_newly_acked_pkts(struct quic_conn *qc, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1803 | struct list *newly_acked_pkts) |
| 1804 | { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1805 | struct quic_tx_packet *pkt, *tmp; |
| 1806 | struct quic_cc_event ev = { .type = QUIC_CC_EVT_ACK, }; |
| 1807 | |
| 1808 | list_for_each_entry_safe(pkt, tmp, newly_acked_pkts, list) { |
| 1809 | pkt->pktns->tx.in_flight -= pkt->in_flight_len; |
Frédéric Lécaille | 04ffb66 | 2020-12-08 15:58:39 +0100 | [diff] [blame] | 1810 | qc->path->prep_in_flight -= pkt->in_flight_len; |
Frédéric Lécaille | ba9db40 | 2022-03-01 17:06:50 +0100 | [diff] [blame] | 1811 | qc->path->in_flight -= pkt->in_flight_len; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1812 | if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING) |
Frédéric Lécaille | f7e0b8d | 2020-12-16 17:33:11 +0100 | [diff] [blame] | 1813 | qc->path->ifae_pkts--; |
Frédéric Lécaille | 141982a | 2022-03-15 18:44:20 +0100 | [diff] [blame] | 1814 | /* If this packet contained an ACK frame, proceed to the |
| 1815 | * acknowledging of range of acks from the largest acknowledged |
| 1816 | * packet number which was sent in an ACK frame by this packet. |
| 1817 | */ |
| 1818 | if (pkt->largest_acked_pn != -1) |
| 1819 | qc_treat_ack_of_ack(pkt->pktns, pkt->largest_acked_pn); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1820 | ev.ack.acked = pkt->in_flight_len; |
| 1821 | ev.ack.time_sent = pkt->time_sent; |
| 1822 | quic_cc_event(&qc->path->cc, &ev); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1823 | LIST_DELETE(&pkt->list); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1824 | eb64_delete(&pkt->pn_node); |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 1825 | quic_tx_packet_refdec(pkt); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1826 | } |
| 1827 | |
| 1828 | } |
| 1829 | |
Frédéric Lécaille | e87524d | 2022-01-19 17:48:40 +0100 | [diff] [blame] | 1830 | /* Release all the frames attached to <pktns> packet number space */ |
| 1831 | static inline void qc_release_pktns_frms(struct quic_pktns *pktns) |
| 1832 | { |
| 1833 | struct quic_frame *frm, *frmbak; |
| 1834 | |
| 1835 | list_for_each_entry_safe(frm, frmbak, &pktns->tx.frms, list) { |
| 1836 | LIST_DELETE(&frm->list); |
| 1837 | pool_free(pool_head_quic_frame, frm); |
| 1838 | } |
| 1839 | } |
| 1840 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1841 | /* Handle <pkts> list of lost packets detected at <now_us> handling |
| 1842 | * their TX frames. |
| 1843 | * Send a packet loss event to the congestion controller if |
| 1844 | * in flight packet have been lost. |
| 1845 | * Also frees the packet in <pkts> list. |
| 1846 | * Never fails. |
| 1847 | */ |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 1848 | static inline void qc_release_lost_pkts(struct quic_conn *qc, |
| 1849 | struct quic_pktns *pktns, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1850 | struct list *pkts, |
| 1851 | uint64_t now_us) |
| 1852 | { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1853 | struct quic_tx_packet *pkt, *tmp, *oldest_lost, *newest_lost; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1854 | uint64_t lost_bytes; |
| 1855 | |
| 1856 | lost_bytes = 0; |
| 1857 | oldest_lost = newest_lost = NULL; |
| 1858 | list_for_each_entry_safe(pkt, tmp, pkts, list) { |
Frédéric Lécaille | 7065dd0 | 2022-01-14 15:51:52 +0100 | [diff] [blame] | 1859 | struct list tmp = LIST_HEAD_INIT(tmp); |
| 1860 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1861 | lost_bytes += pkt->in_flight_len; |
| 1862 | pkt->pktns->tx.in_flight -= pkt->in_flight_len; |
Frédéric Lécaille | 04ffb66 | 2020-12-08 15:58:39 +0100 | [diff] [blame] | 1863 | qc->path->prep_in_flight -= pkt->in_flight_len; |
Frédéric Lécaille | ba9db40 | 2022-03-01 17:06:50 +0100 | [diff] [blame] | 1864 | qc->path->in_flight -= pkt->in_flight_len; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1865 | if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING) |
Frédéric Lécaille | f7e0b8d | 2020-12-16 17:33:11 +0100 | [diff] [blame] | 1866 | qc->path->ifae_pkts--; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1867 | /* Treat the frames of this lost packet. */ |
Frédéric Lécaille | 9636715 | 2022-04-25 09:40:19 +0200 | [diff] [blame] | 1868 | qc_requeue_nacked_pkt_tx_frms(qc, pkt, &pktns->tx.frms); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1869 | LIST_DELETE(&pkt->list); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1870 | if (!oldest_lost) { |
| 1871 | oldest_lost = newest_lost = pkt; |
| 1872 | } |
| 1873 | else { |
| 1874 | if (newest_lost != oldest_lost) |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 1875 | quic_tx_packet_refdec(newest_lost); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1876 | newest_lost = pkt; |
| 1877 | } |
| 1878 | } |
| 1879 | |
Frédéric Lécaille | a5ee0ae | 2022-03-02 14:52:56 +0100 | [diff] [blame] | 1880 | if (newest_lost) { |
| 1881 | /* Sent a congestion event to the controller */ |
| 1882 | struct quic_cc_event ev = { |
| 1883 | .type = QUIC_CC_EVT_LOSS, |
| 1884 | .loss.time_sent = newest_lost->time_sent, |
| 1885 | }; |
| 1886 | |
| 1887 | quic_cc_event(&qc->path->cc, &ev); |
| 1888 | } |
| 1889 | |
| 1890 | /* If an RTT have been already sampled, <rtt_min> has been set. |
| 1891 | * We must check if we are experiencing a persistent congestion. |
| 1892 | * If this is the case, the congestion controller must re-enter |
| 1893 | * slow start state. |
| 1894 | */ |
| 1895 | if (qc->path->loss.rtt_min && newest_lost != oldest_lost) { |
| 1896 | unsigned int period = newest_lost->time_sent - oldest_lost->time_sent; |
| 1897 | |
| 1898 | if (quic_loss_persistent_congestion(&qc->path->loss, period, |
| 1899 | now_ms, qc->max_ack_delay)) |
| 1900 | qc->path->cc.algo->slow_start(&qc->path->cc); |
| 1901 | } |
| 1902 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1903 | if (lost_bytes) { |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 1904 | quic_tx_packet_refdec(oldest_lost); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1905 | if (newest_lost != oldest_lost) |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 1906 | quic_tx_packet_refdec(newest_lost); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1907 | } |
| 1908 | } |
| 1909 | |
| 1910 | /* Look for packet loss from sent packets for <qel> encryption level of a |
| 1911 | * connection with <ctx> as I/O handler context. If remove is true, remove them from |
| 1912 | * their tree if deemed as lost or set the <loss_time> value the packet number |
| 1913 | * space if any not deemed lost. |
| 1914 | * Should be called after having received an ACK frame with newly acknowledged |
| 1915 | * packets or when the the loss detection timer has expired. |
| 1916 | * Always succeeds. |
| 1917 | */ |
| 1918 | static void qc_packet_loss_lookup(struct quic_pktns *pktns, |
| 1919 | struct quic_conn *qc, |
| 1920 | struct list *lost_pkts) |
| 1921 | { |
| 1922 | struct eb_root *pkts; |
| 1923 | struct eb64_node *node; |
| 1924 | struct quic_loss *ql; |
| 1925 | unsigned int loss_delay; |
| 1926 | |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 1927 | TRACE_ENTER(QUIC_EV_CONN_PKTLOSS, qc, pktns); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1928 | pkts = &pktns->tx.pkts; |
| 1929 | pktns->tx.loss_time = TICK_ETERNITY; |
| 1930 | if (eb_is_empty(pkts)) |
| 1931 | goto out; |
| 1932 | |
| 1933 | ql = &qc->path->loss; |
| 1934 | loss_delay = QUIC_MAX(ql->latest_rtt, ql->srtt >> 3); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1935 | loss_delay = QUIC_MAX(loss_delay, MS_TO_TICKS(QUIC_TIMER_GRANULARITY)); |
| 1936 | |
| 1937 | node = eb64_first(pkts); |
| 1938 | while (node) { |
| 1939 | struct quic_tx_packet *pkt; |
| 1940 | int64_t largest_acked_pn; |
| 1941 | unsigned int loss_time_limit, time_sent; |
| 1942 | |
| 1943 | pkt = eb64_entry(&node->node, struct quic_tx_packet, pn_node); |
Frédéric Lécaille | 205e4f3 | 2022-03-28 17:38:27 +0200 | [diff] [blame] | 1944 | largest_acked_pn = pktns->rx.largest_acked_pn; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1945 | node = eb64_next(node); |
| 1946 | if ((int64_t)pkt->pn_node.key > largest_acked_pn) |
| 1947 | break; |
| 1948 | |
| 1949 | time_sent = pkt->time_sent; |
| 1950 | loss_time_limit = tick_add(time_sent, loss_delay); |
| 1951 | if (tick_is_le(time_sent, now_ms) || |
| 1952 | (int64_t)largest_acked_pn >= pkt->pn_node.key + QUIC_LOSS_PACKET_THRESHOLD) { |
| 1953 | eb64_delete(&pkt->pn_node); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1954 | LIST_APPEND(lost_pkts, &pkt->list); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1955 | } |
| 1956 | else { |
Frédéric Lécaille | dc90c07 | 2021-12-27 18:15:27 +0100 | [diff] [blame] | 1957 | if (tick_isset(pktns->tx.loss_time)) |
| 1958 | pktns->tx.loss_time = tick_first(pktns->tx.loss_time, loss_time_limit); |
| 1959 | else |
| 1960 | pktns->tx.loss_time = loss_time_limit; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1961 | } |
| 1962 | } |
| 1963 | |
| 1964 | out: |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 1965 | TRACE_LEAVE(QUIC_EV_CONN_PKTLOSS, qc, pktns, lost_pkts); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1966 | } |
| 1967 | |
| 1968 | /* Parse ACK frame into <frm> from a buffer at <buf> address with <end> being at |
| 1969 | * one byte past the end of this buffer. Also update <rtt_sample> if needed, i.e. |
Ilya Shipitsin | 1e9a666 | 2021-01-05 22:10:46 +0500 | [diff] [blame] | 1970 | * if the largest acked packet was newly acked and if there was at least one newly |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1971 | * acked ack-eliciting packet. |
| 1972 | * Return 1, if succeeded, 0 if not. |
| 1973 | */ |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 1974 | static inline int qc_parse_ack_frm(struct quic_conn *qc, |
| 1975 | struct quic_frame *frm, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1976 | struct quic_enc_level *qel, |
| 1977 | unsigned int *rtt_sample, |
| 1978 | const unsigned char **pos, const unsigned char *end) |
| 1979 | { |
| 1980 | struct quic_ack *ack = &frm->ack; |
| 1981 | uint64_t smallest, largest; |
| 1982 | struct eb_root *pkts; |
| 1983 | struct eb64_node *largest_node; |
| 1984 | unsigned int time_sent, pkt_flags; |
| 1985 | struct list newly_acked_pkts = LIST_HEAD_INIT(newly_acked_pkts); |
| 1986 | struct list lost_pkts = LIST_HEAD_INIT(lost_pkts); |
| 1987 | |
| 1988 | if (ack->largest_ack > qel->pktns->tx.next_pn) { |
| 1989 | TRACE_DEVEL("ACK for not sent packet", QUIC_EV_CONN_PRSAFRM, |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 1990 | qc, NULL, &ack->largest_ack); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1991 | goto err; |
| 1992 | } |
| 1993 | |
| 1994 | if (ack->first_ack_range > ack->largest_ack) { |
| 1995 | TRACE_DEVEL("too big first ACK range", QUIC_EV_CONN_PRSAFRM, |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 1996 | qc, NULL, &ack->first_ack_range); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 1997 | goto err; |
| 1998 | } |
| 1999 | |
| 2000 | largest = ack->largest_ack; |
| 2001 | smallest = largest - ack->first_ack_range; |
| 2002 | pkts = &qel->pktns->tx.pkts; |
| 2003 | pkt_flags = 0; |
| 2004 | largest_node = NULL; |
| 2005 | time_sent = 0; |
| 2006 | |
Frédéric Lécaille | 205e4f3 | 2022-03-28 17:38:27 +0200 | [diff] [blame] | 2007 | if ((int64_t)ack->largest_ack > qel->pktns->rx.largest_acked_pn) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2008 | largest_node = eb64_lookup(pkts, largest); |
| 2009 | if (!largest_node) { |
| 2010 | TRACE_DEVEL("Largest acked packet not found", |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 2011 | QUIC_EV_CONN_PRSAFRM, qc); |
Frédéric Lécaille | 83b7a5b | 2021-11-17 16:16:04 +0100 | [diff] [blame] | 2012 | } |
| 2013 | else { |
| 2014 | time_sent = eb64_entry(&largest_node->node, |
| 2015 | struct quic_tx_packet, pn_node)->time_sent; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2016 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2017 | } |
| 2018 | |
| 2019 | TRACE_PROTO("ack range", QUIC_EV_CONN_PRSAFRM, |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 2020 | qc, NULL, &largest, &smallest); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2021 | do { |
| 2022 | uint64_t gap, ack_range; |
| 2023 | |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 2024 | qc_ackrng_pkts(qc, pkts, &pkt_flags, &newly_acked_pkts, |
| 2025 | largest_node, largest, smallest); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2026 | if (!ack->ack_range_num--) |
| 2027 | break; |
| 2028 | |
| 2029 | if (!quic_dec_int(&gap, pos, end)) |
| 2030 | goto err; |
| 2031 | |
| 2032 | if (smallest < gap + 2) { |
| 2033 | TRACE_DEVEL("wrong gap value", QUIC_EV_CONN_PRSAFRM, |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 2034 | qc, NULL, &gap, &smallest); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2035 | goto err; |
| 2036 | } |
| 2037 | |
| 2038 | largest = smallest - gap - 2; |
| 2039 | if (!quic_dec_int(&ack_range, pos, end)) |
| 2040 | goto err; |
| 2041 | |
| 2042 | if (largest < ack_range) { |
| 2043 | TRACE_DEVEL("wrong ack range value", QUIC_EV_CONN_PRSAFRM, |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 2044 | qc, NULL, &largest, &ack_range); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2045 | goto err; |
| 2046 | } |
| 2047 | |
| 2048 | /* Do not use this node anymore. */ |
| 2049 | largest_node = NULL; |
| 2050 | /* Next range */ |
| 2051 | smallest = largest - ack_range; |
| 2052 | |
| 2053 | TRACE_PROTO("ack range", QUIC_EV_CONN_PRSAFRM, |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 2054 | qc, NULL, &largest, &smallest); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2055 | } while (1); |
| 2056 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2057 | if (time_sent && (pkt_flags & QUIC_FL_TX_PACKET_ACK_ELICITING)) { |
| 2058 | *rtt_sample = tick_remain(time_sent, now_ms); |
Frédéric Lécaille | 205e4f3 | 2022-03-28 17:38:27 +0200 | [diff] [blame] | 2059 | qel->pktns->rx.largest_acked_pn = ack->largest_ack; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2060 | } |
| 2061 | |
| 2062 | if (!LIST_ISEMPTY(&newly_acked_pkts)) { |
| 2063 | if (!eb_is_empty(&qel->pktns->tx.pkts)) { |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 2064 | qc_packet_loss_lookup(qel->pktns, qc, &lost_pkts); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2065 | if (!LIST_ISEMPTY(&lost_pkts)) |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 2066 | qc_release_lost_pkts(qc, qel->pktns, &lost_pkts, now_ms); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2067 | } |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 2068 | qc_treat_newly_acked_pkts(qc, &newly_acked_pkts); |
| 2069 | if (quic_peer_validated_addr(qc)) |
| 2070 | qc->path->loss.pto_count = 0; |
| 2071 | qc_set_timer(qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2072 | } |
| 2073 | |
| 2074 | |
| 2075 | return 1; |
| 2076 | |
| 2077 | err: |
| 2078 | free_quic_tx_pkts(&newly_acked_pkts); |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 2079 | TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PRSAFRM, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2080 | return 0; |
| 2081 | } |
| 2082 | |
Frédéric Lécaille | 6f0fadb | 2021-09-28 09:04:12 +0200 | [diff] [blame] | 2083 | /* This function gives the detail of the SSL error. It is used only |
| 2084 | * if the debug mode and the verbose mode are activated. It dump all |
| 2085 | * the SSL error until the stack was empty. |
| 2086 | */ |
| 2087 | static forceinline void qc_ssl_dump_errors(struct connection *conn) |
| 2088 | { |
| 2089 | if (unlikely(global.mode & MODE_DEBUG)) { |
| 2090 | while (1) { |
Willy Tarreau | 325fc63 | 2022-04-11 18:47:38 +0200 | [diff] [blame] | 2091 | const char *func = NULL; |
Frédéric Lécaille | 6f0fadb | 2021-09-28 09:04:12 +0200 | [diff] [blame] | 2092 | unsigned long ret; |
| 2093 | |
Willy Tarreau | 325fc63 | 2022-04-11 18:47:38 +0200 | [diff] [blame] | 2094 | ERR_peek_error_func(&func); |
Frédéric Lécaille | 6f0fadb | 2021-09-28 09:04:12 +0200 | [diff] [blame] | 2095 | ret = ERR_get_error(); |
| 2096 | if (!ret) |
| 2097 | return; |
| 2098 | |
| 2099 | fprintf(stderr, "conn. @%p OpenSSL error[0x%lx] %s: %s\n", conn, ret, |
Willy Tarreau | 325fc63 | 2022-04-11 18:47:38 +0200 | [diff] [blame] | 2100 | func, ERR_reason_error_string(ret)); |
Frédéric Lécaille | 6f0fadb | 2021-09-28 09:04:12 +0200 | [diff] [blame] | 2101 | } |
| 2102 | } |
| 2103 | } |
| 2104 | |
Amaury Denoyelle | 71e588c | 2021-11-12 11:23:29 +0100 | [diff] [blame] | 2105 | int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx, |
| 2106 | const char **str, int *len); |
| 2107 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2108 | /* Provide CRYPTO data to the TLS stack found at <data> with <len> as length |
| 2109 | * from <qel> encryption level with <ctx> as QUIC connection context. |
Ilya Shipitsin | 1e9a666 | 2021-01-05 22:10:46 +0500 | [diff] [blame] | 2110 | * Remaining parameter are there for debugging purposes. |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2111 | * Return 1 if succeeded, 0 if not. |
| 2112 | */ |
| 2113 | static inline int qc_provide_cdata(struct quic_enc_level *el, |
Frédéric Lécaille | 1eaec33 | 2021-06-04 14:59:59 +0200 | [diff] [blame] | 2114 | struct ssl_sock_ctx *ctx, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2115 | const unsigned char *data, size_t len, |
| 2116 | struct quic_rx_packet *pkt, |
| 2117 | struct quic_rx_crypto_frm *cf) |
| 2118 | { |
Frédéric Lécaille | eed7a7d | 2021-08-18 09:16:01 +0200 | [diff] [blame] | 2119 | int ssl_err, state; |
Frédéric Lécaille | a5fe49f | 2021-06-04 11:52:35 +0200 | [diff] [blame] | 2120 | struct quic_conn *qc; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2121 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2122 | ssl_err = SSL_ERROR_NONE; |
Amaury Denoyelle | c15dd92 | 2021-12-21 11:41:52 +0100 | [diff] [blame] | 2123 | qc = ctx->qc; |
| 2124 | |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 2125 | TRACE_ENTER(QUIC_EV_CONN_SSLDATA, qc); |
| 2126 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2127 | if (SSL_provide_quic_data(ctx->ssl, el->level, data, len) != 1) { |
| 2128 | TRACE_PROTO("SSL_provide_quic_data() error", |
Frédéric Lécaille | fde2a98 | 2021-12-27 15:12:09 +0100 | [diff] [blame] | 2129 | QUIC_EV_CONN_SSLDATA, qc, pkt, cf, ctx->ssl); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2130 | goto err; |
| 2131 | } |
| 2132 | |
| 2133 | el->rx.crypto.offset += len; |
| 2134 | TRACE_PROTO("in order CRYPTO data", |
Frédéric Lécaille | e7ff2b2 | 2021-12-22 17:40:38 +0100 | [diff] [blame] | 2135 | QUIC_EV_CONN_SSLDATA, qc, NULL, cf, ctx->ssl); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2136 | |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 2137 | state = qc->state; |
Frédéric Lécaille | eed7a7d | 2021-08-18 09:16:01 +0200 | [diff] [blame] | 2138 | if (state < QUIC_HS_ST_COMPLETE) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2139 | ssl_err = SSL_do_handshake(ctx->ssl); |
| 2140 | if (ssl_err != 1) { |
| 2141 | ssl_err = SSL_get_error(ctx->ssl, ssl_err); |
| 2142 | if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) { |
| 2143 | TRACE_PROTO("SSL handshake", |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 2144 | QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2145 | goto out; |
| 2146 | } |
| 2147 | |
| 2148 | TRACE_DEVEL("SSL handshake error", |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 2149 | QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err); |
Frédéric Lécaille | 7c881bd | 2021-09-28 09:05:59 +0200 | [diff] [blame] | 2150 | qc_ssl_dump_errors(ctx->conn); |
Frédéric Lécaille | 66cbb82 | 2021-11-17 11:56:21 +0100 | [diff] [blame] | 2151 | ERR_clear_error(); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2152 | goto err; |
| 2153 | } |
| 2154 | |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 2155 | TRACE_PROTO("SSL handshake OK", QUIC_EV_CONN_IO_CB, qc, &state); |
Frédéric Lécaille | bc964bd | 2022-04-13 16:20:09 +0200 | [diff] [blame] | 2156 | |
| 2157 | /* Check the alpn could be negotiated */ |
| 2158 | if (!qc->app_ops) { |
| 2159 | TRACE_PROTO("No ALPN", QUIC_EV_CONN_IO_CB, qc, &state); |
| 2160 | quic_set_tls_alert(qc, SSL_AD_NO_APPLICATION_PROTOCOL); |
| 2161 | goto err; |
| 2162 | } |
| 2163 | |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 2164 | /* I/O callback switch */ |
| 2165 | ctx->wait_event.tasklet->process = quic_conn_app_io_cb; |
Amaury Denoyelle | cfa2d56 | 2022-01-19 16:01:05 +0100 | [diff] [blame] | 2166 | if (qc_is_listener(ctx->qc)) { |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 2167 | qc->state = QUIC_HS_ST_CONFIRMED; |
Amaury Denoyelle | cfa2d56 | 2022-01-19 16:01:05 +0100 | [diff] [blame] | 2168 | /* The connection is ready to be accepted. */ |
| 2169 | quic_accept_push_qc(qc); |
| 2170 | } |
| 2171 | else { |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 2172 | qc->state = QUIC_HS_ST_COMPLETE; |
Amaury Denoyelle | cfa2d56 | 2022-01-19 16:01:05 +0100 | [diff] [blame] | 2173 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2174 | } else { |
| 2175 | ssl_err = SSL_process_quic_post_handshake(ctx->ssl); |
| 2176 | if (ssl_err != 1) { |
| 2177 | ssl_err = SSL_get_error(ctx->ssl, ssl_err); |
| 2178 | if (ssl_err == SSL_ERROR_WANT_READ || ssl_err == SSL_ERROR_WANT_WRITE) { |
| 2179 | TRACE_DEVEL("SSL post handshake", |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 2180 | QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2181 | goto out; |
| 2182 | } |
| 2183 | |
| 2184 | TRACE_DEVEL("SSL post handshake error", |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 2185 | QUIC_EV_CONN_IO_CB, qc, &state, &ssl_err); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2186 | goto err; |
| 2187 | } |
| 2188 | |
| 2189 | TRACE_PROTO("SSL post handshake succeeded", |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 2190 | QUIC_EV_CONN_IO_CB, qc, &state); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2191 | } |
Amaury Denoyelle | e2288c3 | 2021-12-03 14:44:21 +0100 | [diff] [blame] | 2192 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2193 | out: |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 2194 | TRACE_LEAVE(QUIC_EV_CONN_SSLDATA, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2195 | return 1; |
| 2196 | |
| 2197 | err: |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 2198 | TRACE_DEVEL("leaving in error", QUIC_EV_CONN_SSLDATA, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2199 | return 0; |
| 2200 | } |
| 2201 | |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2202 | /* Allocate a new STREAM RX frame from <stream_fm> STREAM frame attached to |
| 2203 | * <pkt> RX packet. |
| 2204 | * Return it if succeeded, NULL if not. |
| 2205 | */ |
| 2206 | static inline |
| 2207 | struct quic_rx_strm_frm *new_quic_rx_strm_frm(struct quic_stream *stream_frm, |
| 2208 | struct quic_rx_packet *pkt) |
| 2209 | { |
| 2210 | struct quic_rx_strm_frm *frm; |
| 2211 | |
| 2212 | frm = pool_alloc(pool_head_quic_rx_strm_frm); |
| 2213 | if (frm) { |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 2214 | frm->offset_node.key = stream_frm->offset.key; |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2215 | frm->len = stream_frm->len; |
| 2216 | frm->data = stream_frm->data; |
| 2217 | frm->pkt = pkt; |
Amaury Denoyelle | 3c43039 | 2022-02-28 11:38:36 +0100 | [diff] [blame] | 2218 | frm->fin = stream_frm->fin; |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2219 | } |
| 2220 | |
| 2221 | return frm; |
| 2222 | } |
| 2223 | |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2224 | /* Copy as most as possible STREAM data from <strm_frm> into <strm> stream. |
Frédéric Lécaille | 3fe7df8 | 2021-12-15 15:32:55 +0100 | [diff] [blame] | 2225 | * Also update <strm_frm> frame to reflect the data which have been consumed. |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2226 | */ |
| 2227 | static size_t qc_strm_cpy(struct buffer *buf, struct quic_stream *strm_frm) |
| 2228 | { |
| 2229 | size_t ret; |
| 2230 | |
Amaury Denoyelle | 2d2d030 | 2022-02-28 10:00:54 +0100 | [diff] [blame] | 2231 | ret = b_putblk(buf, (char *)strm_frm->data, strm_frm->len); |
| 2232 | strm_frm->len -= ret; |
| 2233 | strm_frm->offset.key += ret; |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2234 | |
| 2235 | return ret; |
| 2236 | } |
| 2237 | |
| 2238 | /* Handle <strm_frm> bidirectional STREAM frame. Depending on its ID, several |
| 2239 | * streams may be open. The data are copied to the stream RX buffer if possible. |
| 2240 | * If not, the STREAM frame is stored to be treated again later. |
| 2241 | * We rely on the flow control so that not to store too much STREAM frames. |
| 2242 | * Return 1 if succeeded, 0 if not. |
| 2243 | */ |
| 2244 | static int qc_handle_bidi_strm_frm(struct quic_rx_packet *pkt, |
| 2245 | struct quic_stream *strm_frm, |
| 2246 | struct quic_conn *qc) |
| 2247 | { |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2248 | struct quic_rx_strm_frm *frm; |
Amaury Denoyelle | 0e3010b | 2022-02-28 11:37:48 +0100 | [diff] [blame] | 2249 | struct eb64_node *frm_node; |
| 2250 | struct qcs *qcs = NULL; |
Amaury Denoyelle | 03cc62c | 2022-04-27 16:53:16 +0200 | [diff] [blame] | 2251 | size_t done, buf_was_full; |
Amaury Denoyelle | 0e3010b | 2022-02-28 11:37:48 +0100 | [diff] [blame] | 2252 | int ret; |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2253 | |
Amaury Denoyelle | 0e3010b | 2022-02-28 11:37:48 +0100 | [diff] [blame] | 2254 | ret = qcc_recv(qc->qcc, strm_frm->id, strm_frm->len, |
| 2255 | strm_frm->offset.key, strm_frm->fin, |
Amaury Denoyelle | 3df8ca0 | 2022-04-26 11:36:40 +0200 | [diff] [blame] | 2256 | (char *)strm_frm->data, &qcs, &done); |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2257 | |
Amaury Denoyelle | 0e3010b | 2022-02-28 11:37:48 +0100 | [diff] [blame] | 2258 | /* invalid or already received frame */ |
| 2259 | if (ret == 1) |
Amaury Denoyelle | 20f89ca | 2022-03-08 10:48:35 +0100 | [diff] [blame] | 2260 | return 1; |
Frédéric Lécaille | 10250b2 | 2021-12-22 16:13:43 +0100 | [diff] [blame] | 2261 | |
Amaury Denoyelle | 0e3010b | 2022-02-28 11:37:48 +0100 | [diff] [blame] | 2262 | if (ret == 2) { |
| 2263 | /* frame cannot be parsed at the moment and should be |
| 2264 | * buffered. |
| 2265 | */ |
| 2266 | frm = new_quic_rx_strm_frm(strm_frm, pkt); |
| 2267 | if (!frm) { |
| 2268 | TRACE_PROTO("Could not alloc RX STREAM frame", |
Frédéric Lécaille | 10250b2 | 2021-12-22 16:13:43 +0100 | [diff] [blame] | 2269 | QUIC_EV_CONN_PSTRM, qc); |
Amaury Denoyelle | 0e3010b | 2022-02-28 11:37:48 +0100 | [diff] [blame] | 2270 | return 0; |
Frédéric Lécaille | 10250b2 | 2021-12-22 16:13:43 +0100 | [diff] [blame] | 2271 | } |
| 2272 | |
Amaury Denoyelle | 3df8ca0 | 2022-04-26 11:36:40 +0200 | [diff] [blame] | 2273 | if (done) { |
| 2274 | BUG_ON(done >= frm->len); /* must never happen */ |
| 2275 | frm->len -= done; |
| 2276 | frm->data += done; |
| 2277 | frm->offset_node.key += done; |
| 2278 | } |
| 2279 | |
Amaury Denoyelle | 0e3010b | 2022-02-28 11:37:48 +0100 | [diff] [blame] | 2280 | eb64_insert(&qcs->rx.frms, &frm->offset_node); |
| 2281 | quic_rx_packet_refinc(pkt); |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2282 | |
Amaury Denoyelle | 3df8ca0 | 2022-04-26 11:36:40 +0200 | [diff] [blame] | 2283 | /* interrupt only if frame was not received at all. */ |
| 2284 | if (!done) |
| 2285 | return 1; |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2286 | } |
| 2287 | |
Amaury Denoyelle | 03cc62c | 2022-04-27 16:53:16 +0200 | [diff] [blame] | 2288 | /* Decode the data if buffer is already full as it's not possible to |
| 2289 | * dequeue a frame in this condition. |
| 2290 | */ |
| 2291 | if (b_full(&qcs->rx.buf)) |
| 2292 | qcc_decode_qcs(qc->qcc, qcs); |
| 2293 | |
| 2294 | retry: |
Amaury Denoyelle | 3df8ca0 | 2022-04-26 11:36:40 +0200 | [diff] [blame] | 2295 | /* Frame received (partially or not) by the mux. |
Amaury Denoyelle | 0e3010b | 2022-02-28 11:37:48 +0100 | [diff] [blame] | 2296 | * If there is buffered frame for next offset, it may be possible to |
| 2297 | * receive them now. |
| 2298 | */ |
| 2299 | frm_node = eb64_first(&qcs->rx.frms); |
| 2300 | while (frm_node) { |
| 2301 | frm = eb64_entry(&frm_node->node, |
| 2302 | struct quic_rx_strm_frm, offset_node); |
Amaury Denoyelle | 3c43039 | 2022-02-28 11:38:36 +0100 | [diff] [blame] | 2303 | |
Amaury Denoyelle | d8e680c | 2022-03-29 15:18:44 +0200 | [diff] [blame] | 2304 | ret = qcc_recv(qc->qcc, qcs->id, frm->len, |
Amaury Denoyelle | 0e3010b | 2022-02-28 11:37:48 +0100 | [diff] [blame] | 2305 | frm->offset_node.key, frm->fin, |
Amaury Denoyelle | 3df8ca0 | 2022-04-26 11:36:40 +0200 | [diff] [blame] | 2306 | (char *)frm->data, &qcs, &done); |
Frédéric Lécaille | f1d38cb | 2021-12-20 12:02:13 +0100 | [diff] [blame] | 2307 | |
Amaury Denoyelle | 3df8ca0 | 2022-04-26 11:36:40 +0200 | [diff] [blame] | 2308 | /* interrupt the parsing if the frame cannot be handled |
| 2309 | * entirely for the moment only. |
Amaury Denoyelle | 0e3010b | 2022-02-28 11:37:48 +0100 | [diff] [blame] | 2310 | */ |
Amaury Denoyelle | 3df8ca0 | 2022-04-26 11:36:40 +0200 | [diff] [blame] | 2311 | if (ret == 2) { |
| 2312 | if (done) { |
| 2313 | BUG_ON(done >= frm->len); /* must never happen */ |
| 2314 | frm->len -= done; |
| 2315 | frm->data += done; |
| 2316 | |
| 2317 | eb64_delete(&frm->offset_node); |
| 2318 | frm->offset_node.key += done; |
| 2319 | eb64_insert(&qcs->rx.frms, &frm->offset_node); |
| 2320 | } |
Amaury Denoyelle | 0e3010b | 2022-02-28 11:37:48 +0100 | [diff] [blame] | 2321 | break; |
Amaury Denoyelle | 3df8ca0 | 2022-04-26 11:36:40 +0200 | [diff] [blame] | 2322 | } |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2323 | |
Amaury Denoyelle | 0e3010b | 2022-02-28 11:37:48 +0100 | [diff] [blame] | 2324 | /* Remove a newly received frame or an invalid one. */ |
| 2325 | frm_node = eb64_next(frm_node); |
| 2326 | eb64_delete(&frm->offset_node); |
| 2327 | quic_rx_packet_refdec(frm->pkt); |
| 2328 | pool_free(pool_head_quic_rx_strm_frm, frm); |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2329 | } |
| 2330 | |
Amaury Denoyelle | 03cc62c | 2022-04-27 16:53:16 +0200 | [diff] [blame] | 2331 | buf_was_full = b_full(&qcs->rx.buf); |
Amaury Denoyelle | 0e3010b | 2022-02-28 11:37:48 +0100 | [diff] [blame] | 2332 | /* Decode the received data. */ |
Amaury Denoyelle | 20f89ca | 2022-03-08 10:48:35 +0100 | [diff] [blame] | 2333 | qcc_decode_qcs(qc->qcc, qcs); |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2334 | |
Amaury Denoyelle | 03cc62c | 2022-04-27 16:53:16 +0200 | [diff] [blame] | 2335 | /* Buffer was full so the reception was stopped. Now the buffer has |
| 2336 | * space available thanks to qcc_decode_qcs(). We can now retry to |
| 2337 | * handle more data. |
| 2338 | */ |
| 2339 | if (buf_was_full && !b_full(&qcs->rx.buf)) |
| 2340 | goto retry; |
| 2341 | |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2342 | return 1; |
| 2343 | } |
| 2344 | |
| 2345 | /* Handle <strm_frm> unidirectional STREAM frame. Depending on its ID, several |
| 2346 | * streams may be open. The data are copied to the stream RX buffer if possible. |
| 2347 | * If not, the STREAM frame is stored to be treated again later. |
| 2348 | * We rely on the flow control so that not to store too much STREAM frames. |
| 2349 | * Return 1 if succeeded, 0 if not. |
| 2350 | */ |
| 2351 | static int qc_handle_uni_strm_frm(struct quic_rx_packet *pkt, |
| 2352 | struct quic_stream *strm_frm, |
| 2353 | struct quic_conn *qc) |
| 2354 | { |
| 2355 | struct qcs *strm; |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2356 | struct quic_rx_strm_frm *frm; |
| 2357 | size_t strm_frm_len; |
| 2358 | |
Amaury Denoyelle | 5074229 | 2022-03-29 14:57:19 +0200 | [diff] [blame] | 2359 | strm = qcc_get_qcs(qc->qcc, strm_frm->id); |
| 2360 | if (!strm) { |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 2361 | TRACE_PROTO("Stream not found", QUIC_EV_CONN_PSTRM, qc); |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2362 | return 0; |
| 2363 | } |
| 2364 | |
Frédéric Lécaille | 10250b2 | 2021-12-22 16:13:43 +0100 | [diff] [blame] | 2365 | if (strm_frm->offset.key < strm->rx.offset) { |
| 2366 | size_t diff; |
| 2367 | |
| 2368 | if (strm_frm->offset.key + strm_frm->len <= strm->rx.offset) { |
| 2369 | TRACE_PROTO("Already received STREAM data", |
| 2370 | QUIC_EV_CONN_PSTRM, qc); |
| 2371 | goto out; |
| 2372 | } |
| 2373 | |
| 2374 | TRACE_PROTO("Partially already received STREAM data", QUIC_EV_CONN_PSTRM, qc); |
| 2375 | diff = strm->rx.offset - strm_frm->offset.key; |
| 2376 | strm_frm->offset.key = strm->rx.offset; |
| 2377 | strm_frm->len -= diff; |
| 2378 | strm_frm->data += diff; |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2379 | } |
| 2380 | |
| 2381 | strm_frm_len = strm_frm->len; |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 2382 | if (strm_frm->offset.key == strm->rx.offset) { |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2383 | int ret; |
| 2384 | |
Amaury Denoyelle | 1e308ff | 2021-10-12 18:14:12 +0200 | [diff] [blame] | 2385 | if (!qc_get_buf(strm, &strm->rx.buf)) |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2386 | goto store_frm; |
| 2387 | |
| 2388 | /* qc_strm_cpy() will modify the offset, depending on the number |
| 2389 | * of bytes copied. |
| 2390 | */ |
| 2391 | ret = qc_strm_cpy(&strm->rx.buf, strm_frm); |
| 2392 | /* Inform the application of the arrival of this new stream */ |
| 2393 | if (!strm->rx.offset && !qc->qcc->app_ops->attach_ruqs(strm, qc->qcc->ctx)) { |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 2394 | TRACE_PROTO("Could not set an uni-stream", QUIC_EV_CONN_PSTRM, qc); |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2395 | return 0; |
| 2396 | } |
| 2397 | |
Amaury Denoyelle | a3f222d | 2021-12-06 11:24:00 +0100 | [diff] [blame] | 2398 | if (ret) |
| 2399 | qcs_notify_recv(strm); |
| 2400 | |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 2401 | strm_frm->offset.key += ret; |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2402 | } |
| 2403 | /* Take this frame into an account for the stream flow control */ |
| 2404 | strm->rx.offset += strm_frm_len; |
| 2405 | /* It all the data were provided to the application, there is no need to |
Ilya Shipitsin | bd6b4be | 2021-10-15 16:18:21 +0500 | [diff] [blame] | 2406 | * store any more information for it. |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2407 | */ |
| 2408 | if (!strm_frm->len) |
| 2409 | goto out; |
| 2410 | |
| 2411 | store_frm: |
| 2412 | frm = new_quic_rx_strm_frm(strm_frm, pkt); |
| 2413 | if (!frm) { |
| 2414 | TRACE_PROTO("Could not alloc RX STREAM frame", |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 2415 | QUIC_EV_CONN_PSTRM, qc); |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2416 | return 0; |
| 2417 | } |
| 2418 | |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 2419 | eb64_insert(&strm->rx.frms, &frm->offset_node); |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2420 | quic_rx_packet_refinc(pkt); |
| 2421 | |
| 2422 | out: |
| 2423 | return 1; |
| 2424 | } |
| 2425 | |
| 2426 | static inline int qc_handle_strm_frm(struct quic_rx_packet *pkt, |
| 2427 | struct quic_stream *strm_frm, |
| 2428 | struct quic_conn *qc) |
| 2429 | { |
| 2430 | if (strm_frm->id & QCS_ID_DIR_BIT) |
| 2431 | return qc_handle_uni_strm_frm(pkt, strm_frm, qc); |
| 2432 | else |
| 2433 | return qc_handle_bidi_strm_frm(pkt, strm_frm, qc); |
| 2434 | } |
| 2435 | |
Frédéric Lécaille | a956841 | 2022-04-25 08:58:04 +0200 | [diff] [blame] | 2436 | /* Duplicate all frames from <pkt_frm_list> list into <out_frm_list> list |
| 2437 | * for <qc> QUIC connection. |
| 2438 | * This is a best effort function which never fails even if no memory could be |
| 2439 | * allocated to duplicate these frames. |
| 2440 | */ |
| 2441 | static void qc_dup_pkt_frms(struct quic_conn *qc, |
| 2442 | struct list *pkt_frm_list, struct list *out_frm_list) |
| 2443 | { |
| 2444 | struct quic_frame *frm, *frmbak; |
| 2445 | struct list tmp = LIST_HEAD_INIT(tmp); |
| 2446 | |
| 2447 | list_for_each_entry_safe(frm, frmbak, pkt_frm_list, list) { |
| 2448 | struct quic_frame *dup_frm, *origin; |
| 2449 | |
| 2450 | switch (frm->type) { |
| 2451 | case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F: |
| 2452 | { |
| 2453 | struct quic_stream *strm_frm = &frm->stream; |
| 2454 | struct eb64_node *node = NULL; |
| 2455 | struct qc_stream_desc *stream_desc; |
| 2456 | |
| 2457 | node = eb64_lookup(&qc->streams_by_id, strm_frm->id); |
| 2458 | if (!node) { |
| 2459 | TRACE_PROTO("released stream", QUIC_EV_CONN_PRSAFRM, qc, strm_frm); |
| 2460 | continue; |
| 2461 | } |
| 2462 | |
| 2463 | stream_desc = eb64_entry(node, struct qc_stream_desc, by_id); |
| 2464 | /* Do not resend this frame if in the "already acked range" */ |
| 2465 | if (strm_frm->offset.key + strm_frm->len <= stream_desc->ack_offset) { |
| 2466 | TRACE_PROTO("ignored frame frame in already acked range", |
| 2467 | QUIC_EV_CONN_PRSAFRM, qc, frm); |
| 2468 | continue; |
| 2469 | } |
| 2470 | else if (strm_frm->offset.key < stream_desc->ack_offset) { |
| 2471 | strm_frm->offset.key = stream_desc->ack_offset; |
| 2472 | TRACE_PROTO("updated partially acked frame", |
| 2473 | QUIC_EV_CONN_PRSAFRM, qc, frm); |
| 2474 | } |
| 2475 | |
| 2476 | break; |
| 2477 | } |
| 2478 | |
| 2479 | default: |
| 2480 | break; |
| 2481 | } |
| 2482 | |
| 2483 | dup_frm = pool_zalloc(pool_head_quic_frame); |
| 2484 | if (!dup_frm) { |
| 2485 | TRACE_PROTO("could not duplicate frame", QUIC_EV_CONN_PRSAFRM, qc, frm); |
| 2486 | break; |
| 2487 | } |
| 2488 | |
| 2489 | /* If <frm> is already a copy of another frame, we must take |
| 2490 | * its original frame as source for the copy. |
| 2491 | */ |
| 2492 | origin = frm->origin ? frm->origin : frm; |
| 2493 | TRACE_PROTO("probing frame", QUIC_EV_CONN_PRSAFRM, qc, origin); |
| 2494 | *dup_frm = *origin; |
| 2495 | LIST_INIT(&dup_frm->reflist); |
| 2496 | TRACE_PROTO("copied from packet", QUIC_EV_CONN_PRSAFRM, |
| 2497 | qc, NULL, &origin->pkt->pn_node.key); |
| 2498 | dup_frm->origin = origin; |
| 2499 | LIST_APPEND(&origin->reflist, &dup_frm->ref); |
| 2500 | LIST_APPEND(&tmp, &dup_frm->list); |
| 2501 | } |
| 2502 | |
| 2503 | LIST_SPLICE(out_frm_list, &tmp); |
| 2504 | } |
| 2505 | |
Frédéric Lécaille | 04e63aa | 2022-01-17 18:16:27 +0100 | [diff] [blame] | 2506 | /* Prepare a fast retransmission from <qel> encryption level */ |
Frédéric Lécaille | e248e37 | 2022-04-25 09:25:56 +0200 | [diff] [blame] | 2507 | static void qc_prep_fast_retrans(struct quic_conn *qc, |
| 2508 | struct quic_enc_level *qel, |
| 2509 | struct list *frms1, struct list *frms2) |
Frédéric Lécaille | 3bb457c | 2021-12-30 16:14:20 +0100 | [diff] [blame] | 2510 | { |
| 2511 | struct eb_root *pkts = &qel->pktns->tx.pkts; |
Frédéric Lécaille | e248e37 | 2022-04-25 09:25:56 +0200 | [diff] [blame] | 2512 | struct list *frms = frms1; |
Frédéric Lécaille | 04e63aa | 2022-01-17 18:16:27 +0100 | [diff] [blame] | 2513 | struct eb64_node *node; |
Frédéric Lécaille | 3bb457c | 2021-12-30 16:14:20 +0100 | [diff] [blame] | 2514 | struct quic_tx_packet *pkt; |
Frédéric Lécaille | 3bb457c | 2021-12-30 16:14:20 +0100 | [diff] [blame] | 2515 | |
Frédéric Lécaille | f010f0a | 2022-01-06 17:28:05 +0100 | [diff] [blame] | 2516 | pkt = NULL; |
Frédéric Lécaille | 3bb457c | 2021-12-30 16:14:20 +0100 | [diff] [blame] | 2517 | node = eb64_first(pkts); |
Frédéric Lécaille | e248e37 | 2022-04-25 09:25:56 +0200 | [diff] [blame] | 2518 | start: |
Frédéric Lécaille | f010f0a | 2022-01-06 17:28:05 +0100 | [diff] [blame] | 2519 | while (node) { |
Frédéric Lécaille | e248e37 | 2022-04-25 09:25:56 +0200 | [diff] [blame] | 2520 | pkt = eb64_entry(node, struct quic_tx_packet, pn_node); |
| 2521 | node = eb64_next(node); |
| 2522 | /* Skip the empty and coalesced packets */ |
Frédéric Lécaille | b44cbc6 | 2022-04-21 17:58:46 +0200 | [diff] [blame] | 2523 | if (!LIST_ISEMPTY(&pkt->frms) && !(pkt->flags & QUIC_FL_TX_PACKET_COALESCED)) |
Frédéric Lécaille | f010f0a | 2022-01-06 17:28:05 +0100 | [diff] [blame] | 2524 | break; |
Frédéric Lécaille | f010f0a | 2022-01-06 17:28:05 +0100 | [diff] [blame] | 2525 | } |
| 2526 | |
| 2527 | if (!pkt) |
Frédéric Lécaille | 3bb457c | 2021-12-30 16:14:20 +0100 | [diff] [blame] | 2528 | return; |
| 2529 | |
Frédéric Lécaille | 12fd259 | 2022-03-31 08:42:06 +0200 | [diff] [blame] | 2530 | /* When building a packet from another one, the field which may increase the |
| 2531 | * packet size is the packet number. And the maximum increase is 4 bytes. |
| 2532 | */ |
| 2533 | if (!quic_peer_validated_addr(qc) && qc_is_listener(qc) && |
| 2534 | pkt->len + 4 > 3 * qc->rx.bytes - qc->tx.prep_bytes) { |
| 2535 | TRACE_PROTO("anti-amplification limit would be reached", QUIC_EV_CONN_PRSAFRM, qc); |
| 2536 | return; |
| 2537 | } |
| 2538 | |
Frédéric Lécaille | e248e37 | 2022-04-25 09:25:56 +0200 | [diff] [blame] | 2539 | TRACE_PROTO("duplicating packet", QUIC_EV_CONN_PRSAFRM, qc, NULL, &pkt->pn_node.key); |
| 2540 | qc_dup_pkt_frms(qc, &pkt->frms, frms); |
| 2541 | if (frms == frms1 && frms2) { |
| 2542 | frms = frms2; |
| 2543 | goto start; |
| 2544 | } |
Frédéric Lécaille | 04e63aa | 2022-01-17 18:16:27 +0100 | [diff] [blame] | 2545 | } |
| 2546 | |
Frédéric Lécaille | e248e37 | 2022-04-25 09:25:56 +0200 | [diff] [blame] | 2547 | /* Prepare a fast retransmission during a handshake after a client |
Frédéric Lécaille | 04e63aa | 2022-01-17 18:16:27 +0100 | [diff] [blame] | 2548 | * has resent Initial packets. According to the RFC a server may retransmit |
Frédéric Lécaille | e248e37 | 2022-04-25 09:25:56 +0200 | [diff] [blame] | 2549 | * Initial packets send them coalescing with others (Handshake here). |
| 2550 | * (Listener only function). |
Frédéric Lécaille | 04e63aa | 2022-01-17 18:16:27 +0100 | [diff] [blame] | 2551 | */ |
Frédéric Lécaille | e248e37 | 2022-04-25 09:25:56 +0200 | [diff] [blame] | 2552 | static void qc_prep_hdshk_fast_retrans(struct quic_conn *qc, |
| 2553 | struct list *ifrms, struct list *hfrms) |
Frédéric Lécaille | 04e63aa | 2022-01-17 18:16:27 +0100 | [diff] [blame] | 2554 | { |
| 2555 | struct list itmp = LIST_HEAD_INIT(itmp); |
| 2556 | struct list htmp = LIST_HEAD_INIT(htmp); |
Frédéric Lécaille | 04e63aa | 2022-01-17 18:16:27 +0100 | [diff] [blame] | 2557 | |
| 2558 | struct quic_enc_level *iqel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]; |
| 2559 | struct quic_enc_level *hqel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]; |
| 2560 | struct quic_enc_level *qel = iqel; |
| 2561 | struct eb_root *pkts; |
| 2562 | struct eb64_node *node; |
| 2563 | struct quic_tx_packet *pkt; |
| 2564 | struct list *tmp = &itmp; |
| 2565 | |
| 2566 | start: |
| 2567 | pkt = NULL; |
| 2568 | pkts = &qel->pktns->tx.pkts; |
| 2569 | node = eb64_first(pkts); |
| 2570 | /* Skip the empty packet (they have already been retransmitted) */ |
| 2571 | while (node) { |
| 2572 | pkt = eb64_entry(&node->node, struct quic_tx_packet, pn_node); |
Frédéric Lécaille | b44cbc6 | 2022-04-21 17:58:46 +0200 | [diff] [blame] | 2573 | if (!LIST_ISEMPTY(&pkt->frms) && !(pkt->flags & QUIC_FL_TX_PACKET_COALESCED)) |
Frédéric Lécaille | 04e63aa | 2022-01-17 18:16:27 +0100 | [diff] [blame] | 2574 | break; |
| 2575 | node = eb64_next(node); |
| 2576 | } |
| 2577 | |
| 2578 | if (!pkt) |
| 2579 | goto end; |
| 2580 | |
Frédéric Lécaille | 12fd259 | 2022-03-31 08:42:06 +0200 | [diff] [blame] | 2581 | /* When building a packet from another one, the field which may increase the |
| 2582 | * packet size is the packet number. And the maximum increase is 4 bytes. |
| 2583 | */ |
| 2584 | if (!quic_peer_validated_addr(qc) && qc_is_listener(qc) && |
| 2585 | pkt->len + 4 > 3 * qc->rx.bytes - qc->tx.prep_bytes) { |
| 2586 | TRACE_PROTO("anti-amplification limit would be reached", QUIC_EV_CONN_PRSAFRM, qc); |
| 2587 | goto end; |
| 2588 | } |
| 2589 | |
Frédéric Lécaille | 04e63aa | 2022-01-17 18:16:27 +0100 | [diff] [blame] | 2590 | qel->pktns->tx.pto_probe += 1; |
| 2591 | requeue: |
Frédéric Lécaille | e248e37 | 2022-04-25 09:25:56 +0200 | [diff] [blame] | 2592 | TRACE_PROTO("duplicating packet", QUIC_EV_CONN_PRSAFRM, qc, NULL, &pkt->pn_node.key); |
| 2593 | qc_dup_pkt_frms(qc, &pkt->frms, tmp); |
Frédéric Lécaille | 04e63aa | 2022-01-17 18:16:27 +0100 | [diff] [blame] | 2594 | if (qel == iqel) { |
| 2595 | if (pkt->next && pkt->next->type == QUIC_PACKET_TYPE_HANDSHAKE) { |
| 2596 | pkt = pkt->next; |
| 2597 | tmp = &htmp; |
| 2598 | hqel->pktns->tx.pto_probe += 1; |
| 2599 | goto requeue; |
| 2600 | } |
Frédéric Lécaille | 3bb457c | 2021-12-30 16:14:20 +0100 | [diff] [blame] | 2601 | } |
Frédéric Lécaille | 04e63aa | 2022-01-17 18:16:27 +0100 | [diff] [blame] | 2602 | |
| 2603 | end: |
Frédéric Lécaille | e248e37 | 2022-04-25 09:25:56 +0200 | [diff] [blame] | 2604 | LIST_SPLICE(ifrms, &itmp); |
| 2605 | LIST_SPLICE(hfrms, &htmp); |
Frédéric Lécaille | 3bb457c | 2021-12-30 16:14:20 +0100 | [diff] [blame] | 2606 | } |
| 2607 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2608 | /* Parse all the frames of <pkt> QUIC packet for QUIC connection with <ctx> |
| 2609 | * as I/O handler context and <qel> as encryption level. |
| 2610 | * Returns 1 if succeeded, 0 if failed. |
| 2611 | */ |
Frédéric Lécaille | 1eaec33 | 2021-06-04 14:59:59 +0200 | [diff] [blame] | 2612 | static int qc_parse_pkt_frms(struct quic_rx_packet *pkt, struct ssl_sock_ctx *ctx, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2613 | struct quic_enc_level *qel) |
| 2614 | { |
| 2615 | struct quic_frame frm; |
| 2616 | const unsigned char *pos, *end; |
Amaury Denoyelle | c15dd92 | 2021-12-21 11:41:52 +0100 | [diff] [blame] | 2617 | struct quic_conn *qc = ctx->qc; |
Frédéric Lécaille | 3bb457c | 2021-12-30 16:14:20 +0100 | [diff] [blame] | 2618 | int fast_retrans = 0; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2619 | |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 2620 | TRACE_ENTER(QUIC_EV_CONN_PRSHPKT, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2621 | /* Skip the AAD */ |
| 2622 | pos = pkt->data + pkt->aad_len; |
| 2623 | end = pkt->data + pkt->len; |
| 2624 | |
| 2625 | while (pos < end) { |
Amaury Denoyelle | 17a7416 | 2021-12-21 14:45:39 +0100 | [diff] [blame] | 2626 | if (!qc_parse_frm(&frm, pkt, &pos, end, qc)) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2627 | goto err; |
| 2628 | |
Frédéric Lécaille | 1ede823 | 2021-12-23 14:11:25 +0100 | [diff] [blame] | 2629 | TRACE_PROTO("RX frame", QUIC_EV_CONN_PSTRM, qc, &frm); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2630 | switch (frm.type) { |
Frédéric Lécaille | 0c14020 | 2020-12-09 15:56:48 +0100 | [diff] [blame] | 2631 | case QUIC_FT_PADDING: |
Frédéric Lécaille | 0c14020 | 2020-12-09 15:56:48 +0100 | [diff] [blame] | 2632 | break; |
| 2633 | case QUIC_FT_PING: |
| 2634 | break; |
| 2635 | case QUIC_FT_ACK: |
| 2636 | { |
| 2637 | unsigned int rtt_sample; |
| 2638 | |
| 2639 | rtt_sample = 0; |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 2640 | if (!qc_parse_ack_frm(qc, &frm, qel, &rtt_sample, &pos, end)) |
Frédéric Lécaille | 0c14020 | 2020-12-09 15:56:48 +0100 | [diff] [blame] | 2641 | goto err; |
| 2642 | |
| 2643 | if (rtt_sample) { |
| 2644 | unsigned int ack_delay; |
| 2645 | |
Amaury Denoyelle | 17a7416 | 2021-12-21 14:45:39 +0100 | [diff] [blame] | 2646 | ack_delay = !quic_application_pktns(qel->pktns, qc) ? 0 : |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 2647 | qc->state >= QUIC_HS_ST_CONFIRMED ? |
Frédéric Lécaille | 22576a2 | 2021-12-28 14:27:43 +0100 | [diff] [blame] | 2648 | MS_TO_TICKS(QUIC_MIN(quic_ack_delay_ms(&frm.ack, qc), qc->max_ack_delay)) : |
| 2649 | MS_TO_TICKS(quic_ack_delay_ms(&frm.ack, qc)); |
Amaury Denoyelle | 17a7416 | 2021-12-21 14:45:39 +0100 | [diff] [blame] | 2650 | quic_loss_srtt_update(&qc->path->loss, rtt_sample, ack_delay, qc); |
Frédéric Lécaille | 0c14020 | 2020-12-09 15:56:48 +0100 | [diff] [blame] | 2651 | } |
Frédéric Lécaille | 0c14020 | 2020-12-09 15:56:48 +0100 | [diff] [blame] | 2652 | break; |
| 2653 | } |
Frédéric Lécaille | d8b8443 | 2021-12-10 15:18:36 +0100 | [diff] [blame] | 2654 | case QUIC_FT_STOP_SENDING: |
Frédéric Lécaille | d8b8443 | 2021-12-10 15:18:36 +0100 | [diff] [blame] | 2655 | break; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2656 | case QUIC_FT_CRYPTO: |
Frédéric Lécaille | f9cb3a9 | 2021-12-02 11:25:58 +0100 | [diff] [blame] | 2657 | { |
| 2658 | struct quic_rx_crypto_frm *cf; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2659 | |
Frédéric Lécaille | bd24208 | 2022-02-25 17:17:59 +0100 | [diff] [blame] | 2660 | if (unlikely(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD)) { |
Frédéric Lécaille | 917a7db | 2022-01-03 17:00:35 +0100 | [diff] [blame] | 2661 | /* XXX TO DO: <cfdebug> is used only for the traces. */ |
| 2662 | struct quic_rx_crypto_frm cfdebug = { }; |
| 2663 | |
| 2664 | cfdebug.offset_node.key = frm.crypto.offset; |
| 2665 | cfdebug.len = frm.crypto.len; |
| 2666 | TRACE_PROTO("CRYPTO data discarded", |
| 2667 | QUIC_EV_CONN_ELRXPKTS, qc, pkt, &cfdebug); |
| 2668 | break; |
| 2669 | } |
| 2670 | |
Frédéric Lécaille | f9cb3a9 | 2021-12-02 11:25:58 +0100 | [diff] [blame] | 2671 | if (unlikely(frm.crypto.offset < qel->rx.crypto.offset)) { |
| 2672 | if (frm.crypto.offset + frm.crypto.len <= qel->rx.crypto.offset) { |
| 2673 | /* XXX TO DO: <cfdebug> is used only for the traces. */ |
| 2674 | struct quic_rx_crypto_frm cfdebug = { }; |
| 2675 | |
| 2676 | cfdebug.offset_node.key = frm.crypto.offset; |
| 2677 | cfdebug.len = frm.crypto.len; |
| 2678 | /* Nothing to do */ |
| 2679 | TRACE_PROTO("Already received CRYPTO data", |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 2680 | QUIC_EV_CONN_ELRXPKTS, qc, pkt, &cfdebug); |
Frédéric Lécaille | 2fe8b3b | 2022-01-10 12:10:10 +0100 | [diff] [blame] | 2681 | if (qc_is_listener(ctx->qc) && |
Frédéric Lécaille | 3bb457c | 2021-12-30 16:14:20 +0100 | [diff] [blame] | 2682 | qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]) |
| 2683 | fast_retrans = 1; |
Frédéric Lécaille | f9cb3a9 | 2021-12-02 11:25:58 +0100 | [diff] [blame] | 2684 | break; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2685 | } |
Frédéric Lécaille | f9cb3a9 | 2021-12-02 11:25:58 +0100 | [diff] [blame] | 2686 | else { |
| 2687 | size_t diff = qel->rx.crypto.offset - frm.crypto.offset; |
| 2688 | /* XXX TO DO: <cfdebug> is used only for the traces. */ |
| 2689 | struct quic_rx_crypto_frm cfdebug = { }; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2690 | |
Frédéric Lécaille | f9cb3a9 | 2021-12-02 11:25:58 +0100 | [diff] [blame] | 2691 | cfdebug.offset_node.key = frm.crypto.offset; |
| 2692 | cfdebug.len = frm.crypto.len; |
| 2693 | TRACE_PROTO("Partially already received CRYPTO data", |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 2694 | QUIC_EV_CONN_ELRXPKTS, qc, pkt, &cfdebug); |
Frédéric Lécaille | f9cb3a9 | 2021-12-02 11:25:58 +0100 | [diff] [blame] | 2695 | frm.crypto.len -= diff; |
| 2696 | frm.crypto.data += diff; |
| 2697 | frm.crypto.offset = qel->rx.crypto.offset; |
| 2698 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2699 | } |
Frédéric Lécaille | f9cb3a9 | 2021-12-02 11:25:58 +0100 | [diff] [blame] | 2700 | |
| 2701 | if (frm.crypto.offset == qel->rx.crypto.offset) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2702 | /* XXX TO DO: <cf> is used only for the traces. */ |
Frédéric Lécaille | f9cb3a9 | 2021-12-02 11:25:58 +0100 | [diff] [blame] | 2703 | struct quic_rx_crypto_frm cfdebug = { }; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2704 | |
Frédéric Lécaille | f9cb3a9 | 2021-12-02 11:25:58 +0100 | [diff] [blame] | 2705 | cfdebug.offset_node.key = frm.crypto.offset; |
| 2706 | cfdebug.len = frm.crypto.len; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2707 | if (!qc_provide_cdata(qel, ctx, |
| 2708 | frm.crypto.data, frm.crypto.len, |
Frédéric Lécaille | f9cb3a9 | 2021-12-02 11:25:58 +0100 | [diff] [blame] | 2709 | pkt, &cfdebug)) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2710 | goto err; |
Frédéric Lécaille | f9cb3a9 | 2021-12-02 11:25:58 +0100 | [diff] [blame] | 2711 | |
| 2712 | break; |
| 2713 | } |
| 2714 | |
| 2715 | /* frm.crypto.offset > qel->rx.crypto.offset */ |
| 2716 | cf = pool_alloc(pool_head_quic_rx_crypto_frm); |
| 2717 | if (!cf) { |
| 2718 | TRACE_DEVEL("CRYPTO frame allocation failed", |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 2719 | QUIC_EV_CONN_PRSHPKT, qc); |
Frédéric Lécaille | f9cb3a9 | 2021-12-02 11:25:58 +0100 | [diff] [blame] | 2720 | goto err; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2721 | } |
Frédéric Lécaille | f9cb3a9 | 2021-12-02 11:25:58 +0100 | [diff] [blame] | 2722 | |
| 2723 | cf->offset_node.key = frm.crypto.offset; |
| 2724 | cf->len = frm.crypto.len; |
| 2725 | cf->data = frm.crypto.data; |
| 2726 | cf->pkt = pkt; |
| 2727 | eb64_insert(&qel->rx.crypto.frms, &cf->offset_node); |
| 2728 | quic_rx_packet_refinc(pkt); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2729 | break; |
Frédéric Lécaille | f9cb3a9 | 2021-12-02 11:25:58 +0100 | [diff] [blame] | 2730 | } |
Frédéric Lécaille | d8b8443 | 2021-12-10 15:18:36 +0100 | [diff] [blame] | 2731 | case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F: |
Frédéric Lécaille | 242fb1b | 2020-12-31 12:45:38 +0100 | [diff] [blame] | 2732 | { |
| 2733 | struct quic_stream *stream = &frm.stream; |
| 2734 | |
Frédéric Lécaille | 2fe8b3b | 2022-01-10 12:10:10 +0100 | [diff] [blame] | 2735 | if (qc_is_listener(ctx->qc)) { |
Frédéric Lécaille | 242fb1b | 2020-12-31 12:45:38 +0100 | [diff] [blame] | 2736 | if (stream->id & QUIC_STREAM_FRAME_ID_INITIATOR_BIT) |
| 2737 | goto err; |
| 2738 | } else if (!(stream->id & QUIC_STREAM_FRAME_ID_INITIATOR_BIT)) |
| 2739 | goto err; |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2740 | |
Frédéric Lécaille | 12aa26b | 2022-03-21 11:37:13 +0100 | [diff] [blame] | 2741 | /* At the application layer the connection may have already been closed. */ |
| 2742 | if (qc->mux_state != QC_MUX_READY) |
| 2743 | break; |
| 2744 | |
Amaury Denoyelle | 17a7416 | 2021-12-21 14:45:39 +0100 | [diff] [blame] | 2745 | if (!qc_handle_strm_frm(pkt, stream, qc)) |
Frédéric Lécaille | dfbae76 | 2021-02-18 09:59:01 +0100 | [diff] [blame] | 2746 | goto err; |
| 2747 | |
Frédéric Lécaille | 242fb1b | 2020-12-31 12:45:38 +0100 | [diff] [blame] | 2748 | break; |
| 2749 | } |
Frédéric Lécaille | f366cb7 | 2021-11-18 10:57:18 +0100 | [diff] [blame] | 2750 | case QUIC_FT_MAX_DATA: |
Amaury Denoyelle | 1e5e513 | 2022-03-08 16:23:03 +0100 | [diff] [blame] | 2751 | if (qc->mux_state == QC_MUX_READY) { |
| 2752 | struct quic_max_data *data = &frm.max_data; |
| 2753 | qcc_recv_max_data(qc->qcc, data->max_data); |
| 2754 | } |
| 2755 | break; |
Frédéric Lécaille | f366cb7 | 2021-11-18 10:57:18 +0100 | [diff] [blame] | 2756 | case QUIC_FT_MAX_STREAM_DATA: |
Amaury Denoyelle | 8727ff4 | 2022-03-08 10:39:55 +0100 | [diff] [blame] | 2757 | if (qc->mux_state == QC_MUX_READY) { |
| 2758 | struct quic_max_stream_data *data = &frm.max_stream_data; |
| 2759 | qcc_recv_max_stream_data(qc->qcc, data->id, |
| 2760 | data->max_stream_data); |
| 2761 | } |
| 2762 | break; |
Frédéric Lécaille | f366cb7 | 2021-11-18 10:57:18 +0100 | [diff] [blame] | 2763 | case QUIC_FT_MAX_STREAMS_BIDI: |
| 2764 | case QUIC_FT_MAX_STREAMS_UNI: |
| 2765 | case QUIC_FT_DATA_BLOCKED: |
| 2766 | case QUIC_FT_STREAM_DATA_BLOCKED: |
| 2767 | case QUIC_FT_STREAMS_BLOCKED_BIDI: |
| 2768 | case QUIC_FT_STREAMS_BLOCKED_UNI: |
| 2769 | break; |
Frédéric Lécaille | 0c14020 | 2020-12-09 15:56:48 +0100 | [diff] [blame] | 2770 | case QUIC_FT_NEW_CONNECTION_ID: |
Frédéric Lécaille | 2cca241 | 2022-01-21 13:55:03 +0100 | [diff] [blame] | 2771 | case QUIC_FT_RETIRE_CONNECTION_ID: |
| 2772 | /* XXX TO DO XXX */ |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2773 | break; |
| 2774 | case QUIC_FT_CONNECTION_CLOSE: |
| 2775 | case QUIC_FT_CONNECTION_CLOSE_APP: |
Frédéric Lécaille | 4775680 | 2022-03-25 09:12:16 +0100 | [diff] [blame] | 2776 | if (!(qc->flags & QUIC_FL_CONN_DRAINING)) { |
| 2777 | TRACE_PROTO("Entering draining state", QUIC_EV_CONN_PRSHPKT, qc); |
| 2778 | /* RFC 9000 10.2. Immediate Close: |
| 2779 | * The closing and draining connection states exist to ensure |
| 2780 | * that connections close cleanly and that delayed or reordered |
| 2781 | * packets are properly discarded. These states SHOULD persist |
| 2782 | * for at least three times the current PTO interval... |
| 2783 | * |
| 2784 | * Rearm the idle timeout only one time when entering draining |
| 2785 | * state. |
| 2786 | */ |
| 2787 | qc_idle_timer_do_rearm(qc); |
| 2788 | qc->flags |= QUIC_FL_CONN_DRAINING|QUIC_FL_CONN_IMMEDIATE_CLOSE; |
Amaury Denoyelle | b515b0a | 2022-04-06 10:28:43 +0200 | [diff] [blame] | 2789 | qc_notify_close(qc); |
Frédéric Lécaille | 4775680 | 2022-03-25 09:12:16 +0100 | [diff] [blame] | 2790 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2791 | break; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2792 | case QUIC_FT_HANDSHAKE_DONE: |
Frédéric Lécaille | 2fe8b3b | 2022-01-10 12:10:10 +0100 | [diff] [blame] | 2793 | if (qc_is_listener(ctx->qc)) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2794 | goto err; |
| 2795 | |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 2796 | qc->state = QUIC_HS_ST_CONFIRMED; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2797 | break; |
| 2798 | default: |
| 2799 | goto err; |
| 2800 | } |
| 2801 | } |
| 2802 | |
Frédéric Lécaille | 44ae752 | 2022-03-21 12:18:00 +0100 | [diff] [blame] | 2803 | /* Flag this packet number space as having received a packet. */ |
Frédéric Lécaille | 205e4f3 | 2022-03-28 17:38:27 +0200 | [diff] [blame] | 2804 | qel->pktns->flags |= QUIC_FL_PKTNS_PKT_RECEIVED; |
Frédéric Lécaille | 44ae752 | 2022-03-21 12:18:00 +0100 | [diff] [blame] | 2805 | |
Frédéric Lécaille | e248e37 | 2022-04-25 09:25:56 +0200 | [diff] [blame] | 2806 | if (fast_retrans) { |
| 2807 | struct quic_enc_level *iqel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]; |
| 2808 | struct quic_enc_level *hqel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]; |
| 2809 | |
| 2810 | qc_prep_hdshk_fast_retrans(qc, &iqel->pktns->tx.frms, &hqel->pktns->tx.frms); |
| 2811 | } |
Frédéric Lécaille | 3bb457c | 2021-12-30 16:14:20 +0100 | [diff] [blame] | 2812 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2813 | /* The server must switch from INITIAL to HANDSHAKE handshake state when it |
| 2814 | * has successfully parse a Handshake packet. The Initial encryption must also |
| 2815 | * be discarded. |
| 2816 | */ |
Frédéric Lécaille | 2fe8b3b | 2022-01-10 12:10:10 +0100 | [diff] [blame] | 2817 | if (pkt->type == QUIC_PACKET_TYPE_HANDSHAKE && qc_is_listener(ctx->qc)) { |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 2818 | if (qc->state >= QUIC_HS_ST_SERVER_INITIAL) { |
Frédéric Lécaille | 05bd92b | 2022-03-29 19:09:46 +0200 | [diff] [blame] | 2819 | if (!(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].tls_ctx.flags & |
| 2820 | QUIC_FL_TLS_SECRETS_DCD)) { |
| 2821 | quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]); |
| 2822 | TRACE_PROTO("discarding Initial pktns", QUIC_EV_CONN_PRSHPKT, qc); |
| 2823 | quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, qc); |
| 2824 | qc_set_timer(ctx->qc); |
| 2825 | qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]); |
| 2826 | qc_release_pktns_frms(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns); |
| 2827 | } |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 2828 | if (qc->state < QUIC_HS_ST_SERVER_HANDSHAKE) |
| 2829 | qc->state = QUIC_HS_ST_SERVER_HANDSHAKE; |
Frédéric Lécaille | 8c27de7 | 2021-09-20 11:00:46 +0200 | [diff] [blame] | 2830 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2831 | } |
| 2832 | |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 2833 | TRACE_LEAVE(QUIC_EV_CONN_PRSHPKT, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2834 | return 1; |
| 2835 | |
| 2836 | err: |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 2837 | TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PRSHPKT, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 2838 | return 0; |
| 2839 | } |
| 2840 | |
Frédéric Lécaille | 302c2b1 | 2022-03-14 12:21:03 +0100 | [diff] [blame] | 2841 | /* Must be called only by a <cbuf> writer (packet builder). |
| 2842 | * Return 1 if <cbuf> may be reused to build packets, depending on its <rd> and |
| 2843 | * <wr> internal indexes, 0 if not. When this is the case, reset <wr> writer |
| 2844 | * index after having marked the end of written data. This the responsability |
| 2845 | * of the caller to ensure there is enough room in <cbuf> to write the end of |
| 2846 | * data made of a uint16_t null field. |
| 2847 | * |
| 2848 | * +XXXXXXXXXXXXXXXXXXXXXXX---------------+ (cannot be reused) |
| 2849 | * ^ ^ |
| 2850 | * r w |
| 2851 | * |
| 2852 | * +-------XXXXXXXXXXXXXXXX---------------+ (can be reused) |
| 2853 | * ^ ^ |
| 2854 | * r w |
| 2855 | |
| 2856 | * +--------------------------------------+ (empty buffer, can be reused) |
| 2857 | * ^ |
| 2858 | * (r = w) |
| 2859 | * |
| 2860 | * +XXXXXXXXXXXXXXXXXXXXX-XXXXXXXXXXXXXXXX+ (full buffer, cannot be reused) |
| 2861 | * ^ ^ |
| 2862 | * w r |
| 2863 | */ |
| 2864 | static int qc_may_reuse_cbuf(struct cbuf *cbuf) |
| 2865 | { |
| 2866 | int rd = HA_ATOMIC_LOAD(&cbuf->rd); |
| 2867 | |
| 2868 | /* We can reset the writer index only if in front of the reader index and |
| 2869 | * if the reader index is not null. Resetting the writer when the reader |
| 2870 | * index is null would empty the buffer. |
| 2871 | * XXX Note than the writer index cannot reach the reader index. |
| 2872 | * Only the reader index can reach the writer index. |
| 2873 | */ |
| 2874 | if (rd && rd <= cbuf->wr) { |
| 2875 | /* Mark the end of contiguous data for the reader */ |
| 2876 | write_u16(cb_wr(cbuf), 0); |
| 2877 | cb_add(cbuf, sizeof(uint16_t)); |
| 2878 | cb_wr_reset(cbuf); |
| 2879 | return 1; |
| 2880 | } |
| 2881 | |
| 2882 | return 0; |
| 2883 | } |
| 2884 | |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 2885 | /* Write <dglen> datagram length and <pkt> first packet address into <cbuf> ring |
Ilya Shipitsin | bd6b4be | 2021-10-15 16:18:21 +0500 | [diff] [blame] | 2886 | * buffer. This is the responsibility of the caller to check there is enough |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 2887 | * room in <cbuf>. Also increase the <cbuf> write index consequently. |
| 2888 | * This function must be called only after having built a correct datagram. |
| 2889 | * Always succeeds. |
| 2890 | */ |
| 2891 | static inline void qc_set_dg(struct cbuf *cbuf, |
| 2892 | uint16_t dglen, struct quic_tx_packet *pkt) |
| 2893 | { |
| 2894 | write_u16(cb_wr(cbuf), dglen); |
| 2895 | write_ptr(cb_wr(cbuf) + sizeof dglen, pkt); |
| 2896 | cb_add(cbuf, dglen + sizeof dglen + sizeof pkt); |
| 2897 | } |
| 2898 | |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 2899 | /* Returns 1 if a packet may be built for <qc> from <qel> encryption level |
| 2900 | * with <frms> as ack-eliciting frame list to send, 0 if not. |
| 2901 | * <cc> must equal to 1 if an immediate close was asked, 0 if not. |
| 2902 | * <probe> must equalt to 1 if a probing packet is required, 0 if not. |
| 2903 | */ |
| 2904 | static int qc_may_build_pkt(struct quic_conn *qc, struct list *frms, |
| 2905 | struct quic_enc_level *qel, int cc, int probe) |
| 2906 | { |
| 2907 | unsigned int must_ack = |
| 2908 | qel->pktns->rx.nb_aepkts_since_last_ack >= QUIC_MAX_RX_AEPKTS_SINCE_LAST_ACK; |
| 2909 | |
| 2910 | /* Do not build any more packet if the TX secrets are not available or |
| 2911 | * if there is nothing to send, i.e. if no CONNECTION_CLOSE or ACK are required |
| 2912 | * and if there is no more packets to send upon PTO expiration |
| 2913 | * and if there is no more ack-eliciting frames to send or in flight |
| 2914 | * congestion control limit is reached for prepared data |
| 2915 | */ |
| 2916 | if (!(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET) || |
| 2917 | (!cc && !probe && !must_ack && |
| 2918 | (LIST_ISEMPTY(frms) || qc->path->prep_in_flight >= qc->path->cwnd))) { |
| 2919 | TRACE_DEVEL("nothing more to do", QUIC_EV_CONN_PHPKTS, qc); |
| 2920 | return 0; |
| 2921 | } |
| 2922 | |
| 2923 | return 1; |
| 2924 | } |
| 2925 | |
Frédéric Lécaille | 1c5968b | 2022-02-25 17:15:21 +0100 | [diff] [blame] | 2926 | /* Prepare as much as possible short packets which are also datagrams into <qr> |
Frédéric Lécaille | 28c7ea3 | 2022-02-25 17:41:39 +0100 | [diff] [blame] | 2927 | * ring buffer for the QUIC connection with <ctx> as I/O handler context from |
| 2928 | * <frms> list of prebuilt frames. |
Frédéric Lécaille | 1c5968b | 2022-02-25 17:15:21 +0100 | [diff] [blame] | 2929 | * A header made of two fields is added to each datagram: the datagram length followed |
| 2930 | * by the address of the first packet in this datagram. |
Frédéric Lécaille | 728b30d | 2022-03-10 17:42:58 +0100 | [diff] [blame] | 2931 | * Returns the number of bytes prepared in packets if succeeded (may be 0), |
| 2932 | * or -1 if something wrong happened. |
Frédéric Lécaille | 1c5968b | 2022-02-25 17:15:21 +0100 | [diff] [blame] | 2933 | */ |
Frédéric Lécaille | 28c7ea3 | 2022-02-25 17:41:39 +0100 | [diff] [blame] | 2934 | static int qc_prep_app_pkts(struct quic_conn *qc, struct qring *qr, |
| 2935 | struct list *frms) |
Frédéric Lécaille | 1c5968b | 2022-02-25 17:15:21 +0100 | [diff] [blame] | 2936 | { |
| 2937 | struct quic_enc_level *qel; |
| 2938 | struct cbuf *cbuf; |
Frédéric Lécaille | 302c2b1 | 2022-03-14 12:21:03 +0100 | [diff] [blame] | 2939 | unsigned char *end_buf, *end, *pos; |
Frédéric Lécaille | 1c5968b | 2022-02-25 17:15:21 +0100 | [diff] [blame] | 2940 | struct quic_tx_packet *pkt; |
| 2941 | size_t total; |
| 2942 | size_t dg_headlen; |
| 2943 | |
| 2944 | TRACE_ENTER(QUIC_EV_CONN_PHPKTS, qc); |
| 2945 | /* Each datagram is prepended with its length followed by the |
| 2946 | * address of the first packet in the datagram. |
| 2947 | */ |
| 2948 | dg_headlen = sizeof(uint16_t) + sizeof pkt; |
| 2949 | qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP]; |
| 2950 | total = 0; |
| 2951 | start: |
| 2952 | cbuf = qr->cbuf; |
Frédéric Lécaille | 302c2b1 | 2022-03-14 12:21:03 +0100 | [diff] [blame] | 2953 | pos = cb_wr(cbuf); |
Frédéric Lécaille | 1c5968b | 2022-02-25 17:15:21 +0100 | [diff] [blame] | 2954 | /* Leave at least <sizeof(uint16_t)> bytes at the end of this buffer |
| 2955 | * to ensure there is enough room to mark the end of prepared |
| 2956 | * contiguous data with a zero length. |
| 2957 | */ |
| 2958 | end_buf = pos + cb_contig_space(cbuf) - sizeof(uint16_t); |
| 2959 | while (end_buf - pos >= (int)qc->path->mtu + dg_headlen) { |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 2960 | int err, probe, cc; |
Frédéric Lécaille | 1c5968b | 2022-02-25 17:15:21 +0100 | [diff] [blame] | 2961 | |
| 2962 | TRACE_POINT(QUIC_EV_CONN_PHPKTS, qc, qel); |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 2963 | probe = 0; |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 2964 | cc = qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE; |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 2965 | /* We do not probe if an immediate close was asked */ |
| 2966 | if (!cc) |
Frédéric Lécaille | 1c5968b | 2022-02-25 17:15:21 +0100 | [diff] [blame] | 2967 | probe = qel->pktns->tx.pto_probe; |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 2968 | |
| 2969 | if (!qc_may_build_pkt(qc, frms, qel, cc, probe)) |
Frédéric Lécaille | 1c5968b | 2022-02-25 17:15:21 +0100 | [diff] [blame] | 2970 | break; |
Frédéric Lécaille | 1c5968b | 2022-02-25 17:15:21 +0100 | [diff] [blame] | 2971 | |
| 2972 | /* Leave room for the datagram header */ |
| 2973 | pos += dg_headlen; |
| 2974 | if (!quic_peer_validated_addr(qc) && qc_is_listener(qc)) { |
| 2975 | end = pos + QUIC_MIN(qc->path->mtu, 3 * qc->rx.bytes - qc->tx.prep_bytes); |
| 2976 | } |
| 2977 | else { |
| 2978 | end = pos + qc->path->mtu; |
| 2979 | } |
| 2980 | |
Frédéric Lécaille | 28c7ea3 | 2022-02-25 17:41:39 +0100 | [diff] [blame] | 2981 | pkt = qc_build_pkt(&pos, end, qel, frms, qc, 0, 0, |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 2982 | QUIC_PACKET_TYPE_SHORT, probe, cc, &err); |
Frédéric Lécaille | 1c5968b | 2022-02-25 17:15:21 +0100 | [diff] [blame] | 2983 | switch (err) { |
| 2984 | case -2: |
| 2985 | goto err; |
| 2986 | case -1: |
Frédéric Lécaille | e9a974a | 2022-03-13 19:19:12 +0100 | [diff] [blame] | 2987 | /* As we provide qc_build_pkt() with an enough big buffer to fulfill an |
| 2988 | * MTU, we are here because of the congestion control window. There is |
| 2989 | * no need to try to reuse this buffer. |
| 2990 | */ |
| 2991 | goto out; |
Frédéric Lécaille | 1c5968b | 2022-02-25 17:15:21 +0100 | [diff] [blame] | 2992 | default: |
| 2993 | break; |
| 2994 | } |
| 2995 | |
| 2996 | /* This is to please to GCC. We cannot have (err >= 0 && !pkt) */ |
| 2997 | if (!pkt) |
| 2998 | goto err; |
| 2999 | |
Frédéric Lécaille | 1809c33 | 2022-04-25 10:24:12 +0200 | [diff] [blame] | 3000 | if (qc->flags & QUIC_FL_CONN_RETRANS_OLD_DATA) |
| 3001 | pkt->flags |= QUIC_FL_TX_PACKET_PROBE_WITH_OLD_DATA; |
| 3002 | |
Frédéric Lécaille | 1c5968b | 2022-02-25 17:15:21 +0100 | [diff] [blame] | 3003 | total += pkt->len; |
| 3004 | /* Set the current datagram as prepared into <cbuf>. */ |
| 3005 | qc_set_dg(cbuf, pkt->len, pkt); |
| 3006 | } |
| 3007 | |
Frédéric Lécaille | 1c5968b | 2022-02-25 17:15:21 +0100 | [diff] [blame] | 3008 | /* Reset <wr> writer index if in front of <rd> index */ |
| 3009 | if (end_buf - pos < (int)qc->path->mtu + dg_headlen) { |
Frédéric Lécaille | 1c5968b | 2022-02-25 17:15:21 +0100 | [diff] [blame] | 3010 | TRACE_DEVEL("buffer full", QUIC_EV_CONN_PHPKTS, qc); |
Frédéric Lécaille | 302c2b1 | 2022-03-14 12:21:03 +0100 | [diff] [blame] | 3011 | if (qc_may_reuse_cbuf(cbuf)) |
Frédéric Lécaille | 1c5968b | 2022-02-25 17:15:21 +0100 | [diff] [blame] | 3012 | goto start; |
Frédéric Lécaille | 1c5968b | 2022-02-25 17:15:21 +0100 | [diff] [blame] | 3013 | } |
| 3014 | |
| 3015 | out: |
| 3016 | TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, qc); |
| 3017 | return total; |
| 3018 | |
| 3019 | err: |
| 3020 | TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PHPKTS, qc); |
| 3021 | return -1; |
| 3022 | } |
| 3023 | |
Frédéric Lécaille | e2660e6 | 2021-11-23 11:36:51 +0100 | [diff] [blame] | 3024 | /* Prepare as much as possible packets into <qr> ring buffer for |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3025 | * the QUIC connection with <ctx> as I/O handler context, possibly concatenating |
| 3026 | * several packets in the same datagram. A header made of two fields is added |
| 3027 | * to each datagram: the datagram length followed by the address of the first |
| 3028 | * packet in this datagram. |
Frédéric Lécaille | 728b30d | 2022-03-10 17:42:58 +0100 | [diff] [blame] | 3029 | * Returns the number of bytes prepared in packets if succeeded (may be 0), |
| 3030 | * or -1 if something wrong happened. |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3031 | */ |
Frédéric Lécaille | ee2b8b3 | 2022-01-03 11:14:30 +0100 | [diff] [blame] | 3032 | static int qc_prep_pkts(struct quic_conn *qc, struct qring *qr, |
Frédéric Lécaille | fc88844 | 2022-04-11 15:39:34 +0200 | [diff] [blame] | 3033 | enum quic_tls_enc_level tel, struct list *tel_frms, |
| 3034 | enum quic_tls_enc_level next_tel, struct list *next_tel_frms) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3035 | { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3036 | struct quic_enc_level *qel; |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3037 | struct cbuf *cbuf; |
Frédéric Lécaille | 302c2b1 | 2022-03-14 12:21:03 +0100 | [diff] [blame] | 3038 | unsigned char *end_buf, *end, *pos; |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3039 | struct quic_tx_packet *first_pkt, *cur_pkt, *prv_pkt; |
| 3040 | /* length of datagrams */ |
| 3041 | uint16_t dglen; |
| 3042 | size_t total; |
Frédéric Lécaille | 28f51fa | 2021-11-09 14:12:12 +0100 | [diff] [blame] | 3043 | int padding; |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3044 | /* Each datagram is prepended with its length followed by the |
| 3045 | * address of the first packet in the datagram. |
| 3046 | */ |
| 3047 | size_t dg_headlen = sizeof dglen + sizeof first_pkt; |
Frédéric Lécaille | fc88844 | 2022-04-11 15:39:34 +0200 | [diff] [blame] | 3048 | struct list *frms; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3049 | |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 3050 | TRACE_ENTER(QUIC_EV_CONN_PHPKTS, qc); |
| 3051 | |
Frédéric Lécaille | 99942d6 | 2022-01-07 14:32:31 +0100 | [diff] [blame] | 3052 | total = 0; |
Frédéric Lécaille | fc88844 | 2022-04-11 15:39:34 +0200 | [diff] [blame] | 3053 | qel = &qc->els[tel]; |
| 3054 | frms = tel_frms; |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3055 | start: |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3056 | dglen = 0; |
Frédéric Lécaille | 28f51fa | 2021-11-09 14:12:12 +0100 | [diff] [blame] | 3057 | padding = 0; |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3058 | cbuf = qr->cbuf; |
Frédéric Lécaille | 302c2b1 | 2022-03-14 12:21:03 +0100 | [diff] [blame] | 3059 | pos = cb_wr(cbuf); |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3060 | /* Leave at least <dglen> bytes at the end of this buffer |
| 3061 | * to ensure there is enough room to mark the end of prepared |
| 3062 | * contiguous data with a zero length. |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3063 | */ |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3064 | end_buf = pos + cb_contig_space(cbuf) - sizeof dglen; |
| 3065 | first_pkt = prv_pkt = NULL; |
| 3066 | while (end_buf - pos >= (int)qc->path->mtu + dg_headlen || prv_pkt) { |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 3067 | int err, probe, cc; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3068 | enum quic_pkt_type pkt_type; |
| 3069 | |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 3070 | TRACE_POINT(QUIC_EV_CONN_PHPKTS, qc, qel); |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 3071 | probe = 0; |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 3072 | cc = qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE; |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 3073 | /* We do not probe if an immediate close was asked */ |
| 3074 | if (!cc) |
Frédéric Lécaille | 94fca87 | 2022-01-19 18:54:18 +0100 | [diff] [blame] | 3075 | probe = qel->pktns->tx.pto_probe; |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 3076 | |
Frédéric Lécaille | fc88844 | 2022-04-11 15:39:34 +0200 | [diff] [blame] | 3077 | if (!qc_may_build_pkt(qc, frms, qel, cc, probe)) { |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3078 | if (prv_pkt) |
| 3079 | qc_set_dg(cbuf, dglen, first_pkt); |
Frédéric Lécaille | 39ba1c3 | 2022-01-21 16:52:56 +0100 | [diff] [blame] | 3080 | /* Let's select the next encryption level */ |
| 3081 | if (tel != next_tel && next_tel != QUIC_TLS_ENC_LEVEL_NONE) { |
| 3082 | tel = next_tel; |
Frédéric Lécaille | fc88844 | 2022-04-11 15:39:34 +0200 | [diff] [blame] | 3083 | frms = next_tel_frms; |
Frédéric Lécaille | 39ba1c3 | 2022-01-21 16:52:56 +0100 | [diff] [blame] | 3084 | qel = &qc->els[tel]; |
| 3085 | /* Build a new datagram */ |
| 3086 | prv_pkt = NULL; |
| 3087 | continue; |
| 3088 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3089 | break; |
| 3090 | } |
| 3091 | |
| 3092 | pkt_type = quic_tls_level_pkt_type(tel); |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3093 | if (!prv_pkt) { |
| 3094 | /* Leave room for the datagram header */ |
| 3095 | pos += dg_headlen; |
Frédéric Lécaille | 2fe8b3b | 2022-01-10 12:10:10 +0100 | [diff] [blame] | 3096 | if (!quic_peer_validated_addr(qc) && qc_is_listener(qc)) { |
Frédéric Lécaille | ca98a7f | 2021-11-10 17:30:15 +0100 | [diff] [blame] | 3097 | end = pos + QUIC_MIN(qc->path->mtu, 3 * qc->rx.bytes - qc->tx.prep_bytes); |
| 3098 | } |
| 3099 | else { |
| 3100 | end = pos + qc->path->mtu; |
| 3101 | } |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3102 | } |
| 3103 | |
Frédéric Lécaille | fc88844 | 2022-04-11 15:39:34 +0200 | [diff] [blame] | 3104 | cur_pkt = qc_build_pkt(&pos, end, qel, frms, |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 3105 | qc, dglen, padding, pkt_type, probe, cc, &err); |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3106 | switch (err) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3107 | case -2: |
| 3108 | goto err; |
| 3109 | case -1: |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3110 | /* If there was already a correct packet present, set the |
| 3111 | * current datagram as prepared into <cbuf>. |
| 3112 | */ |
Frédéric Lécaille | 05e30ee | 2022-02-28 16:55:32 +0100 | [diff] [blame] | 3113 | if (prv_pkt) |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3114 | qc_set_dg(cbuf, dglen, first_pkt); |
Frédéric Lécaille | 05e30ee | 2022-02-28 16:55:32 +0100 | [diff] [blame] | 3115 | goto stop_build; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3116 | default: |
Frédéric Lécaille | 6355677 | 2021-12-29 17:18:21 +0100 | [diff] [blame] | 3117 | break; |
| 3118 | } |
Frédéric Lécaille | 67f47d0 | 2021-08-19 15:19:09 +0200 | [diff] [blame] | 3119 | |
Frédéric Lécaille | 6355677 | 2021-12-29 17:18:21 +0100 | [diff] [blame] | 3120 | /* This is to please to GCC. We cannot have (err >= 0 && !cur_pkt) */ |
| 3121 | if (!cur_pkt) |
| 3122 | goto err; |
| 3123 | |
Frédéric Lécaille | 1809c33 | 2022-04-25 10:24:12 +0200 | [diff] [blame] | 3124 | if (qc->flags & QUIC_FL_CONN_RETRANS_OLD_DATA) |
| 3125 | cur_pkt->flags |= QUIC_FL_TX_PACKET_PROBE_WITH_OLD_DATA; |
| 3126 | |
Frédéric Lécaille | 6355677 | 2021-12-29 17:18:21 +0100 | [diff] [blame] | 3127 | total += cur_pkt->len; |
| 3128 | /* keep trace of the first packet in the datagram */ |
| 3129 | if (!first_pkt) |
| 3130 | first_pkt = cur_pkt; |
| 3131 | /* Attach the current one to the previous one */ |
Frédéric Lécaille | b44cbc6 | 2022-04-21 17:58:46 +0200 | [diff] [blame] | 3132 | if (prv_pkt) { |
Frédéric Lécaille | 6355677 | 2021-12-29 17:18:21 +0100 | [diff] [blame] | 3133 | prv_pkt->next = cur_pkt; |
Frédéric Lécaille | b44cbc6 | 2022-04-21 17:58:46 +0200 | [diff] [blame] | 3134 | cur_pkt->flags |= QUIC_FL_TX_PACKET_COALESCED; |
| 3135 | } |
Frédéric Lécaille | 6355677 | 2021-12-29 17:18:21 +0100 | [diff] [blame] | 3136 | /* Let's say we have to build a new dgram */ |
| 3137 | prv_pkt = NULL; |
| 3138 | dglen += cur_pkt->len; |
| 3139 | /* Client: discard the Initial encryption keys as soon as |
| 3140 | * a handshake packet could be built. |
| 3141 | */ |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 3142 | if (qc->state == QUIC_HS_ST_CLIENT_INITIAL && |
Frédéric Lécaille | 6355677 | 2021-12-29 17:18:21 +0100 | [diff] [blame] | 3143 | pkt_type == QUIC_PACKET_TYPE_HANDSHAKE) { |
| 3144 | quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]); |
| 3145 | TRACE_PROTO("discarding Initial pktns", QUIC_EV_CONN_PHPKTS, qc); |
| 3146 | quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns, qc); |
| 3147 | qc_set_timer(qc); |
Frédéric Lécaille | a6255f5 | 2022-01-19 17:29:48 +0100 | [diff] [blame] | 3148 | qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]); |
Frédéric Lécaille | e87524d | 2022-01-19 17:48:40 +0100 | [diff] [blame] | 3149 | qc_release_pktns_frms(qc->els[QUIC_TLS_ENC_LEVEL_INITIAL].pktns); |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 3150 | qc->state = QUIC_HS_ST_CLIENT_HANDSHAKE; |
Frédéric Lécaille | 6355677 | 2021-12-29 17:18:21 +0100 | [diff] [blame] | 3151 | } |
| 3152 | /* If the data for the current encryption level have all been sent, |
| 3153 | * select the next level. |
| 3154 | */ |
| 3155 | if ((tel == QUIC_TLS_ENC_LEVEL_INITIAL || tel == QUIC_TLS_ENC_LEVEL_HANDSHAKE) && |
Frédéric Lécaille | 7aef5f4 | 2022-04-25 10:33:12 +0200 | [diff] [blame] | 3156 | next_tel != QUIC_TLS_ENC_LEVEL_NONE && (LIST_ISEMPTY(frms) && !qel->pktns->tx.pto_probe)) { |
Frédéric Lécaille | 6355677 | 2021-12-29 17:18:21 +0100 | [diff] [blame] | 3157 | /* If QUIC_TLS_ENC_LEVEL_HANDSHAKE was already reached let's try QUIC_TLS_ENC_LEVEL_APP */ |
| 3158 | if (tel == QUIC_TLS_ENC_LEVEL_HANDSHAKE && next_tel == tel) |
| 3159 | next_tel = QUIC_TLS_ENC_LEVEL_APP; |
| 3160 | tel = next_tel; |
Frédéric Lécaille | fc88844 | 2022-04-11 15:39:34 +0200 | [diff] [blame] | 3161 | if (tel == QUIC_TLS_ENC_LEVEL_APP) |
| 3162 | frms = &qc->els[tel].pktns->tx.frms; |
| 3163 | else |
| 3164 | frms = next_tel_frms; |
Frédéric Lécaille | 6355677 | 2021-12-29 17:18:21 +0100 | [diff] [blame] | 3165 | qel = &qc->els[tel]; |
Frédéric Lécaille | fc88844 | 2022-04-11 15:39:34 +0200 | [diff] [blame] | 3166 | if (!LIST_ISEMPTY(frms)) { |
Frédéric Lécaille | 6355677 | 2021-12-29 17:18:21 +0100 | [diff] [blame] | 3167 | /* If there is data for the next level, do not |
| 3168 | * consume a datagram. |
| 3169 | */ |
| 3170 | prv_pkt = cur_pkt; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3171 | } |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3172 | } |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3173 | /* If we have to build a new datagram, set the current datagram as |
| 3174 | * prepared into <cbuf>. |
| 3175 | */ |
| 3176 | if (!prv_pkt) { |
| 3177 | qc_set_dg(cbuf, dglen, first_pkt); |
| 3178 | first_pkt = NULL; |
| 3179 | dglen = 0; |
Frédéric Lécaille | 28f51fa | 2021-11-09 14:12:12 +0100 | [diff] [blame] | 3180 | padding = 0; |
| 3181 | } |
| 3182 | else if (prv_pkt->type == QUIC_TLS_ENC_LEVEL_INITIAL && |
Frédéric Lécaille | 1aa57d3 | 2022-01-12 09:46:02 +0100 | [diff] [blame] | 3183 | (!qc_is_listener(qc) || |
Frédéric Lécaille | 28f51fa | 2021-11-09 14:12:12 +0100 | [diff] [blame] | 3184 | prv_pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING)) { |
| 3185 | padding = 1; |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3186 | } |
| 3187 | } |
| 3188 | |
| 3189 | stop_build: |
| 3190 | /* Reset <wr> writer index if in front of <rd> index */ |
| 3191 | if (end_buf - pos < (int)qc->path->mtu + dg_headlen) { |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 3192 | TRACE_DEVEL("buffer full", QUIC_EV_CONN_PHPKTS, qc); |
Frédéric Lécaille | 302c2b1 | 2022-03-14 12:21:03 +0100 | [diff] [blame] | 3193 | if (qc_may_reuse_cbuf(cbuf)) |
Frédéric Lécaille | 99942d6 | 2022-01-07 14:32:31 +0100 | [diff] [blame] | 3194 | goto start; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3195 | } |
| 3196 | |
| 3197 | out: |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 3198 | TRACE_LEAVE(QUIC_EV_CONN_PHPKTS, qc); |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3199 | return total; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3200 | |
| 3201 | err: |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 3202 | TRACE_DEVEL("leaving in error", QUIC_EV_CONN_PHPKTS, qc); |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3203 | return -1; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3204 | } |
| 3205 | |
| 3206 | /* Send the QUIC packets which have been prepared for QUIC connections |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3207 | * from <qr> ring buffer with <ctx> as I/O handler context. |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3208 | */ |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3209 | int qc_send_ppkts(struct qring *qr, struct ssl_sock_ctx *ctx) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3210 | { |
| 3211 | struct quic_conn *qc; |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3212 | struct cbuf *cbuf; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3213 | |
Amaury Denoyelle | c15dd92 | 2021-12-21 11:41:52 +0100 | [diff] [blame] | 3214 | qc = ctx->qc; |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3215 | cbuf = qr->cbuf; |
| 3216 | while (cb_contig_data(cbuf)) { |
| 3217 | unsigned char *pos; |
| 3218 | struct buffer tmpbuf = { }; |
| 3219 | struct quic_tx_packet *first_pkt, *pkt, *next_pkt; |
| 3220 | uint16_t dglen; |
| 3221 | size_t headlen = sizeof dglen + sizeof first_pkt; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3222 | unsigned int time_sent; |
| 3223 | |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3224 | pos = cb_rd(cbuf); |
| 3225 | dglen = read_u16(pos); |
| 3226 | /* End of prepared datagrams. |
| 3227 | * Reset the reader index only if in front of the writer index. |
| 3228 | */ |
| 3229 | if (!dglen) { |
| 3230 | int wr = HA_ATOMIC_LOAD(&cbuf->wr); |
| 3231 | |
| 3232 | if (wr && wr < cbuf->rd) { |
| 3233 | cb_rd_reset(cbuf); |
| 3234 | continue; |
| 3235 | } |
| 3236 | break; |
| 3237 | } |
| 3238 | |
| 3239 | pos += sizeof dglen; |
| 3240 | first_pkt = read_ptr(pos); |
| 3241 | pos += sizeof first_pkt; |
| 3242 | tmpbuf.area = (char *)pos; |
| 3243 | tmpbuf.size = tmpbuf.data = dglen; |
| 3244 | |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 3245 | TRACE_PROTO("to send", QUIC_EV_CONN_SPPKTS, qc); |
Frédéric Lécaille | e2a1c1b | 2022-03-17 11:28:10 +0100 | [diff] [blame] | 3246 | if(qc_snd_buf(qc, &tmpbuf, tmpbuf.data, 0) <= 0) |
Amaury Denoyelle | 74f2292 | 2022-01-18 16:48:17 +0100 | [diff] [blame] | 3247 | break; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3248 | |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3249 | cb_del(cbuf, dglen + headlen); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3250 | qc->tx.bytes += tmpbuf.data; |
| 3251 | time_sent = now_ms; |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3252 | |
| 3253 | for (pkt = first_pkt; pkt; pkt = next_pkt) { |
| 3254 | pkt->time_sent = time_sent; |
| 3255 | if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING) { |
| 3256 | pkt->pktns->tx.time_of_last_eliciting = time_sent; |
Frédéric Lécaille | f7e0b8d | 2020-12-16 17:33:11 +0100 | [diff] [blame] | 3257 | qc->path->ifae_pkts++; |
Frédéric Lécaille | 530601c | 2022-03-10 15:11:57 +0100 | [diff] [blame] | 3258 | if (qc->flags & QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ) |
| 3259 | qc_idle_timer_rearm(qc, 0); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3260 | } |
Frédéric Lécaille | 59bf255 | 2022-03-28 12:13:09 +0200 | [diff] [blame] | 3261 | if (!(qc->flags & QUIC_FL_CONN_CLOSING) && |
| 3262 | (pkt->flags & QUIC_FL_TX_PACKET_CC)) { |
| 3263 | qc->flags |= QUIC_FL_CONN_CLOSING; |
Amaury Denoyelle | b515b0a | 2022-04-06 10:28:43 +0200 | [diff] [blame] | 3264 | qc_notify_close(qc); |
| 3265 | |
Frédéric Lécaille | 59bf255 | 2022-03-28 12:13:09 +0200 | [diff] [blame] | 3266 | /* RFC 9000 10.2. Immediate Close: |
| 3267 | * The closing and draining connection states exist to ensure |
| 3268 | * that connections close cleanly and that delayed or reordered |
| 3269 | * packets are properly discarded. These states SHOULD persist |
| 3270 | * for at least three times the current PTO interval... |
| 3271 | * |
| 3272 | * Rearm the idle timeout only one time when entering closing |
| 3273 | * state. |
| 3274 | */ |
| 3275 | qc_idle_timer_do_rearm(qc); |
| 3276 | if (qc->timer_task) { |
| 3277 | task_destroy(qc->timer_task); |
| 3278 | qc->timer_task = NULL; |
| 3279 | } |
| 3280 | } |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3281 | qc->path->in_flight += pkt->in_flight_len; |
| 3282 | pkt->pktns->tx.in_flight += pkt->in_flight_len; |
| 3283 | if (pkt->in_flight_len) |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 3284 | qc_set_timer(qc); |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 3285 | TRACE_PROTO("sent pkt", QUIC_EV_CONN_SPPKTS, qc, pkt); |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3286 | next_pkt = pkt->next; |
Frédéric Lécaille | e2a1c1b | 2022-03-17 11:28:10 +0100 | [diff] [blame] | 3287 | quic_tx_packet_refinc(pkt); |
Frédéric Lécaille | 0eb60c5 | 2021-07-19 14:48:36 +0200 | [diff] [blame] | 3288 | eb64_insert(&pkt->pktns->tx.pkts, &pkt->pn_node); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3289 | } |
| 3290 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3291 | |
| 3292 | return 1; |
| 3293 | } |
| 3294 | |
| 3295 | /* Build all the frames which must be sent just after the handshake have succeeded. |
| 3296 | * This is essentially NEW_CONNECTION_ID frames. A QUIC server must also send |
| 3297 | * a HANDSHAKE_DONE frame. |
| 3298 | * Return 1 if succeeded, 0 if not. |
| 3299 | */ |
Frédéric Lécaille | 522c65c | 2021-08-03 14:29:03 +0200 | [diff] [blame] | 3300 | static int quic_build_post_handshake_frames(struct quic_conn *qc) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3301 | { |
Frédéric Lécaille | d64f68f | 2022-03-18 17:45:28 +0100 | [diff] [blame] | 3302 | int i, first, max; |
Frédéric Lécaille | 522c65c | 2021-08-03 14:29:03 +0200 | [diff] [blame] | 3303 | struct quic_enc_level *qel; |
Frédéric Lécaille | d64f68f | 2022-03-18 17:45:28 +0100 | [diff] [blame] | 3304 | struct quic_frame *frm, *frmbak; |
| 3305 | struct list frm_list = LIST_HEAD_INIT(frm_list); |
| 3306 | struct eb64_node *node; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3307 | |
Frédéric Lécaille | 522c65c | 2021-08-03 14:29:03 +0200 | [diff] [blame] | 3308 | qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP]; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3309 | /* Only servers must send a HANDSHAKE_DONE frame. */ |
Frédéric Lécaille | 1aa57d3 | 2022-01-12 09:46:02 +0100 | [diff] [blame] | 3310 | if (qc_is_listener(qc)) { |
Frédéric Lécaille | d64f68f | 2022-03-18 17:45:28 +0100 | [diff] [blame] | 3311 | frm = pool_zalloc(pool_head_quic_frame); |
Frédéric Lécaille | 153d4a8 | 2021-01-06 12:12:39 +0100 | [diff] [blame] | 3312 | if (!frm) |
| 3313 | return 0; |
| 3314 | |
Frédéric Lécaille | b917191 | 2022-04-21 17:32:10 +0200 | [diff] [blame] | 3315 | LIST_INIT(&frm->reflist); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3316 | frm->type = QUIC_FT_HANDSHAKE_DONE; |
Frédéric Lécaille | d64f68f | 2022-03-18 17:45:28 +0100 | [diff] [blame] | 3317 | LIST_APPEND(&frm_list, &frm->list); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3318 | } |
| 3319 | |
Frédéric Lécaille | d64f68f | 2022-03-18 17:45:28 +0100 | [diff] [blame] | 3320 | first = 1; |
| 3321 | max = qc->tx.params.active_connection_id_limit; |
| 3322 | for (i = first; i < max; i++) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3323 | struct quic_connection_id *cid; |
| 3324 | |
Frédéric Lécaille | d64f68f | 2022-03-18 17:45:28 +0100 | [diff] [blame] | 3325 | frm = pool_zalloc(pool_head_quic_frame); |
Amaury Denoyelle | d6a352a | 2021-11-24 15:32:46 +0100 | [diff] [blame] | 3326 | if (!frm) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3327 | goto err; |
| 3328 | |
Frédéric Lécaille | b917191 | 2022-04-21 17:32:10 +0200 | [diff] [blame] | 3329 | LIST_INIT(&frm->reflist); |
Amaury Denoyelle | 0442efd | 2022-01-28 16:02:13 +0100 | [diff] [blame] | 3330 | cid = new_quic_cid(&qc->cids, qc, i); |
Amaury Denoyelle | d6a352a | 2021-11-24 15:32:46 +0100 | [diff] [blame] | 3331 | if (!cid) |
| 3332 | goto err; |
| 3333 | |
Frédéric Lécaille | 74904a4 | 2022-01-27 15:35:56 +0100 | [diff] [blame] | 3334 | /* insert the allocated CID in the receiver datagram handler tree */ |
Amaury Denoyelle | 8524f0f | 2022-02-08 15:03:40 +0100 | [diff] [blame] | 3335 | ebmb_insert(&quic_dghdlrs[tid].cids, &cid->node, cid->cid.len); |
Amaury Denoyelle | d6a352a | 2021-11-24 15:32:46 +0100 | [diff] [blame] | 3336 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3337 | quic_connection_id_to_frm_cpy(frm, cid); |
Frédéric Lécaille | d64f68f | 2022-03-18 17:45:28 +0100 | [diff] [blame] | 3338 | LIST_APPEND(&frm_list, &frm->list); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3339 | } |
Frédéric Lécaille | d64f68f | 2022-03-18 17:45:28 +0100 | [diff] [blame] | 3340 | |
| 3341 | LIST_SPLICE(&qel->pktns->tx.frms, &frm_list); |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 3342 | qc->flags |= QUIC_FL_CONN_POST_HANDSHAKE_FRAMES_BUILT; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3343 | |
| 3344 | return 1; |
| 3345 | |
| 3346 | err: |
Frédéric Lécaille | d64f68f | 2022-03-18 17:45:28 +0100 | [diff] [blame] | 3347 | /* free the frames */ |
| 3348 | list_for_each_entry_safe(frm, frmbak, &frm_list, list) |
| 3349 | pool_free(pool_head_quic_frame, frm); |
| 3350 | |
| 3351 | node = eb64_first(&qc->cids); |
| 3352 | while (node) { |
| 3353 | struct quic_connection_id *cid; |
| 3354 | |
Frédéric Lécaille | 411aa6d | 2022-03-21 12:01:22 +0100 | [diff] [blame] | 3355 | |
| 3356 | cid = eb64_entry(&node->node, struct quic_connection_id, seq_num); |
Frédéric Lécaille | d64f68f | 2022-03-18 17:45:28 +0100 | [diff] [blame] | 3357 | if (cid->seq_num.key >= max) |
| 3358 | break; |
| 3359 | |
Frédéric Lécaille | d64f68f | 2022-03-18 17:45:28 +0100 | [diff] [blame] | 3360 | if (cid->seq_num.key < first) |
| 3361 | continue; |
| 3362 | |
Frédéric Lécaille | 411aa6d | 2022-03-21 12:01:22 +0100 | [diff] [blame] | 3363 | node = eb64_next(node); |
Frédéric Lécaille | d64f68f | 2022-03-18 17:45:28 +0100 | [diff] [blame] | 3364 | ebmb_delete(&cid->node); |
| 3365 | eb64_delete(&cid->seq_num); |
| 3366 | pool_free(pool_head_quic_connection_id, cid); |
| 3367 | } |
| 3368 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3369 | return 0; |
| 3370 | } |
| 3371 | |
| 3372 | /* Deallocate <l> list of ACK ranges. */ |
Frédéric Lécaille | 6467088 | 2022-04-01 11:57:19 +0200 | [diff] [blame] | 3373 | void quic_free_arngs(struct quic_arngs *arngs) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3374 | { |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3375 | struct eb64_node *n; |
| 3376 | struct quic_arng_node *ar; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3377 | |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3378 | n = eb64_first(&arngs->root); |
| 3379 | while (n) { |
| 3380 | struct eb64_node *next; |
| 3381 | |
| 3382 | ar = eb64_entry(&n->node, struct quic_arng_node, first); |
| 3383 | next = eb64_next(n); |
| 3384 | eb64_delete(n); |
Frédéric Lécaille | 82851bd | 2022-04-04 13:43:58 +0200 | [diff] [blame] | 3385 | pool_free(pool_head_quic_arng, ar); |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3386 | n = next; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3387 | } |
| 3388 | } |
| 3389 | |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3390 | /* Return the gap value between <p> and <q> ACK ranges where <q> follows <p> in |
| 3391 | * descending order. |
| 3392 | */ |
| 3393 | static inline size_t sack_gap(struct quic_arng_node *p, |
| 3394 | struct quic_arng_node *q) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3395 | { |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3396 | return p->first.key - q->last - 2; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3397 | } |
| 3398 | |
| 3399 | |
| 3400 | /* Remove the last elements of <ack_ranges> list of ack range updating its |
| 3401 | * encoded size until it goes below <limit>. |
Ilya Shipitsin | 1e9a666 | 2021-01-05 22:10:46 +0500 | [diff] [blame] | 3402 | * Returns 1 if succeeded, 0 if not (no more element to remove). |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3403 | */ |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3404 | static int quic_rm_last_ack_ranges(struct quic_arngs *arngs, size_t limit) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3405 | { |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3406 | struct eb64_node *last, *prev; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3407 | |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3408 | last = eb64_last(&arngs->root); |
| 3409 | while (last && arngs->enc_sz > limit) { |
| 3410 | struct quic_arng_node *last_node, *prev_node; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3411 | |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3412 | prev = eb64_prev(last); |
| 3413 | if (!prev) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3414 | return 0; |
| 3415 | |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3416 | last_node = eb64_entry(&last->node, struct quic_arng_node, first); |
| 3417 | prev_node = eb64_entry(&prev->node, struct quic_arng_node, first); |
| 3418 | arngs->enc_sz -= quic_int_getsize(last_node->last - last_node->first.key); |
| 3419 | arngs->enc_sz -= quic_int_getsize(sack_gap(prev_node, last_node)); |
| 3420 | arngs->enc_sz -= quic_decint_size_diff(arngs->sz); |
| 3421 | --arngs->sz; |
| 3422 | eb64_delete(last); |
| 3423 | pool_free(pool_head_quic_arng, last); |
| 3424 | last = prev; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3425 | } |
| 3426 | |
| 3427 | return 1; |
| 3428 | } |
| 3429 | |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3430 | /* Set the encoded size of <arngs> QUIC ack ranges. */ |
| 3431 | static void quic_arngs_set_enc_sz(struct quic_arngs *arngs) |
| 3432 | { |
| 3433 | struct eb64_node *node, *next; |
| 3434 | struct quic_arng_node *ar, *ar_next; |
| 3435 | |
| 3436 | node = eb64_last(&arngs->root); |
| 3437 | if (!node) |
| 3438 | return; |
| 3439 | |
| 3440 | ar = eb64_entry(&node->node, struct quic_arng_node, first); |
| 3441 | arngs->enc_sz = quic_int_getsize(ar->last) + |
| 3442 | quic_int_getsize(ar->last - ar->first.key) + quic_int_getsize(arngs->sz - 1); |
| 3443 | |
| 3444 | while ((next = eb64_prev(node))) { |
| 3445 | ar_next = eb64_entry(&next->node, struct quic_arng_node, first); |
| 3446 | arngs->enc_sz += quic_int_getsize(sack_gap(ar, ar_next)) + |
| 3447 | quic_int_getsize(ar_next->last - ar_next->first.key); |
| 3448 | node = next; |
| 3449 | ar = eb64_entry(&node->node, struct quic_arng_node, first); |
| 3450 | } |
| 3451 | } |
| 3452 | |
Frédéric Lécaille | 9ef64cd | 2021-06-02 15:27:34 +0200 | [diff] [blame] | 3453 | /* Insert <ar> ack range into <argns> tree of ack ranges. |
| 3454 | * Returns the ack range node which has been inserted if succeeded, NULL if not. |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3455 | */ |
| 3456 | static inline |
Frédéric Lécaille | 9ef64cd | 2021-06-02 15:27:34 +0200 | [diff] [blame] | 3457 | struct quic_arng_node *quic_insert_new_range(struct quic_arngs *arngs, |
| 3458 | struct quic_arng *ar) |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3459 | { |
Frédéric Lécaille | 9ef64cd | 2021-06-02 15:27:34 +0200 | [diff] [blame] | 3460 | struct quic_arng_node *new_ar; |
| 3461 | |
| 3462 | new_ar = pool_alloc(pool_head_quic_arng); |
| 3463 | if (new_ar) { |
| 3464 | new_ar->first.key = ar->first; |
| 3465 | new_ar->last = ar->last; |
| 3466 | eb64_insert(&arngs->root, &new_ar->first); |
| 3467 | arngs->sz++; |
| 3468 | } |
| 3469 | |
| 3470 | return new_ar; |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3471 | } |
| 3472 | |
| 3473 | /* Update <arngs> tree of ACK ranges with <ar> as new ACK range value. |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3474 | * Note that this function computes the number of bytes required to encode |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3475 | * this tree of ACK ranges in descending order. |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3476 | * |
| 3477 | * Descending order |
| 3478 | * -------------> |
| 3479 | * range1 range2 |
| 3480 | * ..........|--------|..............|--------| |
| 3481 | * ^ ^ ^ ^ |
| 3482 | * | | | | |
| 3483 | * last1 first1 last2 first2 |
| 3484 | * ..........+--------+--------------+--------+...... |
| 3485 | * diff1 gap12 diff2 |
| 3486 | * |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3487 | * To encode the previous list of ranges we must encode integers as follows in |
| 3488 | * descending order: |
| 3489 | * enc(last2),enc(diff2),enc(gap12),enc(diff1) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3490 | * with diff1 = last1 - first1 |
| 3491 | * diff2 = last2 - first2 |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3492 | * gap12 = first1 - last2 - 2 (>= 0) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3493 | * |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3494 | */ |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3495 | int quic_update_ack_ranges_list(struct quic_arngs *arngs, |
| 3496 | struct quic_arng *ar) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3497 | { |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3498 | struct eb64_node *le; |
| 3499 | struct quic_arng_node *new_node; |
| 3500 | struct eb64_node *new; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3501 | |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3502 | new = NULL; |
| 3503 | if (eb_is_empty(&arngs->root)) { |
Frédéric Lécaille | 9ef64cd | 2021-06-02 15:27:34 +0200 | [diff] [blame] | 3504 | new_node = quic_insert_new_range(arngs, ar); |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3505 | if (!new_node) |
| 3506 | return 0; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3507 | |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3508 | goto out; |
| 3509 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3510 | |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3511 | le = eb64_lookup_le(&arngs->root, ar->first); |
| 3512 | if (!le) { |
Frédéric Lécaille | 9ef64cd | 2021-06-02 15:27:34 +0200 | [diff] [blame] | 3513 | new_node = quic_insert_new_range(arngs, ar); |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3514 | if (!new_node) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3515 | return 0; |
Frédéric Lécaille | 0e25783 | 2021-11-16 10:54:19 +0100 | [diff] [blame] | 3516 | |
| 3517 | new = &new_node->first; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3518 | } |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3519 | else { |
| 3520 | struct quic_arng_node *le_ar = |
| 3521 | eb64_entry(&le->node, struct quic_arng_node, first); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3522 | |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3523 | /* Already existing range */ |
Frédéric Lécaille | d3f4dd8 | 2021-06-02 15:36:12 +0200 | [diff] [blame] | 3524 | if (le_ar->last >= ar->last) |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3525 | return 1; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3526 | |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3527 | if (le_ar->last + 1 >= ar->first) { |
| 3528 | le_ar->last = ar->last; |
| 3529 | new = le; |
| 3530 | new_node = le_ar; |
| 3531 | } |
| 3532 | else { |
Frédéric Lécaille | 9ef64cd | 2021-06-02 15:27:34 +0200 | [diff] [blame] | 3533 | new_node = quic_insert_new_range(arngs, ar); |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3534 | if (!new_node) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3535 | return 0; |
Frédéric Lécaille | 8ba4276 | 2021-06-02 17:40:09 +0200 | [diff] [blame] | 3536 | |
| 3537 | new = &new_node->first; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3538 | } |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3539 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3540 | |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3541 | /* Verify that the new inserted node does not overlap the nodes |
| 3542 | * which follow it. |
| 3543 | */ |
| 3544 | if (new) { |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3545 | struct eb64_node *next; |
| 3546 | struct quic_arng_node *next_node; |
| 3547 | |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3548 | while ((next = eb64_next(new))) { |
| 3549 | next_node = |
| 3550 | eb64_entry(&next->node, struct quic_arng_node, first); |
Frédéric Lécaille | c825eba | 2021-06-02 17:38:13 +0200 | [diff] [blame] | 3551 | if (new_node->last + 1 < next_node->first.key) |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3552 | break; |
| 3553 | |
| 3554 | if (next_node->last > new_node->last) |
| 3555 | new_node->last = next_node->last; |
| 3556 | eb64_delete(next); |
Frédéric Lécaille | baea284 | 2021-06-02 15:04:03 +0200 | [diff] [blame] | 3557 | pool_free(pool_head_quic_arng, next_node); |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3558 | /* Decrement the size of these ranges. */ |
| 3559 | arngs->sz--; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3560 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3561 | } |
| 3562 | |
Frédéric Lécaille | 82b8652 | 2021-08-10 09:54:03 +0200 | [diff] [blame] | 3563 | out: |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3564 | quic_arngs_set_enc_sz(arngs); |
| 3565 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3566 | return 1; |
| 3567 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3568 | /* Remove the header protection of packets at <el> encryption level. |
| 3569 | * Always succeeds. |
| 3570 | */ |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 3571 | static inline void qc_rm_hp_pkts(struct quic_conn *qc, struct quic_enc_level *el) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3572 | { |
| 3573 | struct quic_tls_ctx *tls_ctx; |
Frédéric Lécaille | a11d0e2 | 2021-06-07 14:38:18 +0200 | [diff] [blame] | 3574 | struct quic_rx_packet *pqpkt; |
| 3575 | struct mt_list *pkttmp1, pkttmp2; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3576 | struct quic_enc_level *app_qel; |
| 3577 | |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 3578 | TRACE_ENTER(QUIC_EV_CONN_ELRMHP, qc); |
| 3579 | app_qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP]; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3580 | /* A server must not process incoming 1-RTT packets before the handshake is complete. */ |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 3581 | if (el == app_qel && qc_is_listener(qc) && qc->state < QUIC_HS_ST_COMPLETE) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3582 | TRACE_PROTO("hp not removed (handshake not completed)", |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 3583 | QUIC_EV_CONN_ELRMHP, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3584 | goto out; |
| 3585 | } |
| 3586 | tls_ctx = &el->tls_ctx; |
Frédéric Lécaille | a11d0e2 | 2021-06-07 14:38:18 +0200 | [diff] [blame] | 3587 | mt_list_for_each_entry_safe(pqpkt, &el->rx.pqpkts, list, pkttmp1, pkttmp2) { |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 3588 | if (!qc_do_rm_hp(qc, pqpkt, tls_ctx, el->pktns->rx.largest_pn, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3589 | pqpkt->data + pqpkt->pn_offset, |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 3590 | pqpkt->data, pqpkt->data + pqpkt->len)) { |
| 3591 | TRACE_PROTO("hp removing error", QUIC_EV_CONN_ELRMHP, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3592 | /* XXX TO DO XXX */ |
| 3593 | } |
| 3594 | else { |
| 3595 | /* The AAD includes the packet number field */ |
| 3596 | pqpkt->aad_len = pqpkt->pn_offset + pqpkt->pnl; |
| 3597 | /* Store the packet into the tree of packets to decrypt. */ |
| 3598 | pqpkt->pn_node.key = pqpkt->pn; |
Frédéric Lécaille | 98cdeb2 | 2021-07-26 16:38:14 +0200 | [diff] [blame] | 3599 | HA_RWLOCK_WRLOCK(QUIC_LOCK, &el->rx.pkts_rwlock); |
Frédéric Lécaille | ebc3fc1 | 2021-09-22 08:34:21 +0200 | [diff] [blame] | 3600 | eb64_insert(&el->rx.pkts, &pqpkt->pn_node); |
| 3601 | quic_rx_packet_refinc(pqpkt); |
Frédéric Lécaille | 98cdeb2 | 2021-07-26 16:38:14 +0200 | [diff] [blame] | 3602 | HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &el->rx.pkts_rwlock); |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 3603 | TRACE_PROTO("hp removed", QUIC_EV_CONN_ELRMHP, qc, pqpkt); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3604 | } |
Frédéric Lécaille | a11d0e2 | 2021-06-07 14:38:18 +0200 | [diff] [blame] | 3605 | MT_LIST_DELETE_SAFE(pkttmp1); |
| 3606 | quic_rx_packet_refdec(pqpkt); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3607 | } |
| 3608 | |
| 3609 | out: |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 3610 | TRACE_LEAVE(QUIC_EV_CONN_ELRMHP, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3611 | } |
| 3612 | |
| 3613 | /* Process all the CRYPTO frame at <el> encryption level. |
| 3614 | * Return 1 if succeeded, 0 if not. |
| 3615 | */ |
| 3616 | static inline int qc_treat_rx_crypto_frms(struct quic_enc_level *el, |
Frédéric Lécaille | 1eaec33 | 2021-06-04 14:59:59 +0200 | [diff] [blame] | 3617 | struct ssl_sock_ctx *ctx) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3618 | { |
| 3619 | struct eb64_node *node; |
| 3620 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3621 | node = eb64_first(&el->rx.crypto.frms); |
| 3622 | while (node) { |
| 3623 | struct quic_rx_crypto_frm *cf; |
| 3624 | |
| 3625 | cf = eb64_entry(&node->node, struct quic_rx_crypto_frm, offset_node); |
| 3626 | if (cf->offset_node.key != el->rx.crypto.offset) |
| 3627 | break; |
| 3628 | |
| 3629 | if (!qc_provide_cdata(el, ctx, cf->data, cf->len, cf->pkt, cf)) |
| 3630 | goto err; |
| 3631 | |
| 3632 | node = eb64_next(node); |
| 3633 | quic_rx_packet_refdec(cf->pkt); |
| 3634 | eb64_delete(&cf->offset_node); |
| 3635 | pool_free(pool_head_quic_rx_crypto_frm, cf); |
| 3636 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3637 | return 1; |
| 3638 | |
| 3639 | err: |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 3640 | TRACE_DEVEL("leaving in error", QUIC_EV_CONN_RXCDATA, ctx->qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3641 | return 0; |
| 3642 | } |
| 3643 | |
Frédéric Lécaille | 3230bcf | 2021-09-22 15:15:46 +0200 | [diff] [blame] | 3644 | /* Process all the packets at <el> and <next_el> encryption level. |
Ilya Shipitsin | bd6b4be | 2021-10-15 16:18:21 +0500 | [diff] [blame] | 3645 | * This is the caller responsibility to check that <cur_el> is different of <next_el> |
Frédéric Lécaille | 3230bcf | 2021-09-22 15:15:46 +0200 | [diff] [blame] | 3646 | * as pointer value. |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3647 | * Return 1 if succeeded, 0 if not. |
| 3648 | */ |
Frédéric Lécaille | 2766e78 | 2021-08-30 17:16:07 +0200 | [diff] [blame] | 3649 | int qc_treat_rx_pkts(struct quic_enc_level *cur_el, struct quic_enc_level *next_el, |
| 3650 | struct ssl_sock_ctx *ctx, int force_ack) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3651 | { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3652 | struct eb64_node *node; |
Frédéric Lécaille | 120ea6f | 2021-07-26 16:42:56 +0200 | [diff] [blame] | 3653 | int64_t largest_pn = -1; |
Amaury Denoyelle | 29632b8 | 2022-01-18 16:50:58 +0100 | [diff] [blame] | 3654 | struct quic_conn *qc = ctx->qc; |
Frédéric Lécaille | 2766e78 | 2021-08-30 17:16:07 +0200 | [diff] [blame] | 3655 | struct quic_enc_level *qel = cur_el; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3656 | |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 3657 | TRACE_ENTER(QUIC_EV_CONN_ELRXPKTS, ctx->qc); |
Frédéric Lécaille | 2766e78 | 2021-08-30 17:16:07 +0200 | [diff] [blame] | 3658 | qel = cur_el; |
| 3659 | next_tel: |
| 3660 | if (!qel) |
| 3661 | goto out; |
| 3662 | |
| 3663 | HA_RWLOCK_WRLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock); |
| 3664 | node = eb64_first(&qel->rx.pkts); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3665 | while (node) { |
| 3666 | struct quic_rx_packet *pkt; |
| 3667 | |
| 3668 | pkt = eb64_entry(&node->node, struct quic_rx_packet, pn_node); |
Frédéric Lécaille | 2766e78 | 2021-08-30 17:16:07 +0200 | [diff] [blame] | 3669 | TRACE_PROTO("new packet", QUIC_EV_CONN_ELRXPKTS, |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 3670 | ctx->qc, pkt, NULL, ctx->ssl); |
Frédéric Lécaille | a7d2c09 | 2021-11-30 11:18:18 +0100 | [diff] [blame] | 3671 | if (!qc_pkt_decrypt(pkt, qel)) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3672 | /* Drop the packet */ |
| 3673 | TRACE_PROTO("packet decryption failed -> dropped", |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 3674 | QUIC_EV_CONN_ELRXPKTS, ctx->qc, pkt); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3675 | } |
| 3676 | else { |
Frédéric Lécaille | 2766e78 | 2021-08-30 17:16:07 +0200 | [diff] [blame] | 3677 | if (!qc_parse_pkt_frms(pkt, ctx, qel)) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3678 | /* Drop the packet */ |
| 3679 | TRACE_PROTO("packet parsing failed -> dropped", |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 3680 | QUIC_EV_CONN_ELRXPKTS, ctx->qc, pkt); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3681 | } |
| 3682 | else { |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 3683 | struct quic_arng ar = { .first = pkt->pn, .last = pkt->pn }; |
| 3684 | |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 3685 | if (pkt->flags & QUIC_FL_RX_PACKET_ACK_ELICITING || force_ack) { |
| 3686 | qel->pktns->flags |= QUIC_FL_PKTNS_ACK_REQUIRED; |
| 3687 | qel->pktns->rx.nb_aepkts_since_last_ack++; |
Frédéric Lécaille | 530601c | 2022-03-10 15:11:57 +0100 | [diff] [blame] | 3688 | qc_idle_timer_rearm(qc, 1); |
| 3689 | } |
Frédéric Lécaille | 120ea6f | 2021-07-26 16:42:56 +0200 | [diff] [blame] | 3690 | if (pkt->pn > largest_pn) |
| 3691 | largest_pn = pkt->pn; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3692 | /* Update the list of ranges to acknowledge. */ |
Frédéric Lécaille | 2766e78 | 2021-08-30 17:16:07 +0200 | [diff] [blame] | 3693 | if (!quic_update_ack_ranges_list(&qel->pktns->rx.arngs, &ar)) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3694 | TRACE_DEVEL("Could not update ack range list", |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 3695 | QUIC_EV_CONN_ELRXPKTS, ctx->qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3696 | } |
| 3697 | } |
| 3698 | node = eb64_next(node); |
Frédéric Lécaille | ebc3fc1 | 2021-09-22 08:34:21 +0200 | [diff] [blame] | 3699 | eb64_delete(&pkt->pn_node); |
| 3700 | quic_rx_packet_refdec(pkt); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3701 | } |
Frédéric Lécaille | 2766e78 | 2021-08-30 17:16:07 +0200 | [diff] [blame] | 3702 | HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3703 | |
Frédéric Lécaille | 120ea6f | 2021-07-26 16:42:56 +0200 | [diff] [blame] | 3704 | /* Update the largest packet number. */ |
Frédéric Lécaille | 205e4f3 | 2022-03-28 17:38:27 +0200 | [diff] [blame] | 3705 | if (largest_pn != -1 && largest_pn > qel->pktns->rx.largest_pn) |
| 3706 | qel->pktns->rx.largest_pn = largest_pn; |
Frédéric Lécaille | 2766e78 | 2021-08-30 17:16:07 +0200 | [diff] [blame] | 3707 | if (!qc_treat_rx_crypto_frms(qel, ctx)) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3708 | goto err; |
| 3709 | |
Frédéric Lécaille | 2766e78 | 2021-08-30 17:16:07 +0200 | [diff] [blame] | 3710 | if (qel == cur_el) { |
Frédéric Lécaille | 3230bcf | 2021-09-22 15:15:46 +0200 | [diff] [blame] | 3711 | BUG_ON(qel == next_el); |
Frédéric Lécaille | 2766e78 | 2021-08-30 17:16:07 +0200 | [diff] [blame] | 3712 | qel = next_el; |
| 3713 | goto next_tel; |
| 3714 | } |
| 3715 | |
| 3716 | out: |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 3717 | TRACE_LEAVE(QUIC_EV_CONN_ELRXPKTS, ctx->qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3718 | return 1; |
| 3719 | |
| 3720 | err: |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 3721 | TRACE_DEVEL("leaving in error", QUIC_EV_CONN_ELRXPKTS, ctx->qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3722 | return 0; |
| 3723 | } |
| 3724 | |
Amaury Denoyelle | 8ae2807 | 2022-01-24 18:34:52 +0100 | [diff] [blame] | 3725 | /* Check if it's possible to remove header protection for packets related to |
| 3726 | * encryption level <qel>. If <qel> is NULL, assume it's false. |
| 3727 | * |
| 3728 | * Return true if the operation is possible else false. |
| 3729 | */ |
| 3730 | static int qc_qel_may_rm_hp(struct quic_conn *qc, struct quic_enc_level *qel) |
| 3731 | { |
| 3732 | enum quic_tls_enc_level tel; |
| 3733 | |
| 3734 | if (!qel) |
| 3735 | return 0; |
| 3736 | |
| 3737 | tel = ssl_to_quic_enc_level(qel->level); |
| 3738 | |
| 3739 | /* check if tls secrets are available */ |
Frédéric Lécaille | bd24208 | 2022-02-25 17:17:59 +0100 | [diff] [blame] | 3740 | if (qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD) { |
Amaury Denoyelle | 8ae2807 | 2022-01-24 18:34:52 +0100 | [diff] [blame] | 3741 | TRACE_DEVEL("Discarded keys", QUIC_EV_CONN_TRMHP, qc); |
Frédéric Lécaille | 51c9065 | 2022-02-22 11:39:14 +0100 | [diff] [blame] | 3742 | return 0; |
| 3743 | } |
Amaury Denoyelle | 8ae2807 | 2022-01-24 18:34:52 +0100 | [diff] [blame] | 3744 | |
Frédéric Lécaille | bd24208 | 2022-02-25 17:17:59 +0100 | [diff] [blame] | 3745 | if (!(qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET)) |
Amaury Denoyelle | 8ae2807 | 2022-01-24 18:34:52 +0100 | [diff] [blame] | 3746 | return 0; |
| 3747 | |
Amaury Denoyelle | 0b1f931 | 2022-01-26 09:51:28 +0100 | [diff] [blame] | 3748 | /* check if the connection layer is ready before using app level */ |
Frédéric Lécaille | 298931d | 2022-01-28 21:41:06 +0100 | [diff] [blame] | 3749 | if ((tel == QUIC_TLS_ENC_LEVEL_APP || tel == QUIC_TLS_ENC_LEVEL_EARLY_DATA) && |
Frédéric Lécaille | 12aa26b | 2022-03-21 11:37:13 +0100 | [diff] [blame] | 3750 | qc->mux_state == QC_MUX_NULL) |
Amaury Denoyelle | 8ae2807 | 2022-01-24 18:34:52 +0100 | [diff] [blame] | 3751 | return 0; |
Amaury Denoyelle | 8ae2807 | 2022-01-24 18:34:52 +0100 | [diff] [blame] | 3752 | |
| 3753 | return 1; |
| 3754 | } |
| 3755 | |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 3756 | /* Sends application level packets from <qc> QUIC connection */ |
Frédéric Lécaille | 3e3a621 | 2022-04-25 10:17:00 +0200 | [diff] [blame] | 3757 | int qc_send_app_pkts(struct quic_conn *qc, int old_data, struct list *frms) |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 3758 | { |
| 3759 | int ret; |
| 3760 | struct qring *qr; |
| 3761 | |
| 3762 | qr = MT_LIST_POP(qc->tx.qring_list, typeof(qr), mt_list); |
| 3763 | if (!qr) |
| 3764 | /* Never happens */ |
| 3765 | return 1; |
| 3766 | |
Frédéric Lécaille | 3e3a621 | 2022-04-25 10:17:00 +0200 | [diff] [blame] | 3767 | if (old_data) |
| 3768 | qc->flags |= QUIC_FL_CONN_RETRANS_OLD_DATA; |
Frédéric Lécaille | 28c7ea3 | 2022-02-25 17:41:39 +0100 | [diff] [blame] | 3769 | ret = qc_prep_app_pkts(qc, qr, frms); |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 3770 | if (ret == -1) |
| 3771 | goto err; |
| 3772 | else if (ret == 0) |
| 3773 | goto out; |
| 3774 | |
| 3775 | if (!qc_send_ppkts(qr, qc->xprt_ctx)) |
| 3776 | goto err; |
| 3777 | |
| 3778 | out: |
Frédéric Lécaille | 3e3a621 | 2022-04-25 10:17:00 +0200 | [diff] [blame] | 3779 | qc->flags &= ~QUIC_FL_CONN_RETRANS_OLD_DATA; |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 3780 | MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list); |
| 3781 | return 1; |
| 3782 | |
| 3783 | err: |
Frédéric Lécaille | 3e3a621 | 2022-04-25 10:17:00 +0200 | [diff] [blame] | 3784 | qc->flags &= ~QUIC_FL_CONN_RETRANS_OLD_DATA; |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 3785 | MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list); |
| 3786 | TRACE_DEVEL("leaving in error", QUIC_EV_CONN_IO_CB, qc); |
| 3787 | return 0; |
| 3788 | } |
| 3789 | |
Frédéric Lécaille | a956841 | 2022-04-25 08:58:04 +0200 | [diff] [blame] | 3790 | /* Sends handshake packets from up to two encryption levels <tel> and <next_te> |
| 3791 | * with <tel_frms> and <next_tel_frms> as frame list respectively for <qc> |
| 3792 | * QUIC connection |
| 3793 | * Returns 1 if succeeded, 0 if not. |
| 3794 | */ |
| 3795 | int qc_send_hdshk_pkts(struct quic_conn *qc, int old_data, |
| 3796 | enum quic_tls_enc_level tel, struct list *tel_frms, |
| 3797 | enum quic_tls_enc_level next_tel, struct list *next_tel_frms) |
| 3798 | { |
| 3799 | int ret; |
| 3800 | struct qring *qr; |
| 3801 | |
| 3802 | qr = MT_LIST_POP(qc->tx.qring_list, typeof(qr), mt_list); |
| 3803 | if (!qr) |
| 3804 | /* Never happens */ |
| 3805 | return 1; |
| 3806 | |
| 3807 | if (old_data) |
| 3808 | qc->flags |= QUIC_FL_CONN_RETRANS_OLD_DATA; |
| 3809 | ret = qc_prep_pkts(qc, qr, tel, tel_frms, next_tel, next_tel_frms); |
| 3810 | if (ret == -1) |
| 3811 | goto err; |
| 3812 | else if (ret == 0) |
| 3813 | goto out; |
| 3814 | |
| 3815 | if (!qc_send_ppkts(qr, qc->xprt_ctx)) |
| 3816 | goto err; |
| 3817 | |
| 3818 | out: |
| 3819 | qc->flags &= ~QUIC_FL_CONN_RETRANS_OLD_DATA; |
| 3820 | MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list); |
| 3821 | return 1; |
| 3822 | |
| 3823 | err: |
| 3824 | qc->flags &= ~QUIC_FL_CONN_RETRANS_OLD_DATA; |
| 3825 | MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list); |
| 3826 | TRACE_DEVEL("leaving in error", QUIC_EV_CONN_IO_CB, qc); |
| 3827 | return 0; |
| 3828 | } |
| 3829 | |
| 3830 | /* Retransmit up to two datagrams depending on packet number space */ |
| 3831 | static void qc_dgrams_retransmit(struct quic_conn *qc) |
| 3832 | { |
| 3833 | struct quic_enc_level *iqel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]; |
| 3834 | struct quic_enc_level *hqel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]; |
| 3835 | struct quic_enc_level *aqel = &qc->els[QUIC_TLS_ENC_LEVEL_APP]; |
| 3836 | |
| 3837 | if (iqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) { |
| 3838 | struct list ifrms = LIST_HEAD_INIT(ifrms); |
| 3839 | struct list hfrms = LIST_HEAD_INIT(hfrms); |
| 3840 | |
| 3841 | qc_prep_hdshk_fast_retrans(qc, &ifrms, &hfrms); |
| 3842 | TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &ifrms); |
| 3843 | TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &hfrms); |
| 3844 | if (!LIST_ISEMPTY(&ifrms)) { |
| 3845 | iqel->pktns->tx.pto_probe = 1; |
| 3846 | if (!LIST_ISEMPTY(&hfrms)) { |
| 3847 | hqel->pktns->tx.pto_probe = 1; |
| 3848 | qc_send_hdshk_pkts(qc, 1, QUIC_TLS_ENC_LEVEL_INITIAL, &ifrms, |
| 3849 | QUIC_TLS_ENC_LEVEL_HANDSHAKE, &hfrms); |
| 3850 | } |
| 3851 | } |
| 3852 | if (hqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) { |
| 3853 | qc_prep_fast_retrans(qc, hqel, &hfrms, NULL); |
| 3854 | TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &hfrms); |
| 3855 | if (!LIST_ISEMPTY(&hfrms)) { |
| 3856 | hqel->pktns->tx.pto_probe = 1; |
| 3857 | qc_send_hdshk_pkts(qc, 1, QUIC_TLS_ENC_LEVEL_HANDSHAKE, &hfrms, |
| 3858 | QUIC_TLS_ENC_LEVEL_NONE, NULL); |
| 3859 | } |
| 3860 | hqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED; |
| 3861 | } |
| 3862 | iqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED; |
| 3863 | } |
| 3864 | else { |
| 3865 | int i; |
| 3866 | struct list frms1 = LIST_HEAD_INIT(frms1); |
| 3867 | struct list frms2 = LIST_HEAD_INIT(frms2); |
| 3868 | |
| 3869 | if (hqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) { |
| 3870 | hqel->pktns->tx.pto_probe = 0; |
| 3871 | for (i = 0; i < QUIC_MAX_NB_PTO_DGRAMS; i++) { |
| 3872 | qc_prep_fast_retrans(qc, hqel, &frms1, NULL); |
| 3873 | TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &frms1); |
| 3874 | if (!LIST_ISEMPTY(&frms1)) { |
| 3875 | hqel->pktns->tx.pto_probe = 1; |
| 3876 | qc_send_hdshk_pkts(qc, 1, QUIC_TLS_ENC_LEVEL_HANDSHAKE, &frms1, |
| 3877 | QUIC_TLS_ENC_LEVEL_NONE, NULL); |
| 3878 | } |
| 3879 | } |
| 3880 | hqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED; |
| 3881 | } |
| 3882 | else if (aqel->pktns->flags & QUIC_FL_PKTNS_PROBE_NEEDED) { |
| 3883 | aqel->pktns->tx.pto_probe = 0; |
| 3884 | qc_prep_fast_retrans(qc, aqel, &frms1, &frms2); |
| 3885 | TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &frms1); |
| 3886 | TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, &frms2); |
| 3887 | if (!LIST_ISEMPTY(&frms1)) { |
| 3888 | aqel->pktns->tx.pto_probe = 1; |
| 3889 | qc_send_app_pkts(qc, 1, &frms1); |
| 3890 | } |
| 3891 | if (!LIST_ISEMPTY(&frms2)) { |
| 3892 | aqel->pktns->tx.pto_probe = 1; |
| 3893 | qc_send_app_pkts(qc, 1, &frms2); |
| 3894 | } |
| 3895 | aqel->pktns->flags &= ~QUIC_FL_PKTNS_PROBE_NEEDED; |
| 3896 | } |
| 3897 | } |
| 3898 | } |
| 3899 | |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 3900 | /* QUIC connection packet handler task (post handshake) */ |
| 3901 | static struct task *quic_conn_app_io_cb(struct task *t, void *context, unsigned int state) |
| 3902 | { |
| 3903 | struct ssl_sock_ctx *ctx; |
| 3904 | struct quic_conn *qc; |
| 3905 | struct quic_enc_level *qel; |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 3906 | |
| 3907 | |
| 3908 | ctx = context; |
| 3909 | qc = ctx->qc; |
| 3910 | qel = &qc->els[QUIC_TLS_ENC_LEVEL_APP]; |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 3911 | |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 3912 | TRACE_PROTO("state", QUIC_EV_CONN_IO_CB, qc, &qc->state); |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 3913 | |
Frédéric Lécaille | 7aef5f4 | 2022-04-25 10:33:12 +0200 | [diff] [blame] | 3914 | /* Retranmissions */ |
| 3915 | if (qc->flags & QUIC_FL_CONN_RETRANS_NEEDED) { |
| 3916 | TRACE_PROTO("retransmission needed", QUIC_EV_CONN_IO_CB, qc); |
| 3917 | qc->flags &= ~QUIC_FL_CONN_RETRANS_NEEDED; |
| 3918 | qc_dgrams_retransmit(qc); |
| 3919 | } |
| 3920 | |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 3921 | if (!MT_LIST_ISEMPTY(&qel->rx.pqpkts) && qc_qel_may_rm_hp(qc, qel)) |
| 3922 | qc_rm_hp_pkts(qc, qel); |
| 3923 | |
| 3924 | if (!qc_treat_rx_pkts(qel, NULL, ctx, 0)) |
| 3925 | goto err; |
| 3926 | |
Frédéric Lécaille | 4775680 | 2022-03-25 09:12:16 +0100 | [diff] [blame] | 3927 | if ((qc->flags & QUIC_FL_CONN_DRAINING) && |
| 3928 | !(qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE)) |
| 3929 | goto out; |
| 3930 | |
Frédéric Lécaille | 3e3a621 | 2022-04-25 10:17:00 +0200 | [diff] [blame] | 3931 | if (!qc_send_app_pkts(qc, 0, &qel->pktns->tx.frms)) |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 3932 | goto err; |
| 3933 | |
Frédéric Lécaille | 4775680 | 2022-03-25 09:12:16 +0100 | [diff] [blame] | 3934 | out: |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 3935 | return t; |
| 3936 | |
| 3937 | err: |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 3938 | TRACE_DEVEL("leaving in error", QUIC_EV_CONN_IO_CB, qc, &qc->state); |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 3939 | return t; |
| 3940 | } |
| 3941 | |
Frédéric Lécaille | 91ae7aa | 2021-08-03 16:45:39 +0200 | [diff] [blame] | 3942 | /* QUIC connection packet handler task. */ |
| 3943 | struct task *quic_conn_io_cb(struct task *t, void *context, unsigned int state) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3944 | { |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3945 | int ret, ssl_err; |
Frédéric Lécaille | 91ae7aa | 2021-08-03 16:45:39 +0200 | [diff] [blame] | 3946 | struct ssl_sock_ctx *ctx; |
Frédéric Lécaille | a5fe49f | 2021-06-04 11:52:35 +0200 | [diff] [blame] | 3947 | struct quic_conn *qc; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3948 | enum quic_tls_enc_level tel, next_tel; |
| 3949 | struct quic_enc_level *qel, *next_qel; |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3950 | struct qring *qr; // Tx ring |
Frédéric Lécaille | de6f7c5 | 2022-01-03 17:25:53 +0100 | [diff] [blame] | 3951 | int st, force_ack, zero_rtt; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3952 | |
Frédéric Lécaille | 91ae7aa | 2021-08-03 16:45:39 +0200 | [diff] [blame] | 3953 | ctx = context; |
Amaury Denoyelle | c15dd92 | 2021-12-21 11:41:52 +0100 | [diff] [blame] | 3954 | qc = ctx->qc; |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 3955 | TRACE_ENTER(QUIC_EV_CONN_IO_CB, qc); |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 3956 | qr = NULL; |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 3957 | st = qc->state; |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 3958 | TRACE_PROTO("state", QUIC_EV_CONN_IO_CB, qc, &st); |
Frédéric Lécaille | 7aef5f4 | 2022-04-25 10:33:12 +0200 | [diff] [blame] | 3959 | |
| 3960 | /* Retranmissions */ |
| 3961 | if (qc->flags & QUIC_FL_CONN_RETRANS_NEEDED) { |
| 3962 | TRACE_PROTO("retransmission needed", QUIC_EV_CONN_PHPKTS, qc); |
| 3963 | qc->flags &= ~QUIC_FL_CONN_RETRANS_NEEDED; |
| 3964 | qc_dgrams_retransmit(qc); |
| 3965 | } |
| 3966 | |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 3967 | if (qc->flags & QUIC_FL_CONN_IO_CB_WAKEUP) { |
| 3968 | qc->flags &= ~QUIC_FL_CONN_IO_CB_WAKEUP; |
Frédéric Lécaille | 6b66315 | 2022-01-04 17:03:11 +0100 | [diff] [blame] | 3969 | /* The I/O handler has been woken up by the dgram listener |
| 3970 | * after the anti-amplification was reached. |
| 3971 | */ |
| 3972 | qc_set_timer(qc); |
| 3973 | if (tick_isset(qc->timer) && tick_is_lt(qc->timer, now_ms)) |
| 3974 | task_wakeup(qc->timer_task, TASK_WOKEN_MSG); |
| 3975 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3976 | ssl_err = SSL_ERROR_NONE; |
Frédéric Lécaille | 4137b2d | 2021-12-17 18:24:16 +0100 | [diff] [blame] | 3977 | zero_rtt = st < QUIC_HS_ST_COMPLETE && |
| 3978 | (!MT_LIST_ISEMPTY(&qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA].rx.pqpkts) || |
| 3979 | qc_el_rx_pkts(&qc->els[QUIC_TLS_ENC_LEVEL_EARLY_DATA])); |
Frédéric Lécaille | 2766e78 | 2021-08-30 17:16:07 +0200 | [diff] [blame] | 3980 | start: |
Frédéric Lécaille | 917a7db | 2022-01-03 17:00:35 +0100 | [diff] [blame] | 3981 | if (st >= QUIC_HS_ST_COMPLETE && |
| 3982 | qc_el_rx_pkts(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE])) { |
| 3983 | TRACE_PROTO("remaining Handshake packets", QUIC_EV_CONN_PHPKTS, qc); |
| 3984 | /* There may be remaining Handshake packets to treat and acknowledge. */ |
| 3985 | tel = QUIC_TLS_ENC_LEVEL_HANDSHAKE; |
| 3986 | next_tel = QUIC_TLS_ENC_LEVEL_APP; |
| 3987 | } |
| 3988 | else if (!quic_get_tls_enc_levels(&tel, &next_tel, st, zero_rtt)) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3989 | goto err; |
| 3990 | |
Frédéric Lécaille | a5fe49f | 2021-06-04 11:52:35 +0200 | [diff] [blame] | 3991 | qel = &qc->els[tel]; |
Frédéric Lécaille | f798096 | 2021-08-19 17:35:21 +0200 | [diff] [blame] | 3992 | next_qel = next_tel == QUIC_TLS_ENC_LEVEL_NONE ? NULL : &qc->els[next_tel]; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3993 | |
| 3994 | next_level: |
Amaury Denoyelle | 8ae2807 | 2022-01-24 18:34:52 +0100 | [diff] [blame] | 3995 | /* Treat packets waiting for header packet protection decryption */ |
| 3996 | if (!MT_LIST_ISEMPTY(&qel->rx.pqpkts) && qc_qel_may_rm_hp(qc, qel)) |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 3997 | qc_rm_hp_pkts(qc, qel); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 3998 | |
Frédéric Lécaille | 2766e78 | 2021-08-30 17:16:07 +0200 | [diff] [blame] | 3999 | force_ack = qel == &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL] || |
| 4000 | qel == &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]; |
| 4001 | if (!qc_treat_rx_pkts(qel, next_qel, ctx, force_ack)) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4002 | goto err; |
| 4003 | |
Frédéric Lécaille | 4775680 | 2022-03-25 09:12:16 +0100 | [diff] [blame] | 4004 | if ((qc->flags & QUIC_FL_CONN_DRAINING) && |
| 4005 | !(qc->flags & QUIC_FL_CONN_IMMEDIATE_CLOSE)) |
| 4006 | goto out; |
| 4007 | |
Frédéric Lécaille | a5da31d | 2021-12-14 19:44:14 +0100 | [diff] [blame] | 4008 | if (zero_rtt && next_qel && !MT_LIST_ISEMPTY(&next_qel->rx.pqpkts) && |
Frédéric Lécaille | bd24208 | 2022-02-25 17:17:59 +0100 | [diff] [blame] | 4009 | (next_qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET)) { |
Frédéric Lécaille | a5da31d | 2021-12-14 19:44:14 +0100 | [diff] [blame] | 4010 | qel = next_qel; |
| 4011 | next_qel = NULL; |
| 4012 | goto next_level; |
| 4013 | } |
| 4014 | |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 4015 | st = qc->state; |
Frédéric Lécaille | de6f7c5 | 2022-01-03 17:25:53 +0100 | [diff] [blame] | 4016 | if (st >= QUIC_HS_ST_COMPLETE) { |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 4017 | if (!(qc->flags & QUIC_FL_CONN_POST_HANDSHAKE_FRAMES_BUILT) && |
Frédéric Lécaille | de6f7c5 | 2022-01-03 17:25:53 +0100 | [diff] [blame] | 4018 | !quic_build_post_handshake_frames(qc)) |
Frédéric Lécaille | 91ae7aa | 2021-08-03 16:45:39 +0200 | [diff] [blame] | 4019 | goto err; |
Frédéric Lécaille | fee7ba6 | 2021-12-06 12:09:08 +0100 | [diff] [blame] | 4020 | |
Frédéric Lécaille | bd24208 | 2022-02-25 17:17:59 +0100 | [diff] [blame] | 4021 | if (!(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].tls_ctx.flags & |
Frédéric Lécaille | de6f7c5 | 2022-01-03 17:25:53 +0100 | [diff] [blame] | 4022 | QUIC_FL_TLS_SECRETS_DCD)) { |
| 4023 | /* Discard the Handshake keys. */ |
| 4024 | quic_tls_discard_keys(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]); |
| 4025 | TRACE_PROTO("discarding Handshake pktns", QUIC_EV_CONN_PHPKTS, qc); |
| 4026 | quic_pktns_discard(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns, qc); |
| 4027 | qc_set_timer(qc); |
Frédéric Lécaille | de6f7c5 | 2022-01-03 17:25:53 +0100 | [diff] [blame] | 4028 | qc_el_rx_pkts_del(&qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]); |
Frédéric Lécaille | e87524d | 2022-01-19 17:48:40 +0100 | [diff] [blame] | 4029 | qc_release_pktns_frms(qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns); |
Frédéric Lécaille | de6f7c5 | 2022-01-03 17:25:53 +0100 | [diff] [blame] | 4030 | } |
| 4031 | |
| 4032 | if (qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE].pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) { |
| 4033 | /* There may be remaining handshake to build (acks) */ |
| 4034 | st = QUIC_HS_ST_SERVER_HANDSHAKE; |
| 4035 | } |
Frédéric Lécaille | 91ae7aa | 2021-08-03 16:45:39 +0200 | [diff] [blame] | 4036 | } |
| 4037 | |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 4038 | if (!qr) |
| 4039 | qr = MT_LIST_POP(qc->tx.qring_list, typeof(qr), mt_list); |
Frédéric Lécaille | bec186d | 2022-01-12 15:32:55 +0100 | [diff] [blame] | 4040 | /* A listener does not send any O-RTT packet. O-RTT packet number space must not |
| 4041 | * be considered. |
| 4042 | */ |
| 4043 | if (!quic_get_tls_enc_levels(&tel, &next_tel, st, 0)) |
Frédéric Lécaille | ee2b8b3 | 2022-01-03 11:14:30 +0100 | [diff] [blame] | 4044 | goto err; |
Frédéric Lécaille | fc88844 | 2022-04-11 15:39:34 +0200 | [diff] [blame] | 4045 | ret = qc_prep_pkts(qc, qr, tel, &qc->els[tel].pktns->tx.frms, |
| 4046 | next_tel, &qc->els[next_tel].pktns->tx.frms); |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 4047 | if (ret == -1) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4048 | goto err; |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 4049 | else if (ret == 0) |
| 4050 | goto skip_send; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4051 | |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 4052 | if (!qc_send_ppkts(qr, ctx)) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4053 | goto err; |
| 4054 | |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 4055 | skip_send: |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4056 | /* Check if there is something to do for the next level. |
| 4057 | */ |
Frédéric Lécaille | 3230bcf | 2021-09-22 15:15:46 +0200 | [diff] [blame] | 4058 | if (next_qel && next_qel != qel && |
Frédéric Lécaille | bd24208 | 2022-02-25 17:17:59 +0100 | [diff] [blame] | 4059 | (next_qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_SET) && |
Frédéric Lécaille | 7d807c9 | 2021-12-06 08:56:38 +0100 | [diff] [blame] | 4060 | (!MT_LIST_ISEMPTY(&next_qel->rx.pqpkts) || qc_el_rx_pkts(next_qel))) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4061 | qel = next_qel; |
Frédéric Lécaille | 3230bcf | 2021-09-22 15:15:46 +0200 | [diff] [blame] | 4062 | next_qel = NULL; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4063 | goto next_level; |
| 4064 | } |
| 4065 | |
Frédéric Lécaille | 4775680 | 2022-03-25 09:12:16 +0100 | [diff] [blame] | 4066 | out: |
| 4067 | if (qr) |
| 4068 | MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list); |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 4069 | TRACE_LEAVE(QUIC_EV_CONN_IO_CB, qc, &st); |
Frédéric Lécaille | 91ae7aa | 2021-08-03 16:45:39 +0200 | [diff] [blame] | 4070 | return t; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4071 | |
| 4072 | err: |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 4073 | if (qr) |
| 4074 | MT_LIST_APPEND(qc->tx.qring_list, &qr->mt_list); |
Frédéric Lécaille | 00e2400 | 2022-02-18 17:13:45 +0100 | [diff] [blame] | 4075 | TRACE_DEVEL("leaving in error", QUIC_EV_CONN_IO_CB, qc, &st, &ssl_err); |
Frédéric Lécaille | 91ae7aa | 2021-08-03 16:45:39 +0200 | [diff] [blame] | 4076 | return t; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4077 | } |
| 4078 | |
Ilya Shipitsin | 1e9a666 | 2021-01-05 22:10:46 +0500 | [diff] [blame] | 4079 | /* Uninitialize <qel> QUIC encryption level. Never fails. */ |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4080 | static void quic_conn_enc_level_uninit(struct quic_enc_level *qel) |
| 4081 | { |
| 4082 | int i; |
| 4083 | |
| 4084 | for (i = 0; i < qel->tx.crypto.nb_buf; i++) { |
| 4085 | if (qel->tx.crypto.bufs[i]) { |
| 4086 | pool_free(pool_head_quic_crypto_buf, qel->tx.crypto.bufs[i]); |
| 4087 | qel->tx.crypto.bufs[i] = NULL; |
| 4088 | } |
| 4089 | } |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 4090 | ha_free(&qel->tx.crypto.bufs); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4091 | } |
| 4092 | |
| 4093 | /* Initialize QUIC TLS encryption level with <level<> as level for <qc> QUIC |
Ilya Shipitsin | 1e9a666 | 2021-01-05 22:10:46 +0500 | [diff] [blame] | 4094 | * connection allocating everything needed. |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4095 | * Returns 1 if succeeded, 0 if not. |
| 4096 | */ |
| 4097 | static int quic_conn_enc_level_init(struct quic_conn *qc, |
| 4098 | enum quic_tls_enc_level level) |
| 4099 | { |
| 4100 | struct quic_enc_level *qel; |
| 4101 | |
| 4102 | qel = &qc->els[level]; |
| 4103 | qel->level = quic_to_ssl_enc_level(level); |
| 4104 | qel->tls_ctx.rx.aead = qel->tls_ctx.tx.aead = NULL; |
| 4105 | qel->tls_ctx.rx.md = qel->tls_ctx.tx.md = NULL; |
| 4106 | qel->tls_ctx.rx.hp = qel->tls_ctx.tx.hp = NULL; |
Frédéric Lécaille | fc768ec | 2021-11-23 21:02:04 +0100 | [diff] [blame] | 4107 | qel->tls_ctx.flags = 0; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4108 | |
| 4109 | qel->rx.pkts = EB_ROOT; |
Frédéric Lécaille | 98cdeb2 | 2021-07-26 16:38:14 +0200 | [diff] [blame] | 4110 | HA_RWLOCK_INIT(&qel->rx.pkts_rwlock); |
Frédéric Lécaille | a11d0e2 | 2021-06-07 14:38:18 +0200 | [diff] [blame] | 4111 | MT_LIST_INIT(&qel->rx.pqpkts); |
Frédéric Lécaille | 9054d1b | 2021-07-26 16:23:53 +0200 | [diff] [blame] | 4112 | qel->rx.crypto.offset = 0; |
| 4113 | qel->rx.crypto.frms = EB_ROOT_UNIQUE; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4114 | |
| 4115 | /* Allocate only one buffer. */ |
| 4116 | qel->tx.crypto.bufs = malloc(sizeof *qel->tx.crypto.bufs); |
| 4117 | if (!qel->tx.crypto.bufs) |
| 4118 | goto err; |
| 4119 | |
| 4120 | qel->tx.crypto.bufs[0] = pool_alloc(pool_head_quic_crypto_buf); |
| 4121 | if (!qel->tx.crypto.bufs[0]) |
| 4122 | goto err; |
| 4123 | |
| 4124 | qel->tx.crypto.bufs[0]->sz = 0; |
| 4125 | qel->tx.crypto.nb_buf = 1; |
| 4126 | |
| 4127 | qel->tx.crypto.sz = 0; |
| 4128 | qel->tx.crypto.offset = 0; |
| 4129 | |
| 4130 | return 1; |
| 4131 | |
| 4132 | err: |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 4133 | ha_free(&qel->tx.crypto.bufs); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4134 | return 0; |
| 4135 | } |
| 4136 | |
Frédéric Lécaille | f293b69 | 2022-03-08 16:59:54 +0100 | [diff] [blame] | 4137 | /* Release the quic_conn <qc>. The connection is removed from the CIDs tree. |
| 4138 | * The connection tasklet is killed. |
Amaury Denoyelle | 76f47ca | 2021-12-23 10:02:50 +0100 | [diff] [blame] | 4139 | * |
Frédéric Lécaille | f293b69 | 2022-03-08 16:59:54 +0100 | [diff] [blame] | 4140 | * This function must only be called by the thread responsible of the quic_conn |
| 4141 | * tasklet. |
Amaury Denoyelle | 76f47ca | 2021-12-23 10:02:50 +0100 | [diff] [blame] | 4142 | */ |
Frédéric Lécaille | f293b69 | 2022-03-08 16:59:54 +0100 | [diff] [blame] | 4143 | static void quic_conn_release(struct quic_conn *qc) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4144 | { |
| 4145 | int i; |
Frédéric Lécaille | f293b69 | 2022-03-08 16:59:54 +0100 | [diff] [blame] | 4146 | struct ssl_sock_ctx *conn_ctx; |
Amaury Denoyelle | 5c3859c | 2022-03-29 14:49:35 +0200 | [diff] [blame] | 4147 | struct eb64_node *node; |
Frédéric Lécaille | 96fd163 | 2022-04-01 11:21:47 +0200 | [diff] [blame] | 4148 | struct quic_tls_ctx *app_tls_ctx; |
Amaury Denoyelle | 5c3859c | 2022-03-29 14:49:35 +0200 | [diff] [blame] | 4149 | |
Amaury Denoyelle | db71e3b | 2022-04-06 17:22:12 +0200 | [diff] [blame] | 4150 | /* We must not free the quic-conn if the MUX is still allocated. */ |
| 4151 | BUG_ON(qc->mux_state == QC_MUX_READY); |
| 4152 | |
Amaury Denoyelle | 5c3859c | 2022-03-29 14:49:35 +0200 | [diff] [blame] | 4153 | /* free remaining stream descriptors */ |
| 4154 | node = eb64_first(&qc->streams_by_id); |
| 4155 | while (node) { |
| 4156 | struct qc_stream_desc *stream; |
| 4157 | |
| 4158 | stream = eb64_entry(node, struct qc_stream_desc, by_id); |
| 4159 | node = eb64_next(node); |
| 4160 | |
Amaury Denoyelle | c9acc31 | 2022-04-01 16:41:21 +0200 | [diff] [blame] | 4161 | /* all streams attached to the quic-conn are released, so |
| 4162 | * qc_stream_desc_free will liberate the stream instance. |
| 4163 | */ |
| 4164 | BUG_ON(!stream->release); |
| 4165 | qc_stream_desc_free(stream); |
Amaury Denoyelle | 5c3859c | 2022-03-29 14:49:35 +0200 | [diff] [blame] | 4166 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4167 | |
Frédéric Lécaille | 530601c | 2022-03-10 15:11:57 +0100 | [diff] [blame] | 4168 | if (qc->idle_timer_task) { |
| 4169 | task_destroy(qc->idle_timer_task); |
| 4170 | qc->idle_timer_task = NULL; |
| 4171 | } |
| 4172 | |
Frédéric Lécaille | f293b69 | 2022-03-08 16:59:54 +0100 | [diff] [blame] | 4173 | if (qc->timer_task) { |
| 4174 | task_destroy(qc->timer_task); |
| 4175 | qc->timer_task = NULL; |
| 4176 | } |
Frédéric Lécaille | 6de7287 | 2021-06-11 15:44:24 +0200 | [diff] [blame] | 4177 | |
Frédéric Lécaille | f293b69 | 2022-03-08 16:59:54 +0100 | [diff] [blame] | 4178 | /* remove the connection from receiver cids trees */ |
| 4179 | ebmb_delete(&qc->odcid_node); |
| 4180 | ebmb_delete(&qc->scid_node); |
| 4181 | free_quic_conn_cids(qc); |
Amaury Denoyelle | 2af1985 | 2021-09-30 11:03:28 +0200 | [diff] [blame] | 4182 | |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 4183 | conn_ctx = qc->xprt_ctx; |
Amaury Denoyelle | 2d9794b | 2022-01-20 17:43:20 +0100 | [diff] [blame] | 4184 | if (conn_ctx) { |
Frédéric Lécaille | f293b69 | 2022-03-08 16:59:54 +0100 | [diff] [blame] | 4185 | tasklet_free(conn_ctx->wait_event.tasklet); |
Amaury Denoyelle | 2d9794b | 2022-01-20 17:43:20 +0100 | [diff] [blame] | 4186 | SSL_free(conn_ctx->ssl); |
Amaury Denoyelle | 76f47ca | 2021-12-23 10:02:50 +0100 | [diff] [blame] | 4187 | pool_free(pool_head_quic_conn_ctx, conn_ctx); |
Amaury Denoyelle | 2d9794b | 2022-01-20 17:43:20 +0100 | [diff] [blame] | 4188 | } |
Amaury Denoyelle | 76f47ca | 2021-12-23 10:02:50 +0100 | [diff] [blame] | 4189 | |
Frédéric Lécaille | 96fd163 | 2022-04-01 11:21:47 +0200 | [diff] [blame] | 4190 | quic_tls_ku_free(qc); |
| 4191 | for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++) { |
| 4192 | quic_tls_ctx_secs_free(&qc->els[i].tls_ctx); |
Amaury Denoyelle | 67e6cd5 | 2021-12-13 17:07:03 +0100 | [diff] [blame] | 4193 | quic_conn_enc_level_uninit(&qc->els[i]); |
Frédéric Lécaille | 96fd163 | 2022-04-01 11:21:47 +0200 | [diff] [blame] | 4194 | } |
| 4195 | |
| 4196 | app_tls_ctx = &qc->els[QUIC_TLS_ENC_LEVEL_APP].tls_ctx; |
| 4197 | pool_free(pool_head_quic_tls_secret, app_tls_ctx->rx.secret); |
| 4198 | pool_free(pool_head_quic_tls_secret, app_tls_ctx->tx.secret); |
Amaury Denoyelle | 0a29e13 | 2021-12-23 15:06:56 +0100 | [diff] [blame] | 4199 | |
Frédéric Lécaille | eb2a2da | 2022-04-01 12:15:24 +0200 | [diff] [blame] | 4200 | for (i = 0; i < QUIC_TLS_PKTNS_MAX; i++) { |
| 4201 | quic_pktns_tx_pkts_release(&qc->pktns[i]); |
Frédéric Lécaille | 6467088 | 2022-04-01 11:57:19 +0200 | [diff] [blame] | 4202 | quic_free_arngs(&qc->pktns[i].rx.arngs); |
Frédéric Lécaille | eb2a2da | 2022-04-01 12:15:24 +0200 | [diff] [blame] | 4203 | } |
Frédéric Lécaille | 6467088 | 2022-04-01 11:57:19 +0200 | [diff] [blame] | 4204 | |
Amaury Denoyelle | 67e6cd5 | 2021-12-13 17:07:03 +0100 | [diff] [blame] | 4205 | pool_free(pool_head_quic_conn_rxbuf, qc->rx.buf.area); |
| 4206 | pool_free(pool_head_quic_conn, qc); |
Frédéric Lécaille | ba85acd | 2022-01-11 14:43:50 +0100 | [diff] [blame] | 4207 | TRACE_PROTO("QUIC conn. freed", QUIC_EV_CONN_FREED, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4208 | } |
| 4209 | |
Amaury Denoyelle | e0be573 | 2022-04-05 17:34:18 +0200 | [diff] [blame] | 4210 | static void quic_close(struct connection *conn, void *xprt_ctx) |
Amaury Denoyelle | 414cac5 | 2021-09-22 11:14:37 +0200 | [diff] [blame] | 4211 | { |
| 4212 | struct ssl_sock_ctx *conn_ctx = xprt_ctx; |
Amaury Denoyelle | 29632b8 | 2022-01-18 16:50:58 +0100 | [diff] [blame] | 4213 | struct quic_conn *qc = conn_ctx->qc; |
Amaury Denoyelle | 0a29e13 | 2021-12-23 15:06:56 +0100 | [diff] [blame] | 4214 | |
Frédéric Lécaille | ba85acd | 2022-01-11 14:43:50 +0100 | [diff] [blame] | 4215 | TRACE_ENTER(QUIC_EV_CONN_CLOSE, qc); |
Amaury Denoyelle | 0a29e13 | 2021-12-23 15:06:56 +0100 | [diff] [blame] | 4216 | |
Amaury Denoyelle | 0b1f931 | 2022-01-26 09:51:28 +0100 | [diff] [blame] | 4217 | /* Next application data can be dropped. */ |
| 4218 | qc->mux_state = QC_MUX_RELEASED; |
| 4219 | |
Amaury Denoyelle | db71e3b | 2022-04-06 17:22:12 +0200 | [diff] [blame] | 4220 | /* If the quic-conn timer has already expired free the quic-conn. */ |
| 4221 | if (qc->flags & QUIC_FL_CONN_EXP_TIMER) { |
| 4222 | quic_conn_release(qc); |
| 4223 | TRACE_LEAVE(QUIC_EV_CONN_CLOSE); |
| 4224 | return; |
| 4225 | } |
| 4226 | |
Frédéric Lécaille | ba85acd | 2022-01-11 14:43:50 +0100 | [diff] [blame] | 4227 | TRACE_LEAVE(QUIC_EV_CONN_CLOSE, qc); |
Amaury Denoyelle | 414cac5 | 2021-09-22 11:14:37 +0200 | [diff] [blame] | 4228 | } |
| 4229 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4230 | /* Callback called upon loss detection and PTO timer expirations. */ |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 4231 | static struct task *process_timer(struct task *task, void *ctx, unsigned int state) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4232 | { |
Frédéric Lécaille | 1eaec33 | 2021-06-04 14:59:59 +0200 | [diff] [blame] | 4233 | struct ssl_sock_ctx *conn_ctx; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4234 | struct quic_conn *qc; |
| 4235 | struct quic_pktns *pktns; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4236 | |
| 4237 | conn_ctx = task->context; |
Amaury Denoyelle | c15dd92 | 2021-12-21 11:41:52 +0100 | [diff] [blame] | 4238 | qc = conn_ctx->qc; |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 4239 | TRACE_ENTER(QUIC_EV_CONN_PTIMER, qc, |
Frédéric Lécaille | f7e0b8d | 2020-12-16 17:33:11 +0100 | [diff] [blame] | 4240 | NULL, NULL, &qc->path->ifae_pkts); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4241 | task->expire = TICK_ETERNITY; |
| 4242 | pktns = quic_loss_pktns(qc); |
| 4243 | if (tick_isset(pktns->tx.loss_time)) { |
| 4244 | struct list lost_pkts = LIST_HEAD_INIT(lost_pkts); |
| 4245 | |
| 4246 | qc_packet_loss_lookup(pktns, qc, &lost_pkts); |
| 4247 | if (!LIST_ISEMPTY(&lost_pkts)) |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 4248 | qc_release_lost_pkts(qc, pktns, &lost_pkts, now_ms); |
| 4249 | qc_set_timer(qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4250 | goto out; |
| 4251 | } |
| 4252 | |
| 4253 | if (qc->path->in_flight) { |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 4254 | pktns = quic_pto_pktns(qc, qc->state >= QUIC_HS_ST_COMPLETE, NULL); |
Frédéric Lécaille | dafbde6 | 2022-04-26 13:54:28 +0200 | [diff] [blame] | 4255 | if (qc->mux_state == QC_MUX_READY && qc->qcc->subs && |
| 4256 | qc->qcc->subs->events & SUB_RETRY_SEND) { |
| 4257 | struct qcc *qcc = qc->qcc; |
| 4258 | |
| 4259 | pktns->tx.pto_probe = QUIC_MAX_NB_PTO_DGRAMS; |
| 4260 | tasklet_wakeup(qcc->subs->tasklet); |
| 4261 | qcc->subs->events &= ~SUB_RETRY_SEND; |
| 4262 | if (!qcc->subs->events) |
| 4263 | qcc->subs = NULL; |
| 4264 | } |
| 4265 | else { |
| 4266 | qc->flags |= QUIC_FL_CONN_RETRANS_NEEDED; |
| 4267 | pktns->flags |= QUIC_FL_PKTNS_PROBE_NEEDED; |
| 4268 | if (pktns == &qc->pktns[QUIC_TLS_PKTNS_INITIAL]) { |
| 4269 | if (qc->pktns[QUIC_TLS_PKTNS_HANDSHAKE].tx.in_flight) |
| 4270 | qc->pktns[QUIC_TLS_PKTNS_HANDSHAKE].flags |= QUIC_FL_PKTNS_PROBE_NEEDED; |
| 4271 | } |
Frédéric Lécaille | 0fa553d | 2022-01-17 14:26:12 +0100 | [diff] [blame] | 4272 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4273 | } |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 4274 | else if (!qc_is_listener(qc) && qc->state <= QUIC_HS_ST_COMPLETE) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4275 | struct quic_enc_level *iel = &qc->els[QUIC_TLS_ENC_LEVEL_INITIAL]; |
| 4276 | struct quic_enc_level *hel = &qc->els[QUIC_TLS_ENC_LEVEL_HANDSHAKE]; |
| 4277 | |
Frédéric Lécaille | bd24208 | 2022-02-25 17:17:59 +0100 | [diff] [blame] | 4278 | if (hel->tls_ctx.flags == QUIC_FL_TLS_SECRETS_SET) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4279 | hel->pktns->tx.pto_probe = 1; |
Frédéric Lécaille | bd24208 | 2022-02-25 17:17:59 +0100 | [diff] [blame] | 4280 | if (iel->tls_ctx.flags == QUIC_FL_TLS_SECRETS_SET) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4281 | iel->pktns->tx.pto_probe = 1; |
| 4282 | } |
Frédéric Lécaille | a56054e | 2021-12-31 16:35:28 +0100 | [diff] [blame] | 4283 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4284 | tasklet_wakeup(conn_ctx->wait_event.tasklet); |
| 4285 | qc->path->loss.pto_count++; |
| 4286 | |
| 4287 | out: |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 4288 | TRACE_LEAVE(QUIC_EV_CONN_PTIMER, qc, pktns); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4289 | |
| 4290 | return task; |
| 4291 | } |
| 4292 | |
| 4293 | /* Initialize <conn> QUIC connection with <quic_initial_clients> as root of QUIC |
| 4294 | * connections used to identify the first Initial packets of client connecting |
| 4295 | * to listeners. This parameter must be NULL for QUIC connections attached |
| 4296 | * to listeners. <dcid> is the destination connection ID with <dcid_len> as length. |
| 4297 | * <scid> is the source connection ID with <scid_len> as length. |
| 4298 | * Returns 1 if succeeded, 0 if not. |
| 4299 | */ |
Frédéric Lécaille | 6de7287 | 2021-06-11 15:44:24 +0200 | [diff] [blame] | 4300 | static struct quic_conn *qc_new_conn(unsigned int version, int ipv4, |
Amaury Denoyelle | c92cbfc | 2021-12-14 17:20:59 +0100 | [diff] [blame] | 4301 | unsigned char *dcid, size_t dcid_len, size_t dcid_addr_len, |
Frédéric Lécaille | 6b19764 | 2021-07-06 16:25:08 +0200 | [diff] [blame] | 4302 | unsigned char *scid, size_t scid_len, int server, void *owner) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4303 | { |
| 4304 | int i; |
Frédéric Lécaille | 6de7287 | 2021-06-11 15:44:24 +0200 | [diff] [blame] | 4305 | struct quic_conn *qc; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4306 | /* Initial CID. */ |
| 4307 | struct quic_connection_id *icid; |
Frédéric Lécaille | c0b481f | 2022-02-02 15:39:55 +0100 | [diff] [blame] | 4308 | char *buf_area = NULL; |
Amaury Denoyelle | d6a352a | 2021-11-24 15:32:46 +0100 | [diff] [blame] | 4309 | struct listener *l = NULL; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4310 | |
Frédéric Lécaille | 3d77fa7 | 2021-05-31 09:30:14 +0200 | [diff] [blame] | 4311 | TRACE_ENTER(QUIC_EV_CONN_INIT); |
Frédéric Lécaille | 6de7287 | 2021-06-11 15:44:24 +0200 | [diff] [blame] | 4312 | qc = pool_zalloc(pool_head_quic_conn); |
| 4313 | if (!qc) { |
| 4314 | TRACE_PROTO("Could not allocate a new connection", QUIC_EV_CONN_INIT); |
| 4315 | goto err; |
| 4316 | } |
| 4317 | |
Frédéric Lécaille | 324ecda | 2021-11-02 10:14:44 +0100 | [diff] [blame] | 4318 | buf_area = pool_alloc(pool_head_quic_conn_rxbuf); |
| 4319 | if (!buf_area) { |
Amaury Denoyelle | e770ce3 | 2021-12-21 14:51:56 +0100 | [diff] [blame] | 4320 | TRACE_PROTO("Could not allocate a new RX buffer", QUIC_EV_CONN_INIT, qc); |
Frédéric Lécaille | 324ecda | 2021-11-02 10:14:44 +0100 | [diff] [blame] | 4321 | goto err; |
| 4322 | } |
| 4323 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4324 | qc->cids = EB_ROOT; |
| 4325 | /* QUIC Server (or listener). */ |
Frédéric Lécaille | 3d77fa7 | 2021-05-31 09:30:14 +0200 | [diff] [blame] | 4326 | if (server) { |
Amaury Denoyelle | d6a352a | 2021-11-24 15:32:46 +0100 | [diff] [blame] | 4327 | l = owner; |
Frédéric Lécaille | 6b19764 | 2021-07-06 16:25:08 +0200 | [diff] [blame] | 4328 | |
Frédéric Lécaille | 2fe8b3b | 2022-01-10 12:10:10 +0100 | [diff] [blame] | 4329 | qc->flags |= QUIC_FL_CONN_LISTENER; |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 4330 | qc->state = QUIC_HS_ST_SERVER_INITIAL; |
Amaury Denoyelle | c92cbfc | 2021-12-14 17:20:59 +0100 | [diff] [blame] | 4331 | /* Copy the initial DCID with the address. */ |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4332 | qc->odcid.len = dcid_len; |
Amaury Denoyelle | c92cbfc | 2021-12-14 17:20:59 +0100 | [diff] [blame] | 4333 | qc->odcid.addrlen = dcid_addr_len; |
| 4334 | memcpy(qc->odcid.data, dcid, dcid_len + dcid_addr_len); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4335 | |
Amaury Denoyelle | 42b9f1c | 2021-11-24 15:29:53 +0100 | [diff] [blame] | 4336 | /* copy the packet SCID to reuse it as DCID for sending */ |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4337 | if (scid_len) |
| 4338 | memcpy(qc->dcid.data, scid, scid_len); |
| 4339 | qc->dcid.len = scid_len; |
Frédéric Lécaille | c1029f6 | 2021-10-20 11:09:58 +0200 | [diff] [blame] | 4340 | qc->tx.qring_list = &l->rx.tx_qring_list; |
Amaury Denoyelle | 2af1985 | 2021-09-30 11:03:28 +0200 | [diff] [blame] | 4341 | qc->li = l; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4342 | } |
| 4343 | /* QUIC Client (outgoing connection to servers) */ |
| 4344 | else { |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 4345 | qc->state = QUIC_HS_ST_CLIENT_INITIAL; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4346 | if (dcid_len) |
| 4347 | memcpy(qc->dcid.data, dcid, dcid_len); |
| 4348 | qc->dcid.len = dcid_len; |
| 4349 | } |
Amaury Denoyelle | 0b1f931 | 2022-01-26 09:51:28 +0100 | [diff] [blame] | 4350 | qc->mux_state = QC_MUX_NULL; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4351 | |
| 4352 | /* Initialize the output buffer */ |
| 4353 | qc->obuf.pos = qc->obuf.data; |
| 4354 | |
Amaury Denoyelle | 0442efd | 2022-01-28 16:02:13 +0100 | [diff] [blame] | 4355 | icid = new_quic_cid(&qc->cids, qc, 0); |
Frédéric Lécaille | 6de7287 | 2021-06-11 15:44:24 +0200 | [diff] [blame] | 4356 | if (!icid) { |
Amaury Denoyelle | e770ce3 | 2021-12-21 14:51:56 +0100 | [diff] [blame] | 4357 | TRACE_PROTO("Could not allocate a new connection ID", QUIC_EV_CONN_INIT, qc); |
Frédéric Lécaille | 6de7287 | 2021-06-11 15:44:24 +0200 | [diff] [blame] | 4358 | goto err; |
| 4359 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4360 | |
Frédéric Lécaille | 74904a4 | 2022-01-27 15:35:56 +0100 | [diff] [blame] | 4361 | /* insert the allocated CID in the receiver datagram handler tree */ |
| 4362 | if (server) |
Amaury Denoyelle | 8524f0f | 2022-02-08 15:03:40 +0100 | [diff] [blame] | 4363 | ebmb_insert(&quic_dghdlrs[tid].cids, &icid->node, icid->cid.len); |
Amaury Denoyelle | d6a352a | 2021-11-24 15:32:46 +0100 | [diff] [blame] | 4364 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4365 | /* Select our SCID which is the first CID with 0 as sequence number. */ |
| 4366 | qc->scid = icid->cid; |
| 4367 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4368 | /* Packet number spaces initialization. */ |
| 4369 | for (i = 0; i < QUIC_TLS_PKTNS_MAX; i++) |
| 4370 | quic_pktns_init(&qc->pktns[i]); |
| 4371 | /* QUIC encryption level context initialization. */ |
| 4372 | for (i = 0; i < QUIC_TLS_ENC_LEVEL_MAX; i++) { |
Frédéric Lécaille | 6de7287 | 2021-06-11 15:44:24 +0200 | [diff] [blame] | 4373 | if (!quic_conn_enc_level_init(qc, i)) { |
Amaury Denoyelle | e770ce3 | 2021-12-21 14:51:56 +0100 | [diff] [blame] | 4374 | TRACE_PROTO("Could not initialize an encryption level", QUIC_EV_CONN_INIT, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4375 | goto err; |
Frédéric Lécaille | 6de7287 | 2021-06-11 15:44:24 +0200 | [diff] [blame] | 4376 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4377 | /* Initialize the packet number space. */ |
| 4378 | qc->els[i].pktns = &qc->pktns[quic_tls_pktns(i)]; |
| 4379 | } |
| 4380 | |
Frédéric Lécaille | c8d3f87 | 2021-07-06 17:19:44 +0200 | [diff] [blame] | 4381 | qc->version = version; |
Frédéric Lécaille | a956d15 | 2021-11-10 09:24:22 +0100 | [diff] [blame] | 4382 | qc->tps_tls_ext = qc->version & 0xff000000 ? |
| 4383 | TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS_DRAFT: |
| 4384 | TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4385 | /* TX part. */ |
| 4386 | LIST_INIT(&qc->tx.frms_to_send); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4387 | qc->tx.nb_buf = QUIC_CONN_TX_BUFS_NB; |
| 4388 | qc->tx.wbuf = qc->tx.rbuf = 0; |
| 4389 | qc->tx.bytes = 0; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4390 | /* RX part. */ |
| 4391 | qc->rx.bytes = 0; |
Frédéric Lécaille | 324ecda | 2021-11-02 10:14:44 +0100 | [diff] [blame] | 4392 | qc->rx.buf = b_make(buf_area, QUIC_CONN_RX_BUFSZ, 0, 0); |
Frédéric Lécaille | 59bf255 | 2022-03-28 12:13:09 +0200 | [diff] [blame] | 4393 | |
| 4394 | qc->nb_pkt_for_cc = 1; |
| 4395 | qc->nb_pkt_since_cc = 0; |
| 4396 | |
Frédéric Lécaille | 324ecda | 2021-11-02 10:14:44 +0100 | [diff] [blame] | 4397 | LIST_INIT(&qc->rx.pkt_list); |
Frédéric Lécaille | 40df78f | 2021-11-30 10:59:37 +0100 | [diff] [blame] | 4398 | if (!quic_tls_ku_init(qc)) { |
Amaury Denoyelle | e770ce3 | 2021-12-21 14:51:56 +0100 | [diff] [blame] | 4399 | TRACE_PROTO("Key update initialization failed", QUIC_EV_CONN_INIT, qc); |
Frédéric Lécaille | 40df78f | 2021-11-30 10:59:37 +0100 | [diff] [blame] | 4400 | goto err; |
| 4401 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4402 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4403 | /* XXX TO DO: Only one path at this time. */ |
| 4404 | qc->path = &qc->paths[0]; |
| 4405 | quic_path_init(qc->path, ipv4, default_quic_cc_algo, qc); |
| 4406 | |
Amaury Denoyelle | cfa2d56 | 2022-01-19 16:01:05 +0100 | [diff] [blame] | 4407 | /* required to use MTLIST_IN_LIST */ |
| 4408 | MT_LIST_INIT(&qc->accept_list); |
| 4409 | |
Amaury Denoyelle | 5c3859c | 2022-03-29 14:49:35 +0200 | [diff] [blame] | 4410 | qc->streams_by_id = EB_ROOT_UNIQUE; |
Amaury Denoyelle | d2f80a2 | 2022-04-15 17:30:49 +0200 | [diff] [blame] | 4411 | qc->stream_buf_count = 0; |
Amaury Denoyelle | 5c3859c | 2022-03-29 14:49:35 +0200 | [diff] [blame] | 4412 | |
Amaury Denoyelle | e770ce3 | 2021-12-21 14:51:56 +0100 | [diff] [blame] | 4413 | TRACE_LEAVE(QUIC_EV_CONN_INIT, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4414 | |
Frédéric Lécaille | 6de7287 | 2021-06-11 15:44:24 +0200 | [diff] [blame] | 4415 | return qc; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4416 | |
| 4417 | err: |
Amaury Denoyelle | e770ce3 | 2021-12-21 14:51:56 +0100 | [diff] [blame] | 4418 | TRACE_DEVEL("leaving in error", QUIC_EV_CONN_INIT, qc ? qc : NULL); |
Frédéric Lécaille | c0b481f | 2022-02-02 15:39:55 +0100 | [diff] [blame] | 4419 | pool_free(pool_head_quic_conn_rxbuf, buf_area); |
| 4420 | if (qc) |
| 4421 | qc->rx.buf.area = NULL; |
Frédéric Lécaille | f293b69 | 2022-03-08 16:59:54 +0100 | [diff] [blame] | 4422 | quic_conn_release(qc); |
Frédéric Lécaille | 6de7287 | 2021-06-11 15:44:24 +0200 | [diff] [blame] | 4423 | return NULL; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4424 | } |
| 4425 | |
| 4426 | /* Initialize the timer task of <qc> QUIC connection. |
| 4427 | * Returns 1 if succeeded, 0 if not. |
| 4428 | */ |
| 4429 | static int quic_conn_init_timer(struct quic_conn *qc) |
| 4430 | { |
Frédéric Lécaille | f57c333 | 2021-12-09 10:06:21 +0100 | [diff] [blame] | 4431 | /* Attach this task to the same thread ID used for the connection */ |
| 4432 | qc->timer_task = task_new(1UL << qc->tid); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4433 | if (!qc->timer_task) |
| 4434 | return 0; |
| 4435 | |
| 4436 | qc->timer = TICK_ETERNITY; |
| 4437 | qc->timer_task->process = process_timer; |
Frédéric Lécaille | 7fbb94d | 2022-01-31 10:37:07 +0100 | [diff] [blame] | 4438 | qc->timer_task->context = qc->xprt_ctx; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4439 | |
| 4440 | return 1; |
| 4441 | } |
| 4442 | |
Frédéric Lécaille | 4775680 | 2022-03-25 09:12:16 +0100 | [diff] [blame] | 4443 | /* Rearm the idle timer for <qc> QUIC connection. */ |
| 4444 | static void qc_idle_timer_do_rearm(struct quic_conn *qc) |
| 4445 | { |
| 4446 | unsigned int expire; |
| 4447 | |
| 4448 | expire = QUIC_MAX(3 * quic_pto(qc), qc->max_idle_timeout); |
| 4449 | qc->idle_timer_task->expire = tick_add(now_ms, MS_TO_TICKS(expire)); |
| 4450 | } |
| 4451 | |
Frédéric Lécaille | 530601c | 2022-03-10 15:11:57 +0100 | [diff] [blame] | 4452 | /* Rearm the idle timer for <qc> QUIC connection depending on <read> boolean |
| 4453 | * which is set to 1 when receiving a packet , and 0 when sending packet |
| 4454 | */ |
| 4455 | static void qc_idle_timer_rearm(struct quic_conn *qc, int read) |
| 4456 | { |
Frédéric Lécaille | 530601c | 2022-03-10 15:11:57 +0100 | [diff] [blame] | 4457 | if (read) { |
| 4458 | qc->flags |= QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ; |
| 4459 | } |
| 4460 | else { |
| 4461 | qc->flags &= ~QUIC_FL_CONN_IDLE_TIMER_RESTARTED_AFTER_READ; |
| 4462 | } |
Frédéric Lécaille | 4775680 | 2022-03-25 09:12:16 +0100 | [diff] [blame] | 4463 | qc_idle_timer_do_rearm(qc); |
Frédéric Lécaille | 530601c | 2022-03-10 15:11:57 +0100 | [diff] [blame] | 4464 | } |
| 4465 | |
| 4466 | /* The task handling the idle timeout */ |
| 4467 | static struct task *qc_idle_timer_task(struct task *t, void *ctx, unsigned int state) |
| 4468 | { |
| 4469 | struct quic_conn *qc = ctx; |
| 4470 | |
Amaury Denoyelle | b515b0a | 2022-04-06 10:28:43 +0200 | [diff] [blame] | 4471 | /* Notify the MUX before settings QUIC_FL_CONN_EXP_TIMER or the MUX |
| 4472 | * might free the quic-conn too early via quic_close(). |
| 4473 | */ |
| 4474 | qc_notify_close(qc); |
| 4475 | |
Amaury Denoyelle | db71e3b | 2022-04-06 17:22:12 +0200 | [diff] [blame] | 4476 | /* If the MUX is still alive, keep the quic-conn. The MUX is |
| 4477 | * responsible to call quic_close to release it. |
| 4478 | */ |
| 4479 | qc->flags |= QUIC_FL_CONN_EXP_TIMER; |
| 4480 | if (qc->mux_state != QC_MUX_READY) |
| 4481 | quic_conn_release(qc); |
| 4482 | |
| 4483 | /* TODO if the quic-conn cannot be freed because of the MUX, we may at |
| 4484 | * least clean some parts of it such as the tasklet. |
| 4485 | */ |
Frédéric Lécaille | 530601c | 2022-03-10 15:11:57 +0100 | [diff] [blame] | 4486 | |
| 4487 | return NULL; |
| 4488 | } |
| 4489 | |
| 4490 | /* Initialize the idle timeout task for <qc>. |
| 4491 | * Returns 1 if succeeded, 0 if not. |
| 4492 | */ |
| 4493 | static int quic_conn_init_idle_timer_task(struct quic_conn *qc) |
| 4494 | { |
| 4495 | qc->idle_timer_task = task_new_here(); |
| 4496 | if (!qc->idle_timer_task) |
| 4497 | return 0; |
| 4498 | |
| 4499 | qc->idle_timer_task->process = qc_idle_timer_task; |
| 4500 | qc->idle_timer_task->context = qc; |
| 4501 | qc_idle_timer_rearm(qc, 1); |
| 4502 | task_queue(qc->idle_timer_task); |
| 4503 | |
| 4504 | return 1; |
| 4505 | } |
| 4506 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4507 | /* Parse into <pkt> a long header located at <*buf> buffer, <end> begin a pointer to the end |
| 4508 | * past one byte of this buffer. |
| 4509 | */ |
| 4510 | static inline int quic_packet_read_long_header(unsigned char **buf, const unsigned char *end, |
| 4511 | struct quic_rx_packet *pkt) |
| 4512 | { |
| 4513 | unsigned char dcid_len, scid_len; |
| 4514 | |
| 4515 | /* Version */ |
| 4516 | if (!quic_read_uint32(&pkt->version, (const unsigned char **)buf, end)) |
| 4517 | return 0; |
| 4518 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4519 | /* Destination Connection ID Length */ |
| 4520 | dcid_len = *(*buf)++; |
| 4521 | /* We want to be sure we can read <dcid_len> bytes and one more for <scid_len> value */ |
| 4522 | if (dcid_len > QUIC_CID_MAXLEN || end - *buf < dcid_len + 1) |
| 4523 | /* XXX MUST BE DROPPED */ |
| 4524 | return 0; |
| 4525 | |
| 4526 | if (dcid_len) { |
| 4527 | /* Check that the length of this received DCID matches the CID lengths |
| 4528 | * of our implementation for non Initials packets only. |
| 4529 | */ |
Frédéric Lécaille | a5da31d | 2021-12-14 19:44:14 +0100 | [diff] [blame] | 4530 | if (pkt->type != QUIC_PACKET_TYPE_INITIAL && |
| 4531 | pkt->type != QUIC_PACKET_TYPE_0RTT && |
Amaury Denoyelle | d496251 | 2021-12-14 17:17:28 +0100 | [diff] [blame] | 4532 | dcid_len != QUIC_HAP_CID_LEN) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4533 | return 0; |
| 4534 | |
| 4535 | memcpy(pkt->dcid.data, *buf, dcid_len); |
| 4536 | } |
| 4537 | |
| 4538 | pkt->dcid.len = dcid_len; |
| 4539 | *buf += dcid_len; |
| 4540 | |
| 4541 | /* Source Connection ID Length */ |
| 4542 | scid_len = *(*buf)++; |
| 4543 | if (scid_len > QUIC_CID_MAXLEN || end - *buf < scid_len) |
| 4544 | /* XXX MUST BE DROPPED */ |
| 4545 | return 0; |
| 4546 | |
| 4547 | if (scid_len) |
| 4548 | memcpy(pkt->scid.data, *buf, scid_len); |
| 4549 | pkt->scid.len = scid_len; |
| 4550 | *buf += scid_len; |
| 4551 | |
| 4552 | return 1; |
| 4553 | } |
| 4554 | |
Frédéric Lécaille | 324ecda | 2021-11-02 10:14:44 +0100 | [diff] [blame] | 4555 | /* Insert <pkt> RX packet in its <qel> RX packets tree */ |
| 4556 | static void qc_pkt_insert(struct quic_rx_packet *pkt, struct quic_enc_level *qel) |
| 4557 | { |
| 4558 | pkt->pn_node.key = pkt->pn; |
Frédéric Lécaille | 2ce5acf | 2021-12-20 14:41:19 +0100 | [diff] [blame] | 4559 | quic_rx_packet_refinc(pkt); |
Frédéric Lécaille | 324ecda | 2021-11-02 10:14:44 +0100 | [diff] [blame] | 4560 | HA_RWLOCK_WRLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock); |
| 4561 | eb64_insert(&qel->rx.pkts, &pkt->pn_node); |
| 4562 | HA_RWLOCK_WRUNLOCK(QUIC_LOCK, &qel->rx.pkts_rwlock); |
Frédéric Lécaille | 324ecda | 2021-11-02 10:14:44 +0100 | [diff] [blame] | 4563 | } |
| 4564 | |
| 4565 | /* Try to remove the header protection of <pkt> QUIC packet attached to <qc> |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4566 | * QUIC connection with <buf> as packet number field address, <end> a pointer to one |
| 4567 | * byte past the end of the buffer containing this packet and <beg> the address of |
| 4568 | * the packet first byte. |
| 4569 | * If succeeded, this function updates <*buf> to point to the next packet in the buffer. |
| 4570 | * Returns 1 if succeeded, 0 if not. |
| 4571 | */ |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 4572 | static inline int qc_try_rm_hp(struct quic_conn *qc, |
| 4573 | struct quic_rx_packet *pkt, |
Frédéric Lécaille | 01cfec7 | 2021-12-22 10:17:01 +0100 | [diff] [blame] | 4574 | unsigned char *buf, unsigned char *beg, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4575 | const unsigned char *end, |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 4576 | struct quic_enc_level **el) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4577 | { |
| 4578 | unsigned char *pn = NULL; /* Packet number field */ |
Amaury Denoyelle | 8ae2807 | 2022-01-24 18:34:52 +0100 | [diff] [blame] | 4579 | enum quic_tls_enc_level tel; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4580 | struct quic_enc_level *qel; |
| 4581 | /* Only for traces. */ |
| 4582 | struct quic_rx_packet *qpkt_trace; |
| 4583 | |
| 4584 | qpkt_trace = NULL; |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 4585 | TRACE_ENTER(QUIC_EV_CONN_TRMHP, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4586 | /* The packet number is here. This is also the start minus |
| 4587 | * QUIC_PACKET_PN_MAXLEN of the sample used to add/remove the header |
| 4588 | * protection. |
| 4589 | */ |
Frédéric Lécaille | 01cfec7 | 2021-12-22 10:17:01 +0100 | [diff] [blame] | 4590 | pn = buf; |
Amaury Denoyelle | 8ae2807 | 2022-01-24 18:34:52 +0100 | [diff] [blame] | 4591 | |
| 4592 | tel = quic_packet_type_enc_level(pkt->type); |
| 4593 | qel = &qc->els[tel]; |
| 4594 | |
| 4595 | if (qc_qel_may_rm_hp(qc, qel)) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4596 | /* Note that the following function enables us to unprotect the packet |
| 4597 | * number and its length subsequently used to decrypt the entire |
| 4598 | * packets. |
| 4599 | */ |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 4600 | if (!qc_do_rm_hp(qc, pkt, &qel->tls_ctx, |
| 4601 | qel->pktns->rx.largest_pn, pn, beg, end)) { |
| 4602 | TRACE_PROTO("hp error", QUIC_EV_CONN_TRMHP, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4603 | goto err; |
| 4604 | } |
| 4605 | |
| 4606 | /* The AAD includes the packet number field found at <pn>. */ |
| 4607 | pkt->aad_len = pn - beg + pkt->pnl; |
| 4608 | qpkt_trace = pkt; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4609 | } |
Frédéric Lécaille | 7d845f1 | 2022-02-21 19:22:09 +0100 | [diff] [blame] | 4610 | else { |
Frédéric Lécaille | bd24208 | 2022-02-25 17:17:59 +0100 | [diff] [blame] | 4611 | if (qel->tls_ctx.flags & QUIC_FL_TLS_SECRETS_DCD) { |
Frédéric Lécaille | 324ecda | 2021-11-02 10:14:44 +0100 | [diff] [blame] | 4612 | /* If the packet number space has been discarded, this packet |
| 4613 | * will be not parsed. |
| 4614 | */ |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 4615 | TRACE_PROTO("Discarded pktns", QUIC_EV_CONN_TRMHP, qc, pkt); |
Frédéric Lécaille | 324ecda | 2021-11-02 10:14:44 +0100 | [diff] [blame] | 4616 | goto out; |
| 4617 | } |
| 4618 | |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 4619 | TRACE_PROTO("hp not removed", QUIC_EV_CONN_TRMHP, qc, pkt); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4620 | pkt->pn_offset = pn - beg; |
Frédéric Lécaille | ebc3fc1 | 2021-09-22 08:34:21 +0200 | [diff] [blame] | 4621 | MT_LIST_APPEND(&qel->rx.pqpkts, &pkt->list); |
| 4622 | quic_rx_packet_refinc(pkt); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4623 | } |
| 4624 | |
Frédéric Lécaille | 324ecda | 2021-11-02 10:14:44 +0100 | [diff] [blame] | 4625 | *el = qel; |
| 4626 | /* No reference counter incrementation here!!! */ |
| 4627 | LIST_APPEND(&qc->rx.pkt_list, &pkt->qc_rx_pkt_list); |
| 4628 | memcpy(b_tail(&qc->rx.buf), beg, pkt->len); |
| 4629 | pkt->data = (unsigned char *)b_tail(&qc->rx.buf); |
| 4630 | b_add(&qc->rx.buf, pkt->len); |
| 4631 | out: |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 4632 | TRACE_LEAVE(QUIC_EV_CONN_TRMHP, qc, qpkt_trace); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4633 | return 1; |
| 4634 | |
| 4635 | err: |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 4636 | TRACE_DEVEL("leaving in error", QUIC_EV_CONN_TRMHP, qc, qpkt_trace); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4637 | return 0; |
| 4638 | } |
| 4639 | |
| 4640 | /* Parse the header form from <byte0> first byte of <pkt> pacekt to set type. |
| 4641 | * Also set <*long_header> to 1 if this form is long, 0 if not. |
| 4642 | */ |
| 4643 | static inline void qc_parse_hd_form(struct quic_rx_packet *pkt, |
| 4644 | unsigned char byte0, int *long_header) |
| 4645 | { |
| 4646 | if (byte0 & QUIC_PACKET_LONG_HEADER_BIT) { |
| 4647 | pkt->type = |
| 4648 | (byte0 >> QUIC_PACKET_TYPE_SHIFT) & QUIC_PACKET_TYPE_BITMASK; |
| 4649 | *long_header = 1; |
| 4650 | } |
| 4651 | else { |
| 4652 | pkt->type = QUIC_PACKET_TYPE_SHORT; |
| 4653 | *long_header = 0; |
| 4654 | } |
| 4655 | } |
| 4656 | |
Amaury Denoyelle | a22d860 | 2021-11-10 15:17:56 +0100 | [diff] [blame] | 4657 | /* |
| 4658 | * Check if the QUIC version in packet <pkt> is supported. Returns a boolean. |
| 4659 | */ |
| 4660 | static inline int qc_pkt_is_supported_version(struct quic_rx_packet *pkt) |
| 4661 | { |
| 4662 | int j = 0, version; |
| 4663 | |
| 4664 | do { |
| 4665 | version = quic_supported_version[j]; |
| 4666 | if (version == pkt->version) |
| 4667 | return 1; |
| 4668 | |
| 4669 | version = quic_supported_version[++j]; |
| 4670 | } while(version); |
| 4671 | |
| 4672 | return 0; |
| 4673 | } |
| 4674 | |
Amaury Denoyelle | a22d860 | 2021-11-10 15:17:56 +0100 | [diff] [blame] | 4675 | /* |
| 4676 | * Send a Version Negotiation packet on response to <pkt> on socket <fd> to |
| 4677 | * address <addr>. |
| 4678 | * Implementation of RFC9000 6. Version Negotiation |
| 4679 | * |
| 4680 | * TODO implement a rate-limiting sending of Version Negotiation packets |
| 4681 | * |
| 4682 | * Returns 0 on success else non-zero |
| 4683 | */ |
Amaury Denoyelle | d6b1667 | 2021-12-23 10:37:19 +0100 | [diff] [blame] | 4684 | static int send_version_negotiation(int fd, struct sockaddr_storage *addr, |
| 4685 | struct quic_rx_packet *pkt) |
Amaury Denoyelle | a22d860 | 2021-11-10 15:17:56 +0100 | [diff] [blame] | 4686 | { |
| 4687 | char buf[256]; |
| 4688 | int i = 0, j, version; |
| 4689 | const socklen_t addrlen = get_addr_len(addr); |
| 4690 | |
| 4691 | /* |
| 4692 | * header form |
| 4693 | * long header, fixed bit to 0 for Version Negotiation |
| 4694 | */ |
Frédéric Lécaille | ea78ee1 | 2021-11-18 13:54:43 +0100 | [diff] [blame] | 4695 | if (RAND_bytes((unsigned char *)buf, 1) != 1) |
| 4696 | return 1; |
Amaury Denoyelle | a22d860 | 2021-11-10 15:17:56 +0100 | [diff] [blame] | 4697 | |
Frédéric Lécaille | ea78ee1 | 2021-11-18 13:54:43 +0100 | [diff] [blame] | 4698 | buf[i++] |= '\x80'; |
Amaury Denoyelle | a22d860 | 2021-11-10 15:17:56 +0100 | [diff] [blame] | 4699 | /* null version for Version Negotiation */ |
| 4700 | buf[i++] = '\x00'; |
| 4701 | buf[i++] = '\x00'; |
| 4702 | buf[i++] = '\x00'; |
| 4703 | buf[i++] = '\x00'; |
| 4704 | |
| 4705 | /* source connection id */ |
| 4706 | buf[i++] = pkt->scid.len; |
Amaury Denoyelle | 10eed8e | 2021-11-18 13:48:57 +0100 | [diff] [blame] | 4707 | memcpy(&buf[i], pkt->scid.data, pkt->scid.len); |
Amaury Denoyelle | a22d860 | 2021-11-10 15:17:56 +0100 | [diff] [blame] | 4708 | i += pkt->scid.len; |
| 4709 | |
| 4710 | /* destination connection id */ |
| 4711 | buf[i++] = pkt->dcid.len; |
Amaury Denoyelle | 10eed8e | 2021-11-18 13:48:57 +0100 | [diff] [blame] | 4712 | memcpy(&buf[i], pkt->dcid.data, pkt->dcid.len); |
Amaury Denoyelle | a22d860 | 2021-11-10 15:17:56 +0100 | [diff] [blame] | 4713 | i += pkt->dcid.len; |
| 4714 | |
| 4715 | /* supported version */ |
| 4716 | j = 0; |
| 4717 | do { |
| 4718 | version = htonl(quic_supported_version[j]); |
| 4719 | memcpy(&buf[i], &version, sizeof(version)); |
| 4720 | i += sizeof(version); |
| 4721 | |
| 4722 | version = quic_supported_version[++j]; |
| 4723 | } while (version); |
| 4724 | |
| 4725 | if (sendto(fd, buf, i, 0, (struct sockaddr *)addr, addrlen) < 0) |
| 4726 | return 1; |
| 4727 | |
| 4728 | return 0; |
| 4729 | } |
| 4730 | |
Amaury Denoyelle | b76ae69 | 2022-01-11 14:16:37 +0100 | [diff] [blame] | 4731 | /* Generate the token to be used in Retry packets. The token is written to |
| 4732 | * <buf> which is expected to be <len> bytes. |
| 4733 | * |
| 4734 | * Various parameters are expected to be encoded in the token. For now, only |
| 4735 | * the DCID from <pkt> is stored. This is useful to implement a stateless Retry |
| 4736 | * as this CID must be repeated by the server in the transport parameters. |
| 4737 | * |
| 4738 | * TODO add the client address to validate the token origin. |
| 4739 | * |
| 4740 | * Returns the length of the encoded token or 0 on error. |
| 4741 | */ |
| 4742 | static int generate_retry_token(unsigned char *buf, unsigned char len, |
| 4743 | struct quic_rx_packet *pkt) |
| 4744 | { |
| 4745 | const size_t token_len = 1 + pkt->dcid.len; |
| 4746 | unsigned char i = 0; |
| 4747 | |
| 4748 | if (token_len > len) |
| 4749 | return 0; |
| 4750 | |
| 4751 | buf[i++] = pkt->dcid.len; |
| 4752 | memcpy(&buf[i], pkt->dcid.data, pkt->dcid.len); |
| 4753 | i += pkt->dcid.len; |
| 4754 | |
| 4755 | return i; |
| 4756 | } |
| 4757 | |
| 4758 | /* Generate a Retry packet and send it on <fd> socket to <addr> in response to |
| 4759 | * the Initial <pkt> packet. |
| 4760 | * |
| 4761 | * Returns 0 on success else non-zero. |
| 4762 | */ |
| 4763 | static int send_retry(int fd, struct sockaddr_storage *addr, |
| 4764 | struct quic_rx_packet *pkt) |
| 4765 | { |
| 4766 | unsigned char buf[128]; |
| 4767 | int i = 0, token_len; |
| 4768 | const socklen_t addrlen = get_addr_len(addr); |
| 4769 | struct quic_cid scid; |
| 4770 | |
| 4771 | /* long header + fixed bit + packet type 0x3 */ |
| 4772 | buf[i++] = 0xf0; |
| 4773 | /* version */ |
| 4774 | buf[i++] = 0x00; |
| 4775 | buf[i++] = 0x00; |
| 4776 | buf[i++] = 0x00; |
| 4777 | buf[i++] = 0x01; |
| 4778 | |
| 4779 | /* Use the SCID from <pkt> for Retry DCID. */ |
| 4780 | buf[i++] = pkt->scid.len; |
| 4781 | memcpy(&buf[i], pkt->scid.data, pkt->scid.len); |
| 4782 | i += pkt->scid.len; |
| 4783 | |
| 4784 | /* Generate a new CID to be used as SCID for the Retry packet. */ |
| 4785 | scid.len = QUIC_HAP_CID_LEN; |
| 4786 | if (RAND_bytes(scid.data, scid.len) != 1) |
| 4787 | return 1; |
| 4788 | |
| 4789 | buf[i++] = scid.len; |
| 4790 | memcpy(&buf[i], scid.data, scid.len); |
| 4791 | i += scid.len; |
| 4792 | |
| 4793 | /* token */ |
Frédéric Lécaille | cc2764e | 2022-03-23 14:09:09 +0100 | [diff] [blame] | 4794 | if (!(token_len = generate_retry_token(&buf[i], sizeof(buf) - i, pkt))) |
Amaury Denoyelle | b76ae69 | 2022-01-11 14:16:37 +0100 | [diff] [blame] | 4795 | return 1; |
Frédéric Lécaille | cc2764e | 2022-03-23 14:09:09 +0100 | [diff] [blame] | 4796 | |
Amaury Denoyelle | b76ae69 | 2022-01-11 14:16:37 +0100 | [diff] [blame] | 4797 | i += token_len; |
| 4798 | |
| 4799 | /* token integrity tag */ |
| 4800 | if ((&buf[i] - buf < QUIC_TLS_TAG_LEN) || |
| 4801 | !quic_tls_generate_retry_integrity_tag(pkt->dcid.data, |
| 4802 | pkt->dcid.len, buf, i)) { |
| 4803 | return 1; |
| 4804 | } |
| 4805 | |
| 4806 | i += QUIC_TLS_TAG_LEN; |
| 4807 | |
| 4808 | if (sendto(fd, buf, i, 0, (struct sockaddr *)addr, addrlen) < 0) |
| 4809 | return 1; |
| 4810 | |
| 4811 | return 0; |
| 4812 | } |
| 4813 | |
Amaury Denoyelle | 8efe032 | 2021-12-15 16:32:56 +0100 | [diff] [blame] | 4814 | /* Retrieve a quic_conn instance from the <pkt> DCID field. If the packet is of |
| 4815 | * type INITIAL, the ODCID tree is first used. In this case, <saddr> is |
| 4816 | * concatenated to the <pkt> DCID field. |
| 4817 | * |
| 4818 | * Returns the instance or NULL if not found. |
| 4819 | */ |
Amaury Denoyelle | d6b1667 | 2021-12-23 10:37:19 +0100 | [diff] [blame] | 4820 | static struct quic_conn *retrieve_qc_conn_from_cid(struct quic_rx_packet *pkt, |
Amaury Denoyelle | 8efe032 | 2021-12-15 16:32:56 +0100 | [diff] [blame] | 4821 | struct listener *l, |
| 4822 | struct sockaddr_storage *saddr) |
| 4823 | { |
| 4824 | struct quic_conn *qc = NULL; |
| 4825 | struct ebmb_node *node; |
| 4826 | struct quic_connection_id *id; |
Amaury Denoyelle | 250ac42 | 2021-12-22 11:29:05 +0100 | [diff] [blame] | 4827 | /* set if the quic_conn is found in the second DCID tree */ |
| 4828 | int found_in_dcid = 0; |
Amaury Denoyelle | 8efe032 | 2021-12-15 16:32:56 +0100 | [diff] [blame] | 4829 | |
Amaury Denoyelle | 8efe032 | 2021-12-15 16:32:56 +0100 | [diff] [blame] | 4830 | /* Look first into ODCIDs tree for INITIAL/0-RTT packets. */ |
| 4831 | if (pkt->type == QUIC_PACKET_TYPE_INITIAL || |
| 4832 | pkt->type == QUIC_PACKET_TYPE_0RTT) { |
| 4833 | /* DCIDs of first packets coming from multiple clients may have |
| 4834 | * the same values. Let's distinguish them by concatenating the |
| 4835 | * socket addresses. |
| 4836 | */ |
| 4837 | quic_cid_saddr_cat(&pkt->dcid, saddr); |
Amaury Denoyelle | 8524f0f | 2022-02-08 15:03:40 +0100 | [diff] [blame] | 4838 | node = ebmb_lookup(&quic_dghdlrs[tid].odcids, pkt->dcid.data, |
Amaury Denoyelle | 8efe032 | 2021-12-15 16:32:56 +0100 | [diff] [blame] | 4839 | pkt->dcid.len + pkt->dcid.addrlen); |
| 4840 | if (node) { |
| 4841 | qc = ebmb_entry(node, struct quic_conn, odcid_node); |
| 4842 | goto end; |
| 4843 | } |
| 4844 | } |
| 4845 | |
| 4846 | /* Look into DCIDs tree for non-INITIAL/0-RTT packets. This may be used |
| 4847 | * also for INITIAL/0-RTT non-first packets with the final DCID in |
| 4848 | * used. |
| 4849 | */ |
Amaury Denoyelle | 8524f0f | 2022-02-08 15:03:40 +0100 | [diff] [blame] | 4850 | node = ebmb_lookup(&quic_dghdlrs[tid].cids, pkt->dcid.data, pkt->dcid.len); |
Amaury Denoyelle | 8efe032 | 2021-12-15 16:32:56 +0100 | [diff] [blame] | 4851 | if (!node) |
| 4852 | goto end; |
| 4853 | |
| 4854 | id = ebmb_entry(node, struct quic_connection_id, node); |
| 4855 | qc = id->qc; |
Amaury Denoyelle | 250ac42 | 2021-12-22 11:29:05 +0100 | [diff] [blame] | 4856 | found_in_dcid = 1; |
| 4857 | |
| 4858 | end: |
Amaury Denoyelle | 8efe032 | 2021-12-15 16:32:56 +0100 | [diff] [blame] | 4859 | /* If found in DCIDs tree, remove the quic_conn from the ODCIDs tree. |
| 4860 | * If already done, this is a noop. |
| 4861 | */ |
Frédéric Lécaille | 74904a4 | 2022-01-27 15:35:56 +0100 | [diff] [blame] | 4862 | if (qc && found_in_dcid) |
Amaury Denoyelle | 250ac42 | 2021-12-22 11:29:05 +0100 | [diff] [blame] | 4863 | ebmb_delete(&qc->odcid_node); |
Amaury Denoyelle | 8efe032 | 2021-12-15 16:32:56 +0100 | [diff] [blame] | 4864 | |
| 4865 | return qc; |
| 4866 | } |
| 4867 | |
Amaury Denoyelle | 5ff1c97 | 2022-01-11 14:11:32 +0100 | [diff] [blame] | 4868 | /* Parse the Retry token from buffer <token> whose size is <token_len>. This |
| 4869 | * will extract the parameters stored in the token : <odcid>. |
| 4870 | * |
| 4871 | * Returns 0 on success else non-zero. |
| 4872 | */ |
| 4873 | static int parse_retry_token(const unsigned char *token, uint64_t token_len, |
| 4874 | struct quic_cid *odcid) |
| 4875 | { |
| 4876 | uint64_t odcid_len; |
| 4877 | |
| 4878 | if (!quic_dec_int(&odcid_len, &token, token + token_len)) |
| 4879 | return 1; |
| 4880 | |
Frédéric Lécaille | f1f812b | 2022-03-17 16:22:02 +0100 | [diff] [blame] | 4881 | if (odcid_len > QUIC_CID_MAXLEN) |
| 4882 | return 1; |
| 4883 | |
Amaury Denoyelle | 5ff1c97 | 2022-01-11 14:11:32 +0100 | [diff] [blame] | 4884 | memcpy(odcid->data, token, odcid_len); |
| 4885 | odcid->len = odcid_len; |
| 4886 | |
| 4887 | return 0; |
| 4888 | } |
| 4889 | |
Amaury Denoyelle | 33ac346 | 2022-01-18 16:44:34 +0100 | [diff] [blame] | 4890 | /* Try to allocate the <*ssl> SSL session object for <qc> QUIC connection |
| 4891 | * with <ssl_ctx> as SSL context inherited settings. Also set the transport |
| 4892 | * parameters of this session. |
| 4893 | * This is the responsibility of the caller to check the validity of all the |
| 4894 | * pointers passed as parameter to this function. |
| 4895 | * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <qc->conn> to |
| 4896 | * CO_ER_SSL_NO_MEM. |
| 4897 | */ |
| 4898 | static int qc_ssl_sess_init(struct quic_conn *qc, SSL_CTX *ssl_ctx, SSL **ssl, |
| 4899 | unsigned char *params, size_t params_len) |
| 4900 | { |
| 4901 | int retry; |
| 4902 | |
| 4903 | retry = 1; |
| 4904 | retry: |
| 4905 | *ssl = SSL_new(ssl_ctx); |
| 4906 | if (!*ssl) { |
| 4907 | if (!retry--) |
| 4908 | goto err; |
| 4909 | |
| 4910 | pool_gc(NULL); |
| 4911 | goto retry; |
| 4912 | } |
| 4913 | |
| 4914 | if (!SSL_set_quic_method(*ssl, &ha_quic_method) || |
| 4915 | !SSL_set_ex_data(*ssl, ssl_qc_app_data_index, qc) || |
| 4916 | !SSL_set_quic_transport_params(*ssl, qc->enc_params, qc->enc_params_len)) { |
Amaury Denoyelle | 33ac346 | 2022-01-18 16:44:34 +0100 | [diff] [blame] | 4917 | SSL_free(*ssl); |
| 4918 | *ssl = NULL; |
| 4919 | if (!retry--) |
| 4920 | goto err; |
| 4921 | |
| 4922 | pool_gc(NULL); |
| 4923 | goto retry; |
| 4924 | } |
| 4925 | |
| 4926 | return 0; |
| 4927 | |
| 4928 | err: |
| 4929 | qc->conn->err_code = CO_ER_SSL_NO_MEM; |
| 4930 | return -1; |
| 4931 | } |
| 4932 | |
| 4933 | /* Allocate the ssl_sock_ctx from connection <qc>. This creates the tasklet |
| 4934 | * used to process <qc> received packets. The allocated context is stored in |
| 4935 | * <qc.xprt_ctx>. |
| 4936 | * |
| 4937 | * Returns 0 on success else non-zero. |
| 4938 | */ |
| 4939 | int qc_conn_alloc_ssl_ctx(struct quic_conn *qc) |
| 4940 | { |
| 4941 | struct bind_conf *bc = qc->li->bind_conf; |
| 4942 | struct ssl_sock_ctx *ctx = NULL; |
| 4943 | |
| 4944 | ctx = pool_zalloc(pool_head_quic_conn_ctx); |
| 4945 | if (!ctx) |
| 4946 | goto err; |
| 4947 | |
| 4948 | ctx->wait_event.tasklet = tasklet_new(); |
| 4949 | if (!ctx->wait_event.tasklet) |
| 4950 | goto err; |
| 4951 | |
| 4952 | ctx->wait_event.tasklet->process = quic_conn_io_cb; |
| 4953 | ctx->wait_event.tasklet->context = ctx; |
| 4954 | ctx->wait_event.events = 0; |
| 4955 | ctx->subs = NULL; |
| 4956 | ctx->xprt_ctx = NULL; |
| 4957 | ctx->qc = qc; |
| 4958 | |
| 4959 | /* Set tasklet tid based on the SCID selected by us for this |
| 4960 | * connection. The upper layer will also be binded on the same thread. |
| 4961 | */ |
Frédéric Lécaille | 220894a | 2022-01-26 18:04:50 +0100 | [diff] [blame] | 4962 | qc->tid = ctx->wait_event.tasklet->tid = quic_get_cid_tid(qc->scid.data); |
Amaury Denoyelle | 33ac346 | 2022-01-18 16:44:34 +0100 | [diff] [blame] | 4963 | |
| 4964 | if (qc_is_listener(qc)) { |
| 4965 | if (qc_ssl_sess_init(qc, bc->initial_ctx, &ctx->ssl, |
| 4966 | qc->enc_params, qc->enc_params_len) == -1) { |
| 4967 | goto err; |
| 4968 | } |
| 4969 | |
| 4970 | /* Enabling 0-RTT */ |
| 4971 | if (bc->ssl_conf.early_data) |
| 4972 | SSL_set_quic_early_data_enabled(ctx->ssl, 1); |
| 4973 | |
| 4974 | SSL_set_accept_state(ctx->ssl); |
| 4975 | } |
| 4976 | |
| 4977 | ctx->xprt = xprt_get(XPRT_QUIC); |
| 4978 | |
| 4979 | /* Store the allocated context in <qc>. */ |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 4980 | qc->xprt_ctx = ctx; |
Amaury Denoyelle | 33ac346 | 2022-01-18 16:44:34 +0100 | [diff] [blame] | 4981 | |
| 4982 | return 0; |
| 4983 | |
| 4984 | err: |
| 4985 | if (ctx && ctx->wait_event.tasklet) |
| 4986 | tasklet_free(ctx->wait_event.tasklet); |
| 4987 | pool_free(pool_head_quic_conn_ctx, ctx); |
| 4988 | |
| 4989 | return 1; |
| 4990 | } |
| 4991 | |
Frédéric Lécaille | 01cfec7 | 2021-12-22 10:17:01 +0100 | [diff] [blame] | 4992 | static ssize_t qc_lstnr_pkt_rcv(unsigned char *buf, const unsigned char *end, |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 4993 | struct quic_rx_packet *pkt, int first_pkt, |
| 4994 | struct quic_dgram *dgram) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4995 | { |
Frédéric Lécaille | 01cfec7 | 2021-12-22 10:17:01 +0100 | [diff] [blame] | 4996 | unsigned char *beg, *payload; |
Amaury Denoyelle | 76f47ca | 2021-12-23 10:02:50 +0100 | [diff] [blame] | 4997 | struct quic_conn *qc, *qc_to_purge = NULL; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 4998 | struct listener *l; |
Frédéric Lécaille | 1eaec33 | 2021-06-04 14:59:59 +0200 | [diff] [blame] | 4999 | struct ssl_sock_ctx *conn_ctx; |
Frédéric Lécaille | 6b66315 | 2022-01-04 17:03:11 +0100 | [diff] [blame] | 5000 | int long_header = 0, io_cb_wakeup = 0; |
Frédéric Lécaille | 324ecda | 2021-11-02 10:14:44 +0100 | [diff] [blame] | 5001 | size_t b_cspace; |
| 5002 | struct quic_enc_level *qel; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5003 | |
Frédéric Lécaille | 01cfec7 | 2021-12-22 10:17:01 +0100 | [diff] [blame] | 5004 | beg = buf; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5005 | qc = NULL; |
Frédéric Lécaille | d24c2ec | 2021-05-31 10:24:49 +0200 | [diff] [blame] | 5006 | conn_ctx = NULL; |
Frédéric Lécaille | c4becf5 | 2021-11-08 11:23:17 +0100 | [diff] [blame] | 5007 | qel = NULL; |
Frédéric Lécaille | 8678eb0 | 2021-12-16 18:03:52 +0100 | [diff] [blame] | 5008 | TRACE_ENTER(QUIC_EV_CONN_LPKT); |
| 5009 | /* This ist only to please to traces and distinguish the |
| 5010 | * packet with parsed packet number from others. |
| 5011 | */ |
| 5012 | pkt->pn_node.key = (uint64_t)-1; |
Frédéric Lécaille | 01cfec7 | 2021-12-22 10:17:01 +0100 | [diff] [blame] | 5013 | if (end <= buf) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5014 | goto err; |
| 5015 | |
| 5016 | /* Fixed bit */ |
Frédéric Lécaille | 01cfec7 | 2021-12-22 10:17:01 +0100 | [diff] [blame] | 5017 | if (!(*buf & QUIC_PACKET_FIXED_BIT)) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5018 | /* XXX TO BE DISCARDED */ |
| 5019 | TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT); |
| 5020 | goto err; |
| 5021 | } |
| 5022 | |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 5023 | l = dgram->owner; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5024 | /* Header form */ |
Frédéric Lécaille | 01cfec7 | 2021-12-22 10:17:01 +0100 | [diff] [blame] | 5025 | qc_parse_hd_form(pkt, *buf++, &long_header); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5026 | if (long_header) { |
Frédéric Lécaille | 2c15a66 | 2021-12-22 20:39:12 +0100 | [diff] [blame] | 5027 | uint64_t len; |
| 5028 | |
Frédéric Lécaille | 01cfec7 | 2021-12-22 10:17:01 +0100 | [diff] [blame] | 5029 | if (!quic_packet_read_long_header(&buf, end, pkt)) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5030 | TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT); |
| 5031 | goto err; |
| 5032 | } |
| 5033 | |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 5034 | /* When multiple QUIC packets are coalesced on the same UDP datagram, |
| 5035 | * they must have the same DCID. |
| 5036 | */ |
| 5037 | if (!first_pkt && |
| 5038 | (pkt->dcid.len != dgram->dcid_len || |
| 5039 | memcmp(dgram->dcid, pkt->dcid.data, pkt->dcid.len))) { |
| 5040 | TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc); |
| 5041 | goto err; |
| 5042 | } |
| 5043 | |
Frédéric Lécaille | 2c15a66 | 2021-12-22 20:39:12 +0100 | [diff] [blame] | 5044 | /* Retry of Version Negotiation packets are only sent by servers */ |
| 5045 | if (pkt->type == QUIC_PACKET_TYPE_RETRY || !pkt->version) { |
| 5046 | TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT); |
| 5047 | goto err; |
| 5048 | } |
| 5049 | |
Amaury Denoyelle | a22d860 | 2021-11-10 15:17:56 +0100 | [diff] [blame] | 5050 | /* RFC9000 6. Version Negotiation */ |
| 5051 | if (!qc_pkt_is_supported_version(pkt)) { |
Amaury Denoyelle | a22d860 | 2021-11-10 15:17:56 +0100 | [diff] [blame] | 5052 | /* unsupported version, send Negotiation packet */ |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 5053 | if (send_version_negotiation(l->rx.fd, &dgram->saddr, pkt)) { |
Amaury Denoyelle | a22d860 | 2021-11-10 15:17:56 +0100 | [diff] [blame] | 5054 | TRACE_PROTO("Error on Version Negotiation sending", QUIC_EV_CONN_LPKT); |
| 5055 | goto err; |
| 5056 | } |
| 5057 | |
| 5058 | TRACE_PROTO("Unsupported QUIC version, send Version Negotiation packet", QUIC_EV_CONN_LPKT); |
Frédéric Lécaille | 01cfec7 | 2021-12-22 10:17:01 +0100 | [diff] [blame] | 5059 | goto err; |
Amaury Denoyelle | a22d860 | 2021-11-10 15:17:56 +0100 | [diff] [blame] | 5060 | } |
| 5061 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5062 | /* For Initial packets, and for servers (QUIC clients connections), |
| 5063 | * there is no Initial connection IDs storage. |
| 5064 | */ |
Amaury Denoyelle | 8efe032 | 2021-12-15 16:32:56 +0100 | [diff] [blame] | 5065 | if (pkt->type == QUIC_PACKET_TYPE_INITIAL) { |
Frédéric Lécaille | f3d078d | 2021-06-14 14:18:10 +0200 | [diff] [blame] | 5066 | uint64_t token_len; |
Frédéric Lécaille | f3d078d | 2021-06-14 14:18:10 +0200 | [diff] [blame] | 5067 | |
Frédéric Lécaille | 01cfec7 | 2021-12-22 10:17:01 +0100 | [diff] [blame] | 5068 | if (!quic_dec_int(&token_len, (const unsigned char **)&buf, end) || |
| 5069 | end - buf < token_len) { |
Amaury Denoyelle | 8efe032 | 2021-12-15 16:32:56 +0100 | [diff] [blame] | 5070 | TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT); |
| 5071 | goto err; |
Frédéric Lécaille | a5da31d | 2021-12-14 19:44:14 +0100 | [diff] [blame] | 5072 | } |
Amaury Denoyelle | 8efe032 | 2021-12-15 16:32:56 +0100 | [diff] [blame] | 5073 | |
Frédéric Lécaille | 055ee6c | 2022-01-25 21:21:56 +0100 | [diff] [blame] | 5074 | /* The token may be provided in a Retry packet or NEW_TOKEN frame |
| 5075 | * only by the QUIC server. |
Amaury Denoyelle | 8efe032 | 2021-12-15 16:32:56 +0100 | [diff] [blame] | 5076 | */ |
| 5077 | pkt->token_len = token_len; |
Amaury Denoyelle | b76ae69 | 2022-01-11 14:16:37 +0100 | [diff] [blame] | 5078 | |
| 5079 | /* TODO Retry should be automatically activated if |
| 5080 | * suspect network usage is detected. |
| 5081 | */ |
| 5082 | if (!token_len && l->bind_conf->quic_force_retry) { |
| 5083 | TRACE_PROTO("Initial without token, sending retry", QUIC_EV_CONN_LPKT); |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 5084 | if (send_retry(l->rx.fd, &dgram->saddr, pkt)) { |
Amaury Denoyelle | b76ae69 | 2022-01-11 14:16:37 +0100 | [diff] [blame] | 5085 | TRACE_PROTO("Error during Retry generation", QUIC_EV_CONN_LPKT); |
| 5086 | goto err; |
| 5087 | } |
| 5088 | |
| 5089 | goto err; |
| 5090 | } |
| 5091 | else { |
Amaury Denoyelle | 5ff1c97 | 2022-01-11 14:11:32 +0100 | [diff] [blame] | 5092 | pkt->token = buf; |
| 5093 | buf += pkt->token_len; |
| 5094 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5095 | } |
Amaury Denoyelle | 8efe032 | 2021-12-15 16:32:56 +0100 | [diff] [blame] | 5096 | else if (pkt->type != QUIC_PACKET_TYPE_0RTT) { |
Amaury Denoyelle | d496251 | 2021-12-14 17:17:28 +0100 | [diff] [blame] | 5097 | if (pkt->dcid.len != QUIC_HAP_CID_LEN) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5098 | TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT); |
| 5099 | goto err; |
| 5100 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5101 | } |
| 5102 | |
Frédéric Lécaille | 2c15a66 | 2021-12-22 20:39:12 +0100 | [diff] [blame] | 5103 | if (!quic_dec_int(&len, (const unsigned char **)&buf, end) || |
| 5104 | end - buf < len) { |
| 5105 | TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT); |
| 5106 | goto err; |
Frédéric Lécaille | f3d078d | 2021-06-14 14:18:10 +0200 | [diff] [blame] | 5107 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5108 | |
Frédéric Lécaille | 2c15a66 | 2021-12-22 20:39:12 +0100 | [diff] [blame] | 5109 | payload = buf; |
| 5110 | pkt->len = len + payload - beg; |
| 5111 | |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 5112 | qc = retrieve_qc_conn_from_cid(pkt, l, &dgram->saddr); |
Amaury Denoyelle | 8efe032 | 2021-12-15 16:32:56 +0100 | [diff] [blame] | 5113 | if (!qc) { |
Frédéric Lécaille | 3d77fa7 | 2021-05-31 09:30:14 +0200 | [diff] [blame] | 5114 | int ipv4; |
| 5115 | struct quic_cid *odcid; |
Frédéric Lécaille | f3d078d | 2021-06-14 14:18:10 +0200 | [diff] [blame] | 5116 | struct ebmb_node *n = NULL; |
Frédéric Lécaille | 2fc76cf | 2021-08-31 19:10:40 +0200 | [diff] [blame] | 5117 | const unsigned char *salt = initial_salt_v1; |
| 5118 | size_t salt_len = sizeof initial_salt_v1; |
Frédéric Lécaille | 3d77fa7 | 2021-05-31 09:30:14 +0200 | [diff] [blame] | 5119 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5120 | if (pkt->type != QUIC_PACKET_TYPE_INITIAL) { |
Amaury Denoyelle | 47e1f6d | 2021-12-17 10:58:05 +0100 | [diff] [blame] | 5121 | TRACE_PROTO("Non Initial packet", QUIC_EV_CONN_LPKT); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5122 | goto err; |
| 5123 | } |
| 5124 | |
Frédéric Lécaille | dc36404 | 2022-01-27 16:51:54 +0100 | [diff] [blame] | 5125 | if (pkt->dcid.len < QUIC_ODCID_MINLEN) { |
| 5126 | TRACE_PROTO("dropped packet", QUIC_EV_CONN_LPKT); |
| 5127 | goto err; |
| 5128 | } |
| 5129 | |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 5130 | pkt->saddr = dgram->saddr; |
| 5131 | ipv4 = dgram->saddr.ss_family == AF_INET; |
Amaury Denoyelle | c92cbfc | 2021-12-14 17:20:59 +0100 | [diff] [blame] | 5132 | qc = qc_new_conn(pkt->version, ipv4, |
| 5133 | pkt->dcid.data, pkt->dcid.len, pkt->dcid.addrlen, |
Frédéric Lécaille | 6b19764 | 2021-07-06 16:25:08 +0200 | [diff] [blame] | 5134 | pkt->scid.data, pkt->scid.len, 1, l); |
Frédéric Lécaille | 6de7287 | 2021-06-11 15:44:24 +0200 | [diff] [blame] | 5135 | if (qc == NULL) |
Frédéric Lécaille | 3d77fa7 | 2021-05-31 09:30:14 +0200 | [diff] [blame] | 5136 | goto err; |
| 5137 | |
Amaury Denoyelle | 9fa15e5 | 2022-01-19 15:54:23 +0100 | [diff] [blame] | 5138 | memcpy(&qc->peer_addr, &pkt->saddr, sizeof(pkt->saddr)); |
| 5139 | |
Frédéric Lécaille | 3d77fa7 | 2021-05-31 09:30:14 +0200 | [diff] [blame] | 5140 | odcid = &qc->rx.params.original_destination_connection_id; |
| 5141 | /* Copy the transport parameters. */ |
| 5142 | qc->rx.params = l->bind_conf->quic_params; |
Amaury Denoyelle | 5ff1c97 | 2022-01-11 14:11:32 +0100 | [diff] [blame] | 5143 | |
Frédéric Lécaille | 3d77fa7 | 2021-05-31 09:30:14 +0200 | [diff] [blame] | 5144 | /* Copy original_destination_connection_id transport parameter. */ |
Amaury Denoyelle | 5ff1c97 | 2022-01-11 14:11:32 +0100 | [diff] [blame] | 5145 | if (pkt->token_len) { |
| 5146 | if (parse_retry_token(pkt->token, pkt->token_len, odcid)) { |
| 5147 | TRACE_PROTO("Error during Initial token parsing", QUIC_EV_CONN_LPKT, qc); |
| 5148 | goto err; |
| 5149 | } |
Amaury Denoyelle | c3b6f4d | 2022-01-11 12:03:09 +0100 | [diff] [blame] | 5150 | /* Copy retry_source_connection_id transport parameter. */ |
| 5151 | quic_cid_cpy(&qc->rx.params.retry_source_connection_id, |
| 5152 | &pkt->dcid); |
Amaury Denoyelle | 5ff1c97 | 2022-01-11 14:11:32 +0100 | [diff] [blame] | 5153 | } |
| 5154 | else { |
| 5155 | memcpy(odcid->data, &pkt->dcid.data, pkt->dcid.len); |
| 5156 | odcid->len = pkt->dcid.len; |
| 5157 | } |
| 5158 | |
Frédéric Lécaille | 3d77fa7 | 2021-05-31 09:30:14 +0200 | [diff] [blame] | 5159 | /* Copy the initial source connection ID. */ |
| 5160 | quic_cid_cpy(&qc->rx.params.initial_source_connection_id, &qc->scid); |
| 5161 | qc->enc_params_len = |
| 5162 | quic_transport_params_encode(qc->enc_params, |
| 5163 | qc->enc_params + sizeof qc->enc_params, |
| 5164 | &qc->rx.params, 1); |
| 5165 | if (!qc->enc_params_len) |
| 5166 | goto err; |
| 5167 | |
Amaury Denoyelle | 33ac346 | 2022-01-18 16:44:34 +0100 | [diff] [blame] | 5168 | if (qc_conn_alloc_ssl_ctx(qc)) |
| 5169 | goto err; |
| 5170 | |
Frédéric Lécaille | 789413c | 2022-01-31 10:16:18 +0100 | [diff] [blame] | 5171 | if (!quic_conn_init_timer(qc)) |
| 5172 | goto err; |
| 5173 | |
Frédéric Lécaille | 530601c | 2022-03-10 15:11:57 +0100 | [diff] [blame] | 5174 | if (!quic_conn_init_idle_timer_task(qc)) |
| 5175 | goto err; |
| 5176 | |
Frédéric Lécaille | 497fa78 | 2021-05-31 15:16:13 +0200 | [diff] [blame] | 5177 | /* NOTE: the socket address has been concatenated to the destination ID |
| 5178 | * chosen by the client for Initial packets. |
| 5179 | */ |
Frédéric Lécaille | 2fc76cf | 2021-08-31 19:10:40 +0200 | [diff] [blame] | 5180 | if (pkt->version == QUIC_PROTOCOL_VERSION_DRAFT_29) { |
| 5181 | salt = initial_salt_draft_29; |
| 5182 | salt_len = sizeof initial_salt_draft_29; |
| 5183 | } |
| 5184 | if (!qc_new_isecs(qc, salt, salt_len, |
Amaury Denoyelle | c92cbfc | 2021-12-14 17:20:59 +0100 | [diff] [blame] | 5185 | pkt->dcid.data, pkt->dcid.len, 1)) { |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 5186 | TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc); |
Frédéric Lécaille | 497fa78 | 2021-05-31 15:16:13 +0200 | [diff] [blame] | 5187 | goto err; |
| 5188 | } |
| 5189 | |
Frédéric Lécaille | f3d078d | 2021-06-14 14:18:10 +0200 | [diff] [blame] | 5190 | /* Insert the DCID the QUIC client has chosen (only for listeners) */ |
Amaury Denoyelle | 8524f0f | 2022-02-08 15:03:40 +0100 | [diff] [blame] | 5191 | n = ebmb_insert(&quic_dghdlrs[tid].odcids, &qc->odcid_node, |
Amaury Denoyelle | c92cbfc | 2021-12-14 17:20:59 +0100 | [diff] [blame] | 5192 | qc->odcid.len + qc->odcid.addrlen); |
Frédéric Lécaille | 8370c93 | 2021-11-08 17:01:46 +0100 | [diff] [blame] | 5193 | |
Amaury Denoyelle | aff4ec8 | 2021-11-24 15:16:08 +0100 | [diff] [blame] | 5194 | /* If the insertion failed, it means that another |
| 5195 | * thread has already allocated a QUIC connection for |
| 5196 | * the same CID. Liberate our allocated connection. |
| 5197 | */ |
| 5198 | if (unlikely(n != &qc->odcid_node)) { |
Amaury Denoyelle | 76f47ca | 2021-12-23 10:02:50 +0100 | [diff] [blame] | 5199 | qc_to_purge = qc; |
| 5200 | |
Amaury Denoyelle | aff4ec8 | 2021-11-24 15:16:08 +0100 | [diff] [blame] | 5201 | qc = ebmb_entry(n, struct quic_conn, odcid_node); |
| 5202 | pkt->qc = qc; |
| 5203 | } |
Amaury Denoyelle | 76f47ca | 2021-12-23 10:02:50 +0100 | [diff] [blame] | 5204 | |
Amaury Denoyelle | 76f47ca | 2021-12-23 10:02:50 +0100 | [diff] [blame] | 5205 | if (likely(!qc_to_purge)) { |
Frédéric Lécaille | 8370c93 | 2021-11-08 17:01:46 +0100 | [diff] [blame] | 5206 | /* Enqueue this packet. */ |
Frédéric Lécaille | f67b356 | 2021-11-15 16:21:40 +0100 | [diff] [blame] | 5207 | pkt->qc = qc; |
Frédéric Lécaille | 8370c93 | 2021-11-08 17:01:46 +0100 | [diff] [blame] | 5208 | } |
Amaury Denoyelle | 76f47ca | 2021-12-23 10:02:50 +0100 | [diff] [blame] | 5209 | else { |
Frédéric Lécaille | f293b69 | 2022-03-08 16:59:54 +0100 | [diff] [blame] | 5210 | quic_conn_release(qc_to_purge); |
Amaury Denoyelle | 76f47ca | 2021-12-23 10:02:50 +0100 | [diff] [blame] | 5211 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5212 | } |
| 5213 | else { |
Frédéric Lécaille | 8370c93 | 2021-11-08 17:01:46 +0100 | [diff] [blame] | 5214 | pkt->qc = qc; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5215 | } |
| 5216 | } |
| 5217 | else { |
Frédéric Lécaille | 01cfec7 | 2021-12-22 10:17:01 +0100 | [diff] [blame] | 5218 | if (end - buf < QUIC_HAP_CID_LEN) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5219 | TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT); |
| 5220 | goto err; |
| 5221 | } |
| 5222 | |
Frédéric Lécaille | 01cfec7 | 2021-12-22 10:17:01 +0100 | [diff] [blame] | 5223 | memcpy(pkt->dcid.data, buf, QUIC_HAP_CID_LEN); |
Amaury Denoyelle | adb2276 | 2021-12-14 15:04:14 +0100 | [diff] [blame] | 5224 | pkt->dcid.len = QUIC_HAP_CID_LEN; |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 5225 | |
| 5226 | /* When multiple QUIC packets are coalesced on the same UDP datagram, |
| 5227 | * they must have the same DCID. |
| 5228 | */ |
| 5229 | if (!first_pkt && |
| 5230 | (pkt->dcid.len != dgram->dcid_len || |
| 5231 | memcmp(dgram->dcid, pkt->dcid.data, pkt->dcid.len))) { |
| 5232 | TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc); |
| 5233 | goto err; |
| 5234 | } |
| 5235 | |
Frédéric Lécaille | 01cfec7 | 2021-12-22 10:17:01 +0100 | [diff] [blame] | 5236 | buf += QUIC_HAP_CID_LEN; |
| 5237 | |
| 5238 | /* A short packet is the last one of a UDP datagram. */ |
| 5239 | payload = buf; |
| 5240 | pkt->len = end - beg; |
Amaury Denoyelle | adb2276 | 2021-12-14 15:04:14 +0100 | [diff] [blame] | 5241 | |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 5242 | qc = retrieve_qc_conn_from_cid(pkt, l, &dgram->saddr); |
Frédéric Lécaille | 4d118d6 | 2021-12-21 14:48:58 +0100 | [diff] [blame] | 5243 | if (!qc) { |
Frédéric Lécaille | 01cfec7 | 2021-12-22 10:17:01 +0100 | [diff] [blame] | 5244 | size_t pktlen = end - buf; |
Frédéric Lécaille | 4d118d6 | 2021-12-21 14:48:58 +0100 | [diff] [blame] | 5245 | TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, NULL, pkt, &pktlen); |
| 5246 | goto err; |
| 5247 | } |
| 5248 | |
Frédéric Lécaille | 8370c93 | 2021-11-08 17:01:46 +0100 | [diff] [blame] | 5249 | pkt->qc = qc; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5250 | } |
| 5251 | |
Frédéric Lécaille | 59bf255 | 2022-03-28 12:13:09 +0200 | [diff] [blame] | 5252 | if (qc->flags & QUIC_FL_CONN_CLOSING) { |
| 5253 | if (++qc->nb_pkt_since_cc >= qc->nb_pkt_for_cc) { |
| 5254 | qc->flags |= QUIC_FL_CONN_IMMEDIATE_CLOSE; |
| 5255 | qc->nb_pkt_for_cc++; |
| 5256 | qc->nb_pkt_since_cc = 0; |
| 5257 | } |
| 5258 | /* Skip the entire datagram */ |
| 5259 | pkt->len = end - beg; |
| 5260 | TRACE_PROTO("Closing state connection", QUIC_EV_CONN_LPKT, pkt->qc); |
| 5261 | goto out; |
| 5262 | } |
Amaury Denoyelle | adb2276 | 2021-12-14 15:04:14 +0100 | [diff] [blame] | 5263 | |
| 5264 | /* When multiple QUIC packets are coalesced on the same UDP datagram, |
| 5265 | * they must have the same DCID. |
| 5266 | * |
| 5267 | * This check must be done after the final update to pkt.len to |
| 5268 | * properly drop the packet on failure. |
| 5269 | */ |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 5270 | if (first_pkt && !quic_peer_validated_addr(qc) && |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 5271 | qc->flags & QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED) { |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 5272 | TRACE_PROTO("PTO timer must be armed after anti-amplication was reached", |
| 5273 | QUIC_EV_CONN_LPKT, qc); |
| 5274 | /* Reset the anti-amplification bit. It will be set again |
| 5275 | * when sending the next packet if reached again. |
| 5276 | */ |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 5277 | qc->flags &= ~QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED; |
| 5278 | qc->flags |= QUIC_FL_CONN_IO_CB_WAKEUP; |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 5279 | io_cb_wakeup = 1; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5280 | } |
Amaury Denoyelle | adb2276 | 2021-12-14 15:04:14 +0100 | [diff] [blame] | 5281 | |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 5282 | dgram->qc = qc; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5283 | |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 5284 | if (qc->err_code) { |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 5285 | TRACE_PROTO("Connection error", QUIC_EV_CONN_LPKT, qc); |
Frédéric Lécaille | 66cbb82 | 2021-11-17 11:56:21 +0100 | [diff] [blame] | 5286 | goto out; |
| 5287 | } |
| 5288 | |
Frédéric Lécaille | 01cfec7 | 2021-12-22 10:17:01 +0100 | [diff] [blame] | 5289 | pkt->raw_len = pkt->len; |
Frédéric Lécaille | d61bc8d | 2021-12-02 14:46:19 +0100 | [diff] [blame] | 5290 | quic_rx_pkts_del(qc); |
Frédéric Lécaille | 324ecda | 2021-11-02 10:14:44 +0100 | [diff] [blame] | 5291 | b_cspace = b_contig_space(&qc->rx.buf); |
| 5292 | if (b_cspace < pkt->len) { |
| 5293 | /* Let us consume the remaining contiguous space. */ |
Frédéric Lécaille | d61bc8d | 2021-12-02 14:46:19 +0100 | [diff] [blame] | 5294 | if (b_cspace) { |
| 5295 | b_putchr(&qc->rx.buf, 0x00); |
| 5296 | b_cspace--; |
| 5297 | } |
Frédéric Lécaille | 324ecda | 2021-11-02 10:14:44 +0100 | [diff] [blame] | 5298 | b_add(&qc->rx.buf, b_cspace); |
| 5299 | if (b_contig_space(&qc->rx.buf) < pkt->len) { |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 5300 | TRACE_PROTO("Too big packet", QUIC_EV_CONN_LPKT, qc, pkt, &pkt->len); |
Frédéric Lécaille | 91ac6c3 | 2021-12-17 16:11:54 +0100 | [diff] [blame] | 5301 | qc_list_all_rx_pkts(qc); |
Frédéric Lécaille | 324ecda | 2021-11-02 10:14:44 +0100 | [diff] [blame] | 5302 | goto err; |
| 5303 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5304 | } |
| 5305 | |
Amaury Denoyelle | e81fed9 | 2021-12-22 11:06:34 +0100 | [diff] [blame] | 5306 | if (!qc_try_rm_hp(qc, pkt, payload, beg, end, &qel)) { |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 5307 | TRACE_PROTO("Packet dropped", QUIC_EV_CONN_LPKT, qc); |
Frédéric Lécaille | 1a5e88c | 2021-05-31 18:04:07 +0200 | [diff] [blame] | 5308 | goto err; |
| 5309 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5310 | |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 5311 | TRACE_PROTO("New packet", QUIC_EV_CONN_LPKT, qc, pkt); |
Frédéric Lécaille | 324ecda | 2021-11-02 10:14:44 +0100 | [diff] [blame] | 5312 | if (pkt->aad_len) |
| 5313 | qc_pkt_insert(pkt, qel); |
Frédéric Lécaille | 66cbb82 | 2021-11-17 11:56:21 +0100 | [diff] [blame] | 5314 | out: |
Frédéric Lécaille | 01abc46 | 2021-07-21 09:34:27 +0200 | [diff] [blame] | 5315 | /* Wake up the connection packet handler task from here only if all |
| 5316 | * the contexts have been initialized, especially the mux context |
| 5317 | * conn_ctx->conn->ctx. Note that this is ->start xprt callback which |
| 5318 | * will start it if these contexts for the connection are not already |
| 5319 | * initialized. |
| 5320 | */ |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 5321 | conn_ctx = qc->xprt_ctx; |
Amaury Denoyelle | cfa2d56 | 2022-01-19 16:01:05 +0100 | [diff] [blame] | 5322 | if (conn_ctx) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5323 | tasklet_wakeup(conn_ctx->wait_event.tasklet); |
Frédéric Lécaille | d24c2ec | 2021-05-31 10:24:49 +0200 | [diff] [blame] | 5324 | |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 5325 | TRACE_LEAVE(QUIC_EV_CONN_LPKT, qc ? qc : NULL, pkt); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5326 | |
| 5327 | return pkt->len; |
| 5328 | |
| 5329 | err: |
Frédéric Lécaille | 6b66315 | 2022-01-04 17:03:11 +0100 | [diff] [blame] | 5330 | /* Wakeup the I/O handler callback if the PTO timer must be armed. |
| 5331 | * This cannot be done by this thread. |
| 5332 | */ |
| 5333 | if (io_cb_wakeup) { |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 5334 | conn_ctx = qc->xprt_ctx; |
Frédéric Lécaille | 6b66315 | 2022-01-04 17:03:11 +0100 | [diff] [blame] | 5335 | if (conn_ctx && conn_ctx->wait_event.tasklet) |
| 5336 | tasklet_wakeup(conn_ctx->wait_event.tasklet); |
| 5337 | } |
Frédéric Lécaille | f7ef976 | 2021-12-31 16:37:58 +0100 | [diff] [blame] | 5338 | /* If length not found, consume the entire datagram */ |
Frédéric Lécaille | 01cfec7 | 2021-12-22 10:17:01 +0100 | [diff] [blame] | 5339 | if (!pkt->len) |
| 5340 | pkt->len = end - beg; |
Frédéric Lécaille | 6c1e36c | 2020-12-23 17:17:37 +0100 | [diff] [blame] | 5341 | TRACE_DEVEL("Leaving in error", QUIC_EV_CONN_LPKT, |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 5342 | qc ? qc : NULL, pkt); |
Amaury Denoyelle | 76f47ca | 2021-12-23 10:02:50 +0100 | [diff] [blame] | 5343 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5344 | return -1; |
| 5345 | } |
| 5346 | |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5347 | /* This function builds into <buf> buffer a QUIC long packet header. |
| 5348 | * Return 1 if enough room to build this header, 0 if not. |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5349 | */ |
| 5350 | static int quic_build_packet_long_header(unsigned char **buf, const unsigned char *end, |
| 5351 | int type, size_t pn_len, struct quic_conn *conn) |
| 5352 | { |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5353 | if (end - *buf < sizeof conn->version + conn->dcid.len + conn->scid.len + 3) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5354 | return 0; |
| 5355 | |
| 5356 | /* #0 byte flags */ |
| 5357 | *(*buf)++ = QUIC_PACKET_FIXED_BIT | QUIC_PACKET_LONG_HEADER_BIT | |
| 5358 | (type << QUIC_PACKET_TYPE_SHIFT) | (pn_len - 1); |
| 5359 | /* Version */ |
| 5360 | quic_write_uint32(buf, end, conn->version); |
| 5361 | *(*buf)++ = conn->dcid.len; |
| 5362 | /* Destination connection ID */ |
| 5363 | if (conn->dcid.len) { |
| 5364 | memcpy(*buf, conn->dcid.data, conn->dcid.len); |
| 5365 | *buf += conn->dcid.len; |
| 5366 | } |
| 5367 | /* Source connection ID */ |
| 5368 | *(*buf)++ = conn->scid.len; |
| 5369 | if (conn->scid.len) { |
| 5370 | memcpy(*buf, conn->scid.data, conn->scid.len); |
| 5371 | *buf += conn->scid.len; |
| 5372 | } |
| 5373 | |
| 5374 | return 1; |
| 5375 | } |
| 5376 | |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5377 | /* This function builds into <buf> buffer a QUIC short packet header. |
| 5378 | * Return 1 if enough room to build this header, 0 if not. |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5379 | */ |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5380 | static int quic_build_packet_short_header(unsigned char **buf, const unsigned char *end, |
| 5381 | size_t pn_len, struct quic_conn *conn, |
| 5382 | unsigned char tls_flags) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5383 | { |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5384 | if (end - *buf < 1 + conn->dcid.len) |
| 5385 | return 0; |
| 5386 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5387 | /* #0 byte flags */ |
Frédéric Lécaille | a7d2c09 | 2021-11-30 11:18:18 +0100 | [diff] [blame] | 5388 | *(*buf)++ = QUIC_PACKET_FIXED_BIT | |
| 5389 | ((tls_flags & QUIC_FL_TLS_KP_BIT_SET) ? QUIC_PACKET_KEY_PHASE_BIT : 0) | (pn_len - 1); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5390 | /* Destination connection ID */ |
| 5391 | if (conn->dcid.len) { |
| 5392 | memcpy(*buf, conn->dcid.data, conn->dcid.len); |
| 5393 | *buf += conn->dcid.len; |
| 5394 | } |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5395 | |
| 5396 | return 1; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5397 | } |
| 5398 | |
| 5399 | /* Apply QUIC header protection to the packet with <buf> as first byte address, |
| 5400 | * <pn> as address of the Packet number field, <pnlen> being this field length |
| 5401 | * with <aead> as AEAD cipher and <key> as secret key. |
| 5402 | * Returns 1 if succeeded or 0 if failed. |
| 5403 | */ |
| 5404 | static int quic_apply_header_protection(unsigned char *buf, unsigned char *pn, size_t pnlen, |
| 5405 | const EVP_CIPHER *aead, const unsigned char *key) |
| 5406 | { |
| 5407 | int i, ret, outlen; |
| 5408 | EVP_CIPHER_CTX *ctx; |
| 5409 | /* We need an IV of at least 5 bytes: one byte for bytes #0 |
| 5410 | * and at most 4 bytes for the packet number |
| 5411 | */ |
| 5412 | unsigned char mask[5] = {0}; |
| 5413 | |
| 5414 | ret = 0; |
| 5415 | ctx = EVP_CIPHER_CTX_new(); |
| 5416 | if (!ctx) |
| 5417 | return 0; |
| 5418 | |
| 5419 | if (!EVP_EncryptInit_ex(ctx, aead, NULL, key, pn + QUIC_PACKET_PN_MAXLEN) || |
| 5420 | !EVP_EncryptUpdate(ctx, mask, &outlen, mask, sizeof mask) || |
| 5421 | !EVP_EncryptFinal_ex(ctx, mask, &outlen)) |
| 5422 | goto out; |
| 5423 | |
| 5424 | *buf ^= mask[0] & (*buf & QUIC_PACKET_LONG_HEADER_BIT ? 0xf : 0x1f); |
| 5425 | for (i = 0; i < pnlen; i++) |
| 5426 | pn[i] ^= mask[i + 1]; |
| 5427 | |
| 5428 | ret = 1; |
| 5429 | |
| 5430 | out: |
| 5431 | EVP_CIPHER_CTX_free(ctx); |
| 5432 | |
| 5433 | return ret; |
| 5434 | } |
| 5435 | |
| 5436 | /* Reduce the encoded size of <ack_frm> ACK frame removing the last |
| 5437 | * ACK ranges if needed to a value below <limit> in bytes. |
| 5438 | * Return 1 if succeeded, 0 if not. |
| 5439 | */ |
| 5440 | static int quic_ack_frm_reduce_sz(struct quic_frame *ack_frm, size_t limit) |
| 5441 | { |
| 5442 | size_t room, ack_delay_sz; |
| 5443 | |
| 5444 | ack_delay_sz = quic_int_getsize(ack_frm->tx_ack.ack_delay); |
| 5445 | /* A frame is made of 1 byte for the frame type. */ |
| 5446 | room = limit - ack_delay_sz - 1; |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 5447 | if (!quic_rm_last_ack_ranges(ack_frm->tx_ack.arngs, room)) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5448 | return 0; |
| 5449 | |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 5450 | return 1 + ack_delay_sz + ack_frm->tx_ack.arngs->enc_sz; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5451 | } |
| 5452 | |
Frédéric Lécaille | edc8146 | 2022-02-25 17:44:29 +0100 | [diff] [blame] | 5453 | /* Prepare into <outlist> as most as possible ack-eliciting frame from their |
| 5454 | * <inlist> prebuilt frames for <qel> encryption level to be encoded in a buffer |
| 5455 | * with <room> as available room, and <*len> the packet Length field initialized |
| 5456 | * with the number of bytes already present in this buffer which must be taken |
| 5457 | * into an account for the Length packet field value. <headlen> is the number of |
| 5458 | * bytes already present in this packet before building frames. |
Frédéric Lécaille | 9445abc | 2021-08-04 10:49:51 +0200 | [diff] [blame] | 5459 | * |
Frédéric Lécaille | 9445abc | 2021-08-04 10:49:51 +0200 | [diff] [blame] | 5460 | * Update consequently <*len> to reflect the size of these frames built |
Frédéric Lécaille | cba4cd4 | 2022-01-14 20:39:18 +0100 | [diff] [blame] | 5461 | * by this function. Also attach these frames to <l> frame list. |
Frédéric Lécaille | 573b56b | 2022-04-25 15:42:56 +0200 | [diff] [blame] | 5462 | * Return 1 if at least one ack-eleciting frame could be built, 0 if not. |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5463 | */ |
Frédéric Lécaille | edc8146 | 2022-02-25 17:44:29 +0100 | [diff] [blame] | 5464 | static inline int qc_build_frms(struct list *outlist, struct list *inlist, |
Frédéric Lécaille | 9445abc | 2021-08-04 10:49:51 +0200 | [diff] [blame] | 5465 | size_t room, size_t *len, size_t headlen, |
| 5466 | struct quic_enc_level *qel, |
Amaury Denoyelle | 17a7416 | 2021-12-21 14:45:39 +0100 | [diff] [blame] | 5467 | struct quic_conn *qc) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5468 | { |
Frédéric Lécaille | ea60499 | 2020-12-24 13:01:37 +0100 | [diff] [blame] | 5469 | int ret; |
Frédéric Lécaille | 82468ea | 2022-01-14 20:23:22 +0100 | [diff] [blame] | 5470 | struct quic_frame *cf, *cfbak; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5471 | |
Frédéric Lécaille | ea60499 | 2020-12-24 13:01:37 +0100 | [diff] [blame] | 5472 | ret = 0; |
Frédéric Lécaille | f4e5a7c | 2022-01-17 17:56:20 +0100 | [diff] [blame] | 5473 | if (*len > room) |
Frédéric Lécaille | 4436cb6 | 2021-08-16 12:06:46 +0200 | [diff] [blame] | 5474 | return 0; |
| 5475 | |
Frédéric Lécaille | ea60499 | 2020-12-24 13:01:37 +0100 | [diff] [blame] | 5476 | /* If we are not probing we must take into an account the congestion |
| 5477 | * control window. |
| 5478 | */ |
Frédéric Lécaille | f4e5a7c | 2022-01-17 17:56:20 +0100 | [diff] [blame] | 5479 | if (!qel->pktns->tx.pto_probe) { |
| 5480 | size_t remain = quic_path_prep_data(qc->path); |
| 5481 | |
| 5482 | if (headlen > remain) |
| 5483 | return 0; |
| 5484 | |
| 5485 | room = QUIC_MIN(room, remain - headlen); |
| 5486 | } |
| 5487 | |
Frédéric Lécaille | 0ac3851 | 2021-08-03 16:38:49 +0200 | [diff] [blame] | 5488 | TRACE_PROTO("************** frames build (headlen)", |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 5489 | QUIC_EV_CONN_BCFRMS, qc, &headlen); |
Frédéric Lécaille | 573b56b | 2022-04-25 15:42:56 +0200 | [diff] [blame] | 5490 | |
| 5491 | /* NOTE: switch/case block inside a loop, a successful status must be |
| 5492 | * returned by this function only if at least one frame could be built |
| 5493 | * in the switch/case block. |
| 5494 | */ |
Frédéric Lécaille | edc8146 | 2022-02-25 17:44:29 +0100 | [diff] [blame] | 5495 | list_for_each_entry_safe(cf, cfbak, inlist, list) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5496 | /* header length, data length, frame length. */ |
Frédéric Lécaille | a5b1b89 | 2021-08-25 17:56:22 +0200 | [diff] [blame] | 5497 | size_t hlen, dlen, dlen_sz, avail_room, flen; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5498 | |
Frédéric Lécaille | ea60499 | 2020-12-24 13:01:37 +0100 | [diff] [blame] | 5499 | if (!room) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5500 | break; |
| 5501 | |
Frédéric Lécaille | 0ac3851 | 2021-08-03 16:38:49 +0200 | [diff] [blame] | 5502 | switch (cf->type) { |
| 5503 | case QUIC_FT_CRYPTO: |
| 5504 | TRACE_PROTO(" New CRYPTO frame build (room, len)", |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 5505 | QUIC_EV_CONN_BCFRMS, qc, &room, len); |
Frédéric Lécaille | 0ac3851 | 2021-08-03 16:38:49 +0200 | [diff] [blame] | 5506 | /* Compute the length of this CRYPTO frame header */ |
| 5507 | hlen = 1 + quic_int_getsize(cf->crypto.offset); |
| 5508 | /* Compute the data length of this CRyPTO frame. */ |
| 5509 | dlen = max_stream_data_size(room, *len + hlen, cf->crypto.len); |
| 5510 | TRACE_PROTO(" CRYPTO data length (hlen, crypto.len, dlen)", |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 5511 | QUIC_EV_CONN_BCFRMS, qc, &hlen, &cf->crypto.len, &dlen); |
Frédéric Lécaille | 0ac3851 | 2021-08-03 16:38:49 +0200 | [diff] [blame] | 5512 | if (!dlen) |
Frédéric Lécaille | 573b56b | 2022-04-25 15:42:56 +0200 | [diff] [blame] | 5513 | continue; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5514 | |
Frédéric Lécaille | 0ac3851 | 2021-08-03 16:38:49 +0200 | [diff] [blame] | 5515 | /* CRYPTO frame length. */ |
| 5516 | flen = hlen + quic_int_getsize(dlen) + dlen; |
| 5517 | TRACE_PROTO(" CRYPTO frame length (flen)", |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 5518 | QUIC_EV_CONN_BCFRMS, qc, &flen); |
Frédéric Lécaille | 0ac3851 | 2021-08-03 16:38:49 +0200 | [diff] [blame] | 5519 | /* Add the CRYPTO data length and its encoded length to the packet |
| 5520 | * length and the length of this length. |
| 5521 | */ |
| 5522 | *len += flen; |
| 5523 | room -= flen; |
| 5524 | if (dlen == cf->crypto.len) { |
| 5525 | /* <cf> CRYPTO data have been consumed. */ |
Frédéric Lécaille | 82468ea | 2022-01-14 20:23:22 +0100 | [diff] [blame] | 5526 | LIST_DELETE(&cf->list); |
Frédéric Lécaille | edc8146 | 2022-02-25 17:44:29 +0100 | [diff] [blame] | 5527 | LIST_APPEND(outlist, &cf->list); |
Frédéric Lécaille | 0ac3851 | 2021-08-03 16:38:49 +0200 | [diff] [blame] | 5528 | } |
| 5529 | else { |
| 5530 | struct quic_frame *new_cf; |
| 5531 | |
Frédéric Lécaille | b917191 | 2022-04-21 17:32:10 +0200 | [diff] [blame] | 5532 | new_cf = pool_zalloc(pool_head_quic_frame); |
Frédéric Lécaille | 0ac3851 | 2021-08-03 16:38:49 +0200 | [diff] [blame] | 5533 | if (!new_cf) { |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 5534 | TRACE_PROTO("No memory for new crypto frame", QUIC_EV_CONN_BCFRMS, qc); |
Frédéric Lécaille | 573b56b | 2022-04-25 15:42:56 +0200 | [diff] [blame] | 5535 | continue; |
Frédéric Lécaille | 0ac3851 | 2021-08-03 16:38:49 +0200 | [diff] [blame] | 5536 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5537 | |
Frédéric Lécaille | b917191 | 2022-04-21 17:32:10 +0200 | [diff] [blame] | 5538 | LIST_INIT(&new_cf->reflist); |
Frédéric Lécaille | 0ac3851 | 2021-08-03 16:38:49 +0200 | [diff] [blame] | 5539 | new_cf->type = QUIC_FT_CRYPTO; |
| 5540 | new_cf->crypto.len = dlen; |
| 5541 | new_cf->crypto.offset = cf->crypto.offset; |
| 5542 | new_cf->crypto.qel = qel; |
Frédéric Lécaille | edc8146 | 2022-02-25 17:44:29 +0100 | [diff] [blame] | 5543 | LIST_APPEND(outlist, &new_cf->list); |
Frédéric Lécaille | 0ac3851 | 2021-08-03 16:38:49 +0200 | [diff] [blame] | 5544 | /* Consume <dlen> bytes of the current frame. */ |
| 5545 | cf->crypto.len -= dlen; |
| 5546 | cf->crypto.offset += dlen; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5547 | } |
Frédéric Lécaille | 0ac3851 | 2021-08-03 16:38:49 +0200 | [diff] [blame] | 5548 | break; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5549 | |
Frédéric Lécaille | 0ac3851 | 2021-08-03 16:38:49 +0200 | [diff] [blame] | 5550 | case QUIC_FT_STREAM_8 ... QUIC_FT_STREAM_F: |
Frédéric Lécaille | 77cb38d | 2022-04-27 07:17:56 +0200 | [diff] [blame^] | 5551 | if (cf->flags & QUIC_FL_TX_FRAME_LOST) { |
| 5552 | struct eb64_node *node = NULL; |
| 5553 | struct qc_stream_desc *stream_desc = NULL; |
| 5554 | struct quic_stream *strm = &cf->stream; |
| 5555 | |
| 5556 | /* As this frame has been already lost, ensure the stream is always |
| 5557 | * available or the range of this frame is not consumed before |
| 5558 | * resending it. |
| 5559 | */ |
| 5560 | node = eb64_lookup(&qc->streams_by_id, strm->id); |
| 5561 | if (!node) { |
| 5562 | TRACE_PROTO("released stream", QUIC_EV_CONN_PRSAFRM, qc, strm); |
| 5563 | LIST_DELETE(&cf->list); |
| 5564 | pool_free(pool_head_quic_frame, cf); |
| 5565 | continue; |
| 5566 | } |
| 5567 | |
| 5568 | stream_desc = eb64_entry(node, struct qc_stream_desc, by_id); |
| 5569 | if (strm->offset.key + strm->len <= stream_desc->ack_offset) { |
| 5570 | TRACE_PROTO("ignored frame frame in already acked range", |
| 5571 | QUIC_EV_CONN_PRSAFRM, qc, strm); |
| 5572 | LIST_DELETE(&cf->list); |
| 5573 | pool_free(pool_head_quic_frame, cf); |
| 5574 | continue; |
| 5575 | } |
| 5576 | else if (strm->offset.key < stream_desc->ack_offset) { |
| 5577 | strm->offset.key = stream_desc->ack_offset; |
| 5578 | TRACE_PROTO("updated partially acked frame", |
| 5579 | QUIC_EV_CONN_PRSAFRM, qc, strm); |
| 5580 | } |
| 5581 | } |
Frédéric Lécaille | a5b1b89 | 2021-08-25 17:56:22 +0200 | [diff] [blame] | 5582 | /* Note that these frames are accepted in short packets only without |
| 5583 | * "Length" packet field. Here, <*len> is used only to compute the |
| 5584 | * sum of the lengths of the already built frames for this packet. |
Frédéric Lécaille | d8b8443 | 2021-12-10 15:18:36 +0100 | [diff] [blame] | 5585 | * |
| 5586 | * Compute the length of this STREAM frame "header" made a all the field |
Frédéric Lécaille | a5b1b89 | 2021-08-25 17:56:22 +0200 | [diff] [blame] | 5587 | * excepting the variable ones. Note that +1 is for the type of this frame. |
| 5588 | */ |
| 5589 | hlen = 1 + quic_int_getsize(cf->stream.id) + |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 5590 | ((cf->type & QUIC_STREAM_FRAME_TYPE_OFF_BIT) ? quic_int_getsize(cf->stream.offset.key) : 0); |
Frédéric Lécaille | a5b1b89 | 2021-08-25 17:56:22 +0200 | [diff] [blame] | 5591 | /* Compute the data length of this STREAM frame. */ |
| 5592 | avail_room = room - hlen - *len; |
Frédéric Lécaille | d8b8443 | 2021-12-10 15:18:36 +0100 | [diff] [blame] | 5593 | TRACE_PROTO(" New STREAM frame build (room, len)", |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 5594 | QUIC_EV_CONN_BCFRMS, qc, &room, len); |
Frédéric Lécaille | 573b56b | 2022-04-25 15:42:56 +0200 | [diff] [blame] | 5595 | if ((ssize_t)avail_room <= 0) |
| 5596 | continue; |
| 5597 | |
Frédéric Lécaille | a5b1b89 | 2021-08-25 17:56:22 +0200 | [diff] [blame] | 5598 | if (cf->type & QUIC_STREAM_FRAME_TYPE_LEN_BIT) { |
| 5599 | dlen = max_available_room(avail_room, &dlen_sz); |
| 5600 | if (dlen > cf->stream.len) { |
| 5601 | dlen = cf->stream.len; |
| 5602 | } |
| 5603 | dlen_sz = quic_int_getsize(dlen); |
| 5604 | flen = hlen + dlen_sz + dlen; |
| 5605 | } |
| 5606 | else { |
| 5607 | dlen = QUIC_MIN(avail_room, cf->stream.len); |
| 5608 | flen = hlen + dlen; |
| 5609 | } |
| 5610 | TRACE_PROTO(" STREAM data length (hlen, stream.len, dlen)", |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 5611 | QUIC_EV_CONN_BCFRMS, qc, &hlen, &cf->stream.len, &dlen); |
Frédéric Lécaille | a5b1b89 | 2021-08-25 17:56:22 +0200 | [diff] [blame] | 5612 | TRACE_PROTO(" STREAM frame length (flen)", |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 5613 | QUIC_EV_CONN_BCFRMS, qc, &flen); |
Frédéric Lécaille | a5b1b89 | 2021-08-25 17:56:22 +0200 | [diff] [blame] | 5614 | /* Add the STREAM data length and its encoded length to the packet |
| 5615 | * length and the length of this length. |
| 5616 | */ |
| 5617 | *len += flen; |
| 5618 | room -= flen; |
| 5619 | if (dlen == cf->stream.len) { |
| 5620 | /* <cf> STREAM data have been consumed. */ |
Frédéric Lécaille | 82468ea | 2022-01-14 20:23:22 +0100 | [diff] [blame] | 5621 | LIST_DELETE(&cf->list); |
Frédéric Lécaille | edc8146 | 2022-02-25 17:44:29 +0100 | [diff] [blame] | 5622 | LIST_APPEND(outlist, &cf->list); |
Amaury Denoyelle | 54445d0 | 2022-03-10 16:44:14 +0100 | [diff] [blame] | 5623 | |
Amaury Denoyelle | 7272cd7 | 2022-03-29 15:15:54 +0200 | [diff] [blame] | 5624 | /* The MUX stream might be released at this |
| 5625 | * stage. This can most notably happen on |
| 5626 | * retransmission. |
| 5627 | */ |
| 5628 | if (qc->mux_state == QC_MUX_READY && |
| 5629 | !cf->stream.stream->release) { |
| 5630 | qcc_streams_sent_done(cf->stream.stream->ctx, |
| 5631 | cf->stream.len, |
| 5632 | cf->stream.offset.key); |
| 5633 | } |
Frédéric Lécaille | a5b1b89 | 2021-08-25 17:56:22 +0200 | [diff] [blame] | 5634 | } |
| 5635 | else { |
| 5636 | struct quic_frame *new_cf; |
Amaury Denoyelle | 642ab06 | 2022-02-23 10:54:42 +0100 | [diff] [blame] | 5637 | struct buffer cf_buf; |
Frédéric Lécaille | a5b1b89 | 2021-08-25 17:56:22 +0200 | [diff] [blame] | 5638 | |
| 5639 | new_cf = pool_zalloc(pool_head_quic_frame); |
| 5640 | if (!new_cf) { |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 5641 | TRACE_PROTO("No memory for new STREAM frame", QUIC_EV_CONN_BCFRMS, qc); |
Frédéric Lécaille | 573b56b | 2022-04-25 15:42:56 +0200 | [diff] [blame] | 5642 | continue; |
Frédéric Lécaille | a5b1b89 | 2021-08-25 17:56:22 +0200 | [diff] [blame] | 5643 | } |
| 5644 | |
Frédéric Lécaille | b917191 | 2022-04-21 17:32:10 +0200 | [diff] [blame] | 5645 | LIST_INIT(&new_cf->reflist); |
Frédéric Lécaille | a5b1b89 | 2021-08-25 17:56:22 +0200 | [diff] [blame] | 5646 | new_cf->type = cf->type; |
Amaury Denoyelle | 7272cd7 | 2022-03-29 15:15:54 +0200 | [diff] [blame] | 5647 | new_cf->stream.stream = cf->stream.stream; |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 5648 | new_cf->stream.buf = cf->stream.buf; |
Frédéric Lécaille | a5b1b89 | 2021-08-25 17:56:22 +0200 | [diff] [blame] | 5649 | new_cf->stream.id = cf->stream.id; |
| 5650 | if (cf->type & QUIC_STREAM_FRAME_TYPE_OFF_BIT) |
| 5651 | new_cf->stream.offset = cf->stream.offset; |
| 5652 | new_cf->stream.len = dlen; |
| 5653 | new_cf->type |= QUIC_STREAM_FRAME_TYPE_LEN_BIT; |
| 5654 | /* FIN bit reset */ |
| 5655 | new_cf->type &= ~QUIC_STREAM_FRAME_TYPE_FIN_BIT; |
| 5656 | new_cf->stream.data = cf->stream.data; |
Frédéric Lécaille | edc8146 | 2022-02-25 17:44:29 +0100 | [diff] [blame] | 5657 | LIST_APPEND(outlist, &new_cf->list); |
Frédéric Lécaille | a5b1b89 | 2021-08-25 17:56:22 +0200 | [diff] [blame] | 5658 | cf->type |= QUIC_STREAM_FRAME_TYPE_OFF_BIT; |
| 5659 | /* Consume <dlen> bytes of the current frame. */ |
Amaury Denoyelle | 642ab06 | 2022-02-23 10:54:42 +0100 | [diff] [blame] | 5660 | cf_buf = b_make(b_orig(cf->stream.buf), |
| 5661 | b_size(cf->stream.buf), |
| 5662 | (char *)cf->stream.data - b_orig(cf->stream.buf), 0); |
Frédéric Lécaille | a5b1b89 | 2021-08-25 17:56:22 +0200 | [diff] [blame] | 5663 | cf->stream.len -= dlen; |
Frédéric Lécaille | 785d3bd | 2021-09-10 09:13:39 +0200 | [diff] [blame] | 5664 | cf->stream.offset.key += dlen; |
Amaury Denoyelle | 642ab06 | 2022-02-23 10:54:42 +0100 | [diff] [blame] | 5665 | cf->stream.data = (unsigned char *)b_peek(&cf_buf, dlen); |
Amaury Denoyelle | 54445d0 | 2022-03-10 16:44:14 +0100 | [diff] [blame] | 5666 | |
Amaury Denoyelle | 7272cd7 | 2022-03-29 15:15:54 +0200 | [diff] [blame] | 5667 | /* The MUX stream might be released at this |
| 5668 | * stage. This can most notably happen on |
| 5669 | * retransmission. |
| 5670 | */ |
| 5671 | if (qc->mux_state == QC_MUX_READY && |
| 5672 | !cf->stream.stream->release) { |
| 5673 | qcc_streams_sent_done(new_cf->stream.stream->ctx, |
| 5674 | new_cf->stream.len, |
| 5675 | new_cf->stream.offset.key); |
| 5676 | } |
Frédéric Lécaille | a5b1b89 | 2021-08-25 17:56:22 +0200 | [diff] [blame] | 5677 | } |
Amaury Denoyelle | 54445d0 | 2022-03-10 16:44:14 +0100 | [diff] [blame] | 5678 | |
| 5679 | /* TODO the MUX is notified about the frame sending via |
| 5680 | * previous qcc_streams_sent_done call. However, the |
| 5681 | * sending can fail later, for example if the sendto |
| 5682 | * system call returns an error. As the MUX has been |
| 5683 | * notified, the transport layer is responsible to |
| 5684 | * bufferize and resent the announced data later. |
| 5685 | */ |
| 5686 | |
Frédéric Lécaille | 0ac3851 | 2021-08-03 16:38:49 +0200 | [diff] [blame] | 5687 | break; |
| 5688 | |
| 5689 | default: |
| 5690 | flen = qc_frm_len(cf); |
| 5691 | BUG_ON(!flen); |
| 5692 | if (flen > room) |
| 5693 | continue; |
| 5694 | |
| 5695 | *len += flen; |
| 5696 | room -= flen; |
Frédéric Lécaille | 82468ea | 2022-01-14 20:23:22 +0100 | [diff] [blame] | 5697 | LIST_DELETE(&cf->list); |
Frédéric Lécaille | edc8146 | 2022-02-25 17:44:29 +0100 | [diff] [blame] | 5698 | LIST_APPEND(outlist, &cf->list); |
Frédéric Lécaille | 0ac3851 | 2021-08-03 16:38:49 +0200 | [diff] [blame] | 5699 | break; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5700 | } |
Frédéric Lécaille | 573b56b | 2022-04-25 15:42:56 +0200 | [diff] [blame] | 5701 | |
| 5702 | /* Successful status as soon as a frame could be built */ |
Frédéric Lécaille | ea60499 | 2020-12-24 13:01:37 +0100 | [diff] [blame] | 5703 | ret = 1; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5704 | } |
| 5705 | |
Frédéric Lécaille | ea60499 | 2020-12-24 13:01:37 +0100 | [diff] [blame] | 5706 | return ret; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5707 | } |
| 5708 | |
Frédéric Lécaille | 4436cb6 | 2021-08-16 12:06:46 +0200 | [diff] [blame] | 5709 | /* This function builds a clear packet from <pkt> information (its type) |
Frédéric Lécaille | 9445abc | 2021-08-04 10:49:51 +0200 | [diff] [blame] | 5710 | * into a buffer with <pos> as position pointer and <qel> as QUIC TLS encryption |
| 5711 | * level for <conn> QUIC connection and <qel> as QUIC TLS encryption level, |
Frédéric Lécaille | 28c7ea3 | 2022-02-25 17:41:39 +0100 | [diff] [blame] | 5712 | * filling the buffer with as much frames as possible from <frms> list of |
| 5713 | * prebuilt frames. |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5714 | * The trailing QUIC_TLS_TAG_LEN bytes of this packet are not built. But they are |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 5715 | * reserved so that to ensure there is enough room to build this AEAD TAG after |
Frédéric Lécaille | 9445abc | 2021-08-04 10:49:51 +0200 | [diff] [blame] | 5716 | * having returned from this function. |
| 5717 | * This function also updates the value of <buf_pn> pointer to point to the packet |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5718 | * number field in this packet. <pn_len> will also have the packet number |
| 5719 | * length as value. |
| 5720 | * |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5721 | * Return 1 if succeeded (enough room to buile this packet), O if not. |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5722 | */ |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5723 | static int qc_do_build_pkt(unsigned char *pos, const unsigned char *end, |
| 5724 | size_t dglen, struct quic_tx_packet *pkt, |
| 5725 | int64_t pn, size_t *pn_len, unsigned char **buf_pn, |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 5726 | int padding, int cc, int probe, |
Frédéric Lécaille | 28c7ea3 | 2022-02-25 17:41:39 +0100 | [diff] [blame] | 5727 | struct quic_enc_level *qel, struct quic_conn *qc, |
| 5728 | struct list *frms) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5729 | { |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 5730 | unsigned char *beg; |
Frédéric Lécaille | 28f51fa | 2021-11-09 14:12:12 +0100 | [diff] [blame] | 5731 | size_t len, len_sz, len_frms, padding_len; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5732 | struct quic_frame frm = { .type = QUIC_FT_CRYPTO, }; |
| 5733 | struct quic_frame ack_frm = { .type = QUIC_FT_ACK, }; |
Frédéric Lécaille | 66cbb82 | 2021-11-17 11:56:21 +0100 | [diff] [blame] | 5734 | struct quic_frame cc_frm = { . type = QUIC_FT_CONNECTION_CLOSE, }; |
Frédéric Lécaille | 28f51fa | 2021-11-09 14:12:12 +0100 | [diff] [blame] | 5735 | size_t ack_frm_len, head_len; |
Frédéric Lécaille | 141982a | 2022-03-15 18:44:20 +0100 | [diff] [blame] | 5736 | int64_t rx_largest_acked_pn; |
Frédéric Lécaille | 04ffb66 | 2020-12-08 15:58:39 +0100 | [diff] [blame] | 5737 | int add_ping_frm; |
Frédéric Lécaille | cba4cd4 | 2022-01-14 20:39:18 +0100 | [diff] [blame] | 5738 | struct list frm_list = LIST_HEAD_INIT(frm_list); |
Frédéric Lécaille | e2a1c1b | 2022-03-17 11:28:10 +0100 | [diff] [blame] | 5739 | struct quic_frame *cf; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5740 | |
Frédéric Lécaille | ea60499 | 2020-12-24 13:01:37 +0100 | [diff] [blame] | 5741 | /* Length field value with CRYPTO frames if present. */ |
| 5742 | len_frms = 0; |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 5743 | beg = pos; |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 5744 | /* When not probing, and no immediate close is required, reduce the size of this |
| 5745 | * buffer to respect the congestion controller window. |
| 5746 | * This size will be limited if we have ack-eliciting frames to send from <frms>. |
Frédéric Lécaille | 04ffb66 | 2020-12-08 15:58:39 +0100 | [diff] [blame] | 5747 | */ |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 5748 | if (!probe && !LIST_ISEMPTY(frms) && !cc) { |
Frédéric Lécaille | 04ffb66 | 2020-12-08 15:58:39 +0100 | [diff] [blame] | 5749 | size_t path_room; |
| 5750 | |
Amaury Denoyelle | 17a7416 | 2021-12-21 14:45:39 +0100 | [diff] [blame] | 5751 | path_room = quic_path_prep_data(qc->path); |
Frédéric Lécaille | 04ffb66 | 2020-12-08 15:58:39 +0100 | [diff] [blame] | 5752 | if (end - beg > path_room) |
| 5753 | end = beg + path_room; |
| 5754 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5755 | |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5756 | /* Ensure there is enough room for the TLS encryption tag and a zero token |
| 5757 | * length field if any. |
| 5758 | */ |
| 5759 | if (end - pos < QUIC_TLS_TAG_LEN + |
| 5760 | (pkt->type == QUIC_PACKET_TYPE_INITIAL ? 1 : 0)) |
| 5761 | goto no_room; |
| 5762 | |
| 5763 | end -= QUIC_TLS_TAG_LEN; |
Frédéric Lécaille | 205e4f3 | 2022-03-28 17:38:27 +0200 | [diff] [blame] | 5764 | rx_largest_acked_pn = qel->pktns->rx.largest_acked_pn; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5765 | /* packet number length */ |
Frédéric Lécaille | 141982a | 2022-03-15 18:44:20 +0100 | [diff] [blame] | 5766 | *pn_len = quic_packet_number_length(pn, rx_largest_acked_pn); |
Frédéric Lécaille | 4436cb6 | 2021-08-16 12:06:46 +0200 | [diff] [blame] | 5767 | /* Build the header */ |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5768 | if ((pkt->type == QUIC_PACKET_TYPE_SHORT && |
Amaury Denoyelle | 17a7416 | 2021-12-21 14:45:39 +0100 | [diff] [blame] | 5769 | !quic_build_packet_short_header(&pos, end, *pn_len, qc, qel->tls_ctx.flags)) || |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5770 | (pkt->type != QUIC_PACKET_TYPE_SHORT && |
Amaury Denoyelle | 17a7416 | 2021-12-21 14:45:39 +0100 | [diff] [blame] | 5771 | !quic_build_packet_long_header(&pos, end, pkt->type, *pn_len, qc))) |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5772 | goto no_room; |
| 5773 | |
Frédéric Lécaille | 4436cb6 | 2021-08-16 12:06:46 +0200 | [diff] [blame] | 5774 | /* XXX FIXME XXX Encode the token length (0) for an Initial packet. */ |
| 5775 | if (pkt->type == QUIC_PACKET_TYPE_INITIAL) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5776 | *pos++ = 0; |
Frédéric Lécaille | 28f51fa | 2021-11-09 14:12:12 +0100 | [diff] [blame] | 5777 | head_len = pos - beg; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5778 | /* Build an ACK frame if required. */ |
| 5779 | ack_frm_len = 0; |
Frédéric Lécaille | 337108e | 2022-04-25 10:38:27 +0200 | [diff] [blame] | 5780 | if ((qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED) && !qel->pktns->tx.pto_probe) { |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 5781 | BUG_ON(eb_is_empty(&qel->pktns->rx.arngs.root)); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5782 | ack_frm.tx_ack.ack_delay = 0; |
Frédéric Lécaille | 8090b51 | 2020-11-30 16:19:22 +0100 | [diff] [blame] | 5783 | ack_frm.tx_ack.arngs = &qel->pktns->rx.arngs; |
Frédéric Lécaille | 4436cb6 | 2021-08-16 12:06:46 +0200 | [diff] [blame] | 5784 | /* XXX BE CAREFUL XXX : here we reserved at least one byte for the |
| 5785 | * smallest frame (PING) and <*pn_len> more for the packet number. Note |
| 5786 | * that from here, we do not know if we will have to send a PING frame. |
| 5787 | * This will be decided after having computed the ack-eliciting frames |
| 5788 | * to be added to this packet. |
| 5789 | */ |
| 5790 | ack_frm_len = quic_ack_frm_reduce_sz(&ack_frm, end - 1 - *pn_len - pos); |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5791 | if (!ack_frm_len) |
| 5792 | goto no_room; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5793 | } |
| 5794 | |
Frédéric Lécaille | 4436cb6 | 2021-08-16 12:06:46 +0200 | [diff] [blame] | 5795 | /* Length field value without the ack-eliciting frames. */ |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5796 | len = ack_frm_len + *pn_len; |
Frédéric Lécaille | 1fc5e16 | 2021-11-22 14:25:57 +0100 | [diff] [blame] | 5797 | len_frms = 0; |
Frédéric Lécaille | 28c7ea3 | 2022-02-25 17:41:39 +0100 | [diff] [blame] | 5798 | if (!cc && !LIST_ISEMPTY(frms)) { |
Frédéric Lécaille | 04ffb66 | 2020-12-08 15:58:39 +0100 | [diff] [blame] | 5799 | ssize_t room = end - pos; |
Frédéric Lécaille | ea60499 | 2020-12-24 13:01:37 +0100 | [diff] [blame] | 5800 | |
Frédéric Lécaille | b823bb7 | 2022-03-31 20:26:18 +0200 | [diff] [blame] | 5801 | TRACE_PROTO("Avail. ack eliciting frames", QUIC_EV_CONN_FRMLIST, qc, frms); |
Frédéric Lécaille | 4436cb6 | 2021-08-16 12:06:46 +0200 | [diff] [blame] | 5802 | /* Initialize the length of the frames built below to <len>. |
| 5803 | * If any frame could be successfully built by qc_build_frms(), |
| 5804 | * we will have len_frms > len. |
| 5805 | */ |
| 5806 | len_frms = len; |
Frédéric Lécaille | edc8146 | 2022-02-25 17:44:29 +0100 | [diff] [blame] | 5807 | if (!qc_build_frms(&frm_list, frms, |
| 5808 | end - pos, &len_frms, pos - beg, qel, qc)) { |
Frédéric Lécaille | ea60499 | 2020-12-24 13:01:37 +0100 | [diff] [blame] | 5809 | TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT, |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 5810 | qc, NULL, NULL, &room); |
Frédéric Lécaille | 834399c | 2022-04-25 17:17:07 +0200 | [diff] [blame] | 5811 | if (!ack_frm_len && !qel->pktns->tx.pto_probe) |
| 5812 | goto no_room; |
Amaury Denoyelle | 17a7416 | 2021-12-21 14:45:39 +0100 | [diff] [blame] | 5813 | } |
Frédéric Lécaille | 04ffb66 | 2020-12-08 15:58:39 +0100 | [diff] [blame] | 5814 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5815 | |
Frédéric Lécaille | 28f51fa | 2021-11-09 14:12:12 +0100 | [diff] [blame] | 5816 | /* Length (of the remaining data). Must not fail because, the buffer size |
| 5817 | * has been checked above. Note that we have reserved QUIC_TLS_TAG_LEN bytes |
| 5818 | * for the encryption tag. It must be taken into an account for the length |
| 5819 | * of this packet. |
| 5820 | */ |
| 5821 | if (len_frms) |
| 5822 | len = len_frms + QUIC_TLS_TAG_LEN; |
| 5823 | else |
| 5824 | len += QUIC_TLS_TAG_LEN; |
Frédéric Lécaille | 66cbb82 | 2021-11-17 11:56:21 +0100 | [diff] [blame] | 5825 | /* CONNECTION_CLOSE frame */ |
| 5826 | if (cc) { |
| 5827 | struct quic_connection_close *cc = &cc_frm.connection_close; |
Frédéric Lécaille | 28f51fa | 2021-11-09 14:12:12 +0100 | [diff] [blame] | 5828 | |
Amaury Denoyelle | 17a7416 | 2021-12-21 14:45:39 +0100 | [diff] [blame] | 5829 | cc->error_code = qc->err_code; |
Frédéric Lécaille | 66cbb82 | 2021-11-17 11:56:21 +0100 | [diff] [blame] | 5830 | len += qc_frm_len(&cc_frm); |
| 5831 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5832 | add_ping_frm = 0; |
| 5833 | padding_len = 0; |
Frédéric Lécaille | 28f51fa | 2021-11-09 14:12:12 +0100 | [diff] [blame] | 5834 | len_sz = quic_int_getsize(len); |
| 5835 | /* Add this packet size to <dglen> */ |
| 5836 | dglen += head_len + len_sz + len; |
| 5837 | if (padding && dglen < QUIC_INITIAL_PACKET_MINLEN) { |
| 5838 | /* This is a maximum padding size */ |
| 5839 | padding_len = QUIC_INITIAL_PACKET_MINLEN - dglen; |
| 5840 | /* The length field value is of this packet is <len> + <padding_len> |
| 5841 | * the size of which may be greater than the initial computed size |
Ilya Shipitsin | 5e87bcf | 2021-12-25 11:45:52 +0500 | [diff] [blame] | 5842 | * <len_sz>. So, let's deduce the difference between these to packet |
Frédéric Lécaille | 28f51fa | 2021-11-09 14:12:12 +0100 | [diff] [blame] | 5843 | * sizes from <padding_len>. |
| 5844 | */ |
| 5845 | padding_len -= quic_int_getsize(len + padding_len) - len_sz; |
| 5846 | len += padding_len; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5847 | } |
Frédéric Lécaille | cba4cd4 | 2022-01-14 20:39:18 +0100 | [diff] [blame] | 5848 | else if (LIST_ISEMPTY(&frm_list) || len_frms == len) { |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5849 | if (qel->pktns->tx.pto_probe) { |
Frédéric Lécaille | 4436cb6 | 2021-08-16 12:06:46 +0200 | [diff] [blame] | 5850 | /* If we cannot send a frame, we send a PING frame. */ |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5851 | add_ping_frm = 1; |
| 5852 | len += 1; |
| 5853 | } |
| 5854 | /* If there is no frame at all to follow, add at least a PADDING frame. */ |
Frédéric Lécaille | 66cbb82 | 2021-11-17 11:56:21 +0100 | [diff] [blame] | 5855 | if (!ack_frm_len && !cc) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5856 | len += padding_len = QUIC_PACKET_PN_MAXLEN - *pn_len; |
| 5857 | } |
| 5858 | |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5859 | if (pkt->type != QUIC_PACKET_TYPE_SHORT && !quic_enc_int(&pos, end, len)) |
| 5860 | goto no_room; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5861 | |
| 5862 | /* Packet number field address. */ |
| 5863 | *buf_pn = pos; |
| 5864 | |
| 5865 | /* Packet number encoding. */ |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5866 | if (!quic_packet_number_encode(&pos, end, pn, *pn_len)) |
| 5867 | goto no_room; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5868 | |
Frédéric Lécaille | 141982a | 2022-03-15 18:44:20 +0100 | [diff] [blame] | 5869 | if (ack_frm_len) { |
| 5870 | if (!qc_build_frm(&pos, end, &ack_frm, pkt, qc)) |
| 5871 | goto no_room; |
| 5872 | |
| 5873 | pkt->largest_acked_pn = quic_pktns_get_largest_acked_pn(qel->pktns); |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 5874 | pkt->flags |= QUIC_FL_TX_PACKET_ACK; |
Frédéric Lécaille | 141982a | 2022-03-15 18:44:20 +0100 | [diff] [blame] | 5875 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5876 | |
Frédéric Lécaille | 4436cb6 | 2021-08-16 12:06:46 +0200 | [diff] [blame] | 5877 | /* Ack-eliciting frames */ |
Frédéric Lécaille | cba4cd4 | 2022-01-14 20:39:18 +0100 | [diff] [blame] | 5878 | if (!LIST_ISEMPTY(&frm_list)) { |
Frédéric Lécaille | cba4cd4 | 2022-01-14 20:39:18 +0100 | [diff] [blame] | 5879 | list_for_each_entry(cf, &frm_list, list) { |
Frédéric Lécaille | dcc74ff | 2022-03-18 17:49:29 +0100 | [diff] [blame] | 5880 | unsigned char *spos = pos; |
| 5881 | |
| 5882 | if (!qc_build_frm(&spos, end, cf, pkt, qc)) { |
Frédéric Lécaille | 133e8a7 | 2020-12-18 09:33:27 +0100 | [diff] [blame] | 5883 | ssize_t room = end - pos; |
| 5884 | TRACE_PROTO("Not enough room", QUIC_EV_CONN_HPKT, |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 5885 | qc, NULL, NULL, &room); |
Frédéric Lécaille | dcc74ff | 2022-03-18 17:49:29 +0100 | [diff] [blame] | 5886 | /* TODO: this should not have happened if qc_build_frms() |
| 5887 | * had correctly computed and sized the frames to be |
| 5888 | * added to this packet. Note that <cf> was added |
| 5889 | * from <frm_list> to <frms> list by qc_build_frms(). |
| 5890 | */ |
| 5891 | LIST_DELETE(&cf->list); |
| 5892 | LIST_INSERT(frms, &cf->list); |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5893 | break; |
Frédéric Lécaille | 133e8a7 | 2020-12-18 09:33:27 +0100 | [diff] [blame] | 5894 | } |
Frédéric Lécaille | dcc74ff | 2022-03-18 17:49:29 +0100 | [diff] [blame] | 5895 | |
| 5896 | pos = spos; |
Frédéric Lécaille | e2a1c1b | 2022-03-17 11:28:10 +0100 | [diff] [blame] | 5897 | quic_tx_packet_refinc(pkt); |
| 5898 | cf->pkt = pkt; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5899 | } |
| 5900 | } |
| 5901 | |
| 5902 | /* Build a PING frame if needed. */ |
| 5903 | if (add_ping_frm) { |
| 5904 | frm.type = QUIC_FT_PING; |
Amaury Denoyelle | 17a7416 | 2021-12-21 14:45:39 +0100 | [diff] [blame] | 5905 | if (!qc_build_frm(&pos, end, &frm, pkt, qc)) |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5906 | goto no_room; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5907 | } |
| 5908 | |
Frédéric Lécaille | 66cbb82 | 2021-11-17 11:56:21 +0100 | [diff] [blame] | 5909 | /* Build a CONNECTION_CLOSE frame if needed. */ |
Frédéric Lécaille | 59bf255 | 2022-03-28 12:13:09 +0200 | [diff] [blame] | 5910 | if (cc) { |
| 5911 | if (!qc_build_frm(&pos, end, &cc_frm, pkt, qc)) |
| 5912 | goto no_room; |
| 5913 | |
| 5914 | pkt->flags |= QUIC_FL_TX_PACKET_CC; |
| 5915 | } |
Frédéric Lécaille | 66cbb82 | 2021-11-17 11:56:21 +0100 | [diff] [blame] | 5916 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5917 | /* Build a PADDING frame if needed. */ |
| 5918 | if (padding_len) { |
| 5919 | frm.type = QUIC_FT_PADDING; |
| 5920 | frm.padding.len = padding_len; |
Amaury Denoyelle | 17a7416 | 2021-12-21 14:45:39 +0100 | [diff] [blame] | 5921 | if (!qc_build_frm(&pos, end, &frm, pkt, qc)) |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5922 | goto no_room; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5923 | } |
| 5924 | |
Frédéric Lécaille | 466e9da | 2021-12-29 12:04:13 +0100 | [diff] [blame] | 5925 | /* If this packet is ack-eliciting and we are probing let's |
| 5926 | * decrement the PTO probe counter. |
Frédéric Lécaille | 04ffb66 | 2020-12-08 15:58:39 +0100 | [diff] [blame] | 5927 | */ |
Frédéric Lécaille | 466e9da | 2021-12-29 12:04:13 +0100 | [diff] [blame] | 5928 | if (pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING && |
| 5929 | qel->pktns->tx.pto_probe) |
| 5930 | qel->pktns->tx.pto_probe--; |
| 5931 | |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 5932 | pkt->len = pos - beg; |
Frédéric Lécaille | cba4cd4 | 2022-01-14 20:39:18 +0100 | [diff] [blame] | 5933 | LIST_SPLICE(&pkt->frms, &frm_list); |
Frédéric Lécaille | b823bb7 | 2022-03-31 20:26:18 +0200 | [diff] [blame] | 5934 | TRACE_PROTO("Packet ack-eliciting frames", QUIC_EV_CONN_HPKT, qc, pkt); |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5935 | |
| 5936 | return 1; |
| 5937 | |
| 5938 | no_room: |
Frédéric Lécaille | cba4cd4 | 2022-01-14 20:39:18 +0100 | [diff] [blame] | 5939 | /* Replace the pre-built frames which could not be add to this packet */ |
Frédéric Lécaille | 28c7ea3 | 2022-02-25 17:41:39 +0100 | [diff] [blame] | 5940 | LIST_SPLICE(frms, &frm_list); |
Frédéric Lécaille | d8b798d | 2022-04-25 17:48:40 +0200 | [diff] [blame] | 5941 | TRACE_PROTO("Remaining ack-eliciting frames", QUIC_EV_CONN_FRMLIST, qc, frms); |
Frédéric Lécaille | b823bb7 | 2022-03-31 20:26:18 +0200 | [diff] [blame] | 5942 | |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5943 | return 0; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5944 | } |
| 5945 | |
Frédéric Lécaille | 0e50e1b | 2021-08-03 15:03:35 +0200 | [diff] [blame] | 5946 | static inline void quic_tx_packet_init(struct quic_tx_packet *pkt, int type) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5947 | { |
Frédéric Lécaille | 0e50e1b | 2021-08-03 15:03:35 +0200 | [diff] [blame] | 5948 | pkt->type = type; |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 5949 | pkt->len = 0; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5950 | pkt->in_flight_len = 0; |
Frédéric Lécaille | 0371cd5 | 2021-12-13 12:30:54 +0100 | [diff] [blame] | 5951 | pkt->pn_node.key = (uint64_t)-1; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5952 | LIST_INIT(&pkt->frms); |
Frédéric Lécaille | 2899fe2 | 2022-03-21 10:43:53 +0100 | [diff] [blame] | 5953 | pkt->time_sent = TICK_ETERNITY; |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 5954 | pkt->next = NULL; |
Frédéric Lécaille | 141982a | 2022-03-15 18:44:20 +0100 | [diff] [blame] | 5955 | pkt->largest_acked_pn = -1; |
Frédéric Lécaille | 2899fe2 | 2022-03-21 10:43:53 +0100 | [diff] [blame] | 5956 | pkt->flags = 0; |
Frédéric Lécaille | e2a1c1b | 2022-03-17 11:28:10 +0100 | [diff] [blame] | 5957 | pkt->refcnt = 0; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5958 | } |
| 5959 | |
Frédéric Lécaille | 9445abc | 2021-08-04 10:49:51 +0200 | [diff] [blame] | 5960 | /* Build a packet into <buf> packet buffer with <pkt_type> as packet |
Frédéric Lécaille | 28c7ea3 | 2022-02-25 17:41:39 +0100 | [diff] [blame] | 5961 | * type for <qc> QUIC connection from <qel> encryption level from <frms> list |
| 5962 | * of prebuilt frames. |
| 5963 | * |
Frédéric Lécaille | 9445abc | 2021-08-04 10:49:51 +0200 | [diff] [blame] | 5964 | * Return -2 if the packet could not be allocated or encrypted for any reason, |
| 5965 | * -1 if there was not enough room to build a packet. |
Frédéric Lécaille | e9a974a | 2022-03-13 19:19:12 +0100 | [diff] [blame] | 5966 | * XXX NOTE XXX |
| 5967 | * If you provide provide qc_build_pkt() with a big enough buffer to build a packet as big as |
| 5968 | * possible (to fill an MTU), the unique reason why this function may fail is the congestion |
| 5969 | * control window limitation. |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5970 | */ |
Frédéric Lécaille | 9445abc | 2021-08-04 10:49:51 +0200 | [diff] [blame] | 5971 | static struct quic_tx_packet *qc_build_pkt(unsigned char **pos, |
| 5972 | const unsigned char *buf_end, |
Frédéric Lécaille | 28c7ea3 | 2022-02-25 17:41:39 +0100 | [diff] [blame] | 5973 | struct quic_enc_level *qel, struct list *frms, |
Frédéric Lécaille | 28f51fa | 2021-11-09 14:12:12 +0100 | [diff] [blame] | 5974 | struct quic_conn *qc, size_t dglen, int padding, |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 5975 | int pkt_type, int probe, int cc, int *err) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5976 | { |
| 5977 | /* The pointer to the packet number field. */ |
| 5978 | unsigned char *buf_pn; |
| 5979 | unsigned char *beg, *end, *payload; |
| 5980 | int64_t pn; |
| 5981 | size_t pn_len, payload_len, aad_len; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5982 | struct quic_tls_ctx *tls_ctx; |
| 5983 | struct quic_tx_packet *pkt; |
| 5984 | |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 5985 | TRACE_ENTER(QUIC_EV_CONN_HPKT, qc, NULL, qel); |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 5986 | *err = 0; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5987 | pkt = pool_alloc(pool_head_quic_tx_packet); |
| 5988 | if (!pkt) { |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 5989 | TRACE_DEVEL("Not enough memory for a new packet", QUIC_EV_CONN_HPKT, qc); |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 5990 | *err = -2; |
| 5991 | goto err; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5992 | } |
| 5993 | |
Frédéric Lécaille | 0e50e1b | 2021-08-03 15:03:35 +0200 | [diff] [blame] | 5994 | quic_tx_packet_init(pkt, pkt_type); |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 5995 | beg = *pos; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 5996 | pn_len = 0; |
| 5997 | buf_pn = NULL; |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 5998 | |
| 5999 | pn = qel->pktns->tx.next_pn + 1; |
| 6000 | if (!qc_do_build_pkt(*pos, buf_end, dglen, pkt, pn, &pn_len, &buf_pn, |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 6001 | padding, cc, probe, qel, qc, frms)) { |
Frédéric Lécaille | 4436cb6 | 2021-08-16 12:06:46 +0200 | [diff] [blame] | 6002 | *err = -1; |
| 6003 | goto err; |
| 6004 | } |
| 6005 | |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 6006 | end = beg + pkt->len; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6007 | payload = buf_pn + pn_len; |
| 6008 | payload_len = end - payload; |
| 6009 | aad_len = payload - beg; |
| 6010 | |
| 6011 | tls_ctx = &qel->tls_ctx; |
Frédéric Lécaille | 5f7f118 | 2022-01-10 11:00:16 +0100 | [diff] [blame] | 6012 | if (!quic_packet_encrypt(payload, payload_len, beg, aad_len, pn, tls_ctx, qc)) { |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 6013 | *err = -2; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6014 | goto err; |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 6015 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6016 | |
| 6017 | end += QUIC_TLS_TAG_LEN; |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 6018 | pkt->len += QUIC_TLS_TAG_LEN; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6019 | if (!quic_apply_header_protection(beg, buf_pn, pn_len, |
| 6020 | tls_ctx->tx.hp, tls_ctx->tx.hp_key)) { |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 6021 | TRACE_DEVEL("Could not apply the header protection", QUIC_EV_CONN_HPKT, qc); |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 6022 | *err = -2; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6023 | goto err; |
| 6024 | } |
| 6025 | |
Frédéric Lécaille | 73dcc6e | 2021-12-07 15:27:44 +0100 | [diff] [blame] | 6026 | /* Consume a packet number */ |
| 6027 | qel->pktns->tx.next_pn++; |
Frédéric Lécaille | ca98a7f | 2021-11-10 17:30:15 +0100 | [diff] [blame] | 6028 | qc->tx.prep_bytes += pkt->len; |
Frédéric Lécaille | 676b849 | 2022-03-10 10:38:20 +0100 | [diff] [blame] | 6029 | if (qc->tx.prep_bytes >= 3 * qc->rx.bytes && !quic_peer_validated_addr(qc)) |
Frédéric Lécaille | fc79006 | 2022-03-28 17:10:31 +0200 | [diff] [blame] | 6030 | qc->flags |= QUIC_FL_CONN_ANTI_AMPLIFICATION_REACHED; |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 6031 | /* Now that a correct packet is built, let us consume <*pos> buffer. */ |
| 6032 | *pos = end; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6033 | /* Attach the built packet to its tree. */ |
Frédéric Lécaille | a7348f6 | 2021-08-03 16:50:14 +0200 | [diff] [blame] | 6034 | pkt->pn_node.key = pn; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6035 | /* Set the packet in fligth length for in flight packet only. */ |
Frédéric Lécaille | 04ffb66 | 2020-12-08 15:58:39 +0100 | [diff] [blame] | 6036 | if (pkt->flags & QUIC_FL_TX_PACKET_IN_FLIGHT) { |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 6037 | pkt->in_flight_len = pkt->len; |
| 6038 | qc->path->prep_in_flight += pkt->len; |
Frédéric Lécaille | 04ffb66 | 2020-12-08 15:58:39 +0100 | [diff] [blame] | 6039 | } |
Frédéric Lécaille | 4775680 | 2022-03-25 09:12:16 +0100 | [diff] [blame] | 6040 | /* Always reset this flags */ |
| 6041 | qc->flags &= ~QUIC_FL_CONN_IMMEDIATE_CLOSE; |
Frédéric Lécaille | b002145 | 2022-03-29 11:42:03 +0200 | [diff] [blame] | 6042 | if (pkt->flags & QUIC_FL_TX_PACKET_ACK) { |
| 6043 | qel->pktns->flags &= ~QUIC_FL_PKTNS_ACK_REQUIRED; |
| 6044 | qel->pktns->rx.nb_aepkts_since_last_ack = 0; |
| 6045 | } |
Frédéric Lécaille | 205e4f3 | 2022-03-28 17:38:27 +0200 | [diff] [blame] | 6046 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6047 | pkt->pktns = qel->pktns; |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 6048 | TRACE_LEAVE(QUIC_EV_CONN_HPKT, qc, pkt); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6049 | |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 6050 | return pkt; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6051 | |
| 6052 | err: |
Frédéric Lécaille | e2a1c1b | 2022-03-17 11:28:10 +0100 | [diff] [blame] | 6053 | /* TODO: what about the frames which have been built |
| 6054 | * for this packet. |
| 6055 | */ |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6056 | free_quic_tx_packet(pkt); |
Amaury Denoyelle | 7aaeb5b | 2021-12-21 14:29:15 +0100 | [diff] [blame] | 6057 | TRACE_DEVEL("leaving in error", QUIC_EV_CONN_HPKT, qc); |
Frédéric Lécaille | c5b0c93 | 2021-07-06 16:35:52 +0200 | [diff] [blame] | 6058 | return NULL; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6059 | } |
| 6060 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6061 | |
Frédéric Lécaille | 422a39c | 2021-03-03 17:28:34 +0100 | [diff] [blame] | 6062 | /* Called from the upper layer, to subscribe <es> to events <event_type>. The |
| 6063 | * event subscriber <es> is not allowed to change from a previous call as long |
| 6064 | * as at least one event is still subscribed. The <event_type> must only be a |
| 6065 | * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0. |
| 6066 | */ |
| 6067 | static int quic_conn_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es) |
| 6068 | { |
Willy Tarreau | 784b868 | 2022-04-11 14:18:10 +0200 | [diff] [blame] | 6069 | struct qcc *qcc = conn->handle.qc->qcc; |
Frédéric Lécaille | 513b4f2 | 2021-09-20 15:23:17 +0200 | [diff] [blame] | 6070 | |
| 6071 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
| 6072 | BUG_ON(qcc->subs && qcc->subs != es); |
| 6073 | |
| 6074 | es->events |= event_type; |
| 6075 | qcc->subs = es; |
| 6076 | |
| 6077 | if (event_type & SUB_RETRY_RECV) |
Willy Tarreau | 784b868 | 2022-04-11 14:18:10 +0200 | [diff] [blame] | 6078 | TRACE_DEVEL("subscribe(recv)", QUIC_EV_CONN_XPRTRECV, conn->handle.qc, qcc); |
Frédéric Lécaille | 513b4f2 | 2021-09-20 15:23:17 +0200 | [diff] [blame] | 6079 | |
| 6080 | if (event_type & SUB_RETRY_SEND) |
Willy Tarreau | 784b868 | 2022-04-11 14:18:10 +0200 | [diff] [blame] | 6081 | TRACE_DEVEL("subscribe(send)", QUIC_EV_CONN_XPRTSEND, conn->handle.qc, qcc); |
Frédéric Lécaille | 513b4f2 | 2021-09-20 15:23:17 +0200 | [diff] [blame] | 6082 | |
| 6083 | return 0; |
Frédéric Lécaille | 422a39c | 2021-03-03 17:28:34 +0100 | [diff] [blame] | 6084 | } |
| 6085 | |
| 6086 | /* Called from the upper layer, to unsubscribe <es> from events <event_type>. |
| 6087 | * The <es> pointer is not allowed to differ from the one passed to the |
| 6088 | * subscribe() call. It always returns zero. |
| 6089 | */ |
| 6090 | static int quic_conn_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es) |
| 6091 | { |
| 6092 | return conn_unsubscribe(conn, xprt_ctx, event_type, es); |
| 6093 | } |
| 6094 | |
Amaury Denoyelle | 33ac346 | 2022-01-18 16:44:34 +0100 | [diff] [blame] | 6095 | /* Store in <xprt_ctx> the context attached to <conn>. |
| 6096 | * Returns always 0. |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6097 | */ |
| 6098 | static int qc_conn_init(struct connection *conn, void **xprt_ctx) |
| 6099 | { |
Amaury Denoyelle | 7ca7c84 | 2021-12-22 18:20:38 +0100 | [diff] [blame] | 6100 | struct quic_conn *qc = NULL; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6101 | |
| 6102 | TRACE_ENTER(QUIC_EV_CONN_NEW, conn); |
| 6103 | |
Amaury Denoyelle | 33ac346 | 2022-01-18 16:44:34 +0100 | [diff] [blame] | 6104 | /* do not store the context if already set */ |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6105 | if (*xprt_ctx) |
| 6106 | goto out; |
| 6107 | |
Willy Tarreau | 784b868 | 2022-04-11 14:18:10 +0200 | [diff] [blame] | 6108 | *xprt_ctx = conn->handle.qc->xprt_ctx; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6109 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6110 | out: |
Frédéric Lécaille | fde2a98 | 2021-12-27 15:12:09 +0100 | [diff] [blame] | 6111 | TRACE_LEAVE(QUIC_EV_CONN_NEW, qc); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6112 | |
| 6113 | return 0; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6114 | } |
| 6115 | |
Frédéric Lécaille | 3d77fa7 | 2021-05-31 09:30:14 +0200 | [diff] [blame] | 6116 | /* Start the QUIC transport layer */ |
| 6117 | static int qc_xprt_start(struct connection *conn, void *ctx) |
| 6118 | { |
| 6119 | struct quic_conn *qc; |
Frédéric Lécaille | 1eaec33 | 2021-06-04 14:59:59 +0200 | [diff] [blame] | 6120 | struct ssl_sock_ctx *qctx = ctx; |
Frédéric Lécaille | 3d77fa7 | 2021-05-31 09:30:14 +0200 | [diff] [blame] | 6121 | |
Willy Tarreau | 784b868 | 2022-04-11 14:18:10 +0200 | [diff] [blame] | 6122 | qc = conn->handle.qc; |
Amaury Denoyelle | cfa2d56 | 2022-01-19 16:01:05 +0100 | [diff] [blame] | 6123 | if (qcc_install_app_ops(qc->qcc, qc->app_ops)) { |
| 6124 | TRACE_PROTO("Cannot install app layer", QUIC_EV_CONN_LPKT, qc); |
Amaury Denoyelle | 5d774de | 2022-04-14 14:59:35 +0200 | [diff] [blame] | 6125 | /* prepare a CONNECTION_CLOSE frame */ |
| 6126 | qc->err_code = QC_ERR_APPLICATION_ERROR; |
| 6127 | qc->flags |= QUIC_FL_CONN_IMMEDIATE_CLOSE; |
Amaury Denoyelle | 05d4ae6 | 2022-04-13 17:40:26 +0200 | [diff] [blame] | 6128 | return -1; |
Amaury Denoyelle | cfa2d56 | 2022-01-19 16:01:05 +0100 | [diff] [blame] | 6129 | } |
| 6130 | |
| 6131 | /* mux-quic can now be considered ready. */ |
| 6132 | qc->mux_state = QC_MUX_READY; |
| 6133 | |
Frédéric Lécaille | 3d77fa7 | 2021-05-31 09:30:14 +0200 | [diff] [blame] | 6134 | tasklet_wakeup(qctx->wait_event.tasklet); |
| 6135 | return 1; |
| 6136 | } |
| 6137 | |
Willy Tarreau | 54a1dcb | 2022-04-11 11:57:35 +0200 | [diff] [blame] | 6138 | static struct ssl_sock_ctx *qc_get_ssl_sock_ctx(struct connection *conn) |
| 6139 | { |
Willy Tarreau | 784b868 | 2022-04-11 14:18:10 +0200 | [diff] [blame] | 6140 | if (!conn || conn->xprt != xprt_get(XPRT_QUIC) || !conn->handle.qc || !conn->xprt_ctx) |
Willy Tarreau | 54a1dcb | 2022-04-11 11:57:35 +0200 | [diff] [blame] | 6141 | return NULL; |
| 6142 | |
Willy Tarreau | 784b868 | 2022-04-11 14:18:10 +0200 | [diff] [blame] | 6143 | return conn->handle.qc->xprt_ctx; |
Willy Tarreau | 54a1dcb | 2022-04-11 11:57:35 +0200 | [diff] [blame] | 6144 | } |
| 6145 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6146 | /* transport-layer operations for QUIC connections. */ |
| 6147 | static struct xprt_ops ssl_quic = { |
Amaury Denoyelle | 414cac5 | 2021-09-22 11:14:37 +0200 | [diff] [blame] | 6148 | .close = quic_close, |
Frédéric Lécaille | 422a39c | 2021-03-03 17:28:34 +0100 | [diff] [blame] | 6149 | .subscribe = quic_conn_subscribe, |
| 6150 | .unsubscribe = quic_conn_unsubscribe, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6151 | .init = qc_conn_init, |
Frédéric Lécaille | 3d77fa7 | 2021-05-31 09:30:14 +0200 | [diff] [blame] | 6152 | .start = qc_xprt_start, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6153 | .prepare_bind_conf = ssl_sock_prepare_bind_conf, |
| 6154 | .destroy_bind_conf = ssl_sock_destroy_bind_conf, |
Amaury Denoyelle | 71e588c | 2021-11-12 11:23:29 +0100 | [diff] [blame] | 6155 | .get_alpn = ssl_sock_get_alpn, |
Willy Tarreau | 54a1dcb | 2022-04-11 11:57:35 +0200 | [diff] [blame] | 6156 | .get_ssl_sock_ctx = qc_get_ssl_sock_ctx, |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6157 | .name = "QUIC", |
| 6158 | }; |
| 6159 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6160 | static void __quic_conn_init(void) |
| 6161 | { |
| 6162 | ha_quic_meth = BIO_meth_new(0x666, "ha QUIC methods"); |
| 6163 | xprt_register(XPRT_QUIC, &ssl_quic); |
| 6164 | } |
Willy Tarreau | 79367f9 | 2022-04-25 19:18:24 +0200 | [diff] [blame] | 6165 | INITCALL0(STG_REGISTER, __quic_conn_init); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6166 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6167 | static void __quic_conn_deinit(void) |
| 6168 | { |
| 6169 | BIO_meth_free(ha_quic_meth); |
| 6170 | } |
Willy Tarreau | 79367f9 | 2022-04-25 19:18:24 +0200 | [diff] [blame] | 6171 | REGISTER_POST_DEINIT(__quic_conn_deinit); |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6172 | |
Frédéric Lécaille | 324ecda | 2021-11-02 10:14:44 +0100 | [diff] [blame] | 6173 | /* Read all the QUIC packets found in <buf> from QUIC connection with <owner> |
| 6174 | * as owner calling <func> function. |
Ilya Shipitsin | 1e9a666 | 2021-01-05 22:10:46 +0500 | [diff] [blame] | 6175 | * Return the number of bytes read if succeeded, -1 if not. |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6176 | */ |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 6177 | struct task *quic_lstnr_dghdlr(struct task *t, void *ctx, unsigned int state) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6178 | { |
| 6179 | unsigned char *pos; |
| 6180 | const unsigned char *end; |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 6181 | struct quic_dghdlr *dghdlr = ctx; |
| 6182 | struct quic_dgram *dgram; |
| 6183 | int first_pkt = 1; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6184 | |
Frédéric Lécaille | df1c7c7 | 2022-01-28 15:38:52 +0100 | [diff] [blame] | 6185 | while ((dgram = MT_LIST_POP(&dghdlr->dgrams, typeof(dgram), mt_list))) { |
Frédéric Lécaille | df1c7c7 | 2022-01-28 15:38:52 +0100 | [diff] [blame] | 6186 | pos = dgram->buf; |
| 6187 | end = pos + dgram->len; |
| 6188 | do { |
| 6189 | int ret; |
| 6190 | struct quic_rx_packet *pkt; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6191 | |
Frédéric Lécaille | df1c7c7 | 2022-01-28 15:38:52 +0100 | [diff] [blame] | 6192 | pkt = pool_zalloc(pool_head_quic_rx_packet); |
| 6193 | if (!pkt) |
| 6194 | goto err; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6195 | |
Frédéric Lécaille | df1c7c7 | 2022-01-28 15:38:52 +0100 | [diff] [blame] | 6196 | quic_rx_packet_refinc(pkt); |
| 6197 | ret = qc_lstnr_pkt_rcv(pos, end, pkt, first_pkt, dgram); |
| 6198 | first_pkt = 0; |
| 6199 | pos += pkt->len; |
| 6200 | quic_rx_packet_refdec(pkt); |
| 6201 | if (ret == -1) |
| 6202 | /* If the packet length could not be found, we cannot continue. */ |
| 6203 | break; |
| 6204 | } while (pos < end); |
| 6205 | |
Frédéric Lécaille | df1c7c7 | 2022-01-28 15:38:52 +0100 | [diff] [blame] | 6206 | /* Increasing the received bytes counter by the UDP datagram length |
| 6207 | * if this datagram could be associated to a connection. |
| 6208 | */ |
| 6209 | if (dgram->qc) |
| 6210 | dgram->qc->rx.bytes += dgram->len; |
Frédéric Lécaille | 841bf5e | 2022-02-02 09:41:27 +0100 | [diff] [blame] | 6211 | |
| 6212 | /* Mark this datagram as consumed */ |
| 6213 | HA_ATOMIC_STORE(&dgram->buf, NULL); |
Frédéric Lécaille | df1c7c7 | 2022-01-28 15:38:52 +0100 | [diff] [blame] | 6214 | } |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6215 | |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 6216 | return t; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6217 | |
| 6218 | err: |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 6219 | return t; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6220 | } |
| 6221 | |
Frédéric Lécaille | 3d4bfe7 | 2022-01-26 16:07:16 +0100 | [diff] [blame] | 6222 | /* Retreive the DCID from a QUIC datagram or packet with <buf> as first octet. |
| 6223 | * Returns 1 if succeeded, 0 if not. |
| 6224 | */ |
| 6225 | static int quic_get_dgram_dcid(unsigned char *buf, const unsigned char *end, |
| 6226 | unsigned char **dcid, size_t *dcid_len) |
| 6227 | { |
| 6228 | int long_header; |
| 6229 | size_t minlen, skip; |
| 6230 | |
| 6231 | if (!(*buf & QUIC_PACKET_FIXED_BIT)) |
| 6232 | goto err; |
| 6233 | |
| 6234 | long_header = *buf & QUIC_PACKET_LONG_HEADER_BIT; |
| 6235 | minlen = long_header ? |
| 6236 | QUIC_LONG_PACKET_MINLEN : QUIC_SHORT_PACKET_MINLEN + QUIC_HAP_CID_LEN; |
| 6237 | skip = long_header ? QUIC_LONG_PACKET_DCID_OFF : QUIC_SHORT_PACKET_DCID_OFF; |
Frédéric Lécaille | bfa3236 | 2022-02-02 10:44:36 +0100 | [diff] [blame] | 6238 | if (end - buf <= minlen) |
Frédéric Lécaille | 3d4bfe7 | 2022-01-26 16:07:16 +0100 | [diff] [blame] | 6239 | goto err; |
| 6240 | |
| 6241 | buf += skip; |
| 6242 | *dcid_len = long_header ? *buf++ : QUIC_HAP_CID_LEN; |
| 6243 | if (*dcid_len > QUIC_CID_MAXLEN || end - buf <= *dcid_len) |
| 6244 | goto err; |
| 6245 | |
| 6246 | *dcid = buf; |
| 6247 | |
| 6248 | return 1; |
| 6249 | |
| 6250 | err: |
| 6251 | TRACE_PROTO("wrong datagram", QUIC_EV_CONN_LPKT); |
| 6252 | return 0; |
| 6253 | } |
| 6254 | |
Frédéric Lécaille | 37ae505 | 2022-01-27 11:31:50 +0100 | [diff] [blame] | 6255 | /* Retrieve the DCID from the datagram found in <buf> and deliver it to the |
| 6256 | * correct datagram handler. |
| 6257 | * Return 1 if a correct datagram could be found, 0 if not. |
| 6258 | */ |
| 6259 | int quic_lstnr_dgram_dispatch(unsigned char *buf, size_t len, void *owner, |
| 6260 | struct sockaddr_storage *saddr, |
| 6261 | struct quic_dgram *new_dgram, struct list *dgrams) |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6262 | { |
Frédéric Lécaille | 3d4bfe7 | 2022-01-26 16:07:16 +0100 | [diff] [blame] | 6263 | struct quic_dgram *dgram; |
| 6264 | unsigned char *dcid; |
| 6265 | size_t dcid_len; |
Amaury Denoyelle | f6dcbce | 2022-02-08 15:05:58 +0100 | [diff] [blame] | 6266 | int cid_tid; |
Frédéric Lécaille | 3d4bfe7 | 2022-01-26 16:07:16 +0100 | [diff] [blame] | 6267 | |
| 6268 | if (!len || !quic_get_dgram_dcid(buf, buf + len, &dcid, &dcid_len)) |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 6269 | goto err; |
Frédéric Lécaille | 3d4bfe7 | 2022-01-26 16:07:16 +0100 | [diff] [blame] | 6270 | |
Frédéric Lécaille | 37ae505 | 2022-01-27 11:31:50 +0100 | [diff] [blame] | 6271 | dgram = new_dgram ? new_dgram : pool_alloc(pool_head_quic_dgram); |
Frédéric Lécaille | 3d4bfe7 | 2022-01-26 16:07:16 +0100 | [diff] [blame] | 6272 | if (!dgram) |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 6273 | goto err; |
Frédéric Lécaille | 3d4bfe7 | 2022-01-26 16:07:16 +0100 | [diff] [blame] | 6274 | |
Amaury Denoyelle | f6dcbce | 2022-02-08 15:05:58 +0100 | [diff] [blame] | 6275 | cid_tid = quic_get_cid_tid(dcid); |
| 6276 | |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 6277 | /* All the members must be initialized! */ |
| 6278 | dgram->owner = owner; |
Frédéric Lécaille | 3d4bfe7 | 2022-01-26 16:07:16 +0100 | [diff] [blame] | 6279 | dgram->buf = buf; |
| 6280 | dgram->len = len; |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 6281 | dgram->dcid = dcid; |
| 6282 | dgram->dcid_len = dcid_len; |
Frédéric Lécaille | 3d4bfe7 | 2022-01-26 16:07:16 +0100 | [diff] [blame] | 6283 | dgram->saddr = *saddr; |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 6284 | dgram->qc = NULL; |
Frédéric Lécaille | 3d4bfe7 | 2022-01-26 16:07:16 +0100 | [diff] [blame] | 6285 | LIST_APPEND(dgrams, &dgram->list); |
Amaury Denoyelle | 8524f0f | 2022-02-08 15:03:40 +0100 | [diff] [blame] | 6286 | MT_LIST_APPEND(&quic_dghdlrs[cid_tid].dgrams, &dgram->mt_list); |
Frédéric Lécaille | 3d4bfe7 | 2022-01-26 16:07:16 +0100 | [diff] [blame] | 6287 | |
Amaury Denoyelle | 8524f0f | 2022-02-08 15:03:40 +0100 | [diff] [blame] | 6288 | tasklet_wakeup(quic_dghdlrs[cid_tid].task); |
Frédéric Lécaille | 3d4bfe7 | 2022-01-26 16:07:16 +0100 | [diff] [blame] | 6289 | |
Frédéric Lécaille | 25bc887 | 2022-01-27 09:15:40 +0100 | [diff] [blame] | 6290 | return 1; |
| 6291 | |
| 6292 | err: |
Frédéric Lécaille | 3d4bfe7 | 2022-01-26 16:07:16 +0100 | [diff] [blame] | 6293 | return 0; |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6294 | } |
| 6295 | |
Amaury Denoyelle | b515b0a | 2022-04-06 10:28:43 +0200 | [diff] [blame] | 6296 | /* Notify the MUX layer if alive about an imminent close of <qc>. */ |
| 6297 | void qc_notify_close(struct quic_conn *qc) |
| 6298 | { |
| 6299 | if (qc->flags & QUIC_FL_CONN_NOTIFY_CLOSE) |
| 6300 | return; |
| 6301 | |
| 6302 | qc->flags |= QUIC_FL_CONN_NOTIFY_CLOSE; |
| 6303 | |
| 6304 | /* wake up the MUX */ |
| 6305 | if (qc->mux_state == QC_MUX_READY && qc->conn->mux->wake) |
| 6306 | qc->conn->mux->wake(qc->conn); |
| 6307 | } |
| 6308 | |
Amaury Denoyelle | 118b2cb | 2021-11-25 16:05:16 +0100 | [diff] [blame] | 6309 | /* Function to automatically activate QUIC traces on stdout. |
| 6310 | * Activated via the compilation flag -DENABLE_QUIC_STDOUT_TRACES. |
| 6311 | * Main use for now is in the docker image for QUIC interop testing. |
| 6312 | */ |
| 6313 | static void quic_init_stdout_traces(void) |
| 6314 | { |
| 6315 | #ifdef ENABLE_QUIC_STDOUT_TRACES |
| 6316 | trace_quic.sink = sink_find("stdout"); |
| 6317 | trace_quic.level = TRACE_LEVEL_DEVELOPER; |
Amaury Denoyelle | 118b2cb | 2021-11-25 16:05:16 +0100 | [diff] [blame] | 6318 | trace_quic.state = TRACE_STATE_RUNNING; |
| 6319 | #endif |
| 6320 | } |
| 6321 | INITCALL0(STG_INIT, quic_init_stdout_traces); |
| 6322 | |
Frédéric Lécaille | a7e7ce9 | 2020-11-23 14:14:04 +0100 | [diff] [blame] | 6323 | /* |
| 6324 | * Local variables: |
| 6325 | * c-indent-level: 8 |
| 6326 | * c-basic-offset: 8 |
| 6327 | * End: |
| 6328 | */ |