KVM: Remove gpa_to_hpa()
[deliverable/linux.git] / 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 #define KVM_MAX_VCPUS 4
24 #define KVM_ALIAS_SLOTS 4
25 #define KVM_MEMORY_SLOTS 8
26 /* memory slots that does not exposed to userspace */
27 #define KVM_PRIVATE_MEM_SLOTS 4
28 #define KVM_PERMILLE_MMU_PAGES 20
29 #define KVM_MIN_ALLOC_MMU_PAGES 64
30 #define KVM_NUM_MMU_PAGES 1024
31 #define KVM_MIN_FREE_MMU_PAGES 5
32 #define KVM_REFILL_PAGES 25
33 #define KVM_MAX_CPUID_ENTRIES 40
34
35 #define KVM_PIO_PAGE_OFFSET 1
36
37 /*
38 * vcpu->requests bit members
39 */
40 #define KVM_REQ_TLB_FLUSH 0
41
42 /*
43 * Address types:
44 *
45 * gva - guest virtual address
46 * gpa - guest physical address
47 * gfn - guest frame number
48 * hva - host virtual address
49 * hpa - host physical address
50 * hfn - host frame number
51 */
52
53 typedef unsigned long gva_t;
54 typedef u64 gpa_t;
55 typedef unsigned long gfn_t;
56
57 typedef unsigned long hva_t;
58 typedef u64 hpa_t;
59 typedef unsigned long hfn_t;
60
61 #define NR_PTE_CHAIN_ENTRIES 5
62
63 struct kvm_pte_chain {
64 u64 *parent_ptes[NR_PTE_CHAIN_ENTRIES];
65 struct hlist_node link;
66 };
67
68 /*
69 * kvm_mmu_page_role, below, is defined as:
70 *
71 * bits 0:3 - total guest paging levels (2-4, or zero for real mode)
72 * bits 4:7 - page table level for this shadow (1-4)
73 * bits 8:9 - page table quadrant for 2-level guests
74 * bit 16 - "metaphysical" - gfn is not a real page (huge page/real mode)
75 * bits 17:19 - "access" - the user, writable, and nx bits of a huge page pde
76 */
77 union kvm_mmu_page_role {
78 unsigned word;
79 struct {
80 unsigned glevels : 4;
81 unsigned level : 4;
82 unsigned quadrant : 2;
83 unsigned pad_for_nice_hex_output : 6;
84 unsigned metaphysical : 1;
85 unsigned hugepage_access : 3;
86 };
87 };
88
89 struct kvm_mmu_page {
90 struct list_head link;
91 struct hlist_node hash_link;
92
93 /*
94 * The following two entries are used to key the shadow page in the
95 * hash table.
96 */
97 gfn_t gfn;
98 union kvm_mmu_page_role role;
99
100 u64 *spt;
101 /* hold the gfn of each spte inside spt */
102 gfn_t *gfns;
103 unsigned long slot_bitmap; /* One bit set per slot which has memory
104 * in this shadow page.
105 */
106 int multimapped; /* More than one parent_pte? */
107 int root_count; /* Currently serving as active root */
108 union {
109 u64 *parent_pte; /* !multimapped */
110 struct hlist_head parent_ptes; /* multimapped, kvm_pte_chain */
111 };
112 };
113
114 struct kvm_vcpu;
115 extern struct kmem_cache *kvm_vcpu_cache;
116
117 /*
118 * x86 supports 3 paging modes (4-level 64-bit, 3-level 64-bit, and 2-level
119 * 32-bit). The kvm_mmu structure abstracts the details of the current mmu
120 * mode.
121 */
122 struct kvm_mmu {
123 void (*new_cr3)(struct kvm_vcpu *vcpu);
124 int (*page_fault)(struct kvm_vcpu *vcpu, gva_t gva, u32 err);
125 void (*free)(struct kvm_vcpu *vcpu);
126 gpa_t (*gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t gva);
127 void (*prefetch_page)(struct kvm_vcpu *vcpu,
128 struct kvm_mmu_page *page);
129 hpa_t root_hpa;
130 int root_level;
131 int shadow_root_level;
132
133 u64 *pae_root;
134 };
135
136 #define KVM_NR_MEM_OBJS 40
137
138 /*
139 * We don't want allocation failures within the mmu code, so we preallocate
140 * enough memory for a single page fault in a cache.
141 */
142 struct kvm_mmu_memory_cache {
143 int nobjs;
144 void *objects[KVM_NR_MEM_OBJS];
145 };
146
147 struct kvm_guest_debug {
148 int enabled;
149 unsigned long bp[4];
150 int singlestep;
151 };
152
153 struct kvm_pio_request {
154 unsigned long count;
155 int cur_count;
156 struct page *guest_pages[2];
157 unsigned guest_page_offset;
158 int in;
159 int port;
160 int size;
161 int string;
162 int down;
163 int rep;
164 };
165
166 struct kvm_vcpu_stat {
167 u32 pf_fixed;
168 u32 pf_guest;
169 u32 tlb_flush;
170 u32 invlpg;
171
172 u32 exits;
173 u32 io_exits;
174 u32 mmio_exits;
175 u32 signal_exits;
176 u32 irq_window_exits;
177 u32 halt_exits;
178 u32 halt_wakeup;
179 u32 request_irq_exits;
180 u32 irq_exits;
181 u32 host_state_reload;
182 u32 efer_reload;
183 u32 fpu_reload;
184 u32 insn_emulation;
185 u32 insn_emulation_fail;
186 };
187
188 struct kvm_io_device {
189 void (*read)(struct kvm_io_device *this,
190 gpa_t addr,
191 int len,
192 void *val);
193 void (*write)(struct kvm_io_device *this,
194 gpa_t addr,
195 int len,
196 const void *val);
197 int (*in_range)(struct kvm_io_device *this, gpa_t addr);
198 void (*destructor)(struct kvm_io_device *this);
199
200 void *private;
201 };
202
203 static inline void kvm_iodevice_read(struct kvm_io_device *dev,
204 gpa_t addr,
205 int len,
206 void *val)
207 {
208 dev->read(dev, addr, len, val);
209 }
210
211 static inline void kvm_iodevice_write(struct kvm_io_device *dev,
212 gpa_t addr,
213 int len,
214 const void *val)
215 {
216 dev->write(dev, addr, len, val);
217 }
218
219 static inline int kvm_iodevice_inrange(struct kvm_io_device *dev, gpa_t addr)
220 {
221 return dev->in_range(dev, addr);
222 }
223
224 static inline void kvm_iodevice_destructor(struct kvm_io_device *dev)
225 {
226 if (dev->destructor)
227 dev->destructor(dev);
228 }
229
230 /*
231 * It would be nice to use something smarter than a linear search, TBD...
232 * Thankfully we dont expect many devices to register (famous last words :),
233 * so until then it will suffice. At least its abstracted so we can change
234 * in one place.
235 */
236 struct kvm_io_bus {
237 int dev_count;
238 #define NR_IOBUS_DEVS 6
239 struct kvm_io_device *devs[NR_IOBUS_DEVS];
240 };
241
242 void kvm_io_bus_init(struct kvm_io_bus *bus);
243 void kvm_io_bus_destroy(struct kvm_io_bus *bus);
244 struct kvm_io_device *kvm_io_bus_find_dev(struct kvm_io_bus *bus, gpa_t addr);
245 void kvm_io_bus_register_dev(struct kvm_io_bus *bus,
246 struct kvm_io_device *dev);
247
248 #ifdef CONFIG_HAS_IOMEM
249 #define KVM_VCPU_MMIO \
250 int mmio_needed; \
251 int mmio_read_completed; \
252 int mmio_is_write; \
253 int mmio_size; \
254 unsigned char mmio_data[8]; \
255 gpa_t mmio_phys_addr;
256
257 #else
258 #define KVM_VCPU_MMIO
259
260 #endif
261
262 #define KVM_VCPU_COMM \
263 struct kvm *kvm; \
264 struct preempt_notifier preempt_notifier; \
265 int vcpu_id; \
266 struct mutex mutex; \
267 int cpu; \
268 struct kvm_run *run; \
269 int guest_mode; \
270 unsigned long requests; \
271 struct kvm_guest_debug guest_debug; \
272 int fpu_active; \
273 int guest_fpu_loaded; \
274 wait_queue_head_t wq; \
275 int sigset_active; \
276 sigset_t sigset; \
277 struct kvm_vcpu_stat stat; \
278 KVM_VCPU_MMIO
279
280 struct kvm_mem_alias {
281 gfn_t base_gfn;
282 unsigned long npages;
283 gfn_t target_gfn;
284 };
285
286 struct kvm_memory_slot {
287 gfn_t base_gfn;
288 unsigned long npages;
289 unsigned long flags;
290 unsigned long *rmap;
291 unsigned long *dirty_bitmap;
292 unsigned long userspace_addr;
293 int user_alloc;
294 };
295
296 struct kvm_vm_stat {
297 u32 mmu_shadow_zapped;
298 u32 mmu_pte_write;
299 u32 mmu_pte_updated;
300 u32 mmu_pde_zapped;
301 u32 mmu_flooded;
302 u32 mmu_recycled;
303 u32 remote_tlb_flush;
304 };
305
306 struct kvm {
307 struct mutex lock; /* protects everything except vcpus */
308 int naliases;
309 struct kvm_mem_alias aliases[KVM_ALIAS_SLOTS];
310 int nmemslots;
311 struct kvm_memory_slot memslots[KVM_MEMORY_SLOTS +
312 KVM_PRIVATE_MEM_SLOTS];
313 /*
314 * Hash table of struct kvm_mmu_page.
315 */
316 struct list_head active_mmu_pages;
317 unsigned int n_free_mmu_pages;
318 unsigned int n_requested_mmu_pages;
319 unsigned int n_alloc_mmu_pages;
320 struct hlist_head mmu_page_hash[KVM_NUM_MMU_PAGES];
321 struct kvm_vcpu *vcpus[KVM_MAX_VCPUS];
322 struct list_head vm_list;
323 struct file *filp;
324 struct kvm_io_bus mmio_bus;
325 struct kvm_io_bus pio_bus;
326 struct kvm_pic *vpic;
327 struct kvm_ioapic *vioapic;
328 int round_robin_prev_vcpu;
329 unsigned int tss_addr;
330 struct page *apic_access_page;
331 struct kvm_vm_stat stat;
332 };
333
334 static inline struct kvm_pic *pic_irqchip(struct kvm *kvm)
335 {
336 return kvm->vpic;
337 }
338
339 static inline struct kvm_ioapic *ioapic_irqchip(struct kvm *kvm)
340 {
341 return kvm->vioapic;
342 }
343
344 static inline int irqchip_in_kernel(struct kvm *kvm)
345 {
346 return pic_irqchip(kvm) != NULL;
347 }
348
349 struct descriptor_table {
350 u16 limit;
351 unsigned long base;
352 } __attribute__((packed));
353
354 /* The guest did something we don't support. */
355 #define pr_unimpl(vcpu, fmt, ...) \
356 do { \
357 if (printk_ratelimit()) \
358 printk(KERN_ERR "kvm: %i: cpu%i " fmt, \
359 current->tgid, (vcpu)->vcpu_id , ## __VA_ARGS__); \
360 } while (0)
361
362 #define kvm_printf(kvm, fmt ...) printk(KERN_DEBUG fmt)
363 #define vcpu_printf(vcpu, fmt...) kvm_printf(vcpu->kvm, fmt)
364
365 int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id);
366 void kvm_vcpu_uninit(struct kvm_vcpu *vcpu);
367
368 void vcpu_load(struct kvm_vcpu *vcpu);
369 void vcpu_put(struct kvm_vcpu *vcpu);
370
371 void decache_vcpus_on_cpu(int cpu);
372
373
374 int kvm_init(void *opaque, unsigned int vcpu_size,
375 struct module *module);
376 void kvm_exit(void);
377
378 #define HPA_MSB ((sizeof(hpa_t) * 8) - 1)
379 #define HPA_ERR_MASK ((hpa_t)1 << HPA_MSB)
380 static inline int is_error_hpa(hpa_t hpa) { return hpa >> HPA_MSB; }
381 struct page *gva_to_page(struct kvm_vcpu *vcpu, gva_t gva);
382
383 extern struct page *bad_page;
384
385 int is_error_page(struct page *page);
386 int kvm_is_error_hva(unsigned long addr);
387 int kvm_set_memory_region(struct kvm *kvm,
388 struct kvm_userspace_memory_region *mem,
389 int user_alloc);
390 int __kvm_set_memory_region(struct kvm *kvm,
391 struct kvm_userspace_memory_region *mem,
392 int user_alloc);
393 int kvm_arch_set_memory_region(struct kvm *kvm,
394 struct kvm_userspace_memory_region *mem,
395 struct kvm_memory_slot old,
396 int user_alloc);
397 gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn);
398 struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
399 void kvm_release_page_clean(struct page *page);
400 void kvm_release_page_dirty(struct page *page);
401 int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
402 int len);
403 int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len);
404 int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
405 int offset, int len);
406 int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
407 unsigned long len);
408 int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len);
409 int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len);
410 struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
411 int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn);
412 void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
413
414 void kvm_vcpu_block(struct kvm_vcpu *vcpu);
415 void kvm_resched(struct kvm_vcpu *vcpu);
416 void kvm_load_guest_fpu(struct kvm_vcpu *vcpu);
417 void kvm_put_guest_fpu(struct kvm_vcpu *vcpu);
418 void kvm_flush_remote_tlbs(struct kvm *kvm);
419
420 long kvm_arch_dev_ioctl(struct file *filp,
421 unsigned int ioctl, unsigned long arg);
422 long kvm_arch_vcpu_ioctl(struct file *filp,
423 unsigned int ioctl, unsigned long arg);
424 void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
425 void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
426
427 int kvm_dev_ioctl_check_extension(long ext);
428
429 int kvm_get_dirty_log(struct kvm *kvm,
430 struct kvm_dirty_log *log, int *is_dirty);
431 int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
432 struct kvm_dirty_log *log);
433
434 int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
435 struct
436 kvm_userspace_memory_region *mem,
437 int user_alloc);
438 long kvm_arch_vm_ioctl(struct file *filp,
439 unsigned int ioctl, unsigned long arg);
440 void kvm_arch_destroy_vm(struct kvm *kvm);
441
442 int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
443 int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
444
445 int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
446 struct kvm_translation *tr);
447
448 int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
449 int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
450 int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
451 struct kvm_sregs *sregs);
452 int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
453 struct kvm_sregs *sregs);
454 int kvm_arch_vcpu_ioctl_debug_guest(struct kvm_vcpu *vcpu,
455 struct kvm_debug_guest *dbg);
456 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run);
457
458 int kvm_arch_init(void *opaque);
459 void kvm_arch_exit(void);
460
461 int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu);
462 void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu);
463
464 void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu);
465 void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
466 void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
467 struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id);
468 int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu);
469 void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu);
470
471 int kvm_arch_vcpu_reset(struct kvm_vcpu *vcpu);
472 void kvm_arch_hardware_enable(void *garbage);
473 void kvm_arch_hardware_disable(void *garbage);
474 int kvm_arch_hardware_setup(void);
475 void kvm_arch_hardware_unsetup(void);
476 void kvm_arch_check_processor_compat(void *rtn);
477
478 void kvm_free_physmem(struct kvm *kvm);
479
480 struct kvm *kvm_arch_create_vm(void);
481 void kvm_arch_destroy_vm(struct kvm *kvm);
482
483 static inline void kvm_guest_enter(void)
484 {
485 account_system_vtime(current);
486 current->flags |= PF_VCPU;
487 }
488
489 static inline void kvm_guest_exit(void)
490 {
491 account_system_vtime(current);
492 current->flags &= ~PF_VCPU;
493 }
494
495 static inline int memslot_id(struct kvm *kvm, struct kvm_memory_slot *slot)
496 {
497 return slot - kvm->memslots;
498 }
499
500 static inline gpa_t gfn_to_gpa(gfn_t gfn)
501 {
502 return (gpa_t)gfn << PAGE_SHIFT;
503 }
504
505 enum kvm_stat_kind {
506 KVM_STAT_VM,
507 KVM_STAT_VCPU,
508 };
509
510 struct kvm_stats_debugfs_item {
511 const char *name;
512 int offset;
513 enum kvm_stat_kind kind;
514 struct dentry *dentry;
515 };
516 extern struct kvm_stats_debugfs_item debugfs_entries[];
517
518 #endif
This page took 0.041769 seconds and 6 git commands to generate.