- Sponsor
-
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
Add safe protocol wrapper for EFI_ATA_PASS_THRU_PROTOCOL #1595
base: main
Are you sure you want to change the base?
Conversation
AlignedBuffer is a helper class that manages the livetime of a memory region, allocated using a certain alignment. Like Box, it handles deallocation when the object isn't used anymore.
5d20e04
to
17ff660
Compare
/// Note: This uses the global Rust allocator under the hood. | ||
#[allow(clippy::len_without_is_empty)] | ||
#[derive(Debug)] | ||
pub struct AlignedBuffer { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm fine with keeping this struct. However, the helpers
module is supposed to provide helpers to interact with the outer environment.
Therefore, I see better fit for AlignedBuffer
in <uefi>/mem/mod.rs
.
Are you fine with keeping the AlignedBuffer struct, @nicholasbishop ?
}; | ||
let ata_pt = unsafe { | ||
// don't open exclusive! That would break other tests | ||
boot::open_protocol::<AtaPassThru>(params, OpenProtocolAttributes::GetProtocol).unwrap() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
but why? They do not run concurrently but sequentially
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No idea. Maybe it unloads a driver that's required for later tests when I open it exclusively.
Using open_protocol_exclusive
here results in:
[PANIC]: panicked at uefi-test-runner/src/proto/device_path.rs:29:85:
called `Result::unwrap()` on an `Err` value: Error { status: INVALID_PARAMETER, data: () }
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for your contribution! Left a few remarks
Implemented a safe API wrapper for
EFI_ATA_PASS_THRU_PROTOCOL
[1d3de7f0-0807-424f-aa69-11a54e19a46f
].Added an integration-test for it.
This contains a copy of the AlignedBuffer commit from #1589.
This uses the iterator/mutable design I suggested here: #1589 (comment) where the iter method only captures the protocol (
AtaPassThru
) immutably, but requires you to use the produced element (AtaDevice
) in a mutable way for meaningful methods like execute_command.Checklist