Expand description
Hyper-V hypercall parsing.
This crate helps you implement handling for Hyper-V hypercalls issued by guest VMs. These are the hypercalls defined in the Hypervisor Top Level Functional Specification.
Besides providing parsing of the core hypercall ABI, it also provides Rust traits for each supported hypercall.
To use this crate, you provide access to the processor’s registers, and you
implement the trait corresponding to each hypercall you want to support.
Then you use the dispatcher
macro to instantiate a dispatcher, and you
call Dispatcher::dispatch
dispatch the hypercall.
Re-exports§
pub use self::support::HypercallHandler;
Macros§
- Creates a hypercall dispatcher, where the dispatcher can support any of the list of provided hypercalls.
Structs§
- An implementation of
HypercallIo
on top ofArm64RegisterState
. - Hypercall dispatcher.
- Configuration for a hypervisor device interrupt.
- An implementation of
HypercallIo
on X64 register state.
Enums§
- An x64 GP register. This just contains the subset used in the hypercall ABI.
Traits§
- Implements the
HvAcceptGpaPages
hypercall. - Provides access to the ARM64 register state needed to parse hypercalls.
- Trait for getting the handler from the
handler
parameter passed toDispatcher::dispatch
. - Implements the
HvAssertVirtualInterrupt
hypercall. - Implements the
HvEnablePartitionVtl
hypercall. - Implements the
HvEnableVpVtl
hypercall. - Implements the
HvExtQueryCapabilities
hypercall. - Implements the
HvFlushVirtualAddressList
hypercall. - Implements the
HvFlushVirtualAddressListEx
hypercall. - Implements the
HvFlushVirtualAddressSpace
hypercall. - Implements the
HvFlushVirtualAddressSpaceEx
hypercall. - Implements the
HvGetVpIndexFromApicId
hypercall. - Implements the
HvGetVpRegisters
hypercall. - A trait defined on dummy objects to provide metadata for a hypercall.
- Provides input and output parameters for a hypercall.
- Implements the
HvInstallIntercept
hypercall. - Implements the
HvModifySparseGpaPageHostVisibility
hypercall. - Implements the
HvModifyVtlProtectionMask
hypercall. - Implements the
HvPostMessage
hypercall. - Implements the
HvPostMessageDirect
hypercall. - Implements the
HvQuerySparseGpaPageHostVisibility
hypercall. - Implements the
HvRetargetDeviceInterrupt
hypercall. - Implements the
HvSetVpRegisters
hypercall. - Implements the
HvSignalEvent
hypercall. - Implements the
HvSignalEventDirect
hypercall. - Implements the
HvStartVirtualProcessor
hypercall. - Implements the
HvTranslateVirtualAddressEx
hypercall. - Implements the
HvTranslateVirtualAddressEx
hypercall. - Implements the
HvTranslateVirtualAddress
hypercall. - Implements the
HvVtlCall
hypercall. - Implements the
HvVtlReturn
hypercall. - Operations required to handle VTL switch hypercalls.
- Register state access for x86/x64.
Type Aliases§
- Defines the
HvTranslateVirtualAddressEx
hypercall. - Defines the
HvAcceptGpaPages
hypercall. - Defines the
HvEnableVpVtl
hypercall for arm64. - Defines the
HvStartVirtualProcessor
hypercall for arm64. - Defines the
HvAssertVirtualInterrupt
hypercall. - Defines the
HvEnablePartitionVtl
hypercall. - Defines the
HvExtQueryCapabilities
hypercall. - Defines the
HvFlushVirtualAddressList
hypercall. - Defines the
HvFlushVirtualAddressListEx
hypercall. - Defines the
HvFlushVirtualAddressSpace
hypercall. - Defines the
HvFlushVirtualAddressSpaceEx
hypercall. - Defines the
HvGetVpIndexFromApicId
hypercall. - Defines the
HvGetVpRegisters
hypercall. - Defines the
HvInstallIntercept
hypercall. - Defines the
HvModifySparseGpaPageHostVisibility
hypercall. - Defines the
HvModifyVtlProtectionMask
hypercall. - Defines the
HvPostMessage
hypercall. - Defines the
HvPostMessageDirect
hypercall. - Defines the
HvQuerySparseGpaPageHostVisibility
hypercall. - Hypervisor result type for rep hypercalls. These hypercalls have either no or only rep output data, which is passed separately from the result. The error is an a tuple consisting of an
HvError
and the number of elements successfully processed prior to the error being returned. AnOk
result implies that all input elements were processed successfully. - Defines the
HvRetargetDeviceInterrupt
hypercall. - Defines the
HvSetVpRegisters
hypercall. - Defines the
HvSignalEvent
hypercall. - Defines the
HvSignalEventDirect
hypercall. - Defines the
HvVtlCall
hypercall. - Defines the
HvVtlReturn
hypercall. - Defines the
HvEnableVpVtl
hypercall for x64. - Defines the
HvStartVirtualProcessor
hypercall for x64. - Defines the
HvTranslateVirtualAddress
hypercall. - Defines the
HvTranslateVirtualAddressEx
hypercall.