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.


Missing commit (compilation with memmory tracking off)
[palacios.git] / palacios / include / palacios / vmm_direct_paging.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) 2008, Steven Jaconette <stevenjaconette2007@u.northwestern.edu> 
11  * Copyright (c) 2008, Jack Lange <jarusl@cs.northwestern.edu> 
12  * Copyright (c) 2008, The V3VEE Project <http://www.v3vee.org> 
13  * All rights reserved.
14  *
15  * Author: Steven Jaconette <stevenjaconette2007@u.northwestern.edu>
16  *
17  * This is free software.  You are permitted to use,
18  * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
19  */
20
21 #ifndef __VMM_DIRECT_PAGING_H__
22 #define __VMM_DIRECT_PAGING_H__
23
24 #ifdef __V3VEE__
25
26 #include <palacios/vmm_mem.h>
27 #include <palacios/vmm_paging.h>
28 #include <palacios/vmm_list.h>
29 #include <palacios/vmm_lock.h>
30  
31
32 /**********************************
33    PASSTHROUGH PAGING - CORE FUNC
34  **********************************/
35
36
37 struct v3_passthrough_impl_state {
38     // currently there is only a single implementation
39     // that internally includes SVM and VMX support
40     // The externally visible state is just the callbacks
41     v3_rw_lock_t     event_callback_lock;
42     struct list_head event_callback_list;
43 };
44
45
46 int v3_init_passthrough_paging(struct v3_vm_info *vm);
47 int v3_init_passthrough_paging_core(struct guest_info *core);
48 int v3_deinit_passthrough_paging(struct v3_vm_info *vm);
49 int v3_deinit_passthrough_paging_core(struct guest_info *core);
50
51 int v3_init_passthrough_pts(struct guest_info * guest_info);
52 int v3_free_passthrough_pts(struct guest_info * core);
53
54 int v3_reset_passthrough_pts(struct guest_info * guest_info);
55
56 // actual_start/end may be null if you don't want this info
57 // If non-null, these return the actual affected GPA range
58 int v3_handle_passthrough_pagefault(struct guest_info * info, addr_t fault_addr, pf_error_t error_code,
59                                     addr_t *actual_start, addr_t *actual_end);
60
61 int v3_activate_passthrough_pt(struct guest_info * info);
62
63 int v3_invalidate_passthrough_addr(struct guest_info * info, addr_t inv_addr,
64                                    addr_t *actual_start, addr_t *actual_end);
65
66 // The range invalidated is minimally [start, end]
67 int v3_invalidate_passthrough_addr_range(struct guest_info * info, 
68                                          addr_t inv_addr_start, addr_t inv_addr_end,
69                                          addr_t *actual_start, addr_t *actual_end);
70
71 /**********************************
72    PASSTHROUGH PAGING - EVENTS
73  **********************************/
74
75 struct v3_passthrough_pg_event {
76     enum {PASSTHROUGH_PAGEFAULT,PASSTHROUGH_INVALIDATE_RANGE,PASSTHROUGH_ACTIVATE} event_type;
77     enum {PASSTHROUGH_PREIMPL, PASSTHROUGH_POSTIMPL} event_order;
78     addr_t     gpa;        // for pf 
79     pf_error_t error_code; // for pf
80     addr_t     gpa_start;  // for invalidation of range or page fault
81     addr_t     gpa_end;    // for invalidation of range or page fault (range is [start,end] )
82                            // PREIMPL: start/end is the requested range
83                            // POSTIMPL: start/end is the actual range invalidated
84 };
85
86
87
88 int v3_register_passthrough_paging_event_callback(struct v3_vm_info *vm,
89                                                   int (*callback)(struct guest_info *core, 
90                                                                   struct v3_passthrough_pg_event *,
91                                                                   void      *priv_data),
92                                                   void *priv_data);
93
94 int v3_unregister_passthrough_paging_event_callback(struct v3_vm_info *vm,
95                                                     int (*callback)(struct guest_info *core, 
96                                                                     struct v3_passthrough_pg_event *,
97                                                                     void      *priv_data),
98                                                     void *priv_data);
99
100
101
102 /*****************************
103    NESTED PAGING - CORE FUNC
104  *****************************/
105
106
107 struct v3_nested_impl_state {
108     // currently there is only a single implementation
109     // that internally includes SVM and VMX support
110     // The externally visible state is just the callbacks
111     v3_rw_lock_t     event_callback_lock;
112     struct list_head event_callback_list;
113 };
114
115 int v3_init_nested_paging(struct v3_vm_info *vm);
116 int v3_init_nested_paging_core(struct guest_info *core, void *hwinfo);
117 int v3_deinit_nested_paging(struct v3_vm_info *vm);
118 int v3_deinit_nested_paging_core(struct guest_info *core);
119
120
121 // actual_start/end may be null if you don't want this info
122 // If non-null, these return the actual affected GPA range
123 int v3_handle_nested_pagefault(struct guest_info * info, addr_t fault_addr, void *pfinfo,
124                                addr_t *actual_start, addr_t *actual_end);
125
126 int v3_invalidate_nested_addr(struct guest_info * info, addr_t inv_addr,
127                               addr_t *actual_start, addr_t *actual_end);
128
129 // The range invalidated is minimally [start, end]
130 int v3_invalidate_nested_addr_range(struct guest_info * info, 
131                                     addr_t inv_addr_start, addr_t inv_addr_end,
132                                     addr_t *actual_start, addr_t *actual_end);
133
134
135
136 /*****************************
137    NESTED PAGING - EVENTS
138  *****************************/
139
140 struct v3_nested_pg_event {
141     enum {NESTED_PAGEFAULT,NESTED_INVALIDATE_RANGE} event_type;
142     enum {NESTED_PREIMPL, NESTED_POSTIMPL} event_order;
143     addr_t     gpa;        // for pf 
144     pf_error_t error_code; // for pf
145     addr_t     gpa_start;  // for invalidation of range or page fault
146     addr_t     gpa_end;    // for invalidation of range or page fault (range is [start,end] )
147                            // PREIMPL: start/end is the requested range
148                            // POSTIMPL: start/end is the actual range invalidated
149 };
150
151
152
153 int v3_register_nested_paging_event_callback(struct v3_vm_info *vm,
154                                             int (*callback)(struct guest_info *core, 
155                                                             struct v3_nested_pg_event *,
156                                                             void      *priv_data),
157                                             void *priv_data);
158
159 int v3_unregister_nested_paging_event_callback(struct v3_vm_info *vm,
160                                               int (*callback)(struct guest_info *core, 
161                                                               struct v3_nested_pg_event *,
162                                                               void      *priv_data),
163                                               void *priv_data);
164
165
166 #endif // ! __V3VEE__
167
168 #endif