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

unsafe_protocol is not necessary? #1573

Closed
WhyNotHugo opened this issue Mar 15, 2025 · 4 comments
Closed

unsafe_protocol is not necessary? #1573

WhyNotHugo opened this issue Mar 15, 2025 · 4 comments

Comments

@WhyNotHugo
Copy link

I wrote a little stub loader for the Linux kernel which exposes an initrd for it.

I had to implement the EFI_LOAD_FILE2_PROTOCOL protocol with a struct as follows:

/// Implementation of the `EFI_LOAD_FILE2_PROTOCOL` protocol
///
/// Used to obtain files from arbitrary devices that are not boot options.
#[repr(C)]
#[uefi::proto::unsafe_protocol(EFI_LOADFILE2_PROTOCOL)] // XXX: Not needed?
pub struct LoadFile2Protocol {
    pub load_file: LoadFile2,
    initrd: &'static [u8],
}

It was not clear to me why unsafe_protocol was required, and inspecting the source in uefi-rs didn't reveal this being used. This GUID is unused, and the actual one that is used is the one passed to install_protocol_interface.

I deleted the line and my service still compiles and runs perfectly. Is this macro no longer required? Is it only for specific situations? The documentation indicates that it implements a couple of Traits, but the documentation for these traits doesn't specify when they are required either. Protocols work fine without them too.

@phip1611
Copy link
Member

I think what you want to do is already done in our tests:

struct CustomLoadFile2Protocol {

You can use the code as template. And yep, you don't need [uefi::proto::unsafe_protocol(EFI_LOADFILE2_PROTOCOL) as you can also get the UUID from uefi_raw::protocol::media::LoadFile2Protocol:GUID; you can also find this in the code linked above

@nicholasbishop
Copy link
Member

I deleted the line and my service still compiles and runs perfectly. Is this macro no longer required? Is it only for specific situations?

The Protocol trait enables opening that protocol in Rust code. In your case you are only implementing the protocol in Rust code, and the Linux kernel is opening the protocol.

We should indeed make this clear in the documentation.

@nicholasbishop
Copy link
Member

Closing now, as the docs have been updated.

@WhyNotHugo
Copy link
Author

Thanks!

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

No branches or pull requests

3 participants