extmod/vfs_rom: Add bounds checking for all filesystem accesses. #16810
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.
Summary
While testing ROMFS as part of #8381 I found that it was relatively easy to end up with a corrupt filesystem on the device (eg due to the ROMFS deploy process stopping half way through), which could lead to hard crashes. Notably: boot loops trying to mount a corrupt filesystem, crashes when importing modules like
os
that first scan the filesystem foros.py
, and crashing when deploying a new ROMFS in certain cases because the old one is removed while still mounted.@robert-hh also encountered similar issues when testing #8381.
This PR adds full bounds checking for all ROMFS filesystem accesses.
Testing
The new code should be fully covered by the new tests that are added here, and they run in CI.
Trade-offs and Alternatives
I was hoping such bounds checking would not be necessary, because it increases the size and complexity of the ROMFS driver. But after playing around with ROMFS in a project, it's definitely necessary to have full bounds checking.