Andrew Walbran | 3a5a921 | 2021-05-04 17:09:08 +0000 | [diff] [blame] | 1 | // Copyright 2021, The Android Open Source Project |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
Jooyung Han | fc732f5 | 2021-06-26 02:54:20 +0900 | [diff] [blame] | 15 | //! Struct for VM configuration with JSON (de)serialization and AIDL parcelables |
Andrew Walbran | 3a5a921 | 2021-05-04 17:09:08 +0000 | [diff] [blame] | 16 | |
Andrew Walbran | f6bf686 | 2021-05-21 12:41:13 +0000 | [diff] [blame] | 17 | use android_system_virtualizationservice::{ |
| 18 | aidl::android::system::virtualizationservice::DiskImage::DiskImage as AidlDiskImage, |
Andrew Walbran | f5fbb7d | 2021-05-12 17:15:48 +0000 | [diff] [blame] | 19 | aidl::android::system::virtualizationservice::Partition::Partition as AidlPartition, |
Jooyung Han | 21e9b92 | 2021-06-26 04:14:16 +0900 | [diff] [blame] | 20 | aidl::android::system::virtualizationservice::VirtualMachineRawConfig::VirtualMachineRawConfig, |
Andrew Walbran | 3a5a921 | 2021-05-04 17:09:08 +0000 | [diff] [blame] | 21 | binder::ParcelFileDescriptor, |
| 22 | }; |
Jooyung Han | fc732f5 | 2021-06-26 02:54:20 +0900 | [diff] [blame] | 23 | |
| 24 | use anyhow::{bail, Context, Error, Result}; |
Jiyong Park | dcf1741 | 2022-02-08 15:07:23 +0900 | [diff] [blame] | 25 | use semver::VersionReq; |
Andrew Walbran | 3a5a921 | 2021-05-04 17:09:08 +0000 | [diff] [blame] | 26 | use serde::{Deserialize, Serialize}; |
Andrew Walbran | b15cd6e | 2021-07-05 16:38:07 +0000 | [diff] [blame] | 27 | use std::convert::TryInto; |
Andrew Walbran | 3a5a921 | 2021-05-04 17:09:08 +0000 | [diff] [blame] | 28 | use std::fs::{File, OpenOptions}; |
| 29 | use std::io::BufReader; |
Andrew Walbran | b15cd6e | 2021-07-05 16:38:07 +0000 | [diff] [blame] | 30 | use std::num::NonZeroU32; |
Andrew Walbran | 3a5a921 | 2021-05-04 17:09:08 +0000 | [diff] [blame] | 31 | use std::path::{Path, PathBuf}; |
| 32 | |
| 33 | /// Configuration for a particular VM to be started. |
| 34 | #[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)] |
| 35 | pub struct VmConfig { |
Seungjae Yoo | 62085c0 | 2022-08-12 04:44:52 +0000 | [diff] [blame] | 36 | /// The name of VM. |
| 37 | pub name: Option<String>, |
Andrew Walbran | 3a5a921 | 2021-05-04 17:09:08 +0000 | [diff] [blame] | 38 | /// The filename of the kernel image, if any. |
| 39 | pub kernel: Option<PathBuf>, |
| 40 | /// The filename of the initial ramdisk for the kernel, if any. |
| 41 | pub initrd: Option<PathBuf>, |
| 42 | /// Parameters to pass to the kernel. As far as the VMM and boot protocol are concerned this is |
| 43 | /// just a string, but typically it will contain multiple parameters separated by spaces. |
| 44 | pub params: Option<String>, |
| 45 | /// The bootloader to use. If this is supplied then the kernel and initrd must not be supplied; |
| 46 | /// the bootloader is instead responsibly for loading the kernel from one of the disks. |
| 47 | pub bootloader: Option<PathBuf>, |
| 48 | /// Disk images to be made available to the VM. |
| 49 | #[serde(default)] |
| 50 | pub disks: Vec<DiskImage>, |
Andrew Walbran | f865042 | 2021-06-09 15:54:09 +0000 | [diff] [blame] | 51 | /// Whether the VM should be a protected VM. |
| 52 | #[serde(default)] |
| 53 | pub protected: bool, |
Andrew Walbran | b15cd6e | 2021-07-05 16:38:07 +0000 | [diff] [blame] | 54 | /// The amount of RAM to give the VM, in MiB. |
| 55 | #[serde(default)] |
| 56 | pub memory_mib: Option<NonZeroU32>, |
Jiyong Park | dcf1741 | 2022-02-08 15:07:23 +0900 | [diff] [blame] | 57 | /// Version or range of versions of the virtual platform that this config is compatible with. |
| 58 | /// The format follows SemVer (https://semver.org). |
| 59 | pub platform_version: VersionReq, |
Andrew Walbran | 3a5a921 | 2021-05-04 17:09:08 +0000 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | impl VmConfig { |
| 63 | /// Ensure that the configuration has a valid combination of fields set, or return an error if |
| 64 | /// not. |
| 65 | pub fn validate(&self) -> Result<(), Error> { |
| 66 | if self.bootloader.is_none() && self.kernel.is_none() { |
| 67 | bail!("VM must have either a bootloader or a kernel image."); |
| 68 | } |
| 69 | if self.bootloader.is_some() && (self.kernel.is_some() || self.initrd.is_some()) { |
| 70 | bail!("Can't have both bootloader and kernel/initrd image."); |
| 71 | } |
Andrew Walbran | f5fbb7d | 2021-05-12 17:15:48 +0000 | [diff] [blame] | 72 | for disk in &self.disks { |
| 73 | if disk.image.is_none() == disk.partitions.is_empty() { |
| 74 | bail!("Exactly one of image and partitions must be specified. (Was {:?}.)", disk); |
| 75 | } |
| 76 | } |
Andrew Walbran | 3a5a921 | 2021-05-04 17:09:08 +0000 | [diff] [blame] | 77 | Ok(()) |
| 78 | } |
| 79 | |
| 80 | /// Load the configuration for a VM from the given JSON file, and check that it is valid. |
| 81 | pub fn load(file: &File) -> Result<VmConfig, Error> { |
| 82 | let buffered = BufReader::new(file); |
| 83 | let config: VmConfig = serde_json::from_reader(buffered)?; |
| 84 | config.validate()?; |
| 85 | Ok(config) |
| 86 | } |
| 87 | |
| 88 | /// Convert the `VmConfig` to a [`VirtualMachineConfig`] which can be passed to the Virt |
| 89 | /// Manager. |
Jooyung Han | 21e9b92 | 2021-06-26 04:14:16 +0900 | [diff] [blame] | 90 | pub fn to_parcelable(&self) -> Result<VirtualMachineRawConfig, Error> { |
Andrew Walbran | b15cd6e | 2021-07-05 16:38:07 +0000 | [diff] [blame] | 91 | let memory_mib = if let Some(memory_mib) = self.memory_mib { |
| 92 | memory_mib.get().try_into().context("Invalid memory_mib")? |
| 93 | } else { |
| 94 | 0 |
| 95 | }; |
Seungjae Yoo | 62085c0 | 2022-08-12 04:44:52 +0000 | [diff] [blame] | 96 | |
Jooyung Han | 21e9b92 | 2021-06-26 04:14:16 +0900 | [diff] [blame] | 97 | Ok(VirtualMachineRawConfig { |
Andrew Walbran | f5fbb7d | 2021-05-12 17:15:48 +0000 | [diff] [blame] | 98 | kernel: maybe_open_parcel_file(&self.kernel, false)?, |
| 99 | initrd: maybe_open_parcel_file(&self.initrd, false)?, |
Andrew Walbran | 3a5a921 | 2021-05-04 17:09:08 +0000 | [diff] [blame] | 100 | params: self.params.clone(), |
Andrew Walbran | f5fbb7d | 2021-05-12 17:15:48 +0000 | [diff] [blame] | 101 | bootloader: maybe_open_parcel_file(&self.bootloader, false)?, |
| 102 | disks: self.disks.iter().map(DiskImage::to_parcelable).collect::<Result<_, Error>>()?, |
Andrew Walbran | cc04590 | 2021-07-27 16:06:17 +0000 | [diff] [blame] | 103 | protectedVm: self.protected, |
| 104 | memoryMib: memory_mib, |
Jiyong Park | dcf1741 | 2022-02-08 15:07:23 +0900 | [diff] [blame] | 105 | platformVersion: self.platform_version.to_string(), |
Jiyong Park | 032615f | 2022-01-10 13:55:34 +0900 | [diff] [blame] | 106 | ..Default::default() |
Andrew Walbran | 3a5a921 | 2021-05-04 17:09:08 +0000 | [diff] [blame] | 107 | }) |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | /// A disk image to be made available to the VM. |
| 112 | #[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)] |
| 113 | pub struct DiskImage { |
Andrew Walbran | f5fbb7d | 2021-05-12 17:15:48 +0000 | [diff] [blame] | 114 | /// The filename of the disk image, if it already exists. Exactly one of this and `partitions` |
| 115 | /// must be specified. |
| 116 | #[serde(default)] |
| 117 | pub image: Option<PathBuf>, |
| 118 | /// A set of partitions to be assembled into a composite image. |
| 119 | #[serde(default)] |
| 120 | pub partitions: Vec<Partition>, |
Andrew Walbran | 3a5a921 | 2021-05-04 17:09:08 +0000 | [diff] [blame] | 121 | /// Whether this disk should be writable by the VM. |
| 122 | pub writable: bool, |
| 123 | } |
| 124 | |
Andrew Walbran | f5fbb7d | 2021-05-12 17:15:48 +0000 | [diff] [blame] | 125 | impl DiskImage { |
| 126 | fn to_parcelable(&self) -> Result<AidlDiskImage, Error> { |
| 127 | let partitions = |
Jooyung Han | fc732f5 | 2021-06-26 02:54:20 +0900 | [diff] [blame] | 128 | self.partitions.iter().map(Partition::to_parcelable).collect::<Result<_>>()?; |
Andrew Walbran | f5fbb7d | 2021-05-12 17:15:48 +0000 | [diff] [blame] | 129 | Ok(AidlDiskImage { |
| 130 | image: maybe_open_parcel_file(&self.image, self.writable)?, |
| 131 | writable: self.writable, |
| 132 | partitions, |
| 133 | }) |
| 134 | } |
| 135 | } |
| 136 | |
Jooyung Han | fc732f5 | 2021-06-26 02:54:20 +0900 | [diff] [blame] | 137 | /// A partition to be assembled into a composite image. |
| 138 | #[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)] |
| 139 | pub struct Partition { |
| 140 | /// A label for the partition. |
| 141 | pub label: String, |
| 142 | /// The filename of the partition image. |
Jooyung Han | 631d588 | 2021-07-29 06:34:05 +0900 | [diff] [blame] | 143 | pub path: PathBuf, |
Jooyung Han | fc732f5 | 2021-06-26 02:54:20 +0900 | [diff] [blame] | 144 | /// Whether the partition should be writable. |
| 145 | #[serde(default)] |
| 146 | pub writable: bool, |
| 147 | } |
| 148 | |
| 149 | impl Partition { |
| 150 | fn to_parcelable(&self) -> Result<AidlPartition> { |
Jooyung Han | 631d588 | 2021-07-29 06:34:05 +0900 | [diff] [blame] | 151 | Ok(AidlPartition { |
| 152 | image: Some(open_parcel_file(&self.path, self.writable)?), |
| 153 | writable: self.writable, |
| 154 | label: self.label.to_owned(), |
| 155 | }) |
Jooyung Han | 9713bd4 | 2021-06-26 03:00:18 +0900 | [diff] [blame] | 156 | } |
Andrew Walbran | f5fbb7d | 2021-05-12 17:15:48 +0000 | [diff] [blame] | 157 | } |
| 158 | |
Andrew Walbran | 3a5a921 | 2021-05-04 17:09:08 +0000 | [diff] [blame] | 159 | /// Try to open the given file and wrap it in a [`ParcelFileDescriptor`]. |
Jiyong Park | 48b354d | 2021-07-15 15:04:38 +0900 | [diff] [blame] | 160 | pub fn open_parcel_file(filename: &Path, writable: bool) -> Result<ParcelFileDescriptor> { |
Andrew Walbran | 3a5a921 | 2021-05-04 17:09:08 +0000 | [diff] [blame] | 161 | Ok(ParcelFileDescriptor::new( |
| 162 | OpenOptions::new() |
| 163 | .read(true) |
| 164 | .write(writable) |
| 165 | .open(filename) |
| 166 | .with_context(|| format!("Failed to open {:?}", filename))?, |
| 167 | )) |
| 168 | } |
| 169 | |
| 170 | /// If the given filename is `Some`, try to open it and wrap it in a [`ParcelFileDescriptor`]. |
| 171 | fn maybe_open_parcel_file( |
| 172 | filename: &Option<PathBuf>, |
Andrew Walbran | f5fbb7d | 2021-05-12 17:15:48 +0000 | [diff] [blame] | 173 | writable: bool, |
Jooyung Han | fc732f5 | 2021-06-26 02:54:20 +0900 | [diff] [blame] | 174 | ) -> Result<Option<ParcelFileDescriptor>> { |
Andrew Walbran | f5fbb7d | 2021-05-12 17:15:48 +0000 | [diff] [blame] | 175 | filename.as_deref().map(|filename| open_parcel_file(filename, writable)).transpose() |
Andrew Walbran | 3a5a921 | 2021-05-04 17:09:08 +0000 | [diff] [blame] | 176 | } |