use std::sync::Arc;
use crate::types::misc::LongIdent;
use crate::{Error, NetdocErrorKind, Pos, Result};
use base64ct::Encoding;
use tor_basic_utils::intern::InternCache;
use tor_llcrypto::pk::ed25519::{ED25519_ID_LEN, Ed25519Identity};
use tor_llcrypto::pk::rsa::RsaIdentity;
#[derive(Clone, Debug, Default, Hash, Eq, PartialEq)]
pub struct RelayFamily(Vec<RsaIdentity>);
static FAMILY_CACHE: InternCache<RelayFamily> = InternCache::new();
impl RelayFamily {
pub fn new() -> Self {
RelayFamily::default()
}
pub fn push(&mut self, rsa_id: RsaIdentity) {
self.0.push(rsa_id);
}
fn normalize(&mut self) {
self.0.sort();
self.0.dedup();
}
pub fn intern(mut self) -> Arc<Self> {
self.normalize();
FAMILY_CACHE.intern(self)
}
pub fn contains(&self, rsa_id: &RsaIdentity) -> bool {
self.0.contains(rsa_id)
}
pub fn members(&self) -> impl Iterator<Item = &RsaIdentity> {
self.0.iter()
}
pub fn is_empty(&self) -> bool {
self.0.is_empty()
}
}
impl std::str::FromStr for RelayFamily {
type Err = Error;
fn from_str(s: &str) -> Result<Self> {
let v: Result<Vec<RsaIdentity>> = s
.split(crate::parse::tokenize::is_sp)
.map(|e| e.parse::<LongIdent>().map(|v| v.into()))
.filter(Result::is_ok)
.collect();
Ok(RelayFamily(v?))
}
}
#[derive(Clone, Debug, Eq, PartialEq)]
#[non_exhaustive]
pub enum RelayFamilyId {
Ed25519(Ed25519Identity),
Unrecognized(String),
}
const ED25519_ID_PREFIX: &str = "ed25519:";
impl std::str::FromStr for RelayFamilyId {
type Err = Error;
fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
let mut buf = [0_u8; ED25519_ID_LEN];
if let Some(s) = s.strip_prefix(ED25519_ID_PREFIX) {
if let Ok(decoded) = base64ct::Base64Unpadded::decode(s, &mut buf) {
if let Some(ed_id) = Ed25519Identity::from_bytes(decoded) {
return Ok(RelayFamilyId::Ed25519(ed_id));
}
}
return Err(NetdocErrorKind::BadArgument
.with_msg("Invalid ed25519 family ID")
.at_pos(Pos::at(s)));
}
Ok(RelayFamilyId::Unrecognized(s.to_string()))
}
}
impl std::fmt::Display for RelayFamilyId {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
RelayFamilyId::Ed25519(id) => write!(f, "{}{}", ED25519_ID_PREFIX, id),
RelayFamilyId::Unrecognized(s) => write!(f, "{}", s),
}
}
}
impl PartialOrd for RelayFamilyId {
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
Some(Ord::cmp(self, other))
}
}
impl Ord for RelayFamilyId {
fn cmp(&self, other: &Self) -> std::cmp::Ordering {
Ord::cmp(&self.to_string(), &other.to_string())
}
}
#[cfg(test)]
mod test {
#![allow(clippy::bool_assert_comparison)]
#![allow(clippy::clone_on_copy)]
#![allow(clippy::dbg_macro)]
#![allow(clippy::mixed_attributes_style)]
#![allow(clippy::print_stderr)]
#![allow(clippy::print_stdout)]
#![allow(clippy::single_char_pattern)]
#![allow(clippy::unwrap_used)]
#![allow(clippy::unchecked_time_subtraction)]
#![allow(clippy::useless_vec)]
#![allow(clippy::needless_pass_by_value)]
use std::str::FromStr;
use super::*;
use crate::Result;
#[test]
fn family() -> Result<()> {
let f = "nickname1 nickname2 $ffffffffffffffffffffffffffffffffffffffff=foo eeeeeeeeeeeeeeeeeeeEEEeeeeeeeeeeeeeeeeee ddddddddddddddddddddddddddddddddd $cccccccccccccccccccccccccccccccccccccccc~blarg ".parse::<RelayFamily>()?;
let v = vec![
RsaIdentity::from_bytes(
&hex::decode("ffffffffffffffffffffffffffffffffffffffff").unwrap()[..],
)
.unwrap(),
RsaIdentity::from_bytes(
&hex::decode("eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee").unwrap()[..],
)
.unwrap(),
RsaIdentity::from_bytes(
&hex::decode("cccccccccccccccccccccccccccccccccccccccc").unwrap()[..],
)
.unwrap(),
];
assert_eq!(f.0, v);
Ok(())
}
#[test]
fn test_contains() -> Result<()> {
let family =
"ffffffffffffffffffffffffffffffffffffffff eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee"
.parse::<RelayFamily>()?;
let in_family = RsaIdentity::from_bytes(
&hex::decode("ffffffffffffffffffffffffffffffffffffffff").unwrap()[..],
)
.unwrap();
let not_in_family = RsaIdentity::from_bytes(
&hex::decode("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa").unwrap()[..],
)
.unwrap();
assert!(family.contains(&in_family), "Relay not found in family");
assert!(
!family.contains(¬_in_family),
"Extra relay found in family"
);
Ok(())
}
#[test]
fn mutable() {
let mut family = RelayFamily::default();
let key = RsaIdentity::from_hex("ffffffffffffffffffffffffffffffffffffffff").unwrap();
assert!(!family.contains(&key));
family.push(key);
assert!(family.contains(&key));
}
#[test]
fn family_ids() {
let ed_str_rep = "ed25519:7sToQRuge1bU2hS0CG0ViMndc4m82JhO4B4kdrQey80";
let ed_id = RelayFamilyId::from_str(ed_str_rep).unwrap();
assert!(matches!(ed_id, RelayFamilyId::Ed25519(_)));
assert_eq!(ed_id.to_string().as_str(), ed_str_rep);
let other_str_rep = "hello-world";
let other_id = RelayFamilyId::from_str(other_str_rep).unwrap();
assert!(matches!(other_id, RelayFamilyId::Unrecognized(_)));
assert_eq!(other_id.to_string().as_str(), other_str_rep);
assert_eq!(ed_id, ed_id);
assert_ne!(ed_id, other_id);
}
}