X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fvmm_io.c;h=0e099e5a5ebee2f638e83795394142baad2688fc;hb=b3662a67b9b28e2b0724ebb2ea10edccba5d2a5b;hp=5f762e423657d6f84a19cc386c3d4cc0cd571233;hpb=77b8b3d88d13a1aeb5f6a034a8ea348bde9b9315;p=palacios.git diff --git a/palacios/src/palacios/vmm_io.c b/palacios/src/palacios/vmm_io.c index 5f762e4..0e099e5 100644 --- a/palacios/src/palacios/vmm_io.c +++ b/palacios/src/palacios/vmm_io.c @@ -29,6 +29,7 @@ #define PrintDebug(fmt, args...) #endif +static int free_hook(struct v3_vm_info * vm, struct v3_io_hook * hook); static int default_write(struct guest_info * core, uint16_t port, void *src, uint_t length, void * priv_data); static int default_read(struct guest_info * core, uint16_t port, void * dst, uint_t length, void * priv_data); @@ -42,6 +43,22 @@ void v3_init_io_map(struct v3_vm_info * vm) { } +int v3_deinit_io_map(struct v3_vm_info * vm) { + struct rb_node * node = v3_rb_first(&(vm->io_map.map)); + struct v3_io_hook * hook = NULL; + struct rb_node * tmp_node = NULL; + + while (node) { + hook = rb_entry(node, struct v3_io_hook, tree_node); + tmp_node = node; + node = v3_rb_next(node); + + free_hook(vm, hook); + } + + return 0; +} + @@ -62,6 +79,7 @@ static inline struct v3_io_hook * __insert_io_hook(struct v3_vm_info * vm, struc return tmp_hook; } } + rb_link_node(&(hook->tree_node), parent, p); return NULL; @@ -145,19 +163,13 @@ int v3_hook_io_port(struct v3_vm_info * vm, uint16_t port, return 0; } -int v3_unhook_io_port(struct v3_vm_info * vm, uint16_t port) { - struct v3_io_hook * hook = v3_get_io_hook(vm, port); - - if (hook == NULL) { - PrintError("Could not find port to unhook %u (0x%x)\n", port, port); - return -1; - } +static int free_hook(struct v3_vm_info * vm, struct v3_io_hook * hook) { v3_rb_erase(&(hook->tree_node), &(vm->io_map.map)); if (vm->io_map.update_map) { // set the arch map to default (this should be 1, 1) - vm->io_map.update_map(vm, port, 0, 0); + vm->io_map.update_map(vm, hook->port, 0, 0); } V3_Free(hook); @@ -165,6 +177,19 @@ int v3_unhook_io_port(struct v3_vm_info * vm, uint16_t port) { return 0; } +int v3_unhook_io_port(struct v3_vm_info * vm, uint16_t port) { + struct v3_io_hook * hook = v3_get_io_hook(vm, port); + + if (hook == NULL) { + PrintError("Could not find port to unhook %u (0x%x)\n", port, port); + return -1; + } + + free_hook(vm, hook); + + return 0; +} +