Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


added state checks for VM control commands
[palacios.git] / palacios / src / palacios / vmm_exits.c
index e76a3b3..97504bc 100644 (file)
@@ -173,8 +173,55 @@ int v3_hook_exit(struct v3_vm_info * vm, v3_exit_type_t exit_type,
        v3_lower_barrier(vm);
     }
     
+    return 0;
+}
 
 
-    return 0;
 
+int v3_unhook_exit(struct v3_vm_info * vm, v3_exit_type_t exit_type, struct guest_info * current_core) {
+    struct v3_exit_map * map = &(vm->exit_map);         
+    struct v3_exit_hook * hook = NULL;
+    
+    
+    if (exit_type >= V3_EXIT_INVALID) {
+       PrintError("Error: Tried to unhook invalid exit type (%d)\n", exit_type);
+       return -1;
+    }
+  
+    hook = &(map->exits[exit_type]);
+
+    if (hook->registered == 0) {
+       PrintError("Tried to unhook an unregistered exit (%d)\n", exit_type);
+       return -1;
+    } 
+
+    if (hook->hooked == 0) {
+       PrintError("Tried to unhook and unhooked exit (%d)\n", exit_type);
+       return -1;
+    }
+
+
+    hook->hooked = 0;
+    hook->handler = NULL;
+    hook->priv_data = NULL;
+
+    
+    if (vm->run_state != VM_INVALID) {
+       int i = 0;
+
+       while (v3_raise_barrier(vm, current_core) == -1);
+       
+       for (i = 0; i < vm->num_cores; i++) {
+           
+           if (hook->disable(&(vm->cores[i]), exit_type) != 0) {
+               PrintError("Error could not enable exit hook %d on core %d\n", exit_type, i);
+               v3_lower_barrier(vm);
+               return -1;
+           }   
+       }
+
+       v3_lower_barrier(vm);
+    }
+    
+    return 0;
 }