-
-
Notifications
You must be signed in to change notification settings - Fork 166
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
(Possible) panic from BootServices->AllocatePages()
returning the zero address
#1557
Comments
Thanks for reporting this, I didn't realize that was allowed. I put up #1558 to address this -- does that fix match your understanding of the problem? Does Just curious -- did you file this bug because you observed a failure on some real firmware, or was it just something you were aware could happen? |
Your workaround in #1558 is basically the same logic as in GRUB2, so I believe that should be correct. I also think
How I saw it?
EDIT: also I accidentally clicked the close and comment button, instead of the close one, sorry. |
Hey, thanks for reporting this, @kukrimate. In the future, please avoid closing the issue before the PR is merged. While unlikely, we want to prevent cases where a PR isn't merged, but we mistakenly assume the issue was resolved. |
Closing was an accidental click, apologies. |
The out parameter of
BootServices->AllocatePages()
is anEFI_PHYSICAL_ADDRESS
, not a pointer.The uefi-rs wrapper
boot::allocate_pages()
converts this into aNonNull<u8>
and panics if that fails.However there is nothing in the standard that says physical address 0 is not a valid result, and X86 has a tendency of mapping physical memory at address 0. This can cause valid programs to panic on allocation.
Most UEFI implementations allocate from top-down, so this only really happens in practice just before running out memory, but there is nothing in the spec that says they need to. Code assuming
AllocatePages()
always returns non-0 addresses can panic on random allocations.Some other UEFI apps (e.g. GRUB) do have checks to retry allocation if address 0 was yielded.
The text was updated successfully, but these errors were encountered: