kvm: destroy emulated devices on VM exit
[linux-2.6-microblaze.git] / include / linux / kvm_host.h
1 #ifndef __KVM_HOST_H
2 #define __KVM_HOST_H
3
4 #if IS_ENABLED(CONFIG_KVM)
5
6 /*
7  * This work is licensed under the terms of the GNU GPL, version 2.  See
8  * the COPYING file in the top-level directory.
9  */
10
11 #include <linux/types.h>
12 #include <linux/hardirq.h>
13 #include <linux/list.h>
14 #include <linux/mutex.h>
15 #include <linux/spinlock.h>
16 #include <linux/signal.h>
17 #include <linux/sched.h>
18 #include <linux/bug.h>
19 #include <linux/mm.h>
20 #include <linux/mmu_notifier.h>
21 #include <linux/preempt.h>
22 #include <linux/msi.h>
23 #include <linux/slab.h>
24 #include <linux/rcupdate.h>
25 #include <linux/ratelimit.h>
26 #include <linux/err.h>
27 #include <linux/irqflags.h>
28 #include <asm/signal.h>
29
30 #include <linux/kvm.h>
31 #include <linux/kvm_para.h>
32
33 #include <linux/kvm_types.h>
34
35 #include <asm/kvm_host.h>
36
37 #ifndef KVM_MMIO_SIZE
38 #define KVM_MMIO_SIZE 8
39 #endif
40
41 /*
42  * The bit 16 ~ bit 31 of kvm_memory_region::flags are internally used
43  * in kvm, other bits are visible for userspace which are defined in
44  * include/linux/kvm_h.
45  */
46 #define KVM_MEMSLOT_INVALID     (1UL << 16)
47
48 /* Two fragments for cross MMIO pages. */
49 #define KVM_MAX_MMIO_FRAGMENTS  2
50
51 /*
52  * For the normal pfn, the highest 12 bits should be zero,
53  * so we can mask bit 62 ~ bit 52  to indicate the error pfn,
54  * mask bit 63 to indicate the noslot pfn.
55  */
56 #define KVM_PFN_ERR_MASK        (0x7ffULL << 52)
57 #define KVM_PFN_ERR_NOSLOT_MASK (0xfffULL << 52)
58 #define KVM_PFN_NOSLOT          (0x1ULL << 63)
59
60 #define KVM_PFN_ERR_FAULT       (KVM_PFN_ERR_MASK)
61 #define KVM_PFN_ERR_HWPOISON    (KVM_PFN_ERR_MASK + 1)
62 #define KVM_PFN_ERR_RO_FAULT    (KVM_PFN_ERR_MASK + 2)
63
64 /*
65  * error pfns indicate that the gfn is in slot but faild to
66  * translate it to pfn on host.
67  */
68 static inline bool is_error_pfn(pfn_t pfn)
69 {
70         return !!(pfn & KVM_PFN_ERR_MASK);
71 }
72
73 /*
74  * error_noslot pfns indicate that the gfn can not be
75  * translated to pfn - it is not in slot or failed to
76  * translate it to pfn.
77  */
78 static inline bool is_error_noslot_pfn(pfn_t pfn)
79 {
80         return !!(pfn & KVM_PFN_ERR_NOSLOT_MASK);
81 }
82
83 /* noslot pfn indicates that the gfn is not in slot. */
84 static inline bool is_noslot_pfn(pfn_t pfn)
85 {
86         return pfn == KVM_PFN_NOSLOT;
87 }
88
89 #define KVM_HVA_ERR_BAD         (PAGE_OFFSET)
90 #define KVM_HVA_ERR_RO_BAD      (PAGE_OFFSET + PAGE_SIZE)
91
92 static inline bool kvm_is_error_hva(unsigned long addr)
93 {
94         return addr >= PAGE_OFFSET;
95 }
96
97 #define KVM_ERR_PTR_BAD_PAGE    (ERR_PTR(-ENOENT))
98
99 static inline bool is_error_page(struct page *page)
100 {
101         return IS_ERR(page);
102 }
103
104 /*
105  * vcpu->requests bit members
106  */
107 #define KVM_REQ_TLB_FLUSH          0
108 #define KVM_REQ_MIGRATE_TIMER      1
109 #define KVM_REQ_REPORT_TPR_ACCESS  2
110 #define KVM_REQ_MMU_RELOAD         3
111 #define KVM_REQ_TRIPLE_FAULT       4
112 #define KVM_REQ_PENDING_TIMER      5
113 #define KVM_REQ_UNHALT             6
114 #define KVM_REQ_MMU_SYNC           7
115 #define KVM_REQ_CLOCK_UPDATE       8
116 #define KVM_REQ_KICK               9
117 #define KVM_REQ_DEACTIVATE_FPU    10
118 #define KVM_REQ_EVENT             11
119 #define KVM_REQ_APF_HALT          12
120 #define KVM_REQ_STEAL_UPDATE      13
121 #define KVM_REQ_NMI               14
122 #define KVM_REQ_IMMEDIATE_EXIT    15
123 #define KVM_REQ_PMU               16
124 #define KVM_REQ_PMI               17
125 #define KVM_REQ_WATCHDOG          18
126 #define KVM_REQ_MASTERCLOCK_UPDATE 19
127 #define KVM_REQ_MCLOCK_INPROGRESS 20
128 #define KVM_REQ_EPR_EXIT          21
129 #define KVM_REQ_SCAN_IOAPIC       22
130
131 #define KVM_USERSPACE_IRQ_SOURCE_ID             0
132 #define KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID        1
133
134 struct kvm;
135 struct kvm_vcpu;
136 extern struct kmem_cache *kvm_vcpu_cache;
137
138 extern raw_spinlock_t kvm_lock;
139 extern struct list_head vm_list;
140
141 struct kvm_io_range {
142         gpa_t addr;
143         int len;
144         struct kvm_io_device *dev;
145 };
146
147 #define NR_IOBUS_DEVS 1000
148
149 struct kvm_io_bus {
150         int                   dev_count;
151         struct kvm_io_range range[];
152 };
153
154 enum kvm_bus {
155         KVM_MMIO_BUS,
156         KVM_PIO_BUS,
157         KVM_VIRTIO_CCW_NOTIFY_BUS,
158         KVM_NR_BUSES
159 };
160
161 int kvm_io_bus_write(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
162                      int len, const void *val);
163 int kvm_io_bus_read(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr, int len,
164                     void *val);
165 int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
166                             int len, struct kvm_io_device *dev);
167 int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
168                               struct kvm_io_device *dev);
169
170 #ifdef CONFIG_KVM_ASYNC_PF
171 struct kvm_async_pf {
172         struct work_struct work;
173         struct list_head link;
174         struct list_head queue;
175         struct kvm_vcpu *vcpu;
176         struct mm_struct *mm;
177         gva_t gva;
178         unsigned long addr;
179         struct kvm_arch_async_pf arch;
180         struct page *page;
181         bool done;
182 };
183
184 void kvm_clear_async_pf_completion_queue(struct kvm_vcpu *vcpu);
185 void kvm_check_async_pf_completion(struct kvm_vcpu *vcpu);
186 int kvm_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn,
187                        struct kvm_arch_async_pf *arch);
188 int kvm_async_pf_wakeup_all(struct kvm_vcpu *vcpu);
189 #endif
190
191 enum {
192         OUTSIDE_GUEST_MODE,
193         IN_GUEST_MODE,
194         EXITING_GUEST_MODE,
195         READING_SHADOW_PAGE_TABLES,
196 };
197
198 /*
199  * Sometimes a large or cross-page mmio needs to be broken up into separate
200  * exits for userspace servicing.
201  */
202 struct kvm_mmio_fragment {
203         gpa_t gpa;
204         void *data;
205         unsigned len;
206 };
207
208 struct kvm_vcpu {
209         struct kvm *kvm;
210 #ifdef CONFIG_PREEMPT_NOTIFIERS
211         struct preempt_notifier preempt_notifier;
212 #endif
213         int cpu;
214         int vcpu_id;
215         int srcu_idx;
216         int mode;
217         unsigned long requests;
218         unsigned long guest_debug;
219
220         struct mutex mutex;
221         struct kvm_run *run;
222
223         int fpu_active;
224         int guest_fpu_loaded, guest_xcr0_loaded;
225         wait_queue_head_t wq;
226         struct pid *pid;
227         int sigset_active;
228         sigset_t sigset;
229         struct kvm_vcpu_stat stat;
230
231 #ifdef CONFIG_HAS_IOMEM
232         int mmio_needed;
233         int mmio_read_completed;
234         int mmio_is_write;
235         int mmio_cur_fragment;
236         int mmio_nr_fragments;
237         struct kvm_mmio_fragment mmio_fragments[KVM_MAX_MMIO_FRAGMENTS];
238 #endif
239
240 #ifdef CONFIG_KVM_ASYNC_PF
241         struct {
242                 u32 queued;
243                 struct list_head queue;
244                 struct list_head done;
245                 spinlock_t lock;
246         } async_pf;
247 #endif
248
249 #ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
250         /*
251          * Cpu relax intercept or pause loop exit optimization
252          * in_spin_loop: set when a vcpu does a pause loop exit
253          *  or cpu relax intercepted.
254          * dy_eligible: indicates whether vcpu is eligible for directed yield.
255          */
256         struct {
257                 bool in_spin_loop;
258                 bool dy_eligible;
259         } spin_loop;
260 #endif
261         bool preempted;
262         struct kvm_vcpu_arch arch;
263 };
264
265 static inline int kvm_vcpu_exiting_guest_mode(struct kvm_vcpu *vcpu)
266 {
267         return cmpxchg(&vcpu->mode, IN_GUEST_MODE, EXITING_GUEST_MODE);
268 }
269
270 /*
271  * Some of the bitops functions do not support too long bitmaps.
272  * This number must be determined not to exceed such limits.
273  */
274 #define KVM_MEM_MAX_NR_PAGES ((1UL << 31) - 1)
275
276 struct kvm_memory_slot {
277         gfn_t base_gfn;
278         unsigned long npages;
279         unsigned long *dirty_bitmap;
280         struct kvm_arch_memory_slot arch;
281         unsigned long userspace_addr;
282         u32 flags;
283         short id;
284 };
285
286 static inline unsigned long kvm_dirty_bitmap_bytes(struct kvm_memory_slot *memslot)
287 {
288         return ALIGN(memslot->npages, BITS_PER_LONG) / 8;
289 }
290
291 struct kvm_kernel_irq_routing_entry {
292         u32 gsi;
293         u32 type;
294         int (*set)(struct kvm_kernel_irq_routing_entry *e,
295                    struct kvm *kvm, int irq_source_id, int level,
296                    bool line_status);
297         union {
298                 struct {
299                         unsigned irqchip;
300                         unsigned pin;
301                 } irqchip;
302                 struct msi_msg msi;
303         };
304         struct hlist_node link;
305 };
306
307 #ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
308
309 struct kvm_irq_routing_table {
310         int chip[KVM_NR_IRQCHIPS][KVM_IRQCHIP_NUM_PINS];
311         struct kvm_kernel_irq_routing_entry *rt_entries;
312         u32 nr_rt_entries;
313         /*
314          * Array indexed by gsi. Each entry contains list of irq chips
315          * the gsi is connected to.
316          */
317         struct hlist_head map[0];
318 };
319
320 #else
321
322 struct kvm_irq_routing_table {};
323
324 #endif
325
326 #ifndef KVM_PRIVATE_MEM_SLOTS
327 #define KVM_PRIVATE_MEM_SLOTS 0
328 #endif
329
330 #ifndef KVM_MEM_SLOTS_NUM
331 #define KVM_MEM_SLOTS_NUM (KVM_USER_MEM_SLOTS + KVM_PRIVATE_MEM_SLOTS)
332 #endif
333
334 /*
335  * Note:
336  * memslots are not sorted by id anymore, please use id_to_memslot()
337  * to get the memslot by its id.
338  */
339 struct kvm_memslots {
340         u64 generation;
341         struct kvm_memory_slot memslots[KVM_MEM_SLOTS_NUM];
342         /* The mapping table from slot id to the index in memslots[]. */
343         short id_to_index[KVM_MEM_SLOTS_NUM];
344 };
345
346 struct kvm {
347         spinlock_t mmu_lock;
348         struct mutex slots_lock;
349         struct mm_struct *mm; /* userspace tied to this vm */
350         struct kvm_memslots *memslots;
351         struct srcu_struct srcu;
352 #ifdef CONFIG_KVM_APIC_ARCHITECTURE
353         u32 bsp_vcpu_id;
354 #endif
355         struct kvm_vcpu *vcpus[KVM_MAX_VCPUS];
356         atomic_t online_vcpus;
357         int last_boosted_vcpu;
358         struct list_head vm_list;
359         struct mutex lock;
360         struct kvm_io_bus *buses[KVM_NR_BUSES];
361 #ifdef CONFIG_HAVE_KVM_EVENTFD
362         struct {
363                 spinlock_t        lock;
364                 struct list_head  items;
365                 struct list_head  resampler_list;
366                 struct mutex      resampler_lock;
367         } irqfds;
368         struct list_head ioeventfds;
369 #endif
370         struct kvm_vm_stat stat;
371         struct kvm_arch arch;
372         atomic_t users_count;
373 #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
374         struct kvm_coalesced_mmio_ring *coalesced_mmio_ring;
375         spinlock_t ring_lock;
376         struct list_head coalesced_zones;
377 #endif
378
379         struct mutex irq_lock;
380 #ifdef CONFIG_HAVE_KVM_IRQCHIP
381         /*
382          * Update side is protected by irq_lock and,
383          * if configured, irqfds.lock.
384          */
385         struct kvm_irq_routing_table __rcu *irq_routing;
386         struct hlist_head mask_notifier_list;
387         struct hlist_head irq_ack_notifier_list;
388 #endif
389
390 #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
391         struct mmu_notifier mmu_notifier;
392         unsigned long mmu_notifier_seq;
393         long mmu_notifier_count;
394 #endif
395         long tlbs_dirty;
396         struct list_head devices;
397 };
398
399 #define kvm_err(fmt, ...) \
400         pr_err("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
401 #define kvm_info(fmt, ...) \
402         pr_info("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
403 #define kvm_debug(fmt, ...) \
404         pr_debug("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
405 #define kvm_pr_unimpl(fmt, ...) \
406         pr_err_ratelimited("kvm [%i]: " fmt, \
407                            task_tgid_nr(current), ## __VA_ARGS__)
408
409 /* The guest did something we don't support. */
410 #define vcpu_unimpl(vcpu, fmt, ...)                                     \
411         kvm_pr_unimpl("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
412
413 static inline struct kvm_vcpu *kvm_get_vcpu(struct kvm *kvm, int i)
414 {
415         smp_rmb();
416         return kvm->vcpus[i];
417 }
418
419 #define kvm_for_each_vcpu(idx, vcpup, kvm) \
420         for (idx = 0; \
421              idx < atomic_read(&kvm->online_vcpus) && \
422              (vcpup = kvm_get_vcpu(kvm, idx)) != NULL; \
423              idx++)
424
425 #define kvm_for_each_memslot(memslot, slots)    \
426         for (memslot = &slots->memslots[0];     \
427               memslot < slots->memslots + KVM_MEM_SLOTS_NUM && memslot->npages;\
428                 memslot++)
429
430 int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id);
431 void kvm_vcpu_uninit(struct kvm_vcpu *vcpu);
432
433 int __must_check vcpu_load(struct kvm_vcpu *vcpu);
434 void vcpu_put(struct kvm_vcpu *vcpu);
435
436 #ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
437 int kvm_irqfd_init(void);
438 void kvm_irqfd_exit(void);
439 #else
440 static inline int kvm_irqfd_init(void)
441 {
442         return 0;
443 }
444
445 static inline void kvm_irqfd_exit(void)
446 {
447 }
448 #endif
449 int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
450                   struct module *module);
451 void kvm_exit(void);
452
453 void kvm_get_kvm(struct kvm *kvm);
454 void kvm_put_kvm(struct kvm *kvm);
455 void update_memslots(struct kvm_memslots *slots, struct kvm_memory_slot *new,
456                      u64 last_generation);
457
458 static inline struct kvm_memslots *kvm_memslots(struct kvm *kvm)
459 {
460         return rcu_dereference_check(kvm->memslots,
461                         srcu_read_lock_held(&kvm->srcu)
462                         || lockdep_is_held(&kvm->slots_lock));
463 }
464
465 static inline struct kvm_memory_slot *
466 id_to_memslot(struct kvm_memslots *slots, int id)
467 {
468         int index = slots->id_to_index[id];
469         struct kvm_memory_slot *slot;
470
471         slot = &slots->memslots[index];
472
473         WARN_ON(slot->id != id);
474         return slot;
475 }
476
477 /*
478  * KVM_SET_USER_MEMORY_REGION ioctl allows the following operations:
479  * - create a new memory slot
480  * - delete an existing memory slot
481  * - modify an existing memory slot
482  *   -- move it in the guest physical memory space
483  *   -- just change its flags
484  *
485  * Since flags can be changed by some of these operations, the following
486  * differentiation is the best we can do for __kvm_set_memory_region():
487  */
488 enum kvm_mr_change {
489         KVM_MR_CREATE,
490         KVM_MR_DELETE,
491         KVM_MR_MOVE,
492         KVM_MR_FLAGS_ONLY,
493 };
494
495 int kvm_set_memory_region(struct kvm *kvm,
496                           struct kvm_userspace_memory_region *mem);
497 int __kvm_set_memory_region(struct kvm *kvm,
498                             struct kvm_userspace_memory_region *mem);
499 void kvm_arch_free_memslot(struct kvm_memory_slot *free,
500                            struct kvm_memory_slot *dont);
501 int kvm_arch_create_memslot(struct kvm_memory_slot *slot, unsigned long npages);
502 int kvm_arch_prepare_memory_region(struct kvm *kvm,
503                                 struct kvm_memory_slot *memslot,
504                                 struct kvm_userspace_memory_region *mem,
505                                 enum kvm_mr_change change);
506 void kvm_arch_commit_memory_region(struct kvm *kvm,
507                                 struct kvm_userspace_memory_region *mem,
508                                 const struct kvm_memory_slot *old,
509                                 enum kvm_mr_change change);
510 bool kvm_largepages_enabled(void);
511 void kvm_disable_largepages(void);
512 /* flush all memory translations */
513 void kvm_arch_flush_shadow_all(struct kvm *kvm);
514 /* flush memory translations pointing to 'slot' */
515 void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
516                                    struct kvm_memory_slot *slot);
517
518 int gfn_to_page_many_atomic(struct kvm *kvm, gfn_t gfn, struct page **pages,
519                             int nr_pages);
520
521 struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
522 unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn);
523 unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
524 void kvm_release_page_clean(struct page *page);
525 void kvm_release_page_dirty(struct page *page);
526 void kvm_set_page_dirty(struct page *page);
527 void kvm_set_page_accessed(struct page *page);
528
529 pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn);
530 pfn_t gfn_to_pfn_async(struct kvm *kvm, gfn_t gfn, bool *async,
531                        bool write_fault, bool *writable);
532 pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn);
533 pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
534                       bool *writable);
535 pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
536 pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn);
537
538 void kvm_release_pfn_dirty(pfn_t pfn);
539 void kvm_release_pfn_clean(pfn_t pfn);
540 void kvm_set_pfn_dirty(pfn_t pfn);
541 void kvm_set_pfn_accessed(pfn_t pfn);
542 void kvm_get_pfn(pfn_t pfn);
543
544 int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
545                         int len);
546 int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
547                           unsigned long len);
548 int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len);
549 int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
550                            void *data, unsigned long len);
551 int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
552                          int offset, int len);
553 int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
554                     unsigned long len);
555 int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
556                            void *data, unsigned long len);
557 int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
558                               gpa_t gpa);
559 int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len);
560 int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len);
561 struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
562 int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn);
563 unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn);
564 void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
565 void mark_page_dirty_in_slot(struct kvm *kvm, struct kvm_memory_slot *memslot,
566                              gfn_t gfn);
567
568 void kvm_vcpu_block(struct kvm_vcpu *vcpu);
569 void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
570 bool kvm_vcpu_yield_to(struct kvm_vcpu *target);
571 void kvm_vcpu_on_spin(struct kvm_vcpu *vcpu);
572 void kvm_resched(struct kvm_vcpu *vcpu);
573 void kvm_load_guest_fpu(struct kvm_vcpu *vcpu);
574 void kvm_put_guest_fpu(struct kvm_vcpu *vcpu);
575
576 void kvm_flush_remote_tlbs(struct kvm *kvm);
577 void kvm_reload_remote_mmus(struct kvm *kvm);
578 void kvm_make_mclock_inprogress_request(struct kvm *kvm);
579 void kvm_make_scan_ioapic_request(struct kvm *kvm);
580
581 long kvm_arch_dev_ioctl(struct file *filp,
582                         unsigned int ioctl, unsigned long arg);
583 long kvm_arch_vcpu_ioctl(struct file *filp,
584                          unsigned int ioctl, unsigned long arg);
585 int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf);
586
587 int kvm_dev_ioctl_check_extension(long ext);
588
589 int kvm_get_dirty_log(struct kvm *kvm,
590                         struct kvm_dirty_log *log, int *is_dirty);
591 int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
592                                 struct kvm_dirty_log *log);
593
594 int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
595                                    struct kvm_userspace_memory_region *mem);
596 int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level,
597                         bool line_status);
598 long kvm_arch_vm_ioctl(struct file *filp,
599                        unsigned int ioctl, unsigned long arg);
600
601 int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
602 int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
603
604 int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
605                                     struct kvm_translation *tr);
606
607 int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
608 int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
609 int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
610                                   struct kvm_sregs *sregs);
611 int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
612                                   struct kvm_sregs *sregs);
613 int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
614                                     struct kvm_mp_state *mp_state);
615 int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
616                                     struct kvm_mp_state *mp_state);
617 int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
618                                         struct kvm_guest_debug *dbg);
619 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run);
620
621 int kvm_arch_init(void *opaque);
622 void kvm_arch_exit(void);
623
624 int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu);
625 void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu);
626
627 void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu);
628 void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
629 void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
630 struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id);
631 int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu);
632 int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu);
633 void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu);
634
635 int kvm_arch_hardware_enable(void *garbage);
636 void kvm_arch_hardware_disable(void *garbage);
637 int kvm_arch_hardware_setup(void);
638 void kvm_arch_hardware_unsetup(void);
639 void kvm_arch_check_processor_compat(void *rtn);
640 int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu);
641 int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu);
642
643 void kvm_free_physmem(struct kvm *kvm);
644
645 void *kvm_kvzalloc(unsigned long size);
646 void kvm_kvfree(const void *addr);
647
648 #ifndef __KVM_HAVE_ARCH_VM_ALLOC
649 static inline struct kvm *kvm_arch_alloc_vm(void)
650 {
651         return kzalloc(sizeof(struct kvm), GFP_KERNEL);
652 }
653
654 static inline void kvm_arch_free_vm(struct kvm *kvm)
655 {
656         kfree(kvm);
657 }
658 #endif
659
660 static inline wait_queue_head_t *kvm_arch_vcpu_wq(struct kvm_vcpu *vcpu)
661 {
662 #ifdef __KVM_HAVE_ARCH_WQP
663         return vcpu->arch.wqp;
664 #else
665         return &vcpu->wq;
666 #endif
667 }
668
669 int kvm_arch_init_vm(struct kvm *kvm, unsigned long type);
670 void kvm_arch_destroy_vm(struct kvm *kvm);
671 void kvm_free_all_assigned_devices(struct kvm *kvm);
672 void kvm_arch_sync_events(struct kvm *kvm);
673
674 int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu);
675 void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
676
677 bool kvm_is_mmio_pfn(pfn_t pfn);
678
679 struct kvm_irq_ack_notifier {
680         struct hlist_node link;
681         unsigned gsi;
682         void (*irq_acked)(struct kvm_irq_ack_notifier *kian);
683 };
684
685 struct kvm_assigned_dev_kernel {
686         struct kvm_irq_ack_notifier ack_notifier;
687         struct list_head list;
688         int assigned_dev_id;
689         int host_segnr;
690         int host_busnr;
691         int host_devfn;
692         unsigned int entries_nr;
693         int host_irq;
694         bool host_irq_disabled;
695         bool pci_2_3;
696         struct msix_entry *host_msix_entries;
697         int guest_irq;
698         struct msix_entry *guest_msix_entries;
699         unsigned long irq_requested_type;
700         int irq_source_id;
701         int flags;
702         struct pci_dev *dev;
703         struct kvm *kvm;
704         spinlock_t intx_lock;
705         spinlock_t intx_mask_lock;
706         char irq_name[32];
707         struct pci_saved_state *pci_saved_state;
708 };
709
710 struct kvm_irq_mask_notifier {
711         void (*func)(struct kvm_irq_mask_notifier *kimn, bool masked);
712         int irq;
713         struct hlist_node link;
714 };
715
716 void kvm_register_irq_mask_notifier(struct kvm *kvm, int irq,
717                                     struct kvm_irq_mask_notifier *kimn);
718 void kvm_unregister_irq_mask_notifier(struct kvm *kvm, int irq,
719                                       struct kvm_irq_mask_notifier *kimn);
720 void kvm_fire_mask_notifiers(struct kvm *kvm, unsigned irqchip, unsigned pin,
721                              bool mask);
722
723 int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level,
724                 bool line_status);
725 int kvm_set_irq_inatomic(struct kvm *kvm, int irq_source_id, u32 irq, int level);
726 int kvm_set_msi(struct kvm_kernel_irq_routing_entry *irq_entry, struct kvm *kvm,
727                 int irq_source_id, int level, bool line_status);
728 bool kvm_irq_has_notifier(struct kvm *kvm, unsigned irqchip, unsigned pin);
729 void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin);
730 void kvm_register_irq_ack_notifier(struct kvm *kvm,
731                                    struct kvm_irq_ack_notifier *kian);
732 void kvm_unregister_irq_ack_notifier(struct kvm *kvm,
733                                    struct kvm_irq_ack_notifier *kian);
734 int kvm_request_irq_source_id(struct kvm *kvm);
735 void kvm_free_irq_source_id(struct kvm *kvm, int irq_source_id);
736
737 /* For vcpu->arch.iommu_flags */
738 #define KVM_IOMMU_CACHE_COHERENCY       0x1
739
740 #ifdef CONFIG_IOMMU_API
741 int kvm_iommu_map_pages(struct kvm *kvm, struct kvm_memory_slot *slot);
742 void kvm_iommu_unmap_pages(struct kvm *kvm, struct kvm_memory_slot *slot);
743 int kvm_iommu_map_guest(struct kvm *kvm);
744 int kvm_iommu_unmap_guest(struct kvm *kvm);
745 int kvm_assign_device(struct kvm *kvm,
746                       struct kvm_assigned_dev_kernel *assigned_dev);
747 int kvm_deassign_device(struct kvm *kvm,
748                         struct kvm_assigned_dev_kernel *assigned_dev);
749 #else /* CONFIG_IOMMU_API */
750 static inline int kvm_iommu_map_pages(struct kvm *kvm,
751                                       struct kvm_memory_slot *slot)
752 {
753         return 0;
754 }
755
756 static inline void kvm_iommu_unmap_pages(struct kvm *kvm,
757                                          struct kvm_memory_slot *slot)
758 {
759 }
760
761 static inline int kvm_iommu_map_guest(struct kvm *kvm)
762 {
763         return -ENODEV;
764 }
765
766 static inline int kvm_iommu_unmap_guest(struct kvm *kvm)
767 {
768         return 0;
769 }
770
771 static inline int kvm_assign_device(struct kvm *kvm,
772                 struct kvm_assigned_dev_kernel *assigned_dev)
773 {
774         return 0;
775 }
776
777 static inline int kvm_deassign_device(struct kvm *kvm,
778                 struct kvm_assigned_dev_kernel *assigned_dev)
779 {
780         return 0;
781 }
782 #endif /* CONFIG_IOMMU_API */
783
784 static inline void __guest_enter(void)
785 {
786         /*
787          * This is running in ioctl context so we can avoid
788          * the call to vtime_account() with its unnecessary idle check.
789          */
790         vtime_account_system(current);
791         current->flags |= PF_VCPU;
792 }
793
794 static inline void __guest_exit(void)
795 {
796         /*
797          * This is running in ioctl context so we can avoid
798          * the call to vtime_account() with its unnecessary idle check.
799          */
800         vtime_account_system(current);
801         current->flags &= ~PF_VCPU;
802 }
803
804 #ifdef CONFIG_CONTEXT_TRACKING
805 extern void guest_enter(void);
806 extern void guest_exit(void);
807
808 #else /* !CONFIG_CONTEXT_TRACKING */
809 static inline void guest_enter(void)
810 {
811         __guest_enter();
812 }
813
814 static inline void guest_exit(void)
815 {
816         __guest_exit();
817 }
818 #endif /* !CONFIG_CONTEXT_TRACKING */
819
820 static inline void kvm_guest_enter(void)
821 {
822         unsigned long flags;
823
824         BUG_ON(preemptible());
825
826         local_irq_save(flags);
827         guest_enter();
828         local_irq_restore(flags);
829
830         /* KVM does not hold any references to rcu protected data when it
831          * switches CPU into a guest mode. In fact switching to a guest mode
832          * is very similar to exiting to userspase from rcu point of view. In
833          * addition CPU may stay in a guest mode for quite a long time (up to
834          * one time slice). Lets treat guest mode as quiescent state, just like
835          * we do with user-mode execution.
836          */
837         rcu_virt_note_context_switch(smp_processor_id());
838 }
839
840 static inline void kvm_guest_exit(void)
841 {
842         unsigned long flags;
843
844         local_irq_save(flags);
845         guest_exit();
846         local_irq_restore(flags);
847 }
848
849 /*
850  * search_memslots() and __gfn_to_memslot() are here because they are
851  * used in non-modular code in arch/powerpc/kvm/book3s_hv_rm_mmu.c.
852  * gfn_to_memslot() itself isn't here as an inline because that would
853  * bloat other code too much.
854  */
855 static inline struct kvm_memory_slot *
856 search_memslots(struct kvm_memslots *slots, gfn_t gfn)
857 {
858         struct kvm_memory_slot *memslot;
859
860         kvm_for_each_memslot(memslot, slots)
861                 if (gfn >= memslot->base_gfn &&
862                       gfn < memslot->base_gfn + memslot->npages)
863                         return memslot;
864
865         return NULL;
866 }
867
868 static inline struct kvm_memory_slot *
869 __gfn_to_memslot(struct kvm_memslots *slots, gfn_t gfn)
870 {
871         return search_memslots(slots, gfn);
872 }
873
874 static inline unsigned long
875 __gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
876 {
877         return slot->userspace_addr + (gfn - slot->base_gfn) * PAGE_SIZE;
878 }
879
880 static inline int memslot_id(struct kvm *kvm, gfn_t gfn)
881 {
882         return gfn_to_memslot(kvm, gfn)->id;
883 }
884
885 static inline gfn_t gfn_to_index(gfn_t gfn, gfn_t base_gfn, int level)
886 {
887         /* KVM_HPAGE_GFN_SHIFT(PT_PAGE_TABLE_LEVEL) must be 0. */
888         return (gfn >> KVM_HPAGE_GFN_SHIFT(level)) -
889                 (base_gfn >> KVM_HPAGE_GFN_SHIFT(level));
890 }
891
892 static inline gfn_t
893 hva_to_gfn_memslot(unsigned long hva, struct kvm_memory_slot *slot)
894 {
895         gfn_t gfn_offset = (hva - slot->userspace_addr) >> PAGE_SHIFT;
896
897         return slot->base_gfn + gfn_offset;
898 }
899
900 static inline gpa_t gfn_to_gpa(gfn_t gfn)
901 {
902         return (gpa_t)gfn << PAGE_SHIFT;
903 }
904
905 static inline gfn_t gpa_to_gfn(gpa_t gpa)
906 {
907         return (gfn_t)(gpa >> PAGE_SHIFT);
908 }
909
910 static inline hpa_t pfn_to_hpa(pfn_t pfn)
911 {
912         return (hpa_t)pfn << PAGE_SHIFT;
913 }
914
915 static inline void kvm_migrate_timers(struct kvm_vcpu *vcpu)
916 {
917         set_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests);
918 }
919
920 enum kvm_stat_kind {
921         KVM_STAT_VM,
922         KVM_STAT_VCPU,
923 };
924
925 struct kvm_stats_debugfs_item {
926         const char *name;
927         int offset;
928         enum kvm_stat_kind kind;
929         struct dentry *dentry;
930 };
931 extern struct kvm_stats_debugfs_item debugfs_entries[];
932 extern struct dentry *kvm_debugfs_dir;
933
934 #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
935 static inline int mmu_notifier_retry(struct kvm *kvm, unsigned long mmu_seq)
936 {
937         if (unlikely(kvm->mmu_notifier_count))
938                 return 1;
939         /*
940          * Ensure the read of mmu_notifier_count happens before the read
941          * of mmu_notifier_seq.  This interacts with the smp_wmb() in
942          * mmu_notifier_invalidate_range_end to make sure that the caller
943          * either sees the old (non-zero) value of mmu_notifier_count or
944          * the new (incremented) value of mmu_notifier_seq.
945          * PowerPC Book3s HV KVM calls this under a per-page lock
946          * rather than under kvm->mmu_lock, for scalability, so
947          * can't rely on kvm->mmu_lock to keep things ordered.
948          */
949         smp_rmb();
950         if (kvm->mmu_notifier_seq != mmu_seq)
951                 return 1;
952         return 0;
953 }
954 #endif
955
956 #ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
957
958 #define KVM_MAX_IRQ_ROUTES 1024
959
960 int kvm_setup_default_irq_routing(struct kvm *kvm);
961 int kvm_set_irq_routing(struct kvm *kvm,
962                         const struct kvm_irq_routing_entry *entries,
963                         unsigned nr,
964                         unsigned flags);
965 int kvm_set_routing_entry(struct kvm_irq_routing_table *rt,
966                           struct kvm_kernel_irq_routing_entry *e,
967                           const struct kvm_irq_routing_entry *ue);
968 void kvm_free_irq_routing(struct kvm *kvm);
969
970 int kvm_send_userspace_msi(struct kvm *kvm, struct kvm_msi *msi);
971
972 #else
973
974 static inline void kvm_free_irq_routing(struct kvm *kvm) {}
975
976 #endif
977
978 #ifdef CONFIG_HAVE_KVM_EVENTFD
979
980 void kvm_eventfd_init(struct kvm *kvm);
981 int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args);
982
983 #ifdef CONFIG_HAVE_KVM_IRQCHIP
984 int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args);
985 void kvm_irqfd_release(struct kvm *kvm);
986 void kvm_irq_routing_update(struct kvm *, struct kvm_irq_routing_table *);
987 #else
988 static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
989 {
990         return -EINVAL;
991 }
992
993 static inline void kvm_irqfd_release(struct kvm *kvm) {}
994 #endif
995
996 #else
997
998 static inline void kvm_eventfd_init(struct kvm *kvm) {}
999
1000 static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
1001 {
1002         return -EINVAL;
1003 }
1004
1005 static inline void kvm_irqfd_release(struct kvm *kvm) {}
1006
1007 #ifdef CONFIG_HAVE_KVM_IRQCHIP
1008 static inline void kvm_irq_routing_update(struct kvm *kvm,
1009                                           struct kvm_irq_routing_table *irq_rt)
1010 {
1011         rcu_assign_pointer(kvm->irq_routing, irq_rt);
1012 }
1013 #endif
1014
1015 static inline int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args)
1016 {
1017         return -ENOSYS;
1018 }
1019
1020 #endif /* CONFIG_HAVE_KVM_EVENTFD */
1021
1022 #ifdef CONFIG_KVM_APIC_ARCHITECTURE
1023 static inline bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
1024 {
1025         return vcpu->kvm->bsp_vcpu_id == vcpu->vcpu_id;
1026 }
1027
1028 bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu);
1029
1030 #else
1031
1032 static inline bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu) { return true; }
1033
1034 #endif
1035
1036 #ifdef __KVM_HAVE_DEVICE_ASSIGNMENT
1037
1038 long kvm_vm_ioctl_assigned_device(struct kvm *kvm, unsigned ioctl,
1039                                   unsigned long arg);
1040
1041 #else
1042
1043 static inline long kvm_vm_ioctl_assigned_device(struct kvm *kvm, unsigned ioctl,
1044                                                 unsigned long arg)
1045 {
1046         return -ENOTTY;
1047 }
1048
1049 #endif
1050
1051 static inline void kvm_make_request(int req, struct kvm_vcpu *vcpu)
1052 {
1053         set_bit(req, &vcpu->requests);
1054 }
1055
1056 static inline bool kvm_check_request(int req, struct kvm_vcpu *vcpu)
1057 {
1058         if (test_bit(req, &vcpu->requests)) {
1059                 clear_bit(req, &vcpu->requests);
1060                 return true;
1061         } else {
1062                 return false;
1063         }
1064 }
1065
1066 extern bool kvm_rebooting;
1067
1068 struct kvm_device_ops;
1069
1070 struct kvm_device {
1071         struct kvm_device_ops *ops;
1072         struct kvm *kvm;
1073         void *private;
1074         struct list_head vm_node;
1075 };
1076
1077 /* create, destroy, and name are mandatory */
1078 struct kvm_device_ops {
1079         const char *name;
1080         int (*create)(struct kvm_device *dev, u32 type);
1081
1082         /*
1083          * Destroy is responsible for freeing dev.
1084          *
1085          * Destroy may be called before or after destructors are called
1086          * on emulated I/O regions, depending on whether a reference is
1087          * held by a vcpu or other kvm component that gets destroyed
1088          * after the emulated I/O.
1089          */
1090         void (*destroy)(struct kvm_device *dev);
1091
1092         int (*set_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1093         int (*get_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1094         int (*has_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1095         long (*ioctl)(struct kvm_device *dev, unsigned int ioctl,
1096                       unsigned long arg);
1097 };
1098
1099 void kvm_device_get(struct kvm_device *dev);
1100 void kvm_device_put(struct kvm_device *dev);
1101 struct kvm_device *kvm_device_from_filp(struct file *filp);
1102
1103 extern struct kvm_device_ops kvm_mpic_ops;
1104
1105 #ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
1106
1107 static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
1108 {
1109         vcpu->spin_loop.in_spin_loop = val;
1110 }
1111 static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
1112 {
1113         vcpu->spin_loop.dy_eligible = val;
1114 }
1115
1116 #else /* !CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
1117
1118 static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
1119 {
1120 }
1121
1122 static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
1123 {
1124 }
1125
1126 static inline bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
1127 {
1128         return true;
1129 }
1130
1131 #endif /* CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
1132 #else
1133 static inline void __guest_enter(void) { return; }
1134 static inline void __guest_exit(void) { return; }
1135 #endif /* IS_ENABLED(CONFIG_KVM) */
1136 #endif