]> git.baikalelectronics.ru Git - kernel.git/commit
KVM: x86: add system attribute to retrieve full set of supported xsave states
authorPaolo Bonzini <pbonzini@redhat.com>
Wed, 26 Jan 2022 12:49:45 +0000 (07:49 -0500)
committerPaolo Bonzini <pbonzini@redhat.com>
Fri, 28 Jan 2022 12:33:32 +0000 (07:33 -0500)
commit55f0a7ef6590c0ad7d6a5e2922f45c8857b7e66d
tree979a5f35f1614f6347bb26807174487ba4f6875b
parent6cbb7ceaffd1e24392654e0c87520b19bd70533c
KVM: x86: add system attribute to retrieve full set of supported xsave states

Because KVM_GET_SUPPORTED_CPUID is meant to be passed (by simple-minded
VMMs) to KVM_SET_CPUID2, it cannot include any dynamic xsave states that
have not been enabled.  Probing those, for example so that they can be
passed to ARCH_REQ_XCOMP_GUEST_PERM, requires a new ioctl or arch_prctl.
The latter is in fact worse, even though that is what the rest of the
API uses, because it would require supported_xcr0 to be moved from the
KVM module to the kernel just for this use.  In addition, the value
would be nonsensical (or an error would have to be returned) until
the KVM module is loaded in.

Therefore, to limit the growth of system ioctls, add a /dev/kvm
variant of KVM_{GET,HAS}_DEVICE_ATTR, and implement it in x86
with just one group (0) and attribute (KVM_X86_XCOMP_GUEST_SUPP).

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Documentation/virt/kvm/api.rst
arch/x86/include/uapi/asm/kvm.h
arch/x86/kvm/x86.c
include/uapi/linux/kvm.h