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
use std::convert::TryFrom;
use std::ops::Deref;
use regex::Regex;
use cjdns_crypto::hash::sha512;
use crate::{
CJDNSPublicKey,
errors::{KeyCreationError, Result},
utils::{debug_fmt, slice_to_array16, vec_to_array16},
};
lazy_static! {
static ref IP6_RE: Regex = Regex::new("^fc[0-9a-f]{2}:(?:[0-9a-f]{4}:){6}[0-9a-f]{4}$").expect("bad regexp");
}
#[allow(non_camel_case_types)]
#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct CJDNS_IP6 {
k: [u8; 16],
}
impl CJDNS_IP6 {
pub const SIZE: usize = 16;
const FIRST_BYTE: u8 = 0xFC;
}
impl TryFrom<&CJDNSPublicKey> for CJDNS_IP6 {
type Error = KeyCreationError;
fn try_from(value: &CJDNSPublicKey) -> Result<Self> {
let pub_key_double_hash = sha512::hash(&sha512::hash(&value).0);
Self::try_from(&pub_key_double_hash[..Self::SIZE])
}
}
impl TryFrom<&[u8]> for CJDNS_IP6 {
type Error = KeyCreationError;
fn try_from(bytes: &[u8]) -> Result<Self> {
if bytes.len() != Self::SIZE {
return Err(KeyCreationError::InvalidLength);
}
if bytes[0] == Self::FIRST_BYTE || bytes == [0; Self::SIZE] {
return Ok(CJDNS_IP6 { k: slice_to_array16(bytes) });
}
Err(KeyCreationError::ResultingIp6OutOfValidRange)
}
}
impl TryFrom<&str> for CJDNS_IP6 {
type Error = KeyCreationError;
fn try_from(value: &str) -> Result<Self> {
if IP6_RE.is_match(value) {
let ip6_joined = value.split(":").collect::<String>();
let ip6_bytes = hex::decode(ip6_joined).expect("invalid hex string");
return Ok(CJDNS_IP6 { k: vec_to_array16(ip6_bytes) });
}
Err(KeyCreationError::BadString)
}
}
impl Deref for CJDNS_IP6 {
type Target = [u8];
fn deref(&self) -> &Self::Target {
&self.k
}
}
impl std::fmt::Display for CJDNS_IP6 {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
let mut ip6_string = hex::encode(self.k);
for i in 1usize..8 {
let pos = 4 * i + i - 1;
ip6_string.insert(pos, ':');
}
f.write_str(&ip6_string)
}
}
impl std::fmt::Debug for CJDNS_IP6 {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
debug_fmt(self.k, f)
}
}
impl CJDNS_IP6 {
pub fn is_zero(&self) -> bool {
self.k == [0; 16]
}
pub fn raw(&self) -> &[u8; Self::SIZE] {
&self.k
}
}
#[cfg(test)]
mod tests {
use super::*;
fn ipv6_r(s: &'static str) -> Result<CJDNS_IP6> {
CJDNS_IP6::try_from(s)
}
fn ipv6(s: &'static str) -> CJDNS_IP6 {
ipv6_r(s).expect("bad test ipv6")
}
#[test]
fn test_ip6_from_string() {
assert!(ipv6_r("fc32:6a5d:e235:7057:e990:6398:5d7a:aa58").is_ok());
let invalid_ips = vec![
ipv6_r("fc32:6a5d7057:e990:6398:5d7a:aa58"),
ipv6_r("fc32:6a5de:235:7057:e990:6398:5d7a:aa58"),
ipv6_r("fc326a5de2357057e99063985d7aaa58"),
ipv6_r("ac32:6a5d:e235:7057:e990:6398:5d7a:aa58"),
ipv6_r("FC32:6a5d:e235:7057:e990:6398:5D7a:Aa58"),
ipv6_r("6a5d:fc32:e235:e990:7057:6398:5d7a:aa58"),
];
for err_res in invalid_ips {
assert!(err_res.is_err());
}
}
#[test]
fn to_from_bytes_ip6() {
let ip6 = ipv6("fc32:6a5d:e235:7057:e990:6398:5d7a:aa58");
let ip6_bytes = ip6.k;
assert_eq!(&*ip6, &ip6_bytes);
assert_eq!(CJDNS_IP6::try_from(ip6_bytes.as_ref()).expect("invalid ip6 bytes"), ip6);
assert_eq!(ip6.to_string(), "fc32:6a5d:e235:7057:e990:6398:5d7a:aa58".to_string());
let invalid_ip6_bytes = vec![
hex::decode("e4c53a4aa8f29325b94a74c326fd40de").expect("invalid hex string"),
hex::decode("7e413a71c767573f61277956b69ab700").expect("invalid hex string"),
];
for i in invalid_ip6_bytes {
assert!(CJDNS_IP6::try_from(i.as_slice()).is_err())
}
}
#[test]
fn test_zero_ip6() {
let zeroes = [0_u8; 16];
let zero = CJDNS_IP6::try_from(&zeroes[..]).expect("failed to construct zero IPv6");
assert!(zero.is_zero());
assert!(!ipv6("fc32:6a5d:e235:7057:e990:6398:5d7a:aa58").is_zero());
}
}