mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-03 13:11:31 +00:00
fix memory initialization in boot setup
This commit is contained in:
@ -3,7 +3,8 @@ pub mod memory;
|
|||||||
pub mod sys;
|
pub mod sys;
|
||||||
|
|
||||||
use crate::sys::{
|
use crate::sys::{
|
||||||
Hypercall, MmapBatch, XenCapabilitiesInfo, HYPERVISOR_XEN_VERSION, XENVER_CAPABILITIES,
|
Hypercall, MmapBatch, MultiCallEntry, XenCapabilitiesInfo, HYPERVISOR_MULTICALL,
|
||||||
|
HYPERVISOR_XEN_VERSION, XENVER_CAPABILITIES,
|
||||||
};
|
};
|
||||||
use libc::{mmap, MAP_FAILED, MAP_SHARED, PROT_READ, PROT_WRITE};
|
use libc::{mmap, MAP_FAILED, MAP_SHARED, PROT_READ, PROT_WRITE};
|
||||||
use nix::errno::Errno;
|
use nix::errno::Errno;
|
||||||
@ -128,6 +129,15 @@ impl XenCall {
|
|||||||
self.hypercall(op, [arg1, arg2, arg3, arg4, 0])
|
self.hypercall(op, [arg1, arg2, arg3, arg4, 0])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn multicall(&self, calls: &mut [MultiCallEntry]) -> Result<(), XenCallError> {
|
||||||
|
self.hypercall2(
|
||||||
|
HYPERVISOR_MULTICALL,
|
||||||
|
calls.as_mut_ptr() as c_ulong,
|
||||||
|
calls.len() as c_ulong,
|
||||||
|
)?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
pub fn hypercall5(
|
pub fn hypercall5(
|
||||||
&self,
|
&self,
|
||||||
op: c_ulong,
|
op: c_ulong,
|
||||||
|
@ -1,8 +1,11 @@
|
|||||||
use crate::sys::{MemoryReservation, HYPERVISOR_MEMORY_OP, XEN_MEM_POPULATE_PHYSMAP};
|
use crate::sys::{
|
||||||
|
MemoryReservation, MultiCallEntry, HYPERVISOR_MEMORY_OP, XEN_MEM_POPULATE_PHYSMAP,
|
||||||
|
};
|
||||||
use crate::{XenCall, XenCallError};
|
use crate::{XenCall, XenCallError};
|
||||||
|
|
||||||
use std::ffi::c_ulong;
|
use std::ffi::c_ulong;
|
||||||
|
|
||||||
|
use libc::c_long;
|
||||||
use std::ptr::addr_of_mut;
|
use std::ptr::addr_of_mut;
|
||||||
|
|
||||||
pub struct MemoryControl<'a> {
|
pub struct MemoryControl<'a> {
|
||||||
@ -30,12 +33,21 @@ impl MemoryControl<'_> {
|
|||||||
mem_flags,
|
mem_flags,
|
||||||
domid: domid as u16,
|
domid: domid as u16,
|
||||||
};
|
};
|
||||||
let code = self.call.hypercall2(
|
|
||||||
HYPERVISOR_MEMORY_OP,
|
let calls = &mut [MultiCallEntry {
|
||||||
|
op: HYPERVISOR_MEMORY_OP,
|
||||||
|
result: 0,
|
||||||
|
args: [
|
||||||
XEN_MEM_POPULATE_PHYSMAP as c_ulong,
|
XEN_MEM_POPULATE_PHYSMAP as c_ulong,
|
||||||
addr_of_mut!(reservation) as c_ulong,
|
addr_of_mut!(reservation) as c_ulong,
|
||||||
)?;
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
],
|
||||||
|
}];
|
||||||
|
self.call.multicall(calls)?;
|
||||||
|
let code = calls[0].result as c_long;
|
||||||
if code < 0 {
|
if code < 0 {
|
||||||
return Err(XenCallError::new("failed to populate physmap"));
|
return Err(XenCallError::new("failed to populate physmap"));
|
||||||
}
|
}
|
||||||
|
@ -318,4 +318,12 @@ pub struct MemoryReservation {
|
|||||||
pub domid: u16,
|
pub domid: u16,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[repr(C)]
|
||||||
|
#[derive(Copy, Clone, Debug)]
|
||||||
|
pub struct MultiCallEntry {
|
||||||
|
pub op: c_ulong,
|
||||||
|
pub result: c_ulong,
|
||||||
|
pub args: [c_ulong; 6],
|
||||||
|
}
|
||||||
|
|
||||||
pub const XEN_MEM_POPULATE_PHYSMAP: u32 = 6;
|
pub const XEN_MEM_POPULATE_PHYSMAP: u32 = 6;
|
||||||
|
@ -34,6 +34,7 @@ pub struct BootSetup<'a> {
|
|||||||
pfn_alloc_end: u64,
|
pfn_alloc_end: u64,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
struct DomainSegment {
|
struct DomainSegment {
|
||||||
_vstart: u64,
|
_vstart: u64,
|
||||||
_vend: u64,
|
_vend: u64,
|
||||||
@ -143,10 +144,14 @@ impl BootSetup<'_> {
|
|||||||
|
|
||||||
let allocsz = (1024 * 1024).min(pages - j);
|
let allocsz = (1024 * 1024).min(pages - j);
|
||||||
let p2m_idx = (pfn_base + j) as usize;
|
let p2m_idx = (pfn_base + j) as usize;
|
||||||
let extent_start = p2m[p2m_idx];
|
let p2m_end_idx = p2m_idx + allocsz as usize;
|
||||||
let result =
|
let result = self.memctl.populate_physmap(
|
||||||
self.memctl
|
self.domid,
|
||||||
.populate_physmap(self.domid, allocsz, 0, 0, &[extent_start])?;
|
allocsz,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
&p2m[p2m_idx..p2m_end_idx],
|
||||||
|
)?;
|
||||||
|
|
||||||
if result.len() != allocsz as usize {
|
if result.len() != allocsz as usize {
|
||||||
return Err(XenClientError::new(
|
return Err(XenClientError::new(
|
||||||
@ -163,7 +168,7 @@ impl BootSetup<'_> {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn initialize_hypercall(&mut self, image_info: BootImageInfo) -> Result<(), XenClientError> {
|
fn _initialize_hypercall(&mut self, image_info: BootImageInfo) -> Result<(), XenClientError> {
|
||||||
if image_info.virt_hypercall != XEN_UNSET_ADDR {
|
if image_info.virt_hypercall != XEN_UNSET_ADDR {
|
||||||
self.domctl
|
self.domctl
|
||||||
.hypercall_init(self.domid, image_info.virt_hypercall)?;
|
.hypercall_init(self.domid, image_info.virt_hypercall)?;
|
||||||
@ -178,8 +183,8 @@ impl BootSetup<'_> {
|
|||||||
) -> Result<(), XenClientError> {
|
) -> Result<(), XenClientError> {
|
||||||
self.domctl.set_max_mem(self.domid, memkb)?;
|
self.domctl.set_max_mem(self.domid, memkb)?;
|
||||||
self.initialize_memory(memkb)?;
|
self.initialize_memory(memkb)?;
|
||||||
let _kernel_segment = self.alloc_segment(image_info.virt_kend - image_info.virt_kstart)?;
|
let kernel_segment = self.alloc_segment(image_info.virt_kend - image_info.virt_kstart)?;
|
||||||
self.initialize_hypercall(image_info)?;
|
println!("kernel_segment: {:?}", kernel_segment);
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user