2020-02-05 03:07:16 +00:00
|
|
|
// Copyright © 2020, Oracle and/or its affiliates.
|
|
|
|
//
|
2019-02-25 21:53:01 +00:00
|
|
|
// Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
#![allow(
|
|
|
|
clippy::unreadable_literal,
|
2019-08-15 15:41:40 +00:00
|
|
|
clippy::redundant_static_lifetimes,
|
2019-02-25 21:53:01 +00:00
|
|
|
clippy::cast_lossless,
|
|
|
|
clippy::transmute_ptr_to_ptr,
|
|
|
|
clippy::cast_ptr_alignment
|
|
|
|
)]
|
|
|
|
|
|
|
|
extern crate byteorder;
|
|
|
|
extern crate kvm_bindings;
|
|
|
|
extern crate libc;
|
|
|
|
|
2019-09-05 15:29:55 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
2019-08-14 16:14:34 +00:00
|
|
|
extern crate acpi_tables;
|
2019-02-25 21:53:01 +00:00
|
|
|
extern crate arch_gen;
|
|
|
|
extern crate kvm_ioctls;
|
2019-06-10 09:14:02 +00:00
|
|
|
extern crate linux_loader;
|
2019-02-25 21:53:01 +00:00
|
|
|
extern crate vm_memory;
|
|
|
|
|
|
|
|
use std::result;
|
|
|
|
|
2020-01-24 06:51:15 +00:00
|
|
|
#[derive(Debug)]
|
2019-02-25 21:53:01 +00:00
|
|
|
pub enum Error {
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
/// X86_64 specific error triggered during system configuration.
|
|
|
|
X86_64Setup(x86_64::Error),
|
|
|
|
/// The zero page extends past the end of guest_mem.
|
|
|
|
ZeroPagePastRamEnd,
|
|
|
|
/// Error writing the zero page of guest memory.
|
2020-01-24 06:51:15 +00:00
|
|
|
ZeroPageSetup(vm_memory::GuestMemoryError),
|
2020-02-05 03:07:16 +00:00
|
|
|
/// The memory map table extends past the end of guest memory.
|
|
|
|
MemmapTablePastRamEnd,
|
|
|
|
/// Error writing memory map table to guest memory.
|
|
|
|
MemmapTableSetup,
|
|
|
|
/// The hvm_start_info structure extends past the end of guest memory.
|
|
|
|
StartInfoPastRamEnd,
|
|
|
|
/// Error writing hvm_start_info to guest memory.
|
|
|
|
StartInfoSetup,
|
2019-02-25 21:53:01 +00:00
|
|
|
}
|
|
|
|
pub type Result<T> = result::Result<T, Error>;
|
|
|
|
|
2019-07-17 16:54:11 +00:00
|
|
|
#[derive(PartialEq)]
|
|
|
|
pub enum RegionType {
|
|
|
|
/// RAM type
|
|
|
|
Ram,
|
2019-07-25 08:20:59 +00:00
|
|
|
|
|
|
|
/// SubRegion memory region.
|
|
|
|
/// A SubRegion is a memory region sub-region, allowing for a region
|
|
|
|
/// to be split into sub regions managed separately.
|
|
|
|
/// For example, the x86 32-bit memory hole is a SubRegion.
|
|
|
|
SubRegion,
|
|
|
|
|
|
|
|
/// Reserved type.
|
|
|
|
/// A Reserved memory region is one that should not be used for memory
|
|
|
|
/// allocation. This type can be used to prevent the VMM from allocating
|
|
|
|
/// memory ranges in a specific address range.
|
2019-07-17 16:54:11 +00:00
|
|
|
Reserved,
|
|
|
|
}
|
|
|
|
|
2019-02-25 21:53:01 +00:00
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
pub mod aarch64;
|
|
|
|
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
pub use aarch64::{
|
|
|
|
arch_memory_regions, configure_system, get_reserved_mem_addr, layout::CMDLINE_MAX_SIZE,
|
|
|
|
layout::CMDLINE_START,
|
|
|
|
};
|
|
|
|
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
pub mod x86_64;
|
|
|
|
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
pub use x86_64::{
|
2019-09-27 13:11:50 +00:00
|
|
|
arch_memory_regions, configure_system, layout, layout::CMDLINE_MAX_SIZE, layout::CMDLINE_START,
|
2020-02-12 03:37:33 +00:00
|
|
|
BootProtocol, EntryPoint,
|
2019-02-25 21:53:01 +00:00
|
|
|
};
|