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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
mod errors;
mod network;
mod payload;
mod protocol;
use std::borrow::Cow;
use std::fmt;
use std::hash::Hash;
use std::str::FromStr;
use data_encoding::Encoding;
use data_encoding_macro::new_encoding;
use fvm_ipld_encoding::strict_bytes;
use serde::{de, Deserialize, Deserializer, Serialize, Serializer};
pub use self::errors::Error;
pub use self::network::{current_network, set_current_network, Network};
pub use self::payload::{DelegatedAddress, Payload};
pub use self::protocol::Protocol;
use crate::ActorID;
const ADDRESS_ENCODER: Encoding = new_encoding! {
symbols: "abcdefghijklmnopqrstuvwxyz234567",
padding: None,
};
pub const PAYLOAD_HASH_LEN: usize = 20;
pub const SECP_PUB_LEN: usize = 65;
pub const BLS_PUB_LEN: usize = 48;
pub const MAX_SUBADDRESS_LEN: usize = 54;
pub const FIRST_NON_SINGLETON_ADDR: ActorID = 100;
lazy_static::lazy_static! {
static ref BLS_ZERO_ADDR_BYTES: [u8; BLS_PUB_LEN] = {
let bz_addr = Address::from_str("f3yaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaby2smx7a");
if let Ok(Address {payload: Payload::BLS(pubkey), ..}) = bz_addr {
pubkey
} else {
panic!("failed to parse BLS address from provided BLS_ZERO_ADDR string")
}
};
}
pub const CHECKSUM_HASH_LEN: usize = 4;
pub const MAX_ADDRESS_LEN: usize = 65;
const MAX_ADDRRESS_TEXT_LEN: usize = 138;
const MAINNET_PREFIX: &str = "f";
const TESTNET_PREFIX: &str = "t";
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq, PartialOrd, Ord)]
#[cfg_attr(feature = "testing", derive(Default))]
#[cfg_attr(feature = "arb", derive(arbitrary::Arbitrary))]
pub struct Address {
payload: Payload,
}
impl Address {
fn new(protocol: Protocol, bz: &[u8]) -> Result<Self, Error> {
Ok(Self {
payload: Payload::new(protocol, bz)?,
})
}
pub fn from_bytes(bz: &[u8]) -> Result<Self, Error> {
if bz.len() < 2 {
Err(Error::InvalidLength)
} else {
let protocol = Protocol::from_byte(bz[0]).ok_or(Error::UnknownProtocol)?;
Self::new(protocol, &bz[1..])
}
}
pub const fn new_id(id: u64) -> Self {
Self {
payload: Payload::ID(id),
}
}
pub fn new_secp256k1(pubkey: &[u8]) -> Result<Self, Error> {
if pubkey.len() != SECP_PUB_LEN {
return Err(Error::InvalidSECPLength(pubkey.len()));
}
Ok(Self {
payload: Payload::Secp256k1(address_hash(pubkey)),
})
}
pub fn new_actor(data: &[u8]) -> Self {
Self {
payload: Payload::Actor(address_hash(data)),
}
}
pub fn new_delegated(ns: ActorID, subaddress: &[u8]) -> Result<Self, Error> {
Ok(Self {
payload: Payload::Delegated(DelegatedAddress::new(ns, subaddress)?),
})
}
pub fn new_bls(pubkey: &[u8]) -> Result<Self, Error> {
if pubkey.len() != BLS_PUB_LEN {
return Err(Error::InvalidBLSLength(pubkey.len()));
}
let mut key = [0u8; BLS_PUB_LEN];
key.copy_from_slice(pubkey);
Ok(Self {
payload: Payload::BLS(key),
})
}
pub fn is_bls_zero_address(&self) -> bool {
match self.payload {
Payload::BLS(payload_bytes) => payload_bytes == *BLS_ZERO_ADDR_BYTES,
_ => false,
}
}
pub fn protocol(&self) -> Protocol {
Protocol::from(self.payload)
}
pub fn payload(&self) -> &Payload {
&self.payload
}
pub fn into_payload(self) -> Payload {
self.payload
}
pub fn payload_bytes(&self) -> Vec<u8> {
self.payload.to_raw_bytes()
}
pub fn to_bytes(self) -> Vec<u8> {
self.payload.to_bytes()
}
pub fn id(&self) -> Result<u64, Error> {
match self.payload {
Payload::ID(id) => Ok(id),
_ => Err(Error::NonIDAddress),
}
}
}
impl fmt::Display for Address {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let protocol = self.protocol();
write!(f, "{}{}", current_network().to_prefix(), protocol)?;
fn write_payload(
f: &mut fmt::Formatter<'_>,
protocol: Protocol,
prefix: Option<&[u8]>,
data: &[u8],
) -> fmt::Result {
let mut hasher = blake2b_simd::Params::new()
.hash_length(CHECKSUM_HASH_LEN)
.to_state();
hasher.update(&[protocol as u8]);
if let Some(prefix) = prefix {
hasher.update(prefix);
}
hasher.update(data);
let mut buf = Vec::with_capacity(data.len() + CHECKSUM_HASH_LEN);
buf.extend(data);
buf.extend(hasher.finalize().as_bytes());
f.write_str(&ADDRESS_ENCODER.encode(&buf))
}
match self.payload() {
Payload::ID(id) => write!(f, "{}", id),
Payload::Secp256k1(data) | Payload::Actor(data) => {
write_payload(f, protocol, None, data)
}
Payload::BLS(data) => write_payload(f, protocol, None, data),
Payload::Delegated(addr) => {
write!(f, "{}f", addr.namespace())?;
write_payload(
f,
protocol,
Some(unsigned_varint::encode::u64(
addr.namespace(),
&mut unsigned_varint::encode::u64_buffer(),
)),
addr.subaddress(),
)
}
}
}
}
#[cfg(feature = "arb")]
impl quickcheck::Arbitrary for Address {
fn arbitrary(g: &mut quickcheck::Gen) -> Self {
Self {
payload: Payload::arbitrary(g),
}
}
}
pub(self) fn parse_address(addr: &str) -> Result<(Address, Network), Error> {
if addr.len() > MAX_ADDRRESS_TEXT_LEN || addr.len() < 3 {
return Err(Error::InvalidLength);
}
let network = Network::from_prefix(addr.get(0..1).ok_or(Error::UnknownNetwork)?)?;
let protocol: Protocol = match addr.get(1..2).ok_or(Error::UnknownProtocol)? {
"0" => Protocol::ID,
"1" => Protocol::Secp256k1,
"2" => Protocol::Actor,
"3" => Protocol::BLS,
"4" => Protocol::Delegated,
_ => {
return Err(Error::UnknownProtocol);
}
};
fn validate_and_split_checksum<'a>(
protocol: Protocol,
prefix: Option<&[u8]>,
payload: &'a [u8],
) -> Result<&'a [u8], Error> {
if payload.len() < CHECKSUM_HASH_LEN {
return Err(Error::InvalidLength);
}
let (payload, csum) = payload.split_at(payload.len() - CHECKSUM_HASH_LEN);
let mut hasher = blake2b_simd::Params::new()
.hash_length(CHECKSUM_HASH_LEN)
.to_state();
hasher.update(&[protocol as u8]);
if let Some(prefix) = prefix {
hasher.update(prefix);
}
hasher.update(payload);
if hasher.finalize().as_bytes() != csum {
return Err(Error::InvalidChecksum);
}
Ok(payload)
}
let raw = addr.get(2..).ok_or(Error::InvalidPayload)?;
let addr = match protocol {
Protocol::ID => {
if raw.len() > 20 {
return Err(Error::InvalidLength);
}
let id = raw.parse::<u64>()?;
Address {
payload: Payload::ID(id),
}
}
Protocol::Delegated => {
let (id, subaddr) = raw.split_once('f').ok_or(Error::InvalidPayload)?;
if id.len() > 20 {
return Err(Error::InvalidLength);
}
let id = id.parse::<u64>()?;
let subaddr_csum = ADDRESS_ENCODER.decode(subaddr.as_bytes())?;
let subaddr = validate_and_split_checksum(
protocol,
Some(unsigned_varint::encode::u64(
id,
&mut unsigned_varint::encode::u64_buffer(),
)),
&subaddr_csum,
)?;
Address {
payload: Payload::Delegated(DelegatedAddress::new(id, subaddr)?),
}
}
Protocol::Secp256k1 | Protocol::Actor | Protocol::BLS => {
let payload_csum = ADDRESS_ENCODER.decode(raw.as_bytes())?;
let payload = validate_and_split_checksum(protocol, None, &payload_csum)?;
if match protocol {
Protocol::Secp256k1 | Protocol::Actor => PAYLOAD_HASH_LEN,
Protocol::BLS => BLS_PUB_LEN,
_ => unreachable!(),
} != payload.len()
{
return Err(Error::InvalidPayload);
}
Address::new(protocol, payload)?
}
};
Ok((addr, network))
}
impl FromStr for Address {
type Err = Error;
fn from_str(addr: &str) -> Result<Self, Error> {
current_network().parse_address(addr)
}
}
impl Serialize for Address {
fn serialize<S>(&self, s: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
let address_bytes = self.to_bytes();
strict_bytes::Serialize::serialize(&address_bytes, s)
}
}
impl<'de> Deserialize<'de> for Address {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
let bz: Cow<'de, [u8]> = strict_bytes::Deserialize::deserialize(deserializer)?;
Address::from_bytes(&bz).map_err(de::Error::custom)
}
}
pub(crate) fn to_leb_bytes(id: u64) -> Vec<u8> {
unsigned_varint::encode::u64(id, &mut unsigned_varint::encode::u64_buffer()).into()
}
pub(crate) fn from_leb_bytes(bz: &[u8]) -> Result<u64, Error> {
let (id, remaining) = unsigned_varint::decode::u64(bz)?;
if !remaining.is_empty() {
return Err(Error::InvalidPayload);
}
Ok(id)
}
#[cfg(test)]
mod tests {
use crate::address::errors::Error;
use crate::address::{from_leb_bytes, to_leb_bytes};
#[test]
fn test_from_leb_bytes_passing() {
let passing = vec![67];
assert_eq!(to_leb_bytes(from_leb_bytes(&passing).unwrap()), vec![67]);
}
#[test]
fn test_from_leb_bytes_extra_bytes() {
let extra_bytes = vec![67, 0, 1, 2];
match from_leb_bytes(&extra_bytes) {
Ok(id) => {
println!(
"Successfully decoded bytes when it was not supposed to. Result was: {:?}",
&to_leb_bytes(id)
);
panic!();
}
Err(e) => {
assert_eq!(e, Error::InvalidPayload);
}
}
}
#[test]
fn test_from_leb_bytes_minimal_encoding() {
let minimal_encoding = vec![67, 0, 130, 0];
match from_leb_bytes(&minimal_encoding) {
Ok(id) => {
println!(
"Successfully decoded bytes when it was not supposed to. Result was: {:?}",
&to_leb_bytes(id)
);
panic!();
}
Err(e) => {
assert_eq!(e, Error::InvalidPayload);
}
}
}
}
fn address_hash(ingest: &[u8]) -> [u8; 20] {
let digest = blake2b_simd::Params::new()
.hash_length(PAYLOAD_HASH_LEN)
.to_state()
.update(ingest)
.finalize();
let mut hash = [0u8; 20];
hash.copy_from_slice(digest.as_bytes());
hash
}