[PATCH v2 00/28] KVM: x86: Introduce memory protection attributes

Paolo Bonzini posted 28 patches 6 days, 15 hours ago
There is a newer version of this series
Documentation/virt/kvm/api.rst                |  38 +-
arch/x86/include/asm/kvm_host.h               |   4 +-
arch/x86/kvm/Kconfig                          |   4 +-
arch/x86/kvm/hyperv.c                         | 157 ++++--
arch/x86/kvm/mmu/mmu.c                        | 169 +++++--
arch/x86/kvm/mmu/mmu_internal.h               |  21 +-
arch/x86/kvm/mmu/mmutrace.h                   |  36 ++
arch/x86/kvm/mmu/paging_tmpl.h                |  25 +-
arch/x86/kvm/mmu/spte.c                       |  12 +-
arch/x86/kvm/mmu/spte.h                       |  13 +-
arch/x86/kvm/mmu/tdp_mmu.c                    |   2 +-
arch/x86/kvm/x86.c                            |  57 ++-
include/linux/kvm_host.h                      | 128 ++++-
include/linux/kvm_types.h                     |   6 +-
include/trace/events/kvm.h                    |  14 +-
include/uapi/linux/kvm.h                      |   7 +
tools/include/uapi/linux/kvm.h                |   3 +
tools/testing/selftests/kvm/Makefile.kvm      |   2 +
.../testing/selftests/kvm/include/kvm_util.h  |  32 +-
.../selftests/kvm/include/x86/processor.h     |   1 +
.../testing/selftests/kvm/lib/x86/processor.c |   5 +
.../testing/selftests/kvm/memory_attributes.c | 453 ++++++++++++++++++
tools/testing/selftests/kvm/x86/hcall_fault.c | 236 +++++++++
.../testing/selftests/kvm/x86/hyperv_evmcs.c  |  17 +-
.../selftests/kvm/x86/hyperv_svm_test.c       |  15 +-
.../selftests/kvm/x86/memory_attributes.c     | 415 ++++++++++++++++
.../kvm/x86/private_mem_kvm_exits_test.c      |   6 +-
virt/kvm/kvm_main.c                           | 252 ++++++++--
virt/kvm/pfncache.c                           |  30 +-
29 files changed, 1973 insertions(+), 187 deletions(-)
create mode 100644 tools/testing/selftests/kvm/memory_attributes.c
create mode 100644 tools/testing/selftests/kvm/x86/hcall_fault.c
create mode 100644 tools/testing/selftests/kvm/x86/memory_attributes.c
[PATCH v2 00/28] KVM: x86: Introduce memory protection attributes
Posted by Paolo Bonzini 6 days, 15 hours ago
This series introduces a mechanism to let userspace block read,
write or execute access to individual GFNs via KVM's memory
attribute mechanism, and have them reported via KVM_EXIT_MEMORY_FAULT.
It is mostly the work of Nicolas Saenz Julienne, with my working
consisting in reorganization, code cleanup, and using the recently
revamped MMU code (ACC_* masks and kvm_page_format).

KVM needs to check the attributes anytime KVM takes GPAs as input for any
action initiated by the guest; if the memory attributes are incompatible
with such action, it should be stopped.  This means that there are quite
a lot of cases to handle.  While some families of functions can be
handled in one step, there are simply many places that do memory access.

Along the way, the patches fix some issues in the memory attributes code,
that surfaced due to having more than one attribute.

Paolo

v1->v2:
- fixed sashiko reports
- fixed and cleanup up test
- hypercall fault exit KVM_CAP not Hyper-V specific anymore
- completed/rewritten Hyper-V hypercall handling
- added KVM_HC_CLOCK_PAIRING handling
- use NX attribute for emulation
- properly split front/back halves of kvm_zap_all_fast

Anish Moorthy (1):
  KVM: Define and communicate KVM_EXIT_MEMORY_FAULT RWX flags to
    userspace

Nicolas Saenz Julienne (13):
  KVM: selftests: Take into account mixed memory fault flags
  KVM: x86/mmu: Init memslot hugepage information for non-private_mem
    VMs too
  KVM: Introduce NR/NW/NX memory attributes
  KVM: Include memory protections in result of gfn->hva conversion
  KVM: Take memory protections into account for memory read/write/fetch
  KVM: Encapsulate memattrs array into anonymous struct
  KVM: Introduce a generation number for memory attributes
  KVM: Take memory protections into account for accesses with cached
    gfn->hva
  KVM: pfncache: Fail to refresh if it contains memory protections
  KVM: x86/mmu: Take memory protection attributes into account during
    faults
  KVM: x86/mmu: Issue memory fault exit if walk failed due to memory
    attribute
  KVM: x86/mmu: Do not update accessed/dirty if guest PTE is read-only
  KVM: x86/mmu: Do not prefetch sptes on gfns backed by memory
    attributes

Paolo Bonzini (14):
  KVM: selftests: Test address translation for Hyper-V direct L2
    hypercalls
  KVM: apply nGPA->GPA translation to KVM_HC_CLOCK_PAIRING
  KVM: x86: Introduce memory fault on invalid hypercalls reads/writes
  KVM: selftests: test hypercall memory fault exits
  KVM: x86/mmu: intersect writability from __kvm_faultin_pfn with
    fault->map_writable
  KVM: x86/mmu: Extend map_writable to a full ACC_* mask
  KVM: pass kvm == NULL case to kvm_arch_has_private_mem
  KVM: adjust for presence of more than one attribute
  KVM: Introduce kvm_fetch_guest_page() and use it for x86
  KVM: Introduce kvm_check_gen()/kvm_memslots_check_gen()
  KVM: x86/mmu: Obsolete all roots if memattr contains gPTEs
  KVM: x86: selftests: Introduce memory protection attributes test
  KVM: x86: selftests: Introduce memory attributes PTE test
  KVM: x86: selftests: Introduce memory attributes side-channel tests

 Documentation/virt/kvm/api.rst                |  38 +-
 arch/x86/include/asm/kvm_host.h               |   4 +-
 arch/x86/kvm/Kconfig                          |   4 +-
 arch/x86/kvm/hyperv.c                         | 157 ++++--
 arch/x86/kvm/mmu/mmu.c                        | 169 +++++--
 arch/x86/kvm/mmu/mmu_internal.h               |  21 +-
 arch/x86/kvm/mmu/mmutrace.h                   |  36 ++
 arch/x86/kvm/mmu/paging_tmpl.h                |  25 +-
 arch/x86/kvm/mmu/spte.c                       |  12 +-
 arch/x86/kvm/mmu/spte.h                       |  13 +-
 arch/x86/kvm/mmu/tdp_mmu.c                    |   2 +-
 arch/x86/kvm/x86.c                            |  57 ++-
 include/linux/kvm_host.h                      | 128 ++++-
 include/linux/kvm_types.h                     |   6 +-
 include/trace/events/kvm.h                    |  14 +-
 include/uapi/linux/kvm.h                      |   7 +
 tools/include/uapi/linux/kvm.h                |   3 +
 tools/testing/selftests/kvm/Makefile.kvm      |   2 +
 .../testing/selftests/kvm/include/kvm_util.h  |  32 +-
 .../selftests/kvm/include/x86/processor.h     |   1 +
 .../testing/selftests/kvm/lib/x86/processor.c |   5 +
 .../testing/selftests/kvm/memory_attributes.c | 453 ++++++++++++++++++
 tools/testing/selftests/kvm/x86/hcall_fault.c | 236 +++++++++
 .../testing/selftests/kvm/x86/hyperv_evmcs.c  |  17 +-
 .../selftests/kvm/x86/hyperv_svm_test.c       |  15 +-
 .../selftests/kvm/x86/memory_attributes.c     | 415 ++++++++++++++++
 .../kvm/x86/private_mem_kvm_exits_test.c      |   6 +-
 virt/kvm/kvm_main.c                           | 252 ++++++++--
 virt/kvm/pfncache.c                           |  30 +-
 29 files changed, 1973 insertions(+), 187 deletions(-)
 create mode 100644 tools/testing/selftests/kvm/memory_attributes.c
 create mode 100644 tools/testing/selftests/kvm/x86/hcall_fault.c
 create mode 100644 tools/testing/selftests/kvm/x86/memory_attributes.c

-- 
2.52.0