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.


Better support for dynamic changes to page event callbacks
[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  
30
31 /**********************************
32    PASSTHROUGH PAGING - CORE FUNC
33  **********************************/
34
35
36 struct v3_passthrough_impl_state {
37     // currently there is only a single implementation
38     // that internally includes SVM and VMX support
39     // The externally visible state is just the callbacks
40     v3_rw_lock_t     event_callback_lock;
41     struct list_head event_callback_list;
42 };
43
44
45 int v3_init_passthrough_paging(struct v3_vm_info *vm);
46 int v3_init_passthrough_paging_core(struct guest_info *core);
47 int v3_deinit_passthrough_paging(struct v3_vm_info *vm);
48 int v3_deinit_passthrough_paging_core(struct guest_info *core);
49
50 int v3_init_passthrough_pts(struct guest_info * guest_info);
51 int v3_free_passthrough_pts(struct guest_info * core);
52
53 int v3_reset_passthrough_pts(struct guest_info * guest_info);
54
55 // actual_start/end may be null if you don't want this info
56 // If non-null, these return the actual affected GPA range
57 int v3_handle_passthrough_pagefault(struct guest_info * info, addr_t fault_addr, pf_error_t error_code,
58                                     addr_t *actual_start, addr_t *actual_end);
59
60 int v3_activate_passthrough_pt(struct guest_info * info);
61
62 int v3_invalidate_passthrough_addr(struct guest_info * info, addr_t inv_addr,
63                                    addr_t *actual_start, addr_t *actual_end);
64
65 // The range invalidated is minimally [start, end]
66 int v3_invalidate_passthrough_addr_range(struct guest_info * info, 
67                                          addr_t inv_addr_start, addr_t inv_addr_end,
68                                          addr_t *actual_start, addr_t *actual_end);
69
70 /**********************************
71    PASSTHROUGH PAGING - EVENTS
72  **********************************/
73
74 struct v3_passthrough_pg_event {
75     enum {PASSTHROUGH_PAGEFAULT,PASSTHROUGH_INVALIDATE_RANGE,PASSTHROUGH_ACTIVATE} event_type;
76     enum {PASSTHROUGH_PREIMPL, PASSTHROUGH_POSTIMPL} event_order;
77     addr_t     gpa;        // for pf 
78     pf_error_t error_code; // for pf
79     addr_t     gpa_start;  // for invalidation of range or page fault
80     addr_t     gpa_end;    // for invalidation of range or page fault (range is [start,end] )
81                            // PREIMPL: start/end is the requested range
82                            // POSTIMPL: start/end is the actual range invalidated
83 };
84
85
86
87 int v3_register_passthrough_paging_event_callback(struct v3_vm_info *vm,
88                                                   int (*callback)(struct guest_info *core, 
89                                                                   struct v3_passthrough_pg_event *,
90                                                                   void      *priv_data),
91                                                   void *priv_data);
92
93 int v3_unregister_passthrough_paging_event_callback(struct v3_vm_info *vm,
94                                                     int (*callback)(struct guest_info *core, 
95                                                                     struct v3_passthrough_pg_event *,
96                                                                     void      *priv_data),
97                                                     void *priv_data);
98
99
100
101 /*****************************
102    NESTED PAGING - CORE FUNC
103  *****************************/
104
105
106 struct v3_nested_impl_state {
107     // currently there is only a single implementation
108     // that internally includes SVM and VMX support
109     // The externally visible state is just the callbacks
110     v3_rw_lock_t     event_callback_lock;
111     struct list_head event_callback_list;
112 };
113
114 int v3_init_nested_paging(struct v3_vm_info *vm);
115 int v3_init_nested_paging_core(struct guest_info *core, void *hwinfo);
116 int v3_deinit_nested_paging(struct v3_vm_info *vm);
117 int v3_deinit_nested_paging_core(struct guest_info *core);
118
119
120 // actual_start/end may be null if you don't want this info
121 // If non-null, these return the actual affected GPA range
122 int v3_handle_nested_pagefault(struct guest_info * info, addr_t fault_addr, void *pfinfo,
123                                addr_t *actual_start, addr_t *actual_end);
124
125 int v3_invalidate_nested_addr(struct guest_info * info, addr_t inv_addr,
126                               addr_t *actual_start, addr_t *actual_end);
127
128 // The range invalidated is minimally [start, end]
129 int v3_invalidate_nested_addr_range(struct guest_info * info, 
130                                     addr_t inv_addr_start, addr_t inv_addr_end,
131                                     addr_t *actual_start, addr_t *actual_end);
132
133
134
135 /*****************************
136    NESTED PAGING - EVENTS
137  *****************************/
138
139 struct v3_nested_pg_event {
140     enum {NESTED_PAGEFAULT,NESTED_INVALIDATE_RANGE} event_type;
141     enum {NESTED_PREIMPL, NESTED_POSTIMPL} event_order;
142     addr_t     gpa;        // for pf 
143     pf_error_t error_code; // for pf
144     addr_t     gpa_start;  // for invalidation of range or page fault
145     addr_t     gpa_end;    // for invalidation of range or page fault (range is [start,end] )
146                            // PREIMPL: start/end is the requested range
147                            // POSTIMPL: start/end is the actual range invalidated
148 };
149
150
151
152 int v3_register_nested_paging_event_callback(struct v3_vm_info *vm,
153                                             int (*callback)(struct guest_info *core, 
154                                                             struct v3_nested_pg_event *,
155                                                             void      *priv_data),
156                                             void *priv_data);
157
158 int v3_unregister_nested_paging_event_callback(struct v3_vm_info *vm,
159                                               int (*callback)(struct guest_info *core, 
160                                                               struct v3_nested_pg_event *,
161                                                               void      *priv_data),
162                                               void *priv_data);
163
164
165 #endif // ! __V3VEE__
166
167 #endif