mirror of
https://github.com/jmcorgan/fips.git
synced 2026-08-09 08:14:42 +00:00
Move single-consumer modules into node/:
- rate_limit.rs, wire.rs, dns.rs — exclusively used by node subsystem
- Reduces top-level lib.rs from 16 to 13 modules
Split large files into focused subdirectories:
- noise.rs (1475 lines) → noise/{mod, handshake, session, replay, tests}.rs
- tree.rs (1479 lines) → tree/{mod, coordinate, declaration, state, tests}.rs
- bloom.rs (849 lines) → bloom/{mod, filter, state, tests}.rs
- All public APIs re-exported from mod.rs, no external import changes
Remove unused rate_limit defaults:
- HANDSHAKE_TIMEOUT_SECS, MAX_PENDING_INBOUND constants
- Default constructor eliminated in favor of with_params() taking config values
Fix all clippy warnings across codebase:
- Remove .clone() on Copy types, collapse nested ifs, replace match-return-None
with ?, remove/gate unused code, fix loop indexing, remove unnecessary casts
- Box large PeerSlot enum variants to reduce size disparity
- cargo clippy --all-targets now reports zero warnings
315 lines
9.1 KiB
Rust
315 lines
9.1 KiB
Rust
//! Noise IK Protocol for Peer Authentication
|
|
//!
|
|
//! Implements the Noise Protocol Framework IK pattern using secp256k1
|
|
//! for link-local peer authentication. This establishes encrypted
|
|
//! channels between direct peers over a transport.
|
|
//!
|
|
//! The IK pattern assumes the initiator knows the responder's static
|
|
//! public key before the handshake. The responder learns the initiator's
|
|
//! identity from the encrypted payload in message 1.
|
|
//!
|
|
//! ## Handshake Pattern
|
|
//!
|
|
//! Pre-message (key known before handshake):
|
|
//! ```text
|
|
//! <- s (responder's static known to initiator)
|
|
//! ```
|
|
//!
|
|
//! Messages:
|
|
//! ```text
|
|
//! -> e, es, s, ss (initiator sends ephemeral + encrypted static)
|
|
//! <- e, ee, se (responder sends ephemeral)
|
|
//! ```
|
|
//!
|
|
//! After handshake, both parties derive symmetric keys for bidirectional
|
|
//! encrypted communication over the peer link.
|
|
//!
|
|
//! ## Separation of Concerns
|
|
//!
|
|
//! This module handles **peer authentication** only - securing the direct
|
|
//! link between neighboring nodes. End-to-end FIPS session encryption
|
|
//! between arbitrary network addresses is a separate concern handled by
|
|
//! the session layer.
|
|
|
|
mod handshake;
|
|
mod replay;
|
|
mod session;
|
|
|
|
use chacha20poly1305::{
|
|
aead::{Aead, KeyInit},
|
|
ChaCha20Poly1305, Nonce,
|
|
};
|
|
use std::fmt;
|
|
use thiserror::Error;
|
|
|
|
pub use handshake::HandshakeState;
|
|
pub use replay::ReplayWindow;
|
|
pub use session::NoiseSession;
|
|
|
|
/// Protocol name for Noise IK with secp256k1.
|
|
/// Format: Noise_IK_secp256k1_ChaChaPoly_SHA256
|
|
pub(crate) const PROTOCOL_NAME: &[u8] = b"Noise_IK_secp256k1_ChaChaPoly_SHA256";
|
|
|
|
/// Maximum message size for noise transport messages.
|
|
pub const MAX_MESSAGE_SIZE: usize = 65535;
|
|
|
|
/// Size of the AEAD tag.
|
|
pub const TAG_SIZE: usize = 16;
|
|
|
|
/// Size of a public key (compressed secp256k1).
|
|
pub const PUBKEY_SIZE: usize = 33;
|
|
|
|
/// Size of handshake message 1: ephemeral (33) + encrypted static (33 + 16 tag).
|
|
pub const HANDSHAKE_MSG1_SIZE: usize = PUBKEY_SIZE + PUBKEY_SIZE + TAG_SIZE;
|
|
|
|
/// Size of handshake message 2: ephemeral only.
|
|
pub const HANDSHAKE_MSG2_SIZE: usize = PUBKEY_SIZE;
|
|
|
|
/// Replay window size in packets (matching WireGuard).
|
|
pub const REPLAY_WINDOW_SIZE: usize = 2048;
|
|
|
|
/// Errors from Noise protocol operations.
|
|
#[derive(Debug, Error)]
|
|
pub enum NoiseError {
|
|
#[error("handshake not complete")]
|
|
HandshakeNotComplete,
|
|
|
|
#[error("handshake already complete")]
|
|
HandshakeAlreadyComplete,
|
|
|
|
#[error("wrong handshake state: expected {expected}, got {got}")]
|
|
WrongState { expected: String, got: String },
|
|
|
|
#[error("invalid public key")]
|
|
InvalidPublicKey,
|
|
|
|
#[error("decryption failed")]
|
|
DecryptionFailed,
|
|
|
|
#[error("encryption failed")]
|
|
EncryptionFailed,
|
|
|
|
#[error("message too large: {size} > {max}")]
|
|
MessageTooLarge { size: usize, max: usize },
|
|
|
|
#[error("message too short: expected at least {expected}, got {got}")]
|
|
MessageTooShort { expected: usize, got: usize },
|
|
|
|
#[error("nonce overflow")]
|
|
NonceOverflow,
|
|
|
|
#[error("replay detected: counter {0} already seen or too old")]
|
|
ReplayDetected(u64),
|
|
|
|
#[error("secp256k1 error: {0}")]
|
|
Secp256k1(#[from] secp256k1::Error),
|
|
}
|
|
|
|
/// Role in the handshake.
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
|
|
pub enum HandshakeRole {
|
|
/// We initiated the connection.
|
|
Initiator,
|
|
/// They initiated the connection.
|
|
Responder,
|
|
}
|
|
|
|
impl fmt::Display for HandshakeRole {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
match self {
|
|
HandshakeRole::Initiator => write!(f, "initiator"),
|
|
HandshakeRole::Responder => write!(f, "responder"),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Handshake state machine states.
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
|
|
pub enum HandshakeProgress {
|
|
/// Initial state, ready to send/receive message 1.
|
|
Initial,
|
|
/// Message 1 sent/received, ready for message 2.
|
|
Message1Done,
|
|
/// Handshake complete, ready for transport.
|
|
Complete,
|
|
}
|
|
|
|
impl fmt::Display for HandshakeProgress {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
match self {
|
|
HandshakeProgress::Initial => write!(f, "initial"),
|
|
HandshakeProgress::Message1Done => write!(f, "message1_done"),
|
|
HandshakeProgress::Complete => write!(f, "complete"),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Symmetric cipher state for post-handshake encryption.
|
|
#[derive(Clone)]
|
|
pub struct CipherState {
|
|
/// Encryption key (32 bytes).
|
|
key: [u8; 32],
|
|
/// Nonce counter (8 bytes used, 4 bytes zero prefix).
|
|
pub(super) nonce: u64,
|
|
/// Whether this cipher has a valid key.
|
|
has_key: bool,
|
|
}
|
|
|
|
impl CipherState {
|
|
/// Create a new cipher state with the given key.
|
|
pub(crate) fn new(key: [u8; 32]) -> Self {
|
|
Self {
|
|
key,
|
|
nonce: 0,
|
|
has_key: true,
|
|
}
|
|
}
|
|
|
|
/// Create an empty cipher state (no key yet).
|
|
pub(super) fn empty() -> Self {
|
|
Self {
|
|
key: [0u8; 32],
|
|
nonce: 0,
|
|
has_key: false,
|
|
}
|
|
}
|
|
|
|
/// Initialize with a key.
|
|
pub(super) fn initialize_key(&mut self, key: [u8; 32]) {
|
|
self.key = key;
|
|
self.nonce = 0;
|
|
self.has_key = true;
|
|
}
|
|
|
|
/// Encrypt plaintext, returning ciphertext with appended tag.
|
|
pub fn encrypt(&mut self, plaintext: &[u8]) -> Result<Vec<u8>, NoiseError> {
|
|
if !self.has_key {
|
|
// No key means no encryption (shouldn't happen in transport phase)
|
|
return Ok(plaintext.to_vec());
|
|
}
|
|
|
|
if plaintext.len() > MAX_MESSAGE_SIZE - TAG_SIZE {
|
|
return Err(NoiseError::MessageTooLarge {
|
|
size: plaintext.len(),
|
|
max: MAX_MESSAGE_SIZE - TAG_SIZE,
|
|
});
|
|
}
|
|
|
|
let cipher = ChaCha20Poly1305::new_from_slice(&self.key)
|
|
.map_err(|_| NoiseError::EncryptionFailed)?;
|
|
|
|
let nonce = self.next_nonce()?;
|
|
let ciphertext = cipher
|
|
.encrypt(&nonce, plaintext)
|
|
.map_err(|_| NoiseError::EncryptionFailed)?;
|
|
|
|
Ok(ciphertext)
|
|
}
|
|
|
|
/// Decrypt ciphertext (with appended tag), returning plaintext.
|
|
///
|
|
/// Uses the internal nonce counter. For transport phase with explicit
|
|
/// counters from the wire format, use `decrypt_with_counter` instead.
|
|
pub fn decrypt(&mut self, ciphertext: &[u8]) -> Result<Vec<u8>, NoiseError> {
|
|
if !self.has_key {
|
|
// No key means no encryption
|
|
return Ok(ciphertext.to_vec());
|
|
}
|
|
|
|
if ciphertext.len() < TAG_SIZE {
|
|
return Err(NoiseError::MessageTooShort {
|
|
expected: TAG_SIZE,
|
|
got: ciphertext.len(),
|
|
});
|
|
}
|
|
|
|
let cipher = ChaCha20Poly1305::new_from_slice(&self.key)
|
|
.map_err(|_| NoiseError::DecryptionFailed)?;
|
|
|
|
let nonce = self.next_nonce()?;
|
|
let plaintext = cipher
|
|
.decrypt(&nonce, ciphertext)
|
|
.map_err(|_| NoiseError::DecryptionFailed)?;
|
|
|
|
Ok(plaintext)
|
|
}
|
|
|
|
/// Decrypt with an explicit counter value (for transport phase).
|
|
///
|
|
/// This is used when the counter comes from the wire format rather than
|
|
/// an internal counter. The counter must be validated by a replay window
|
|
/// before calling this method.
|
|
pub fn decrypt_with_counter(
|
|
&self,
|
|
ciphertext: &[u8],
|
|
counter: u64,
|
|
) -> Result<Vec<u8>, NoiseError> {
|
|
if !self.has_key {
|
|
return Ok(ciphertext.to_vec());
|
|
}
|
|
|
|
if ciphertext.len() < TAG_SIZE {
|
|
return Err(NoiseError::MessageTooShort {
|
|
expected: TAG_SIZE,
|
|
got: ciphertext.len(),
|
|
});
|
|
}
|
|
|
|
let cipher = ChaCha20Poly1305::new_from_slice(&self.key)
|
|
.map_err(|_| NoiseError::DecryptionFailed)?;
|
|
|
|
let nonce = Self::counter_to_nonce(counter);
|
|
let plaintext = cipher
|
|
.decrypt(&nonce, ciphertext)
|
|
.map_err(|_| NoiseError::DecryptionFailed)?;
|
|
|
|
Ok(plaintext)
|
|
}
|
|
|
|
/// Convert a counter value to a nonce.
|
|
fn counter_to_nonce(counter: u64) -> Nonce {
|
|
let mut nonce_bytes = [0u8; 12];
|
|
nonce_bytes[4..12].copy_from_slice(&counter.to_le_bytes());
|
|
*Nonce::from_slice(&nonce_bytes)
|
|
}
|
|
|
|
/// Get the next nonce, incrementing the counter.
|
|
fn next_nonce(&mut self) -> Result<Nonce, NoiseError> {
|
|
if self.nonce == u64::MAX {
|
|
return Err(NoiseError::NonceOverflow);
|
|
}
|
|
|
|
let n = self.nonce;
|
|
self.nonce += 1;
|
|
|
|
// Noise uses 8-byte counter with 4-byte zero prefix
|
|
let mut nonce_bytes = [0u8; 12];
|
|
nonce_bytes[4..12].copy_from_slice(&n.to_le_bytes());
|
|
|
|
Ok(*Nonce::from_slice(&nonce_bytes))
|
|
}
|
|
|
|
/// Get the current nonce value (for debugging/testing).
|
|
pub fn nonce(&self) -> u64 {
|
|
self.nonce
|
|
}
|
|
|
|
/// Check if cipher has a key.
|
|
pub fn has_key(&self) -> bool {
|
|
self.has_key
|
|
}
|
|
}
|
|
|
|
impl fmt::Debug for CipherState {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
f.debug_struct("CipherState")
|
|
.field("nonce", &self.nonce)
|
|
.field("has_key", &self.has_key)
|
|
.field("key", &"[redacted]")
|
|
.finish()
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|