2019-05-23 19:48:05 +00:00
|
|
|
// Copyright © 2019 Intel Corporation
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
//
|
|
|
|
|
2019-08-28 10:01:01 +00:00
|
|
|
extern crate vm_virtio;
|
|
|
|
|
2019-05-23 19:48:05 +00:00
|
|
|
use net_util::MacAddr;
|
|
|
|
use std::convert::From;
|
|
|
|
use std::net::AddrParseError;
|
|
|
|
use std::net::Ipv4Addr;
|
2019-09-23 17:46:35 +00:00
|
|
|
use std::path::PathBuf;
|
2019-05-23 19:48:05 +00:00
|
|
|
use std::result;
|
|
|
|
|
2019-09-27 09:40:50 +00:00
|
|
|
pub const DEFAULT_VCPUS: u8 = 1;
|
|
|
|
pub const DEFAULT_MEMORY_MB: u64 = 512;
|
2019-05-23 19:48:05 +00:00
|
|
|
pub const DEFAULT_RNG_SOURCE: &str = "/dev/urandom";
|
|
|
|
|
|
|
|
/// Errors associated with VM configuration parameters.
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum Error<'a> {
|
|
|
|
/// Failed parsing cpus parameters.
|
|
|
|
ParseCpusParams(std::num::ParseIntError),
|
2019-05-24 19:21:23 +00:00
|
|
|
/// Failed parsing memory file parameter.
|
|
|
|
ParseMemoryFileParam,
|
2019-05-23 19:48:05 +00:00
|
|
|
/// Failed parsing kernel parameters.
|
|
|
|
ParseKernelParams,
|
|
|
|
/// Failed parsing kernel command line parameters.
|
|
|
|
ParseCmdlineParams,
|
|
|
|
/// Failed parsing disks parameters.
|
|
|
|
ParseDisksParams,
|
|
|
|
/// Failed parsing random number generator parameters.
|
|
|
|
ParseRngParams,
|
|
|
|
/// Failed parsing network ip parameter.
|
|
|
|
ParseNetIpParam(AddrParseError),
|
|
|
|
/// Failed parsing network mask parameter.
|
|
|
|
ParseNetMaskParam(AddrParseError),
|
|
|
|
/// Failed parsing network mac parameter.
|
|
|
|
ParseNetMacParam(&'a str),
|
2019-05-22 20:06:49 +00:00
|
|
|
/// Failed parsing fs tag parameter.
|
|
|
|
ParseFsTagParam,
|
|
|
|
/// Failed parsing fs socket path parameter.
|
|
|
|
ParseFsSockParam,
|
|
|
|
/// Failed parsing fs number of queues parameter.
|
|
|
|
ParseFsNumQueuesParam(std::num::ParseIntError),
|
|
|
|
/// Failed parsing fs queue size parameter.
|
|
|
|
ParseFsQueueSizeParam(std::num::ParseIntError),
|
2019-08-05 19:45:58 +00:00
|
|
|
/// Failed parsing fs dax parameter.
|
|
|
|
ParseFsDax,
|
|
|
|
/// Cannot have dax=off along with cache_size parameter.
|
|
|
|
InvalidCacheSizeWithDaxOff,
|
2019-06-19 20:48:37 +00:00
|
|
|
/// Failed parsing persitent memory file parameter.
|
|
|
|
ParsePmemFileParam,
|
2019-07-09 03:13:02 +00:00
|
|
|
/// Failed parsing size parameter.
|
|
|
|
ParseSizeParam(std::num::ParseIntError),
|
2019-07-22 19:29:02 +00:00
|
|
|
/// Failed parsing console parameter.
|
|
|
|
ParseConsoleParam,
|
|
|
|
/// Both console and serial are tty.
|
|
|
|
ParseTTYParam,
|
2019-08-28 10:01:01 +00:00
|
|
|
/// Failed parsing vhost-user-net mac parameter.
|
|
|
|
ParseVuNetMacParam(&'a str),
|
2019-09-10 11:28:30 +00:00
|
|
|
/// Failed parsing vhost-user sock parameter.
|
|
|
|
ParseVuSockParam,
|
|
|
|
/// Failed parsing vhost-user queue number parameter.
|
|
|
|
ParseVuNumQueuesParam(std::num::ParseIntError),
|
|
|
|
/// Failed parsing vhost-user queue size parameter.
|
|
|
|
ParseVuQueueSizeParam(std::num::ParseIntError),
|
2019-08-28 10:01:01 +00:00
|
|
|
/// Failed parsing vhost-user-net server parameter.
|
|
|
|
ParseVuNetServerParam(std::num::ParseIntError),
|
2019-09-11 03:16:41 +00:00
|
|
|
/// Failed parsing vhost-user-blk wce parameter.
|
|
|
|
ParseVuBlkWceParam(std::str::ParseBoolError),
|
2019-09-04 17:39:17 +00:00
|
|
|
/// Failed parsing vsock context ID parameter.
|
|
|
|
ParseVsockCidParam(std::num::ParseIntError),
|
|
|
|
/// Failed parsing vsock socket path parameter.
|
|
|
|
ParseVsockSockParam,
|
2019-09-19 07:52:55 +00:00
|
|
|
/// Missing kernel configuration
|
|
|
|
ValidateMissingKernelConfig,
|
2019-10-02 21:01:36 +00:00
|
|
|
/// Failed parsing iommu parameter for the device.
|
|
|
|
ParseDeviceIommu,
|
2019-05-23 19:48:05 +00:00
|
|
|
}
|
|
|
|
pub type Result<'a, T> = result::Result<T, Error<'a>>;
|
|
|
|
|
|
|
|
pub struct VmParams<'a> {
|
|
|
|
pub cpus: &'a str,
|
|
|
|
pub memory: &'a str,
|
2019-09-19 07:52:55 +00:00
|
|
|
pub kernel: Option<&'a str>,
|
2019-05-23 19:48:05 +00:00
|
|
|
pub cmdline: Option<&'a str>,
|
2019-07-08 22:48:39 +00:00
|
|
|
pub disks: Option<Vec<&'a str>>,
|
2019-07-08 22:31:13 +00:00
|
|
|
pub net: Option<Vec<&'a str>>,
|
2019-05-22 20:06:49 +00:00
|
|
|
pub rng: &'a str,
|
2019-06-27 16:14:11 +00:00
|
|
|
pub fs: Option<Vec<&'a str>>,
|
2019-06-28 08:45:58 +00:00
|
|
|
pub pmem: Option<Vec<&'a str>>,
|
2019-07-10 14:41:46 +00:00
|
|
|
pub serial: &'a str,
|
2019-07-22 19:29:02 +00:00
|
|
|
pub console: &'a str,
|
2019-07-15 09:42:40 +00:00
|
|
|
pub devices: Option<Vec<&'a str>>,
|
2019-08-28 10:01:01 +00:00
|
|
|
pub vhost_user_net: Option<Vec<&'a str>>,
|
2019-09-11 03:16:41 +00:00
|
|
|
pub vhost_user_blk: Option<Vec<&'a str>>,
|
2019-09-04 17:39:17 +00:00
|
|
|
pub vsock: Option<Vec<&'a str>>,
|
2019-05-23 19:48:05 +00:00
|
|
|
}
|
|
|
|
|
2019-07-09 03:13:02 +00:00
|
|
|
fn parse_size(size: &str) -> Result<u64> {
|
|
|
|
let s = size.trim();
|
|
|
|
|
|
|
|
let shift = if s.ends_with('K') {
|
|
|
|
10
|
|
|
|
} else if s.ends_with('M') {
|
|
|
|
20
|
|
|
|
} else if s.ends_with('G') {
|
|
|
|
30
|
|
|
|
} else {
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
let s = s.trim_end_matches(|c| c == 'K' || c == 'M' || c == 'G');
|
|
|
|
let res = s.parse::<u64>().map_err(Error::ParseSizeParam)?;
|
|
|
|
Ok(res << shift)
|
|
|
|
}
|
|
|
|
|
2019-10-02 21:01:36 +00:00
|
|
|
fn parse_iommu(iommu: &str) -> Result<bool> {
|
|
|
|
if !iommu.is_empty() {
|
|
|
|
let res = match iommu {
|
|
|
|
"on" => true,
|
|
|
|
"off" => false,
|
|
|
|
_ => return Err(Error::ParseDeviceIommu),
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(res)
|
|
|
|
} else {
|
|
|
|
Ok(false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-27 09:40:50 +00:00
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
2019-05-23 19:48:05 +00:00
|
|
|
pub struct CpusConfig(pub u8);
|
|
|
|
|
|
|
|
impl CpusConfig {
|
|
|
|
pub fn parse(cpus: &str) -> Result<Self> {
|
|
|
|
Ok(CpusConfig(
|
|
|
|
cpus.parse::<u8>().map_err(Error::ParseCpusParams)?,
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<&CpusConfig> for u8 {
|
|
|
|
fn from(val: &CpusConfig) -> Self {
|
|
|
|
val.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-27 09:40:50 +00:00
|
|
|
impl Default for CpusConfig {
|
|
|
|
fn default() -> Self {
|
|
|
|
CpusConfig(DEFAULT_VCPUS)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
2019-09-23 16:51:36 +00:00
|
|
|
pub struct MemoryConfig {
|
2019-05-24 19:21:23 +00:00
|
|
|
pub size: u64,
|
2019-09-23 16:51:36 +00:00
|
|
|
pub file: Option<PathBuf>,
|
2019-05-23 19:48:05 +00:00
|
|
|
}
|
|
|
|
|
2019-09-23 16:51:36 +00:00
|
|
|
impl MemoryConfig {
|
|
|
|
pub fn parse(memory: &str) -> Result<Self> {
|
2019-05-24 19:21:23 +00:00
|
|
|
// Split the parameters based on the comma delimiter
|
|
|
|
let params_list: Vec<&str> = memory.split(',').collect();
|
|
|
|
|
|
|
|
let mut size_str: &str = "";
|
|
|
|
let mut file_str: &str = "";
|
|
|
|
let mut backed = false;
|
|
|
|
|
|
|
|
for param in params_list.iter() {
|
|
|
|
if param.starts_with("size=") {
|
|
|
|
size_str = ¶m[5..];
|
|
|
|
} else if param.starts_with("file=") {
|
|
|
|
backed = true;
|
|
|
|
file_str = ¶m[5..];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let file = if backed {
|
|
|
|
if file_str.is_empty() {
|
|
|
|
return Err(Error::ParseMemoryFileParam);
|
|
|
|
}
|
|
|
|
|
2019-09-23 16:51:36 +00:00
|
|
|
Some(PathBuf::from(file_str))
|
2019-05-24 19:21:23 +00:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(MemoryConfig {
|
2019-07-09 03:13:02 +00:00
|
|
|
size: parse_size(size_str)?,
|
2019-05-24 19:21:23 +00:00
|
|
|
file,
|
|
|
|
})
|
2019-05-23 19:48:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-27 09:40:50 +00:00
|
|
|
impl Default for MemoryConfig {
|
|
|
|
fn default() -> Self {
|
|
|
|
MemoryConfig {
|
|
|
|
size: DEFAULT_MEMORY_MB << 20,
|
|
|
|
file: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
2019-09-23 16:54:00 +00:00
|
|
|
pub struct KernelConfig {
|
|
|
|
pub path: PathBuf,
|
2019-05-23 19:48:05 +00:00
|
|
|
}
|
|
|
|
|
2019-09-27 09:40:50 +00:00
|
|
|
#[derive(Clone, Deserialize, Serialize)]
|
2019-05-23 19:48:05 +00:00
|
|
|
pub struct CmdlineConfig {
|
2019-09-27 08:39:56 +00:00
|
|
|
pub args: String,
|
2019-05-23 19:48:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl CmdlineConfig {
|
|
|
|
pub fn parse(cmdline: Option<&str>) -> Result<Self> {
|
2019-09-27 08:39:56 +00:00
|
|
|
let args = cmdline
|
2019-05-23 19:48:05 +00:00
|
|
|
.map(std::string::ToString::to_string)
|
|
|
|
.unwrap_or_else(String::new);
|
|
|
|
|
2019-09-27 16:06:53 +00:00
|
|
|
Ok(CmdlineConfig { args })
|
2019-05-23 19:48:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-27 09:40:50 +00:00
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
2019-09-23 17:12:19 +00:00
|
|
|
pub struct DiskConfig {
|
|
|
|
pub path: PathBuf,
|
2019-10-02 21:01:36 +00:00
|
|
|
#[serde(default)]
|
|
|
|
pub iommu: bool,
|
2019-05-23 19:48:05 +00:00
|
|
|
}
|
|
|
|
|
2019-09-23 17:12:19 +00:00
|
|
|
impl DiskConfig {
|
|
|
|
pub fn parse(disk: &str) -> Result<Self> {
|
2019-10-02 21:01:36 +00:00
|
|
|
// Split the parameters based on the comma delimiter
|
|
|
|
let params_list: Vec<&str> = disk.split(',').collect();
|
|
|
|
|
|
|
|
let mut path_str: &str = "";
|
|
|
|
let mut iommu_str: &str = "";
|
|
|
|
|
|
|
|
for param in params_list.iter() {
|
|
|
|
if param.starts_with("path=") {
|
|
|
|
path_str = ¶m[5..];
|
|
|
|
} else if param.starts_with("iommu=") {
|
|
|
|
iommu_str = ¶m[6..];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-23 19:48:05 +00:00
|
|
|
Ok(DiskConfig {
|
2019-10-02 21:01:36 +00:00
|
|
|
path: PathBuf::from(path_str),
|
|
|
|
iommu: parse_iommu(iommu_str)?,
|
2019-05-23 19:48:05 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-27 09:40:50 +00:00
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
2019-09-23 17:14:35 +00:00
|
|
|
pub struct NetConfig {
|
|
|
|
pub tap: Option<String>,
|
2019-05-23 19:48:05 +00:00
|
|
|
pub ip: Ipv4Addr,
|
|
|
|
pub mask: Ipv4Addr,
|
|
|
|
pub mac: MacAddr,
|
2019-10-02 21:13:44 +00:00
|
|
|
#[serde(default)]
|
|
|
|
pub iommu: bool,
|
2019-05-23 19:48:05 +00:00
|
|
|
}
|
|
|
|
|
2019-09-23 17:14:35 +00:00
|
|
|
impl NetConfig {
|
|
|
|
pub fn parse(net: &str) -> Result<Self> {
|
2019-05-23 19:48:05 +00:00
|
|
|
// Split the parameters based on the comma delimiter
|
2019-07-08 22:31:13 +00:00
|
|
|
let params_list: Vec<&str> = net.split(',').collect();
|
2019-05-23 19:48:05 +00:00
|
|
|
|
|
|
|
let mut tap_str: &str = "";
|
|
|
|
let mut ip_str: &str = "";
|
|
|
|
let mut mask_str: &str = "";
|
|
|
|
let mut mac_str: &str = "";
|
2019-10-02 21:13:44 +00:00
|
|
|
let mut iommu_str: &str = "";
|
2019-05-23 19:48:05 +00:00
|
|
|
|
|
|
|
for param in params_list.iter() {
|
|
|
|
if param.starts_with("tap=") {
|
|
|
|
tap_str = ¶m[4..];
|
|
|
|
} else if param.starts_with("ip=") {
|
|
|
|
ip_str = ¶m[3..];
|
|
|
|
} else if param.starts_with("mask=") {
|
|
|
|
mask_str = ¶m[5..];
|
|
|
|
} else if param.starts_with("mac=") {
|
|
|
|
mac_str = ¶m[4..];
|
2019-10-02 21:13:44 +00:00
|
|
|
} else if param.starts_with("iommu=") {
|
|
|
|
iommu_str = ¶m[6..];
|
2019-05-23 19:48:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-23 17:14:35 +00:00
|
|
|
let mut tap: Option<String> = None;
|
2019-05-23 19:48:05 +00:00
|
|
|
let mut ip: Ipv4Addr = Ipv4Addr::new(192, 168, 249, 1);
|
|
|
|
let mut mask: Ipv4Addr = Ipv4Addr::new(255, 255, 255, 0);;
|
|
|
|
let mut mac: MacAddr = MacAddr::local_random();
|
2019-10-02 21:13:44 +00:00
|
|
|
let iommu = parse_iommu(iommu_str)?;
|
2019-05-23 19:48:05 +00:00
|
|
|
|
|
|
|
if !tap_str.is_empty() {
|
2019-09-23 17:14:35 +00:00
|
|
|
tap = Some(tap_str.to_string());
|
2019-05-23 19:48:05 +00:00
|
|
|
}
|
|
|
|
if !ip_str.is_empty() {
|
|
|
|
ip = ip_str.parse().map_err(Error::ParseNetIpParam)?;
|
|
|
|
}
|
|
|
|
if !mask_str.is_empty() {
|
|
|
|
mask = mask_str.parse().map_err(Error::ParseNetMaskParam)?;
|
|
|
|
}
|
|
|
|
if !mac_str.is_empty() {
|
|
|
|
mac = MacAddr::parse_str(mac_str).map_err(Error::ParseNetMacParam)?;
|
|
|
|
}
|
|
|
|
|
2019-10-02 21:13:44 +00:00
|
|
|
Ok(NetConfig {
|
|
|
|
tap,
|
|
|
|
ip,
|
|
|
|
mask,
|
|
|
|
mac,
|
|
|
|
iommu,
|
|
|
|
})
|
2019-05-23 19:48:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-27 09:40:50 +00:00
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
2019-09-23 17:15:50 +00:00
|
|
|
pub struct RngConfig {
|
|
|
|
pub src: PathBuf,
|
2019-10-04 18:18:49 +00:00
|
|
|
#[serde(default)]
|
|
|
|
pub iommu: bool,
|
2019-05-22 20:06:49 +00:00
|
|
|
}
|
|
|
|
|
2019-09-23 17:15:50 +00:00
|
|
|
impl RngConfig {
|
|
|
|
pub fn parse(rng: &str) -> Result<Self> {
|
2019-10-04 18:18:49 +00:00
|
|
|
// Split the parameters based on the comma delimiter
|
|
|
|
let params_list: Vec<&str> = rng.split(',').collect();
|
|
|
|
|
|
|
|
let mut src_str: &str = "";
|
|
|
|
let mut iommu_str: &str = "";
|
|
|
|
|
|
|
|
for param in params_list.iter() {
|
|
|
|
if param.starts_with("src=") {
|
|
|
|
src_str = ¶m[4..];
|
|
|
|
} else if param.starts_with("iommu=") {
|
|
|
|
iommu_str = ¶m[6..];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-22 20:06:49 +00:00
|
|
|
Ok(RngConfig {
|
2019-10-04 18:18:49 +00:00
|
|
|
src: PathBuf::from(src_str),
|
|
|
|
iommu: parse_iommu(iommu_str)?,
|
2019-05-22 20:06:49 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-27 09:40:50 +00:00
|
|
|
impl Default for RngConfig {
|
|
|
|
fn default() -> Self {
|
|
|
|
RngConfig {
|
|
|
|
src: PathBuf::from(DEFAULT_RNG_SOURCE),
|
2019-10-04 18:18:49 +00:00
|
|
|
iommu: false,
|
2019-09-27 09:40:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
2019-09-23 17:23:17 +00:00
|
|
|
pub struct FsConfig {
|
|
|
|
pub tag: String,
|
|
|
|
pub sock: PathBuf,
|
2019-05-22 20:06:49 +00:00
|
|
|
pub num_queues: usize,
|
|
|
|
pub queue_size: u16,
|
2019-08-05 19:45:58 +00:00
|
|
|
pub cache_size: Option<u64>,
|
2019-05-22 20:06:49 +00:00
|
|
|
}
|
|
|
|
|
2019-09-23 17:23:17 +00:00
|
|
|
impl FsConfig {
|
|
|
|
pub fn parse(fs: &str) -> Result<Self> {
|
2019-05-22 20:06:49 +00:00
|
|
|
// Split the parameters based on the comma delimiter
|
2019-06-27 16:14:11 +00:00
|
|
|
let params_list: Vec<&str> = fs.split(',').collect();
|
2019-05-22 20:06:49 +00:00
|
|
|
|
|
|
|
let mut tag: &str = "";
|
|
|
|
let mut sock: &str = "";
|
|
|
|
let mut num_queues_str: &str = "";
|
|
|
|
let mut queue_size_str: &str = "";
|
2019-08-05 19:45:58 +00:00
|
|
|
let mut dax_str: &str = "";
|
|
|
|
let mut cache_size_str: &str = "";
|
2019-05-22 20:06:49 +00:00
|
|
|
|
|
|
|
for param in params_list.iter() {
|
|
|
|
if param.starts_with("tag=") {
|
|
|
|
tag = ¶m[4..];
|
|
|
|
} else if param.starts_with("sock=") {
|
|
|
|
sock = ¶m[5..];
|
|
|
|
} else if param.starts_with("num_queues=") {
|
|
|
|
num_queues_str = ¶m[11..];
|
|
|
|
} else if param.starts_with("queue_size=") {
|
|
|
|
queue_size_str = ¶m[11..];
|
2019-08-05 19:45:58 +00:00
|
|
|
} else if param.starts_with("dax=") {
|
|
|
|
dax_str = ¶m[4..];
|
|
|
|
} else if param.starts_with("cache_size=") {
|
|
|
|
cache_size_str = ¶m[11..];
|
2019-05-22 20:06:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut num_queues: usize = 1;
|
|
|
|
let mut queue_size: u16 = 1024;
|
2019-08-05 19:45:58 +00:00
|
|
|
let mut dax: bool = true;
|
|
|
|
// Default cache size set to 8Gib.
|
|
|
|
let mut cache_size: Option<u64> = Some(0x0002_0000_0000);
|
2019-05-22 20:06:49 +00:00
|
|
|
|
|
|
|
if tag.is_empty() {
|
|
|
|
return Err(Error::ParseFsTagParam);
|
|
|
|
}
|
|
|
|
if sock.is_empty() {
|
|
|
|
return Err(Error::ParseFsSockParam);
|
|
|
|
}
|
|
|
|
if !num_queues_str.is_empty() {
|
|
|
|
num_queues = num_queues_str
|
|
|
|
.parse()
|
|
|
|
.map_err(Error::ParseFsNumQueuesParam)?;
|
|
|
|
}
|
|
|
|
if !queue_size_str.is_empty() {
|
|
|
|
queue_size = queue_size_str
|
|
|
|
.parse()
|
|
|
|
.map_err(Error::ParseFsQueueSizeParam)?;
|
|
|
|
}
|
2019-08-05 19:45:58 +00:00
|
|
|
if !dax_str.is_empty() {
|
|
|
|
match dax_str {
|
|
|
|
"on" => dax = true,
|
|
|
|
"off" => dax = false,
|
|
|
|
_ => return Err(Error::ParseFsDax),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Take appropriate decision about cache_size based on DAX being
|
|
|
|
// enabled or disabled.
|
|
|
|
if !dax {
|
|
|
|
if !cache_size_str.is_empty() {
|
|
|
|
return Err(Error::InvalidCacheSizeWithDaxOff);
|
|
|
|
}
|
|
|
|
cache_size = None;
|
|
|
|
} else if !cache_size_str.is_empty() {
|
|
|
|
cache_size = Some(parse_size(cache_size_str)?);
|
|
|
|
}
|
2019-05-22 20:06:49 +00:00
|
|
|
|
2019-06-27 16:14:11 +00:00
|
|
|
Ok(FsConfig {
|
2019-09-23 17:23:17 +00:00
|
|
|
tag: tag.to_string(),
|
|
|
|
sock: PathBuf::from(sock),
|
2019-05-22 20:06:49 +00:00
|
|
|
num_queues,
|
|
|
|
queue_size,
|
2019-08-05 19:45:58 +00:00
|
|
|
cache_size,
|
2019-06-27 16:14:11 +00:00
|
|
|
})
|
2019-05-22 20:06:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-27 09:40:50 +00:00
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
2019-09-23 17:27:56 +00:00
|
|
|
pub struct PmemConfig {
|
|
|
|
pub file: PathBuf,
|
2019-06-19 20:48:37 +00:00
|
|
|
pub size: u64,
|
2019-10-04 18:27:22 +00:00
|
|
|
#[serde(default)]
|
|
|
|
pub iommu: bool,
|
2019-06-19 20:48:37 +00:00
|
|
|
}
|
|
|
|
|
2019-09-23 17:27:56 +00:00
|
|
|
impl PmemConfig {
|
|
|
|
pub fn parse(pmem: &str) -> Result<Self> {
|
2019-06-19 20:48:37 +00:00
|
|
|
// Split the parameters based on the comma delimiter
|
2019-06-28 08:45:58 +00:00
|
|
|
let params_list: Vec<&str> = pmem.split(',').collect();
|
2019-06-19 20:48:37 +00:00
|
|
|
|
|
|
|
let mut file_str: &str = "";
|
|
|
|
let mut size_str: &str = "";
|
2019-10-04 18:27:22 +00:00
|
|
|
let mut iommu_str: &str = "";
|
2019-06-19 20:48:37 +00:00
|
|
|
|
|
|
|
for param in params_list.iter() {
|
|
|
|
if param.starts_with("file=") {
|
|
|
|
file_str = ¶m[5..];
|
|
|
|
} else if param.starts_with("size=") {
|
|
|
|
size_str = ¶m[5..];
|
2019-10-04 18:27:22 +00:00
|
|
|
} else if param.starts_with("iommu=") {
|
|
|
|
iommu_str = ¶m[6..];
|
2019-06-19 20:48:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if file_str.is_empty() {
|
|
|
|
return Err(Error::ParsePmemFileParam);
|
|
|
|
}
|
|
|
|
|
2019-06-28 08:45:58 +00:00
|
|
|
Ok(PmemConfig {
|
2019-09-23 17:27:56 +00:00
|
|
|
file: PathBuf::from(file_str),
|
2019-07-09 03:13:02 +00:00
|
|
|
size: parse_size(size_str)?,
|
2019-10-04 18:27:22 +00:00
|
|
|
iommu: parse_iommu(iommu_str)?,
|
2019-06-28 08:45:58 +00:00
|
|
|
})
|
2019-06-19 20:48:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-27 09:40:50 +00:00
|
|
|
#[derive(Clone, PartialEq, Deserialize, Serialize)]
|
2019-07-22 19:29:02 +00:00
|
|
|
pub enum ConsoleOutputMode {
|
2019-07-10 14:41:46 +00:00
|
|
|
Off,
|
|
|
|
Tty,
|
|
|
|
File,
|
2019-08-09 07:56:10 +00:00
|
|
|
Null,
|
2019-07-10 14:41:46 +00:00
|
|
|
}
|
|
|
|
|
2019-08-09 10:48:03 +00:00
|
|
|
impl ConsoleOutputMode {
|
|
|
|
pub fn input_enabled(&self) -> bool {
|
|
|
|
match self {
|
|
|
|
ConsoleOutputMode::Tty => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-27 09:40:50 +00:00
|
|
|
#[derive(Clone, Deserialize, Serialize)]
|
2019-09-23 17:30:22 +00:00
|
|
|
pub struct ConsoleConfig {
|
|
|
|
pub file: Option<PathBuf>,
|
2019-07-22 19:29:02 +00:00
|
|
|
pub mode: ConsoleOutputMode,
|
2019-10-04 19:01:32 +00:00
|
|
|
#[serde(default)]
|
|
|
|
pub iommu: bool,
|
2019-07-10 14:41:46 +00:00
|
|
|
}
|
|
|
|
|
2019-09-23 17:30:22 +00:00
|
|
|
impl ConsoleConfig {
|
2019-10-04 19:01:32 +00:00
|
|
|
pub fn parse(console: &str) -> Result<Self> {
|
|
|
|
// Split the parameters based on the comma delimiter
|
|
|
|
let params_list: Vec<&str> = console.split(',').collect();
|
|
|
|
|
|
|
|
let mut valid = false;
|
|
|
|
let mut file: Option<PathBuf> = None;
|
|
|
|
let mut mode: ConsoleOutputMode = ConsoleOutputMode::Off;
|
|
|
|
let mut iommu_str: &str = "";
|
|
|
|
|
|
|
|
for param in params_list.iter() {
|
|
|
|
if param.starts_with("iommu=") {
|
|
|
|
iommu_str = ¶m[6..];
|
|
|
|
} else {
|
|
|
|
if *param == "off" {
|
|
|
|
mode = ConsoleOutputMode::Off;
|
|
|
|
file = None;
|
|
|
|
} else if *param == "tty" {
|
|
|
|
mode = ConsoleOutputMode::Tty;
|
|
|
|
file = None;
|
|
|
|
} else if param.starts_with("file=") {
|
|
|
|
mode = ConsoleOutputMode::File;
|
|
|
|
file = Some(PathBuf::from(¶m[5..]));
|
|
|
|
} else if param.starts_with("null") {
|
|
|
|
mode = ConsoleOutputMode::Null;
|
|
|
|
file = None;
|
|
|
|
} else {
|
|
|
|
return Err(Error::ParseConsoleParam);
|
|
|
|
}
|
|
|
|
valid = true;
|
|
|
|
}
|
2019-07-10 14:41:46 +00:00
|
|
|
}
|
2019-10-04 19:01:32 +00:00
|
|
|
|
|
|
|
if !valid {
|
|
|
|
return Err(Error::ParseConsoleParam);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(Self {
|
|
|
|
mode,
|
|
|
|
file,
|
|
|
|
iommu: parse_iommu(iommu_str)?,
|
|
|
|
})
|
2019-07-10 14:41:46 +00:00
|
|
|
}
|
2019-09-27 09:40:50 +00:00
|
|
|
|
|
|
|
pub fn default_serial() -> Self {
|
|
|
|
ConsoleConfig {
|
|
|
|
file: None,
|
|
|
|
mode: ConsoleOutputMode::Null,
|
2019-10-04 19:01:32 +00:00
|
|
|
iommu: false,
|
2019-09-27 09:40:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn default_console() -> Self {
|
|
|
|
ConsoleConfig {
|
|
|
|
file: None,
|
|
|
|
mode: ConsoleOutputMode::Tty,
|
2019-10-04 19:01:32 +00:00
|
|
|
iommu: false,
|
2019-09-27 09:40:50 +00:00
|
|
|
}
|
|
|
|
}
|
2019-07-10 14:41:46 +00:00
|
|
|
}
|
|
|
|
|
2019-09-27 09:40:50 +00:00
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
2019-09-23 17:31:41 +00:00
|
|
|
pub struct DeviceConfig {
|
|
|
|
pub path: PathBuf,
|
2019-07-15 09:42:40 +00:00
|
|
|
}
|
|
|
|
|
2019-09-23 17:31:41 +00:00
|
|
|
impl DeviceConfig {
|
|
|
|
pub fn parse(device: &str) -> Result<Self> {
|
2019-07-15 09:42:40 +00:00
|
|
|
Ok(DeviceConfig {
|
2019-09-23 17:31:41 +00:00
|
|
|
path: PathBuf::from(device),
|
2019-07-15 09:42:40 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-27 09:40:50 +00:00
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
2019-09-27 07:46:19 +00:00
|
|
|
pub struct VuConfig {
|
|
|
|
pub sock: String,
|
|
|
|
pub num_queues: usize,
|
|
|
|
pub queue_size: u16,
|
|
|
|
}
|
|
|
|
|
2019-09-27 09:40:50 +00:00
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
2019-09-23 17:42:52 +00:00
|
|
|
pub struct VhostUserNetConfig {
|
2019-08-28 10:01:01 +00:00
|
|
|
pub mac: MacAddr,
|
2019-09-27 07:46:19 +00:00
|
|
|
pub vu_cfg: VuConfig,
|
2019-08-28 10:01:01 +00:00
|
|
|
}
|
|
|
|
|
2019-09-23 17:42:52 +00:00
|
|
|
impl VhostUserNetConfig {
|
|
|
|
pub fn parse(vhost_user_net: &str) -> Result<Self> {
|
2019-08-28 10:01:01 +00:00
|
|
|
// Split the parameters based on the comma delimiter
|
|
|
|
let params_list: Vec<&str> = vhost_user_net.split(',').collect();
|
|
|
|
|
|
|
|
let mut mac_str: &str = "";
|
|
|
|
let mut sock: &str = "";
|
|
|
|
let mut num_queues_str: &str = "";
|
|
|
|
let mut queue_size_str: &str = "";
|
|
|
|
|
|
|
|
for param in params_list.iter() {
|
|
|
|
if param.starts_with("mac=") {
|
|
|
|
mac_str = ¶m[4..];
|
|
|
|
} else if param.starts_with("sock=") {
|
|
|
|
sock = ¶m[5..];
|
|
|
|
} else if param.starts_with("num_queues=") {
|
|
|
|
num_queues_str = ¶m[11..];
|
|
|
|
} else if param.starts_with("queue_size=") {
|
|
|
|
queue_size_str = ¶m[11..];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut mac: MacAddr = MacAddr::local_random();
|
|
|
|
let mut num_queues: usize = 2;
|
|
|
|
let mut queue_size: u16 = 256;
|
|
|
|
|
|
|
|
if !mac_str.is_empty() {
|
|
|
|
mac = MacAddr::parse_str(mac_str).map_err(Error::ParseVuNetMacParam)?;
|
|
|
|
}
|
|
|
|
if sock.is_empty() {
|
2019-09-10 11:28:30 +00:00
|
|
|
return Err(Error::ParseVuSockParam);
|
2019-08-28 10:01:01 +00:00
|
|
|
}
|
|
|
|
if !num_queues_str.is_empty() {
|
|
|
|
num_queues = num_queues_str
|
|
|
|
.parse()
|
2019-09-10 11:28:30 +00:00
|
|
|
.map_err(Error::ParseVuNumQueuesParam)?;
|
2019-08-28 10:01:01 +00:00
|
|
|
}
|
|
|
|
if !queue_size_str.is_empty() {
|
|
|
|
queue_size = queue_size_str
|
|
|
|
.parse()
|
2019-09-10 11:28:30 +00:00
|
|
|
.map_err(Error::ParseVuQueueSizeParam)?;
|
2019-08-28 10:01:01 +00:00
|
|
|
}
|
|
|
|
|
2019-09-27 07:46:19 +00:00
|
|
|
let vu_cfg = VuConfig {
|
2019-09-23 17:42:52 +00:00
|
|
|
sock: sock.to_string(),
|
2019-08-28 10:01:01 +00:00
|
|
|
num_queues,
|
|
|
|
queue_size,
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(VhostUserNetConfig { mac, vu_cfg })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-27 09:40:50 +00:00
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
2019-09-23 17:46:35 +00:00
|
|
|
pub struct VsockConfig {
|
2019-09-04 17:39:17 +00:00
|
|
|
pub cid: u64,
|
2019-09-23 17:46:35 +00:00
|
|
|
pub sock: PathBuf,
|
2019-10-04 19:06:34 +00:00
|
|
|
#[serde(default)]
|
|
|
|
pub iommu: bool,
|
2019-09-04 17:39:17 +00:00
|
|
|
}
|
|
|
|
|
2019-09-23 17:46:35 +00:00
|
|
|
impl VsockConfig {
|
|
|
|
pub fn parse(vsock: &str) -> Result<Self> {
|
2019-09-04 17:39:17 +00:00
|
|
|
// Split the parameters based on the comma delimiter
|
|
|
|
let params_list: Vec<&str> = vsock.split(',').collect();
|
|
|
|
|
|
|
|
let mut cid_str: &str = "";
|
|
|
|
let mut sock_str: &str = "";
|
2019-10-04 19:06:34 +00:00
|
|
|
let mut iommu_str: &str = "";
|
2019-09-04 17:39:17 +00:00
|
|
|
|
|
|
|
for param in params_list.iter() {
|
|
|
|
if param.starts_with("cid=") {
|
|
|
|
cid_str = ¶m[4..];
|
|
|
|
} else if param.starts_with("sock=") {
|
|
|
|
sock_str = ¶m[5..];
|
2019-10-04 19:06:34 +00:00
|
|
|
} else if param.starts_with("iommu=") {
|
|
|
|
iommu_str = ¶m[6..];
|
2019-09-04 17:39:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if sock_str.is_empty() {
|
|
|
|
return Err(Error::ParseVsockSockParam);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(VsockConfig {
|
|
|
|
cid: cid_str.parse::<u64>().map_err(Error::ParseVsockCidParam)?,
|
2019-09-23 17:46:35 +00:00
|
|
|
sock: PathBuf::from(sock_str),
|
2019-10-04 19:06:34 +00:00
|
|
|
iommu: parse_iommu(iommu_str)?,
|
2019-09-04 17:39:17 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-27 09:40:50 +00:00
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
2019-09-23 17:42:52 +00:00
|
|
|
pub struct VhostUserBlkConfig {
|
2019-09-11 03:16:41 +00:00
|
|
|
pub wce: bool,
|
2019-09-27 07:46:19 +00:00
|
|
|
pub vu_cfg: VuConfig,
|
2019-09-11 03:16:41 +00:00
|
|
|
}
|
|
|
|
|
2019-09-23 17:42:52 +00:00
|
|
|
impl VhostUserBlkConfig {
|
|
|
|
pub fn parse(vhost_user_blk: &str) -> Result<Self> {
|
2019-09-11 03:16:41 +00:00
|
|
|
// Split the parameters based on the comma delimiter
|
|
|
|
let params_list: Vec<&str> = vhost_user_blk.split(',').collect();
|
|
|
|
|
|
|
|
let mut sock: &str = "";
|
|
|
|
let mut num_queues_str: &str = "";
|
|
|
|
let mut queue_size_str: &str = "";
|
|
|
|
let mut wce_str: &str = "";
|
|
|
|
|
|
|
|
for param in params_list.iter() {
|
|
|
|
if param.starts_with("sock=") {
|
|
|
|
sock = ¶m[5..];
|
|
|
|
} else if param.starts_with("num_queues=") {
|
|
|
|
num_queues_str = ¶m[11..];
|
|
|
|
} else if param.starts_with("queue_size=") {
|
|
|
|
queue_size_str = ¶m[11..];
|
|
|
|
} else if param.starts_with("wce=") {
|
|
|
|
wce_str = ¶m[4..];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut num_queues: usize = 1;
|
|
|
|
let mut queue_size: u16 = 128;
|
|
|
|
let mut wce: bool = true;
|
|
|
|
|
|
|
|
if !num_queues_str.is_empty() {
|
|
|
|
num_queues = num_queues_str
|
|
|
|
.parse()
|
|
|
|
.map_err(Error::ParseVuNumQueuesParam)?;
|
|
|
|
}
|
|
|
|
if !queue_size_str.is_empty() {
|
|
|
|
queue_size = queue_size_str
|
|
|
|
.parse()
|
|
|
|
.map_err(Error::ParseVuQueueSizeParam)?;
|
|
|
|
}
|
|
|
|
if !wce_str.is_empty() {
|
|
|
|
wce = wce_str.parse().map_err(Error::ParseVuBlkWceParam)?;
|
|
|
|
}
|
|
|
|
|
2019-09-27 07:46:19 +00:00
|
|
|
let vu_cfg = VuConfig {
|
2019-09-23 17:42:52 +00:00
|
|
|
sock: sock.to_string(),
|
2019-09-11 03:16:41 +00:00
|
|
|
num_queues,
|
|
|
|
queue_size,
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(VhostUserBlkConfig { wce, vu_cfg })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-27 09:40:50 +00:00
|
|
|
#[derive(Clone, Deserialize, Serialize)]
|
2019-09-23 17:46:35 +00:00
|
|
|
pub struct VmConfig {
|
2019-09-27 09:40:50 +00:00
|
|
|
#[serde(default)]
|
2019-05-23 19:48:05 +00:00
|
|
|
pub cpus: CpusConfig,
|
2019-09-27 09:40:50 +00:00
|
|
|
#[serde(default)]
|
2019-09-23 16:51:36 +00:00
|
|
|
pub memory: MemoryConfig,
|
2019-09-19 07:52:55 +00:00
|
|
|
pub kernel: Option<KernelConfig>,
|
2019-05-23 19:48:05 +00:00
|
|
|
pub cmdline: CmdlineConfig,
|
2019-09-23 17:12:19 +00:00
|
|
|
pub disks: Option<Vec<DiskConfig>>,
|
2019-09-23 17:14:35 +00:00
|
|
|
pub net: Option<Vec<NetConfig>>,
|
2019-09-27 09:40:50 +00:00
|
|
|
#[serde(default)]
|
2019-09-23 17:15:50 +00:00
|
|
|
pub rng: RngConfig,
|
2019-09-23 17:23:17 +00:00
|
|
|
pub fs: Option<Vec<FsConfig>>,
|
2019-09-23 17:27:56 +00:00
|
|
|
pub pmem: Option<Vec<PmemConfig>>,
|
2019-09-27 09:40:50 +00:00
|
|
|
#[serde(default = "ConsoleConfig::default_serial")]
|
2019-09-23 17:30:22 +00:00
|
|
|
pub serial: ConsoleConfig,
|
2019-09-27 09:40:50 +00:00
|
|
|
#[serde(default = "ConsoleConfig::default_console")]
|
2019-09-23 17:30:22 +00:00
|
|
|
pub console: ConsoleConfig,
|
2019-09-23 17:31:41 +00:00
|
|
|
pub devices: Option<Vec<DeviceConfig>>,
|
2019-09-23 17:42:52 +00:00
|
|
|
pub vhost_user_net: Option<Vec<VhostUserNetConfig>>,
|
|
|
|
pub vhost_user_blk: Option<Vec<VhostUserBlkConfig>>,
|
2019-09-23 17:46:35 +00:00
|
|
|
pub vsock: Option<Vec<VsockConfig>>,
|
2019-09-18 14:13:56 +00:00
|
|
|
#[serde(default)]
|
|
|
|
pub iommu: bool,
|
2019-05-23 19:48:05 +00:00
|
|
|
}
|
|
|
|
|
2019-09-23 17:46:35 +00:00
|
|
|
impl VmConfig {
|
2019-09-19 07:52:55 +00:00
|
|
|
pub fn valid(&self) -> bool {
|
|
|
|
self.kernel.is_some()
|
|
|
|
}
|
|
|
|
|
2019-09-23 17:46:35 +00:00
|
|
|
pub fn parse(vm_params: VmParams) -> Result<Self> {
|
2019-10-02 21:01:36 +00:00
|
|
|
let mut iommu = false;
|
2019-09-18 14:13:56 +00:00
|
|
|
|
2019-07-08 22:48:39 +00:00
|
|
|
let mut disks: Option<Vec<DiskConfig>> = None;
|
|
|
|
if let Some(disk_list) = &vm_params.disks {
|
|
|
|
let mut disk_config_list = Vec::new();
|
|
|
|
for item in disk_list.iter() {
|
2019-10-02 21:01:36 +00:00
|
|
|
let disk_config = DiskConfig::parse(item)?;
|
|
|
|
if disk_config.iommu {
|
|
|
|
iommu = true;
|
|
|
|
}
|
|
|
|
disk_config_list.push(disk_config);
|
2019-07-08 22:48:39 +00:00
|
|
|
}
|
|
|
|
disks = Some(disk_config_list);
|
2019-05-23 19:48:05 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 22:31:13 +00:00
|
|
|
let mut net: Option<Vec<NetConfig>> = None;
|
|
|
|
if let Some(net_list) = &vm_params.net {
|
|
|
|
let mut net_config_list = Vec::new();
|
|
|
|
for item in net_list.iter() {
|
2019-10-02 21:13:44 +00:00
|
|
|
let net_config = NetConfig::parse(item)?;
|
|
|
|
if net_config.iommu {
|
|
|
|
iommu = true;
|
|
|
|
}
|
|
|
|
net_config_list.push(net_config);
|
2019-07-08 22:31:13 +00:00
|
|
|
}
|
|
|
|
net = Some(net_config_list);
|
|
|
|
}
|
|
|
|
|
2019-10-04 18:18:49 +00:00
|
|
|
let rng = RngConfig::parse(vm_params.rng)?;
|
|
|
|
if rng.iommu {
|
|
|
|
iommu = true;
|
|
|
|
}
|
|
|
|
|
2019-06-27 16:14:11 +00:00
|
|
|
let mut fs: Option<Vec<FsConfig>> = None;
|
|
|
|
if let Some(fs_list) = &vm_params.fs {
|
|
|
|
let mut fs_config_list = Vec::new();
|
|
|
|
for item in fs_list.iter() {
|
|
|
|
fs_config_list.push(FsConfig::parse(item)?);
|
|
|
|
}
|
|
|
|
fs = Some(fs_config_list);
|
|
|
|
}
|
|
|
|
|
2019-06-28 08:45:58 +00:00
|
|
|
let mut pmem: Option<Vec<PmemConfig>> = None;
|
|
|
|
if let Some(pmem_list) = &vm_params.pmem {
|
|
|
|
let mut pmem_config_list = Vec::new();
|
|
|
|
for item in pmem_list.iter() {
|
2019-10-04 18:27:22 +00:00
|
|
|
let pmem_config = PmemConfig::parse(item)?;
|
|
|
|
if pmem_config.iommu {
|
|
|
|
iommu = true;
|
|
|
|
}
|
|
|
|
pmem_config_list.push(pmem_config);
|
2019-06-28 08:45:58 +00:00
|
|
|
}
|
|
|
|
pmem = Some(pmem_config_list);
|
|
|
|
}
|
|
|
|
|
2019-07-22 19:29:02 +00:00
|
|
|
let console = ConsoleConfig::parse(vm_params.console)?;
|
2019-10-04 19:01:32 +00:00
|
|
|
if console.iommu {
|
|
|
|
iommu = true;
|
|
|
|
}
|
2019-07-22 19:29:02 +00:00
|
|
|
let serial = ConsoleConfig::parse(vm_params.serial)?;
|
|
|
|
if console.mode == ConsoleOutputMode::Tty && serial.mode == ConsoleOutputMode::Tty {
|
|
|
|
return Err(Error::ParseTTYParam);
|
|
|
|
}
|
|
|
|
|
2019-07-15 09:42:40 +00:00
|
|
|
let mut devices: Option<Vec<DeviceConfig>> = None;
|
|
|
|
if let Some(device_list) = &vm_params.devices {
|
|
|
|
let mut device_config_list = Vec::new();
|
|
|
|
for item in device_list.iter() {
|
|
|
|
device_config_list.push(DeviceConfig::parse(item)?);
|
|
|
|
}
|
|
|
|
devices = Some(device_config_list);
|
|
|
|
}
|
|
|
|
|
2019-08-28 10:01:01 +00:00
|
|
|
let mut vhost_user_net: Option<Vec<VhostUserNetConfig>> = None;
|
|
|
|
if let Some(vhost_user_net_list) = &vm_params.vhost_user_net {
|
|
|
|
let mut vhost_user_net_config_list = Vec::new();
|
|
|
|
for item in vhost_user_net_list.iter() {
|
|
|
|
vhost_user_net_config_list.push(VhostUserNetConfig::parse(item)?);
|
|
|
|
}
|
|
|
|
vhost_user_net = Some(vhost_user_net_config_list);
|
|
|
|
}
|
|
|
|
|
2019-09-04 17:39:17 +00:00
|
|
|
let mut vsock: Option<Vec<VsockConfig>> = None;
|
|
|
|
if let Some(vsock_list) = &vm_params.vsock {
|
|
|
|
let mut vsock_config_list = Vec::new();
|
|
|
|
for item in vsock_list.iter() {
|
2019-10-04 19:06:34 +00:00
|
|
|
let vsock_config = VsockConfig::parse(item)?;
|
|
|
|
if vsock_config.iommu {
|
|
|
|
iommu = true;
|
|
|
|
}
|
|
|
|
vsock_config_list.push(vsock_config);
|
2019-09-04 17:39:17 +00:00
|
|
|
}
|
|
|
|
vsock = Some(vsock_config_list);
|
|
|
|
}
|
|
|
|
|
2019-09-11 03:16:41 +00:00
|
|
|
let mut vhost_user_blk: Option<Vec<VhostUserBlkConfig>> = None;
|
|
|
|
if let Some(vhost_user_blk_list) = &vm_params.vhost_user_blk {
|
|
|
|
let mut vhost_user_blk_config_list = Vec::new();
|
|
|
|
for item in vhost_user_blk_list.iter() {
|
|
|
|
vhost_user_blk_config_list.push(VhostUserBlkConfig::parse(item)?);
|
|
|
|
}
|
|
|
|
vhost_user_blk = Some(vhost_user_blk_config_list);
|
|
|
|
}
|
|
|
|
|
2019-09-19 07:52:55 +00:00
|
|
|
let mut kernel: Option<KernelConfig> = None;
|
|
|
|
if let Some(k) = vm_params.kernel {
|
|
|
|
kernel = Some(KernelConfig {
|
|
|
|
path: PathBuf::from(k),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-05-23 19:48:05 +00:00
|
|
|
Ok(VmConfig {
|
|
|
|
cpus: CpusConfig::parse(vm_params.cpus)?,
|
|
|
|
memory: MemoryConfig::parse(vm_params.memory)?,
|
2019-09-19 07:52:55 +00:00
|
|
|
kernel,
|
2019-05-23 19:48:05 +00:00
|
|
|
cmdline: CmdlineConfig::parse(vm_params.cmdline)?,
|
|
|
|
disks,
|
2019-07-08 22:31:13 +00:00
|
|
|
net,
|
2019-10-04 18:18:49 +00:00
|
|
|
rng,
|
2019-06-27 16:14:11 +00:00
|
|
|
fs,
|
2019-06-28 08:45:58 +00:00
|
|
|
pmem,
|
2019-07-22 19:29:02 +00:00
|
|
|
serial,
|
|
|
|
console,
|
2019-07-15 09:42:40 +00:00
|
|
|
devices,
|
2019-08-28 10:01:01 +00:00
|
|
|
vhost_user_net,
|
2019-09-11 03:16:41 +00:00
|
|
|
vhost_user_blk,
|
2019-09-04 17:39:17 +00:00
|
|
|
vsock,
|
2019-09-18 14:13:56 +00:00
|
|
|
iommu,
|
2019-05-23 19:48:05 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|