-
Notifications
You must be signed in to change notification settings - Fork 436
Add remote_addr field to lightning_net_tokio::setup_outbound
#4372
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
Open
tankyleo
wants to merge
2
commits into
lightningdevkit:main
Choose a base branch
from
tankyleo:2026-02-setup-outbound-remote-addr
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+157
−13
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -384,6 +384,16 @@ where | |
| PM::Target: APeerManager<Descriptor = SocketDescriptor>, | ||
| { | ||
| let remote_addr = get_addr_from_stream(&stream); | ||
| setup_outbound_internal(peer_manager, their_node_id, stream, remote_addr) | ||
| } | ||
|
|
||
| fn setup_outbound_internal<PM: Deref + 'static + Send + Sync + Clone>( | ||
| peer_manager: PM, their_node_id: PublicKey, stream: StdTcpStream, | ||
| remote_addr: Option<SocketAddress>, | ||
| ) -> impl std::future::Future<Output = ()> | ||
| where | ||
| PM::Target: APeerManager<Descriptor = SocketDescriptor>, | ||
| { | ||
| let (reader, mut write_receiver, read_receiver, us) = Connection::new(stream); | ||
| #[cfg(test)] | ||
| let last_us = Arc::clone(&us); | ||
|
|
@@ -478,8 +488,15 @@ where | |
| /// Routes [`connect_outbound`] through Tor. Implements stream isolation for each connection | ||
| /// using a stream isolation parameter sourced from [`EntropySource::get_secure_random_bytes`]. | ||
| /// | ||
| /// The `addr` parameter will be set to the [`PeerDetails::socket_address`] for that peer in | ||
tnull marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| /// [`PeerManager::list_peers`], and if it is not a private IPv4 or IPv6 address, it will also | ||
| /// reported to the peer in our init message. | ||
| /// | ||
| /// Returns a future (as the fn is async) that yields another future, see [`connect_outbound`] for | ||
| /// details on this return value. | ||
| /// | ||
| /// [`PeerDetails::socket_address`]: lightning::ln::peer_handler::PeerDetails::socket_address | ||
| /// [`PeerManager::list_peers`]: lightning::ln::peer_handler::PeerManager::list_peers | ||
| pub async fn tor_connect_outbound<PM: Deref + 'static + Send + Sync + Clone, ES: EntropySource>( | ||
| peer_manager: PM, their_node_id: PublicKey, addr: SocketAddress, tor_proxy_addr: SocketAddr, | ||
| entropy_source: ES, | ||
|
|
@@ -488,12 +505,14 @@ where | |
| PM::Target: APeerManager<Descriptor = SocketDescriptor>, | ||
| { | ||
| let connect_fut = async { | ||
| tor_connect(addr, tor_proxy_addr, entropy_source).await.map(|s| s.into_std().unwrap()) | ||
| tor_connect(addr.clone(), tor_proxy_addr, entropy_source) | ||
| .await | ||
| .map(|s| s.into_std().unwrap()) | ||
| }; | ||
| if let Ok(Ok(stream)) = | ||
| time::timeout(Duration::from_secs(TOR_CONNECT_OUTBOUND_TIMEOUT), connect_fut).await | ||
| { | ||
| Some(setup_outbound(peer_manager, their_node_id, stream)) | ||
| Some(setup_outbound_internal(peer_manager, their_node_id, stream, Some(addr))) | ||
| } else { | ||
| None | ||
| } | ||
|
|
@@ -772,7 +791,7 @@ mod tests { | |
| use lightning::ln::types::ChannelId; | ||
| use lightning::routing::gossip::NodeId; | ||
| use lightning::types::features::*; | ||
| use lightning::util::test_utils::TestNodeSigner; | ||
| use lightning::util::test_utils::{TestLogger, TestNodeSigner}; | ||
|
|
||
| use tokio::sync::mpsc; | ||
|
|
||
|
|
@@ -781,13 +800,6 @@ mod tests { | |
| use std::sync::{Arc, Mutex}; | ||
| use std::time::Duration; | ||
|
|
||
| pub struct TestLogger(); | ||
| impl lightning::util::logger::Logger for TestLogger { | ||
| fn log(&self, record: lightning::util::logger::Record) { | ||
| println!("{}", record); | ||
| } | ||
| } | ||
|
|
||
| struct MsgHandler { | ||
| expected_pubkey: PublicKey, | ||
| pubkey_connected: mpsc::Sender<()>, | ||
|
|
@@ -981,7 +993,7 @@ mod tests { | |
| a_msg_handler, | ||
| 0, | ||
| &[1; 32], | ||
| Arc::new(TestLogger()), | ||
| Arc::new(TestLogger::new()), | ||
| Arc::new(TestNodeSigner::new(a_key)), | ||
| )); | ||
|
|
||
|
|
@@ -1005,7 +1017,7 @@ mod tests { | |
| b_msg_handler, | ||
| 0, | ||
| &[2; 32], | ||
| Arc::new(TestLogger()), | ||
| Arc::new(TestLogger::new()), | ||
| Arc::new(TestNodeSigner::new(b_key)), | ||
| )); | ||
|
|
||
|
|
@@ -1068,7 +1080,7 @@ mod tests { | |
| a_msg_handler, | ||
| 0, | ||
| &[1; 32], | ||
| Arc::new(TestLogger()), | ||
| Arc::new(TestLogger::new()), | ||
| Arc::new(TestNodeSigner::new(a_key)), | ||
| )); | ||
|
|
||
|
|
@@ -1154,4 +1166,136 @@ mod tests { | |
| assert!(tor_connect(addr, tor_proxy_addr, &entropy_source).await.is_err()); | ||
| } | ||
| } | ||
|
|
||
| async fn test_remote_address_with_override(b_addr_override: Option<SocketAddress>) { | ||
| let secp_ctx = Secp256k1::new(); | ||
| let a_key = SecretKey::from_slice(&[1; 32]).unwrap(); | ||
| let b_key = SecretKey::from_slice(&[1; 32]).unwrap(); | ||
| let a_pub = PublicKey::from_secret_key(&secp_ctx, &a_key); | ||
| let b_pub = PublicKey::from_secret_key(&secp_ctx, &b_key); | ||
|
|
||
| let (a_connected_sender, mut a_connected) = mpsc::channel(1); | ||
| let (a_disconnected_sender, _a_disconnected) = mpsc::channel(1); | ||
| let a_handler = Arc::new(MsgHandler { | ||
| expected_pubkey: b_pub, | ||
| pubkey_connected: a_connected_sender, | ||
| pubkey_disconnected: a_disconnected_sender, | ||
| disconnected_flag: AtomicBool::new(false), | ||
| msg_events: Mutex::new(Vec::new()), | ||
| }); | ||
| let a_msg_handler = MessageHandler { | ||
| chan_handler: Arc::clone(&a_handler), | ||
| route_handler: Arc::clone(&a_handler), | ||
| onion_message_handler: Arc::new(IgnoringMessageHandler {}), | ||
| custom_message_handler: Arc::new(IgnoringMessageHandler {}), | ||
| send_only_message_handler: Arc::new(IgnoringMessageHandler {}), | ||
| }; | ||
| let a_logger = Arc::new(TestLogger::new()); | ||
| let a_manager = Arc::new(PeerManager::new( | ||
| a_msg_handler, | ||
| 0, | ||
| &[1; 32], | ||
| Arc::clone(&a_logger), | ||
| Arc::new(TestNodeSigner::new(a_key)), | ||
| )); | ||
|
|
||
| let (b_connected_sender, mut b_connected) = mpsc::channel(1); | ||
| let (b_disconnected_sender, _b_disconnected) = mpsc::channel(1); | ||
| let b_handler = Arc::new(MsgHandler { | ||
| expected_pubkey: a_pub, | ||
| pubkey_connected: b_connected_sender, | ||
| pubkey_disconnected: b_disconnected_sender, | ||
| disconnected_flag: AtomicBool::new(false), | ||
| msg_events: Mutex::new(Vec::new()), | ||
| }); | ||
| let b_msg_handler = MessageHandler { | ||
| chan_handler: Arc::clone(&b_handler), | ||
| route_handler: Arc::clone(&b_handler), | ||
| onion_message_handler: Arc::new(IgnoringMessageHandler {}), | ||
| custom_message_handler: Arc::new(IgnoringMessageHandler {}), | ||
| send_only_message_handler: Arc::new(IgnoringMessageHandler {}), | ||
| }; | ||
| let b_logger = Arc::new(TestLogger::new()); | ||
| let b_manager = Arc::new(PeerManager::new( | ||
| b_msg_handler, | ||
| 0, | ||
| &[2; 32], | ||
| Arc::clone(&b_logger), | ||
| Arc::new(TestNodeSigner::new(b_key)), | ||
| )); | ||
|
|
||
| // We bind on localhost, hoping the environment is properly configured with a local | ||
| // address. This may not always be the case in containers and the like, so if this test is | ||
| // failing for you check that you have a loopback interface and it is configured with | ||
| // 127.0.0.1. | ||
| let (conn_a, conn_b) = make_tcp_connection(); | ||
|
|
||
| // Given that `make_tcp_connection` binds the peer to 127.0.0.1, | ||
| // `get_addr_from_stream` always returns a private address, and will not be reported to the peer | ||
| // in the init message. | ||
| let b_addr = b_addr_override | ||
| .clone() | ||
| .unwrap_or_else(|| super::get_addr_from_stream(&conn_a).unwrap()); | ||
| let _fut_a = super::setup_outbound_internal( | ||
| Arc::clone(&a_manager), | ||
| b_pub, | ||
| conn_a, | ||
| Some(b_addr.clone()), | ||
| ); | ||
| let _fut_b = super::setup_inbound(Arc::clone(&b_manager), conn_b); | ||
|
|
||
| tokio::time::timeout(Duration::from_secs(10), a_connected.recv()).await.unwrap(); | ||
| tokio::time::timeout(Duration::from_secs(1), b_connected.recv()).await.unwrap(); | ||
|
|
||
| // Check `PeerDetails::socket_address` | ||
|
|
||
| let mut peers = a_manager.list_peers(); | ||
| assert_eq!(peers.len(), 1); | ||
| let peer = peers.pop().unwrap(); | ||
| assert_eq!(peer.socket_address, Some(b_addr)); | ||
|
|
||
| // Check the init message sent to the peer | ||
|
|
||
| let mainnet_hash = ChainHash::using_genesis_block(Network::Testnet); | ||
| let a_init_msg = Init { | ||
| features: InitFeatures::empty(), | ||
| networks: Some(vec![mainnet_hash]), | ||
| // We set it to the override here because addresses from the stream are private addresses, | ||
| // so they are filtered out and not reported to the peer | ||
| remote_network_address: b_addr_override, | ||
| }; | ||
| a_logger.assert_log( | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm, asserting on log messages is often a bit error prone. Shouldn't we rather assert that the counterparty's |
||
| "lightning::ln::peer_handler", | ||
| format!("Enqueueing message Init({:?})", a_init_msg), | ||
| 1, | ||
| ); | ||
| } | ||
|
|
||
| #[tokio::test] | ||
| async fn test_remote_address() { | ||
| // Test that the remote address of the peer passed to `setup_outbound_internal` is set correctly in the | ||
| // corresponding `PeerDetails::socket_address` returned from `PeerManager::list_peers`, and if it is | ||
| // not a private address, that it is reported to the peer in the init message. | ||
|
|
||
| // This tests a private address read from `get_addr_from_stream` | ||
| test_remote_address_with_override(None).await; | ||
| // Make sure these are not private IPv4 or IPv6 addresses; we assert they are present in the init message | ||
| test_remote_address_with_override(Some(SocketAddress::TcpIpV4 { | ||
| addr: [0xab; 4], | ||
| port: 0xabab, | ||
| })) | ||
| .await; | ||
| test_remote_address_with_override(Some(SocketAddress::TcpIpV6 { | ||
| addr: [0x2a; 16], | ||
| port: 0x2a2a, | ||
| })) | ||
| .await; | ||
| let torproject_onion_addr_str = | ||
| "2gzyxa5ihm7nsggfxnu52rck2vv4rvmdlkiu3zzui5du4xyclen53wid.onion:80"; | ||
| let torproject_onion_addr: SocketAddress = torproject_onion_addr_str.parse().unwrap(); | ||
| test_remote_address_with_override(Some(torproject_onion_addr)).await; | ||
| let torproject_addr_str = "torproject.org:80"; | ||
| let torproject_addr: SocketAddress = torproject_addr_str.parse().unwrap(); | ||
| test_remote_address_with_override(Some(torproject_addr)).await; | ||
| } | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, rather than adding this on the generic
setup_outbound, would it make sense to refactor this to be ansetup_outbound_internaland offer twosetup_outboundandsetup_outbound_torvariants that do the right (tm) thing for the user? Or, put differently, for non-Tor users thisremote_addrargument might be confusing?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let me know how this sounds below tnull, I avoid adding a
setup_outbound_tor, and callsetup_outbound_internaldirectly fromconnect_outbound_tor. I'd prefer to avoid adding a new function unless we really have to.