Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Impl ToSocketAddrs for SocketAddress #2636

Merged

Conversation

slanesuke
Copy link
Contributor

Resolves #2535

@codecov-commenter
Copy link

codecov-commenter commented Oct 1, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (989304e) 89.02% compared to head (e9ff38f) 89.94%.
Report is 50 commits behind head on main.

❗ Your organization needs to install the Codecov GitHub app to enable full functionality.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #2636      +/-   ##
==========================================
+ Coverage   89.02%   89.94%   +0.91%     
==========================================
  Files         112      112              
  Lines       87168    94312    +7144     
  Branches    87168    94312    +7144     
==========================================
+ Hits        77605    84826    +7221     
+ Misses       7327     7240      -87     
- Partials     2236     2246      +10     
Files Coverage Δ
lightning/src/ln/msgs.rs 77.50% <100.00%> (+0.68%) ⬆️

... and 29 files with indirect coverage changes

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link
Contributor

@dunxen dunxen left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! I believe @tnull has the most context here based on the usage in ldk-node.

Comment on lines 4131 to 4159
#[test]
#[cfg(feature = "std")]
fn test_socket_address_to_socket_addrs() {
assert_eq!(SocketAddress::TcpIpV4 {addr:[0u8; 4], port: 1337,}.to_socket_addrs().unwrap().next().unwrap(),
SocketAddr::V4(std::net::SocketAddrV4::new(std::net::Ipv4Addr::new(0,0,0,0),
1337)));
assert_eq!(SocketAddress::TcpIpV6 {addr:[0u8; 16], port: 1337,}.to_socket_addrs().unwrap().next().unwrap(),
SocketAddr::V6(std::net::SocketAddrV6::new(std::net::Ipv6Addr::from([0u8; 16]),
1337, 0, 0)));
assert_eq!(SocketAddress::Hostname { hostname: Hostname::try_from("0.0.0.0".to_string()).unwrap(), port: 0
}.to_socket_addrs().unwrap().next().unwrap(),
std::net::SocketAddr::V4(std::net::SocketAddrV4::new(
std::net::Ipv4Addr::from([0u8; 4]),0)));
assert!(SocketAddress::OnionV2([0u8; 12]).to_socket_addrs().is_err());
assert!(SocketAddress::OnionV3{
ed25519_pubkey: [37, 24, 75, 5, 25, 73, 117, 194, 139, 102, 182, 107, 4, 105, 247, 246, 85,
111, 177, 172, 49, 137, 167, 155, 64, 221, 163, 47, 31, 33, 71, 3],
checksum: 48326,
version: 121,
port: 1234
}.to_socket_addrs().is_err());
}
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: I see we can actually remove the std::net:: qualifying prefixes here and just import in the feature gated use above.

Suggested change
#[test]
#[cfg(feature = "std")]
fn test_socket_address_to_socket_addrs() {
assert_eq!(SocketAddress::TcpIpV4 {addr:[0u8; 4], port: 1337,}.to_socket_addrs().unwrap().next().unwrap(),
SocketAddr::V4(std::net::SocketAddrV4::new(std::net::Ipv4Addr::new(0,0,0,0),
1337)));
assert_eq!(SocketAddress::TcpIpV6 {addr:[0u8; 16], port: 1337,}.to_socket_addrs().unwrap().next().unwrap(),
SocketAddr::V6(std::net::SocketAddrV6::new(std::net::Ipv6Addr::from([0u8; 16]),
1337, 0, 0)));
assert_eq!(SocketAddress::Hostname { hostname: Hostname::try_from("0.0.0.0".to_string()).unwrap(), port: 0
}.to_socket_addrs().unwrap().next().unwrap(),
std::net::SocketAddr::V4(std::net::SocketAddrV4::new(
std::net::Ipv4Addr::from([0u8; 4]),0)));
assert!(SocketAddress::OnionV2([0u8; 12]).to_socket_addrs().is_err());
assert!(SocketAddress::OnionV3{
ed25519_pubkey: [37, 24, 75, 5, 25, 73, 117, 194, 139, 102, 182, 107, 4, 105, 247, 246, 85,
111, 177, 172, 49, 137, 167, 155, 64, 221, 163, 47, 31, 33, 71, 3],
checksum: 48326,
version: 121,
port: 1234
}.to_socket_addrs().is_err());
}
}
#[test]
#[cfg(feature = "std")]
fn test_socket_address_to_socket_addrs() {
assert_eq!(SocketAddress::TcpIpV4 {addr:[0u8; 4], port: 1337,}.to_socket_addrs().unwrap().next().unwrap(),
SocketAddr::V4(SocketAddrV4::new(Ipv4Addr::new(0,0,0,0),
1337)));
assert_eq!(SocketAddress::TcpIpV6 {addr:[0u8; 16], port: 1337,}.to_socket_addrs().unwrap().next().unwrap(),
SocketAddr::V6(SocketAddrV6::new(Ipv6Addr::from([0u8; 16]),
1337, 0, 0)));
assert_eq!(SocketAddress::Hostname { hostname: Hostname::try_from("0.0.0.0".to_string()).unwrap(), port: 0
}.to_socket_addrs().unwrap().next().unwrap(),
SocketAddr::V4(SocketAddrV4::new(
Ipv4Addr::from([0u8; 4]),0)));
assert!(SocketAddress::OnionV2([0u8; 12]).to_socket_addrs().is_err());
assert!(SocketAddress::OnionV3{
ed25519_pubkey: [37, 24, 75, 5, 25, 73, 117, 194, 139, 102, 182, 107, 4, 105, 247, 246, 85,
111, 177, 172, 49, 137, 167, 155, 64, 221, 163, 47, 31, 33, 71, 3],
checksum: 48326,
version: 121,
port: 1234
}.to_socket_addrs().is_err());
}
}

@@ -2671,7 +2698,7 @@ mod tests {
use crate::chain::transaction::OutPoint;

#[cfg(feature = "std")]
use std::net::{Ipv4Addr, Ipv6Addr};
use std::net::{Ipv4Addr, Ipv6Addr, SocketAddr, ToSocketAddrs};
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
use std::net::{Ipv4Addr, Ipv6Addr, SocketAddr, ToSocketAddrs};
use std::net::{Ipv4Addr, Ipv6Addr, SocketAddr, SocketAddrV4, SocketAddrV6, ToSocketAddrs};

Ok((hostname.as_str(), *port).to_socket_addrs()?.next().into_iter())
}
SocketAddress::OnionV2(..) => {
Err(std::io::Error::from(std::io::ErrorKind::Unsupported))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah looks like the MSRV (minimum supported Rust version) tests are failing because the Unsupported variant is only available from version 1.53 up. We'll need to use another variant here, probably Other until we bump the MSRV.

Copy link
Contributor

@tnull tnull left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for looking into this!

lightning/src/ln/msgs.rs Outdated Show resolved Hide resolved
lightning/src/ln/msgs.rs Outdated Show resolved Hide resolved
@slanesuke slanesuke closed this Oct 6, 2023
@slanesuke slanesuke reopened this Oct 6, 2023
@slanesuke slanesuke marked this pull request as draft October 6, 2023 20:42
@slanesuke slanesuke force-pushed the impl-ToSocketAddrs-for-Hostname branch from f61987a to e507557 Compare October 10, 2023 20:48
@slanesuke slanesuke marked this pull request as ready for review October 10, 2023 20:49
@@ -46,6 +46,7 @@ use core::fmt::Debug;
use core::ops::Deref;
#[cfg(feature = "std")]
use core::str::FromStr;
use std::net::SocketAddr;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You'll have to also feature-gate this import.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm unsure if I should use the existing [cfg(feature = "std")] or create a new feature flag. I imagine the former is the right approach but I want to make sure. Let me know

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah just using that one is good as we just want to ensure it's only imported when we have access to std :)

fn test_socket_address_to_socket_addrs() {
assert_eq!(SocketAddress::TcpIpV4 {addr:[0u8; 4], port: 1337,}.to_socket_addrs().unwrap().next().unwrap(),
SocketAddr::V4(SocketAddrV4::new(Ipv4Addr::new(0,0,0,0),
1337)));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: Indentation is off here and below.

Ok(vec![socket_addr].into_iter())
}
SocketAddress::Hostname { ref hostname, port } => {
let socket_addr: Vec<SocketAddr> = (hostname.as_str(), *port).to_socket_addrs()?.collect();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think here you can now avoid all intermediary steps and just do

				(hostname.as_str(), *port).to_socket_addrs()

Copy link
Contributor

@tnull tnull left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, please squash commits.

Feel free to include the minor log nits below while squashing.

lightning/src/ln/msgs.rs Outdated Show resolved Hide resolved
lightning/src/ln/msgs.rs Outdated Show resolved Hide resolved
Copy link
Contributor

@tnull tnull left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, please squash the commits down to a single one!

@slanesuke slanesuke force-pushed the impl-ToSocketAddrs-for-Hostname branch from 6011d63 to e9ff38f Compare October 19, 2023 23:07
Copy link
Contributor

@dunxen dunxen left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@tnull tnull merged commit 62fd36d into lightningdevkit:main Oct 20, 2023
14 of 15 checks passed
@slanesuke slanesuke deleted the impl-ToSocketAddrs-for-Hostname branch October 20, 2023 22:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

impl ToSocketAddrs for Hostname (and possibly other NetAddress variants)
4 participants