Skip to content

Commit b1fefbd

Browse files
author
“ramfox”
committed
pr review
1 parent 2f1b0dd commit b1fefbd

File tree

2 files changed

+58
-51
lines changed

2 files changed

+58
-51
lines changed

iroh-net-report/src/ip_mapped_addrs.rs

+5-8
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,16 @@ pub const MAPPED_ADDR_PORT: u16 = 12345;
1212

1313
/// Can occur when converting a [`SocketAddr`] to an [`IpMappedAddr`]
1414
#[derive(Debug, thiserror::Error)]
15-
#[error("Failed to convert: {0}")]
16-
pub struct IpMappedAddrError(String);
15+
#[error("Failed to convert")]
16+
pub struct IpMappedAddrError;
1717

1818
/// A mirror for the `NodeIdMappedAddr`, mapping a fake Ipv6 address with an actual IP address.
1919
///
2020
/// You can consider this as nothing more than a lookup key for an IP that iroh's magicsocket knows
2121
/// about.
2222
///
2323
/// And in our QUIC-facing socket APIs like iroh's `AsyncUdpSocket` it
24-
/// comes in as the inner [`Ipv6Addr`], in those interfaces we have to be careful to do
25-
/// the conversion to this type.
24+
/// comes in as the inn his type.
2625
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash, Ord, PartialOrd)]
2726
pub struct IpMappedAddr(Ipv6Addr);
2827

@@ -70,9 +69,7 @@ impl TryFrom<Ipv6Addr> for IpMappedAddr {
7069
{
7170
return Ok(Self(value));
7271
}
73-
Err(IpMappedAddrError(String::from(
74-
"{value:?} is not an IpMappedAddr",
75-
)))
72+
Err(IpMappedAddrError)
7673
}
7774
}
7875

@@ -82,11 +79,11 @@ impl std::fmt::Display for IpMappedAddr {
8279
}
8380
}
8481

85-
#[derive(Debug, Clone)]
8682
/// A Map of [`IpMappedAddrs`] to [`SocketAddr`].
8783
// TODO(ramfox): before this is ready to be used beyond QAD, we should add
8884
// mechanisms for keeping track of "aliveness" and pruning address, as we do
8985
// with the `NodeMap`
86+
#[derive(Debug, Clone)]
9087
pub struct IpMappedAddrs(Arc<std::sync::Mutex<Inner>>);
9188

9289
#[derive(Debug, Default)]

iroh/src/magicsock.rs

+53-43
Original file line numberDiff line numberDiff line change
@@ -463,9 +463,9 @@ impl MagicSock {
463463
"connection closed",
464464
));
465465
}
466-
match MappedAddr::from_socket_addr(transmit.destination) {
467-
Err(e) => {
468-
error!(%transmit.destination, "Cannot convert to a mapped address: {e}, voiding transmit.");
466+
match MappedAddr::from(transmit.destination) {
467+
MappedAddr::None(dest) => {
468+
error!(%dest, "Cannot convert to a mapped address, voiding transmit.");
469469
// Returning Ok here means we let QUIC timeout.
470470
// Returning an error would immediately fail a connection.
471471
// The philosophy of quinn-udp is that a UDP connection could
@@ -474,7 +474,7 @@ impl MagicSock {
474474
// this out.
475475
Ok(())
476476
}
477-
Ok(MappedAddr::NodeId(dest)) => {
477+
MappedAddr::NodeId(dest) => {
478478
trace!(
479479
dst = %dest,
480480
src = ?transmit.src_ip,
@@ -600,7 +600,7 @@ impl MagicSock {
600600
}
601601
}
602602
}
603-
Ok(MappedAddr::Ip(dest)) => {
603+
MappedAddr::Ip(dest) => {
604604
trace!(
605605
dst = %dest,
606606
src = ?transmit.src_ip,
@@ -612,37 +612,43 @@ impl MagicSock {
612612
let mut transmit = transmit.clone();
613613

614614
// Get the socket addr
615-
if let Some(addr) = self.ip_mapped_addrs.get_ip_addr(&dest) {
616-
// rewrite target address
617-
transmit.destination = addr;
618-
// send udp
619-
match self.try_send_udp(addr, &transmit) {
620-
Ok(()) => {
621-
trace!(dst = %addr,
615+
match self.ip_mapped_addrs.get_ip_addr(&dest) {
616+
Some(addr) => {
617+
// rewrite target address
618+
transmit.destination = addr;
619+
// send udp
620+
match self.try_send_udp(addr, &transmit) {
621+
Ok(()) => {
622+
trace!(dst = %addr,
622623
"sent IpMapped transmit over UDP");
623-
}
624-
Err(err) => {
625-
// No need to print "WouldBlock" errors to the console
626-
if err.kind() == io::ErrorKind::WouldBlock {
627-
return Err(io::Error::new(io::ErrorKind::WouldBlock, "pending"));
628-
} else {
629-
warn!(
630-
dst = %addr,
631-
"failed to send IpMapped message over udp: {err:#}"
632-
);
624+
}
625+
Err(err) => {
626+
// No need to print "WouldBlock" errors to the console
627+
if err.kind() == io::ErrorKind::WouldBlock {
628+
return Err(io::Error::new(
629+
io::ErrorKind::WouldBlock,
630+
"pending",
631+
));
632+
} else {
633+
warn!(
634+
dst = %addr,
635+
"failed to send IpMapped message over udp: {err:#}"
636+
);
637+
}
633638
}
634639
}
640+
return Ok(());
641+
}
642+
None => {
643+
error!(%dest, "unknown mapped address, dropping transmit");
644+
// Returning Ok here means we let QUIC timeout.
645+
// Returning an error would immediately fail a connection.
646+
// The philosophy of quinn-udp is that a UDP connection could
647+
// come back at any time or missing should be transient so chooses to let
648+
// these kind of errors time out. See test_try_send_no_send_addr to try
649+
// this out.
650+
return Ok(());
635651
}
636-
return Ok(());
637-
} else {
638-
error!(%dest, "unknown mapped address, dropping transmit");
639-
// Returning Ok here means we let QUIC timeout.
640-
// Returning an error would immediately fail a connection.
641-
// The philosophy of quinn-udp is that a UDP connection could
642-
// come back at any time or missing should be transient so chooses to let
643-
// these kind of errors time out. See test_try_send_no_send_addr to try
644-
// this out.
645-
return Ok(());
646652
}
647653
}
648654
}
@@ -1480,21 +1486,20 @@ impl MagicSock {
14801486
enum MappedAddr {
14811487
NodeId(NodeIdMappedAddr),
14821488
Ip(IpMappedAddr),
1489+
None(SocketAddr),
14831490
}
14841491

1485-
impl MappedAddr {
1486-
fn from_socket_addr(addr: SocketAddr) -> Result<Self> {
1487-
match addr.ip() {
1488-
IpAddr::V4(_) => {
1489-
anyhow::bail!("Ipv4 addresses are not MappedAddrs")
1490-
}
1492+
impl From<SocketAddr> for MappedAddr {
1493+
fn from(value: SocketAddr) -> Self {
1494+
match value.ip() {
1495+
IpAddr::V4(_) => MappedAddr::None(value),
14911496
IpAddr::V6(addr) => {
14921497
if let Ok(node_id_mapped_addr) = NodeIdMappedAddr::try_from(addr) {
1493-
Ok(MappedAddr::NodeId(node_id_mapped_addr))
1498+
MappedAddr::NodeId(node_id_mapped_addr)
14941499
} else if let Ok(ip_mapped_addr) = IpMappedAddr::try_from(addr) {
1495-
Ok(MappedAddr::Ip(ip_mapped_addr))
1500+
MappedAddr::Ip(ip_mapped_addr)
14961501
} else {
1497-
anyhow::bail!("address does not conform to MappedAddr specifications")
1502+
MappedAddr::None(value)
14981503
}
14991504
}
15001505
}
@@ -2933,6 +2938,11 @@ fn split_packets(transmit: &quinn_udp::Transmit) -> RelayContents {
29332938
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
29342939
pub(crate) struct NodeIdMappedAddr(Ipv6Addr);
29352940

2941+
/// Can occur when converting a [`SocketAddr`] to an [`NodeIdMappedAddr`]
2942+
#[derive(Debug, thiserror::Error)]
2943+
#[error("Failed to convert")]
2944+
pub struct NodeIdMappedAddrError;
2945+
29362946
/// Counter to always generate unique addresses for [`NodeIdMappedAddr`].
29372947
static NODE_ID_ADDR_COUNTER: AtomicU64 = AtomicU64::new(1);
29382948

@@ -2966,7 +2976,7 @@ impl NodeIdMappedAddr {
29662976
}
29672977

29682978
impl TryFrom<Ipv6Addr> for NodeIdMappedAddr {
2969-
type Error = anyhow::Error;
2979+
type Error = NodeIdMappedAddrError;
29702980

29712981
fn try_from(value: Ipv6Addr) -> std::result::Result<Self, Self::Error> {
29722982
let octets = value.octets();
@@ -2976,7 +2986,7 @@ impl TryFrom<Ipv6Addr> for NodeIdMappedAddr {
29762986
{
29772987
return Ok(Self(value));
29782988
}
2979-
anyhow::bail!("{value:?} is not a NodeIdMappedAddr");
2989+
Err(NodeIdMappedAddrError)
29802990
}
29812991
}
29822992

0 commit comments

Comments
 (0)