You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 1, 2024. It is now read-only.
// Note: This may cause a crash at `!pt_entry.readable()` because the hypervisor has pre-allocated page tables
88
+
// in the hook_manager that are not passed to this function. We're attempting to translate a guest physical address to a host physical address using the EPT.
89
+
// The hypervisor maps everything as 2MB pages. The hooked pages are split and stored in the pre-allocated Pt,
90
+
// which are usually passed as a parameter, those are not stored in the EPT structure.
91
+
// This translation is not required in a 1:1 mapping but is done for demonstration purposes and in case changes are made to the Paging/EPT.
92
+
// let host_pa = unsafe { Ept::translate_guest_pa_to_host_pa(pml4_address, guest_pa)? };
0 commit comments