mirror of https://github.com/aya-rs/aya
aya: move Mmap struct to a utility module
parent
583709f6a0
commit
42f319a470
@ -0,0 +1,63 @@
|
||||
//! Safe wrapper around memory-mapped files.
|
||||
|
||||
use std::{io, os::fd::BorrowedFd, ptr};
|
||||
|
||||
use libc::{MAP_FAILED, c_int, c_void, off_t};
|
||||
|
||||
use super::{SyscallError, mmap, munmap};
|
||||
|
||||
// MMap corresponds to a memory-mapped region.
|
||||
//
|
||||
// The data is unmapped in Drop.
|
||||
#[cfg_attr(test, derive(Debug))]
|
||||
pub(crate) struct MMap {
|
||||
pub(crate) ptr: ptr::NonNull<c_void>,
|
||||
pub(crate) len: usize,
|
||||
}
|
||||
|
||||
// Needed because NonNull<T> is !Send and !Sync out of caution that the data
|
||||
// might be aliased unsafely.
|
||||
unsafe impl Send for MMap {}
|
||||
unsafe impl Sync for MMap {}
|
||||
|
||||
impl MMap {
|
||||
pub(crate) fn new(
|
||||
fd: BorrowedFd<'_>,
|
||||
len: usize,
|
||||
prot: c_int,
|
||||
flags: c_int,
|
||||
offset: off_t,
|
||||
) -> Result<Self, SyscallError> {
|
||||
match unsafe { mmap(ptr::null_mut(), len, prot, flags, fd, offset) } {
|
||||
MAP_FAILED => Err(SyscallError {
|
||||
call: "mmap",
|
||||
io_error: io::Error::last_os_error(),
|
||||
}),
|
||||
ptr => {
|
||||
let ptr = ptr::NonNull::new(ptr).ok_or(
|
||||
// This should never happen, but to be paranoid, and so we never need to talk
|
||||
// about a null pointer, we check it anyway.
|
||||
SyscallError {
|
||||
call: "mmap",
|
||||
io_error: io::Error::other("mmap returned null pointer"),
|
||||
},
|
||||
)?;
|
||||
Ok(Self { ptr, len })
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl AsRef<[u8]> for MMap {
|
||||
fn as_ref(&self) -> &[u8] {
|
||||
let Self { ptr, len } = self;
|
||||
unsafe { std::slice::from_raw_parts(ptr.as_ptr().cast(), *len) }
|
||||
}
|
||||
}
|
||||
|
||||
impl Drop for MMap {
|
||||
fn drop(&mut self) {
|
||||
let Self { ptr, len } = *self;
|
||||
unsafe { munmap(ptr.as_ptr(), len) };
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue