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.


Commented test code for exec hooking, etc
[palacios.git] / palacios / include / palacios / vmm_execve_hook.h
1 /* 
2  * This file is part of the Palacios Virtual Machine Monitor developed
3  * by the V3VEE Project with funding from the United States National 
4  * Science Foundation and the Department of Energy.  
5  *
6  * The V3VEE Project is a joint project between Northwestern University
7  * and the University of New Mexico.  You can find out more at 
8  * http://www.v3vee.org
9  *
10  * Copyright (c) 2011, Kyle C. Hale <kh@u.norhtwestern.edu>
11  * Copyright (c) 2011, The V3VEE Project <http://www.v3vee.org> 
12  * All rights reserved.
13  *
14  * Author: Kyle C. Hale <kh@u.northwestern.edu>
15  *
16  * This is free software.  You are permitted to use,
17  * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
18  */
19
20
21 #ifndef __VMM_EXECVE_HOOK_H__
22 #define __VMM_EXECVE_HOOK_H__
23
24 #ifdef __V3VEE__
25
26
27 struct v3_exec_hooks {
28     struct list_head hook_list;
29     struct hashtable * bin_table;
30 };
31
32 struct exec_hook {
33     int (*handler)(struct guest_info * core, void * priv_data);
34     struct list_head hook_node;
35     void * priv_data;
36 };
37
38
39 int v3_init_exec_hooks (struct guest_info * core);
40 int v3_deinit_exec_hooks (struct guest_info * core);
41
42 int v3_hook_executable (struct guest_info * core, 
43     const uchar_t * binfile,
44     int (*handler)(struct guest_info * core, void * priv_data),
45     void * priv_data);
46
47
48 #endif
49
50
51 #endif