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

Fix router fuzz failure due to LengthLimitedReader #3694

Merged

Conversation

valentinewallace
Copy link
Contributor

We recently switched the decode_msg macro in the router fuzz target from reading from a Cursor to reading from a slice. This caused a failure because the slice advances its pointer as it is being read from, so asserting that the length of the slice is equal to the length of the message that was read no longer works. Instead assert that the original fuzz data length is equal to the length of the message that was read.

Closes #3692

@ldk-reviews-bot
Copy link

ldk-reviews-bot commented Mar 31, 2025

👋 Thanks for assigning @joostjager 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.

Copy link
Collaborator

@TheBlueMatt TheBlueMatt left a comment

Choose a reason for hiding this comment

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

It looks like the intention behind the assert was to check that all of data was consumed (i.e. we should assert!(reader.is_empty()), but it was previously broken. The old and suggested assert here are basically useless.

Copy link
Contributor

@joostjager joostjager left a comment

Choose a reason for hiding this comment

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

Re-request review after Matt's point has been addressed.

We recently switched the decode_msg macro in the router fuzz target from
reading from a Cursor to reading from a slice. This caused a failure because
the slice advances its pointer as it is being read from, so asserting that the
length of the slice is equal to the length of the message that was read no
longer works. Instead assert that the original fuzz data length is equal to
the length of the message that was read.
@valentinewallace valentinewallace force-pushed the 2025-03-fix-router-fuzz branch from a594449 to 0106264 Compare April 1, 2025 14:22
@valentinewallace
Copy link
Contributor Author

It looks like the intention behind the assert was to check that all of data was consumed (i.e. we should assert!(reader.is_empty()), but it was previously broken. The old and suggested assert here are basically useless.

🤦‍♀️ Thanks!

Copy link
Contributor

@joostjager joostjager left a comment

Choose a reason for hiding this comment

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

Assuming the fuzzer is not failing anymore...

Copy link
Collaborator

@TheBlueMatt TheBlueMatt left a comment

Choose a reason for hiding this comment

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

Same, we can fix it more if its still broken.

@TheBlueMatt TheBlueMatt merged commit ba591b5 into lightningdevkit:main Apr 1, 2025
26 of 27 checks passed
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.

Fix fuzz failure due to unexpected length in router target
4 participants