-
Notifications
You must be signed in to change notification settings - Fork 402
Order blinded paths by reliability criteria #2912
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -358,27 +358,36 @@ where | |
const MIN_PEER_CHANNELS: usize = 3; | ||
|
||
let network_graph = self.network_graph.deref().read_only(); | ||
let is_recipient_announced = | ||
network_graph.nodes().contains_key(&NodeId::from_pubkey(&recipient)); | ||
|
||
let mut peer_info = peers.iter() | ||
// Limit to peers with announced channels | ||
.filter_map(|pubkey| | ||
network_graph | ||
.node(&NodeId::from_pubkey(pubkey)) | ||
.filter(|info| info.channels.len() >= MIN_PEER_CHANNELS) | ||
.map(|info| (*pubkey, info.is_tor_only())) | ||
.map(|info| (*pubkey, info.is_tor_only(), info.channels.len())) | ||
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. I think choosing the right introduction points in order to optimize for a specific metric such as reliability is very related to finding optimal autopilot/attachment strategies. Using the node degree as a proxy metric for reliability seems like a solid first step, especially if we're talking about payment reliability. A few more thoughts though: Further down the road we could also entertain a few other metrics that could make sense, for example optimizing for betweenness centrality or choosing introduction points according to k-Center optimization. (Some of our simulation results in this paper might be of interest here, see for example Fig. 1). Also, we could account for node uptime (regularity of node announcements?) or latency metrics, that might become available as part of the attributable errors proposal? Doing anything more than just scoring by node degree might of course require us to pre-calculate and store more per-node metrics, so would probably only make sense if we'd ever come around to introduce a node score, possibly as part of #63? |
||
) | ||
// Exclude Tor-only nodes when the recipient is announced. | ||
.filter(|(_, is_tor_only, _)| !(*is_tor_only && is_recipient_announced)) | ||
.collect::<Vec<_>>(); | ||
peer_info.sort_unstable_by(|(_, a_tor_only), (_, b_tor_only)| a_tor_only.cmp(b_tor_only)); | ||
|
||
// Prefer using non-Tor nodes with the most channels as the introduction node. | ||
peer_info.sort_unstable_by(|(_, a_tor_only, a_channels), (_, b_tor_only, b_channels)| { | ||
a_tor_only.cmp(b_tor_only).then(a_channels.cmp(b_channels).reverse()) | ||
}); | ||
|
||
let paths = peer_info.into_iter() | ||
.map(|(pubkey, _)| vec![pubkey, recipient]) | ||
.map(|(pubkey, _, _)| vec![pubkey, recipient]) | ||
.map(|node_pks| BlindedPath::new_for_message(&node_pks, &*self.entropy_source, secp_ctx)) | ||
.take(MAX_PATHS) | ||
.collect::<Result<Vec<_>, _>>(); | ||
|
||
match paths { | ||
Ok(paths) if !paths.is_empty() => Ok(paths), | ||
_ => { | ||
if network_graph.nodes().contains_key(&NodeId::from_pubkey(&recipient)) { | ||
if is_recipient_announced { | ||
Comment on lines
+382
to
+390
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. Tip Codebase Verification The verification process did not find evidence of tests covering the scenario where no paths are found despite the recipient being announced, supporting the suggestion to add targeted tests for the fallback logic to one-hop paths. It's important to ensure comprehensive test coverage for this specific case to maintain robustness in error handling and fallback mechanisms. Analysis chainThe logic to map peers to Scripts ExecutedThe following scripts were executed for the analysis: Script: #!/bin/bash
# It's recommended to add tests specifically covering the scenario where no paths are found
# despite the recipient being announced, ensuring the fallback to a one-hop path works as expected.
echo "Suggest adding targeted tests for the fallback logic to one-hop paths."
Length of output: 150 Script: #!/bin/bash
# First, find test files related to onion_message or messenger functionality
fd 'test' --type f | grep -E 'onion_message|messenger|BlindedPath'
# If relevant test files are found, search within those files for tests covering the specific scenario
# Note: The actual search within files will be planned based on the output of the first command
Length of output: 114 Script: #!/bin/bash
# Search within the identified test file for mentions of the scenario of interest
rg -i 'no paths found|recipient announced|one-hop path|MAX_PATHS' lightning/src/onion_message/functional_tests.rs
Length of output: 115 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. Is that scenario covered in 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. Given the information available and the results of the script execution, I couldn't find a test named Analysis chainScripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Search for the test `creates_and_pays_for_offer_using_one_hop_blinded_path` within the codebase.
rg 'fn creates_and_pays_for_offer_using_one_hop_blinded_path' lightning/src/onion_message/
Length of output: 92 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. It is located in file 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. @jkczyz: The test Analysis chainScripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Extract the content of the test function from the specified file.
rg --context 50 'fn creates_and_pays_for_offer_using_one_hop_blinded_path' lightning/src/ln/offers_tests.rs
Length of output: 4238 |
||
BlindedPath::one_hop_for_message(recipient, &*self.entropy_source, secp_ctx) | ||
.map(|path| vec![path]) | ||
} else { | ||
|
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.
The use of
tor.clone()
inannounce_node_address
is unnecessary sinceSocketAddress::OnionV2
implements theCopy
trait. This means thetor
variable can be passed directly without cloning, which would be more efficient.Committable suggestion
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.
Could you point me to lines of code where it implements the
Copy
trait?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.
@jkczyz, the output from the search does not directly show the
Copy
trait implementation for theSocketAddress
enum. The snippet provided includes the definition ofSocketAddress
but does not include anyderive
attributes that might indicate the implementation of theCopy
trait. It's possible that the relevant part of the code was not included in the output snippet. Without direct evidence from the provided output, I cannot confirm theCopy
trait implementation forSocketAddress::OnionV2
. My previous statement regarding the unnecessary use of.clone()
may have been incorrect without this confirmation.Analysis chain
Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 1118