#![cfg(target_os = "linux")]
use anyhow::Context;
use hcl::ioctl::MshvVtlLow;
use inspect::Inspect;
use page_pool_alloc::PoolSource;
use std::os::fd::AsFd;
#[derive(Inspect)]
pub struct HclMapper {
#[inspect(skip)]
fd: MshvVtlLow,
gpa_bias: u64,
is_shared: bool,
}
impl HclMapper {
pub fn new_shared(vtom: u64) -> anyhow::Result<Self> {
Self::new_inner(vtom, true)
}
pub fn new_private() -> anyhow::Result<Self> {
Self::new_inner(0, false)
}
fn new_inner(gpa_bias: u64, is_shared: bool) -> anyhow::Result<Self> {
let fd = MshvVtlLow::new().context("failed to open gpa fd")?;
Ok(Self {
fd,
gpa_bias,
is_shared,
})
}
}
impl PoolSource for HclMapper {
fn address_bias(&self) -> u64 {
self.gpa_bias
}
fn file_offset(&self, address: u64) -> u64 {
address.wrapping_add(if self.is_shared {
MshvVtlLow::SHARED_MEMORY_FLAG
} else {
0
})
}
fn mappable(&self) -> sparse_mmap::MappableRef<'_> {
self.fd.get().as_fd()
}
}