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

Clean up create_onion_keys_callback_generic #3668

Open
wants to merge 8 commits into
base: main
Choose a base branch
from

Conversation

TheBlueMatt
Copy link
Collaborator

It should return an iterator, not rely on callbacks (I think it predates impl Iterator lol) and doesn't need to return a Result.

@ldk-reviews-bot
Copy link

ldk-reviews-bot commented Mar 14, 2025

👋 Thanks for assigning @arik-so as a reviewer!
I'll wait for their review and will help manage the review process.
Once they submit their review, I'll check if a second reviewer would be helpful.

@ldk-reviews-bot
Copy link

🔔 1st Reminder

Hey @valentinewallace! This PR has been waiting for your review.
Please take a look when you have a chance. If you're unable to review, please let us know so we can find another reviewer.

Copy link
Contributor

@valentinewallace valentinewallace left a comment

Choose a reason for hiding this comment

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

Not sure how strongly we feel about tests passing in intermediate commits blocking PRs. Feel free to land IMO

@ldk-reviews-bot
Copy link

👋 The first review has been submitted!

Do you think this PR is ready for a second reviewer? If so, click here to assign a second reviewer.

@arik-so arik-so self-requested a review March 18, 2025 00:19
)
.expect("Route we used spontaneously grew invalid keys in the middle of it?");
// if we have Trampoline hops, the blinded hops are part of the inner Trampoline onion
let nontrampoline_bp =
Copy link
Contributor

Choose a reason for hiding this comment

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

this is not a blinding_point, it's the blinded_tail. Also, you think it makes sense to unify the terminology between non_trampoline_ and/or outer?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Hmm, but there's no inner/outer if there's no trampoline?

Copy link
Contributor

Choose a reason for hiding this comment

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

hm, I guess that's fair. Do switch it to _bt though, or, preferably, _blinded_tail.

There's no reason for anything outside of `onion_utils` to call an
`_inner` method, so it shouldn't be pub.
Onion keys construction can only fail if we have a key which is
the inverse of a hash containing a public key which we generated
(even indirectly). Because we prefer to panic if our RNG creates an
insecure key (as it indicates operating is incredibly unsafe), we
thus don't actually need to return an error from
`construct_onion_keys_generic_callback`, which we clean up here.
The onion keys building logic is rather ancient and predates the
`-> impl Trait` syntax in Rust, and thus used a callback. Here we
move it to an `impl Iterator` which is much Rustier and cleans up
the code a bit.
Now that `create_onion_keys_generic` returns an iterator rather
than relying on a callback, making `process_onion_failure_inner`
chain the non-trampoline and trampoline iterators is trivial.

We do so here, avoiding the extra vec allocation.
@TheBlueMatt
Copy link
Collaborator Author

Oops, forgot about this one. Rebased and addressed comments.

Copy link

codecov bot commented Apr 1, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 89.17%. Comparing base (ba591b5) to head (51f8cb7).
Report is 4 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #3668      +/-   ##
==========================================
+ Coverage   89.13%   89.17%   +0.03%     
==========================================
  Files         155      155              
  Lines      120796   120764      -32     
  Branches   120796   120764      -32     
==========================================
+ Hits       107675   107689      +14     
+ Misses      10458    10429      -29     
+ Partials     2663     2646      -17     

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

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

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.

4 participants