1a7f838d30c6e50b2779494802054a72b5ec26a6
[platform/adaptation/renesas_rcar/renesas_kernel.git] / include / linux / kvm_host.h
1 #ifndef __KVM_HOST_H
2 #define __KVM_HOST_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/bug.h>
17 #include <linux/mm.h>
18 #include <linux/mmu_notifier.h>
19 #include <linux/preempt.h>
20 #include <linux/msi.h>
21 #include <linux/slab.h>
22 #include <linux/rcupdate.h>
23 #include <linux/ratelimit.h>
24 #include <asm/signal.h>
25
26 #include <linux/kvm.h>
27 #include <linux/kvm_para.h>
28
29 #include <linux/kvm_types.h>
30
31 #include <asm/kvm_host.h>
32
33 #ifndef KVM_MMIO_SIZE
34 #define KVM_MMIO_SIZE 8
35 #endif
36
37 /*
38  * If we support unaligned MMIO, at most one fragment will be split into two:
39  */
40 #ifdef KVM_UNALIGNED_MMIO
41 #  define KVM_EXTRA_MMIO_FRAGMENTS 1
42 #else
43 #  define KVM_EXTRA_MMIO_FRAGMENTS 0
44 #endif
45
46 #define KVM_USER_MMIO_SIZE 8
47
48 #define KVM_MAX_MMIO_FRAGMENTS \
49         (KVM_MMIO_SIZE / KVM_USER_MMIO_SIZE + KVM_EXTRA_MMIO_FRAGMENTS)
50
51 /*
52  * vcpu->requests bit members
53  */
54 #define KVM_REQ_TLB_FLUSH          0
55 #define KVM_REQ_MIGRATE_TIMER      1
56 #define KVM_REQ_REPORT_TPR_ACCESS  2
57 #define KVM_REQ_MMU_RELOAD         3
58 #define KVM_REQ_TRIPLE_FAULT       4
59 #define KVM_REQ_PENDING_TIMER      5
60 #define KVM_REQ_UNHALT             6
61 #define KVM_REQ_MMU_SYNC           7
62 #define KVM_REQ_CLOCK_UPDATE       8
63 #define KVM_REQ_KICK               9
64 #define KVM_REQ_DEACTIVATE_FPU    10
65 #define KVM_REQ_EVENT             11
66 #define KVM_REQ_APF_HALT          12
67 #define KVM_REQ_STEAL_UPDATE      13
68 #define KVM_REQ_NMI               14
69 #define KVM_REQ_IMMEDIATE_EXIT    15
70 #define KVM_REQ_PMU               16
71 #define KVM_REQ_PMI               17
72
73 #define KVM_USERSPACE_IRQ_SOURCE_ID     0
74
75 struct kvm;
76 struct kvm_vcpu;
77 extern struct kmem_cache *kvm_vcpu_cache;
78
79 struct kvm_io_range {
80         gpa_t addr;
81         int len;
82         struct kvm_io_device *dev;
83 };
84
85 #define NR_IOBUS_DEVS 1000
86
87 struct kvm_io_bus {
88         int                   dev_count;
89         struct kvm_io_range range[];
90 };
91
92 enum kvm_bus {
93         KVM_MMIO_BUS,
94         KVM_PIO_BUS,
95         KVM_NR_BUSES
96 };
97
98 int kvm_io_bus_write(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
99                      int len, const void *val);
100 int kvm_io_bus_read(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr, int len,
101                     void *val);
102 int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
103                             int len, struct kvm_io_device *dev);
104 int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
105                               struct kvm_io_device *dev);
106
107 #ifdef CONFIG_KVM_ASYNC_PF
108 struct kvm_async_pf {
109         struct work_struct work;
110         struct list_head link;
111         struct list_head queue;
112         struct kvm_vcpu *vcpu;
113         struct mm_struct *mm;
114         gva_t gva;
115         unsigned long addr;
116         struct kvm_arch_async_pf arch;
117         struct page *page;
118         bool done;
119 };
120
121 void kvm_clear_async_pf_completion_queue(struct kvm_vcpu *vcpu);
122 void kvm_check_async_pf_completion(struct kvm_vcpu *vcpu);
123 int kvm_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn,
124                        struct kvm_arch_async_pf *arch);
125 int kvm_async_pf_wakeup_all(struct kvm_vcpu *vcpu);
126 #endif
127
128 enum {
129         OUTSIDE_GUEST_MODE,
130         IN_GUEST_MODE,
131         EXITING_GUEST_MODE,
132         READING_SHADOW_PAGE_TABLES,
133 };
134
135 /*
136  * Sometimes a large or cross-page mmio needs to be broken up into separate
137  * exits for userspace servicing.
138  */
139 struct kvm_mmio_fragment {
140         gpa_t gpa;
141         void *data;
142         unsigned len;
143 };
144
145 struct kvm_vcpu {
146         struct kvm *kvm;
147 #ifdef CONFIG_PREEMPT_NOTIFIERS
148         struct preempt_notifier preempt_notifier;
149 #endif
150         int cpu;
151         int vcpu_id;
152         int srcu_idx;
153         int mode;
154         unsigned long requests;
155         unsigned long guest_debug;
156
157         struct mutex mutex;
158         struct kvm_run *run;
159
160         int fpu_active;
161         int guest_fpu_loaded, guest_xcr0_loaded;
162         wait_queue_head_t wq;
163         struct pid *pid;
164         int sigset_active;
165         sigset_t sigset;
166         struct kvm_vcpu_stat stat;
167
168 #ifdef CONFIG_HAS_IOMEM
169         int mmio_needed;
170         int mmio_read_completed;
171         int mmio_is_write;
172         int mmio_cur_fragment;
173         int mmio_nr_fragments;
174         struct kvm_mmio_fragment mmio_fragments[KVM_MAX_MMIO_FRAGMENTS];
175 #endif
176
177 #ifdef CONFIG_KVM_ASYNC_PF
178         struct {
179                 u32 queued;
180                 struct list_head queue;
181                 struct list_head done;
182                 spinlock_t lock;
183         } async_pf;
184 #endif
185
186         struct kvm_vcpu_arch arch;
187 };
188
189 static inline int kvm_vcpu_exiting_guest_mode(struct kvm_vcpu *vcpu)
190 {
191         return cmpxchg(&vcpu->mode, IN_GUEST_MODE, EXITING_GUEST_MODE);
192 }
193
194 /*
195  * Some of the bitops functions do not support too long bitmaps.
196  * This number must be determined not to exceed such limits.
197  */
198 #define KVM_MEM_MAX_NR_PAGES ((1UL << 31) - 1)
199
200 struct kvm_memory_slot {
201         gfn_t base_gfn;
202         unsigned long npages;
203         unsigned long flags;
204         unsigned long *rmap;
205         unsigned long *dirty_bitmap;
206         struct kvm_arch_memory_slot arch;
207         unsigned long userspace_addr;
208         int user_alloc;
209         int id;
210 };
211
212 static inline unsigned long kvm_dirty_bitmap_bytes(struct kvm_memory_slot *memslot)
213 {
214         return ALIGN(memslot->npages, BITS_PER_LONG) / 8;
215 }
216
217 struct kvm_kernel_irq_routing_entry {
218         u32 gsi;
219         u32 type;
220         int (*set)(struct kvm_kernel_irq_routing_entry *e,
221                    struct kvm *kvm, int irq_source_id, int level);
222         union {
223                 struct {
224                         unsigned irqchip;
225                         unsigned pin;
226                 } irqchip;
227                 struct msi_msg msi;
228         };
229         struct hlist_node link;
230 };
231
232 #ifdef __KVM_HAVE_IOAPIC
233
234 struct kvm_irq_routing_table {
235         int chip[KVM_NR_IRQCHIPS][KVM_IOAPIC_NUM_PINS];
236         struct kvm_kernel_irq_routing_entry *rt_entries;
237         u32 nr_rt_entries;
238         /*
239          * Array indexed by gsi. Each entry contains list of irq chips
240          * the gsi is connected to.
241          */
242         struct hlist_head map[0];
243 };
244
245 #else
246
247 struct kvm_irq_routing_table {};
248
249 #endif
250
251 #ifndef KVM_MEM_SLOTS_NUM
252 #define KVM_MEM_SLOTS_NUM (KVM_MEMORY_SLOTS + KVM_PRIVATE_MEM_SLOTS)
253 #endif
254
255 /*
256  * Note:
257  * memslots are not sorted by id anymore, please use id_to_memslot()
258  * to get the memslot by its id.
259  */
260 struct kvm_memslots {
261         u64 generation;
262         struct kvm_memory_slot memslots[KVM_MEM_SLOTS_NUM];
263         /* The mapping table from slot id to the index in memslots[]. */
264         int id_to_index[KVM_MEM_SLOTS_NUM];
265 };
266
267 struct kvm {
268         spinlock_t mmu_lock;
269         struct mutex slots_lock;
270         struct mm_struct *mm; /* userspace tied to this vm */
271         struct kvm_memslots *memslots;
272         struct srcu_struct srcu;
273 #ifdef CONFIG_KVM_APIC_ARCHITECTURE
274         u32 bsp_vcpu_id;
275 #endif
276         struct kvm_vcpu *vcpus[KVM_MAX_VCPUS];
277         atomic_t online_vcpus;
278         int last_boosted_vcpu;
279         struct list_head vm_list;
280         struct mutex lock;
281         struct kvm_io_bus *buses[KVM_NR_BUSES];
282 #ifdef CONFIG_HAVE_KVM_EVENTFD
283         struct {
284                 spinlock_t        lock;
285                 struct list_head  items;
286         } irqfds;
287         struct list_head ioeventfds;
288 #endif
289         struct kvm_vm_stat stat;
290         struct kvm_arch arch;
291         atomic_t users_count;
292 #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
293         struct kvm_coalesced_mmio_ring *coalesced_mmio_ring;
294         spinlock_t ring_lock;
295         struct list_head coalesced_zones;
296 #endif
297
298         struct mutex irq_lock;
299 #ifdef CONFIG_HAVE_KVM_IRQCHIP
300         /*
301          * Update side is protected by irq_lock and,
302          * if configured, irqfds.lock.
303          */
304         struct kvm_irq_routing_table __rcu *irq_routing;
305         struct hlist_head mask_notifier_list;
306         struct hlist_head irq_ack_notifier_list;
307 #endif
308
309 #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
310         struct mmu_notifier mmu_notifier;
311         unsigned long mmu_notifier_seq;
312         long mmu_notifier_count;
313 #endif
314         long tlbs_dirty;
315 };
316
317 #define kvm_err(fmt, ...) \
318         pr_err("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
319 #define kvm_info(fmt, ...) \
320         pr_info("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
321 #define kvm_debug(fmt, ...) \
322         pr_debug("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
323 #define kvm_pr_unimpl(fmt, ...) \
324         pr_err_ratelimited("kvm [%i]: " fmt, \
325                            task_tgid_nr(current), ## __VA_ARGS__)
326
327 /* The guest did something we don't support. */
328 #define vcpu_unimpl(vcpu, fmt, ...)                                     \
329         kvm_pr_unimpl("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
330
331 static inline struct kvm_vcpu *kvm_get_vcpu(struct kvm *kvm, int i)
332 {
333         smp_rmb();
334         return kvm->vcpus[i];
335 }
336
337 #define kvm_for_each_vcpu(idx, vcpup, kvm) \
338         for (idx = 0; \
339              idx < atomic_read(&kvm->online_vcpus) && \
340              (vcpup = kvm_get_vcpu(kvm, idx)) != NULL; \
341              idx++)
342
343 #define kvm_for_each_memslot(memslot, slots)    \
344         for (memslot = &slots->memslots[0];     \
345               memslot < slots->memslots + KVM_MEM_SLOTS_NUM && memslot->npages;\
346                 memslot++)
347
348 int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id);
349 void kvm_vcpu_uninit(struct kvm_vcpu *vcpu);
350
351 void vcpu_load(struct kvm_vcpu *vcpu);
352 void vcpu_put(struct kvm_vcpu *vcpu);
353
354 int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
355                   struct module *module);
356 void kvm_exit(void);
357
358 void kvm_get_kvm(struct kvm *kvm);
359 void kvm_put_kvm(struct kvm *kvm);
360 void update_memslots(struct kvm_memslots *slots, struct kvm_memory_slot *new);
361
362 static inline struct kvm_memslots *kvm_memslots(struct kvm *kvm)
363 {
364         return rcu_dereference_check(kvm->memslots,
365                         srcu_read_lock_held(&kvm->srcu)
366                         || lockdep_is_held(&kvm->slots_lock));
367 }
368
369 static inline struct kvm_memory_slot *
370 id_to_memslot(struct kvm_memslots *slots, int id)
371 {
372         int index = slots->id_to_index[id];
373         struct kvm_memory_slot *slot;
374
375         slot = &slots->memslots[index];
376
377         WARN_ON(slot->id != id);
378         return slot;
379 }
380
381 #define HPA_MSB ((sizeof(hpa_t) * 8) - 1)
382 #define HPA_ERR_MASK ((hpa_t)1 << HPA_MSB)
383 static inline int is_error_hpa(hpa_t hpa) { return hpa >> HPA_MSB; }
384
385 extern struct page *bad_page;
386 extern pfn_t bad_pfn;
387
388 int is_error_page(struct page *page);
389 int is_error_pfn(pfn_t pfn);
390 int is_hwpoison_pfn(pfn_t pfn);
391 int is_noslot_pfn(pfn_t pfn);
392 int is_invalid_pfn(pfn_t pfn);
393 int kvm_is_error_hva(unsigned long addr);
394 int kvm_set_memory_region(struct kvm *kvm,
395                           struct kvm_userspace_memory_region *mem,
396                           int user_alloc);
397 int __kvm_set_memory_region(struct kvm *kvm,
398                             struct kvm_userspace_memory_region *mem,
399                             int user_alloc);
400 void kvm_arch_free_memslot(struct kvm_memory_slot *free,
401                            struct kvm_memory_slot *dont);
402 int kvm_arch_create_memslot(struct kvm_memory_slot *slot, unsigned long npages);
403 int kvm_arch_prepare_memory_region(struct kvm *kvm,
404                                 struct kvm_memory_slot *memslot,
405                                 struct kvm_memory_slot old,
406                                 struct kvm_userspace_memory_region *mem,
407                                 int user_alloc);
408 void kvm_arch_commit_memory_region(struct kvm *kvm,
409                                 struct kvm_userspace_memory_region *mem,
410                                 struct kvm_memory_slot old,
411                                 int user_alloc);
412 bool kvm_largepages_enabled(void);
413 void kvm_disable_largepages(void);
414 void kvm_arch_flush_shadow(struct kvm *kvm);
415
416 int gfn_to_page_many_atomic(struct kvm *kvm, gfn_t gfn, struct page **pages,
417                             int nr_pages);
418
419 struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
420 unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn);
421 void kvm_release_page_clean(struct page *page);
422 void kvm_release_page_dirty(struct page *page);
423 void kvm_set_page_dirty(struct page *page);
424 void kvm_set_page_accessed(struct page *page);
425
426 pfn_t hva_to_pfn_atomic(struct kvm *kvm, unsigned long addr);
427 pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn);
428 pfn_t gfn_to_pfn_async(struct kvm *kvm, gfn_t gfn, bool *async,
429                        bool write_fault, bool *writable);
430 pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn);
431 pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
432                       bool *writable);
433 pfn_t gfn_to_pfn_memslot(struct kvm *kvm,
434                          struct kvm_memory_slot *slot, gfn_t gfn);
435 void kvm_release_pfn_dirty(pfn_t);
436 void kvm_release_pfn_clean(pfn_t pfn);
437 void kvm_set_pfn_dirty(pfn_t pfn);
438 void kvm_set_pfn_accessed(pfn_t pfn);
439 void kvm_get_pfn(pfn_t pfn);
440 pfn_t get_fault_pfn(void);
441
442 int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
443                         int len);
444 int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
445                           unsigned long len);
446 int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len);
447 int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
448                            void *data, unsigned long len);
449 int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
450                          int offset, int len);
451 int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
452                     unsigned long len);
453 int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
454                            void *data, unsigned long len);
455 int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
456                               gpa_t gpa);
457 int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len);
458 int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len);
459 struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
460 int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn);
461 unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn);
462 void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
463 void mark_page_dirty_in_slot(struct kvm *kvm, struct kvm_memory_slot *memslot,
464                              gfn_t gfn);
465
466 void kvm_vcpu_block(struct kvm_vcpu *vcpu);
467 void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
468 bool kvm_vcpu_yield_to(struct kvm_vcpu *target);
469 void kvm_vcpu_on_spin(struct kvm_vcpu *vcpu);
470 void kvm_resched(struct kvm_vcpu *vcpu);
471 void kvm_load_guest_fpu(struct kvm_vcpu *vcpu);
472 void kvm_put_guest_fpu(struct kvm_vcpu *vcpu);
473
474 void kvm_flush_remote_tlbs(struct kvm *kvm);
475 void kvm_reload_remote_mmus(struct kvm *kvm);
476
477 long kvm_arch_dev_ioctl(struct file *filp,
478                         unsigned int ioctl, unsigned long arg);
479 long kvm_arch_vcpu_ioctl(struct file *filp,
480                          unsigned int ioctl, unsigned long arg);
481 int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf);
482
483 int kvm_dev_ioctl_check_extension(long ext);
484
485 int kvm_get_dirty_log(struct kvm *kvm,
486                         struct kvm_dirty_log *log, int *is_dirty);
487 int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
488                                 struct kvm_dirty_log *log);
489
490 int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
491                                    struct
492                                    kvm_userspace_memory_region *mem,
493                                    int user_alloc);
494 long kvm_arch_vm_ioctl(struct file *filp,
495                        unsigned int ioctl, unsigned long arg);
496
497 int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
498 int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
499
500 int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
501                                     struct kvm_translation *tr);
502
503 int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
504 int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
505 int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
506                                   struct kvm_sregs *sregs);
507 int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
508                                   struct kvm_sregs *sregs);
509 int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
510                                     struct kvm_mp_state *mp_state);
511 int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
512                                     struct kvm_mp_state *mp_state);
513 int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
514                                         struct kvm_guest_debug *dbg);
515 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run);
516
517 int kvm_arch_init(void *opaque);
518 void kvm_arch_exit(void);
519
520 int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu);
521 void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu);
522
523 void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu);
524 void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
525 void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
526 struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id);
527 int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu);
528 void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu);
529
530 int kvm_arch_vcpu_reset(struct kvm_vcpu *vcpu);
531 int kvm_arch_hardware_enable(void *garbage);
532 void kvm_arch_hardware_disable(void *garbage);
533 int kvm_arch_hardware_setup(void);
534 void kvm_arch_hardware_unsetup(void);
535 void kvm_arch_check_processor_compat(void *rtn);
536 int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu);
537 int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu);
538
539 void kvm_free_physmem(struct kvm *kvm);
540
541 void *kvm_kvzalloc(unsigned long size);
542 void kvm_kvfree(const void *addr);
543
544 #ifndef __KVM_HAVE_ARCH_VM_ALLOC
545 static inline struct kvm *kvm_arch_alloc_vm(void)
546 {
547         return kzalloc(sizeof(struct kvm), GFP_KERNEL);
548 }
549
550 static inline void kvm_arch_free_vm(struct kvm *kvm)
551 {
552         kfree(kvm);
553 }
554 #endif
555
556 static inline wait_queue_head_t *kvm_arch_vcpu_wq(struct kvm_vcpu *vcpu)
557 {
558 #ifdef __KVM_HAVE_ARCH_WQP
559         return vcpu->arch.wqp;
560 #else
561         return &vcpu->wq;
562 #endif
563 }
564
565 int kvm_arch_init_vm(struct kvm *kvm, unsigned long type);
566 void kvm_arch_destroy_vm(struct kvm *kvm);
567 void kvm_free_all_assigned_devices(struct kvm *kvm);
568 void kvm_arch_sync_events(struct kvm *kvm);
569
570 int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu);
571 void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
572
573 int kvm_is_mmio_pfn(pfn_t pfn);
574
575 struct kvm_irq_ack_notifier {
576         struct hlist_node link;
577         unsigned gsi;
578         void (*irq_acked)(struct kvm_irq_ack_notifier *kian);
579 };
580
581 struct kvm_assigned_dev_kernel {
582         struct kvm_irq_ack_notifier ack_notifier;
583         struct list_head list;
584         int assigned_dev_id;
585         int host_segnr;
586         int host_busnr;
587         int host_devfn;
588         unsigned int entries_nr;
589         int host_irq;
590         bool host_irq_disabled;
591         bool pci_2_3;
592         struct msix_entry *host_msix_entries;
593         int guest_irq;
594         struct msix_entry *guest_msix_entries;
595         unsigned long irq_requested_type;
596         int irq_source_id;
597         int flags;
598         struct pci_dev *dev;
599         struct kvm *kvm;
600         spinlock_t intx_lock;
601         spinlock_t intx_mask_lock;
602         char irq_name[32];
603         struct pci_saved_state *pci_saved_state;
604 };
605
606 struct kvm_irq_mask_notifier {
607         void (*func)(struct kvm_irq_mask_notifier *kimn, bool masked);
608         int irq;
609         struct hlist_node link;
610 };
611
612 void kvm_register_irq_mask_notifier(struct kvm *kvm, int irq,
613                                     struct kvm_irq_mask_notifier *kimn);
614 void kvm_unregister_irq_mask_notifier(struct kvm *kvm, int irq,
615                                       struct kvm_irq_mask_notifier *kimn);
616 void kvm_fire_mask_notifiers(struct kvm *kvm, unsigned irqchip, unsigned pin,
617                              bool mask);
618
619 #ifdef __KVM_HAVE_IOAPIC
620 void kvm_get_intr_delivery_bitmask(struct kvm_ioapic *ioapic,
621                                    union kvm_ioapic_redirect_entry *entry,
622                                    unsigned long *deliver_bitmask);
623 #endif
624 int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level);
625 int kvm_set_msi(struct kvm_kernel_irq_routing_entry *irq_entry, struct kvm *kvm,
626                 int irq_source_id, int level);
627 void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin);
628 void kvm_register_irq_ack_notifier(struct kvm *kvm,
629                                    struct kvm_irq_ack_notifier *kian);
630 void kvm_unregister_irq_ack_notifier(struct kvm *kvm,
631                                    struct kvm_irq_ack_notifier *kian);
632 int kvm_request_irq_source_id(struct kvm *kvm);
633 void kvm_free_irq_source_id(struct kvm *kvm, int irq_source_id);
634
635 /* For vcpu->arch.iommu_flags */
636 #define KVM_IOMMU_CACHE_COHERENCY       0x1
637
638 #ifdef CONFIG_IOMMU_API
639 int kvm_iommu_map_pages(struct kvm *kvm, struct kvm_memory_slot *slot);
640 void kvm_iommu_unmap_pages(struct kvm *kvm, struct kvm_memory_slot *slot);
641 int kvm_iommu_map_guest(struct kvm *kvm);
642 int kvm_iommu_unmap_guest(struct kvm *kvm);
643 int kvm_assign_device(struct kvm *kvm,
644                       struct kvm_assigned_dev_kernel *assigned_dev);
645 int kvm_deassign_device(struct kvm *kvm,
646                         struct kvm_assigned_dev_kernel *assigned_dev);
647 #else /* CONFIG_IOMMU_API */
648 static inline int kvm_iommu_map_pages(struct kvm *kvm,
649                                       struct kvm_memory_slot *slot)
650 {
651         return 0;
652 }
653
654 static inline void kvm_iommu_unmap_pages(struct kvm *kvm,
655                                          struct kvm_memory_slot *slot)
656 {
657 }
658
659 static inline int kvm_iommu_map_guest(struct kvm *kvm)
660 {
661         return -ENODEV;
662 }
663
664 static inline int kvm_iommu_unmap_guest(struct kvm *kvm)
665 {
666         return 0;
667 }
668
669 static inline int kvm_assign_device(struct kvm *kvm,
670                 struct kvm_assigned_dev_kernel *assigned_dev)
671 {
672         return 0;
673 }
674
675 static inline int kvm_deassign_device(struct kvm *kvm,
676                 struct kvm_assigned_dev_kernel *assigned_dev)
677 {
678         return 0;
679 }
680 #endif /* CONFIG_IOMMU_API */
681
682 static inline void kvm_guest_enter(void)
683 {
684         BUG_ON(preemptible());
685         account_system_vtime(current);
686         current->flags |= PF_VCPU;
687         /* KVM does not hold any references to rcu protected data when it
688          * switches CPU into a guest mode. In fact switching to a guest mode
689          * is very similar to exiting to userspase from rcu point of view. In
690          * addition CPU may stay in a guest mode for quite a long time (up to
691          * one time slice). Lets treat guest mode as quiescent state, just like
692          * we do with user-mode execution.
693          */
694         rcu_virt_note_context_switch(smp_processor_id());
695 }
696
697 static inline void kvm_guest_exit(void)
698 {
699         account_system_vtime(current);
700         current->flags &= ~PF_VCPU;
701 }
702
703 /*
704  * search_memslots() and __gfn_to_memslot() are here because they are
705  * used in non-modular code in arch/powerpc/kvm/book3s_hv_rm_mmu.c.
706  * gfn_to_memslot() itself isn't here as an inline because that would
707  * bloat other code too much.
708  */
709 static inline struct kvm_memory_slot *
710 search_memslots(struct kvm_memslots *slots, gfn_t gfn)
711 {
712         struct kvm_memory_slot *memslot;
713
714         kvm_for_each_memslot(memslot, slots)
715                 if (gfn >= memslot->base_gfn &&
716                       gfn < memslot->base_gfn + memslot->npages)
717                         return memslot;
718
719         return NULL;
720 }
721
722 static inline struct kvm_memory_slot *
723 __gfn_to_memslot(struct kvm_memslots *slots, gfn_t gfn)
724 {
725         return search_memslots(slots, gfn);
726 }
727
728 static inline int memslot_id(struct kvm *kvm, gfn_t gfn)
729 {
730         return gfn_to_memslot(kvm, gfn)->id;
731 }
732
733 static inline gfn_t gfn_to_index(gfn_t gfn, gfn_t base_gfn, int level)
734 {
735         /* KVM_HPAGE_GFN_SHIFT(PT_PAGE_TABLE_LEVEL) must be 0. */
736         return (gfn >> KVM_HPAGE_GFN_SHIFT(level)) -
737                 (base_gfn >> KVM_HPAGE_GFN_SHIFT(level));
738 }
739
740 static inline gfn_t
741 hva_to_gfn_memslot(unsigned long hva, struct kvm_memory_slot *slot)
742 {
743         gfn_t gfn_offset = (hva - slot->userspace_addr) >> PAGE_SHIFT;
744
745         return slot->base_gfn + gfn_offset;
746 }
747
748 static inline unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot,
749                                                gfn_t gfn)
750 {
751         return slot->userspace_addr + (gfn - slot->base_gfn) * PAGE_SIZE;
752 }
753
754 static inline gpa_t gfn_to_gpa(gfn_t gfn)
755 {
756         return (gpa_t)gfn << PAGE_SHIFT;
757 }
758
759 static inline gfn_t gpa_to_gfn(gpa_t gpa)
760 {
761         return (gfn_t)(gpa >> PAGE_SHIFT);
762 }
763
764 static inline hpa_t pfn_to_hpa(pfn_t pfn)
765 {
766         return (hpa_t)pfn << PAGE_SHIFT;
767 }
768
769 static inline void kvm_migrate_timers(struct kvm_vcpu *vcpu)
770 {
771         set_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests);
772 }
773
774 enum kvm_stat_kind {
775         KVM_STAT_VM,
776         KVM_STAT_VCPU,
777 };
778
779 struct kvm_stats_debugfs_item {
780         const char *name;
781         int offset;
782         enum kvm_stat_kind kind;
783         struct dentry *dentry;
784 };
785 extern struct kvm_stats_debugfs_item debugfs_entries[];
786 extern struct dentry *kvm_debugfs_dir;
787
788 #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
789 static inline int mmu_notifier_retry(struct kvm_vcpu *vcpu, unsigned long mmu_seq)
790 {
791         if (unlikely(vcpu->kvm->mmu_notifier_count))
792                 return 1;
793         /*
794          * Ensure the read of mmu_notifier_count happens before the read
795          * of mmu_notifier_seq.  This interacts with the smp_wmb() in
796          * mmu_notifier_invalidate_range_end to make sure that the caller
797          * either sees the old (non-zero) value of mmu_notifier_count or
798          * the new (incremented) value of mmu_notifier_seq.
799          * PowerPC Book3s HV KVM calls this under a per-page lock
800          * rather than under kvm->mmu_lock, for scalability, so
801          * can't rely on kvm->mmu_lock to keep things ordered.
802          */
803         smp_rmb();
804         if (vcpu->kvm->mmu_notifier_seq != mmu_seq)
805                 return 1;
806         return 0;
807 }
808 #endif
809
810 #ifdef KVM_CAP_IRQ_ROUTING
811
812 #define KVM_MAX_IRQ_ROUTES 1024
813
814 int kvm_setup_default_irq_routing(struct kvm *kvm);
815 int kvm_set_irq_routing(struct kvm *kvm,
816                         const struct kvm_irq_routing_entry *entries,
817                         unsigned nr,
818                         unsigned flags);
819 void kvm_free_irq_routing(struct kvm *kvm);
820
821 int kvm_send_userspace_msi(struct kvm *kvm, struct kvm_msi *msi);
822
823 #else
824
825 static inline void kvm_free_irq_routing(struct kvm *kvm) {}
826
827 #endif
828
829 #ifdef CONFIG_HAVE_KVM_EVENTFD
830
831 void kvm_eventfd_init(struct kvm *kvm);
832 int kvm_irqfd(struct kvm *kvm, int fd, int gsi, int flags);
833 void kvm_irqfd_release(struct kvm *kvm);
834 void kvm_irq_routing_update(struct kvm *, struct kvm_irq_routing_table *);
835 int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args);
836
837 #else
838
839 static inline void kvm_eventfd_init(struct kvm *kvm) {}
840
841 static inline int kvm_irqfd(struct kvm *kvm, int fd, int gsi, int flags)
842 {
843         return -EINVAL;
844 }
845
846 static inline void kvm_irqfd_release(struct kvm *kvm) {}
847
848 #ifdef CONFIG_HAVE_KVM_IRQCHIP
849 static inline void kvm_irq_routing_update(struct kvm *kvm,
850                                           struct kvm_irq_routing_table *irq_rt)
851 {
852         rcu_assign_pointer(kvm->irq_routing, irq_rt);
853 }
854 #endif
855
856 static inline int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args)
857 {
858         return -ENOSYS;
859 }
860
861 #endif /* CONFIG_HAVE_KVM_EVENTFD */
862
863 #ifdef CONFIG_KVM_APIC_ARCHITECTURE
864 static inline bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
865 {
866         return vcpu->kvm->bsp_vcpu_id == vcpu->vcpu_id;
867 }
868
869 bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu);
870
871 #else
872
873 static inline bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu) { return true; }
874
875 #endif
876
877 #ifdef __KVM_HAVE_DEVICE_ASSIGNMENT
878
879 long kvm_vm_ioctl_assigned_device(struct kvm *kvm, unsigned ioctl,
880                                   unsigned long arg);
881
882 #else
883
884 static inline long kvm_vm_ioctl_assigned_device(struct kvm *kvm, unsigned ioctl,
885                                                 unsigned long arg)
886 {
887         return -ENOTTY;
888 }
889
890 #endif
891
892 static inline void kvm_make_request(int req, struct kvm_vcpu *vcpu)
893 {
894         set_bit(req, &vcpu->requests);
895 }
896
897 static inline bool kvm_check_request(int req, struct kvm_vcpu *vcpu)
898 {
899         if (test_bit(req, &vcpu->requests)) {
900                 clear_bit(req, &vcpu->requests);
901                 return true;
902         } else {
903                 return false;
904         }
905 }
906
907 #endif
908