X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fvm_guest_mem.c;h=78b4b7ed8d4617645cc8102ef76493ec7845e5ec;hb=da0f0deecf22754656bad2a95640461ec3ac4f1d;hp=f4cd053d780759bb500ce590a4810a9f2df17578;hpb=a71d13e84ccd2ea959299c7f01513e6f9e593b7d;p=palacios.git diff --git a/palacios/src/palacios/vm_guest_mem.c b/palacios/src/palacios/vm_guest_mem.c index f4cd053..78b4b7e 100644 --- a/palacios/src/palacios/vm_guest_mem.c +++ b/palacios/src/palacios/vm_guest_mem.c @@ -67,9 +67,11 @@ int host_pa_to_host_va(addr_t host_pa, addr_t * host_va) { int guest_pa_to_host_pa(struct guest_info * guest_info, addr_t guest_pa, addr_t * host_pa) { // we use the shadow map here... - host_region_type_t reg_type = lookup_shadow_map_addr(&(guest_info->mem_map), guest_pa, host_pa); + shdw_region_type_t reg_type = lookup_shadow_map_addr(&(guest_info->mem_map), guest_pa, host_pa); - if (reg_type != HOST_REGION_PHYSICAL_MEMORY) { + if ((reg_type == SHDW_REGION_INVALID) || + (reg_type == SHDW_REGION_UNALLOCATED) || + (reg_type == SHDW_REGION_FULL_HOOK)){ PrintError("In GPA->HPA: Could not find address in shadow map (addr=%p) (reg_type=%d)\n", (void *)guest_pa, reg_type); return -1; @@ -151,7 +153,7 @@ int guest_va_to_guest_pa(struct guest_info * guest_info, addr_t guest_va, addr_t return 0; } - if (guest_info->mem_mode == SHADOW_PAGING) { + if (guest_info->shdw_pg_mode == SHADOW_PAGING) { guest_cr3 = guest_info->shdw_pg_state.guest_cr3; } else { guest_cr3 = guest_info->ctrl_regs.cr3; @@ -161,13 +163,28 @@ int guest_va_to_guest_pa(struct guest_info * guest_info, addr_t guest_va, addr_t // Guest Is in Paged mode switch (guest_info->cpu_mode) { case PROTECTED: - return v3_translate_guest_pt_32(guest_info, guest_cr3, guest_va, guest_pa); + if (v3_translate_guest_pt_32(guest_info, guest_cr3, guest_va, guest_pa) == -1) { + PrintDebug("Could not translate addr (%p) through 32 bit guest PT at %p\n", + (void *)guest_va, (void *)(addr_t)guest_cr3); + return -1; + } + break; case PROTECTED_PAE: - return v3_translate_guest_pt_32pae(guest_info, guest_cr3, guest_va, guest_pa); + if (v3_translate_guest_pt_32pae(guest_info, guest_cr3, guest_va, guest_pa) == -1) { + PrintDebug("Could not translate addr (%p) through 32 bitpae guest PT at %p\n", + (void *)guest_va, (void *)(addr_t)guest_cr3); + return -1; + } + break; case LONG: case LONG_32_COMPAT: case LONG_16_COMPAT: - return v3_translate_guest_pt_64(guest_info, guest_cr3, guest_va, guest_pa); + if (v3_translate_guest_pt_64(guest_info, guest_cr3, guest_va, guest_pa) == -1) { + PrintDebug("Could not translate addr (%p) through 64 bit guest PT at %p\n", + (void *)guest_va, (void *)(addr_t)guest_cr3); + return -1; + } + break; default: return -1; }