blob: f8e0a500903b1dc070ff82aa84cfa0ba7e0b8280 [file] [log] [blame]
// Copyright 2017 The Android Open Source Project
//
// This software is licensed under the terms of the GNU General Public
// License version 2, as published by the Free Software Foundation, and
// may be copied, distributed, and modified under those terms.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
#include "android/snapshot/MemoryWatch.h"
hva2gpa_t hva2gpa_call = 0;
gpa2hva_t gpa2hva_call = 0;
guest_mem_map_t guest_mem_map_call = 0;
guest_mem_unmap_t guest_mem_unmap_call = 0;
guest_mem_protect_t guest_mem_protect_call = 0;
guest_mem_remap_t guest_mem_remap_call = 0;
guest_mem_protection_supported_t guest_mem_protection_supported_call = 0;
void set_address_translation_funcs(
hva2gpa_t hva2gpa,
gpa2hva_t gpa2hva) {
hva2gpa_call = hva2gpa;
gpa2hva_call = gpa2hva;
}
void set_memory_mapping_funcs(
guest_mem_map_t guest_mem_map,
guest_mem_unmap_t guest_mem_unmap,
guest_mem_protect_t guest_mem_protect,
guest_mem_remap_t guest_mem_remap,
guest_mem_protection_supported_t guest_mem_protection_supported) {
guest_mem_map_call = guest_mem_map;
guest_mem_unmap_call = guest_mem_unmap;
guest_mem_protect_call = guest_mem_protect;
guest_mem_remap_call = guest_mem_remap;
guest_mem_protection_supported_call = guest_mem_protection_supported;
}