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
// Copyright 2022 Parity Technologies (UK) Ltd.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//! Mixnet sessions.
use super::{
kx_pair::KxPair, packet_queues::AuthoredPacketQueue, replay_filter::ReplayFilter,
topology::Topology,
};
use std::{
fmt,
ops::{Add, Index, IndexMut},
time::Duration,
};
pub struct Session<X> {
/// Key-exchange key pair.
pub kx_pair: KxPair,
/// Mixnode topology.
pub topology: Topology<X>,
/// Queue of packets authored by us, to be dispatched in place of drop cover traffic.
pub authored_packet_queue: AuthoredPacketQueue,
/// See [`SessionConfig`](super::config::SessionConfig::mean_authored_packet_period).
pub mean_authored_packet_period: Duration,
/// Filter applied to incoming packets to prevent replay. This is per-session because the
/// key-exchange keys are rotated every session. Note that while this always exists, for
/// sessions where we are not a mixnode, it should never contain anything, and so should not
/// cost anything ([`ReplayFilter`] lazily allocates internally).
pub replay_filter: ReplayFilter,
}
/// Absolute session index.
pub type SessionIndex = u32;
/// Relative session index.
#[derive(Clone, Copy, PartialEq, Eq)]
pub enum RelSessionIndex {
/// The current session.
Current,
/// The previous session.
Prev,
}
impl RelSessionIndex {
/// Returns the `RelSessionIndex` corresponding to `session_index`, or `None` if there is no
/// such `RelSessionIndex`.
pub fn from_session_index(
session_index: SessionIndex,
current_session_index: SessionIndex,
) -> Option<Self> {
match current_session_index.checked_sub(session_index) {
Some(0) => Some(Self::Current),
Some(1) => Some(Self::Prev),
_ => None,
}
}
}
impl Add<SessionIndex> for RelSessionIndex {
type Output = SessionIndex;
fn add(self, other: SessionIndex) -> Self::Output {
match self {
Self::Current => other,
Self::Prev => other.checked_sub(1).expect("Session index underflow"),
}
}
}
pub enum SessionSlot<X> {
Empty,
KxPair(KxPair),
/// Like [`Empty`](Self::Empty), but we should not try to create a [`Session`] struct.
Disabled,
Full(Session<X>),
}
impl<X> SessionSlot<X> {
pub fn is_empty(&self) -> bool {
matches!(self, Self::Empty)
}
pub fn as_option(&self) -> Option<&Session<X>> {
match self {
Self::Full(session) => Some(session),
_ => None,
}
}
pub fn as_mut_option(&mut self) -> Option<&mut Session<X>> {
match self {
Self::Full(session) => Some(session),
_ => None,
}
}
}
pub struct Sessions<X> {
pub current: SessionSlot<X>,
pub prev: SessionSlot<X>,
}
impl<X> Sessions<X> {
pub fn is_empty(&self) -> bool {
self.current.is_empty() && self.prev.is_empty()
}
pub fn iter(&self) -> impl Iterator<Item = &Session<X>> {
[&self.current, &self.prev]
.into_iter()
.filter_map(|session| session.as_option())
}
/// This is guaranteed to return the current session first, if it exists.
pub fn enumerate_mut(&mut self) -> impl Iterator<Item = (RelSessionIndex, &mut Session<X>)> {
[(RelSessionIndex::Current, &mut self.current), (RelSessionIndex::Prev, &mut self.prev)]
.into_iter()
.filter_map(|(index, session)| session.as_mut_option().map(|session| (index, session)))
}
}
impl<X> Index<RelSessionIndex> for Sessions<X> {
type Output = SessionSlot<X>;
fn index(&self, index: RelSessionIndex) -> &Self::Output {
match index {
RelSessionIndex::Current => &self.current,
RelSessionIndex::Prev => &self.prev,
}
}
}
impl<X> IndexMut<RelSessionIndex> for Sessions<X> {
fn index_mut(&mut self, index: RelSessionIndex) -> &mut Self::Output {
match index {
RelSessionIndex::Current => &mut self.current,
RelSessionIndex::Prev => &mut self.prev,
}
}
}
/// Each session should progress through these phases in order.
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
pub enum SessionPhase {
/// Generate cover traffic to the current session's mixnode set.
CoverToCurrent,
/// Build requests using the current session's mixnode set. The previous session's mixnode set
/// may be used if this is explicitly requested.
RequestsToCurrent,
/// Only send cover (and forwarded) traffic to the previous session's mixnode set. Any packets
/// in the authored packet queue for the previous session at this point are effectively
/// dropped.
CoverToPrev,
/// Disconnect the previous session's mixnode set.
DisconnectFromPrev,
}
impl SessionPhase {
/// Is the previous session still needed?
pub fn need_prev(self) -> bool {
self < Self::DisconnectFromPrev
}
/// Should we allow pushing to and popping from the authored packet queue for the specified
/// session?
pub fn allow_requests_and_replies(self, rel_session_index: RelSessionIndex) -> bool {
match rel_session_index {
RelSessionIndex::Prev => self < Self::CoverToPrev,
RelSessionIndex::Current => self >= Self::RequestsToCurrent,
}
}
/// Which session should requests be built for by default?
pub fn default_request_session(self) -> RelSessionIndex {
if self >= Self::RequestsToCurrent {
RelSessionIndex::Current
} else {
RelSessionIndex::Prev
}
}
}
impl fmt::Display for SessionPhase {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
match self {
Self::CoverToCurrent => write!(fmt, "Generating cover traffic to current mixnode set"),
Self::RequestsToCurrent => write!(fmt, "Building requests using current mixnode set"),
Self::CoverToPrev => write!(fmt, "Only sending cover traffic to previous mixnode set"),
Self::DisconnectFromPrev => write!(fmt, "Only using current mixnode set"),
}
}
}
/// The index and phase of the current session.
#[derive(Clone, Copy, PartialEq, Eq)]
pub struct SessionStatus {
/// Index of the current session.
pub current_index: SessionIndex,
/// Current session phase.
pub phase: SessionPhase,
}
impl fmt::Display for SessionStatus {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
write!(fmt, "Current index {}, phase: {}", self.current_index, self.phase)
}
}