@@ -463,9 +463,9 @@ impl MagicSock {
463
463
"connection closed" ,
464
464
) ) ;
465
465
}
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." ) ;
469
469
// Returning Ok here means we let QUIC timeout.
470
470
// Returning an error would immediately fail a connection.
471
471
// The philosophy of quinn-udp is that a UDP connection could
@@ -474,7 +474,7 @@ impl MagicSock {
474
474
// this out.
475
475
Ok ( ( ) )
476
476
}
477
- Ok ( MappedAddr :: NodeId ( dest) ) => {
477
+ MappedAddr :: NodeId ( dest) => {
478
478
trace ! (
479
479
dst = %dest,
480
480
src = ?transmit. src_ip,
@@ -600,7 +600,7 @@ impl MagicSock {
600
600
}
601
601
}
602
602
}
603
- Ok ( MappedAddr :: Ip ( dest) ) => {
603
+ MappedAddr :: Ip ( dest) => {
604
604
trace ! (
605
605
dst = %dest,
606
606
src = ?transmit. src_ip,
@@ -612,37 +612,43 @@ impl MagicSock {
612
612
let mut transmit = transmit. clone ( ) ;
613
613
614
614
// 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,
622
623
"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
+ }
633
638
}
634
639
}
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 ( ( ) ) ;
635
651
}
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 ( ( ) ) ;
646
652
}
647
653
}
648
654
}
@@ -1480,21 +1486,20 @@ impl MagicSock {
1480
1486
enum MappedAddr {
1481
1487
NodeId ( NodeIdMappedAddr ) ,
1482
1488
Ip ( IpMappedAddr ) ,
1489
+ None ( SocketAddr ) ,
1483
1490
}
1484
1491
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) ,
1491
1496
IpAddr :: V6 ( addr) => {
1492
1497
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)
1494
1499
} else if let Ok ( ip_mapped_addr) = IpMappedAddr :: try_from ( addr) {
1495
- Ok ( MappedAddr :: Ip ( ip_mapped_addr) )
1500
+ MappedAddr :: Ip ( ip_mapped_addr)
1496
1501
} else {
1497
- anyhow :: bail! ( "address does not conform to MappedAddr specifications" )
1502
+ MappedAddr :: None ( value )
1498
1503
}
1499
1504
}
1500
1505
}
@@ -2933,6 +2938,11 @@ fn split_packets(transmit: &quinn_udp::Transmit) -> RelayContents {
2933
2938
#[ derive( Debug , Copy , Clone , PartialEq , Eq , Hash ) ]
2934
2939
pub ( crate ) struct NodeIdMappedAddr ( Ipv6Addr ) ;
2935
2940
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
+
2936
2946
/// Counter to always generate unique addresses for [`NodeIdMappedAddr`].
2937
2947
static NODE_ID_ADDR_COUNTER : AtomicU64 = AtomicU64 :: new ( 1 ) ;
2938
2948
@@ -2966,7 +2976,7 @@ impl NodeIdMappedAddr {
2966
2976
}
2967
2977
2968
2978
impl TryFrom < Ipv6Addr > for NodeIdMappedAddr {
2969
- type Error = anyhow :: Error ;
2979
+ type Error = NodeIdMappedAddrError ;
2970
2980
2971
2981
fn try_from ( value : Ipv6Addr ) -> std:: result:: Result < Self , Self :: Error > {
2972
2982
let octets = value. octets ( ) ;
@@ -2976,7 +2986,7 @@ impl TryFrom<Ipv6Addr> for NodeIdMappedAddr {
2976
2986
{
2977
2987
return Ok ( Self ( value) ) ;
2978
2988
}
2979
- anyhow :: bail! ( "{value:?} is not a NodeIdMappedAddr" ) ;
2989
+ Err ( NodeIdMappedAddrError )
2980
2990
}
2981
2991
}
2982
2992
0 commit comments