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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
use std::borrow::Borrow;
use std::convert::TryFrom;
use std::str::FromStr;
use std::fmt;
use std::io;
use crate::NodeId;
const LN_DEFAULT_PORT: u16 = 9735;
trait StringOps: AsRef<str> + Into<String> {
fn into_substring(self, start: usize, end: usize) -> String;
}
impl StringOps for String {
fn into_substring(mut self, start: usize, end: usize) -> String {
self.replace_range(0..start, "");
self.truncate(end - start);
self
}
}
impl<'a> StringOps for &'a str {
fn into_substring(self, start: usize, end: usize) -> String {
self[start..end].to_owned()
}
}
impl StringOps for Box<str> {
fn into_substring(self, start: usize, end: usize) -> String {
String::from(self).into_substring(start, end)
}
}
#[derive(Clone)]
enum HostInner {
Ip(std::net::IpAddr),
Hostname(String),
}
#[derive(Clone)]
pub struct Host(HostInner);
impl Host {
pub fn is_onion(&self) -> bool {
match &self.0 {
HostInner::Hostname(hostname) => hostname.ends_with(".onion"),
HostInner::Ip(_) => false,
}
}
pub fn is_ip_addr(&self) -> bool {
match &self.0 {
HostInner::Hostname(_) => false,
HostInner::Ip(_) => true,
}
}
}
impl fmt::Display for Host {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match &self.0 {
HostInner::Ip(addr) => fmt::Display::fmt(&addr, f),
HostInner::Hostname(addr) => fmt::Display::fmt(&addr, f),
}
}
}
pub struct HostPort<H: Borrow<Host>>(
pub H,
pub u16,
);
impl<H: Borrow<Host>> fmt::Display for HostPort<H> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match &self.0.borrow().0 {
HostInner::Ip(std::net::IpAddr::V6(addr)) => write!(f, "[{}]:{}", addr, self.1),
_ => write!(f, "{}:{}", self.0.borrow(), self.1),
}
}
}
impl From<Host> for String {
fn from(value: Host) -> Self {
match value.0 {
HostInner::Ip(ip_addr) => ip_addr.to_string(),
HostInner::Hostname(hostname) => hostname,
}
}
}
impl TryFrom<Host> for std::net::IpAddr {
type Error = NotIpAddr;
fn try_from(value: Host) -> Result<Self, Self::Error> {
match value.0 {
HostInner::Ip(ip_addr) => Ok(ip_addr),
HostInner::Hostname(hostname) => Err(NotIpAddr(hostname)),
}
}
}
#[derive(Debug)]
pub struct NotIpAddr(String);
impl fmt::Display for NotIpAddr {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "the hostname '{}' is not an IP address", self.0)
}
}
impl std::error::Error for NotIpAddr {}
#[derive(Clone)]
pub struct P2PAddress {
pub node_id: NodeId,
pub host: Host,
pub port: u16,
}
enum IpOrHostnamePos {
Ip(std::net::IpAddr),
Hostname(usize, usize),
}
impl P2PAddress {
pub fn as_host_port(&self) -> HostPort<&Host> {
HostPort(&self.host, self.port)
}
fn parse_raw(s: &str) -> Result<(NodeId, IpOrHostnamePos, u16), ParseErrorInner> {
let at_pos = s.find('@').ok_or(ParseErrorInner::MissingAtSymbol)?;
let (node_id, host_port) = s.split_at(at_pos);
let host_port = &host_port[1..];
let node_id = node_id.parse().map_err(ParseErrorInner::InvalidNodeId)?;
let (host, port) = match host_port.parse::<std::net::SocketAddr>() {
Ok(addr) => (IpOrHostnamePos::Ip(addr.ip()), addr.port()),
Err(_) if host_port.starts_with('[') && host_port.len() > 1 => {
let ip = host_port[1..(host_port.len() - 1)]
.parse::<std::net::Ipv6Addr>()
.map_err(ParseErrorInner::InvalidIpv6)?;
(IpOrHostnamePos::Ip(ip.into()), LN_DEFAULT_PORT)
},
Err(_) => {
let (end, port) = match host_port.find(':') {
Some(pos) => (pos, host_port[(pos + 1)..].parse().map_err(ParseErrorInner::InvalidPortNumber)?),
None => (host_port.len(), LN_DEFAULT_PORT),
};
(IpOrHostnamePos::Hostname(at_pos + 1, at_pos + 1 + end), port)
},
};
Ok((node_id, host, port))
}
fn internal_parse<S: StringOps>(s: S) -> Result<Self, ParseError> {
let (node_id, host, port) = match Self::parse_raw(s.as_ref()) {
Ok(result) => result,
Err(error) => return Err(ParseError {
input: s.into(),
reason: error,
}),
};
let host = match host {
IpOrHostnamePos::Hostname(begin, end) => HostInner::Hostname(s.into_substring(begin, end)),
IpOrHostnamePos::Ip(ip) => HostInner::Ip(ip),
};
Ok(P2PAddress {
node_id,
host: Host(host),
port,
})
}
}
impl fmt::Display for P2PAddress {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
if f.alternate() {
write!(f, "{:X}@{}", self.node_id, HostPort(&self.host, self.port))
} else {
write!(f, "{:x}@{}", self.node_id, HostPort(&self.host, self.port))
}
}
}
impl fmt::Debug for P2PAddress {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
fmt::Display::fmt(self, f)
}
}
impl FromStr for P2PAddress {
type Err = ParseError;
#[inline]
fn from_str(s: &str) -> Result<Self, Self::Err> {
Self::internal_parse(s)
}
}
impl<'a> TryFrom<&'a str> for P2PAddress {
type Error = ParseError;
#[inline]
fn try_from(s: &'a str) -> Result<Self, Self::Error> {
Self::internal_parse(s)
}
}
impl TryFrom<String> for P2PAddress {
type Error = ParseError;
#[inline]
fn try_from(s: String) -> Result<Self, Self::Error> {
Self::internal_parse(s)
}
}
impl TryFrom<Box<str>> for P2PAddress {
type Error = ParseError;
#[inline]
fn try_from(s: Box<str>) -> Result<Self, Self::Error> {
Self::internal_parse(s)
}
}
#[derive(Debug, Clone)]
pub struct ParseError {
input: String,
reason: ParseErrorInner,
}
impl fmt::Display for ParseError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "failed to parse '{}' as Lightning Network P2P address", self.input)
}
}
impl std::error::Error for ParseError {
#[inline]
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
if let ParseErrorInner::InvalidNodeId(error) = &self.reason {
Some(error)
} else {
Some(&self.reason)
}
}
}
#[derive(Debug, Clone)]
enum ParseErrorInner {
MissingAtSymbol,
InvalidNodeId(crate::node_id::ParseError),
InvalidPortNumber(std::num::ParseIntError),
InvalidIpv6(std::net::AddrParseError),
}
impl fmt::Display for ParseErrorInner {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
ParseErrorInner::MissingAtSymbol => f.write_str("missing '@' symbol"),
ParseErrorInner::InvalidNodeId(error) => fmt::Display::fmt(error, f),
ParseErrorInner::InvalidPortNumber(_) => f.write_str("invalid port number"),
ParseErrorInner::InvalidIpv6(_) => f.write_str("invalid IPv6 address"),
}
}
}
impl std::error::Error for ParseErrorInner {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
ParseErrorInner::MissingAtSymbol => None,
ParseErrorInner::InvalidNodeId(error) => Some(error),
ParseErrorInner::InvalidPortNumber(error) => Some(error),
ParseErrorInner::InvalidIpv6(error) => Some(error),
}
}
}
pub struct SocketAddrs {
iter: std::iter::Chain<std::option::IntoIter<std::net::SocketAddr>, std::vec::IntoIter<std::net::SocketAddr>>
}
impl Iterator for SocketAddrs {
type Item = std::net::SocketAddr;
fn next(&mut self) -> Option<Self::Item> {
self.iter.next()
}
}
impl<H: Borrow<Host>> std::net::ToSocketAddrs for HostPort<H> {
type Iter = SocketAddrs;
fn to_socket_addrs(&self) -> io::Result<Self::Iter> {
if self.0.borrow().is_onion() {
return Err(io::Error::new(io::ErrorKind::InvalidInput, ResolveOnion));
}
let iter = match &self.0.borrow().0 {
HostInner::Ip(ip_addr) => Some(std::net::SocketAddr::new(*ip_addr, self.1)).into_iter().chain(Vec::new()),
HostInner::Hostname(hostname) => None.into_iter().chain((hostname.as_str(), self.1).to_socket_addrs()?),
};
Ok(SocketAddrs {
iter,
})
}
}
impl std::net::ToSocketAddrs for P2PAddress {
type Iter = SocketAddrs;
fn to_socket_addrs(&self) -> io::Result<Self::Iter> {
HostPort(&self.host, self.port).to_socket_addrs()
}
}
#[derive(Debug)]
struct ResolveOnion;
impl fmt::Display for ResolveOnion {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("attempt to resolve onion address")
}
}
impl std::error::Error for ResolveOnion {}
#[cfg(feature = "parse_arg")]
mod parse_arg_impl {
use std::fmt;
use super::P2PAddress;
impl parse_arg::ParseArgFromStr for P2PAddress {
fn describe_type<W: fmt::Write>(mut writer: W) -> fmt::Result {
writer.write_str("a Lightning Network address in the form `nodeid@host:port`")
}
}
}
#[cfg(feature = "serde")]
mod serde_impl {
use std::fmt;
use super::P2PAddress;
use serde::{Serialize, Deserialize, Serializer, Deserializer, de::{Visitor, Error}};
use std::convert::TryInto;
struct HRVisitor;
impl<'de> Visitor<'de> for HRVisitor {
type Value = P2PAddress;
fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
formatter.write_str("a 66 digits long hex string")
}
fn visit_str<E>(self, v: &str) -> Result<Self::Value, E> where E: Error {
v.try_into().map_err(|error| {
E::custom(error)
})
}
fn visit_string<E>(self, v: String) -> Result<Self::Value, E> where E: Error {
v.try_into().map_err(|error| {
E::custom(error)
})
}
}
#[cfg_attr(docsrs, doc(cfg(feature = "serde")))]
impl Serialize for P2PAddress {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where S: Serializer {
if serializer.is_human_readable() {
serializer.collect_str(self)
} else {
unimplemented!("serialization is not yet implemented for non-human-readable formatsi, please file a request");
}
}
}
#[cfg_attr(docsrs, doc(cfg(feature = "serde")))]
impl<'de> Deserialize<'de> for P2PAddress {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where D: Deserializer<'de> {
if deserializer.is_human_readable() {
deserializer.deserialize_str(HRVisitor)
} else {
unimplemented!("serialization is not yet implemented for non-human-readable formatsi, please file a request");
}
}
}
}
#[cfg(feature = "postgres-types")]
mod postgres_impl {
use super::P2PAddress;
use postgres_types::{ToSql, FromSql, IsNull, Type};
use bytes::BytesMut;
use std::error::Error;
#[cfg_attr(docsrs, doc(cfg(feature = "postgres-types")))]
impl ToSql for P2PAddress {
fn to_sql(&self, _ty: &Type, out: &mut BytesMut) -> Result<IsNull, Box<dyn Error + Send + Sync + 'static>> {
use std::fmt::Write;
write!(out, "{}", self).map(|_| IsNull::No).map_err(|error| Box::new(error) as _)
}
fn accepts(ty: &Type) -> bool {
<&str as ToSql>::accepts(ty)
}
postgres_types::to_sql_checked!();
}
#[cfg_attr(docsrs, doc(cfg(feature = "postgres-types")))]
impl<'a> FromSql<'a> for P2PAddress {
fn from_sql(ty: &Type, raw: &'a [u8]) -> Result<Self, Box<dyn Error + Send + Sync + 'static>> {
<&str>::from_sql(ty, raw)?.parse().map_err(|error| Box::new(error) as _)
}
fn accepts(ty: &Type) -> bool {
<&str as FromSql>::accepts(ty)
}
}
}
#[cfg(feature = "slog")]
mod slog_impl {
use super::P2PAddress;
use slog::{Key, Value, KV, Record, Serializer};
#[cfg_attr(docsrs, doc(cfg(feature = "slog")))]
impl Value for P2PAddress {
fn serialize(&self, _rec: &Record, key: Key, serializer: &mut dyn Serializer) -> slog::Result {
serializer.emit_arguments(key, &format_args!("{}", self))
}
}
#[cfg_attr(docsrs, doc(cfg(feature = "slog")))]
impl KV for P2PAddress {
fn serialize(&self, rec: &Record, serializer: &mut dyn Serializer) -> slog::Result {
#![allow(clippy::useless_conversion)]
self.node_id.serialize(rec, Key::from("node_id"), serializer)?;
serializer.emit_arguments(Key::from("host"), &format_args!("{}", self.host))?;
serializer.emit_u16(Key::from("port"), self.port)?;
Ok(())
}
}
impl_error_value!(super::ParseError);
}
#[cfg(test)]
mod tests {
use super::P2PAddress;
#[test]
fn empty() {
assert!("".parse::<P2PAddress>().is_err());
}
#[test]
fn invalid_node_id() {
assert!("@example.com".parse::<P2PAddress>().is_err());
}
#[test]
fn invalid_port() {
assert!("012345678901234567890123456789012345678901234567890123456789abcdef@example.com:foo".parse::<P2PAddress>().is_err());
}
#[test]
fn correct_no_port() {
let input = "012345678901234567890123456789012345678901234567890123456789abcdef@example.com";
let parsed = input.parse::<P2PAddress>().unwrap();
let output = parsed.to_string();
let expected = format!("{}{}", input, ":9735");
assert_eq!(output, expected);
}
#[test]
fn correct_with_port() {
let input = "012345678901234567890123456789012345678901234567890123456789abcdef@example.com:1234";
let parsed = input.parse::<P2PAddress>().unwrap();
let output = parsed.to_string();
assert_eq!(output, input);
}
#[test]
fn ipv6_no_port() {
let input = "012345678901234567890123456789012345678901234567890123456789abcdef@[::1]";
let parsed = input.parse::<P2PAddress>().unwrap();
let output = parsed.to_string();
let expected = format!("{}{}", input, ":9735");
assert_eq!(output, expected);
}
#[test]
fn ipv6_with_port() {
let input = "012345678901234567890123456789012345678901234567890123456789abcdef@[::1]:1234";
let parsed = input.parse::<P2PAddress>().unwrap();
let output = parsed.to_string();
assert_eq!(output, input);
}
}