X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fvmm_shadow_paging_32.h;h=c358c3c374c9202e9f2dce75946bbdb280fedf69;hp=4614232fcf17fd0bc452b7639b8ee09fea510a98;hb=cfcc5717f659b3ed2954f41cf363d3bceae8dc84;hpb=7c9087090f06a3fdf041f650912c36b6b12d7a82 diff --git a/palacios/src/palacios/vmm_shadow_paging_32.h b/palacios/src/palacios/vmm_shadow_paging_32.h index 4614232..c358c3c 100644 --- a/palacios/src/palacios/vmm_shadow_paging_32.h +++ b/palacios/src/palacios/vmm_shadow_paging_32.h @@ -33,6 +33,10 @@ static inline int activate_shadow_pt_32(struct guest_info * info) { shadow_cr3->pwt = guest_cr3->pwt; shadow_cr3->pcd = guest_cr3->pcd; +#ifdef CONFIG_SYMBIOTIC_SWAP + v3_swap_flush(info); +#endif + return 0; } @@ -81,10 +85,10 @@ static inline int handle_shadow_pagefault_32(struct guest_info * info, addr_t fa /* Was the page fault caused by the Guest's page tables? */ if (is_guest_pf(guest_pde_access, shadow_pde_access) == 1) { - PrintDebug("Injecting PDE pf to guest: (guest access error=%d) (pf error code=%d)\n", - *(uint_t *)&guest_pde_access, *(uint_t *)&error_code); + PrintDebug("Injecting PDE pf to guest: (guest access error=%d) (shdw access error=%d) (pf error code=%d)\n", + *(uint_t *)&guest_pde_access, *(uint_t *)&shadow_pde_access, *(uint_t *)&error_code); if (inject_guest_pf(info, fault_addr, error_code) == -1) { - PrintError("Could not inject guest page fault\n"); + PrintError("Could not inject guest page fault for vaddr %p\n", (void *)fault_addr); return -1; } return 0; @@ -100,7 +104,7 @@ static inline int handle_shadow_pagefault_32(struct guest_info * info, addr_t fa shadow_pde_access, guest_pde_access); if (inject_guest_pf(info, fault_addr, error_code) == -1) { - PrintError("Could not inject guest page fault\n"); + PrintError("Could not inject guest page fault for vaddr %p\n", (void *)fault_addr); return -1; } return 0; @@ -114,7 +118,7 @@ static inline int handle_shadow_pagefault_32(struct guest_info * info, addr_t fa (shadow_pde_access != PT_ACCESS_OK)) { // inject page fault in guest if (inject_guest_pf(info, fault_addr, error_code) == -1) { - PrintError("Could not inject guest page fault\n"); + PrintError("Could not inject guest page fault for vaddr %p\n", (void *)fault_addr); return -1; } PrintDebug("Unknown Error occurred (shadow_pde_access=%d)\n", shadow_pde_access); @@ -193,7 +197,6 @@ static inline int handle_shadow_pagefault_32(struct guest_info * info, addr_t fa } - static int handle_pte_shadow_pagefault_32(struct guest_info * info, addr_t fault_addr, pf_error_t error_code, pte32_t * shadow_pt, pte32_t * guest_pt) { @@ -224,26 +227,72 @@ static int handle_pte_shadow_pagefault_32(struct guest_info * info, addr_t fault PrintDebug("Access error injecting pf to guest (guest access error=%d) (pf error code=%d)\n", guest_pte_access, *(uint_t*)&error_code); + #ifdef CONFIG_SYMBIOTIC_SWAP if (is_swapped_pte32(guest_pte)) { - PrintError("Page fault on swapped out page (pte=%x)\n", *(uint32_t *)guest_pte); + pf_error_t swap_perms; - if (inject_guest_pf(info, fault_addr, error_code) == -1) { - PrintError("Could not inject guest page fault\n"); - return -1; +#ifdef CONFIG_SYMBIOTIC_SWAP_TELEMETRY + if (error_code.write == 0) { + info->swap_state.read_faults++; + } else { + info->swap_state.write_faults++; } - } else { - if (inject_guest_pf(info, fault_addr, error_code) == -1) { - PrintError("Could not inject guest page fault\n"); +#endif + + if (v3_get_vaddr_perms(info, fault_addr, guest_pte, &swap_perms) == -1) { + PrintError("Error getting Swapped page permissions\n"); return -1; } + + + // swap_perms.write == 1 || error_code.write == 0 + // swap_perms.user == 0 || error_code.user == 1 + + // This checks for permissions violations that require a guest PF injection + if ( (swap_perms.present == 1) && + ( (swap_perms.write == 1) || + (error_code.write == 0) ) && + ( (swap_perms.user == 1) || + (error_code.user == 0) ) ) { + addr_t swp_pg_addr = 0; + + PrintDebug("Page fault on swapped out page (vaddr=%p) (pte=%x) (error_code=%x)\n", + (void *)fault_addr, *(uint32_t *)guest_pte, *(uint32_t *)&error_code); + + swp_pg_addr = v3_get_swapped_pg_addr(info, shadow_pte, guest_pte); + + PrintDebug("Swapped page address=%p\n", (void *)swp_pg_addr); + + if (swp_pg_addr != 0) { + shadow_pte->writable = swap_perms.write; + shadow_pte->user_page = swap_perms.user; + + shadow_pte->write_through = 0; + shadow_pte->cache_disable = 0; + shadow_pte->global_page = 0; + + shadow_pte->present = 1; + + shadow_pte->page_base_addr = swp_pg_addr; + +#ifdef CONFIG_SYMBIOTIC_SWAP_TELEMETRY + info->swap_state.mapped_pages++; +#endif + + return 0; + } + } else { + PrintDebug("Not a sym swappable page\n"); + } } -#else +#endif + + if (inject_guest_pf(info, fault_addr, error_code) == -1) { - PrintError("Could not inject guest page fault\n"); + PrintError("Could not inject guest page fault for vaddr %p\n", (void *)fault_addr); return -1; - } -#endif + } return 0; } @@ -324,7 +373,7 @@ static int handle_pte_shadow_pagefault_32(struct guest_info * info, addr_t fault } else { // Inject page fault into the guest if (inject_guest_pf(info, fault_addr, error_code) == -1) { - PrintError("Could not inject guest page fault\n"); + PrintError("Could not inject guest page fault for vaddr %p\n", (void *)fault_addr); return -1; }