KVM: MMU: Implement nested gva_to_gpa functions
authorJoerg Roedel <joerg.roedel@amd.com>
Fri, 10 Sep 2010 15:30:50 +0000 (17:30 +0200)
committerAvi Kivity <avi@redhat.com>
Sun, 24 Oct 2010 08:52:36 +0000 (10:52 +0200)
This patch adds the functions to do a nested l2_gva to
l1_gpa page table walk.

Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
arch/x86/include/asm/kvm_host.h
arch/x86/kvm/mmu.c
arch/x86/kvm/paging_tmpl.h
arch/x86/kvm/x86.h

index 1b3eb8a0a1bc9bd4ddfb0f0e0e92c39b209c0b4b..8ec3547c433d80cc38edbaa249dd0d609860f287 100644 (file)
@@ -295,6 +295,16 @@ struct kvm_vcpu_arch {
         */
        struct kvm_mmu mmu;
 
+       /*
+        * Paging state of an L2 guest (used for nested npt)
+        *
+        * This context will save all necessary information to walk page tables
+        * of the an L2 guest. This context is only initialized for page table
+        * walking and not for faulting since we never handle l2 page faults on
+        * the host.
+        */
+       struct kvm_mmu nested_mmu;
+
        /*
         * Pointer to the mmu context currently used for
         * gva_to_gpa translations.
index cb06adac92b1dae311b560d257ea63f25c436458..1e215e8b93771bd3db953f0d2718844c09a35b63 100644 (file)
@@ -2466,6 +2466,14 @@ static gpa_t nonpaging_gva_to_gpa(struct kvm_vcpu *vcpu, gva_t vaddr,
        return vaddr;
 }
 
+static gpa_t nonpaging_gva_to_gpa_nested(struct kvm_vcpu *vcpu, gva_t vaddr,
+                                        u32 access, u32 *error)
+{
+       if (error)
+               *error = 0;
+       return vcpu->arch.nested_mmu.translate_gpa(vcpu, vaddr, access);
+}
+
 static int nonpaging_page_fault(struct kvm_vcpu *vcpu, gva_t gva,
                                u32 error_code)
 {
index a704a8130e44ca1921df916f21e2974d11d04e23..eefe363156b9cfc55658d26383aa5cba45eac845 100644 (file)
@@ -276,6 +276,16 @@ static int FNAME(walk_addr)(struct guest_walker *walker,
                                        write_fault, user_fault, fetch_fault);
 }
 
+static int FNAME(walk_addr_nested)(struct guest_walker *walker,
+                                  struct kvm_vcpu *vcpu, gva_t addr,
+                                  int write_fault, int user_fault,
+                                  int fetch_fault)
+{
+       return FNAME(walk_addr_generic)(walker, vcpu, &vcpu->arch.nested_mmu,
+                                       addr, write_fault, user_fault,
+                                       fetch_fault);
+}
+
 static void FNAME(update_pte)(struct kvm_vcpu *vcpu, struct kvm_mmu_page *sp,
                              u64 *spte, const void *pte)
 {
@@ -660,6 +670,27 @@ static gpa_t FNAME(gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t vaddr, u32 access,
        return gpa;
 }
 
+static gpa_t FNAME(gva_to_gpa_nested)(struct kvm_vcpu *vcpu, gva_t vaddr,
+                                     u32 access, u32 *error)
+{
+       struct guest_walker walker;
+       gpa_t gpa = UNMAPPED_GVA;
+       int r;
+
+       r = FNAME(walk_addr_nested)(&walker, vcpu, vaddr,
+                                   access & PFERR_WRITE_MASK,
+                                   access & PFERR_USER_MASK,
+                                   access & PFERR_FETCH_MASK);
+
+       if (r) {
+               gpa = gfn_to_gpa(walker.gfn);
+               gpa |= vaddr & ~PAGE_MASK;
+       } else if (error)
+               *error = walker.error_code;
+
+       return gpa;
+}
+
 static void FNAME(prefetch_page)(struct kvm_vcpu *vcpu,
                                 struct kvm_mmu_page *sp)
 {
index 2d6385e44ccfe5608cae1f8e418ec6e06b01f867..bf4dc2f40d7f3ad01238b3607c80b6bf60915e5c 100644 (file)
@@ -50,6 +50,11 @@ static inline int is_long_mode(struct kvm_vcpu *vcpu)
 #endif
 }
 
+static inline bool mmu_is_nested(struct kvm_vcpu *vcpu)
+{
+       return vcpu->arch.walk_mmu == &vcpu->arch.nested_mmu;
+}
+
 static inline int is_pae(struct kvm_vcpu *vcpu)
 {
        return kvm_read_cr4_bits(vcpu, X86_CR4_PAE);