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.


New Gears Tools And Structure
[palacios.git] / palacios / include / gears / 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 __EXECVE_HOOK_H__
22 #define __EXECVE_HOOK_H__
23
24 #ifdef __V3VEE__
25
26 struct v3_exec_hooks {
27     struct list_head hook_list;
28     struct hashtable * bin_table;
29 };
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_execve_handler (struct guest_info * core, uint_t syscall_nr, void * priv_data);
40
41 #endif
42
43 int v3_hook_executable (struct v3_vm_info * vm, 
44     const uchar_t * binfile,
45     int (*handler)(struct guest_info * core, void * priv_data),
46     void * priv_data);
47
48 int v3_unhook_executable (struct v3_vm_info * core, const uchar_t * binfile); 
49 #endif