mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
vmm: Add KVM_GET_MSR_FEATURE_INDEX_LIST to seccomp rules
We need to update the seccomp filter to permit KVM_GET_MSR_FEATURE_INDEX_LIST which we introduced in the previous commit. Signed-off-by: Oliver Anderson <oliver.anderson@cyberus-technology.de> On-behalf-of: SAP oliver.anderson@sap.com
This commit is contained in:
committed by
Rob Bradford
parent
9a2661a9c8
commit
9f5590fe6c
@@ -458,6 +458,7 @@ fn create_vmm_ioctl_seccomp_rule_kvm() -> Result<Vec<SeccompRule>, BackendError>
|
||||
const KVM_GET_FPU: u64 = 0x81a0_ae8c;
|
||||
const KVM_GET_LAPIC: u64 = 0x8400_ae8e;
|
||||
const KVM_GET_MSR_INDEX_LIST: u64 = 0xc004_ae02;
|
||||
const KVM_GET_MSR_FEATURE_INDEX_LIST: u64 = 0xc004_ae0a;
|
||||
const KVM_GET_MSRS: u64 = 0xc008_ae88;
|
||||
const KVM_GET_SREGS: u64 = 0x8138_ae83;
|
||||
const KVM_GET_TSC_KHZ: u64 = 0xaea3;
|
||||
@@ -487,6 +488,12 @@ fn create_vmm_ioctl_seccomp_rule_kvm() -> Result<Vec<SeccompRule>, BackendError>
|
||||
and![Cond::new(1, ArgLen::Dword, Eq, KVM_GET_FPU)?],
|
||||
and![Cond::new(1, ArgLen::Dword, Eq, KVM_GET_LAPIC)?],
|
||||
and![Cond::new(1, ArgLen::Dword, Eq, KVM_GET_MSR_INDEX_LIST)?],
|
||||
and![Cond::new(
|
||||
1,
|
||||
ArgLen::Dword,
|
||||
Eq,
|
||||
KVM_GET_MSR_FEATURE_INDEX_LIST
|
||||
)?],
|
||||
and![Cond::new(1, ArgLen::Dword, Eq, KVM_GET_MSRS)?],
|
||||
and![Cond::new(1, ArgLen::Dword, Eq, KVM_GET_SREGS)?],
|
||||
and![Cond::new(1, ArgLen::Dword, Eq, KVM_GET_TSC_KHZ)?],
|
||||
|
||||
Reference in New Issue
Block a user