Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(s2n-quic-dc): add tests for map events #2363

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions dc/s2n-quic-dc/events/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ struct PathSecretMapBackgroundHandshakeRequested<'a> {
struct PathSecretMapEntryInserted<'a> {
peer_address: SocketAddress<'a>,

#[snapshot("[HIDDEN]")]
credential_id: &'a [u8],
}

Expand All @@ -40,6 +41,7 @@ struct PathSecretMapEntryInserted<'a> {
struct PathSecretMapEntryReady<'a> {
peer_address: SocketAddress<'a>,

#[snapshot("[HIDDEN]")]
credential_id: &'a [u8],
}

Expand All @@ -49,8 +51,10 @@ struct PathSecretMapEntryReady<'a> {
struct PathSecretMapEntryReplaced<'a> {
peer_address: SocketAddress<'a>,

#[snapshot("[HIDDEN]")]
new_credential_id: &'a [u8],

#[snapshot("[HIDDEN]")]
previous_credential_id: &'a [u8],
}

Expand All @@ -59,6 +63,8 @@ struct PathSecretMapEntryReplaced<'a> {
/// Emitted when an UnknownPathSecret packet was sent
struct UnknownPathSecretPacketSent<'a> {
peer_address: SocketAddress<'a>,

#[snapshot("[HIDDEN]")]
credential_id: &'a [u8],
}

Expand All @@ -67,6 +73,8 @@ struct UnknownPathSecretPacketSent<'a> {
/// Emitted when an UnknownPathSecret packet was received
struct UnknownPathSecretPacketReceived<'a> {
peer_address: SocketAddress<'a>,

#[snapshot("[HIDDEN]")]
credential_id: &'a [u8],
}

Expand All @@ -75,6 +83,8 @@ struct UnknownPathSecretPacketReceived<'a> {
/// Emitted when an UnknownPathSecret packet was authentic and processed
struct UnknownPathSecretPacketAccepted<'a> {
peer_address: SocketAddress<'a>,

#[snapshot("[HIDDEN]")]
credential_id: &'a [u8],
}

Expand All @@ -83,6 +93,8 @@ struct UnknownPathSecretPacketAccepted<'a> {
/// Emitted when an UnknownPathSecret packet was rejected as invalid
struct UnknownPathSecretPacketRejected<'a> {
peer_address: SocketAddress<'a>,

#[snapshot("[HIDDEN]")]
credential_id: &'a [u8],
}

Expand All @@ -91,14 +103,18 @@ struct UnknownPathSecretPacketRejected<'a> {
/// Emitted when an UnknownPathSecret packet was dropped due to a missing entry
struct UnknownPathSecretPacketDropped<'a> {
peer_address: SocketAddress<'a>,

#[snapshot("[HIDDEN]")]
credential_id: &'a [u8],
}

#[event("path_secret_map:replay_definitely_detected")]
#[subject(endpoint)]
/// Emitted when credential replay was definitely detected
struct ReplayDefinitelyDetected<'a> {
#[snapshot("[HIDDEN]")]
credential_id: &'a [u8],

key_id: u64,
}

Expand All @@ -107,8 +123,11 @@ struct ReplayDefinitelyDetected<'a> {
/// Emitted when credential replay was potentially detected, but could not be verified
/// due to a limiting tracking window
struct ReplayPotentiallyDetected<'a> {
#[snapshot("[HIDDEN]")]
credential_id: &'a [u8],

key_id: u64,

gap: u64,
}

Expand All @@ -117,6 +136,8 @@ struct ReplayPotentiallyDetected<'a> {
/// Emitted when an ReplayDetected packet was sent
struct ReplayDetectedPacketSent<'a> {
peer_address: SocketAddress<'a>,

#[snapshot("[HIDDEN]")]
credential_id: &'a [u8],
}

Expand All @@ -125,6 +146,8 @@ struct ReplayDetectedPacketSent<'a> {
/// Emitted when an ReplayDetected packet was received
struct ReplayDetectedPacketReceived<'a> {
peer_address: SocketAddress<'a>,

#[snapshot("[HIDDEN]")]
credential_id: &'a [u8],
}

Expand All @@ -133,7 +156,10 @@ struct ReplayDetectedPacketReceived<'a> {
/// Emitted when an StaleKey packet was authentic and processed
struct ReplayDetectedPacketAccepted<'a> {
peer_address: SocketAddress<'a>,

#[snapshot("[HIDDEN]")]
credential_id: &'a [u8],

key_id: u64,
}

Expand All @@ -142,6 +168,8 @@ struct ReplayDetectedPacketAccepted<'a> {
/// Emitted when an ReplayDetected packet was rejected as invalid
struct ReplayDetectedPacketRejected<'a> {
peer_address: SocketAddress<'a>,

#[snapshot("[HIDDEN]")]
credential_id: &'a [u8],
}

Expand All @@ -150,6 +178,8 @@ struct ReplayDetectedPacketRejected<'a> {
/// Emitted when an ReplayDetected packet was dropped due to a missing entry
struct ReplayDetectedPacketDropped<'a> {
peer_address: SocketAddress<'a>,

#[snapshot("[HIDDEN]")]
credential_id: &'a [u8],
}

Expand All @@ -158,6 +188,8 @@ struct ReplayDetectedPacketDropped<'a> {
/// Emitted when an StaleKey packet was sent
struct StaleKeyPacketSent<'a> {
peer_address: SocketAddress<'a>,

#[snapshot("[HIDDEN]")]
credential_id: &'a [u8],
}

Expand All @@ -166,6 +198,8 @@ struct StaleKeyPacketSent<'a> {
/// Emitted when an StaleKey packet was received
struct StaleKeyPacketReceived<'a> {
peer_address: SocketAddress<'a>,

#[snapshot("[HIDDEN]")]
credential_id: &'a [u8],
}

Expand All @@ -174,6 +208,8 @@ struct StaleKeyPacketReceived<'a> {
/// Emitted when an StaleKey packet was authentic and processed
struct StaleKeyPacketAccepted<'a> {
peer_address: SocketAddress<'a>,

#[snapshot("[HIDDEN]")]
credential_id: &'a [u8],
}

Expand All @@ -182,6 +218,8 @@ struct StaleKeyPacketAccepted<'a> {
/// Emitted when an StaleKey packet was rejected as invalid
struct StaleKeyPacketRejected<'a> {
peer_address: SocketAddress<'a>,

#[snapshot("[HIDDEN]")]
credential_id: &'a [u8],
}

Expand All @@ -190,5 +228,7 @@ struct StaleKeyPacketRejected<'a> {
/// Emitted when an StaleKey packet was dropped due to a missing entry
struct StaleKeyPacketDropped<'a> {
peer_address: SocketAddress<'a>,

#[snapshot("[HIDDEN]")]
credential_id: &'a [u8],
}
Loading
Loading