Skip to content
  • 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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

seijikun
Copy link
Contributor

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

  • Sensible git history (for example, squash "typo" or "fix" commits). See the Rewriting History guide for help.
  • Update the changelog (if necessary)

Sorry, something went wrong.

Verified

This commit was signed with the committer’s verified signature.
seijikun Markus Ebner
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.
@seijikun seijikun force-pushed the mr-atapt branch 14 times, most recently from 5d20e04 to 17ff660 Compare March 28, 2025 01:19
/// Note: This uses the global Rust allocator under the hood.
#[allow(clippy::len_without_is_empty)]
#[derive(Debug)]
pub struct AlignedBuffer {
Copy link
Member

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()
Copy link
Member

@phip1611 phip1611 Mar 28, 2025

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

Copy link
Contributor Author

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: () }

Copy link
Member

@phip1611 phip1611 left a 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

Verified

This commit was signed with the committer’s verified signature.
seijikun Markus Ebner
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.

None yet

2 participants