1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
#![allow(clippy::missing_safety_doc)] // TODO add safety docs
use crate::{
callbacks::*,
cert_chain::CertificateChain,
config::Config,
enums::*,
error::{Error, Fallible, Pollable},
security,
};
use core::{
convert::TryInto,
fmt,
mem::{self, ManuallyDrop, MaybeUninit},
pin::Pin,
ptr::NonNull,
task::{Poll, Waker},
time::Duration,
};
use libc::c_void;
use s2n_tls_sys::*;
use std::{any::Any, ffi::CStr};
mod builder;
pub use builder::*;
/// return a &str scoped to the lifetime of the surrounding function
///
/// SAFETY: must be called on a null terminated string
///
/// SAFETY: the underlying data must live at least as long as the surrounding scope
// We use a macro instead of a function so that the lifetime of the output is
// automatically inferred to match the surrounding scope.
macro_rules! const_str {
($c_chars:expr) => {
CStr::from_ptr($c_chars)
.to_str()
.map_err(|_| Error::INVALID_INPUT)
};
}
#[non_exhaustive]
#[derive(Debug, PartialEq)]
/// s2n-tls only tracks up to u8::MAX (255) key updates. If any of the fields show
/// 255 updates, then more than 255 updates may have occurred.
pub struct KeyUpdateCount {
pub send_key_updates: u8,
pub recv_key_updates: u8,
}
pub struct Connection {
connection: NonNull<s2n_connection>,
}
impl fmt::Debug for Connection {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let mut debug = f.debug_struct("Connection");
if let Ok(handshake) = self.handshake_type() {
debug.field("handshake_type", &handshake);
}
if let Ok(cipher) = self.cipher_suite() {
debug.field("cipher_suite", &cipher);
}
if let Ok(version) = self.actual_protocol_version() {
debug.field("actual_protocol_version", &version);
}
if let Ok(curve) = self.selected_curve() {
debug.field("selected_curve", &curve);
}
debug.finish_non_exhaustive()
}
}
/// # Safety
///
/// s2n_connection objects can be sent across threads
unsafe impl Send for Connection {}
/// # Sync
///
/// Although NonNull isn't Sync and allows access to mutable pointers even from
/// immutable references, the Connection interface enforces that all mutating
/// methods correctly require &mut self.
///
/// Developers and reviewers MUST ensure that new methods correctly use
/// either &self or &mut self depending on their behavior. No mechanism enforces this.
///
/// Note: Although non-mutating methods like getters should be thread-safe by definition,
/// technically the only thread safety guarantee provided by the underlying C library
/// is that s2n_send and s2n_recv can be called concurrently.
///
unsafe impl Sync for Connection {}
impl Connection {
/// # Warning
///
/// The newly created connection uses the default security policy.
/// Consider changing this depending on your security and compatibility requirements
/// by calling [`Connection::set_security_policy`].
/// Alternatively, you can use [`crate::config::Builder`], [`crate::config::Builder::set_security_policy`],
/// and [`Connection::set_config`] to set the policy on the Config instead of on the Connection.
/// See the s2n-tls usage guide:
/// <https://aws.github.io/s2n-tls/usage-guide/ch06-security-policies.html>
pub fn new(mode: Mode) -> Self {
crate::init::init();
let connection = unsafe { s2n_connection_new(mode.into()).into_result() }.unwrap();
unsafe {
debug_assert! {
s2n_connection_get_config(connection.as_ptr(), &mut core::ptr::null_mut())
.into_result()
.is_err()
}
}
let mut connection = Self { connection };
connection.init_context(mode);
connection
}
fn init_context(&mut self, mode: Mode) {
let context = Box::new(Context::new(mode));
let context = Box::into_raw(context) as *mut c_void;
// allocate a new context object
unsafe {
// There should never be an existing context
debug_assert!(s2n_connection_get_ctx(self.connection.as_ptr())
.into_result()
.is_err());
s2n_connection_set_ctx(self.connection.as_ptr(), context)
.into_result()
.unwrap();
}
}
pub fn new_client() -> Self {
Self::new(Mode::Client)
}
pub fn new_server() -> Self {
Self::new(Mode::Server)
}
pub(crate) fn as_ptr(&mut self) -> *mut s2n_connection {
self.connection.as_ptr()
}
/// # Safety
///
/// Caller must ensure s2n_connection is a valid reference to a [`s2n_connection`] object
pub(crate) unsafe fn from_raw(connection: NonNull<s2n_connection>) -> Self {
Self { connection }
}
pub(crate) fn mode(&self) -> Mode {
self.context().mode
}
/// can be used to configure s2n to either use built-in blinding (set blinding
/// to Blinding::BuiltIn) or self-service blinding (set blinding to
/// Blinding::SelfService).
pub fn set_blinding(&mut self, blinding: Blinding) -> Result<&mut Self, Error> {
unsafe {
s2n_connection_set_blinding(self.connection.as_ptr(), blinding.into()).into_result()
}?;
Ok(self)
}
/// Reports the remaining nanoseconds before the connection may be gracefully shutdown.
///
/// This method is expected to succeed, but could fail if the
/// [underlying C call](`s2n_connection_get_delay`) encounters errors.
/// Failure indicates that calls to [`Self::poll_shutdown`] will also fail and
/// that a graceful two-way shutdown of the connection will not be possible.
pub fn remaining_blinding_delay(&self) -> Result<Duration, Error> {
let nanos = unsafe { s2n_connection_get_delay(self.connection.as_ptr()).into_result() }?;
Ok(Duration::from_nanos(nanos))
}
/// Sets whether or not a Client Certificate should be required to complete the TLS Connection.
///
/// If this is set to ClientAuthType::Optional the server will request a client certificate
/// but allow the client to not provide one. Rejecting a client certificate when using
/// ClientAuthType::Optional will terminate the handshake.
pub fn set_client_auth_type(
&mut self,
client_auth_type: ClientAuthType,
) -> Result<&mut Self, Error> {
unsafe {
s2n_connection_set_client_auth_type(self.connection.as_ptr(), client_auth_type.into())
.into_result()
}?;
Ok(self)
}
/// Attempts to drop the config on the connection.
///
/// # Safety
///
/// The caller must ensure the config associated with the connection was created
/// with a [`config::Builder`].
unsafe fn drop_config(&mut self) -> Result<(), Error> {
let mut prev_config = core::ptr::null_mut();
// A valid non-null pointer is returned only if the application previously called
// [`Self::set_config()`].
if s2n_connection_get_config(self.connection.as_ptr(), &mut prev_config)
.into_result()
.is_ok()
{
let prev_config = NonNull::new(prev_config).expect(
"config should exist since the call to s2n_connection_get_config was successful",
);
drop(Config::from_raw(prev_config));
}
Ok(())
}
/// Associates a configuration object with a connection.
pub fn set_config(&mut self, mut config: Config) -> Result<&mut Self, Error> {
unsafe {
// attempt to drop the currently set config
self.drop_config()?;
s2n_connection_set_config(self.connection.as_ptr(), config.as_mut_ptr())
.into_result()?;
debug_assert! {
s2n_connection_get_config(self.connection.as_ptr(), &mut core::ptr::null_mut()).into_result().is_ok(),
"s2n_connection_set_config was successful"
};
// Setting the config on the connection creates one additional reference to the config
// so do not drop so prevent Rust from calling `drop()` at the end of this function.
mem::forget(config);
}
Ok(self)
}
pub(crate) fn config(&self) -> Option<Config> {
let mut raw = core::ptr::null_mut();
let config = unsafe {
s2n_connection_get_config(self.connection.as_ptr(), &mut raw)
.into_result()
.ok()?;
let raw = NonNull::new(raw)?;
Config::from_raw(raw)
};
// Because the config pointer is still set on the connection, this is a copy,
// not the original config. This is fine -- Configs are immutable.
let _ = ManuallyDrop::new(config.clone());
Some(config)
}
pub fn set_security_policy(&mut self, policy: &security::Policy) -> Result<&mut Self, Error> {
unsafe {
s2n_connection_set_cipher_preferences(
self.connection.as_ptr(),
policy.as_cstr().as_ptr(),
)
.into_result()
}?;
Ok(self)
}
/// provides a smooth transition from s2n_connection_prefer_low_latency to s2n_connection_prefer_throughput.
///
/// s2n_send uses small TLS records that fit into a single TCP segment for the resize_threshold
/// bytes (cap to 8M) of data and reset record size back to a single segment after timeout_threshold
/// seconds of inactivity.
pub fn set_dynamic_record_threshold(
&mut self,
resize_threshold: u32,
timeout_threshold: u16,
) -> Result<&mut Self, Error> {
unsafe {
s2n_connection_set_dynamic_record_threshold(
self.connection.as_ptr(),
resize_threshold,
timeout_threshold,
)
.into_result()
}?;
Ok(self)
}
/// Signals the connection to do a key_update at the next possible opportunity.
/// Note that the resulting key update message will not be sent until `send` is
/// called on the connection.
///
/// `peer_request` indicates if a key update should also be requested
/// of the peer. When set to `KeyUpdateNotRequested`, then only the sending
/// key of the connection will be updated. If set to `KeyUpdateRequested`, then
/// the sending key of conn will be updated AND the peer will be requested to
/// update their sending key. Note that s2n-tls currently only supports
/// `peer_request` being set to `KeyUpdateNotRequested` and will return an error
/// if any other value is used.
pub fn request_key_update(&mut self, peer_request: PeerKeyUpdate) -> Result<&mut Self, Error> {
unsafe {
s2n_connection_request_key_update(self.connection.as_ptr(), peer_request.into())
.into_result()
}?;
Ok(self)
}
/// Reports the number of times sending and receiving keys have been updated.
///
/// This only applies to TLS1.3. Earlier versions do not support key updates.
#[cfg(feature = "unstable-ktls")]
pub fn key_update_counts(&self) -> Result<KeyUpdateCount, Error> {
let mut send_key_updates = 0;
let mut recv_key_updates = 0;
unsafe {
s2n_connection_get_key_update_counts(
self.connection.as_ptr(),
&mut send_key_updates,
&mut recv_key_updates,
)
.into_result()?;
}
Ok(KeyUpdateCount {
send_key_updates,
recv_key_updates,
})
}
/// sets the application protocol preferences on an s2n_connection object.
///
/// protocols is a list in order of preference, with most preferred protocol first, and of
/// length protocol_count. When acting as a client the protocol list is included in the
/// Client Hello message as the ALPN extension. As a server, the list is used to negotiate
/// a mutual application protocol with the client. After the negotiation for the connection has
/// completed, the agreed upon protocol can be retrieved with s2n_get_application_protocol
pub fn set_application_protocol_preference<P: IntoIterator<Item = I>, I: AsRef<[u8]>>(
&mut self,
protocols: P,
) -> Result<&mut Self, Error> {
// reset the list
unsafe {
s2n_connection_set_protocol_preferences(self.connection.as_ptr(), core::ptr::null(), 0)
.into_result()
}?;
for protocol in protocols {
self.append_application_protocol_preference(protocol.as_ref())?;
}
Ok(self)
}
pub fn append_application_protocol_preference(
&mut self,
protocol: &[u8],
) -> Result<&mut Self, Error> {
unsafe {
s2n_connection_append_protocol_preference(
self.connection.as_ptr(),
protocol.as_ptr(),
protocol
.len()
.try_into()
.map_err(|_| Error::INVALID_INPUT)?,
)
.into_result()
}?;
Ok(self)
}
/// may be used to receive data with callbacks defined by the user.
pub fn set_receive_callback(&mut self, callback: s2n_recv_fn) -> Result<&mut Self, Error> {
unsafe { s2n_connection_set_recv_cb(self.connection.as_ptr(), callback).into_result() }?;
Ok(self)
}
/// # Safety
///
/// The `context` pointer must live at least as long as the connection
pub unsafe fn set_receive_context(&mut self, context: *mut c_void) -> Result<&mut Self, Error> {
s2n_connection_set_recv_ctx(self.connection.as_ptr(), context).into_result()?;
Ok(self)
}
/// may be used to receive data with callbacks defined by the user.
pub fn set_send_callback(&mut self, callback: s2n_send_fn) -> Result<&mut Self, Error> {
unsafe { s2n_connection_set_send_cb(self.connection.as_ptr(), callback).into_result() }?;
Ok(self)
}
/// # Safety
///
/// The `context` pointer must live at least as long as the connection
pub unsafe fn set_send_context(&mut self, context: *mut c_void) -> Result<&mut Self, Error> {
s2n_connection_set_send_ctx(self.connection.as_ptr(), context).into_result()?;
Ok(self)
}
/// Sets the callback to use for verifying that a hostname from an X.509 certificate is
/// trusted.
///
/// The callback may be called more than once during certificate validation as each SAN on
/// the certificate will be checked.
///
/// Corresponds to the underlying C API
/// [s2n_connection_set_verify_host_callback](https://aws.github.io/s2n-tls/doxygen/s2n_8h.html).
pub fn set_verify_host_callback<T: 'static + VerifyHostNameCallback>(
&mut self,
handler: T,
) -> Result<&mut Self, Error> {
unsafe extern "C" fn verify_host_cb_fn(
host_name: *const ::libc::c_char,
host_name_len: usize,
context: *mut ::libc::c_void,
) -> u8 {
let context = &mut *(context as *mut Context);
let handler = context.verify_host_callback.as_mut().unwrap();
verify_host(host_name, host_name_len, handler)
}
self.context_mut().verify_host_callback = Some(Box::new(handler));
unsafe {
s2n_connection_set_verify_host_callback(
self.connection.as_ptr(),
Some(verify_host_cb_fn),
self.context_mut() as *mut Context as *mut c_void,
)
.into_result()
}?;
Ok(self)
}
/// Connections prefering low latency will be encrypted using small record sizes that
/// can be decrypted sooner by the recipient.
pub fn prefer_low_latency(&mut self) -> Result<&mut Self, Error> {
unsafe { s2n_connection_prefer_low_latency(self.connection.as_ptr()).into_result() }?;
Ok(self)
}
/// Connections prefering throughput will use large record sizes that minimize overhead.
pub fn prefer_throughput(&mut self) -> Result<&mut Self, Error> {
unsafe { s2n_connection_prefer_throughput(self.connection.as_ptr()).into_result() }?;
Ok(self)
}
/// wipes and free the in and out buffers associated with a connection.
///
/// This function may be called when a connection is in keep-alive or idle state to
/// reduce memory overhead of long lived connections.
pub fn release_buffers(&mut self) -> Result<&mut Self, Error> {
unsafe { s2n_connection_release_buffers(self.connection.as_ptr()).into_result() }?;
Ok(self)
}
pub fn use_corked_io(&mut self) -> Result<&mut Self, Error> {
unsafe { s2n_connection_use_corked_io(self.connection.as_ptr()).into_result() }?;
Ok(self)
}
pub(crate) fn wipe_method<F, T>(&mut self, wipe: F) -> Result<(), Error>
where
F: FnOnce(&mut Self) -> Result<T, Error>,
{
let mode = self.mode();
unsafe {
// Wiping the connection will wipe the pointer to the context,
// so retrieve and drop that memory first.
let ctx = self.context_mut();
drop(Box::from_raw(ctx));
wipe(self)
}?;
self.init_context(mode);
Ok(())
}
/// wipes an existing connection and allows it to be reused.
///
/// This method erases all data associated with a connection including pending reads.
/// This function should be called after all I/O is completed and s2n_shutdown has been
/// called. Reusing the same connection handle(s) is more performant than repeatedly
/// calling s2n_connection_new and s2n_connection_free
pub fn wipe(&mut self) -> Result<&mut Self, Error> {
self.wipe_method(|conn| unsafe { s2n_connection_wipe(conn.as_ptr()).into_result() })?;
Ok(self)
}
fn trigger_initializer(&mut self) {
if !core::mem::replace(&mut self.context_mut().connection_initialized, true) {
if let Some(config) = self.config() {
if let Some(callback) = config.context().connection_initializer.as_ref() {
let future = callback.initialize_connection(self);
AsyncCallback::trigger(future, self);
}
}
}
}
// Poll the connection future if it exists.
//
// If the future returns Pending, then re-set it back on the Connection.
fn poll_async_task(&mut self) -> Option<Poll<Result<(), Error>>> {
self.take_async_callback().map(|mut callback| {
let waker = self.waker().ok_or(Error::MISSING_WAKER)?.clone();
let mut ctx = core::task::Context::from_waker(&waker);
match Pin::new(&mut callback).poll(self, &mut ctx) {
Poll::Ready(result) => Poll::Ready(result),
Poll::Pending => {
// replace the future if it hasn't completed yet
self.set_async_callback(callback);
Poll::Pending
}
}
})
}
pub(crate) fn poll_negotiate_method<F, T>(
&mut self,
mut negotiate: F,
) -> Poll<Result<(), Error>>
where
F: FnMut(&mut Connection) -> Poll<Result<T, Error>>,
{
self.trigger_initializer();
loop {
// Check whether renegotiate is blocked by any async callbacks
match self.poll_async_task().unwrap_or(Poll::Ready(Ok(()))) {
Poll::Ready(Err(err)) => return Poll::Ready(Err(err)),
Poll::Pending => return Poll::Pending,
Poll::Ready(Ok(_)) => {}
};
match negotiate(self) {
Poll::Ready(res) => return Poll::Ready(res.map(|_| ())),
Poll::Pending => {
// If `negotiate` returned `Pending` it could be blocked on a connection future
// (i.e. not socket IO) so before we return, we need to make sure we poll
// the associated future at least once. Otherwise, we will violate the waker contract.
//
// See https://github.com/aws/s2n-quic/pull/2248
if self.context_mut().async_callback.is_some() {
// continuing in the loop will poll the task
continue;
}
// we don't have anything else to poll so return `Pending`
return Poll::Pending;
}
}
}
}
/// Performs the TLS handshake to completion
///
/// Multiple callbacks can be configured for a connection and config, but
/// [`Self::poll_negotiate()`] can only execute and block on one callback at a time.
/// The handshake is sequential, not concurrent, and stops execution when
/// it encounters an async callback.
///
/// The handshake does not continue execution (and therefore can't call
/// any other callbacks) until the blocking async task reports completion.
pub fn poll_negotiate(&mut self) -> Poll<Result<&mut Self, Error>> {
let mut blocked = s2n_blocked_status::NOT_BLOCKED;
self.poll_negotiate_method(|conn| unsafe {
s2n_negotiate(conn.as_ptr(), &mut blocked).into_poll()
})
.map_ok(|_| self)
}
/// Encrypts and sends data on a connection where
/// [negotiate](`Self::poll_negotiate`) has succeeded.
///
/// Returns the number of bytes written, and may indicate a partial write.
pub fn poll_send(&mut self, buf: &[u8]) -> Poll<Result<usize, Error>> {
let mut blocked = s2n_blocked_status::NOT_BLOCKED;
let buf_len: isize = buf.len().try_into().map_err(|_| Error::INVALID_INPUT)?;
let buf_ptr = buf.as_ptr() as *const ::libc::c_void;
unsafe { s2n_send(self.connection.as_ptr(), buf_ptr, buf_len, &mut blocked).into_poll() }
}
/// Reads and decrypts data from a connection where
/// [negotiate](`Self::poll_negotiate`) has succeeded.
///
/// Returns the number of bytes read, and may indicate a partial read.
/// 0 bytes returned indicates EOF due to connection closure.
pub fn poll_recv(&mut self, buf: &mut [u8]) -> Poll<Result<usize, Error>> {
let mut blocked = s2n_blocked_status::NOT_BLOCKED;
let buf_len: isize = buf.len().try_into().map_err(|_| Error::INVALID_INPUT)?;
let buf_ptr = buf.as_ptr() as *mut ::libc::c_void;
unsafe { s2n_recv(self.connection.as_ptr(), buf_ptr, buf_len, &mut blocked).into_poll() }
}
/// Reads and decrypts data from a connection where
/// [negotiate](`Self::poll_negotiate`) has succeeded
/// to a uninitialized buffer.
///
/// Returns the number of bytes read, and may indicate a partial read.
/// 0 bytes returned indicates EOF due to connection closure.
///
/// Safety: this function is always safe to call, and additionally:
/// 1. It will never deinitialize any bytes in `buf`.
/// 2. If it returns `Ok(n)`, then the first `n` bytes of `buf`
/// will have been initialized by this function.
pub fn poll_recv_uninitialized(
&mut self,
buf: &mut [MaybeUninit<u8>],
) -> Poll<Result<usize, Error>> {
let mut blocked = s2n_blocked_status::NOT_BLOCKED;
let buf_len: isize = buf.len().try_into().map_err(|_| Error::INVALID_INPUT)?;
let buf_ptr = buf.as_ptr() as *mut ::libc::c_void;
// Safety:
// 1. s2n_recv never writes uninitialized garbage to `buf`.
// 2. if s2n_recv returns `+n`, it guarantees that the first
// `n` bytes of `buf` have been initialized, which allows this
// function to return `Ok(n)`
unsafe { s2n_recv(self.connection.as_ptr(), buf_ptr, buf_len, &mut blocked).into_poll() }
}
/// Attempts to flush any data previously buffered by a call to [send](`Self::poll_send`).
pub fn poll_flush(&mut self) -> Poll<Result<&mut Self, Error>> {
self.poll_send(&[0; 0]).map_ok(|_| self)
}
/// Gets the number of bytes that are currently available in the buffer to be read.
pub fn peek_len(&self) -> usize {
unsafe { s2n_peek(self.connection.as_ptr()) as usize }
}
/// Attempts a graceful shutdown of the TLS connection.
///
/// The shutdown is not complete until the necessary shutdown messages
/// have been successfully sent and received. If the peer does not respond
/// correctly, the graceful shutdown may fail.
pub fn poll_shutdown(&mut self) -> Poll<Result<&mut Self, Error>> {
if !self.remaining_blinding_delay()?.is_zero() {
return Poll::Pending;
}
let mut blocked = s2n_blocked_status::NOT_BLOCKED;
unsafe {
s2n_shutdown(self.connection.as_ptr(), &mut blocked)
.into_poll()
.map_ok(|_| self)
}
}
/// Attempts a graceful shutdown of the write side of a TLS connection.
///
/// Unlike Self::poll_shutdown, no reponse from the peer is necessary.
/// If using TLS1.3, the connection can continue to be used for reading afterwards.
pub fn poll_shutdown_send(&mut self) -> Poll<Result<&mut Self, Error>> {
if !self.remaining_blinding_delay()?.is_zero() {
return Poll::Pending;
}
let mut blocked = s2n_blocked_status::NOT_BLOCKED;
unsafe {
s2n_shutdown_send(self.connection.as_ptr(), &mut blocked)
.into_poll()
.map_ok(|_| self)
}
}
/// Returns the TLS alert code, if any
pub fn alert(&self) -> Option<u8> {
let alert =
unsafe { s2n_connection_get_alert(self.connection.as_ptr()).into_result() }.ok()?;
Some(alert as u8)
}
/// Sets the server name value for the connection
pub fn set_server_name(&mut self, server_name: &str) -> Result<&mut Self, Error> {
let server_name = std::ffi::CString::new(server_name).map_err(|_| Error::INVALID_INPUT)?;
unsafe {
s2n_set_server_name(self.connection.as_ptr(), server_name.as_ptr()).into_result()
}?;
Ok(self)
}
/// Get the server name associated with the connection client hello.
pub fn server_name(&self) -> Option<&str> {
unsafe {
let server_name = s2n_get_server_name(self.connection.as_ptr());
match server_name.into_result() {
Ok(server_name) => CStr::from_ptr(server_name).to_str().ok(),
Err(_) => None,
}
}
}
/// Adds a session ticket from a previous TLS connection to create a resumed session
pub fn set_session_ticket(&mut self, session: &[u8]) -> Result<&mut Self, Error> {
unsafe {
s2n_connection_set_session(self.connection.as_ptr(), session.as_ptr(), session.len())
.into_result()
}?;
Ok(self)
}
/// Retrieves the size of the session ticket.
pub fn session_ticket_length(&self) -> Result<usize, Error> {
let len =
unsafe { s2n_connection_get_session_length(self.connection.as_ptr()).into_result()? };
Ok(len.try_into().unwrap())
}
/// Serializes the session state from the connection into `output` and returns
/// the length of the session ticket.
///
/// If the buffer does not have the size for the session_ticket,
/// `Error::INVALID_INPUT` is returned.
///
/// Note: This function is not recommended for > TLS1.2 because in TLS1.3
/// servers can send multiple session tickets and this will return only
/// the most recently received ticket.
pub fn session_ticket(&self, output: &mut [u8]) -> Result<usize, Error> {
if output.len() < self.session_ticket_length()? {
return Err(Error::INVALID_INPUT);
}
let written = unsafe {
s2n_connection_get_session(self.connection.as_ptr(), output.as_mut_ptr(), output.len())
.into_result()?
};
Ok(written.try_into().unwrap())
}
/// Sets a Waker on the connection context or clears it if `None` is passed.
pub fn set_waker(&mut self, waker: Option<&Waker>) -> Result<&mut Self, Error> {
let ctx = self.context_mut();
if let Some(waker) = waker {
if let Some(prev_waker) = ctx.waker.as_mut() {
// only replace the Waker if they dont reference the same task
if !prev_waker.will_wake(waker) {
prev_waker.clone_from(waker);
}
} else {
ctx.waker = Some(waker.clone());
}
} else {
ctx.waker = None;
}
Ok(self)
}
/// Returns the Waker set on the connection context.
pub fn waker(&self) -> Option<&Waker> {
let ctx = self.context();
ctx.waker.as_ref()
}
/// Takes the [`Option::take`] the connection_future stored on the
/// connection context.
///
/// If the Future returns `Poll::Pending` and has not completed, then it
/// should be re-set using [`Self::set_connection_future()`]
fn take_async_callback(&mut self) -> Option<AsyncCallback> {
let ctx = self.context_mut();
ctx.async_callback.take()
}
/// Sets a `connection_future` on the connection context.
pub(crate) fn set_async_callback(&mut self, callback: AsyncCallback) {
let ctx = self.context_mut();
debug_assert!(ctx.async_callback.is_none());
ctx.async_callback = Some(callback);
}
/// Retrieve a mutable reference to the [`Context`] stored on the connection.
fn context_mut(&mut self) -> &mut Context {
unsafe {
let ctx = s2n_connection_get_ctx(self.connection.as_ptr())
.into_result()
.unwrap();
&mut *(ctx.as_ptr() as *mut Context)
}
}
/// Retrieve a reference to the [`Context`] stored on the connection.
fn context(&self) -> &Context {
unsafe {
let ctx = s2n_connection_get_ctx(self.connection.as_ptr())
.into_result()
.unwrap();
&*(ctx.as_ptr() as *mut Context)
}
}
/// Mark that the server_name extension was used to configure the connection.
pub fn server_name_extension_used(&mut self) {
// TODO: requiring the application to call this method is a pretty sharp edge.
// Figure out if its possible to automatically call this from the Rust bindings.
unsafe {
s2n_connection_server_name_extension_used(self.connection.as_ptr())
.into_result()
.unwrap();
}
}
/// Check if client auth was used for a connection.
///
/// This is only relevant if [`ClientAuthType::Optional] was used.
pub fn client_cert_used(&self) -> bool {
unsafe { s2n_connection_client_cert_used(self.connection.as_ptr()) == 1 }
}
/// Retrieves the raw bytes of the client cert chain received from the peer, if present.
pub fn client_cert_chain_bytes(&self) -> Result<Option<&[u8]>, Error> {
if !self.client_cert_used() {
return Ok(None);
}
let mut chain = std::ptr::null_mut();
let mut len = 0;
unsafe {
s2n_connection_get_client_cert_chain(self.connection.as_ptr(), &mut chain, &mut len)
.into_result()?;
}
if chain.is_null() || len == 0 {
return Ok(None);
}
unsafe { Ok(Some(std::slice::from_raw_parts(chain, len as usize))) }
}
// The memory backing the ClientHello is owned by the Connection, so we
// tie the ClientHello to the lifetime of the Connection. This is validated
// with a doc test that ensures the ClientHello is invalid once the
// connection has gone out of scope.
//
/// Returns a reference to the ClientHello associated with the connection.
/// ```compile_fail
/// use s2n_tls::client_hello::ClientHello;
/// use s2n_tls::connection::Connection;
/// use s2n_tls::enums::Mode;
///
/// let mut conn = Connection::new(Mode::Server);
/// let mut client_hello: &ClientHello = conn.client_hello().unwrap();
/// drop(conn);
/// client_hello.raw_message();
/// ```
///
/// The compilation could be failing for a variety of reasons, so make sure
/// that the test case is actually good.
/// ```no_run
/// use s2n_tls::client_hello::ClientHello;
/// use s2n_tls::connection::Connection;
/// use s2n_tls::enums::Mode;
///
/// let mut conn = Connection::new(Mode::Server);
/// let mut client_hello: &ClientHello = conn.client_hello().unwrap();
/// client_hello.raw_message();
/// drop(conn);
/// ```
pub fn client_hello(&self) -> Result<&crate::client_hello::ClientHello, Error> {
let mut handle =
unsafe { s2n_connection_get_client_hello(self.connection.as_ptr()).into_result()? };
Ok(crate::client_hello::ClientHello::from_ptr(unsafe {
handle.as_mut()
}))
}
pub(crate) fn mark_client_hello_cb_done(&mut self) -> Result<(), Error> {
unsafe {
s2n_client_hello_cb_done(self.connection.as_ptr()).into_result()?;
}
Ok(())
}
/// Access the protocol version selected for the connection.
pub fn actual_protocol_version(&self) -> Result<Version, Error> {
let version = unsafe {
s2n_connection_get_actual_protocol_version(self.connection.as_ptr()).into_result()?
};
version.try_into()
}
/// Detects if the client hello is using the SSLv2 format.
///
/// s2n-tls will not negotiate SSLv2, but will accept SSLv2 ClientHellos
/// advertising a higher protocol version like SSLv3 or TLS1.0.
/// [Connection::actual_protocol_version()] can be used to retrieve the
/// protocol version that is actually used on the connection.
pub fn client_hello_is_sslv2(&self) -> Result<bool, Error> {
let version = unsafe {
s2n_connection_get_client_hello_version(self.connection.as_ptr()).into_result()?
};
let version: Version = version.try_into()?;
Ok(version == Version::SSLV2)
}
pub fn handshake_type(&self) -> Result<&str, Error> {
let handshake = unsafe {
s2n_connection_get_handshake_type_name(self.connection.as_ptr()).into_result()?
};
unsafe {
// SAFETY: Constructed strings have a null byte appended to them.
// SAFETY: The data has a 'static lifetime, because it resides in a
// static char array, and is never modified after its initial
// creation.
const_str!(handshake)
}
}
pub fn cipher_suite(&self) -> Result<&str, Error> {
let cipher = unsafe { s2n_connection_get_cipher(self.connection.as_ptr()).into_result()? };
unsafe {
// SAFETY: The data is null terminated because it is declared as a C
// string literal.
// SAFETY: cipher has a static lifetime because it lives on s2n_cipher_suite,
// a static struct.
const_str!(cipher)
}
}
pub fn selected_curve(&self) -> Result<&str, Error> {
let curve = unsafe { s2n_connection_get_curve(self.connection.as_ptr()).into_result()? };
unsafe {
// SAFETY: The data is null terminated because it is declared as a C
// string literal.
// SAFETY: curve has a static lifetime because it lives on s2n_ecc_named_curve,
// which is a static const struct.
const_str!(curve)
}
}
pub fn selected_signature_algorithm(&self) -> Result<SignatureAlgorithm, Error> {
let mut sig_alg = s2n_tls_signature_algorithm::ANONYMOUS;
unsafe {
s2n_connection_get_selected_signature_algorithm(self.connection.as_ptr(), &mut sig_alg)
.into_result()?;
}
sig_alg.try_into()
}
pub fn selected_hash_algorithm(&self) -> Result<HashAlgorithm, Error> {
let mut hash_alg = s2n_tls_hash_algorithm::NONE;
unsafe {
s2n_connection_get_selected_digest_algorithm(self.connection.as_ptr(), &mut hash_alg)
.into_result()?;
}
hash_alg.try_into()
}
pub fn selected_client_signature_algorithm(&self) -> Result<Option<SignatureAlgorithm>, Error> {
let mut sig_alg = s2n_tls_signature_algorithm::ANONYMOUS;
unsafe {
s2n_connection_get_selected_client_cert_signature_algorithm(
self.connection.as_ptr(),
&mut sig_alg,
)
.into_result()?;
}
Ok(match sig_alg {
s2n_tls_signature_algorithm::ANONYMOUS => None,
sig_alg => Some(sig_alg.try_into()?),
})
}
pub fn selected_client_hash_algorithm(&self) -> Result<Option<HashAlgorithm>, Error> {
let mut hash_alg = s2n_tls_hash_algorithm::NONE;
unsafe {
s2n_connection_get_selected_client_cert_digest_algorithm(
self.connection.as_ptr(),
&mut hash_alg,
)
.into_result()?;
}
Ok(match hash_alg {
s2n_tls_hash_algorithm::NONE => None,
hash_alg => Some(hash_alg.try_into()?),
})
}
pub fn application_protocol(&self) -> Option<&[u8]> {
let protocol = unsafe { s2n_get_application_protocol(self.connection.as_ptr()) };
if protocol.is_null() {
return None;
}
Some(unsafe { CStr::from_ptr(protocol).to_bytes() })
}
/// Provides access to the TLS-Exporter functionality.
///
/// See https://datatracker.ietf.org/doc/html/rfc5705 and https://www.rfc-editor.org/rfc/rfc8446.
///
/// This is currently only available with TLS 1.3 connections which have finished a handshake.
pub fn tls_exporter(
&self,
label: &[u8],
context: &[u8],
output: &mut [u8],
) -> Result<(), Error> {
unsafe {
s2n_connection_tls_exporter(
self.connection.as_ptr(),
label.as_ptr(),
label.len().try_into().map_err(|_| Error::INVALID_INPUT)?,
context.as_ptr(),
context.len().try_into().map_err(|_| Error::INVALID_INPUT)?,
output.as_mut_ptr(),
output.len().try_into().map_err(|_| Error::INVALID_INPUT)?,
)
.into_result()
.map(|_| ())
}
}
/// Returns the validated peer certificate chain.
// 'static lifetime is because this copies the certificate chain from the connection into a new
// chain, so the lifetime is independent of the connection.
pub fn peer_cert_chain(&self) -> Result<CertificateChain<'static>, Error> {
unsafe {
let mut chain = CertificateChain::new()?;
s2n_connection_get_peer_cert_chain(
self.connection.as_ptr(),
chain.as_mut_ptr().as_ptr(),
)
.into_result()
.map(|_| ())?;
Ok(chain)
}
}
/// Get the certificate used during the TLS handshake
///
/// - If `self` is a server connection, the certificate selected will depend on the
/// ServerName sent by the client and supported ciphers.
/// - If `self` is a client connection, the certificate sent in response to a CertificateRequest
/// message is returned. Currently s2n-tls supports loading only one certificate in client mode. Note that
/// not all TLS endpoints will request a certificate.
pub fn selected_cert(&self) -> Option<CertificateChain<'_>> {
unsafe {
// The API only returns null, no error is actually set.
// Clippy doesn't realize from_ptr_reference is unsafe.
#[allow(clippy::manual_map)]
if let Some(ptr) =
NonNull::new(s2n_connection_get_selected_cert(self.connection.as_ptr()))
{
Some(CertificateChain::from_ptr_reference(ptr))
} else {
None
}
}
}
pub fn master_secret(&self) -> Result<Vec<u8>, Error> {
// TLS1.2 master secrets are always 48 bytes
let mut secret = vec![0; 48];
unsafe {
s2n_connection_get_master_secret(
self.connection.as_ptr(),
secret.as_mut_ptr(),
secret.len(),
)
.into_result()?;
}
Ok(secret)
}
/// Retrieves the size of the serialized connection
pub fn serialization_length(&self) -> Result<usize, Error> {
unsafe {
let mut length = 0;
s2n_connection_serialization_length(self.connection.as_ptr(), &mut length)
.into_result()?;
Ok(length.try_into().unwrap())
}
}
/// Serializes the TLS connection into the provided buffer
pub fn serialize(&self, output: &mut [u8]) -> Result<(), Error> {
unsafe {
s2n_connection_serialize(
self.connection.as_ptr(),
output.as_mut_ptr(),
output.len().try_into().map_err(|_| Error::INVALID_INPUT)?,
)
.into_result()?;
Ok(())
}
}
/// Deserializes the input buffer into a new TLS connection that can send/recv
/// data from the original peer.
pub fn deserialize(&mut self, input: &[u8]) -> Result<(), Error> {
let size = input.len();
/* This is not ideal, we know that s2n_connection_deserialize will not mutate the
* input value, however, the mut is needed to use the stuffer functions. */
let input = input.as_ptr() as *mut u8;
unsafe {
s2n_connection_deserialize(
self.as_ptr(),
input,
size.try_into().map_err(|_| Error::INVALID_INPUT)?,
)
.into_result()?;
Ok(())
}
}
/// Determines whether the connection was resumed from an earlier handshake.
pub fn resumed(&self) -> bool {
unsafe { s2n_connection_is_session_resumed(self.connection.as_ptr()) == 1 }
}
/// Associates an arbitrary application context with the Connection to be later retrieved via
/// the [`Self::application_context()`] and [`Self::application_context_mut()`] APIs.
///
/// This API will override an existing application context set on the Connection.
pub fn set_application_context<T: Send + Sync + 'static>(&mut self, app_context: T) {
self.context_mut().app_context = Some(Box::new(app_context));
}
/// Retrieves a reference to the application context associated with the Connection.
///
/// If an application context hasn't already been set on the Connection, or if the set
/// application context isn't of type T, None will be returned.
///
/// To set a context on the connection, use [`Self::set_application_context()`]. To retrieve a
/// mutable reference to the context, use [`Self::application_context_mut()`].
pub fn application_context<T: Send + Sync + 'static>(&self) -> Option<&T> {
match self.context().app_context.as_ref() {
None => None,
// The Any trait keeps track of the application context's type. downcast_ref() returns
// Some only if the correct type is provided:
// https://doc.rust-lang.org/std/any/trait.Any.html#method.downcast_ref
Some(app_context) => app_context.downcast_ref::<T>(),
}
}
/// Retrieves a mutable reference to the application context associated with the Connection.
///
/// If an application context hasn't already been set on the Connection, or if the set
/// application context isn't of type T, None will be returned.
///
/// To set a context on the connection, use [`Self::set_application_context()`]. To retrieve an
/// immutable reference to the context, use [`Self::application_context()`].
pub fn application_context_mut<T: Send + Sync + 'static>(&mut self) -> Option<&mut T> {
match self.context_mut().app_context.as_mut() {
None => None,
Some(app_context) => app_context.downcast_mut::<T>(),
}
}
}
struct Context {
mode: Mode,
waker: Option<Waker>,
async_callback: Option<AsyncCallback>,
verify_host_callback: Option<Box<dyn VerifyHostNameCallback>>,
connection_initialized: bool,
app_context: Option<Box<dyn Any + Send + Sync>>,
}
impl Context {
fn new(mode: Mode) -> Self {
Context {
mode,
waker: None,
async_callback: None,
verify_host_callback: None,
connection_initialized: false,
app_context: None,
}
}
}
#[cfg(feature = "quic")]
impl Connection {
pub fn enable_quic(&mut self) -> Result<&mut Self, Error> {
unsafe { s2n_connection_enable_quic(self.connection.as_ptr()).into_result() }?;
Ok(self)
}
pub fn set_quic_transport_parameters(&mut self, buffer: &[u8]) -> Result<&mut Self, Error> {
unsafe {
s2n_connection_set_quic_transport_parameters(
self.connection.as_ptr(),
buffer.as_ptr(),
buffer.len().try_into().map_err(|_| Error::INVALID_INPUT)?,
)
.into_result()
}?;
Ok(self)
}
pub fn quic_transport_parameters(&mut self) -> Result<&[u8], Error> {
let mut ptr = core::ptr::null();
let mut len = 0;
unsafe {
s2n_connection_get_quic_transport_parameters(
self.connection.as_ptr(),
&mut ptr,
&mut len,
)
.into_result()
}?;
let buffer = unsafe { core::slice::from_raw_parts(ptr, len as _) };
Ok(buffer)
}
/// # Safety
///
/// The `context` pointer must live at least as long as the connection
pub unsafe fn set_secret_callback(
&mut self,
callback: s2n_secret_cb,
context: *mut c_void,
) -> Result<&mut Self, Error> {
s2n_connection_set_secret_callback(self.connection.as_ptr(), callback, context)
.into_result()?;
Ok(self)
}
pub fn quic_process_post_handshake_message(&mut self) -> Result<&mut Self, Error> {
let mut blocked = s2n_blocked_status::NOT_BLOCKED;
unsafe {
s2n_recv_quic_post_handshake_message(self.connection.as_ptr(), &mut blocked)
.into_result()
}?;
Ok(self)
}
/// Allows the quic library to check if session tickets are expected
pub fn are_session_tickets_enabled(&self) -> bool {
unsafe { s2n_connection_are_session_tickets_enabled(self.connection.as_ptr()) }
}
}
impl AsRef<Connection> for Connection {
fn as_ref(&self) -> &Connection {
self
}
}
impl AsMut<Connection> for Connection {
fn as_mut(&mut self) -> &mut Connection {
self
}
}
impl Drop for Connection {
fn drop(&mut self) {
// ignore failures since there's not much we can do about it
unsafe {
// clean up context
let prev_ctx = self.context_mut();
drop(Box::from_raw(prev_ctx));
let _ = s2n_connection_set_ctx(self.connection.as_ptr(), core::ptr::null_mut())
.into_result();
// cleanup config
let _ = self.drop_config();
// cleanup connection
let _ = s2n_connection_free(self.connection.as_ptr()).into_result();
}
}
}
#[cfg(test)]
mod tests {
use super::*;
// ensure the connection context is send
#[test]
fn context_send_test() {
fn assert_send<T: 'static + Send>() {}
assert_send::<Context>();
}
// ensure the connection context is sync
#[test]
fn context_sync_test() {
fn assert_sync<T: 'static + Sync>() {}
assert_sync::<Context>();
}
/// Test that an application context can be set and retrieved.
#[test]
fn test_app_context_set_and_retrieve() {
let mut connection = Connection::new_server();
// Before a context is set, None is returned.
assert!(connection.application_context::<u32>().is_none());
let test_value: u32 = 1142;
connection.set_application_context(test_value);
// After a context is set, the application data is returned.
assert_eq!(*connection.application_context::<u32>().unwrap(), 1142);
}
/// Test that an application context can be modified.
#[test]
fn test_app_context_modify() {
let test_value: u64 = 0;
let mut connection = Connection::new_server();
connection.set_application_context(test_value);
let context_value = connection.application_context_mut::<u64>().unwrap();
*context_value += 1;
assert_eq!(*connection.application_context::<u64>().unwrap(), 1);
}
/// Test that an application context can be overridden.
#[test]
fn test_app_context_override() {
let mut connection = Connection::new_server();
let test_value: u16 = 1142;
connection.set_application_context(test_value);
assert_eq!(*connection.application_context::<u16>().unwrap(), 1142);
// Override the context with a new value.
let test_value: u16 = 10;
connection.set_application_context(test_value);
assert_eq!(*connection.application_context::<u16>().unwrap(), 10);
// Override the context with a new type.
let test_value: i16 = -20;
connection.set_application_context(test_value);
assert_eq!(*connection.application_context::<i16>().unwrap(), -20);
}
/// Test that a context of another type can't be retrieved.
#[test]
fn test_app_context_invalid_type() {
let mut connection = Connection::new_server();
let test_value: u32 = 0;
connection.set_application_context(test_value);
// A context type that wasn't set shouldn't be returned.
assert!(connection.application_context::<i16>().is_none());
// Retrieving the correct type succeeds.
assert!(connection.application_context::<u32>().is_some());
}
}