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

helpers: Add AlignedBuffer #1600

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

seijikun
Copy link
Contributor

@seijikun seijikun commented Apr 1, 2025

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.

Checklist

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

@nicholasbishop
Copy link
Member

As mentioned in #1595 (comment), let's move to the mem module.

@seijikun seijikun force-pushed the mr-alignedbuffer branch 2 times, most recently from 9263616 to bffd748 Compare April 1, 2025 22:37
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.

Thanks for your many contributions and your patience! I left a few remarks.

If you resolve them, we are good to go

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 requested a review from phip1611 April 2, 2025 12:34
#[must_use]
pub fn from_layout(layout: Layout) -> Self {
let ptr = unsafe { alloc(layout) };
let ptr = NonNull::new(ptr).expect("Allocation failed");
Copy link
Member

@phip1611 phip1611 Apr 2, 2025

Choose a reason for hiding this comment

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

I'm not sure if it is nice to just panic instead of report an error. Perhaps we need a

enum AlignedBufferError {
    Layout(LayoutError),
    OutOfMemory,
}

error type that is also returned by the constructors.

I'd like to hear @nicholasbishop opinion on that

Copy link
Member

Choose a reason for hiding this comment

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

I don't have a very strong opinion either way. Rust does tend to just panic on allocation failures in std, although they later added things like https://doc.rust-lang.org/std/vec/struct.Vec.html#method.try_reserve to avoid panic. I think allocation failing is theoretically more likely in UEFI than in a hosted environment, since there's (presumably) no overcommit in a UEFI environment. However, in practice an allocation failure is very unlikely so perhaps it's fine to just panic.

With that background, my opinion is: let's keep these functions panicking, and we can easily add non-panicking constructors in the future without breaking compatibility.

Please add a # Panics section in the docstrings of these two constructors so that it's clear for callers what the behavior is.

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.

3 participants