| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright 2022 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							|  |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-31 04:14:58 +08:00
										 |  |  | #include <openssl/rand.h>
 | 
					
						
							|  |  |  | #include <openssl/err.h>
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | #include "internal/quic_channel.h"
 | 
					
						
							|  |  |  | #include "internal/quic_error.h"
 | 
					
						
							|  |  |  | #include "internal/quic_rx_depack.h"
 | 
					
						
							|  |  |  | #include "../ssl_local.h"
 | 
					
						
							|  |  |  | #include "quic_channel_local.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * NOTE: While this channel implementation currently has basic server support, | 
					
						
							|  |  |  |  * this functionality has been implemented for internal testing purposes and is | 
					
						
							|  |  |  |  * not suitable for network use. In particular, it does not implement address | 
					
						
							|  |  |  |  * validation, anti-amplification or retry logic. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * TODO(QUIC): Implement address validation and anti-amplification | 
					
						
							|  |  |  |  * TODO(QUIC): Implement retry logic | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | #define INIT_DCID_LEN           8
 | 
					
						
							|  |  |  | #define INIT_CRYPTO_BUF_LEN     8192
 | 
					
						
							|  |  |  | #define INIT_APP_BUF_LEN        8192
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-21 23:19:34 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Interval before we force a PING to ensure NATs don't timeout. This is based | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |  * on the lowest commonly seen value of 30 seconds as cited in RFC 9000 s. | 
					
						
							| 
									
										
										
										
											2023-03-21 23:19:34 +08:00
										 |  |  |  * 10.1.2. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define MAX_NAT_INTERVAL (ossl_ms2time(25000))
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-03 22:45:25 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Our maximum ACK delay on the TX side. This is up to us to choose. Note that | 
					
						
							|  |  |  |  * this could differ from QUIC_DEFAULT_MAX_DELAY in future as that is a protocol | 
					
						
							|  |  |  |  * value which determines the value of the maximum ACK delay if the | 
					
						
							|  |  |  |  * max_ack_delay transport parameter is not set. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define DEFAULT_MAX_ACK_DELAY   QUIC_DEFAULT_MAX_ACK_DELAY
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-23 01:56:18 +08:00
										 |  |  | static void ch_rx_pre(QUIC_CHANNEL *ch); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | static int ch_rx(QUIC_CHANNEL *ch); | 
					
						
							|  |  |  | static int ch_tx(QUIC_CHANNEL *ch); | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  | static void ch_tick(QUIC_TICK_RESULT *res, void *arg, uint32_t flags); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | static void ch_rx_handle_packet(QUIC_CHANNEL *ch); | 
					
						
							|  |  |  | static OSSL_TIME ch_determine_next_tick_deadline(QUIC_CHANNEL *ch); | 
					
						
							|  |  |  | static int ch_retry(QUIC_CHANNEL *ch, | 
					
						
							|  |  |  |                     const unsigned char *retry_token, | 
					
						
							|  |  |  |                     size_t retry_token_len, | 
					
						
							|  |  |  |                     const QUIC_CONN_ID *retry_scid); | 
					
						
							|  |  |  | static void ch_cleanup(QUIC_CHANNEL *ch); | 
					
						
							|  |  |  | static int ch_generate_transport_params(QUIC_CHANNEL *ch); | 
					
						
							|  |  |  | static int ch_on_transport_params(const unsigned char *params, | 
					
						
							|  |  |  |                                   size_t params_len, | 
					
						
							|  |  |  |                                   void *arg); | 
					
						
							|  |  |  | static int ch_on_handshake_alert(void *arg, unsigned char alert_code); | 
					
						
							|  |  |  | static int ch_on_handshake_complete(void *arg); | 
					
						
							|  |  |  | static int ch_on_handshake_yield_secret(uint32_t enc_level, int direction, | 
					
						
							|  |  |  |                                         uint32_t suite_id, EVP_MD *md, | 
					
						
							|  |  |  |                                         const unsigned char *secret, | 
					
						
							|  |  |  |                                         size_t secret_len, | 
					
						
							|  |  |  |                                         void *arg); | 
					
						
							| 
									
										
										
										
											2023-02-24 00:31:49 +08:00
										 |  |  | static int ch_on_crypto_recv_record(const unsigned char **buf, | 
					
						
							|  |  |  |                                     size_t *bytes_read, void *arg); | 
					
						
							|  |  |  | static int ch_on_crypto_release_record(size_t bytes_read, void *arg); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | static int crypto_ensure_empty(QUIC_RSTREAM *rstream); | 
					
						
							|  |  |  | static int ch_on_crypto_send(const unsigned char *buf, size_t buf_len, | 
					
						
							|  |  |  |                              size_t *consumed, void *arg); | 
					
						
							|  |  |  | static OSSL_TIME get_time(void *arg); | 
					
						
							|  |  |  | static uint64_t get_stream_limit(int uni, void *arg); | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:10 +08:00
										 |  |  | static int rx_late_validate(QUIC_PN pn, int pn_space, void *arg); | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  | static void rxku_detected(QUIC_PN pn, void *arg); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | static int ch_retry(QUIC_CHANNEL *ch, | 
					
						
							|  |  |  |                     const unsigned char *retry_token, | 
					
						
							|  |  |  |                     size_t retry_token_len, | 
					
						
							|  |  |  |                     const QUIC_CONN_ID *retry_scid); | 
					
						
							|  |  |  | static void ch_update_idle(QUIC_CHANNEL *ch); | 
					
						
							|  |  |  | static int ch_discard_el(QUIC_CHANNEL *ch, | 
					
						
							|  |  |  |                          uint32_t enc_level); | 
					
						
							|  |  |  | static void ch_on_idle_timeout(QUIC_CHANNEL *ch); | 
					
						
							|  |  |  | static void ch_update_idle(QUIC_CHANNEL *ch); | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  | static void ch_update_ping_deadline(QUIC_CHANNEL *ch); | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  | static void ch_raise_net_error(QUIC_CHANNEL *ch); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | static void ch_on_terminating_timeout(QUIC_CHANNEL *ch); | 
					
						
							|  |  |  | static void ch_start_terminating(QUIC_CHANNEL *ch, | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  |                                  const QUIC_TERMINATE_CAUSE *tcause, | 
					
						
							|  |  |  |                                  int force_immediate); | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  | static void ch_default_packet_handler(QUIC_URXE *e, void *arg); | 
					
						
							|  |  |  | static int ch_server_on_new_conn(QUIC_CHANNEL *ch, const BIO_ADDR *peer, | 
					
						
							|  |  |  |                                  const QUIC_CONN_ID *peer_scid, | 
					
						
							|  |  |  |                                  const QUIC_CONN_ID *peer_dcid); | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  | static void ch_on_txp_ack_tx(const OSSL_QUIC_FRAME_ACK *ack, uint32_t pn_space, | 
					
						
							|  |  |  |                              void *arg); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int gen_rand_conn_id(OSSL_LIB_CTX *libctx, size_t len, QUIC_CONN_ID *cid) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (len > QUIC_MAX_CONN_ID_LEN) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     cid->id_len = (unsigned char)len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (RAND_bytes_ex(libctx, cid->id, len, len * 8) != 1) { | 
					
						
							|  |  |  |         cid->id_len = 0; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * QUIC Channel Initialization and Teardown | 
					
						
							|  |  |  |  * ======================================== | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  | #define DEFAULT_INIT_CONN_RXFC_WND      (2 * 1024 * 1024)
 | 
					
						
							|  |  |  | #define DEFAULT_CONN_RXFC_MAX_WND_MUL   5
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  | #define DEFAULT_INIT_STREAM_RXFC_WND    (2 * 1024 * 1024)
 | 
					
						
							|  |  |  | #define DEFAULT_STREAM_RXFC_MAX_WND_MUL 5
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:55 +08:00
										 |  |  | #define DEFAULT_INIT_CONN_MAX_STREAMS           100
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | static int ch_init(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     OSSL_QUIC_TX_PACKETISER_ARGS txp_args = {0}; | 
					
						
							|  |  |  |     OSSL_QTX_ARGS qtx_args = {0}; | 
					
						
							|  |  |  |     OSSL_QRX_ARGS qrx_args = {0}; | 
					
						
							| 
									
										
										
										
											2022-11-18 20:38:50 +08:00
										 |  |  |     QUIC_TLS_ARGS tls_args = {0}; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     uint32_t pn_space; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  |     size_t rx_short_cid_len = ch->is_server ? INIT_DCID_LEN : 0; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  |     /* For clients, generate our initial DCID. */ | 
					
						
							|  |  |  |     if (!ch->is_server | 
					
						
							|  |  |  |         && !gen_rand_conn_id(ch->libctx, INIT_DCID_LEN, &ch->init_dcid)) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* We plug in a network write BIO to the QTX later when we get one. */ | 
					
						
							| 
									
										
										
										
											2023-03-14 01:58:19 +08:00
										 |  |  |     qtx_args.libctx = ch->libctx; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     qtx_args.mdpl = QUIC_MIN_INITIAL_DGRAM_LEN; | 
					
						
							|  |  |  |     ch->rx_max_udp_payload_size = qtx_args.mdpl; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 20:12:08 +08:00
										 |  |  |     ch->ping_deadline = ossl_time_infinite(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     ch->qtx = ossl_qtx_new(&qtx_args); | 
					
						
							|  |  |  |     if (ch->qtx == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ch->txpim = ossl_quic_txpim_new(); | 
					
						
							|  |  |  |     if (ch->txpim == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ch->cfq = ossl_quic_cfq_new(); | 
					
						
							|  |  |  |     if (ch->cfq == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_quic_txfc_init(&ch->conn_txfc, NULL)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Note: The TP we transmit governs what the peer can transmit and thus | 
					
						
							|  |  |  |      * applies to the RXFC. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     ch->tx_init_max_stream_data_bidi_local  = DEFAULT_INIT_STREAM_RXFC_WND; | 
					
						
							|  |  |  |     ch->tx_init_max_stream_data_bidi_remote = DEFAULT_INIT_STREAM_RXFC_WND; | 
					
						
							|  |  |  |     ch->tx_init_max_stream_data_uni         = DEFAULT_INIT_STREAM_RXFC_WND; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     if (!ossl_quic_rxfc_init(&ch->conn_rxfc, NULL, | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |                              DEFAULT_INIT_CONN_RXFC_WND, | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |                              DEFAULT_CONN_RXFC_MAX_WND_MUL * | 
					
						
							|  |  |  |                              DEFAULT_INIT_CONN_RXFC_WND, | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  |                              get_time, ch)) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:55 +08:00
										 |  |  |     if (!ossl_quic_rxfc_init_for_stream_count(&ch->max_streams_bidi_rxfc, | 
					
						
							|  |  |  |                                               DEFAULT_INIT_CONN_MAX_STREAMS, | 
					
						
							|  |  |  |                                               get_time, ch)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_quic_rxfc_init_for_stream_count(&ch->max_streams_uni_rxfc, | 
					
						
							|  |  |  |                                              DEFAULT_INIT_CONN_MAX_STREAMS, | 
					
						
							|  |  |  |                                              get_time, ch)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     if (!ossl_statm_init(&ch->statm)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ch->have_statm = 1; | 
					
						
							| 
									
										
										
										
											2023-03-03 00:04:34 +08:00
										 |  |  |     ch->cc_method = &ossl_cc_newreno_method; | 
					
						
							| 
									
										
										
										
											2023-04-21 18:19:18 +08:00
										 |  |  |     if ((ch->cc_data = ch->cc_method->new(get_time, ch)) == NULL) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  |     if ((ch->ackm = ossl_ackm_new(get_time, ch, &ch->statm, | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |                                   ch->cc_method, ch->cc_data)) == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:55 +08:00
										 |  |  |     if (!ossl_quic_stream_map_init(&ch->qsm, get_stream_limit, ch, | 
					
						
							|  |  |  |                                    &ch->max_streams_bidi_rxfc, | 
					
						
							| 
									
										
										
										
											2023-04-28 23:56:34 +08:00
										 |  |  |                                    &ch->max_streams_uni_rxfc, | 
					
						
							|  |  |  |                                    ch->is_server)) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ch->have_qsm = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* We use a zero-length SCID. */ | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:55 +08:00
										 |  |  |     txp_args.cur_dcid               = ch->init_dcid; | 
					
						
							|  |  |  |     txp_args.ack_delay_exponent     = 3; | 
					
						
							|  |  |  |     txp_args.qtx                    = ch->qtx; | 
					
						
							|  |  |  |     txp_args.txpim                  = ch->txpim; | 
					
						
							|  |  |  |     txp_args.cfq                    = ch->cfq; | 
					
						
							|  |  |  |     txp_args.ackm                   = ch->ackm; | 
					
						
							|  |  |  |     txp_args.qsm                    = &ch->qsm; | 
					
						
							|  |  |  |     txp_args.conn_txfc              = &ch->conn_txfc; | 
					
						
							|  |  |  |     txp_args.conn_rxfc              = &ch->conn_rxfc; | 
					
						
							|  |  |  |     txp_args.max_streams_bidi_rxfc  = &ch->max_streams_bidi_rxfc; | 
					
						
							|  |  |  |     txp_args.max_streams_uni_rxfc   = &ch->max_streams_uni_rxfc; | 
					
						
							|  |  |  |     txp_args.cc_method              = ch->cc_method; | 
					
						
							|  |  |  |     txp_args.cc_data                = ch->cc_data; | 
					
						
							|  |  |  |     txp_args.now                    = get_time; | 
					
						
							|  |  |  |     txp_args.now_arg                = ch; | 
					
						
							| 
									
										
										
										
											2023-05-05 21:46:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     for (pn_space = QUIC_PN_SPACE_INITIAL; pn_space < QUIC_PN_SPACE_NUM; ++pn_space) { | 
					
						
							|  |  |  |         ch->crypto_send[pn_space] = ossl_quic_sstream_new(INIT_CRYPTO_BUF_LEN); | 
					
						
							|  |  |  |         if (ch->crypto_send[pn_space] == NULL) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         txp_args.crypto[pn_space] = ch->crypto_send[pn_space]; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ch->txp = ossl_quic_tx_packetiser_new(&txp_args); | 
					
						
							|  |  |  |     if (ch->txp == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  |     ossl_quic_tx_packetiser_set_ack_tx_cb(ch->txp, ch_on_txp_ack_tx, ch); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  |     if ((ch->demux = ossl_quic_demux_new(/*BIO=*/NULL, | 
					
						
							|  |  |  |                                          /*Short CID Len=*/rx_short_cid_len, | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  |                                          get_time, ch)) == NULL) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * If we are a server, setup our handler for packets not corresponding to | 
					
						
							|  |  |  |      * any known DCID on our end. This is for handling clients establishing new | 
					
						
							|  |  |  |      * connections. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (ch->is_server) | 
					
						
							|  |  |  |         ossl_quic_demux_set_default_handler(ch->demux, | 
					
						
							|  |  |  |                                             ch_default_packet_handler, | 
					
						
							|  |  |  |                                             ch); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-14 01:58:19 +08:00
										 |  |  |     qrx_args.libctx             = ch->libctx; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     qrx_args.demux              = ch->demux; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  |     qrx_args.short_conn_id_len  = rx_short_cid_len; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     qrx_args.max_deferred       = 32; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((ch->qrx = ossl_qrx_new(&qrx_args)) == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:10 +08:00
										 |  |  |     if (!ossl_qrx_set_late_validation_cb(ch->qrx, | 
					
						
							|  |  |  |                                          rx_late_validate, | 
					
						
							|  |  |  |                                          ch)) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  |     if (!ossl_qrx_set_key_update_cb(ch->qrx, | 
					
						
							|  |  |  |                                     rxku_detected, | 
					
						
							|  |  |  |                                     ch)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  |     if (!ch->is_server && !ossl_qrx_add_dst_conn_id(ch->qrx, &txp_args.cur_scid)) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (pn_space = QUIC_PN_SPACE_INITIAL; pn_space < QUIC_PN_SPACE_NUM; ++pn_space) { | 
					
						
							| 
									
										
										
										
											2022-12-01 02:30:30 +08:00
										 |  |  |         ch->crypto_recv[pn_space] = ossl_quic_rstream_new(NULL, NULL, 0); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         if (ch->crypto_recv[pn_space] == NULL) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-18 20:38:50 +08:00
										 |  |  |     /* Plug in the TLS handshake layer. */ | 
					
						
							|  |  |  |     tls_args.s                          = ch->tls; | 
					
						
							|  |  |  |     tls_args.crypto_send_cb             = ch_on_crypto_send; | 
					
						
							|  |  |  |     tls_args.crypto_send_cb_arg         = ch; | 
					
						
							| 
									
										
										
										
											2023-02-24 00:31:49 +08:00
										 |  |  |     tls_args.crypto_recv_rcd_cb         = ch_on_crypto_recv_record; | 
					
						
							|  |  |  |     tls_args.crypto_recv_rcd_cb_arg     = ch; | 
					
						
							|  |  |  |     tls_args.crypto_release_rcd_cb      = ch_on_crypto_release_record; | 
					
						
							|  |  |  |     tls_args.crypto_release_rcd_cb_arg  = ch; | 
					
						
							| 
									
										
										
										
											2022-11-18 20:38:50 +08:00
										 |  |  |     tls_args.yield_secret_cb            = ch_on_handshake_yield_secret; | 
					
						
							|  |  |  |     tls_args.yield_secret_cb_arg        = ch; | 
					
						
							|  |  |  |     tls_args.got_transport_params_cb    = ch_on_transport_params; | 
					
						
							|  |  |  |     tls_args.got_transport_params_cb_arg= ch; | 
					
						
							|  |  |  |     tls_args.handshake_complete_cb      = ch_on_handshake_complete; | 
					
						
							|  |  |  |     tls_args.handshake_complete_cb_arg  = ch; | 
					
						
							|  |  |  |     tls_args.alert_cb                   = ch_on_handshake_alert; | 
					
						
							|  |  |  |     tls_args.alert_cb_arg               = ch; | 
					
						
							|  |  |  |     tls_args.is_server                  = ch->is_server; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((ch->qtls = ossl_quic_tls_new(&tls_args)) == NULL) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-03 22:45:25 +08:00
										 |  |  |     ch->tx_max_ack_delay        = DEFAULT_MAX_ACK_DELAY; | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  |     ch->rx_max_ack_delay        = QUIC_DEFAULT_MAX_ACK_DELAY; | 
					
						
							|  |  |  |     ch->rx_ack_delay_exp        = QUIC_DEFAULT_ACK_DELAY_EXP; | 
					
						
							|  |  |  |     ch->rx_active_conn_id_limit = QUIC_MIN_ACTIVE_CONN_ID_LIMIT; | 
					
						
							|  |  |  |     ch->max_idle_timeout        = QUIC_DEFAULT_IDLE_TIMEOUT; | 
					
						
							|  |  |  |     ch->tx_enc_level            = QUIC_ENC_LEVEL_INITIAL; | 
					
						
							|  |  |  |     ch->rx_enc_level            = QUIC_ENC_LEVEL_INITIAL; | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  |     ch->txku_threshold_override = UINT64_MAX; | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-03 22:45:25 +08:00
										 |  |  |     ossl_ackm_set_tx_max_ack_delay(ch->ackm, ossl_ms2time(ch->tx_max_ack_delay)); | 
					
						
							|  |  |  |     ossl_ackm_set_rx_max_ack_delay(ch->ackm, ossl_ms2time(ch->rx_max_ack_delay)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Determine the QUIC Transport Parameters and serialize the transport | 
					
						
							|  |  |  |      * parameters block. (For servers, we do this later as we must defer | 
					
						
							|  |  |  |      * generation until we have received the client's transport parameters.) | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (!ch->is_server && !ch_generate_transport_params(ch)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ch_update_idle(ch); | 
					
						
							|  |  |  |     ossl_quic_reactor_init(&ch->rtor, ch_tick, ch, | 
					
						
							|  |  |  |                            ch_determine_next_tick_deadline(ch)); | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  |     ch_cleanup(ch); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void ch_cleanup(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t pn_space; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ch->ackm != NULL) | 
					
						
							|  |  |  |         for (pn_space = QUIC_PN_SPACE_INITIAL; | 
					
						
							|  |  |  |              pn_space < QUIC_PN_SPACE_NUM; | 
					
						
							|  |  |  |              ++pn_space) | 
					
						
							|  |  |  |             ossl_ackm_on_pkt_space_discarded(ch->ackm, pn_space); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ossl_quic_tx_packetiser_free(ch->txp); | 
					
						
							|  |  |  |     ossl_quic_txpim_free(ch->txpim); | 
					
						
							|  |  |  |     ossl_quic_cfq_free(ch->cfq); | 
					
						
							|  |  |  |     ossl_qtx_free(ch->qtx); | 
					
						
							|  |  |  |     if (ch->cc_data != NULL) | 
					
						
							|  |  |  |         ch->cc_method->free(ch->cc_data); | 
					
						
							|  |  |  |     if (ch->have_statm) | 
					
						
							|  |  |  |         ossl_statm_destroy(&ch->statm); | 
					
						
							|  |  |  |     ossl_ackm_free(ch->ackm); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ch->have_qsm) | 
					
						
							|  |  |  |         ossl_quic_stream_map_cleanup(&ch->qsm); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (pn_space = QUIC_PN_SPACE_INITIAL; pn_space < QUIC_PN_SPACE_NUM; ++pn_space) { | 
					
						
							|  |  |  |         ossl_quic_sstream_free(ch->crypto_send[pn_space]); | 
					
						
							|  |  |  |         ossl_quic_rstream_free(ch->crypto_recv[pn_space]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ossl_qrx_pkt_release(ch->qrx_pkt); | 
					
						
							|  |  |  |     ch->qrx_pkt = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-18 20:38:50 +08:00
										 |  |  |     ossl_quic_tls_free(ch->qtls); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     ossl_qrx_free(ch->qrx); | 
					
						
							|  |  |  |     ossl_quic_demux_free(ch->demux); | 
					
						
							|  |  |  |     OPENSSL_free(ch->local_transport_params); | 
					
						
							| 
									
										
										
										
											2023-05-31 04:14:58 +08:00
										 |  |  |     OSSL_ERR_STATE_free(ch->err_state); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QUIC_CHANNEL *ossl_quic_channel_new(const QUIC_CHANNEL_ARGS *args) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QUIC_CHANNEL *ch = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((ch = OPENSSL_zalloc(sizeof(*ch))) == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-18 22:46:58 +08:00
										 |  |  |     ch->libctx      = args->libctx; | 
					
						
							|  |  |  |     ch->propq       = args->propq; | 
					
						
							|  |  |  |     ch->is_server   = args->is_server; | 
					
						
							|  |  |  |     ch->tls         = args->tls; | 
					
						
							|  |  |  |     ch->mutex       = args->mutex; | 
					
						
							|  |  |  |     ch->now_cb      = args->now_cb; | 
					
						
							|  |  |  |     ch->now_cb_arg  = args->now_cb_arg; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!ch_init(ch)) { | 
					
						
							|  |  |  |         OPENSSL_free(ch); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ch; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ossl_quic_channel_free(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (ch == NULL) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ch_cleanup(ch); | 
					
						
							|  |  |  |     OPENSSL_free(ch); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-30 00:04:23 +08:00
										 |  |  | /* Set mutator callbacks for test framework support */ | 
					
						
							|  |  |  | int ossl_quic_channel_set_mutator(QUIC_CHANNEL *ch, | 
					
						
							|  |  |  |                                   ossl_mutate_packet_cb mutatecb, | 
					
						
							|  |  |  |                                   ossl_finish_mutate_cb finishmutatecb, | 
					
						
							|  |  |  |                                   void *mutatearg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (ch->qtx == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ossl_qtx_set_mutator(ch->qtx, mutatecb, finishmutatecb, mutatearg); | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | int ossl_quic_channel_get_peer_addr(QUIC_CHANNEL *ch, BIO_ADDR *peer_addr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     *peer_addr = ch->cur_peer_addr; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ossl_quic_channel_set_peer_addr(QUIC_CHANNEL *ch, const BIO_ADDR *peer_addr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ch->cur_peer_addr = *peer_addr; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QUIC_REACTOR *ossl_quic_channel_get_reactor(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return &ch->rtor; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QUIC_STREAM_MAP *ossl_quic_channel_get_qsm(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return &ch->qsm; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | OSSL_STATM *ossl_quic_channel_get_statm(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return &ch->statm; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QUIC_STREAM *ossl_quic_channel_get_stream_by_id(QUIC_CHANNEL *ch, | 
					
						
							|  |  |  |                                                 uint64_t stream_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return ossl_quic_stream_map_get_by_id(&ch->qsm, stream_id); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ossl_quic_channel_is_active(const QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return ch != NULL && ch->state == QUIC_CHANNEL_STATE_ACTIVE; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-06 23:34:05 +08:00
										 |  |  | int ossl_quic_channel_is_terminating(const QUIC_CHANNEL *ch) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2022-12-02 00:37:47 +08:00
										 |  |  |     if (ch->state == QUIC_CHANNEL_STATE_TERMINATING_CLOSING | 
					
						
							| 
									
										
										
										
											2023-02-06 23:34:05 +08:00
										 |  |  |             || ch->state == QUIC_CHANNEL_STATE_TERMINATING_DRAINING) | 
					
						
							| 
									
										
										
										
											2022-12-02 00:37:47 +08:00
										 |  |  |         return 1; | 
					
						
							| 
									
										
										
										
											2023-02-06 23:34:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-02 00:37:47 +08:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-06 23:34:05 +08:00
										 |  |  | int ossl_quic_channel_is_terminated(const QUIC_CHANNEL *ch) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-02-06 23:34:05 +08:00
										 |  |  |     if (ch->state == QUIC_CHANNEL_STATE_TERMINATED) | 
					
						
							| 
									
										
										
										
											2022-12-02 00:37:47 +08:00
										 |  |  |         return 1; | 
					
						
							| 
									
										
										
										
											2023-02-06 23:34:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-02 00:37:47 +08:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-06 23:34:05 +08:00
										 |  |  | int ossl_quic_channel_is_term_any(const QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return ossl_quic_channel_is_terminating(ch) | 
					
						
							|  |  |  |         || ossl_quic_channel_is_terminated(ch); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:55 +08:00
										 |  |  | const QUIC_TERMINATE_CAUSE * | 
					
						
							|  |  |  | ossl_quic_channel_get_terminate_cause(const QUIC_CHANNEL *ch) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:55 +08:00
										 |  |  |     return ossl_quic_channel_is_term_any(ch) ? &ch->terminate_cause : NULL; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ossl_quic_channel_is_handshake_complete(const QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return ch->handshake_complete; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-11 01:52:18 +08:00
										 |  |  | int ossl_quic_channel_is_handshake_confirmed(const QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return ch->handshake_confirmed; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-07 01:58:32 +08:00
										 |  |  | QUIC_DEMUX *ossl_quic_channel_get0_demux(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return ch->demux; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:58 +08:00
										 |  |  | CRYPTO_MUTEX *ossl_quic_channel_get_mutex(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return ch->mutex; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-16 23:24:17 +08:00
										 |  |  | int ossl_quic_channel_has_pending(const QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return ossl_quic_demux_has_pending(ch->demux) | 
					
						
							|  |  |  |         || ossl_qrx_processed_read_pending(ch->qrx); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * QUIC Channel: Callbacks from Miscellaneous Subsidiary Components | 
					
						
							|  |  |  |  * ================================================================ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Used by various components. */ | 
					
						
							|  |  |  | static OSSL_TIME get_time(void *arg) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  |     QUIC_CHANNEL *ch = arg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ch->now_cb == NULL) | 
					
						
							|  |  |  |         return ossl_time_now(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ch->now_cb(ch->now_cb_arg); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Used by QSM. */ | 
					
						
							|  |  |  | static uint64_t get_stream_limit(int uni, void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QUIC_CHANNEL *ch = arg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return uni ? ch->max_local_streams_uni : ch->max_local_streams_bidi; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Called by QRX to determine if a packet is potentially invalid before trying | 
					
						
							|  |  |  |  * to decrypt it. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:10 +08:00
										 |  |  | static int rx_late_validate(QUIC_PN pn, int pn_space, void *arg) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     QUIC_CHANNEL *ch = arg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Potential duplicates should not be processed. */ | 
					
						
							|  |  |  |     if (!ossl_ackm_is_rx_pn_processable(ch->ackm, pn, pn_space)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Triggers a TXKU (whether spontaneous or solicited). Does not check whether | 
					
						
							|  |  |  |  * spontaneous TXKU is currently allowed. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | QUIC_NEEDS_LOCK | 
					
						
							|  |  |  | static void ch_trigger_txku(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint64_t next_pn | 
					
						
							|  |  |  |         = ossl_quic_tx_packetiser_get_next_pn(ch->txp, QUIC_PN_SPACE_APP); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_quic_pn_valid(next_pn) | 
					
						
							|  |  |  |         || !ossl_qtx_trigger_key_update(ch->qtx)) { | 
					
						
							|  |  |  |         ossl_quic_channel_raise_protocol_error(ch, QUIC_ERR_INTERNAL_ERROR, 0, | 
					
						
							|  |  |  |                                                "key update"); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ch->txku_in_progress    = 1; | 
					
						
							|  |  |  |     ch->txku_pn             = next_pn; | 
					
						
							|  |  |  |     ch->rxku_expected       = ch->ku_locally_initiated; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QUIC_NEEDS_LOCK | 
					
						
							|  |  |  | static int txku_in_progress(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (ch->txku_in_progress | 
					
						
							|  |  |  |         && ossl_ackm_get_largest_acked(ch->ackm, QUIC_PN_SPACE_APP) >= ch->txku_pn) { | 
					
						
							|  |  |  |         OSSL_TIME pto = ossl_ackm_get_pto_duration(ch->ackm); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * RFC 9001 s. 6.5: Endpoints SHOULD wait three times the PTO before | 
					
						
							|  |  |  |          * initiating a key update after receiving an acknowledgment that | 
					
						
							|  |  |  |          * confirms that the previous key update was received. | 
					
						
							|  |  |  |          * | 
					
						
							|  |  |  |          * Note that by the above wording, this period starts from when we get | 
					
						
							|  |  |  |          * the ack for a TXKU-triggering packet, not when the TXKU is initiated. | 
					
						
							|  |  |  |          * So we defer TXKU cooldown deadline calculation to this point. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         ch->txku_in_progress        = 0; | 
					
						
							|  |  |  |         ch->txku_cooldown_deadline  = ossl_time_add(get_time(ch), | 
					
						
							|  |  |  |                                                     ossl_time_multiply(pto, 3)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ch->txku_in_progress; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QUIC_NEEDS_LOCK | 
					
						
							|  |  |  | static int txku_allowed(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return ch->tx_enc_level == QUIC_ENC_LEVEL_1RTT /* Sanity check. */ | 
					
						
							|  |  |  |         /* Strict RFC 9001 criterion for TXKU. */ | 
					
						
							|  |  |  |         && ch->handshake_confirmed | 
					
						
							|  |  |  |         && !txku_in_progress(ch); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QUIC_NEEDS_LOCK | 
					
						
							|  |  |  | static int txku_recommendable(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!txku_allowed(ch)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return | 
					
						
							|  |  |  |         /* Recommended RFC 9001 criterion for TXKU. */ | 
					
						
							|  |  |  |         ossl_time_compare(get_time(ch), ch->txku_cooldown_deadline) >= 0 | 
					
						
							|  |  |  |         /* Some additional sensible criteria. */ | 
					
						
							|  |  |  |         && !ch->rxku_in_progress | 
					
						
							|  |  |  |         && !ch->rxku_pending_confirm; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QUIC_NEEDS_LOCK | 
					
						
							|  |  |  | static int txku_desirable(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  |     uint64_t cur_pkt_count, max_pkt_count, thresh_pkt_count; | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  |     const uint32_t enc_level = QUIC_ENC_LEVEL_1RTT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Check AEAD limit to determine if we should perform a spontaneous TXKU. */ | 
					
						
							|  |  |  |     cur_pkt_count = ossl_qtx_get_cur_epoch_pkt_count(ch->qtx, enc_level); | 
					
						
							|  |  |  |     max_pkt_count = ossl_qtx_get_max_epoch_pkt_count(ch->qtx, enc_level); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  |     thresh_pkt_count = max_pkt_count / 2; | 
					
						
							|  |  |  |     if (ch->txku_threshold_override != UINT64_MAX) | 
					
						
							|  |  |  |         thresh_pkt_count = ch->txku_threshold_override; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return cur_pkt_count >= thresh_pkt_count; | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QUIC_NEEDS_LOCK | 
					
						
							|  |  |  | static void ch_maybe_trigger_spontaneous_txku(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!txku_recommendable(ch) || !txku_desirable(ch)) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ch->ku_locally_initiated = 1; | 
					
						
							|  |  |  |     ch_trigger_txku(ch); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QUIC_NEEDS_LOCK | 
					
						
							|  |  |  | static int rxku_allowed(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * RFC 9001 s. 6.1: An endpoint MUST NOT initiate a key update prior to | 
					
						
							|  |  |  |      * having confirmed the handshake (Section 4.1.2). | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * RFC 9001 s. 6.1: An endpoint MUST NOT initiate a subsequent key update | 
					
						
							|  |  |  |      * unless it has received an acknowledgment for a packet that was sent | 
					
						
							|  |  |  |      * protected with keys from the current key phase. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * RFC 9001 s. 6.2: If an endpoint detects a second update before it has | 
					
						
							|  |  |  |      * sent any packets with updated keys containing an acknowledgment for the | 
					
						
							|  |  |  |      * packet that initiated the key update, it indicates that its peer has | 
					
						
							|  |  |  |      * updated keys twice without awaiting confirmation. An endpoint MAY treat | 
					
						
							|  |  |  |      * such consecutive key updates as a connection error of type | 
					
						
							|  |  |  |      * KEY_UPDATE_ERROR. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     return ch->handshake_confirmed && !ch->rxku_pending_confirm; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Called when the QRX detects a new RX key update event. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | enum rxku_decision { | 
					
						
							|  |  |  |     DECISION_RXKU_ONLY, | 
					
						
							|  |  |  |     DECISION_PROTOCOL_VIOLATION, | 
					
						
							|  |  |  |     DECISION_SOLICITED_TXKU | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Called when the QRX detects a key update has occurred. */ | 
					
						
							|  |  |  | QUIC_NEEDS_LOCK | 
					
						
							|  |  |  | static void rxku_detected(QUIC_PN pn, void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QUIC_CHANNEL *ch = arg; | 
					
						
							|  |  |  |     enum rxku_decision decision; | 
					
						
							|  |  |  |     OSSL_TIME pto; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Note: rxku_in_progress is always 0 here as an RXKU cannot be detected | 
					
						
							|  |  |  |      * when we are still in UPDATING or COOLDOWN (see quic_record_rx.h). | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     assert(!ch->rxku_in_progress); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!rxku_allowed(ch)) | 
					
						
							|  |  |  |         /* Is RXKU even allowed at this time? */ | 
					
						
							|  |  |  |         decision = DECISION_PROTOCOL_VIOLATION; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     else if (ch->ku_locally_initiated) | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * If this key update was locally initiated (meaning that this detected | 
					
						
							|  |  |  |          * RXKU event is a result of our own spontaneous TXKU), we do not | 
					
						
							|  |  |  |          * trigger another TXKU; after all, to do so would result in an infinite | 
					
						
							|  |  |  |          * ping-pong of key updates. We still process it as an RXKU. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         decision = DECISION_RXKU_ONLY; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Otherwise, a peer triggering a KU means we have to trigger a KU also. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         decision = DECISION_SOLICITED_TXKU; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (decision == DECISION_PROTOCOL_VIOLATION) { | 
					
						
							|  |  |  |         ossl_quic_channel_raise_protocol_error(ch, QUIC_ERR_KEY_UPDATE_ERROR, | 
					
						
							|  |  |  |                                                0, "RX key update again too soon"); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     pto = ossl_ackm_get_pto_duration(ch->ackm); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ch->ku_locally_initiated        = 0; | 
					
						
							|  |  |  |     ch->rxku_in_progress            = 1; | 
					
						
							|  |  |  |     ch->rxku_pending_confirm        = 1; | 
					
						
							|  |  |  |     ch->rxku_trigger_pn             = pn; | 
					
						
							|  |  |  |     ch->rxku_update_end_deadline    = ossl_time_add(get_time(ch), pto); | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  |     ch->rxku_expected               = 0; | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (decision == DECISION_SOLICITED_TXKU) | 
					
						
							|  |  |  |         /* NOT gated by usual txku_allowed() */ | 
					
						
							|  |  |  |         ch_trigger_txku(ch); | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Ordinarily, we only generate ACK when some ACK-eliciting frame has been | 
					
						
							|  |  |  |      * received. In some cases, this may not occur for a long time, for example | 
					
						
							|  |  |  |      * if transmission of application data is going in only one direction and | 
					
						
							|  |  |  |      * nothing else is happening with the connection. However, since the peer | 
					
						
							|  |  |  |      * cannot initiate a subsequent (spontaneous) TXKU until its prior | 
					
						
							| 
									
										
										
										
											2023-06-12 21:13:26 +08:00
										 |  |  |      * (spontaneous or solicited) TXKU has completed - meaning that prior | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  |      * TXKU's trigger packet (or subsequent packet) has been acknowledged, this | 
					
						
							|  |  |  |      * can lead to very long times before a TXKU is considered 'completed'. | 
					
						
							|  |  |  |      * Optimise this by forcing ACK generation after triggering TXKU. | 
					
						
							|  |  |  |      * (Basically, we consider a RXKU event something that is 'ACK-eliciting', | 
					
						
							|  |  |  |      * which it more or less should be; it is necessarily separate from ordinary | 
					
						
							|  |  |  |      * processing of ACK-eliciting frames as key update is not indicated via a | 
					
						
							|  |  |  |      * frame.) | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     ossl_quic_tx_packetiser_schedule_ack(ch->txp, QUIC_PN_SPACE_APP); | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Called per tick to handle RXKU timer events. */ | 
					
						
							|  |  |  | QUIC_NEEDS_LOCK | 
					
						
							|  |  |  | static void ch_rxku_tick(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!ch->rxku_in_progress | 
					
						
							|  |  |  |         || ossl_time_compare(get_time(ch), ch->rxku_update_end_deadline) < 0) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ch->rxku_update_end_deadline    = ossl_time_infinite(); | 
					
						
							|  |  |  |     ch->rxku_in_progress            = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_qrx_key_update_timeout(ch->qrx, /*normal=*/1)) | 
					
						
							|  |  |  |         ossl_quic_channel_raise_protocol_error(ch, QUIC_ERR_INTERNAL_ERROR, 0, | 
					
						
							|  |  |  |                                                "RXKU cooldown internal error"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QUIC_NEEDS_LOCK | 
					
						
							|  |  |  | static void ch_on_txp_ack_tx(const OSSL_QUIC_FRAME_ACK *ack, uint32_t pn_space, | 
					
						
							|  |  |  |                              void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QUIC_CHANNEL *ch = arg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (pn_space != QUIC_PN_SPACE_APP || !ch->rxku_pending_confirm | 
					
						
							|  |  |  |         || !ossl_quic_frame_ack_contains_pn(ack, ch->rxku_trigger_pn)) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Defer clearing rxku_pending_confirm until TXP generate call returns | 
					
						
							|  |  |  |      * successfully. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     ch->rxku_pending_confirm_done = 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * QUIC Channel: Handshake Layer Event Handling | 
					
						
							|  |  |  |  * ============================================ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int ch_on_crypto_send(const unsigned char *buf, size_t buf_len, | 
					
						
							|  |  |  |                              size_t *consumed, void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret; | 
					
						
							|  |  |  |     QUIC_CHANNEL *ch = arg; | 
					
						
							|  |  |  |     uint32_t enc_level = ch->tx_enc_level; | 
					
						
							|  |  |  |     uint32_t pn_space = ossl_quic_enc_level_to_pn_space(enc_level); | 
					
						
							|  |  |  |     QUIC_SSTREAM *sstream = ch->crypto_send[pn_space]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_assert(sstream != NULL)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = ossl_quic_sstream_append(sstream, buf, buf_len, consumed); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int crypto_ensure_empty(QUIC_RSTREAM *rstream) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     size_t avail = 0; | 
					
						
							|  |  |  |     int is_fin = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (rstream == NULL) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_quic_rstream_available(rstream, &avail, &is_fin)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return avail == 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-24 00:31:49 +08:00
										 |  |  | static int ch_on_crypto_recv_record(const unsigned char **buf, | 
					
						
							|  |  |  |                                     size_t *bytes_read, void *arg) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     QUIC_CHANNEL *ch = arg; | 
					
						
							|  |  |  |     QUIC_RSTREAM *rstream; | 
					
						
							|  |  |  |     int is_fin = 0; /* crypto stream is never finished, so we don't use this */ | 
					
						
							|  |  |  |     uint32_t i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * After we move to a later EL we must not allow our peer to send any new | 
					
						
							|  |  |  |      * bytes in the crypto stream on a previous EL. Retransmissions of old bytes | 
					
						
							|  |  |  |      * are allowed. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * In practice we will only move to a new EL when we have consumed all bytes | 
					
						
							|  |  |  |      * which should be sent on the crypto stream at a previous EL. For example, | 
					
						
							|  |  |  |      * the Handshake EL should not be provisioned until we have completely | 
					
						
							|  |  |  |      * consumed a TLS 1.3 ServerHello. Thus when we provision an EL the output | 
					
						
							|  |  |  |      * of ossl_quic_rstream_available() should be 0 for all lower ELs. Thus if a | 
					
						
							|  |  |  |      * given EL is available we simply ensure we have not received any further | 
					
						
							|  |  |  |      * bytes at a lower EL. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2022-11-21 19:00:34 +08:00
										 |  |  |     for (i = QUIC_ENC_LEVEL_INITIAL; i < ch->rx_enc_level; ++i) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         if (i != QUIC_ENC_LEVEL_0RTT && | 
					
						
							|  |  |  |             !crypto_ensure_empty(ch->crypto_recv[ossl_quic_enc_level_to_pn_space(i)])) { | 
					
						
							|  |  |  |             /* Protocol violation (RFC 9001 s. 4.1.3) */ | 
					
						
							|  |  |  |             ossl_quic_channel_raise_protocol_error(ch, QUIC_ERR_PROTOCOL_VIOLATION, | 
					
						
							|  |  |  |                                                    OSSL_QUIC_FRAME_TYPE_CRYPTO, | 
					
						
							|  |  |  |                                                    "crypto stream data in wrong EL"); | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-21 19:00:34 +08:00
										 |  |  |     rstream = ch->crypto_recv[ossl_quic_enc_level_to_pn_space(ch->rx_enc_level)]; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     if (rstream == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-24 00:31:49 +08:00
										 |  |  |     return ossl_quic_rstream_get_record(rstream, buf, bytes_read, | 
					
						
							|  |  |  |                                         &is_fin); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int ch_on_crypto_release_record(size_t bytes_read, void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QUIC_CHANNEL *ch = arg; | 
					
						
							|  |  |  |     QUIC_RSTREAM *rstream; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     rstream = ch->crypto_recv[ossl_quic_enc_level_to_pn_space(ch->rx_enc_level)]; | 
					
						
							|  |  |  |     if (rstream == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ossl_quic_rstream_release_record(rstream, bytes_read); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int ch_on_handshake_yield_secret(uint32_t enc_level, int direction, | 
					
						
							|  |  |  |                                         uint32_t suite_id, EVP_MD *md, | 
					
						
							|  |  |  |                                         const unsigned char *secret, | 
					
						
							|  |  |  |                                         size_t secret_len, | 
					
						
							|  |  |  |                                         void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QUIC_CHANNEL *ch = arg; | 
					
						
							|  |  |  |     uint32_t i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (enc_level < QUIC_ENC_LEVEL_HANDSHAKE || enc_level >= QUIC_ENC_LEVEL_NUM) | 
					
						
							|  |  |  |         /* Invalid EL. */ | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (direction) { | 
					
						
							|  |  |  |         /* TX */ | 
					
						
							| 
									
										
										
										
											2022-11-21 19:00:34 +08:00
										 |  |  |         if (enc_level <= ch->tx_enc_level) | 
					
						
							|  |  |  |             /*
 | 
					
						
							| 
									
										
										
										
											2023-01-04 15:24:08 +08:00
										 |  |  |              * Does not make sense for us to try and provision an EL we have already | 
					
						
							|  |  |  |              * attained. | 
					
						
							|  |  |  |              */ | 
					
						
							| 
									
										
										
										
											2022-11-21 19:00:34 +08:00
										 |  |  |             return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         if (!ossl_qtx_provide_secret(ch->qtx, enc_level, | 
					
						
							|  |  |  |                                      suite_id, md, | 
					
						
							|  |  |  |                                      secret, secret_len)) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ch->tx_enc_level = enc_level; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         /* RX */ | 
					
						
							| 
									
										
										
										
											2022-11-21 19:00:34 +08:00
										 |  |  |         if (enc_level <= ch->rx_enc_level) | 
					
						
							|  |  |  |             /*
 | 
					
						
							| 
									
										
										
										
											2023-01-04 15:24:08 +08:00
										 |  |  |              * Does not make sense for us to try and provision an EL we have already | 
					
						
							|  |  |  |              * attained. | 
					
						
							|  |  |  |              */ | 
					
						
							| 
									
										
										
										
											2022-11-21 19:00:34 +08:00
										 |  |  |             return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							| 
									
										
										
										
											2023-01-04 15:24:08 +08:00
										 |  |  |          * Ensure all crypto streams for previous ELs are now empty of available | 
					
						
							|  |  |  |          * data. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2022-11-21 19:00:34 +08:00
										 |  |  |         for (i = QUIC_ENC_LEVEL_INITIAL; i < enc_level; ++i) | 
					
						
							| 
									
										
										
										
											2022-11-30 16:01:58 +08:00
										 |  |  |             if (!crypto_ensure_empty(ch->crypto_recv[ossl_quic_enc_level_to_pn_space(i)])) { | 
					
						
							| 
									
										
										
										
											2022-11-21 19:00:34 +08:00
										 |  |  |                 /* Protocol violation (RFC 9001 s. 4.1.3) */ | 
					
						
							|  |  |  |                 ossl_quic_channel_raise_protocol_error(ch, QUIC_ERR_PROTOCOL_VIOLATION, | 
					
						
							|  |  |  |                                                     OSSL_QUIC_FRAME_TYPE_CRYPTO, | 
					
						
							|  |  |  |                                                     "crypto stream data in wrong EL"); | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         if (!ossl_qrx_provide_secret(ch->qrx, enc_level, | 
					
						
							|  |  |  |                                      suite_id, md, | 
					
						
							|  |  |  |                                      secret, secret_len)) | 
					
						
							|  |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:46:05 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         ch->have_new_rx_secret = 1; | 
					
						
							| 
									
										
										
										
											2022-11-21 19:00:34 +08:00
										 |  |  |         ch->rx_enc_level = enc_level; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int ch_on_handshake_complete(void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QUIC_CHANNEL *ch = arg; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-30 16:01:58 +08:00
										 |  |  |     if (!ossl_assert(!ch->handshake_complete)) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         return 0; /* this should not happen twice */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_assert(ch->tx_enc_level == QUIC_ENC_LEVEL_1RTT)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-08 00:55:21 +08:00
										 |  |  |     if (!ch->got_remote_transport_params) { | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * Was not a valid QUIC handshake if we did not get valid transport | 
					
						
							|  |  |  |          * params. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2022-12-08 00:55:21 +08:00
										 |  |  |         ossl_quic_channel_raise_protocol_error(ch, QUIC_ERR_PROTOCOL_VIOLATION, | 
					
						
							|  |  |  |                                                OSSL_QUIC_FRAME_TYPE_CRYPTO, | 
					
						
							|  |  |  |                                                "no transport parameters received"); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2022-12-08 00:55:21 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Don't need transport parameters anymore. */ | 
					
						
							|  |  |  |     OPENSSL_free(ch->local_transport_params); | 
					
						
							|  |  |  |     ch->local_transport_params = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Tell TXP the handshake is complete. */ | 
					
						
							|  |  |  |     ossl_quic_tx_packetiser_notify_handshake_complete(ch->txp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ch->handshake_complete = 1; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (ch->is_server) { | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * On the server, the handshake is confirmed as soon as it is complete. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         ossl_quic_channel_on_handshake_confirmed(ch); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ossl_quic_tx_packetiser_schedule_handshake_done(ch->txp); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int ch_on_handshake_alert(void *arg, unsigned char alert_code) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QUIC_CHANNEL *ch = arg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ossl_quic_channel_raise_protocol_error(ch, QUIC_ERR_CRYPTO_ERR_BEGIN + alert_code, | 
					
						
							|  |  |  |                                            0, "handshake alert"); | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * QUIC Channel: Transport Parameter Handling | 
					
						
							|  |  |  |  * ========================================== | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Called by handshake layer when we receive QUIC Transport Parameters from the | 
					
						
							|  |  |  |  * peer. Note that these are not authenticated until the handshake is marked | 
					
						
							|  |  |  |  * as complete. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  | #define TP_REASON_SERVER_ONLY(x) \
 | 
					
						
							|  |  |  |     x " may not be sent by a client" | 
					
						
							|  |  |  | #define TP_REASON_DUP(x) \
 | 
					
						
							|  |  |  |     x " appears multiple times" | 
					
						
							|  |  |  | #define TP_REASON_MALFORMED(x) \
 | 
					
						
							|  |  |  |     x " is malformed" | 
					
						
							|  |  |  | #define TP_REASON_EXPECTED_VALUE(x) \
 | 
					
						
							|  |  |  |     x " does not match expected value" | 
					
						
							|  |  |  | #define TP_REASON_NOT_RETRY(x) \
 | 
					
						
							|  |  |  |     x " sent when not performing a retry" | 
					
						
							|  |  |  | #define TP_REASON_REQUIRED(x) \
 | 
					
						
							|  |  |  |     x " was not sent but is required" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  | static void txfc_bump_cwm_bidi(QUIC_STREAM *s, void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!ossl_quic_stream_is_bidi(s) | 
					
						
							|  |  |  |         || ossl_quic_stream_is_server_init(s)) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ossl_quic_txfc_bump_cwm(&s->txfc, *(uint64_t *)arg); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void txfc_bump_cwm_uni(QUIC_STREAM *s, void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (ossl_quic_stream_is_bidi(s) | 
					
						
							|  |  |  |         || ossl_quic_stream_is_server_init(s)) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ossl_quic_txfc_bump_cwm(&s->txfc, *(uint64_t *)arg); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void do_update(QUIC_STREAM *s, void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QUIC_CHANNEL *ch = arg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ossl_quic_stream_map_update_state(&ch->qsm, s); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | static int ch_on_transport_params(const unsigned char *params, | 
					
						
							|  |  |  |                                   size_t params_len, | 
					
						
							|  |  |  |                                   void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QUIC_CHANNEL *ch = arg; | 
					
						
							|  |  |  |     PACKET pkt; | 
					
						
							|  |  |  |     uint64_t id, v; | 
					
						
							|  |  |  |     size_t len; | 
					
						
							|  |  |  |     const unsigned char *body; | 
					
						
							|  |  |  |     int got_orig_dcid = 0; | 
					
						
							|  |  |  |     int got_initial_scid = 0; | 
					
						
							|  |  |  |     int got_retry_scid = 0; | 
					
						
							|  |  |  |     int got_initial_max_data = 0; | 
					
						
							|  |  |  |     int got_initial_max_stream_data_bidi_local = 0; | 
					
						
							|  |  |  |     int got_initial_max_stream_data_bidi_remote = 0; | 
					
						
							|  |  |  |     int got_initial_max_stream_data_uni = 0; | 
					
						
							|  |  |  |     int got_initial_max_streams_bidi = 0; | 
					
						
							|  |  |  |     int got_initial_max_streams_uni = 0; | 
					
						
							|  |  |  |     int got_ack_delay_exp = 0; | 
					
						
							|  |  |  |     int got_max_ack_delay = 0; | 
					
						
							|  |  |  |     int got_max_udp_payload_size = 0; | 
					
						
							|  |  |  |     int got_max_idle_timeout = 0; | 
					
						
							|  |  |  |     int got_active_conn_id_limit = 0; | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:10 +08:00
										 |  |  |     int got_disable_active_migration = 0; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     QUIC_CONN_ID cid; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |     const char *reason = "bad transport parameter"; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (ch->got_remote_transport_params) | 
					
						
							|  |  |  |         goto malformed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PACKET_buf_init(&pkt, params, params_len)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (PACKET_remaining(&pkt) > 0) { | 
					
						
							|  |  |  |         if (!ossl_quic_wire_peek_transport_param(&pkt, &id)) | 
					
						
							|  |  |  |             goto malformed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         switch (id) { | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |         case QUIC_TPARAM_ORIG_DCID: | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (got_orig_dcid) { | 
					
						
							|  |  |  |                 reason = TP_REASON_DUP("ORIG_DCID"); | 
					
						
							|  |  |  |                 goto malformed; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (ch->is_server) { | 
					
						
							|  |  |  |                 reason = TP_REASON_SERVER_ONLY("ORIG_DCID"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (!ossl_quic_wire_decode_transport_param_cid(&pkt, NULL, &cid)) { | 
					
						
							|  |  |  |                 reason = TP_REASON_MALFORMED("ORIG_DCID"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             /* Must match our initial DCID. */ | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (!ossl_quic_conn_id_eq(&ch->init_dcid, &cid)) { | 
					
						
							|  |  |  |                 reason = TP_REASON_EXPECTED_VALUE("ORIG_DCID"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             got_orig_dcid = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         case QUIC_TPARAM_RETRY_SCID: | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (ch->is_server) { | 
					
						
							|  |  |  |                 reason = TP_REASON_SERVER_ONLY("RETRY_SCID"); | 
					
						
							|  |  |  |                 goto malformed; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (got_retry_scid) { | 
					
						
							|  |  |  |                 reason = TP_REASON_DUP("RETRY_SCID"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (!ch->doing_retry) { | 
					
						
							|  |  |  |                 reason = TP_REASON_NOT_RETRY("RETRY_SCID"); | 
					
						
							|  |  |  |                 goto malformed; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (!ossl_quic_wire_decode_transport_param_cid(&pkt, NULL, &cid)) { | 
					
						
							|  |  |  |                 reason = TP_REASON_MALFORMED("RETRY_SCID"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             /* Must match Retry packet SCID. */ | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (!ossl_quic_conn_id_eq(&ch->retry_scid, &cid)) { | 
					
						
							|  |  |  |                 reason = TP_REASON_EXPECTED_VALUE("RETRY_SCID"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             got_retry_scid = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         case QUIC_TPARAM_INITIAL_SCID: | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (got_initial_scid) { | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 /* must not appear more than once */ | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |                 reason = TP_REASON_DUP("INITIAL_SCID"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (!ossl_quic_wire_decode_transport_param_cid(&pkt, NULL, &cid)) { | 
					
						
							|  |  |  |                 reason = TP_REASON_MALFORMED("INITIAL_SCID"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             /* Must match SCID of first Initial packet from server. */ | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (!ossl_quic_conn_id_eq(&ch->init_scid, &cid)) { | 
					
						
							|  |  |  |                 reason = TP_REASON_EXPECTED_VALUE("INITIAL_SCID"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             got_initial_scid = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         case QUIC_TPARAM_INITIAL_MAX_DATA: | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (got_initial_max_data) { | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 /* must not appear more than once */ | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |                 reason = TP_REASON_DUP("INITIAL_MAX_DATA"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (!ossl_quic_wire_decode_transport_param_int(&pkt, &id, &v)) { | 
					
						
							|  |  |  |                 reason = TP_REASON_MALFORMED("INITIAL_MAX_DATA"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             ossl_quic_txfc_bump_cwm(&ch->conn_txfc, v); | 
					
						
							|  |  |  |             got_initial_max_data = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         case QUIC_TPARAM_INITIAL_MAX_STREAM_DATA_BIDI_LOCAL: | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (got_initial_max_stream_data_bidi_local) { | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 /* must not appear more than once */ | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |                 reason = TP_REASON_DUP("INITIAL_MAX_STREAM_DATA_BIDI_LOCAL"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (!ossl_quic_wire_decode_transport_param_int(&pkt, &id, &v)) { | 
					
						
							|  |  |  |                 reason = TP_REASON_MALFORMED("INITIAL_MAX_STREAM_DATA_BIDI_LOCAL"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             /*
 | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |              * This is correct; the BIDI_LOCAL TP governs streams created by | 
					
						
							|  |  |  |              * the endpoint which sends the TP, i.e., our peer. | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |              */ | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |             ch->rx_init_max_stream_data_bidi_remote = v; | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |             got_initial_max_stream_data_bidi_local = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         case QUIC_TPARAM_INITIAL_MAX_STREAM_DATA_BIDI_REMOTE: | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (got_initial_max_stream_data_bidi_remote) { | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 /* must not appear more than once */ | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |                 reason = TP_REASON_DUP("INITIAL_MAX_STREAM_DATA_BIDI_REMOTE"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (!ossl_quic_wire_decode_transport_param_int(&pkt, &id, &v)) { | 
					
						
							|  |  |  |                 reason = TP_REASON_MALFORMED("INITIAL_MAX_STREAM_DATA_BIDI_REMOTE"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             /*
 | 
					
						
							|  |  |  |              * This is correct; the BIDI_REMOTE TP governs streams created | 
					
						
							|  |  |  |              * by the endpoint which receives the TP, i.e., us. | 
					
						
							|  |  |  |              */ | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |             ch->rx_init_max_stream_data_bidi_local = v; | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |             /* Apply to all existing streams. */ | 
					
						
							|  |  |  |             ossl_quic_stream_map_visit(&ch->qsm, txfc_bump_cwm_bidi, &v); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |             got_initial_max_stream_data_bidi_remote = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         case QUIC_TPARAM_INITIAL_MAX_STREAM_DATA_UNI: | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (got_initial_max_stream_data_uni) { | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 /* must not appear more than once */ | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |                 reason = TP_REASON_DUP("INITIAL_MAX_STREAM_DATA_UNI"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (!ossl_quic_wire_decode_transport_param_int(&pkt, &id, &v)) { | 
					
						
							|  |  |  |                 reason = TP_REASON_MALFORMED("INITIAL_MAX_STREAM_DATA_UNI"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |             ch->rx_init_max_stream_data_uni = v; | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             /* Apply to all existing streams. */ | 
					
						
							|  |  |  |             ossl_quic_stream_map_visit(&ch->qsm, txfc_bump_cwm_uni, &v); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |             got_initial_max_stream_data_uni = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         case QUIC_TPARAM_ACK_DELAY_EXP: | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (got_ack_delay_exp) { | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 /* must not appear more than once */ | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |                 reason = TP_REASON_DUP("ACK_DELAY_EXP"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if (!ossl_quic_wire_decode_transport_param_int(&pkt, &id, &v) | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |                 || v > QUIC_MAX_ACK_DELAY_EXP) { | 
					
						
							|  |  |  |                 reason = TP_REASON_MALFORMED("ACK_DELAY_EXP"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             ch->rx_ack_delay_exp = (unsigned char)v; | 
					
						
							|  |  |  |             got_ack_delay_exp = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         case QUIC_TPARAM_MAX_ACK_DELAY: | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (got_max_ack_delay) { | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 /* must not appear more than once */ | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |                 reason = TP_REASON_DUP("MAX_ACK_DELAY"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 return 0; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if (!ossl_quic_wire_decode_transport_param_int(&pkt, &id, &v) | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |                 || v >= (((uint64_t)1) << 14)) { | 
					
						
							|  |  |  |                 reason = TP_REASON_MALFORMED("MAX_ACK_DELAY"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             ch->rx_max_ack_delay = v; | 
					
						
							| 
									
										
										
										
											2023-07-03 22:45:25 +08:00
										 |  |  |             ossl_ackm_set_rx_max_ack_delay(ch->ackm, | 
					
						
							|  |  |  |                                            ossl_ms2time(ch->rx_max_ack_delay)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |             got_max_ack_delay = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         case QUIC_TPARAM_INITIAL_MAX_STREAMS_BIDI: | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (got_initial_max_streams_bidi) { | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 /* must not appear more than once */ | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |                 reason = TP_REASON_DUP("INITIAL_MAX_STREAMS_BIDI"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 return 0; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if (!ossl_quic_wire_decode_transport_param_int(&pkt, &id, &v) | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |                 || v > (((uint64_t)1) << 60)) { | 
					
						
							|  |  |  |                 reason = TP_REASON_MALFORMED("INITIAL_MAX_STREAMS_BIDI"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             assert(ch->max_local_streams_bidi == 0); | 
					
						
							|  |  |  |             ch->max_local_streams_bidi = v; | 
					
						
							|  |  |  |             got_initial_max_streams_bidi = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         case QUIC_TPARAM_INITIAL_MAX_STREAMS_UNI: | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (got_initial_max_streams_uni) { | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 /* must not appear more than once */ | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |                 reason = TP_REASON_DUP("INITIAL_MAX_STREAMS_UNI"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if (!ossl_quic_wire_decode_transport_param_int(&pkt, &id, &v) | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |                 || v > (((uint64_t)1) << 60)) { | 
					
						
							|  |  |  |                 reason = TP_REASON_MALFORMED("INITIAL_MAX_STREAMS_UNI"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             assert(ch->max_local_streams_uni == 0); | 
					
						
							|  |  |  |             ch->max_local_streams_uni = v; | 
					
						
							|  |  |  |             got_initial_max_streams_uni = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         case QUIC_TPARAM_MAX_IDLE_TIMEOUT: | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (got_max_idle_timeout) { | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 /* must not appear more than once */ | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |                 reason = TP_REASON_DUP("MAX_IDLE_TIMEOUT"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (!ossl_quic_wire_decode_transport_param_int(&pkt, &id, &v)) { | 
					
						
							|  |  |  |                 reason = TP_REASON_MALFORMED("MAX_IDLE_TIMEOUT"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  |             if (v > 0 && v < ch->max_idle_timeout) | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 ch->max_idle_timeout = v; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             ch_update_idle(ch); | 
					
						
							|  |  |  |             got_max_idle_timeout = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |         case QUIC_TPARAM_MAX_UDP_PAYLOAD_SIZE: | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (got_max_udp_payload_size) { | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 /* must not appear more than once */ | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |                 reason = TP_REASON_DUP("MAX_UDP_PAYLOAD_SIZE"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |             if (!ossl_quic_wire_decode_transport_param_int(&pkt, &id, &v) | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |                 || v < QUIC_MIN_INITIAL_DGRAM_LEN) { | 
					
						
							|  |  |  |                 reason = TP_REASON_MALFORMED("MAX_UDP_PAYLOAD_SIZE"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             ch->rx_max_udp_payload_size = v; | 
					
						
							|  |  |  |             got_max_udp_payload_size    = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         case QUIC_TPARAM_ACTIVE_CONN_ID_LIMIT: | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             if (got_active_conn_id_limit) { | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 /* must not appear more than once */ | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |                 reason = TP_REASON_DUP("ACTIVE_CONN_ID_LIMIT"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if (!ossl_quic_wire_decode_transport_param_int(&pkt, &id, &v) | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |                 || v < QUIC_MIN_ACTIVE_CONN_ID_LIMIT) { | 
					
						
							|  |  |  |                 reason = TP_REASON_MALFORMED("ACTIVE_CONN_ID_LIMIT"); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |                 goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             ch->rx_active_conn_id_limit = v; | 
					
						
							|  |  |  |             got_active_conn_id_limit = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |         case QUIC_TPARAM_STATELESS_RESET_TOKEN: | 
					
						
							|  |  |  |             /* TODO(QUIC): Handle stateless reset tokens. */ | 
					
						
							|  |  |  |             /*
 | 
					
						
							|  |  |  |              * We ignore these for now, but we must ensure a client doesn't | 
					
						
							|  |  |  |              * send them. | 
					
						
							|  |  |  |              */ | 
					
						
							|  |  |  |             if (ch->is_server) { | 
					
						
							|  |  |  |                 reason = TP_REASON_SERVER_ONLY("STATELESS_RESET_TOKEN"); | 
					
						
							|  |  |  |                 goto malformed; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             body = ossl_quic_wire_decode_transport_param_bytes(&pkt, &id, &len); | 
					
						
							|  |  |  |             if (body == NULL || len != QUIC_STATELESS_RESET_TOKEN_LEN) { | 
					
						
							|  |  |  |                 reason = TP_REASON_MALFORMED("STATELESS_RESET_TOKEN"); | 
					
						
							|  |  |  |                 goto malformed; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         case QUIC_TPARAM_PREFERRED_ADDR: | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:12 +08:00
										 |  |  |             { | 
					
						
							|  |  |  |                 /* TODO(QUIC): Handle preferred address. */ | 
					
						
							|  |  |  |                 QUIC_PREFERRED_ADDR pfa; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 /*
 | 
					
						
							|  |  |  |                  * RFC 9000 s. 18.2: "A server that chooses a zero-length | 
					
						
							|  |  |  |                  * connection ID MUST NOT provide a preferred address. | 
					
						
							|  |  |  |                  * Similarly, a server MUST NOT include a zero-length connection | 
					
						
							|  |  |  |                  * ID in this transport parameter. A client MUST treat a | 
					
						
							|  |  |  |                  * violation of these requirements as a connection error of type | 
					
						
							|  |  |  |                  * TRANSPORT_PARAMETER_ERROR." | 
					
						
							|  |  |  |                  */ | 
					
						
							|  |  |  |                 if (ch->is_server) { | 
					
						
							|  |  |  |                     reason = TP_REASON_SERVER_ONLY("PREFERRED_ADDR"); | 
					
						
							|  |  |  |                     goto malformed; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 if (ch->cur_remote_dcid.id_len == 0) { | 
					
						
							|  |  |  |                     reason = "PREFERRED_ADDR provided for zero-length CID"; | 
					
						
							|  |  |  |                     goto malformed; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 if (!ossl_quic_wire_decode_transport_param_preferred_addr(&pkt, &pfa)) { | 
					
						
							|  |  |  |                     reason = TP_REASON_MALFORMED("PREFERRED_ADDR"); | 
					
						
							|  |  |  |                     goto malformed; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 if (pfa.cid.id_len == 0) { | 
					
						
							|  |  |  |                     reason = "zero-length CID in PREFERRED_ADDR"; | 
					
						
							|  |  |  |                     goto malformed; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         case QUIC_TPARAM_DISABLE_ACTIVE_MIGRATION: | 
					
						
							|  |  |  |             /* We do not currently handle migration, so nothing to do. */ | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:10 +08:00
										 |  |  |             if (got_disable_active_migration) { | 
					
						
							|  |  |  |                 /* must not appear more than once */ | 
					
						
							|  |  |  |                 reason = TP_REASON_DUP("DISABLE_ACTIVE_MIGRATION"); | 
					
						
							|  |  |  |                 goto malformed; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             body = ossl_quic_wire_decode_transport_param_bytes(&pkt, &id, &len); | 
					
						
							|  |  |  |             if (body == NULL || len > 0) { | 
					
						
							|  |  |  |                 reason = TP_REASON_MALFORMED("DISABLE_ACTIVE_MIGRATION"); | 
					
						
							|  |  |  |                 goto malformed; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             got_disable_active_migration = 1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |         default: | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:10 +08:00
										 |  |  |             /*
 | 
					
						
							|  |  |  |              * Skip over and ignore. | 
					
						
							|  |  |  |              * | 
					
						
							|  |  |  |              * RFC 9000 s. 7.4: We SHOULD treat duplicated transport parameters | 
					
						
							|  |  |  |              * as a connection error, but we are not required to. Currently, | 
					
						
							|  |  |  |              * handle this programmatically by checking for duplicates in the | 
					
						
							|  |  |  |              * parameters that we recognise, as above, but don't bother | 
					
						
							|  |  |  |              * maintaining a list of duplicates for anything we don't recognise. | 
					
						
							|  |  |  |              */ | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |             body = ossl_quic_wire_decode_transport_param_bytes(&pkt, &id, | 
					
						
							|  |  |  |                                                                &len); | 
					
						
							|  |  |  |             if (body == NULL) | 
					
						
							|  |  |  |                 goto malformed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |     if (!got_initial_scid) { | 
					
						
							|  |  |  |         reason = TP_REASON_REQUIRED("INITIAL_SCID"); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         goto malformed; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ch->is_server) { | 
					
						
							|  |  |  |         if (!got_orig_dcid) { | 
					
						
							|  |  |  |             reason = TP_REASON_REQUIRED("ORIG_DCID"); | 
					
						
							|  |  |  |             goto malformed; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (ch->doing_retry && !got_retry_scid) { | 
					
						
							|  |  |  |             reason = TP_REASON_REQUIRED("RETRY_SCID"); | 
					
						
							|  |  |  |             goto malformed; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ch->got_remote_transport_params = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (got_initial_max_data || got_initial_max_stream_data_bidi_remote | 
					
						
							|  |  |  |         || got_initial_max_streams_bidi || got_initial_max_streams_uni) | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * If FC credit was bumped, we may now be able to send. Update all | 
					
						
							|  |  |  |          * streams. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         ossl_quic_stream_map_visit(&ch->qsm, do_update, ch); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* If we are a server, we now generate our own transport parameters. */ | 
					
						
							|  |  |  |     if (ch->is_server && !ch_generate_transport_params(ch)) { | 
					
						
							|  |  |  |         ossl_quic_channel_raise_protocol_error(ch, QUIC_ERR_INTERNAL_ERROR, 0, | 
					
						
							|  |  |  |                                                "internal error"); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | malformed: | 
					
						
							|  |  |  |     ossl_quic_channel_raise_protocol_error(ch, QUIC_ERR_TRANSPORT_PARAMETER_ERROR, | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |                                            0, reason); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Called when we want to generate transport parameters. This is called | 
					
						
							|  |  |  |  * immediately at instantiation time for a client and after we receive the | 
					
						
							|  |  |  |  * client's transport parameters for a server. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int ch_generate_transport_params(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ok = 0; | 
					
						
							|  |  |  |     BUF_MEM *buf_mem = NULL; | 
					
						
							|  |  |  |     WPACKET wpkt; | 
					
						
							|  |  |  |     int wpkt_valid = 0; | 
					
						
							|  |  |  |     size_t buf_len = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ch->local_transport_params != NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((buf_mem = BUF_MEM_new()) == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!WPACKET_init(&wpkt, buf_mem)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     wpkt_valid = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ossl_quic_wire_encode_transport_param_bytes(&wpkt, QUIC_TPARAM_DISABLE_ACTIVE_MIGRATION, | 
					
						
							|  |  |  |                                                     NULL, 0) == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |     if (ch->is_server) { | 
					
						
							|  |  |  |         if (!ossl_quic_wire_encode_transport_param_cid(&wpkt, QUIC_TPARAM_ORIG_DCID, | 
					
						
							|  |  |  |                                                        &ch->init_dcid)) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!ossl_quic_wire_encode_transport_param_cid(&wpkt, QUIC_TPARAM_INITIAL_SCID, | 
					
						
							| 
									
										
										
										
											2023-05-11 19:49:51 +08:00
										 |  |  |                                                        &ch->cur_local_cid)) | 
					
						
							| 
									
										
										
										
											2022-11-22 21:35:04 +08:00
										 |  |  |             goto err; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         /* Client always uses an empty SCID. */ | 
					
						
							|  |  |  |         if (ossl_quic_wire_encode_transport_param_bytes(&wpkt, QUIC_TPARAM_INITIAL_SCID, | 
					
						
							|  |  |  |                                                         NULL, 0) == NULL) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_quic_wire_encode_transport_param_int(&wpkt, QUIC_TPARAM_MAX_IDLE_TIMEOUT, | 
					
						
							|  |  |  |                                                    ch->max_idle_timeout)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_quic_wire_encode_transport_param_int(&wpkt, QUIC_TPARAM_MAX_UDP_PAYLOAD_SIZE, | 
					
						
							|  |  |  |                                                    QUIC_MIN_INITIAL_DGRAM_LEN)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_quic_wire_encode_transport_param_int(&wpkt, QUIC_TPARAM_ACTIVE_CONN_ID_LIMIT, | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:12 +08:00
										 |  |  |                                                    QUIC_MIN_ACTIVE_CONN_ID_LIMIT)) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-03 22:45:25 +08:00
										 |  |  |     if (ch->tx_max_ack_delay != QUIC_DEFAULT_MAX_ACK_DELAY | 
					
						
							|  |  |  |         && !ossl_quic_wire_encode_transport_param_int(&wpkt, QUIC_TPARAM_MAX_ACK_DELAY, | 
					
						
							|  |  |  |                                                       ch->tx_max_ack_delay)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     if (!ossl_quic_wire_encode_transport_param_int(&wpkt, QUIC_TPARAM_INITIAL_MAX_DATA, | 
					
						
							|  |  |  |                                                    ossl_quic_rxfc_get_cwm(&ch->conn_rxfc))) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |     /* Send the default CWM for a new RXFC. */ | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     if (!ossl_quic_wire_encode_transport_param_int(&wpkt, QUIC_TPARAM_INITIAL_MAX_STREAM_DATA_BIDI_LOCAL, | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |                                                    ch->tx_init_max_stream_data_bidi_local)) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_quic_wire_encode_transport_param_int(&wpkt, QUIC_TPARAM_INITIAL_MAX_STREAM_DATA_BIDI_REMOTE, | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |                                                    ch->tx_init_max_stream_data_bidi_remote)) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_quic_wire_encode_transport_param_int(&wpkt, QUIC_TPARAM_INITIAL_MAX_STREAM_DATA_UNI, | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |                                                    ch->tx_init_max_stream_data_uni)) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_quic_wire_encode_transport_param_int(&wpkt, QUIC_TPARAM_INITIAL_MAX_STREAMS_BIDI, | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:55 +08:00
										 |  |  |                                                    ossl_quic_rxfc_get_cwm(&ch->max_streams_bidi_rxfc))) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_quic_wire_encode_transport_param_int(&wpkt, QUIC_TPARAM_INITIAL_MAX_STREAMS_UNI, | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:55 +08:00
										 |  |  |                                                    ossl_quic_rxfc_get_cwm(&ch->max_streams_uni_rxfc))) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-05 22:51:28 +08:00
										 |  |  |     if (!WPACKET_finish(&wpkt)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     wpkt_valid = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     if (!WPACKET_get_total_written(&wpkt, &buf_len)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ch->local_transport_params = (unsigned char *)buf_mem->data; | 
					
						
							|  |  |  |     buf_mem->data = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-18 20:38:50 +08:00
										 |  |  |     if (!ossl_quic_tls_set_transport_params(ch->qtls, ch->local_transport_params, | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |                                             buf_len)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ok = 1; | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  |     if (wpkt_valid) | 
					
						
							|  |  |  |         WPACKET_cleanup(&wpkt); | 
					
						
							|  |  |  |     BUF_MEM_free(buf_mem); | 
					
						
							|  |  |  |     return ok; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * QUIC Channel: Ticker-Mutator | 
					
						
							|  |  |  |  * ============================ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * The central ticker function called by the reactor. This does everything, or | 
					
						
							|  |  |  |  * at least everything network I/O related. Best effort - not allowed to fail | 
					
						
							|  |  |  |  * "loudly". | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  | static void ch_tick(QUIC_TICK_RESULT *res, void *arg, uint32_t flags) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     OSSL_TIME now, deadline; | 
					
						
							|  |  |  |     QUIC_CHANNEL *ch = arg; | 
					
						
							| 
									
										
										
										
											2023-03-21 23:19:34 +08:00
										 |  |  |     int channel_only = (flags & QUIC_REACTOR_TICK_FLAG_CHANNEL_ONLY) != 0; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * When we tick the QUIC connection, we do everything we need to do | 
					
						
							|  |  |  |      * periodically. In order, we: | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      *   - handle any incoming data from the network; | 
					
						
							|  |  |  |      *   - handle any timer events which are due to fire (ACKM, etc.) | 
					
						
							|  |  |  |      *   - write any data to the network due to be sent, to the extent | 
					
						
							|  |  |  |      *     possible; | 
					
						
							|  |  |  |      *   - determine the time at which we should next be ticked. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* If we are in the TERMINATED state, there is nothing to do. */ | 
					
						
							| 
									
										
										
										
											2023-02-06 23:34:05 +08:00
										 |  |  |     if (ossl_quic_channel_is_terminated(ch)) { | 
					
						
							| 
									
										
										
										
											2023-01-09 23:48:25 +08:00
										 |  |  |         res->net_read_desired   = 0; | 
					
						
							|  |  |  |         res->net_write_desired  = 0; | 
					
						
							|  |  |  |         res->tick_deadline      = ossl_time_infinite(); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * If we are in the TERMINATING state, check if the terminating timer has | 
					
						
							|  |  |  |      * expired. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-02-06 23:34:05 +08:00
										 |  |  |     if (ossl_quic_channel_is_terminating(ch)) { | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  |         now = get_time(ch); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (ossl_time_compare(now, ch->terminate_deadline) >= 0) { | 
					
						
							|  |  |  |             ch_on_terminating_timeout(ch); | 
					
						
							| 
									
										
										
										
											2023-01-09 23:48:25 +08:00
										 |  |  |             res->net_read_desired   = 0; | 
					
						
							|  |  |  |             res->net_write_desired  = 0; | 
					
						
							|  |  |  |             res->tick_deadline      = ossl_time_infinite(); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |             return; /* abort normal processing, nothing to do */ | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  |     /* Handle RXKU timeouts. */ | 
					
						
							|  |  |  |     ch_rxku_tick(ch); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-23 01:56:18 +08:00
										 |  |  |     /* Handle any incoming data from network. */ | 
					
						
							|  |  |  |     ch_rx_pre(ch); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-19 01:25:25 +08:00
										 |  |  |     do { | 
					
						
							| 
									
										
										
										
											2022-11-23 01:56:18 +08:00
										 |  |  |         /* Process queued incoming packets. */ | 
					
						
							| 
									
										
										
										
											2022-11-19 01:25:25 +08:00
										 |  |  |         ch_rx(ch); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-19 01:25:25 +08:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * Allow the handshake layer to check for any new incoming data and generate | 
					
						
							|  |  |  |          * new outgoing data. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2022-11-22 21:46:05 +08:00
										 |  |  |         ch->have_new_rx_secret = 0; | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  |         if (!channel_only) | 
					
						
							|  |  |  |             ossl_quic_tls_tick(ch->qtls); | 
					
						
							| 
									
										
										
										
											2022-11-19 01:25:25 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * If the handshake layer gave us a new secret, we need to do RX again | 
					
						
							|  |  |  |          * because packets that were not previously processable and were | 
					
						
							|  |  |  |          * deferred might now be processable. | 
					
						
							| 
									
										
										
										
											2023-01-04 15:24:08 +08:00
										 |  |  |          * | 
					
						
							|  |  |  |          * TODO(QUIC): Consider handling this in the yield_secret callback. | 
					
						
							| 
									
										
										
										
											2022-11-19 01:25:25 +08:00
										 |  |  |          */ | 
					
						
							| 
									
										
										
										
											2022-11-22 21:46:05 +08:00
										 |  |  |     } while (ch->have_new_rx_secret); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Handle any timer events which are due to fire; namely, the loss detection | 
					
						
							|  |  |  |      * deadline and the idle timeout. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * ACKM ACK generation deadline is polled by TXP, so we don't need to handle | 
					
						
							|  |  |  |      * it here. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  |     now = get_time(ch); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     if (ossl_time_compare(now, ch->idle_deadline) >= 0) { | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Idle timeout differs from normal protocol violation because we do not | 
					
						
							|  |  |  |          * send a CONN_CLOSE frame; go straight to TERMINATED. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         ch_on_idle_timeout(ch); | 
					
						
							| 
									
										
										
										
											2023-01-09 23:48:25 +08:00
										 |  |  |         res->net_read_desired   = 0; | 
					
						
							|  |  |  |         res->net_write_desired  = 0; | 
					
						
							|  |  |  |         res->tick_deadline      = ossl_time_infinite(); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     deadline = ossl_ackm_get_loss_detection_deadline(ch->ackm); | 
					
						
							|  |  |  |     if (!ossl_time_is_zero(deadline) && ossl_time_compare(now, deadline) >= 0) | 
					
						
							|  |  |  |         ossl_ackm_on_timeout(ch->ackm); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  |     /* If a ping is due, inform TXP. */ | 
					
						
							|  |  |  |     if (ossl_time_compare(now, ch->ping_deadline) >= 0) { | 
					
						
							|  |  |  |         int pn_space = ossl_quic_enc_level_to_pn_space(ch->tx_enc_level); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ossl_quic_tx_packetiser_schedule_ack_eliciting(ch->txp, pn_space); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     /* Write any data to the network due to be sent. */ | 
					
						
							|  |  |  |     ch_tx(ch); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:56 +08:00
										 |  |  |     /* Do stream GC. */ | 
					
						
							|  |  |  |     ossl_quic_stream_map_gc(&ch->qsm); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     /* Determine the time at which we should next be ticked. */ | 
					
						
							|  |  |  |     res->tick_deadline = ch_determine_next_tick_deadline(ch); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Always process network input unless we are now terminated. | 
					
						
							|  |  |  |      * Although we had not terminated at the beginning of this tick, network | 
					
						
							|  |  |  |      * errors in ch_rx_pre() or ch_tx() may have caused us to transition to the | 
					
						
							|  |  |  |      * Terminated state. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-02-06 23:34:05 +08:00
										 |  |  |     res->net_read_desired = !ossl_quic_channel_is_terminated(ch); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* We want to write to the network if we have any in our queue. */ | 
					
						
							| 
									
										
										
										
											2023-01-09 23:48:25 +08:00
										 |  |  |     res->net_write_desired | 
					
						
							| 
									
										
										
										
											2023-02-06 23:34:05 +08:00
										 |  |  |         = (!ossl_quic_channel_is_terminated(ch) | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  |            && ossl_qtx_get_queue_len_datagrams(ch->qtx) > 0); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-23 01:56:18 +08:00
										 |  |  | /* Process incoming datagrams, if any. */ | 
					
						
							|  |  |  | static void ch_rx_pre(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  |     int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  |     if (!ch->is_server && !ch->have_sent_any_pkt) | 
					
						
							| 
									
										
										
										
											2022-11-23 01:56:18 +08:00
										 |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Get DEMUX to BIO_recvmmsg from the network and queue incoming datagrams | 
					
						
							|  |  |  |      * to the appropriate QRX instance. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  |     ret = ossl_quic_demux_pump(ch->demux); | 
					
						
							|  |  |  |     if (ret == QUIC_DEMUX_PUMP_RES_PERMANENT_FAIL) | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * We don't care about transient failure, but permanent failure means we | 
					
						
							|  |  |  |          * should tear down the connection as though a protocol violation | 
					
						
							|  |  |  |          * occurred. Skip straight to the Terminating state as there is no point | 
					
						
							|  |  |  |          * trying to send CONNECTION_CLOSE frames if the network BIO is not | 
					
						
							|  |  |  |          * operating correctly. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         ch_raise_net_error(ch); | 
					
						
							| 
									
										
										
										
											2022-11-23 01:56:18 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  | /* Check incoming forged packet limit and terminate connection if needed. */ | 
					
						
							|  |  |  | static void ch_rx_check_forged_pkt_limit(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t enc_level; | 
					
						
							|  |  |  |     uint64_t limit = UINT64_MAX, l; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (enc_level = QUIC_ENC_LEVEL_INITIAL; | 
					
						
							|  |  |  |          enc_level < QUIC_ENC_LEVEL_NUM; | 
					
						
							|  |  |  |          ++enc_level) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Different ELs can have different AEADs which can in turn impose | 
					
						
							|  |  |  |          * different limits, so use the lowest value of any currently valid EL. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if ((ch->el_discarded & (1U << enc_level)) != 0) | 
					
						
							|  |  |  |             continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (enc_level > ch->rx_enc_level) | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         l = ossl_qrx_get_max_forged_pkt_count(ch->qrx, enc_level); | 
					
						
							|  |  |  |         if (l < limit) | 
					
						
							|  |  |  |             limit = l; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ossl_qrx_get_cur_forged_pkt_count(ch->qrx) < limit) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ossl_quic_channel_raise_protocol_error(ch, QUIC_ERR_AEAD_LIMIT_REACHED, 0, | 
					
						
							|  |  |  |                                            "forgery limit"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-23 01:56:18 +08:00
										 |  |  | /* Process queued incoming packets and handle frames, if any. */ | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | static int ch_rx(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int handled_any = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  |     if (!ch->is_server && !ch->have_sent_any_pkt) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * We have not sent anything yet, therefore there is no need to check | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |          * for incoming data. | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |          */ | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (;;) { | 
					
						
							|  |  |  |         assert(ch->qrx_pkt == NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!ossl_qrx_read_pkt(ch->qrx, &ch->qrx_pkt)) | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!handled_any) | 
					
						
							|  |  |  |             ch_update_idle(ch); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ch_rx_handle_packet(ch); /* best effort */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Regardless of the outcome of frame handling, unref the packet. | 
					
						
							|  |  |  |          * This will free the packet unless something added another | 
					
						
							|  |  |  |          * reference to it during frame processing. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         ossl_qrx_pkt_release(ch->qrx_pkt); | 
					
						
							|  |  |  |         ch->qrx_pkt = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  |         ch->have_sent_ack_eliciting_since_rx = 0; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         handled_any = 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  |     ch_rx_check_forged_pkt_limit(ch); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * When in TERMINATING - CLOSING, generate a CONN_CLOSE frame whenever we | 
					
						
							|  |  |  |      * process one or more incoming packets. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (handled_any && ch->state == QUIC_CHANNEL_STATE_TERMINATING_CLOSING) | 
					
						
							|  |  |  |         ch->conn_close_queued = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:12 +08:00
										 |  |  | static int bio_addr_eq(const BIO_ADDR *a, const BIO_ADDR *b) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (BIO_ADDR_family(a) != BIO_ADDR_family(b)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (BIO_ADDR_family(a)) { | 
					
						
							|  |  |  |         case AF_INET: | 
					
						
							|  |  |  |             return !memcmp(&a->s_in.sin_addr, | 
					
						
							|  |  |  |                            &b->s_in.sin_addr, | 
					
						
							|  |  |  |                            sizeof(a->s_in.sin_addr)) | 
					
						
							|  |  |  |                 && a->s_in.sin_port == b->s_in.sin_port; | 
					
						
							| 
									
										
										
										
											2023-07-19 19:59:36 +08:00
										 |  |  | #if OPENSSL_USE_IPV6
 | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:12 +08:00
										 |  |  |         case AF_INET6: | 
					
						
							|  |  |  |             return !memcmp(&a->s_in6.sin6_addr, | 
					
						
							|  |  |  |                            &b->s_in6.sin6_addr, | 
					
						
							|  |  |  |                            sizeof(a->s_in6.sin6_addr)) | 
					
						
							|  |  |  |                 && a->s_in6.sin6_port == b->s_in6.sin6_port; | 
					
						
							| 
									
										
										
										
											2023-07-19 19:59:36 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:12 +08:00
										 |  |  |         default: | 
					
						
							|  |  |  |             return 0; /* not supported */ | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | /* Handles the packet currently in ch->qrx_pkt->hdr. */ | 
					
						
							|  |  |  | static void ch_rx_handle_packet(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint32_t enc_level; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert(ch->qrx_pkt != NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:12 +08:00
										 |  |  |     if (!ossl_quic_channel_is_active(ch)) | 
					
						
							|  |  |  |         /* Do not process packets once we are terminating. */ | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     if (ossl_quic_pkt_type_is_encrypted(ch->qrx_pkt->hdr->type)) { | 
					
						
							|  |  |  |         if (!ch->have_received_enc_pkt) { | 
					
						
							| 
									
										
										
										
											2023-05-05 22:51:28 +08:00
										 |  |  |             ch->cur_remote_dcid = ch->init_scid = ch->qrx_pkt->hdr->src_conn_id; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |             ch->have_received_enc_pkt = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /*
 | 
					
						
							|  |  |  |              * We change to using the SCID in the first Initial packet as the | 
					
						
							|  |  |  |              * DCID. | 
					
						
							|  |  |  |              */ | 
					
						
							|  |  |  |             ossl_quic_tx_packetiser_set_cur_dcid(ch->txp, &ch->init_scid); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         enc_level = ossl_quic_pkt_type_to_enc_level(ch->qrx_pkt->hdr->type); | 
					
						
							|  |  |  |         if ((ch->el_discarded & (1U << enc_level)) != 0) | 
					
						
							|  |  |  |             /* Do not process packets from ELs we have already discarded. */ | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:12 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * RFC 9000 s. 9.6: "If a client receives packets from a new server address | 
					
						
							|  |  |  |      * when the client has not initiated a migration to that address, the client | 
					
						
							|  |  |  |      * SHOULD discard these packets." | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * We need to be a bit careful here as due to the BIO abstraction layer an | 
					
						
							|  |  |  |      * application is liable to be weird and lie to us about peer addresses. | 
					
						
							| 
									
										
										
										
											2023-07-03 20:15:12 +08:00
										 |  |  |      * Only apply this check if we actually are using a real AF_INET or AF_INET6 | 
					
						
							|  |  |  |      * address. | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:12 +08:00
										 |  |  |      */ | 
					
						
							|  |  |  |     if (!ch->is_server | 
					
						
							|  |  |  |         && ch->qrx_pkt->peer != NULL | 
					
						
							| 
									
										
										
										
											2023-07-19 19:59:36 +08:00
										 |  |  |         && ( | 
					
						
							|  |  |  |                BIO_ADDR_family(&ch->cur_peer_addr) == AF_INET | 
					
						
							|  |  |  | #if OPENSSL_USE_IPV6
 | 
					
						
							|  |  |  |             || BIO_ADDR_family(&ch->cur_peer_addr) == AF_INET6 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:12 +08:00
										 |  |  |         && !bio_addr_eq(ch->qrx_pkt->peer, &ch->cur_peer_addr)) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:10 +08:00
										 |  |  |     if (!ch->is_server | 
					
						
							|  |  |  |         && ch->have_received_enc_pkt | 
					
						
							|  |  |  |         && ossl_quic_pkt_type_has_scid(ch->qrx_pkt->hdr->type)) { | 
					
						
							|  |  |  |         /*
 | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:12 +08:00
										 |  |  |          * RFC 9000 s. 7.2: "Once a client has received a valid Initial packet | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:10 +08:00
										 |  |  |          * from the server, it MUST discard any subsequent packet it receives on | 
					
						
							|  |  |  |          * that connection with a different SCID." | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if (!ossl_quic_conn_id_eq(&ch->qrx_pkt->hdr->src_conn_id, | 
					
						
							|  |  |  |                                   &ch->init_scid)) | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ossl_quic_pkt_type_has_version(ch->qrx_pkt->hdr->type) | 
					
						
							|  |  |  |         && ch->qrx_pkt->hdr->version != QUIC_VERSION_1) | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * RFC 9000 s. 5.2.1: If a client receives a packet that uses a | 
					
						
							|  |  |  |          * different version than it initially selected, it MUST discard the | 
					
						
							|  |  |  |          * packet. We only ever use v1, so require it. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:11 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * RFC 9000 s. 17.2: "An endpoint MUST treat receipt of a packet that has a | 
					
						
							|  |  |  |      * non-zero value for [the reserved bits] after removing both packet and | 
					
						
							|  |  |  |      * header protection as a connection error of type PROTOCOL_VIOLATION." | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (ossl_quic_pkt_type_is_encrypted(ch->qrx_pkt->hdr->type) | 
					
						
							|  |  |  |         && ch->qrx_pkt->hdr->reserved != 0) { | 
					
						
							|  |  |  |         ossl_quic_channel_raise_protocol_error(ch, QUIC_ERR_PROTOCOL_VIOLATION, | 
					
						
							|  |  |  |                                                0, "packet header reserved bits"); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     /* Handle incoming packet. */ | 
					
						
							|  |  |  |     switch (ch->qrx_pkt->hdr->type) { | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |     case QUIC_PKT_TYPE_RETRY: | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  |         if (ch->doing_retry || ch->is_server) | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |             /*
 | 
					
						
							|  |  |  |              * It is not allowed to ask a client to do a retry more than | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  |              * once. Clients may not send retries. | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |              */ | 
					
						
							|  |  |  |             return; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |         if (ch->qrx_pkt->hdr->len <= QUIC_RETRY_INTEGRITY_TAG_LEN) | 
					
						
							|  |  |  |             /* Packets with zero-length Retry Tokens are invalid. */ | 
					
						
							|  |  |  |             return; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * TODO(QUIC): Theoretically this should probably be in the QRX. | 
					
						
							|  |  |  |          * However because validation is dependent on context (namely the | 
					
						
							|  |  |  |          * client's initial DCID) we can't do this cleanly. In the future we | 
					
						
							|  |  |  |          * should probably add a callback to the QRX to let it call us (via | 
					
						
							|  |  |  |          * the DEMUX) and ask us about the correct original DCID, rather | 
					
						
							|  |  |  |          * than allow the QRX to emit a potentially malformed packet to the | 
					
						
							|  |  |  |          * upper layers. However, special casing this will do for now. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if (!ossl_quic_validate_retry_integrity_tag(ch->libctx, | 
					
						
							|  |  |  |                                                     ch->propq, | 
					
						
							|  |  |  |                                                     ch->qrx_pkt->hdr, | 
					
						
							|  |  |  |                                                     &ch->init_dcid)) | 
					
						
							|  |  |  |             /* Malformed retry packet, ignore. */ | 
					
						
							|  |  |  |             return; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |         ch_retry(ch, ch->qrx_pkt->hdr->data, | 
					
						
							|  |  |  |                  ch->qrx_pkt->hdr->len - QUIC_RETRY_INTEGRITY_TAG_LEN, | 
					
						
							|  |  |  |                  &ch->qrx_pkt->hdr->src_conn_id); | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |     case QUIC_PKT_TYPE_0RTT: | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  |         if (!ch->is_server) | 
					
						
							|  |  |  |             /* Clients should never receive 0-RTT packets. */ | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * TODO(QUIC): Implement 0-RTT on the server side. We currently do | 
					
						
							|  |  |  |          * not need to implement this as a client can only do 0-RTT if we | 
					
						
							|  |  |  |          * have given it permission to in a previous session. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  |     case QUIC_PKT_TYPE_INITIAL: | 
					
						
							|  |  |  |     case QUIC_PKT_TYPE_HANDSHAKE: | 
					
						
							|  |  |  |     case QUIC_PKT_TYPE_1RTT: | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |         if (ch->qrx_pkt->hdr->type == QUIC_PKT_TYPE_HANDSHAKE) | 
					
						
							|  |  |  |             /*
 | 
					
						
							|  |  |  |              * We automatically drop INITIAL EL keys when first successfully | 
					
						
							|  |  |  |              * decrypting a HANDSHAKE packet, as per the RFC. | 
					
						
							|  |  |  |              */ | 
					
						
							|  |  |  |             ch_discard_el(ch, QUIC_ENC_LEVEL_INITIAL); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  |         if (ch->rxku_in_progress | 
					
						
							|  |  |  |             && ch->qrx_pkt->hdr->type == QUIC_PKT_TYPE_1RTT | 
					
						
							|  |  |  |             && ch->qrx_pkt->pn >= ch->rxku_trigger_pn | 
					
						
							|  |  |  |             && ch->qrx_pkt->key_epoch < ossl_qrx_get_key_epoch(ch->qrx)) { | 
					
						
							|  |  |  |             /*
 | 
					
						
							|  |  |  |              * RFC 9001 s. 6.4: Packets with higher packet numbers MUST be | 
					
						
							|  |  |  |              * protected with either the same or newer packet protection keys | 
					
						
							|  |  |  |              * than packets with lower packet numbers. An endpoint that | 
					
						
							|  |  |  |              * successfully removes protection with old keys when newer keys | 
					
						
							|  |  |  |              * were used for packets with lower packet numbers MUST treat this | 
					
						
							|  |  |  |              * as a connection error of type KEY_UPDATE_ERROR. | 
					
						
							|  |  |  |              */ | 
					
						
							|  |  |  |             ossl_quic_channel_raise_protocol_error(ch, QUIC_ERR_KEY_UPDATE_ERROR, | 
					
						
							|  |  |  |                                                    0, "new packet with old keys"); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:11 +08:00
										 |  |  |         if (!ch->is_server | 
					
						
							|  |  |  |             && ch->qrx_pkt->hdr->type == QUIC_PKT_TYPE_INITIAL | 
					
						
							|  |  |  |             && ch->qrx_pkt->hdr->token_len > 0) { | 
					
						
							|  |  |  |             /*
 | 
					
						
							|  |  |  |              * RFC 9000 s. 17.2.2: Clients that receive an Initial packet with a | 
					
						
							|  |  |  |              * non-zero Token Length field MUST either discard the packet or | 
					
						
							|  |  |  |              * generate a connection error of type PROTOCOL_VIOLATION. | 
					
						
							|  |  |  |              */ | 
					
						
							|  |  |  |             ossl_quic_channel_raise_protocol_error(ch, QUIC_ERR_PROTOCOL_VIOLATION, | 
					
						
							|  |  |  |                                                    0, "client received initial token"); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |         /* This packet contains frames, pass to the RXDP. */ | 
					
						
							|  |  |  |         ossl_quic_handle_frames(ch, ch->qrx_pkt); /* best effort */ | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         assert(0); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * This is called by the demux when we get a packet not destined for any known | 
					
						
							|  |  |  |  * DCID. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void ch_default_packet_handler(QUIC_URXE *e, void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QUIC_CHANNEL *ch = arg; | 
					
						
							|  |  |  |     PACKET pkt; | 
					
						
							|  |  |  |     QUIC_PKT_HDR hdr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_assert(ch->is_server)) | 
					
						
							|  |  |  |         goto undesirable; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * We only support one connection to our server currently, so if we already | 
					
						
							|  |  |  |      * started one, ignore any new connection attempts. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (ch->state != QUIC_CHANNEL_STATE_IDLE) | 
					
						
							|  |  |  |         goto undesirable; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * We have got a packet for an unknown DCID. This might be an attempt to | 
					
						
							|  |  |  |      * open a new connection. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (e->data_len < QUIC_MIN_INITIAL_DGRAM_LEN) | 
					
						
							|  |  |  |         goto undesirable; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PACKET_buf_init(&pkt, ossl_quic_urxe_data(e), e->data_len)) | 
					
						
							| 
									
										
										
										
											2023-01-18 19:07:58 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * We set short_conn_id_len to SIZE_MAX here which will cause the decode | 
					
						
							|  |  |  |      * operation to fail if we get a 1-RTT packet. This is fine since we only | 
					
						
							|  |  |  |      * care about Initial packets. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-05-05 23:51:43 +08:00
										 |  |  |     if (!ossl_quic_wire_decode_pkt_hdr(&pkt, SIZE_MAX, 1, 0, &hdr, NULL)) | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  |         goto undesirable; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (hdr.version) { | 
					
						
							|  |  |  |         case QUIC_VERSION_1: | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         case QUIC_VERSION_NONE: | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             /* Unknown version or proactive version negotiation request, bail. */ | 
					
						
							|  |  |  |             /* TODO(QUIC): Handle version negotiation on server side */ | 
					
						
							|  |  |  |             goto undesirable; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * We only care about Initial packets which might be trying to establish a | 
					
						
							|  |  |  |      * connection. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (hdr.type != QUIC_PKT_TYPE_INITIAL) | 
					
						
							|  |  |  |         goto undesirable; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Assume this is a valid attempt to initiate a connection. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * We do not register the DCID in the initial packet we received and that | 
					
						
							|  |  |  |      * DCID is not actually used again, thus after provisioning the correct | 
					
						
							|  |  |  |      * Initial keys derived from it (which is done in the call below) we pass | 
					
						
							|  |  |  |      * the received packet directly to the QRX so that it can process it as a | 
					
						
							|  |  |  |      * one-time thing, instead of going through the usual DEMUX DCID-based | 
					
						
							|  |  |  |      * routing. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (!ch_server_on_new_conn(ch, &e->peer, | 
					
						
							|  |  |  |                                &hdr.src_conn_id, | 
					
						
							|  |  |  |                                &hdr.dst_conn_id)) | 
					
						
							| 
									
										
										
										
											2023-01-18 19:07:58 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ossl_qrx_inject_urxe(ch->qrx, e); | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-18 19:07:58 +08:00
										 |  |  | err: | 
					
						
							|  |  |  |     ossl_quic_channel_raise_protocol_error(ch, QUIC_ERR_INTERNAL_ERROR, 0, | 
					
						
							|  |  |  |                                            "internal error"); | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  | undesirable: | 
					
						
							|  |  |  |     ossl_quic_demux_release_urxe(ch->demux, e); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Try to generate packets and if possible, flush them to the network. */ | 
					
						
							|  |  |  | static int ch_tx(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:05 +08:00
										 |  |  |     QUIC_TXP_STATUS status; | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     if (ch->state == QUIC_CHANNEL_STATE_TERMINATING_CLOSING) { | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * While closing, only send CONN_CLOSE if we've received more traffic | 
					
						
							|  |  |  |          * from the peer. Once we tell the TXP to generate CONN_CLOSE, all | 
					
						
							|  |  |  |          * future calls to it generate CONN_CLOSE frames, so otherwise we would | 
					
						
							|  |  |  |          * just constantly generate CONN_CLOSE frames. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if (!ch->conn_close_queued) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ch->conn_close_queued = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  |     /* Do TXKU if we need to. */ | 
					
						
							|  |  |  |     ch_maybe_trigger_spontaneous_txku(ch); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ch->rxku_pending_confirm_done = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Send a packet, if we need to. Best effort. The TXP consults the CC and | 
					
						
							|  |  |  |      * applies any limitations imposed by it, so we don't need to do it here. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Best effort. In particular if TXP fails for some reason we should still | 
					
						
							|  |  |  |      * flush any queued packets which we already generated. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-07-13 18:36:24 +08:00
										 |  |  |     switch (ossl_quic_tx_packetiser_generate(ch->txp, &status)) { | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  |     case TX_PACKETISER_RES_SENT_PKT: | 
					
						
							|  |  |  |         ch->have_sent_any_pkt = 1; /* Packet was sent */ | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * RFC 9000 s. 10.1. 'An endpoint also restarts its idle timer when | 
					
						
							|  |  |  |          * sending an ack-eliciting packet if no other ack-eliciting packets | 
					
						
							| 
									
										
										
										
											2023-02-23 13:02:29 +08:00
										 |  |  |          * have been sent since last receiving and processing a packet.' | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:05 +08:00
										 |  |  |         if (status.sent_ack_eliciting && !ch->have_sent_ack_eliciting_since_rx) { | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  |             ch_update_idle(ch); | 
					
						
							|  |  |  |             ch->have_sent_ack_eliciting_since_rx = 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  |         if (ch->rxku_pending_confirm_done) | 
					
						
							|  |  |  |             ch->rxku_pending_confirm = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  |         ch_update_ping_deadline(ch); | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  |     case TX_PACKETISER_RES_NO_PKT: | 
					
						
							|  |  |  |         break; /* No packet was sent */ | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:11 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  |     default: | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:11 +08:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * One case where TXP can fail is if we reach a TX PN of 2**62 - 1. As | 
					
						
							|  |  |  |          * per RFC 9000 s. 12.3, if this happens we MUST close the connection | 
					
						
							|  |  |  |          * without sending a CONNECTION_CLOSE frame. This is actually handled as | 
					
						
							|  |  |  |          * an emergent consequence of our design, as the TX packetiser will | 
					
						
							|  |  |  |          * never transmit another packet when the TX PN reaches the limit. | 
					
						
							|  |  |  |          * | 
					
						
							|  |  |  |          * Calling the below function terminates the connection; its attempt to | 
					
						
							|  |  |  |          * schedule a CONNECTION_CLOSE frame will not actually cause a packet to | 
					
						
							|  |  |  |          * be transmitted for this reason. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  |         ossl_quic_channel_raise_protocol_error(ch, QUIC_ERR_INTERNAL_ERROR, 0, | 
					
						
							|  |  |  |                                                "internal error"); | 
					
						
							|  |  |  |         break; /* Internal failure (e.g.  allocation, assertion) */ | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Flush packets to network. */ | 
					
						
							|  |  |  |     switch (ossl_qtx_flush_net(ch->qtx)) { | 
					
						
							|  |  |  |     case QTX_FLUSH_NET_RES_OK: | 
					
						
							|  |  |  |     case QTX_FLUSH_NET_RES_TRANSIENT_FAIL: | 
					
						
							|  |  |  |         /* Best effort, done for now. */ | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case QTX_FLUSH_NET_RES_PERMANENT_FAIL: | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         /* Permanent underlying network BIO, start terminating. */ | 
					
						
							|  |  |  |         ch_raise_net_error(ch); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Determine next tick deadline. */ | 
					
						
							|  |  |  | static OSSL_TIME ch_determine_next_tick_deadline(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     OSSL_TIME deadline; | 
					
						
							| 
									
										
										
										
											2023-06-12 23:21:16 +08:00
										 |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-06 23:34:05 +08:00
										 |  |  |     if (ossl_quic_channel_is_terminated(ch)) | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  |         return ossl_time_infinite(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     deadline = ossl_ackm_get_loss_detection_deadline(ch->ackm); | 
					
						
							|  |  |  |     if (ossl_time_is_zero(deadline)) | 
					
						
							|  |  |  |         deadline = ossl_time_infinite(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-12 23:21:16 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * If the CC will let us send acks, check the ack deadline for all | 
					
						
							|  |  |  |      * enc_levels that are actually provisioned | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (ch->cc_method->get_tx_allowance(ch->cc_data) > 0) { | 
					
						
							|  |  |  |         for (i = 0; i < QUIC_ENC_LEVEL_NUM; i++) { | 
					
						
							|  |  |  |             if (ossl_qtx_is_enc_level_provisioned(ch->qtx, i)) { | 
					
						
							|  |  |  |                 deadline = ossl_time_min(deadline, | 
					
						
							|  |  |  |                                          ossl_ackm_get_ack_deadline(ch->ackm, | 
					
						
							|  |  |  |                                                                     ossl_quic_enc_level_to_pn_space(i))); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-13 18:36:24 +08:00
										 |  |  |     /* Apply TXP wakeup deadline. */ | 
					
						
							|  |  |  |     deadline = ossl_time_min(deadline, | 
					
						
							|  |  |  |                              ossl_quic_tx_packetiser_get_deadline(ch->txp)); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Is the terminating timer armed? */ | 
					
						
							| 
									
										
										
										
											2023-02-06 23:34:05 +08:00
										 |  |  |     if (ossl_quic_channel_is_terminating(ch)) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         deadline = ossl_time_min(deadline, | 
					
						
							|  |  |  |                                  ch->terminate_deadline); | 
					
						
							|  |  |  |     else if (!ossl_time_is_infinite(ch->idle_deadline)) | 
					
						
							|  |  |  |         deadline = ossl_time_min(deadline, | 
					
						
							|  |  |  |                                  ch->idle_deadline); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * When do we need to send an ACK-eliciting packet to reset the idle | 
					
						
							|  |  |  |      * deadline timer for the peer? | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (!ossl_time_is_infinite(ch->ping_deadline)) | 
					
						
							|  |  |  |         deadline = ossl_time_min(deadline, | 
					
						
							|  |  |  |                                  ch->ping_deadline); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  |     /* When does the RXKU process complete? */ | 
					
						
							|  |  |  |     if (ch->rxku_in_progress) | 
					
						
							|  |  |  |         deadline = ossl_time_min(deadline, ch->rxku_update_end_deadline); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     return deadline; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * QUIC Channel: Network BIO Configuration | 
					
						
							|  |  |  |  * ======================================= | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Determines whether we can support a given poll descriptor. */ | 
					
						
							|  |  |  | static int validate_poll_descriptor(const BIO_POLL_DESCRIPTOR *d) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (d->type == BIO_POLL_DESCRIPTOR_TYPE_SOCK_FD && d->value.fd < 0) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | BIO *ossl_quic_channel_get_net_rbio(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return ch->net_rbio; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | BIO *ossl_quic_channel_get_net_wbio(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return ch->net_wbio; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-21 15:55:37 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * QUIC_CHANNEL does not ref any BIO it is provided with, nor is any ref | 
					
						
							|  |  |  |  * transferred to it. The caller (i.e., QUIC_CONNECTION) is responsible for | 
					
						
							|  |  |  |  * ensuring the BIO lasts until the channel is freed or the BIO is switched out | 
					
						
							|  |  |  |  * for another BIO by a subsequent successful call to this function. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int ossl_quic_channel_set_net_rbio(QUIC_CHANNEL *ch, BIO *net_rbio) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     BIO_POLL_DESCRIPTOR d = {0}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ch->net_rbio == net_rbio) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (net_rbio != NULL) { | 
					
						
							|  |  |  |         if (!BIO_get_rpoll_descriptor(net_rbio, &d)) | 
					
						
							|  |  |  |             /* Non-pollable BIO */ | 
					
						
							|  |  |  |             d.type = BIO_POLL_DESCRIPTOR_TYPE_NONE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!validate_poll_descriptor(&d)) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ossl_quic_reactor_set_poll_r(&ch->rtor, &d); | 
					
						
							|  |  |  |     ossl_quic_demux_set_bio(ch->demux, net_rbio); | 
					
						
							|  |  |  |     ch->net_rbio = net_rbio; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-21 15:55:37 +08:00
										 |  |  | int ossl_quic_channel_set_net_wbio(QUIC_CHANNEL *ch, BIO *net_wbio) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     BIO_POLL_DESCRIPTOR d = {0}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ch->net_wbio == net_wbio) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (net_wbio != NULL) { | 
					
						
							|  |  |  |         if (!BIO_get_wpoll_descriptor(net_wbio, &d)) | 
					
						
							|  |  |  |             /* Non-pollable BIO */ | 
					
						
							|  |  |  |             d.type = BIO_POLL_DESCRIPTOR_TYPE_NONE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!validate_poll_descriptor(&d)) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ossl_quic_reactor_set_poll_w(&ch->rtor, &d); | 
					
						
							|  |  |  |     ossl_qtx_set_bio(ch->qtx, net_wbio); | 
					
						
							|  |  |  |     ch->net_wbio = net_wbio; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * QUIC Channel: Lifecycle Events | 
					
						
							|  |  |  |  * ============================== | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int ossl_quic_channel_start(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  |     if (ch->is_server) | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * This is not used by the server. The server moves to active | 
					
						
							|  |  |  |          * automatically on receiving an incoming connection. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     if (ch->state != QUIC_CHANNEL_STATE_IDLE) | 
					
						
							|  |  |  |         /* Calls to connect are idempotent */ | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Inform QTX of peer address. */ | 
					
						
							|  |  |  |     if (!ossl_quic_tx_packetiser_set_peer(ch->txp, &ch->cur_peer_addr)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Plug in secrets for the Initial EL. */ | 
					
						
							|  |  |  |     if (!ossl_quic_provide_initial_secret(ch->libctx, | 
					
						
							|  |  |  |                                           ch->propq, | 
					
						
							|  |  |  |                                           &ch->init_dcid, | 
					
						
							| 
									
										
										
										
											2023-01-18 19:07:58 +08:00
										 |  |  |                                           ch->is_server, | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |                                           ch->qrx, ch->qtx)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Change state. */ | 
					
						
							|  |  |  |     ch->state                   = QUIC_CHANNEL_STATE_ACTIVE; | 
					
						
							|  |  |  |     ch->doing_proactive_ver_neg = 0; /* not currently supported */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Handshake layer: start (e.g. send CH). */ | 
					
						
							| 
									
										
										
										
											2022-11-18 20:38:50 +08:00
										 |  |  |     if (!ossl_quic_tls_tick(ch->qtls)) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  |     ossl_quic_reactor_tick(&ch->rtor, 0); /* best effort */ | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Start a locally initiated connection shutdown. */ | 
					
						
							| 
									
										
										
										
											2022-12-13 20:27:05 +08:00
										 |  |  | void ossl_quic_channel_local_close(QUIC_CHANNEL *ch, uint64_t app_error_code) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     QUIC_TERMINATE_CAUSE tcause = {0}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-06 23:34:05 +08:00
										 |  |  |     if (ossl_quic_channel_is_term_any(ch)) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-13 20:27:05 +08:00
										 |  |  |     tcause.app          = 1; | 
					
						
							|  |  |  |     tcause.error_code   = app_error_code; | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  |     ch_start_terminating(ch, &tcause, 0); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void free_token(const unsigned char *buf, size_t buf_len, void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     OPENSSL_free((unsigned char *)buf); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Called when a server asks us to do a retry. */ | 
					
						
							|  |  |  | static int ch_retry(QUIC_CHANNEL *ch, | 
					
						
							|  |  |  |                     const unsigned char *retry_token, | 
					
						
							|  |  |  |                     size_t retry_token_len, | 
					
						
							|  |  |  |                     const QUIC_CONN_ID *retry_scid) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     void *buf; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:11 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * RFC 9000 s. 17.2.5.1: "A client MUST discard a Retry packet that contains | 
					
						
							|  |  |  |      * a SCID field that is identical to the DCID field of its initial packet." | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (ossl_quic_conn_id_eq(&ch->init_dcid, retry_scid)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     /* We change to using the SCID in the Retry packet as the DCID. */ | 
					
						
							|  |  |  |     if (!ossl_quic_tx_packetiser_set_cur_dcid(ch->txp, retry_scid)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Now we retry. We will release the Retry packet immediately, so copy | 
					
						
							|  |  |  |      * the token. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2022-11-30 16:01:58 +08:00
										 |  |  |     if ((buf = OPENSSL_memdup(retry_token, retry_token_len)) == NULL) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ossl_quic_tx_packetiser_set_initial_token(ch->txp, buf, retry_token_len, | 
					
						
							|  |  |  |                                               free_token, NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ch->retry_scid  = *retry_scid; | 
					
						
							|  |  |  |     ch->doing_retry = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * We need to stimulate the Initial EL to generate the first CRYPTO frame | 
					
						
							|  |  |  |      * again. We can do this most cleanly by simply forcing the ACKM to consider | 
					
						
							|  |  |  |      * the first Initial packet as lost, which it effectively was as the server | 
					
						
							|  |  |  |      * hasn't processed it. This also maintains the desired behaviour with e.g. | 
					
						
							|  |  |  |      * PNs not resetting and so on. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * The PN we used initially is always zero, because QUIC does not allow | 
					
						
							|  |  |  |      * repeated retries. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (!ossl_ackm_mark_packet_pseudo_lost(ch->ackm, QUIC_PN_SPACE_INITIAL, | 
					
						
							|  |  |  |                                            /*PN=*/0)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Plug in new secrets for the Initial EL. This is the only time we change | 
					
						
							|  |  |  |      * the secrets for an EL after we already provisioned it. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (!ossl_quic_provide_initial_secret(ch->libctx, | 
					
						
							|  |  |  |                                           ch->propq, | 
					
						
							|  |  |  |                                           &ch->retry_scid, | 
					
						
							|  |  |  |                                           /*is_server=*/0, | 
					
						
							|  |  |  |                                           ch->qrx, ch->qtx)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Called when an EL is to be discarded. */ | 
					
						
							|  |  |  | static int ch_discard_el(QUIC_CHANNEL *ch, | 
					
						
							|  |  |  |                          uint32_t enc_level) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!ossl_assert(enc_level < QUIC_ENC_LEVEL_1RTT)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((ch->el_discarded & (1U << enc_level)) != 0) | 
					
						
							|  |  |  |         /* Already done. */ | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Best effort for all of these. */ | 
					
						
							|  |  |  |     ossl_quic_tx_packetiser_discard_enc_level(ch->txp, enc_level); | 
					
						
							|  |  |  |     ossl_qrx_discard_enc_level(ch->qrx, enc_level); | 
					
						
							|  |  |  |     ossl_qtx_discard_enc_level(ch->qtx, enc_level); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (enc_level != QUIC_ENC_LEVEL_0RTT) { | 
					
						
							|  |  |  |         uint32_t pn_space = ossl_quic_enc_level_to_pn_space(enc_level); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ossl_ackm_on_pkt_space_discarded(ch->ackm, pn_space); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* We should still have crypto streams at this point. */ | 
					
						
							| 
									
										
										
										
											2022-12-15 15:07:35 +08:00
										 |  |  |         if (!ossl_assert(ch->crypto_send[pn_space] != NULL) | 
					
						
							|  |  |  |             || !ossl_assert(ch->crypto_recv[pn_space] != NULL)) | 
					
						
							|  |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* Get rid of the crypto stream state for the EL. */ | 
					
						
							|  |  |  |         ossl_quic_sstream_free(ch->crypto_send[pn_space]); | 
					
						
							|  |  |  |         ch->crypto_send[pn_space] = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ossl_quic_rstream_free(ch->crypto_recv[pn_space]); | 
					
						
							|  |  |  |         ch->crypto_recv[pn_space] = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ch->el_discarded |= (1U << enc_level); | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Intended to be called by the RXDP. */ | 
					
						
							|  |  |  | int ossl_quic_channel_on_handshake_confirmed(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (ch->handshake_confirmed) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ch->handshake_complete) { | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Does not make sense for handshake to be confirmed before it is | 
					
						
							|  |  |  |          * completed. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         ossl_quic_channel_raise_protocol_error(ch, QUIC_ERR_PROTOCOL_VIOLATION, | 
					
						
							|  |  |  |                                                OSSL_QUIC_FRAME_TYPE_HANDSHAKE_DONE, | 
					
						
							|  |  |  |                                                "handshake cannot be confirmed " | 
					
						
							|  |  |  |                                                "before it is completed"); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ch_discard_el(ch, QUIC_ENC_LEVEL_HANDSHAKE); | 
					
						
							|  |  |  |     ch->handshake_confirmed = 1; | 
					
						
							| 
									
										
										
										
											2023-05-23 22:37:34 +08:00
										 |  |  |     ossl_ackm_on_handshake_confirmed(ch->ackm); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Master function used when we want to start tearing down a connection: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *   - If the connection is still IDLE we can go straight to TERMINATED; | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *   - If we are already TERMINATED this is a no-op. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *   - If we are TERMINATING - CLOSING and we have now got a CONNECTION_CLOSE | 
					
						
							| 
									
										
										
										
											2022-11-30 15:57:55 +08:00
										 |  |  |  *     from the peer (tcause->remote == 1), we move to TERMINATING - DRAINING. | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  *   - If we are TERMINATING - DRAINING, we remain here until the terminating | 
					
						
							|  |  |  |  *     timer expires. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *   - Otherwise, we are in ACTIVE and move to TERMINATING - CLOSING. | 
					
						
							|  |  |  |  *     if we caused the termination (e.g. we have sent a CONNECTION_CLOSE). Note | 
					
						
							|  |  |  |  *     that we are considered to have caused a termination if we sent the first | 
					
						
							|  |  |  |  *     CONNECTION_CLOSE frame, even if it is caused by a peer protocol | 
					
						
							|  |  |  |  *     violation. If the peer sent the first CONNECTION_CLOSE frame, we move to | 
					
						
							|  |  |  |  *     TERMINATING - DRAINING. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * We record the termination cause structure passed on the first call only. | 
					
						
							|  |  |  |  * Any successive calls have their termination cause data discarded; | 
					
						
							|  |  |  |  * once we start sending a CONNECTION_CLOSE frame, we don't change the details | 
					
						
							|  |  |  |  * in it. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void ch_start_terminating(QUIC_CHANNEL *ch, | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  |                                  const QUIC_TERMINATE_CAUSE *tcause, | 
					
						
							|  |  |  |                                  int force_immediate) | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     switch (ch->state) { | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |     default: | 
					
						
							|  |  |  |     case QUIC_CHANNEL_STATE_IDLE: | 
					
						
							|  |  |  |         ch->terminate_cause = *tcause; | 
					
						
							|  |  |  |         ch_on_terminating_timeout(ch); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case QUIC_CHANNEL_STATE_ACTIVE: | 
					
						
							|  |  |  |         ch->terminate_cause = *tcause; | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (!force_immediate) { | 
					
						
							|  |  |  |             ch->state = tcause->remote ? QUIC_CHANNEL_STATE_TERMINATING_DRAINING | 
					
						
							|  |  |  |                                        : QUIC_CHANNEL_STATE_TERMINATING_CLOSING; | 
					
						
							|  |  |  |             ch->terminate_deadline | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  |                 = ossl_time_add(get_time(ch), | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  |                                 ossl_time_multiply(ossl_ackm_get_pto_duration(ch->ackm), | 
					
						
							|  |  |  |                                                    3)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (!tcause->remote) { | 
					
						
							|  |  |  |                 OSSL_QUIC_FRAME_CONN_CLOSE f = {0}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 /* best effort */ | 
					
						
							|  |  |  |                 f.error_code = ch->terminate_cause.error_code; | 
					
						
							|  |  |  |                 f.frame_type = ch->terminate_cause.frame_type; | 
					
						
							|  |  |  |                 f.is_app     = ch->terminate_cause.app; | 
					
						
							|  |  |  |                 ossl_quic_tx_packetiser_schedule_conn_close(ch->txp, &f); | 
					
						
							|  |  |  |                 ch->conn_close_queued = 1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             ch_on_terminating_timeout(ch); | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |     case QUIC_CHANNEL_STATE_TERMINATING_CLOSING: | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  |         if (force_immediate) | 
					
						
							|  |  |  |             ch_on_terminating_timeout(ch); | 
					
						
							|  |  |  |         else if (tcause->remote) | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |             ch->state = QUIC_CHANNEL_STATE_TERMINATING_DRAINING; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |     case QUIC_CHANNEL_STATE_TERMINATING_DRAINING: | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * Other than in the force-immediate case, we remain here until the | 
					
						
							| 
									
										
										
										
											2023-05-09 15:06:40 +08:00
										 |  |  |          * timeout expires. | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  |          */ | 
					
						
							|  |  |  |         if (force_immediate) | 
					
						
							|  |  |  |             ch_on_terminating_timeout(ch); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 19:17:42 +08:00
										 |  |  |     case QUIC_CHANNEL_STATE_TERMINATED: | 
					
						
							|  |  |  |         /* No-op. */ | 
					
						
							|  |  |  |         break; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* For RXDP use. */ | 
					
						
							|  |  |  | void ossl_quic_channel_on_remote_conn_close(QUIC_CHANNEL *ch, | 
					
						
							|  |  |  |                                             OSSL_QUIC_FRAME_CONN_CLOSE *f) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QUIC_TERMINATE_CAUSE tcause = {0}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_quic_channel_is_active(ch)) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     tcause.remote     = 1; | 
					
						
							|  |  |  |     tcause.app        = f->is_app; | 
					
						
							|  |  |  |     tcause.error_code = f->error_code; | 
					
						
							|  |  |  |     tcause.frame_type = f->frame_type; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  |     ch_start_terminating(ch, &tcause, 0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-05 22:51:28 +08:00
										 |  |  | static void free_frame_data(unsigned char *buf, size_t buf_len, void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     OPENSSL_free(buf); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int ch_enqueue_retire_conn_id(QUIC_CHANNEL *ch, uint64_t seq_num) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     BUF_MEM *buf_mem; | 
					
						
							|  |  |  |     WPACKET wpkt; | 
					
						
							|  |  |  |     size_t l; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((buf_mem = BUF_MEM_new()) == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!WPACKET_init(&wpkt, buf_mem)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_quic_wire_encode_frame_retire_conn_id(&wpkt, seq_num)) { | 
					
						
							|  |  |  |         WPACKET_cleanup(&wpkt); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     WPACKET_finish(&wpkt); | 
					
						
							|  |  |  |     if (!WPACKET_get_total_written(&wpkt, &l)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ossl_quic_cfq_add_frame(ch->cfq, 1, QUIC_PN_SPACE_APP, | 
					
						
							|  |  |  |                                 OSSL_QUIC_FRAME_TYPE_RETIRE_CONN_ID, | 
					
						
							|  |  |  |                                 (unsigned char *)buf_mem->data, l, | 
					
						
							|  |  |  |                                 free_frame_data, NULL) == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     buf_mem->data = NULL; | 
					
						
							|  |  |  |     BUF_MEM_free(buf_mem); | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  |     ossl_quic_channel_raise_protocol_error(ch, | 
					
						
							|  |  |  |                                            QUIC_ERR_INTERNAL_ERROR, | 
					
						
							|  |  |  |                                            OSSL_QUIC_FRAME_TYPE_NEW_CONN_ID, | 
					
						
							|  |  |  |                                            "internal error enqueueing retire conn id"); | 
					
						
							|  |  |  |     BUF_MEM_free(buf_mem); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ossl_quic_channel_on_new_conn_id(QUIC_CHANNEL *ch, | 
					
						
							|  |  |  |                                       OSSL_QUIC_FRAME_NEW_CONN_ID *f) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint64_t new_remote_seq_num = ch->cur_remote_seq_num; | 
					
						
							|  |  |  |     uint64_t new_retire_prior_to = ch->cur_retire_prior_to; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_quic_channel_is_active(ch)) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* We allow only two active connection ids; first check some constraints */ | 
					
						
							|  |  |  |     if (ch->cur_remote_dcid.id_len == 0) { | 
					
						
							|  |  |  |         /* Changing from 0 length connection id is disallowed */ | 
					
						
							|  |  |  |         ossl_quic_channel_raise_protocol_error(ch, | 
					
						
							|  |  |  |                                                QUIC_ERR_PROTOCOL_VIOLATION, | 
					
						
							|  |  |  |                                                OSSL_QUIC_FRAME_TYPE_NEW_CONN_ID, | 
					
						
							|  |  |  |                                                "zero length connection id in use"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (f->seq_num > new_remote_seq_num) | 
					
						
							|  |  |  |         new_remote_seq_num = f->seq_num; | 
					
						
							|  |  |  |     if (f->retire_prior_to > new_retire_prior_to) | 
					
						
							|  |  |  |         new_retire_prior_to = f->retire_prior_to; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-26 09:23:48 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * RFC 9000-5.1.1: An endpoint MUST NOT provide more connection IDs | 
					
						
							|  |  |  |      * than the peer's limit. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * After processing a NEW_CONNECTION_ID frame and adding and retiring | 
					
						
							|  |  |  |      * active connection IDs, if the number of active connection IDs exceeds | 
					
						
							|  |  |  |      * the value advertised in its active_connection_id_limit transport | 
					
						
							|  |  |  |      * parameter, an endpoint MUST close the connection with an error of | 
					
						
							|  |  |  |      * type CONNECTION_ID_LIMIT_ERROR. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (new_remote_seq_num - new_retire_prior_to > 1) { | 
					
						
							| 
									
										
										
										
											2023-05-05 22:51:28 +08:00
										 |  |  |         ossl_quic_channel_raise_protocol_error(ch, | 
					
						
							|  |  |  |                                                QUIC_ERR_CONNECTION_ID_LIMIT_ERROR, | 
					
						
							|  |  |  |                                                OSSL_QUIC_FRAME_TYPE_NEW_CONN_ID, | 
					
						
							|  |  |  |                                                "active_connection_id limit violated"); | 
					
						
							| 
									
										
										
										
											2023-05-26 09:23:48 +08:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * RFC 9000-5.1.1: An endpoint MAY send connection IDs that temporarily | 
					
						
							|  |  |  |      * exceed a peer's limit if the NEW_CONNECTION_ID frame also requires | 
					
						
							|  |  |  |      * the retirement of any excess, by including a sufficiently large | 
					
						
							|  |  |  |      * value in the Retire Prior To field. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * RFC 9000-5.1.2: An endpoint SHOULD allow for sending and tracking | 
					
						
							|  |  |  |      * a number of RETIRE_CONNECTION_ID frames of at least twice the value | 
					
						
							|  |  |  |      * of the active_connection_id_limit transport parameter.  An endpoint | 
					
						
							|  |  |  |      * MUST NOT forget a connection ID without retiring it, though it MAY | 
					
						
							|  |  |  |      * choose to treat having connection IDs in need of retirement that | 
					
						
							|  |  |  |      * exceed this limit as a connection error of type CONNECTION_ID_LIMIT_ERROR. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * We are a little bit more liberal than the minimum mandated. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (new_retire_prior_to - ch->cur_retire_prior_to > 10) { | 
					
						
							|  |  |  |         ossl_quic_channel_raise_protocol_error(ch, | 
					
						
							|  |  |  |                                                QUIC_ERR_CONNECTION_ID_LIMIT_ERROR, | 
					
						
							|  |  |  |                                                OSSL_QUIC_FRAME_TYPE_NEW_CONN_ID, | 
					
						
							|  |  |  |                                                "retiring connection id limit violated"); | 
					
						
							| 
									
										
										
										
											2023-05-05 22:51:28 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (new_remote_seq_num > ch->cur_remote_seq_num) { | 
					
						
							|  |  |  |         ch->cur_remote_seq_num = new_remote_seq_num; | 
					
						
							|  |  |  |         ch->cur_remote_dcid = f->conn_id; | 
					
						
							|  |  |  |         ossl_quic_tx_packetiser_set_cur_dcid(ch->txp, &ch->cur_remote_dcid); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-26 09:23:48 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * RFC 9000-5.1.2: Upon receipt of an increased Retire Prior To | 
					
						
							|  |  |  |      * field, the peer MUST stop using the corresponding connection IDs | 
					
						
							|  |  |  |      * and retire them with RETIRE_CONNECTION_ID frames before adding the | 
					
						
							|  |  |  |      * newly provided connection ID to the set of active connection IDs. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-06-06 23:25:12 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Note: RFC 9000 s. 19.15 says: | 
					
						
							|  |  |  |      *   "An endpoint that receives a NEW_CONNECTION_ID frame with a sequence | 
					
						
							|  |  |  |      *    number smaller than the Retire Prior To field of a previously received | 
					
						
							|  |  |  |      *    NEW_CONNECTION_ID frame MUST send a correspoonding | 
					
						
							|  |  |  |      *    RETIRE_CONNECTION_ID frame that retires the newly received connection | 
					
						
							|  |  |  |      *    ID, unless it has already done so for that sequence number." | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Since we currently always queue RETIRE_CONN_ID frames based on the Retire | 
					
						
							|  |  |  |      * Prior To field of a NEW_CONNECTION_ID frame immediately upon receiving | 
					
						
							|  |  |  |      * that NEW_CONNECTION_ID frame, by definition this will always be met. | 
					
						
							|  |  |  |      * This may change in future when we change our CID handling. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-05-05 22:51:28 +08:00
										 |  |  |     while (new_retire_prior_to > ch->cur_retire_prior_to) { | 
					
						
							|  |  |  |         if (!ch_enqueue_retire_conn_id(ch, ch->cur_retire_prior_to)) | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         ++ch->cur_retire_prior_to; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-31 04:14:58 +08:00
										 |  |  | static void ch_save_err_state(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (ch->err_state == NULL) | 
					
						
							|  |  |  |         ch->err_state = OSSL_ERR_STATE_new(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ch->err_state == NULL) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     OSSL_ERR_STATE_save(ch->err_state); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  | static void ch_raise_net_error(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QUIC_TERMINATE_CAUSE tcause = {0}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-26 21:54:56 +08:00
										 |  |  |     ch->net_error = 1; | 
					
						
							| 
									
										
										
										
											2023-05-31 04:14:58 +08:00
										 |  |  |     ch_save_err_state(ch); | 
					
						
							| 
									
										
										
										
											2023-05-26 21:54:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  |     tcause.error_code = QUIC_ERR_INTERNAL_ERROR; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Skip Terminating state and go directly to Terminated, no point trying to | 
					
						
							|  |  |  |      * send CONNECTION_CLOSE if we cannot communicate. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     ch_start_terminating(ch, &tcause, 1); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-26 21:54:56 +08:00
										 |  |  | int ossl_quic_channel_net_error(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return ch->net_error; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-31 04:14:58 +08:00
										 |  |  | void ossl_quic_channel_restore_err_state(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (ch == NULL) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     OSSL_ERR_STATE_restore(ch->err_state); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | void ossl_quic_channel_raise_protocol_error(QUIC_CHANNEL *ch, | 
					
						
							|  |  |  |                                             uint64_t error_code, | 
					
						
							|  |  |  |                                             uint64_t frame_type, | 
					
						
							|  |  |  |                                             const char *reason) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QUIC_TERMINATE_CAUSE tcause = {0}; | 
					
						
							| 
									
										
										
										
											2023-07-17 23:36:32 +08:00
										 |  |  |     int err_reason = error_code == QUIC_ERR_INTERNAL_ERROR | 
					
						
							|  |  |  |                      ? ERR_R_INTERNAL_ERROR : SSL_R_QUIC_PROTOCOL_ERROR; | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-17 23:36:32 +08:00
										 |  |  |     ERR_raise_data(ERR_LIB_SSL, err_reason, | 
					
						
							|  |  |  |                    "Error code: %llu Frame type: %llu Reason: %s", | 
					
						
							|  |  |  |                    (unsigned long long) error_code, | 
					
						
							|  |  |  |                    (unsigned long long) frame_type, reason); | 
					
						
							|  |  |  |     ch_save_err_state(ch); | 
					
						
							| 
									
										
										
										
											2023-05-31 04:14:58 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |     tcause.error_code = error_code; | 
					
						
							|  |  |  |     tcause.frame_type = frame_type; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-09 23:47:47 +08:00
										 |  |  |     ch_start_terminating(ch, &tcause, 0); | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Called once the terminating timer expires, meaning we move from TERMINATING | 
					
						
							|  |  |  |  * to TERMINATED. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void ch_on_terminating_timeout(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ch->state = QUIC_CHANNEL_STATE_TERMINATED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Updates our idle deadline. Called when an event happens which should bump the | 
					
						
							|  |  |  |  * idle timeout. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void ch_update_idle(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (ch->max_idle_timeout == 0) | 
					
						
							|  |  |  |         ch->idle_deadline = ossl_time_infinite(); | 
					
						
							|  |  |  |     else | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  |         ch->idle_deadline = ossl_time_add(get_time(ch), | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  |             ossl_ms2time(ch->max_idle_timeout)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Updates our ping deadline, which determines when we next generate a ping if | 
					
						
							|  |  |  |  * we don't have any other ACK-eliciting frames to send. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void ch_update_ping_deadline(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (ch->max_idle_timeout > 0) { | 
					
						
							|  |  |  |         /*
 | 
					
						
							| 
									
										
										
										
											2023-03-21 23:19:34 +08:00
										 |  |  |          * Maximum amount of time without traffic before we send a PING to keep | 
					
						
							|  |  |  |          * the connection open. Usually we use max_idle_timeout/2, but ensure | 
					
						
							|  |  |  |          * the period never exceeds the assumed NAT interval to ensure NAT | 
					
						
							|  |  |  |          * devices don't have their state time out (RFC 9000 s. 10.1.2). | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  |          */ | 
					
						
							|  |  |  |         OSSL_TIME max_span | 
					
						
							|  |  |  |             = ossl_time_divide(ossl_ms2time(ch->max_idle_timeout), 2); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-21 23:19:34 +08:00
										 |  |  |         max_span = ossl_time_min(max_span, MAX_NAT_INTERVAL); | 
					
						
							| 
									
										
										
										
											2023-02-21 18:18:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         ch->ping_deadline = ossl_time_add(get_time(ch), max_span); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         ch->ping_deadline = ossl_time_infinite(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-17 23:00:41 +08:00
										 |  |  | /* Called when the idle timeout expires. */ | 
					
						
							|  |  |  | static void ch_on_idle_timeout(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Idle timeout does not have an error code associated with it because a | 
					
						
							|  |  |  |      * CONN_CLOSE is never sent for it. We shouldn't use this data once we reach | 
					
						
							|  |  |  |      * TERMINATED anyway. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     ch->terminate_cause.app         = 0; | 
					
						
							|  |  |  |     ch->terminate_cause.error_code  = UINT64_MAX; | 
					
						
							|  |  |  |     ch->terminate_cause.frame_type  = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ch->state = QUIC_CHANNEL_STATE_TERMINATED; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Called when we, as a server, get a new incoming connection. */ | 
					
						
							|  |  |  | static int ch_server_on_new_conn(QUIC_CHANNEL *ch, const BIO_ADDR *peer, | 
					
						
							|  |  |  |                                  const QUIC_CONN_ID *peer_scid, | 
					
						
							|  |  |  |                                  const QUIC_CONN_ID *peer_dcid) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!ossl_assert(ch->state == QUIC_CHANNEL_STATE_IDLE && ch->is_server)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Generate a SCID we will use for the connection. */ | 
					
						
							|  |  |  |     if (!gen_rand_conn_id(ch->libctx, INIT_DCID_LEN, | 
					
						
							| 
									
										
										
										
											2023-05-11 19:49:51 +08:00
										 |  |  |                           &ch->cur_local_cid)) | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Note our newly learnt peer address and CIDs. */ | 
					
						
							|  |  |  |     ch->cur_peer_addr   = *peer; | 
					
						
							|  |  |  |     ch->init_dcid       = *peer_dcid; | 
					
						
							|  |  |  |     ch->cur_remote_dcid = *peer_scid; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Inform QTX of peer address. */ | 
					
						
							|  |  |  |     if (!ossl_quic_tx_packetiser_set_peer(ch->txp, &ch->cur_peer_addr)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Inform TXP of desired CIDs. */ | 
					
						
							|  |  |  |     if (!ossl_quic_tx_packetiser_set_cur_dcid(ch->txp, &ch->cur_remote_dcid)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-11 19:49:51 +08:00
										 |  |  |     if (!ossl_quic_tx_packetiser_set_cur_scid(ch->txp, &ch->cur_local_cid)) | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Plug in secrets for the Initial EL. */ | 
					
						
							|  |  |  |     if (!ossl_quic_provide_initial_secret(ch->libctx, | 
					
						
							|  |  |  |                                           ch->propq, | 
					
						
							|  |  |  |                                           &ch->init_dcid, | 
					
						
							|  |  |  |                                           /*is_server=*/1, | 
					
						
							|  |  |  |                                           ch->qrx, ch->qtx)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-11 19:49:51 +08:00
										 |  |  |     /* Register our local CID in the DEMUX. */ | 
					
						
							|  |  |  |     if (!ossl_qrx_add_dst_conn_id(ch->qrx, &ch->cur_local_cid)) | 
					
						
							| 
									
										
										
										
											2022-11-22 21:41:23 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Change state. */ | 
					
						
							|  |  |  |     ch->state                   = QUIC_CHANNEL_STATE_ACTIVE; | 
					
						
							|  |  |  |     ch->doing_proactive_ver_neg = 0; /* not currently supported */ | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2022-12-02 22:38:46 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | SSL *ossl_quic_channel_get0_ssl(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return ch->tls; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  | static int ch_init_new_stream(QUIC_CHANNEL *ch, QUIC_STREAM *qs, | 
					
						
							|  |  |  |                               int can_send, int can_recv) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint64_t rxfc_wnd; | 
					
						
							|  |  |  |     int server_init = ossl_quic_stream_is_server_init(qs); | 
					
						
							|  |  |  |     int local_init = (ch->is_server == server_init); | 
					
						
							|  |  |  |     int is_uni = !ossl_quic_stream_is_bidi(qs); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-03 23:24:54 +08:00
										 |  |  |     if (can_send) | 
					
						
							| 
									
										
										
										
											2023-06-28 22:34:14 +08:00
										 |  |  |         if ((qs->sstream = ossl_quic_sstream_new(INIT_APP_BUF_LEN)) == NULL) | 
					
						
							|  |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-03 23:24:54 +08:00
										 |  |  |     if (can_recv) | 
					
						
							| 
									
										
										
										
											2023-06-13 00:16:35 +08:00
										 |  |  |         if ((qs->rstream = ossl_quic_rstream_new(NULL, NULL, 0)) == NULL) | 
					
						
							|  |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* TXFC */ | 
					
						
							|  |  |  |     if (!ossl_quic_txfc_init(&qs->txfc, &ch->conn_txfc)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ch->got_remote_transport_params) { | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * If we already got peer TPs we need to apply the initial CWM credit | 
					
						
							|  |  |  |          * now. If we didn't already get peer TPs this will be done | 
					
						
							|  |  |  |          * automatically for all extant streams when we do. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if (can_send) { | 
					
						
							|  |  |  |             uint64_t cwm; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (is_uni) | 
					
						
							|  |  |  |                 cwm = ch->rx_init_max_stream_data_uni; | 
					
						
							|  |  |  |             else if (local_init) | 
					
						
							|  |  |  |                 cwm = ch->rx_init_max_stream_data_bidi_local; | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 cwm = ch->rx_init_max_stream_data_bidi_remote; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             ossl_quic_txfc_bump_cwm(&qs->txfc, cwm); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* RXFC */ | 
					
						
							|  |  |  |     if (!can_recv) | 
					
						
							|  |  |  |         rxfc_wnd = 0; | 
					
						
							|  |  |  |     else if (is_uni) | 
					
						
							|  |  |  |         rxfc_wnd = ch->tx_init_max_stream_data_uni; | 
					
						
							|  |  |  |     else if (local_init) | 
					
						
							|  |  |  |         rxfc_wnd = ch->tx_init_max_stream_data_bidi_local; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         rxfc_wnd = ch->tx_init_max_stream_data_bidi_remote; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_quic_rxfc_init(&qs->rxfc, &ch->conn_rxfc, | 
					
						
							|  |  |  |                              rxfc_wnd, | 
					
						
							|  |  |  |                              DEFAULT_STREAM_RXFC_MAX_WND_MUL * rxfc_wnd, | 
					
						
							|  |  |  |                              get_time, ch)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  |     ossl_quic_sstream_free(qs->sstream); | 
					
						
							|  |  |  |     qs->sstream = NULL; | 
					
						
							|  |  |  |     ossl_quic_rstream_free(qs->rstream); | 
					
						
							|  |  |  |     qs->rstream = NULL; | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  | QUIC_STREAM *ossl_quic_channel_new_stream_local(QUIC_CHANNEL *ch, int is_uni) | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     QUIC_STREAM *qs; | 
					
						
							| 
									
										
										
										
											2023-04-26 22:56:59 +08:00
										 |  |  |     int type; | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |     uint64_t stream_id, *p_next_ordinal; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-26 22:56:59 +08:00
										 |  |  |     type = ch->is_server ? QUIC_STREAM_INITIATOR_SERVER | 
					
						
							|  |  |  |                          : QUIC_STREAM_INITIATOR_CLIENT; | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (is_uni) { | 
					
						
							|  |  |  |         p_next_ordinal = &ch->next_local_stream_ordinal_uni; | 
					
						
							|  |  |  |         type |= QUIC_STREAM_DIR_UNI; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         p_next_ordinal = &ch->next_local_stream_ordinal_bidi; | 
					
						
							|  |  |  |         type |= QUIC_STREAM_DIR_BIDI; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (*p_next_ordinal >= ((uint64_t)1) << 62) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     stream_id = ((*p_next_ordinal) << 2) | type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((qs = ossl_quic_stream_map_alloc(&ch->qsm, stream_id, type)) == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |     /* Locally-initiated stream, so we always want a send buffer. */ | 
					
						
							|  |  |  |     if (!ch_init_new_stream(ch, qs, /*can_send=*/1, /*can_recv=*/!is_uni)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |     ++*p_next_ordinal; | 
					
						
							|  |  |  |     return qs; | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  |     ossl_quic_stream_map_release(&ch->qsm, qs); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | QUIC_STREAM *ossl_quic_channel_new_stream_remote(QUIC_CHANNEL *ch, | 
					
						
							|  |  |  |                                                  uint64_t stream_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint64_t peer_role; | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |     int is_uni; | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |     QUIC_STREAM *qs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     peer_role = ch->is_server | 
					
						
							|  |  |  |         ? QUIC_STREAM_INITIATOR_CLIENT | 
					
						
							|  |  |  |         : QUIC_STREAM_INITIATOR_SERVER; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((stream_id & QUIC_STREAM_INITIATOR_MASK) != peer_role) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |     is_uni = ((stream_id & QUIC_STREAM_DIR_MASK) == QUIC_STREAM_DIR_UNI); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |     qs = ossl_quic_stream_map_alloc(&ch->qsm, stream_id, | 
					
						
							|  |  |  |                                     stream_id & (QUIC_STREAM_INITIATOR_MASK | 
					
						
							|  |  |  |                                                  | QUIC_STREAM_DIR_MASK)); | 
					
						
							|  |  |  |     if (qs == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |     if (!ch_init_new_stream(ch, qs, /*can_send=*/!is_uni, /*can_recv=*/1)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:55 +08:00
										 |  |  |     if (ch->incoming_stream_auto_reject) | 
					
						
							|  |  |  |         ossl_quic_channel_reject_stream(ch, qs); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         ossl_quic_stream_map_push_accept_queue(&ch->qsm, qs); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  |     return qs; | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  |     ossl_quic_stream_map_release(&ch->qsm, qs); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:54 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | void ossl_quic_channel_set_incoming_stream_auto_reject(QUIC_CHANNEL *ch, | 
					
						
							|  |  |  |                                                        int enable, | 
					
						
							|  |  |  |                                                        uint64_t aec) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ch->incoming_stream_auto_reject     = (enable != 0); | 
					
						
							|  |  |  |     ch->incoming_stream_auto_reject_aec = aec; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ossl_quic_channel_reject_stream(QUIC_CHANNEL *ch, QUIC_STREAM *qs) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:55 +08:00
										 |  |  |     ossl_quic_stream_map_stop_sending_recv_part(&ch->qsm, qs, | 
					
						
							|  |  |  |                                                 ch->incoming_stream_auto_reject_aec); | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:55 +08:00
										 |  |  |     ossl_quic_stream_map_reset_stream_send_part(&ch->qsm, qs, | 
					
						
							|  |  |  |                                                 ch->incoming_stream_auto_reject_aec); | 
					
						
							| 
									
										
										
										
											2023-04-19 02:30:55 +08:00
										 |  |  |     qs->deleted = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ossl_quic_stream_map_update_state(&ch->qsm, qs); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2023-05-11 19:49:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Replace local connection ID in TXP and DEMUX for testing purposes. */ | 
					
						
							|  |  |  | int ossl_quic_channel_replace_local_cid(QUIC_CHANNEL *ch, | 
					
						
							|  |  |  |                                         const QUIC_CONN_ID *conn_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* Remove the current local CID from the DEMUX. */ | 
					
						
							|  |  |  |     if (!ossl_qrx_remove_dst_conn_id(ch->qrx, &ch->cur_local_cid)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     ch->cur_local_cid = *conn_id; | 
					
						
							|  |  |  |     /* Set in the TXP, used only for long header packets. */ | 
					
						
							|  |  |  |     if (!ossl_quic_tx_packetiser_set_cur_scid(ch->txp, &ch->cur_local_cid)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     /* Register our new local CID in the DEMUX. */ | 
					
						
							|  |  |  |     if (!ossl_qrx_add_dst_conn_id(ch->qrx, &ch->cur_local_cid)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2023-05-18 22:46:58 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | void ossl_quic_channel_set_msg_callback(QUIC_CHANNEL *ch, | 
					
						
							|  |  |  |                                         ossl_msg_cb msg_callback, | 
					
						
							| 
									
										
										
										
											2023-05-22 22:00:00 +08:00
										 |  |  |                                         SSL *msg_callback_ssl) | 
					
						
							| 
									
										
										
										
											2023-05-18 22:46:58 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     ch->msg_callback = msg_callback; | 
					
						
							| 
									
										
										
										
											2023-05-22 22:00:00 +08:00
										 |  |  |     ch->msg_callback_ssl = msg_callback_ssl; | 
					
						
							|  |  |  |     ossl_qtx_set_msg_callback(ch->qtx, msg_callback, msg_callback_ssl); | 
					
						
							| 
									
										
										
										
											2023-05-18 22:46:58 +08:00
										 |  |  |     ossl_quic_tx_packetiser_set_msg_callback(ch->txp, msg_callback, | 
					
						
							| 
									
										
										
										
											2023-05-22 22:00:00 +08:00
										 |  |  |                                              msg_callback_ssl); | 
					
						
							|  |  |  |     ossl_qrx_set_msg_callback(ch->qrx, msg_callback, msg_callback_ssl); | 
					
						
							| 
									
										
										
										
											2023-05-18 22:46:58 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ossl_quic_channel_set_msg_callback_arg(QUIC_CHANNEL *ch, | 
					
						
							|  |  |  |                                             void *msg_callback_arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ch->msg_callback_arg = msg_callback_arg; | 
					
						
							|  |  |  |     ossl_qtx_set_msg_callback_arg(ch->qtx, msg_callback_arg); | 
					
						
							|  |  |  |     ossl_quic_tx_packetiser_set_msg_callback_arg(ch->txp, msg_callback_arg); | 
					
						
							|  |  |  |     ossl_qrx_set_msg_callback_arg(ch->qrx, msg_callback_arg); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2023-05-23 19:23:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | void ossl_quic_channel_set_txku_threshold_override(QUIC_CHANNEL *ch, | 
					
						
							|  |  |  |                                                    uint64_t tx_pkt_threshold) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ch->txku_threshold_override = tx_pkt_threshold; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uint64_t ossl_quic_channel_get_tx_key_epoch(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return ossl_qtx_get_key_epoch(ch->qtx); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uint64_t ossl_quic_channel_get_rx_key_epoch(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return ossl_qrx_get_key_epoch(ch->qrx); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2023-06-12 21:13:26 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | int ossl_quic_channel_trigger_txku(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!txku_allowed(ch)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ch->ku_locally_initiated = 1; | 
					
						
							|  |  |  |     ch_trigger_txku(ch); | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2023-07-13 20:48:32 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | int ossl_quic_channel_ping(QUIC_CHANNEL *ch) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int pn_space = ossl_quic_enc_level_to_pn_space(ch->tx_enc_level); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ossl_quic_tx_packetiser_schedule_ack_eliciting(ch->txp, pn_space); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } |