Conversation
ValidateDatabasePath() treats any object exposing a string `href` as a
URL, then asserts the parse result with CHECK(ada::can_parse(location)).
Whether that string parses depends on user input rather than on an
invariant the code guarantees, so a value such as { href: 'not a url' }
aborted the process instead of throwing.
Replace the CHECK with an ERR_INVALID_URL exception, matching how
node_file.cc reports an unparsable URL. Both DatabaseSync() and backup()
validate their path through this function, so both paths are covered.
Signed-off-by: Guilherme Araújo <arauujogui@gmail.com>
Assisted-by: Claude Code
Collaborator
|
Review requested:
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #66026 +/- ##
==========================================
+ Coverage 90.23% 90.24% +0.01%
==========================================
Files 785 789 +4
Lines 269670 270478 +808
Branches 51589 51746 +157
==========================================
+ Hits 243325 244083 +758
- Misses 16825 16867 +42
- Partials 9520 9528 +8
🚀 New features to boost your workflow:
|
meixg
approved these changes
Sep 15, 2026
jasnell
approved these changes
Sep 15, 2026
aduh95
reviewed
Sep 15, 2026
aduh95
reviewed
Sep 15, 2026
aduh95
approved these changes
Sep 15, 2026
Collaborator
lpinca
approved these changes
Sep 15, 2026
geeksilva97
approved these changes
Sep 15, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
ValidateDatabasePath()routed any object with a stringhrefinto URL parsing and asserted the result withCHECK(ada::can_parse(location)). The parse outcome is user input, not an invariant, sonew DatabaseSync({ href: 'not a url' })aborted the process.Throws
ERR_INVALID_URLinstead, matchingnode_file.cc. Reachable through bothDatabaseSync()andbackup(); both covered by tests.