|
| 1 | +// SPDX-License-Identifier: MIT OR Apache-2.0 |
| 2 | + |
| 3 | +use alloc::alloc::{alloc, dealloc, Layout, LayoutError}; |
| 4 | +use core::error::Error; |
| 5 | +use core::fmt; |
| 6 | + |
| 7 | +/// Helper class to maintain the lifetime of a memory region allocated with a non-standard alignment. |
| 8 | +/// Facilitates RAII to properly deallocate when lifetime of the object ends. |
| 9 | +/// |
| 10 | +/// Note: This uses the global Rust allocator under the hood. |
| 11 | +#[allow(clippy::len_without_is_empty)] |
| 12 | +#[derive(Debug)] |
| 13 | +pub struct AlignedBuffer { |
| 14 | + ptr: *mut u8, |
| 15 | + layout: Layout, |
| 16 | +} |
| 17 | + |
| 18 | +impl AlignedBuffer { |
| 19 | + /// Allocate a new memory region with the requested len and alignment. |
| 20 | + pub fn alloc(len: usize, alignment: usize) -> Result<Self, LayoutError> { |
| 21 | + let layout = Layout::from_size_align(len, alignment)?; |
| 22 | + let ptr = unsafe { alloc(layout) }; |
| 23 | + Ok(Self { ptr, layout }) |
| 24 | + } |
| 25 | + |
| 26 | + /// Get a pointer to the aligned memory region managed by this instance. |
| 27 | + #[must_use] |
| 28 | + pub const fn ptr(&self) -> *const u8 { |
| 29 | + self.ptr.cast_const() |
| 30 | + } |
| 31 | + |
| 32 | + /// Get a mutable pointer to the aligned memory region managed by this instance. |
| 33 | + #[must_use] |
| 34 | + pub fn ptr_mut(&mut self) -> *mut u8 { |
| 35 | + self.ptr |
| 36 | + } |
| 37 | + |
| 38 | + /// Get the size of the aligned memory region managed by this instance. |
| 39 | + #[must_use] |
| 40 | + pub const fn len(&self) -> usize { |
| 41 | + self.layout.size() |
| 42 | + } |
| 43 | + |
| 44 | + /// Fill the aligned memory region with data from the given buffer. |
| 45 | + pub fn copy_from(&mut self, data: &[u8]) { |
| 46 | + let len = data.len().min(self.len()); |
| 47 | + unsafe { |
| 48 | + self.ptr.copy_from(data.as_ptr(), len); |
| 49 | + } |
| 50 | + } |
| 51 | + |
| 52 | + /// Check the buffer's alignment against the `required_alignment`. |
| 53 | + pub fn check_alignment(&self, required_alignment: usize) -> Result<(), AlignmentError> { |
| 54 | + //TODO: use bfr.addr() when it's available |
| 55 | + if (self.ptr as usize) % required_alignment != 0 { |
| 56 | + return Err(AlignmentError); //TODO: use >is_aligned_to< when it's available |
| 57 | + } |
| 58 | + Ok(()) |
| 59 | + } |
| 60 | +} |
| 61 | + |
| 62 | +impl Drop for AlignedBuffer { |
| 63 | + fn drop(&mut self) { |
| 64 | + unsafe { |
| 65 | + dealloc(self.ptr, self.layout); |
| 66 | + } |
| 67 | + } |
| 68 | +} |
| 69 | + |
| 70 | +/// The `AlignmentError` is returned if a user-provided buffer doesn't fulfill alignment requirements. |
| 71 | +#[derive(Clone, PartialEq, Eq, Debug)] |
| 72 | +pub struct AlignmentError; |
| 73 | +impl Error for AlignmentError {} |
| 74 | +impl fmt::Display for AlignmentError { |
| 75 | + fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 76 | + f.write_str("invalid parameters to Layout::from_size_align") |
| 77 | + } |
| 78 | +} |
| 79 | + |
| 80 | +#[cfg(test)] |
| 81 | +mod tests { |
| 82 | + use super::AlignedBuffer; |
| 83 | + |
| 84 | + #[test] |
| 85 | + fn test_invalid_arguments() { |
| 86 | + // invalid alignments, valid len |
| 87 | + for request_alignment in [0, 3, 5, 7, 9] { |
| 88 | + for request_len in [1, 32, 64, 128, 1024] { |
| 89 | + assert!(AlignedBuffer::alloc(request_len, request_alignment).is_err()); |
| 90 | + } |
| 91 | + } |
| 92 | + } |
| 93 | + |
| 94 | + #[test] |
| 95 | + fn test_allocation_alignment() { |
| 96 | + for request_alignment in [1, 2, 4, 8, 16, 32, 64, 128] { |
| 97 | + for request_len in [1 as usize, 32, 64, 128, 1024] { |
| 98 | + let buffer = AlignedBuffer::alloc(request_len, request_alignment).unwrap(); |
| 99 | + assert_eq!(buffer.ptr() as usize % request_alignment, 0); |
| 100 | + assert_eq!(buffer.len(), request_len); |
| 101 | + } |
| 102 | + } |
| 103 | + } |
| 104 | +} |
0 commit comments