]> err.no Git - linux-2.6/blob - drivers/kvm/kvm.h
ab9657a6f0ce8c4ad17c16b04e027918394c3622
[linux-2.6] / drivers / kvm / kvm.h
1 #ifndef __KVM_H
2 #define __KVM_H
3
4 /*
5  * This work is licensed under the terms of the GNU GPL, version 2.  See
6  * the COPYING file in the top-level directory.
7  */
8
9 #include <linux/types.h>
10 #include <linux/hardirq.h>
11 #include <linux/list.h>
12 #include <linux/mutex.h>
13 #include <linux/spinlock.h>
14 #include <linux/signal.h>
15 #include <linux/sched.h>
16 #include <linux/mm.h>
17 #include <linux/preempt.h>
18 #include <asm/signal.h>
19
20 #include <linux/kvm.h>
21 #include <linux/kvm_para.h>
22
23 #include "types.h"
24
25 #include "x86.h"
26
27 #define KVM_MAX_VCPUS 4
28 #define KVM_MEMORY_SLOTS 8
29 /* memory slots that does not exposed to userspace */
30 #define KVM_PRIVATE_MEM_SLOTS 4
31
32 #define KVM_PIO_PAGE_OFFSET 1
33
34 /*
35  * vcpu->requests bit members
36  */
37 #define KVM_REQ_TLB_FLUSH          0
38
39
40 struct kvm_vcpu;
41 extern struct kmem_cache *kvm_vcpu_cache;
42
43 struct kvm_guest_debug {
44         int enabled;
45         unsigned long bp[4];
46         int singlestep;
47 };
48
49 /*
50  * It would be nice to use something smarter than a linear search, TBD...
51  * Thankfully we dont expect many devices to register (famous last words :),
52  * so until then it will suffice.  At least its abstracted so we can change
53  * in one place.
54  */
55 struct kvm_io_bus {
56         int                   dev_count;
57 #define NR_IOBUS_DEVS 6
58         struct kvm_io_device *devs[NR_IOBUS_DEVS];
59 };
60
61 void kvm_io_bus_init(struct kvm_io_bus *bus);
62 void kvm_io_bus_destroy(struct kvm_io_bus *bus);
63 struct kvm_io_device *kvm_io_bus_find_dev(struct kvm_io_bus *bus, gpa_t addr);
64 void kvm_io_bus_register_dev(struct kvm_io_bus *bus,
65                              struct kvm_io_device *dev);
66
67 struct kvm_vcpu {
68         struct kvm *kvm;
69         struct preempt_notifier preempt_notifier;
70         int vcpu_id;
71         struct mutex mutex;
72         int   cpu;
73         struct kvm_run *run;
74         int guest_mode;
75         unsigned long requests;
76         struct kvm_guest_debug guest_debug;
77         int fpu_active;
78         int guest_fpu_loaded;
79         wait_queue_head_t wq;
80         int sigset_active;
81         sigset_t sigset;
82         struct kvm_vcpu_stat stat;
83
84 #ifdef CONFIG_HAS_IOMEM
85         int mmio_needed;
86         int mmio_read_completed;
87         int mmio_is_write;
88         int mmio_size;
89         unsigned char mmio_data[8];
90         gpa_t mmio_phys_addr;
91 #endif
92
93         struct kvm_vcpu_arch arch;
94 };
95
96 struct kvm_memory_slot {
97         gfn_t base_gfn;
98         unsigned long npages;
99         unsigned long flags;
100         unsigned long *rmap;
101         unsigned long *dirty_bitmap;
102         unsigned long userspace_addr;
103         int user_alloc;
104 };
105
106 struct kvm_vm_stat {
107         u32 mmu_shadow_zapped;
108         u32 mmu_pte_write;
109         u32 mmu_pte_updated;
110         u32 mmu_pde_zapped;
111         u32 mmu_flooded;
112         u32 mmu_recycled;
113         u32 remote_tlb_flush;
114 };
115
116 struct kvm {
117         struct mutex lock; /* protects everything except vcpus */
118         struct mm_struct *mm; /* userspace tied to this vm */
119         int nmemslots;
120         struct kvm_memory_slot memslots[KVM_MEMORY_SLOTS +
121                                         KVM_PRIVATE_MEM_SLOTS];
122         struct kvm_vcpu *vcpus[KVM_MAX_VCPUS];
123         struct list_head vm_list;
124         struct file *filp;
125         struct kvm_io_bus mmio_bus;
126         struct kvm_io_bus pio_bus;
127         struct kvm_vm_stat stat;
128         struct kvm_arch arch;
129 };
130
131 /* The guest did something we don't support. */
132 #define pr_unimpl(vcpu, fmt, ...)                                       \
133  do {                                                                   \
134         if (printk_ratelimit())                                         \
135                 printk(KERN_ERR "kvm: %i: cpu%i " fmt,                  \
136                        current->tgid, (vcpu)->vcpu_id , ## __VA_ARGS__); \
137  } while (0)
138
139 #define kvm_printf(kvm, fmt ...) printk(KERN_DEBUG fmt)
140 #define vcpu_printf(vcpu, fmt...) kvm_printf(vcpu->kvm, fmt)
141
142 int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id);
143 void kvm_vcpu_uninit(struct kvm_vcpu *vcpu);
144
145 void vcpu_load(struct kvm_vcpu *vcpu);
146 void vcpu_put(struct kvm_vcpu *vcpu);
147
148 void decache_vcpus_on_cpu(int cpu);
149
150
151 int kvm_init(void *opaque, unsigned int vcpu_size,
152                   struct module *module);
153 void kvm_exit(void);
154
155 #define HPA_MSB ((sizeof(hpa_t) * 8) - 1)
156 #define HPA_ERR_MASK ((hpa_t)1 << HPA_MSB)
157 static inline int is_error_hpa(hpa_t hpa) { return hpa >> HPA_MSB; }
158 struct page *gva_to_page(struct kvm_vcpu *vcpu, gva_t gva);
159
160 extern struct page *bad_page;
161
162 int is_error_page(struct page *page);
163 int kvm_is_error_hva(unsigned long addr);
164 int kvm_set_memory_region(struct kvm *kvm,
165                           struct kvm_userspace_memory_region *mem,
166                           int user_alloc);
167 int __kvm_set_memory_region(struct kvm *kvm,
168                             struct kvm_userspace_memory_region *mem,
169                             int user_alloc);
170 int kvm_arch_set_memory_region(struct kvm *kvm,
171                                 struct kvm_userspace_memory_region *mem,
172                                 struct kvm_memory_slot old,
173                                 int user_alloc);
174 gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn);
175 struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
176 void kvm_release_page_clean(struct page *page);
177 void kvm_release_page_dirty(struct page *page);
178 int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
179                         int len);
180 int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len);
181 int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
182                          int offset, int len);
183 int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
184                     unsigned long len);
185 int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len);
186 int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len);
187 struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
188 int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn);
189 void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
190
191 void kvm_vcpu_block(struct kvm_vcpu *vcpu);
192 void kvm_resched(struct kvm_vcpu *vcpu);
193 void kvm_load_guest_fpu(struct kvm_vcpu *vcpu);
194 void kvm_put_guest_fpu(struct kvm_vcpu *vcpu);
195 void kvm_flush_remote_tlbs(struct kvm *kvm);
196
197 long kvm_arch_dev_ioctl(struct file *filp,
198                         unsigned int ioctl, unsigned long arg);
199 long kvm_arch_vcpu_ioctl(struct file *filp,
200                          unsigned int ioctl, unsigned long arg);
201 void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
202 void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
203
204 int kvm_dev_ioctl_check_extension(long ext);
205
206 int kvm_get_dirty_log(struct kvm *kvm,
207                         struct kvm_dirty_log *log, int *is_dirty);
208 int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
209                                 struct kvm_dirty_log *log);
210
211 int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
212                                    struct
213                                    kvm_userspace_memory_region *mem,
214                                    int user_alloc);
215 long kvm_arch_vm_ioctl(struct file *filp,
216                        unsigned int ioctl, unsigned long arg);
217 void kvm_arch_destroy_vm(struct kvm *kvm);
218
219 int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
220 int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
221
222 int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
223                                     struct kvm_translation *tr);
224
225 int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
226 int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
227 int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
228                                   struct kvm_sregs *sregs);
229 int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
230                                   struct kvm_sregs *sregs);
231 int kvm_arch_vcpu_ioctl_debug_guest(struct kvm_vcpu *vcpu,
232                                     struct kvm_debug_guest *dbg);
233 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run);
234
235 int kvm_arch_init(void *opaque);
236 void kvm_arch_exit(void);
237
238 int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu);
239 void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu);
240
241 void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu);
242 void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
243 void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
244 struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id);
245 int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu);
246 void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu);
247
248 int kvm_arch_vcpu_reset(struct kvm_vcpu *vcpu);
249 void kvm_arch_hardware_enable(void *garbage);
250 void kvm_arch_hardware_disable(void *garbage);
251 int kvm_arch_hardware_setup(void);
252 void kvm_arch_hardware_unsetup(void);
253 void kvm_arch_check_processor_compat(void *rtn);
254 int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu);
255
256 void kvm_free_physmem(struct kvm *kvm);
257
258 struct  kvm *kvm_arch_create_vm(void);
259 void kvm_arch_destroy_vm(struct kvm *kvm);
260
261 int kvm_cpu_get_interrupt(struct kvm_vcpu *v);
262 int kvm_cpu_has_interrupt(struct kvm_vcpu *v);
263
264 static inline void kvm_guest_enter(void)
265 {
266         account_system_vtime(current);
267         current->flags |= PF_VCPU;
268 }
269
270 static inline void kvm_guest_exit(void)
271 {
272         account_system_vtime(current);
273         current->flags &= ~PF_VCPU;
274 }
275
276 static inline int memslot_id(struct kvm *kvm, struct kvm_memory_slot *slot)
277 {
278         return slot - kvm->memslots;
279 }
280
281 static inline gpa_t gfn_to_gpa(gfn_t gfn)
282 {
283         return (gpa_t)gfn << PAGE_SHIFT;
284 }
285
286 enum kvm_stat_kind {
287         KVM_STAT_VM,
288         KVM_STAT_VCPU,
289 };
290
291 struct kvm_stats_debugfs_item {
292         const char *name;
293         int offset;
294         enum kvm_stat_kind kind;
295         struct dentry *dentry;
296 };
297 extern struct kvm_stats_debugfs_item debugfs_entries[];
298
299 #endif