// Copyright © 2019 Intel Corporation // // SPDX-License-Identifier: Apache-2.0 // //! The internal VMM API for Cloud Hypervisor. //! //! This API is a synchronous, [mpsc](https://doc.rust-lang.org/std/sync/mpsc/) //! based IPC for sending commands to the VMM thread, from other //! Cloud Hypervisor threads. The IPC follows a command-response protocol, i.e. //! each command will receive a response back. //! //! The main Cloud Hypervisor thread creates an API event file descriptor //! to notify the VMM thread about pending API commands, together with an //! API mpsc channel. The former is the IPC control plane, the latter is the //! IPC data plane. //! In order to use the IPC, a Cloud Hypervisor thread needs to have a clone //! of both the API event file descriptor and the channel Sender. Then it must //! go through the following steps: //! //! 1. The thread creates an mpsc channel for receiving the command response. //! 2. The thread sends an ApiRequest to the Sender endpoint. The ApiRequest //! contains the response channel Sender, for the VMM API server to be able //! to send the response back. //! 3. The thread writes to the API event file descriptor to notify the VMM //! API server about a pending command. //! 4. The thread reads the response back from the VMM API server, from the //! response channel Receiver. //! 5. The thread handles the response and forwards potential errors. pub use self::http::start_http_fd_thread; pub use self::http::start_http_path_thread; pub mod http; pub mod http_endpoint; use crate::config::UserDeviceConfig; use crate::config::{ DeviceConfig, DiskConfig, FsConfig, NetConfig, PmemConfig, RestoreConfig, VmConfig, VsockConfig, }; use crate::device_tree::DeviceTree; use crate::vm::{Error as VmError, VmState}; use micro_http::Body; use std::io; use std::sync::mpsc::{channel, RecvError, SendError, Sender}; use std::sync::{Arc, Mutex}; use vm_migration::MigratableError; use vmm_sys_util::eventfd::EventFd; /// API errors are sent back from the VMM API server through the ApiResponse. #[derive(Debug)] pub enum ApiError { /// Cannot write to EventFd. EventFdWrite(io::Error), /// API request send error RequestSend(SendError), /// Wrong response payload type ResponsePayloadType, /// API response receive error ResponseRecv(RecvError), /// The VM could not boot. VmBoot(VmError), /// The VM could not be created. VmCreate(VmError), /// The VM could not be deleted. VmDelete(VmError), /// The VM info is not available. VmInfo(VmError), /// The VM could not be paused. VmPause(VmError), /// The VM could not resume. VmResume(VmError), /// The VM is not booted. VmNotBooted, /// The VM is not created. VmNotCreated, /// The VM could not shutdown. VmShutdown(VmError), /// The VM could not reboot. VmReboot(VmError), /// The VM could not be snapshotted. VmSnapshot(VmError), /// The VM could not restored. VmRestore(VmError), /// The VMM could not shutdown. VmmShutdown(VmError), /// The VM could not be resized VmResize(VmError), /// The memory zone could not be resized. VmResizeZone(VmError), /// The device could not be added to the VM. VmAddDevice(VmError), /// The user device could not be added to the VM. VmAddUserDevice(VmError), /// The device could not be removed from the VM. VmRemoveDevice(VmError), /// Cannot create seccomp filter CreateSeccompFilter(seccompiler::Error), /// Cannot apply seccomp filter ApplySeccompFilter(seccompiler::Error), /// The disk could not be added to the VM. VmAddDisk(VmError), /// The fs could not be added to the VM. VmAddFs(VmError), /// The pmem device could not be added to the VM. VmAddPmem(VmError), /// The network device could not be added to the VM. VmAddNet(VmError), /// The vsock device could not be added to the VM. VmAddVsock(VmError), /// Error starting migration receiever VmReceiveMigration(MigratableError), /// Error starting migration sender VmSendMigration(MigratableError), /// Error triggering power button VmPowerButton(VmError), } pub type ApiResult = std::result::Result; #[derive(Clone, Deserialize, Serialize)] pub struct VmInfo { pub config: Arc>, pub state: VmState, pub memory_actual_size: u64, pub device_tree: Option>>, } #[derive(Clone, Deserialize, Serialize)] pub struct VmmPingResponse { pub version: String, } #[derive(Clone, Deserialize, Serialize, Default, Debug)] pub struct VmResizeData { pub desired_vcpus: Option, pub desired_ram: Option, pub desired_balloon: Option, } #[derive(Clone, Deserialize, Serialize, Default, Debug)] pub struct VmResizeZoneData { pub id: String, pub desired_ram: u64, } #[derive(Clone, Deserialize, Serialize, Default, Debug)] pub struct VmRemoveDeviceData { pub id: String, } #[derive(Clone, Deserialize, Serialize, Default, Debug)] pub struct VmSnapshotConfig { /// The snapshot destination URL pub destination_url: String, } #[derive(Clone, Deserialize, Serialize, Default, Debug)] pub struct VmReceiveMigrationData { /// URL for the reception of migration state pub receiver_url: String, } #[derive(Clone, Deserialize, Serialize, Default, Debug)] pub struct VmSendMigrationData { /// URL to migrate the VM to pub destination_url: String, /// Send memory across socket without copying pub local: bool, } pub enum ApiResponsePayload { /// No data is sent on the channel. Empty, /// Virtual machine information VmInfo(VmInfo), /// Vmm ping response VmmPing(VmmPingResponse), /// Vm action response VmAction(Option>), } /// This is the response sent by the VMM API server through the mpsc channel. pub type ApiResponse = std::result::Result; #[allow(clippy::large_enum_variant)] #[derive(Debug)] pub enum ApiRequest { /// Create the virtual machine. This request payload is a VM configuration /// (VmConfig). /// If the VMM API server could not create the VM, it will send a VmCreate /// error back. VmCreate(Arc>, Sender), /// Boot the previously created virtual machine. /// If the VM was not previously created, the VMM API server will send a /// VmBoot error back. VmBoot(Sender), /// Delete the previously created virtual machine. /// If the VM was not previously created, the VMM API server will send a /// VmDelete error back. /// If the VM is booted, we shut it down first. VmDelete(Sender), /// Request the VM information. VmInfo(Sender), /// Request the VMM API server status VmmPing(Sender), /// Pause a VM. VmPause(Sender), /// Resume a VM. VmResume(Sender), /// Get counters for a VM. VmCounters(Sender), /// Shut the previously booted virtual machine down. /// If the VM was not previously booted or created, the VMM API server /// will send a VmShutdown error back. VmShutdown(Sender), /// Reboot the previously booted virtual machine. /// If the VM was not previously booted or created, the VMM API server /// will send a VmReboot error back. VmReboot(Sender), /// Shut the VMM down. /// This will shutdown and delete the current VM, if any, and then exit the /// VMM process. VmmShutdown(Sender), /// Resize the VM. VmResize(Arc, Sender), /// Resize the memory zone. VmResizeZone(Arc, Sender), /// Add a device to the VM. VmAddDevice(Arc, Sender), /// Add a user device to the VM. VmAddUserDevice(Arc, Sender), /// Remove a device from the VM. VmRemoveDevice(Arc, Sender), /// Add a disk to the VM. VmAddDisk(Arc, Sender), /// Add a fs to the VM. VmAddFs(Arc, Sender), /// Add a pmem device to the VM. VmAddPmem(Arc, Sender), /// Add a network device to the VM. VmAddNet(Arc, Sender), /// Add a vsock device to the VM. VmAddVsock(Arc, Sender), /// Take a VM snapshot VmSnapshot(Arc, Sender), /// Restore from a VM snapshot VmRestore(Arc, Sender), /// Incoming migration VmReceiveMigration(Arc, Sender), /// Outgoing migration VmSendMigration(Arc, Sender), // Trigger power button VmPowerButton(Sender), } pub fn vm_create( api_evt: EventFd, api_sender: Sender, config: Arc>, ) -> ApiResult<()> { let (response_sender, response_receiver) = channel(); // Send the VM creation request. api_sender .send(ApiRequest::VmCreate(config, response_sender)) .map_err(ApiError::RequestSend)?; api_evt.write(1).map_err(ApiError::EventFdWrite)?; response_receiver.recv().map_err(ApiError::ResponseRecv)??; Ok(()) } /// Represents a VM related action. /// This is mostly used to factorize code between VM routines /// that only differ by the IPC command they send. pub enum VmAction { /// Boot a VM Boot, /// Delete a VM Delete, /// Shut a VM down Shutdown, /// Reboot a VM Reboot, /// Pause a VM Pause, /// Resume a VM Resume, /// Return VM counters Counters, /// Add VFIO device AddDevice(Arc), /// Add disk AddDisk(Arc), /// Add filesystem AddFs(Arc), /// Add pmem AddPmem(Arc), /// Add network AddNet(Arc), /// Add vsock AddVsock(Arc), /// Add user device AddUserDevice(Arc), /// Remove VFIO device RemoveDevice(Arc), /// Resize VM Resize(Arc), /// Resize memory zone ResizeZone(Arc), /// Restore VM Restore(Arc), /// Snapshot VM Snapshot(Arc), /// Incoming migration ReceiveMigration(Arc), /// Outgoing migration SendMigration(Arc), /// Power Button for clean shutdown PowerButton, } fn vm_action( api_evt: EventFd, api_sender: Sender, action: VmAction, ) -> ApiResult> { let (response_sender, response_receiver) = channel(); use VmAction::*; let request = match action { Boot => ApiRequest::VmBoot(response_sender), Delete => ApiRequest::VmDelete(response_sender), Shutdown => ApiRequest::VmShutdown(response_sender), Reboot => ApiRequest::VmReboot(response_sender), Pause => ApiRequest::VmPause(response_sender), Resume => ApiRequest::VmResume(response_sender), Counters => ApiRequest::VmCounters(response_sender), AddDevice(v) => ApiRequest::VmAddDevice(v, response_sender), AddDisk(v) => ApiRequest::VmAddDisk(v, response_sender), AddFs(v) => ApiRequest::VmAddFs(v, response_sender), AddPmem(v) => ApiRequest::VmAddPmem(v, response_sender), AddNet(v) => ApiRequest::VmAddNet(v, response_sender), AddVsock(v) => ApiRequest::VmAddVsock(v, response_sender), AddUserDevice(v) => ApiRequest::VmAddUserDevice(v, response_sender), RemoveDevice(v) => ApiRequest::VmRemoveDevice(v, response_sender), Resize(v) => ApiRequest::VmResize(v, response_sender), ResizeZone(v) => ApiRequest::VmResizeZone(v, response_sender), Restore(v) => ApiRequest::VmRestore(v, response_sender), Snapshot(v) => ApiRequest::VmSnapshot(v, response_sender), ReceiveMigration(v) => ApiRequest::VmReceiveMigration(v, response_sender), SendMigration(v) => ApiRequest::VmSendMigration(v, response_sender), PowerButton => ApiRequest::VmPowerButton(response_sender), }; // Send the VM request. api_sender.send(request).map_err(ApiError::RequestSend)?; api_evt.write(1).map_err(ApiError::EventFdWrite)?; let body = match response_receiver.recv().map_err(ApiError::ResponseRecv)?? { ApiResponsePayload::VmAction(response) => response.map(Body::new), ApiResponsePayload::Empty => None, _ => return Err(ApiError::ResponsePayloadType), }; Ok(body) } pub fn vm_boot(api_evt: EventFd, api_sender: Sender) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::Boot) } pub fn vm_delete(api_evt: EventFd, api_sender: Sender) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::Delete) } pub fn vm_shutdown(api_evt: EventFd, api_sender: Sender) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::Shutdown) } pub fn vm_reboot(api_evt: EventFd, api_sender: Sender) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::Reboot) } pub fn vm_pause(api_evt: EventFd, api_sender: Sender) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::Pause) } pub fn vm_resume(api_evt: EventFd, api_sender: Sender) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::Resume) } pub fn vm_counters(api_evt: EventFd, api_sender: Sender) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::Counters) } pub fn vm_power_button( api_evt: EventFd, api_sender: Sender, ) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::PowerButton) } pub fn vm_receive_migration( api_evt: EventFd, api_sender: Sender, data: Arc, ) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::ReceiveMigration(data)) } pub fn vm_send_migration( api_evt: EventFd, api_sender: Sender, data: Arc, ) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::SendMigration(data)) } pub fn vm_snapshot( api_evt: EventFd, api_sender: Sender, data: Arc, ) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::Snapshot(data)) } pub fn vm_restore( api_evt: EventFd, api_sender: Sender, data: Arc, ) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::Restore(data)) } pub fn vm_info(api_evt: EventFd, api_sender: Sender) -> ApiResult { let (response_sender, response_receiver) = channel(); // Send the VM request. api_sender .send(ApiRequest::VmInfo(response_sender)) .map_err(ApiError::RequestSend)?; api_evt.write(1).map_err(ApiError::EventFdWrite)?; let vm_info = response_receiver.recv().map_err(ApiError::ResponseRecv)??; match vm_info { ApiResponsePayload::VmInfo(info) => Ok(info), _ => Err(ApiError::ResponsePayloadType), } } pub fn vmm_ping(api_evt: EventFd, api_sender: Sender) -> ApiResult { let (response_sender, response_receiver) = channel(); api_sender .send(ApiRequest::VmmPing(response_sender)) .map_err(ApiError::RequestSend)?; api_evt.write(1).map_err(ApiError::EventFdWrite)?; let vmm_pong = response_receiver.recv().map_err(ApiError::ResponseRecv)??; match vmm_pong { ApiResponsePayload::VmmPing(pong) => Ok(pong), _ => Err(ApiError::ResponsePayloadType), } } pub fn vmm_shutdown(api_evt: EventFd, api_sender: Sender) -> ApiResult<()> { let (response_sender, response_receiver) = channel(); // Send the VMM shutdown request. api_sender .send(ApiRequest::VmmShutdown(response_sender)) .map_err(ApiError::RequestSend)?; api_evt.write(1).map_err(ApiError::EventFdWrite)?; response_receiver.recv().map_err(ApiError::ResponseRecv)??; Ok(()) } pub fn vm_resize( api_evt: EventFd, api_sender: Sender, data: Arc, ) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::Resize(data)) } pub fn vm_resize_zone( api_evt: EventFd, api_sender: Sender, data: Arc, ) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::ResizeZone(data)) } pub fn vm_add_device( api_evt: EventFd, api_sender: Sender, data: Arc, ) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::AddDevice(data)) } pub fn vm_add_user_device( api_evt: EventFd, api_sender: Sender, data: Arc, ) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::AddUserDevice(data)) } pub fn vm_remove_device( api_evt: EventFd, api_sender: Sender, data: Arc, ) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::RemoveDevice(data)) } pub fn vm_add_disk( api_evt: EventFd, api_sender: Sender, data: Arc, ) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::AddDisk(data)) } pub fn vm_add_fs( api_evt: EventFd, api_sender: Sender, data: Arc, ) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::AddFs(data)) } pub fn vm_add_pmem( api_evt: EventFd, api_sender: Sender, data: Arc, ) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::AddPmem(data)) } pub fn vm_add_net( api_evt: EventFd, api_sender: Sender, data: Arc, ) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::AddNet(data)) } pub fn vm_add_vsock( api_evt: EventFd, api_sender: Sender, data: Arc, ) -> ApiResult> { vm_action(api_evt, api_sender, VmAction::AddVsock(data)) }