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

Add efi_rng opt-in backend #570

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open

Add efi_rng opt-in backend #570

wants to merge 6 commits into from

Conversation

newpavlov
Copy link
Member

@newpavlov newpavlov commented Dec 18, 2024

The implementation is based on the std code. I am not sure why we need the try loop over protocol handles instead of just getting the first handle, but I decided to just follow std here.

Because the backend requires access to BootServices it has to rely on the unstable uefi_std feature. We could alternatively use the uefi crate, but it would tie the backend to the uefi crate environment, which is probably not desirable.

TEMP_EFI_ERROR is used as a temporary solution until #568 is resolved, which I plan to do in a separate PR.

cc @usamoi @nicholasbishop

@newpavlov newpavlov requested a review from josephlr December 18, 2024 15:48
impl Error {
pub(crate) const BOOT_SERVICES_UNAVAILABLE: Error = Self::new_internal(10);
pub(crate) const NO_RNG_HANDLE: Error = Self::new_internal(11);
pub(crate) const TEMP_EFI_ERROR: Error = Self::new_internal(12);
Copy link
Member

Choose a reason for hiding this comment

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

Do we need TEMP_EFI_ERROR now if we have #569 ?

Copy link
Member Author

@newpavlov newpavlov Dec 18, 2024

Choose a reason for hiding this comment

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

As I wrote in the OP, to encapsulate the UEFI status codes we need a wider state than 32-bits. Technically, on x86-64 we need 64 bits, but we probably can use NonZeroU64 since status codes with prefixes 0x1, 0x3, and 0x7 are used for "warning" codes.

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.

2 participants