netstack3_base/tcp/seqnum.rs
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
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//! TCP sequence numbers and operations on them.
use core::convert::TryFrom as _;
use core::num::TryFromIntError;
use core::ops;
use explicit::ResultExt as _;
/// Sequence number of a transferred TCP segment.
///
/// Per https://tools.ietf.org/html/rfc793#section-3.3:
/// This space ranges from 0 to 2**32 - 1. Since the space is finite, all
/// arithmetic dealing with sequence numbers must be performed modulo 2**32.
/// This unsigned arithmetic preserves the relationship of sequence numbers
/// as they cycle from 2**32 - 1 to 0 again. There are some subtleties to
/// computer modulo arithmetic, so great care should be taken in programming
/// the comparison of such values.
///
/// For any sequence number, there are 2**31 numbers after it and 2**31 - 1
/// numbers before it.
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
pub struct SeqNum(u32);
impl ops::Add<i32> for SeqNum {
type Output = SeqNum;
fn add(self, rhs: i32) -> Self::Output {
let Self(lhs) = self;
Self(lhs.wrapping_add_signed(rhs))
}
}
impl ops::Sub<i32> for SeqNum {
type Output = SeqNum;
fn sub(self, rhs: i32) -> Self::Output {
let Self(lhs) = self;
Self(lhs.wrapping_add_signed(rhs.wrapping_neg()))
}
}
impl ops::Add<u32> for SeqNum {
type Output = SeqNum;
fn add(self, rhs: u32) -> Self::Output {
let Self(lhs) = self;
Self(lhs.wrapping_add(rhs))
}
}
impl ops::Sub<u32> for SeqNum {
type Output = SeqNum;
fn sub(self, rhs: u32) -> Self::Output {
let Self(lhs) = self;
Self(lhs.wrapping_sub(rhs))
}
}
impl ops::Sub<WindowSize> for SeqNum {
type Output = SeqNum;
fn sub(self, WindowSize(wnd): WindowSize) -> Self::Output {
// The conversion from u32 to i32 will never truncate because the
// maximum window size is less than 2^30, which will comfortably fit
// into an i32.
self - i32::try_from(wnd).unwrap()
}
}
impl ops::Add<usize> for SeqNum {
type Output = SeqNum;
fn add(self, rhs: usize) -> Self::Output {
// The following `as` coercion is sound because:
// 1. if `u32` is wider than `usize`, the unsigned extension will
// result in the same number.
// 2. if `usize` is wider than `u32`, then `rhs` can be written as
// `A * 2 ^ 32 + B`. Because of the wrapping nature of sequnce
// numbers, the effect of adding `rhs` is the same as adding `B`
// which is the number after the truncation, i.e., `rhs as u32`.
self + (rhs as u32)
}
}
impl ops::Sub for SeqNum {
// `i32` is more intuitive than `u32`, since subtraction may yield negative
// values.
type Output = i32;
fn sub(self, rhs: Self) -> Self::Output {
let Self(lhs) = self;
let Self(rhs) = rhs;
// The following `as` coercion is sound because:
// Rust uses 2's complement for signed integers [1], meaning when cast
// to an `i32, an `u32` >= 1<<32 becomes negative and an `u32` < 1<<32
// becomes positive. `wrapping_sub` ensures that if `rhs` is a `SeqNum`
// after `lhs`, the result will wrap into the `u32` space > 1<<32.
// Recall that `SeqNums` are only valid for a `WindowSize` < 1<<31; this
// prevents the difference of `wrapping_sub` from being so large that it
// wraps into the `u32` space < 1<<32.
// [1]: https://doc.rust-lang.org/reference/types/numeric.html
lhs.wrapping_sub(rhs) as i32
}
}
impl From<u32> for SeqNum {
fn from(x: u32) -> Self {
Self::new(x)
}
}
impl From<SeqNum> for u32 {
fn from(x: SeqNum) -> Self {
let SeqNum(x) = x;
x
}
}
impl SeqNum {
/// Creates a new sequence number.
pub const fn new(x: u32) -> Self {
Self(x)
}
}
impl SeqNum {
/// A predicate for whether a sequence number is before the other.
///
/// Please refer to [`SeqNum`] for the defined order.
pub fn before(self, other: SeqNum) -> bool {
self - other < 0
}
/// A predicate for whether a sequence number is after the other.
///
/// Please refer to [`SeqNum`] for the defined order.
pub fn after(self, other: SeqNum) -> bool {
self - other > 0
}
}
/// A witness type for TCP window size.
///
/// Per [RFC 7323 Section 2.3]:
/// > ..., the above constraints imply that two times the maximum window size
/// > must be less than 2^31, or
/// > max window < 2^30
///
/// [RFC 7323 Section 2.3]: https://tools.ietf.org/html/rfc7323#section-2.3
#[derive(Debug, PartialEq, Eq, Clone, Copy, PartialOrd, Ord)]
pub struct WindowSize(u32);
impl WindowSize {
/// The largest possible window size.
pub const MAX: WindowSize = WindowSize(1 << 30 - 1);
/// The smallest possible window size.
pub const ZERO: WindowSize = WindowSize(0);
/// The Netstack3 default window size.
// TODO(https://github.com/rust-lang/rust/issues/67441): put this constant
// in the state module once `Option::unwrap` is stable.
pub const DEFAULT: WindowSize = WindowSize(65535);
/// Create a new `WindowSize` from the provided `u32`.
///
/// If the provided window size is out of range, then `None` is returned.
pub const fn from_u32(wnd: u32) -> Option<Self> {
let WindowSize(max) = Self::MAX;
if wnd > max {
None
} else {
Some(Self(wnd))
}
}
/// Add a `u32` to this WindowSize, saturating at [`WindowSize::MAX`].
pub fn saturating_add(self, rhs: u32) -> Self {
Self::from_u32(u32::from(self).saturating_add(rhs)).unwrap_or(Self::MAX)
}
/// Create a new [`WindowSize`], returning `None` if the argument is out of range.
pub fn new(wnd: usize) -> Option<Self> {
u32::try_from(wnd).ok_checked::<TryFromIntError>().and_then(WindowSize::from_u32)
}
/// Subtract `diff` from `self`, returning `None` if the result would be negative.
pub fn checked_sub(self, diff: usize) -> Option<Self> {
// The call to Self::new will never return None.
//
// If diff is larger than self, the checked_sub will return None. Otherwise the result must
// be less than Self::MAX, since the value of self before subtraction must be less than or
// equal to Self::MAX.
usize::from(self).checked_sub(diff).and_then(Self::new)
}
/// The window scale that needs to be advertised during the handshake.
pub fn scale(self) -> WindowScale {
let WindowSize(size) = self;
let effective_bits = u8::try_from(32 - u32::leading_zeros(size)).unwrap();
let scale = WindowScale(effective_bits.saturating_sub(16));
scale
}
}
impl ops::Add<WindowSize> for SeqNum {
type Output = SeqNum;
fn add(self, WindowSize(wnd): WindowSize) -> Self::Output {
self + wnd
}
}
impl From<WindowSize> for u32 {
fn from(WindowSize(wnd): WindowSize) -> Self {
wnd
}
}
#[cfg(any(target_pointer_width = "32", target_pointer_width = "64"))]
impl From<WindowSize> for usize {
fn from(WindowSize(wnd): WindowSize) -> Self {
wnd as usize
}
}
#[derive(Debug, PartialEq, Eq, Clone, Copy, Default)]
/// This type is a witness for a valid window scale exponent value.
///
/// Per RFC 7323 Section 2.2, the restriction is as follows:
/// The maximum scale exponent is limited to 14 for a maximum permissible
/// receive window size of 1 GiB (2^(14+16)).
pub struct WindowScale(u8);
impl WindowScale {
/// The largest possible [`WindowScale`].
pub const MAX: WindowScale = WindowScale(14);
/// The smallest possible [`WindowScale`].
pub const ZERO: WindowScale = WindowScale(0);
/// Creates a new `WindowScale`.
///
/// Returns `None` if the input exceeds the maximum possible value.
pub fn new(ws: u8) -> Option<Self> {
(ws <= Self::MAX.get()).then_some(WindowScale(ws))
}
/// Returns the inner value.
pub fn get(&self) -> u8 {
let Self(ws) = self;
*ws
}
}
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
/// Window size that is used in the window field of a TCP segment.
///
/// For connections with window scaling enabled, the receiver has to scale this
/// value back to get the real window size advertised by the peer.
pub struct UnscaledWindowSize(u16);
impl ops::Shl<WindowScale> for UnscaledWindowSize {
type Output = WindowSize;
fn shl(self, WindowScale(scale): WindowScale) -> Self::Output {
let UnscaledWindowSize(size) = self;
// `scale` is guaranteed to be <= 14, so the result must fit in a u32.
WindowSize::from_u32(u32::from(size) << scale).unwrap()
}
}
impl ops::Shr<WindowScale> for WindowSize {
type Output = UnscaledWindowSize;
fn shr(self, WindowScale(scale): WindowScale) -> Self::Output {
let WindowSize(size) = self;
UnscaledWindowSize(u16::try_from(size >> scale).unwrap_or(u16::MAX))
}
}
impl From<u16> for UnscaledWindowSize {
fn from(value: u16) -> Self {
Self(value)
}
}
impl From<UnscaledWindowSize> for u16 {
fn from(UnscaledWindowSize(value): UnscaledWindowSize) -> Self {
value
}
}
#[cfg(feature = "testutils")]
mod testutils {
use super::*;
impl UnscaledWindowSize {
/// Create a new UnscaledWindowSize.
///
/// Panics if `size` is not in range.
pub fn from_usize(size: usize) -> Self {
UnscaledWindowSize::from(u16::try_from(size).unwrap())
}
/// Create a new UnscaledWindowSize.
///
/// Panics if `size` is not in range.
pub fn from_u32(size: u32) -> Self {
UnscaledWindowSize::from(u16::try_from(size).unwrap())
}
}
}
#[cfg(test)]
mod tests {
use alloc::format;
use proptest::arbitrary::any;
use proptest::strategy::{Just, Strategy};
use proptest::test_runner::Config;
use proptest::{prop_assert, prop_assert_eq, proptest};
use proptest_support::failed_seeds_no_std;
use test_case::test_case;
use super::super::segment::MAX_PAYLOAD_AND_CONTROL_LEN;
use super::*;
fn arb_seqnum() -> impl Strategy<Value = SeqNum> {
any::<u32>().prop_map(SeqNum::from)
}
// Generates a triple (a, b, c) s.t. a < b < a + 2^30 && b < c < a + 2^30.
// This triple is used to verify that transitivity holds.
fn arb_seqnum_trans_tripple() -> impl Strategy<Value = (SeqNum, SeqNum, SeqNum)> {
arb_seqnum().prop_flat_map(|a| {
(1..=MAX_PAYLOAD_AND_CONTROL_LEN).prop_flat_map(move |diff_a_b| {
let b = a + diff_a_b;
(1..=MAX_PAYLOAD_AND_CONTROL_LEN - diff_a_b).prop_flat_map(move |diff_b_c| {
let c = b + diff_b_c;
(Just(a), Just(b), Just(c))
})
})
})
}
#[test_case(WindowSize::new(1).unwrap() => (UnscaledWindowSize::from(1), WindowScale::default()))]
#[test_case(WindowSize::new(65535).unwrap() => (UnscaledWindowSize::from(65535), WindowScale::default()))]
#[test_case(WindowSize::new(65536).unwrap() => (UnscaledWindowSize::from(32768), WindowScale::new(1).unwrap()))]
#[test_case(WindowSize::new(65537).unwrap() => (UnscaledWindowSize::from(32768), WindowScale::new(1).unwrap()))]
fn window_scale(size: WindowSize) -> (UnscaledWindowSize, WindowScale) {
let scale = size.scale();
(size >> scale, scale)
}
proptest! {
#![proptest_config(Config {
// Add all failed seeds here.
failure_persistence: failed_seeds_no_std!(),
..Config::default()
})]
#[test]
fn seqnum_ord_is_reflexive(a in arb_seqnum()) {
prop_assert_eq!(a, a)
}
#[test]
fn seqnum_ord_is_total(a in arb_seqnum(), b in arb_seqnum()) {
if a == b {
prop_assert!(!a.before(b) && !b.before(a))
} else {
prop_assert!(a.before(b) ^ b.before(a))
}
}
#[test]
fn seqnum_ord_is_transitive((a, b, c) in arb_seqnum_trans_tripple()) {
prop_assert!(a.before(b) && b.before(c) && a.before(c));
}
#[test]
fn seqnum_add_positive_greater(a in arb_seqnum(), b in 1..=i32::MAX) {
prop_assert!(a.before(a + b))
}
#[test]
fn seqnum_add_negative_smaller(a in arb_seqnum(), b in i32::MIN..=-1) {
prop_assert!(a.after(a + b))
}
#[test]
fn seqnum_sub_positive_smaller(a in arb_seqnum(), b in 1..=i32::MAX) {
prop_assert!(a.after(a - b))
}
#[test]
fn seqnum_sub_negative_greater(a in arb_seqnum(), b in i32::MIN..=-1) {
prop_assert!(a.before(a - b))
}
#[test]
fn seqnum_zero_identity(a in arb_seqnum()) {
prop_assert_eq!(a, a + 0)
}
#[test]
fn seqnum_before_after_inverse(a in arb_seqnum(), b in arb_seqnum()) {
prop_assert_eq!(a.after(b), b.before(a))
}
#[test]
fn seqnum_wraps_around_at_max_length(a in arb_seqnum()) {
prop_assert!(a.before(a + MAX_PAYLOAD_AND_CONTROL_LEN));
prop_assert!(a.after(a + MAX_PAYLOAD_AND_CONTROL_LEN + 1));
}
#[test]
fn window_size_less_than_or_eq_to_max(wnd in 0..=WindowSize::MAX.0) {
prop_assert_eq!(WindowSize::from_u32(wnd), Some(WindowSize(wnd)));
}
#[test]
fn window_size_greater_than_max(wnd in WindowSize::MAX.0+1..=u32::MAX) {
prop_assert_eq!(WindowSize::from_u32(wnd), None);
}
}
}