rhel: Fix error swallowing in PackageScanner #1715
Merged
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.

Description
This PR fixes a bug in
rhel.PackageScanner.Scanwhere filesystem walk errors fromrpm.FindDBswere silently swallowed, causing the function to return([], nil)instead of propagating errors.Details
The function used unnamed return parameters with a defer that attempted to modify the error return value, however the code was returning explicit
nil.When
rpm.FindDBs()encounters filesystem errors (real example: when zombie processes exist in the system andFindDBstraverses/proc, see ROX-32459), the walk terminates early but the error is lost. This causes scanners to silently skip packages instead of reporting the error.Solution
Changed the function signature to use named return parameters, matching the pattern in
rpm.Scanner.Scan.Testing
Built Stackrox's roxagent with these changes and verified that it throws an error when the DB cannot be found due to filesystem-related errors, rather than silently skipping it and generating empty reports: