5 * This work is licensed under the terms of the GNU GPL, version 2. See
6 * the COPYING file in the top-level directory.
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>
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 <linux/err.h>
25 #include <linux/irqflags.h>
26 #include <linux/context_tracking.h>
27 #include <asm/signal.h>
29 #include <linux/kvm.h>
30 #include <linux/kvm_para.h>
32 #include <linux/kvm_types.h>
34 #include <asm/kvm_host.h>
37 #define KVM_MMIO_SIZE 8
41 * The bit 16 ~ bit 31 of kvm_memory_region::flags are internally used
42 * in kvm, other bits are visible for userspace which are defined in
43 * include/linux/kvm_h.
45 #define KVM_MEMSLOT_INVALID (1UL << 16)
47 /* Two fragments for cross MMIO pages. */
48 #define KVM_MAX_MMIO_FRAGMENTS 2
51 * For the normal pfn, the highest 12 bits should be zero,
52 * so we can mask bit 62 ~ bit 52 to indicate the error pfn,
53 * mask bit 63 to indicate the noslot pfn.
55 #define KVM_PFN_ERR_MASK (0x7ffULL << 52)
56 #define KVM_PFN_ERR_NOSLOT_MASK (0xfffULL << 52)
57 #define KVM_PFN_NOSLOT (0x1ULL << 63)
59 #define KVM_PFN_ERR_FAULT (KVM_PFN_ERR_MASK)
60 #define KVM_PFN_ERR_HWPOISON (KVM_PFN_ERR_MASK + 1)
61 #define KVM_PFN_ERR_RO_FAULT (KVM_PFN_ERR_MASK + 2)
64 * error pfns indicate that the gfn is in slot but faild to
65 * translate it to pfn on host.
67 static inline bool is_error_pfn(pfn_t pfn
)
69 return !!(pfn
& KVM_PFN_ERR_MASK
);
73 * error_noslot pfns indicate that the gfn can not be
74 * translated to pfn - it is not in slot or failed to
75 * translate it to pfn.
77 static inline bool is_error_noslot_pfn(pfn_t pfn
)
79 return !!(pfn
& KVM_PFN_ERR_NOSLOT_MASK
);
82 /* noslot pfn indicates that the gfn is not in slot. */
83 static inline bool is_noslot_pfn(pfn_t pfn
)
85 return pfn
== KVM_PFN_NOSLOT
;
88 #define KVM_HVA_ERR_BAD (PAGE_OFFSET)
89 #define KVM_HVA_ERR_RO_BAD (PAGE_OFFSET + PAGE_SIZE)
91 static inline bool kvm_is_error_hva(unsigned long addr
)
93 return addr
>= PAGE_OFFSET
;
96 #define KVM_ERR_PTR_BAD_PAGE (ERR_PTR(-ENOENT))
98 static inline bool is_error_page(struct page
*page
)
104 * vcpu->requests bit members
106 #define KVM_REQ_TLB_FLUSH 0
107 #define KVM_REQ_MIGRATE_TIMER 1
108 #define KVM_REQ_REPORT_TPR_ACCESS 2
109 #define KVM_REQ_MMU_RELOAD 3
110 #define KVM_REQ_TRIPLE_FAULT 4
111 #define KVM_REQ_PENDING_TIMER 5
112 #define KVM_REQ_UNHALT 6
113 #define KVM_REQ_MMU_SYNC 7
114 #define KVM_REQ_CLOCK_UPDATE 8
115 #define KVM_REQ_KICK 9
116 #define KVM_REQ_DEACTIVATE_FPU 10
117 #define KVM_REQ_EVENT 11
118 #define KVM_REQ_APF_HALT 12
119 #define KVM_REQ_STEAL_UPDATE 13
120 #define KVM_REQ_NMI 14
121 #define KVM_REQ_PMU 15
122 #define KVM_REQ_PMI 16
123 #define KVM_REQ_WATCHDOG 17
124 #define KVM_REQ_MASTERCLOCK_UPDATE 18
125 #define KVM_REQ_MCLOCK_INPROGRESS 19
126 #define KVM_REQ_EPR_EXIT 20
127 #define KVM_REQ_SCAN_IOAPIC 21
129 #define KVM_USERSPACE_IRQ_SOURCE_ID 0
130 #define KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID 1
134 extern struct kmem_cache
*kvm_vcpu_cache
;
136 extern raw_spinlock_t kvm_lock
;
137 extern struct list_head vm_list
;
139 struct kvm_io_range
{
142 struct kvm_io_device
*dev
;
145 #define NR_IOBUS_DEVS 1000
149 struct kvm_io_range range
[];
155 KVM_VIRTIO_CCW_NOTIFY_BUS
,
159 int kvm_io_bus_write(struct kvm
*kvm
, enum kvm_bus bus_idx
, gpa_t addr
,
160 int len
, const void *val
);
161 int kvm_io_bus_read(struct kvm
*kvm
, enum kvm_bus bus_idx
, gpa_t addr
, int len
,
163 int kvm_io_bus_register_dev(struct kvm
*kvm
, enum kvm_bus bus_idx
, gpa_t addr
,
164 int len
, struct kvm_io_device
*dev
);
165 int kvm_io_bus_unregister_dev(struct kvm
*kvm
, enum kvm_bus bus_idx
,
166 struct kvm_io_device
*dev
);
168 #ifdef CONFIG_KVM_ASYNC_PF
169 struct kvm_async_pf
{
170 struct work_struct work
;
171 struct list_head link
;
172 struct list_head queue
;
173 struct kvm_vcpu
*vcpu
;
174 struct mm_struct
*mm
;
177 struct kvm_arch_async_pf arch
;
182 void kvm_clear_async_pf_completion_queue(struct kvm_vcpu
*vcpu
);
183 void kvm_check_async_pf_completion(struct kvm_vcpu
*vcpu
);
184 int kvm_setup_async_pf(struct kvm_vcpu
*vcpu
, gva_t gva
, gfn_t gfn
,
185 struct kvm_arch_async_pf
*arch
);
186 int kvm_async_pf_wakeup_all(struct kvm_vcpu
*vcpu
);
193 READING_SHADOW_PAGE_TABLES
,
197 * Sometimes a large or cross-page mmio needs to be broken up into separate
198 * exits for userspace servicing.
200 struct kvm_mmio_fragment
{
208 #ifdef CONFIG_PREEMPT_NOTIFIERS
209 struct preempt_notifier preempt_notifier
;
215 unsigned long requests
;
216 unsigned long guest_debug
;
222 int guest_fpu_loaded
, guest_xcr0_loaded
;
223 wait_queue_head_t wq
;
227 struct kvm_vcpu_stat stat
;
229 #ifdef CONFIG_HAS_IOMEM
231 int mmio_read_completed
;
233 int mmio_cur_fragment
;
234 int mmio_nr_fragments
;
235 struct kvm_mmio_fragment mmio_fragments
[KVM_MAX_MMIO_FRAGMENTS
];
238 #ifdef CONFIG_KVM_ASYNC_PF
241 struct list_head queue
;
242 struct list_head done
;
247 #ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
249 * Cpu relax intercept or pause loop exit optimization
250 * in_spin_loop: set when a vcpu does a pause loop exit
251 * or cpu relax intercepted.
252 * dy_eligible: indicates whether vcpu is eligible for directed yield.
260 struct kvm_vcpu_arch arch
;
263 static inline int kvm_vcpu_exiting_guest_mode(struct kvm_vcpu
*vcpu
)
265 return cmpxchg(&vcpu
->mode
, IN_GUEST_MODE
, EXITING_GUEST_MODE
);
269 * Some of the bitops functions do not support too long bitmaps.
270 * This number must be determined not to exceed such limits.
272 #define KVM_MEM_MAX_NR_PAGES ((1UL << 31) - 1)
274 struct kvm_memory_slot
{
276 unsigned long npages
;
277 unsigned long *dirty_bitmap
;
278 struct kvm_arch_memory_slot arch
;
279 unsigned long userspace_addr
;
284 static inline unsigned long kvm_dirty_bitmap_bytes(struct kvm_memory_slot
*memslot
)
286 return ALIGN(memslot
->npages
, BITS_PER_LONG
) / 8;
289 struct kvm_kernel_irq_routing_entry
{
292 int (*set
)(struct kvm_kernel_irq_routing_entry
*e
,
293 struct kvm
*kvm
, int irq_source_id
, int level
,
302 struct hlist_node link
;
305 #ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
307 struct kvm_irq_routing_table
{
308 int chip
[KVM_NR_IRQCHIPS
][KVM_IRQCHIP_NUM_PINS
];
309 struct kvm_kernel_irq_routing_entry
*rt_entries
;
312 * Array indexed by gsi. Each entry contains list of irq chips
313 * the gsi is connected to.
315 struct hlist_head map
[0];
320 struct kvm_irq_routing_table
{};
324 #ifndef KVM_PRIVATE_MEM_SLOTS
325 #define KVM_PRIVATE_MEM_SLOTS 0
328 #ifndef KVM_MEM_SLOTS_NUM
329 #define KVM_MEM_SLOTS_NUM (KVM_USER_MEM_SLOTS + KVM_PRIVATE_MEM_SLOTS)
334 * memslots are not sorted by id anymore, please use id_to_memslot()
335 * to get the memslot by its id.
337 struct kvm_memslots
{
339 struct kvm_memory_slot memslots
[KVM_MEM_SLOTS_NUM
];
340 /* The mapping table from slot id to the index in memslots[]. */
341 short id_to_index
[KVM_MEM_SLOTS_NUM
];
346 struct mutex slots_lock
;
347 struct mm_struct
*mm
; /* userspace tied to this vm */
348 struct kvm_memslots
*memslots
;
349 struct srcu_struct srcu
;
350 #ifdef CONFIG_KVM_APIC_ARCHITECTURE
353 struct kvm_vcpu
*vcpus
[KVM_MAX_VCPUS
];
354 atomic_t online_vcpus
;
355 int last_boosted_vcpu
;
356 struct list_head vm_list
;
358 struct kvm_io_bus
*buses
[KVM_NR_BUSES
];
359 #ifdef CONFIG_HAVE_KVM_EVENTFD
362 struct list_head items
;
363 struct list_head resampler_list
;
364 struct mutex resampler_lock
;
366 struct list_head ioeventfds
;
368 struct kvm_vm_stat stat
;
369 struct kvm_arch arch
;
370 atomic_t users_count
;
371 #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
372 struct kvm_coalesced_mmio_ring
*coalesced_mmio_ring
;
373 spinlock_t ring_lock
;
374 struct list_head coalesced_zones
;
377 struct mutex irq_lock
;
378 #ifdef CONFIG_HAVE_KVM_IRQCHIP
380 * Update side is protected by irq_lock and,
381 * if configured, irqfds.lock.
383 struct kvm_irq_routing_table __rcu
*irq_routing
;
384 struct hlist_head mask_notifier_list
;
385 struct hlist_head irq_ack_notifier_list
;
388 #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
389 struct mmu_notifier mmu_notifier
;
390 unsigned long mmu_notifier_seq
;
391 long mmu_notifier_count
;
394 struct list_head devices
;
397 #define kvm_err(fmt, ...) \
398 pr_err("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
399 #define kvm_info(fmt, ...) \
400 pr_info("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
401 #define kvm_debug(fmt, ...) \
402 pr_debug("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
403 #define kvm_pr_unimpl(fmt, ...) \
404 pr_err_ratelimited("kvm [%i]: " fmt, \
405 task_tgid_nr(current), ## __VA_ARGS__)
407 /* The guest did something we don't support. */
408 #define vcpu_unimpl(vcpu, fmt, ...) \
409 kvm_pr_unimpl("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
411 static inline struct kvm_vcpu
*kvm_get_vcpu(struct kvm
*kvm
, int i
)
414 return kvm
->vcpus
[i
];
417 #define kvm_for_each_vcpu(idx, vcpup, kvm) \
419 idx < atomic_read(&kvm->online_vcpus) && \
420 (vcpup = kvm_get_vcpu(kvm, idx)) != NULL; \
423 #define kvm_for_each_memslot(memslot, slots) \
424 for (memslot = &slots->memslots[0]; \
425 memslot < slots->memslots + KVM_MEM_SLOTS_NUM && memslot->npages;\
428 int kvm_vcpu_init(struct kvm_vcpu
*vcpu
, struct kvm
*kvm
, unsigned id
);
429 void kvm_vcpu_uninit(struct kvm_vcpu
*vcpu
);
431 int __must_check
vcpu_load(struct kvm_vcpu
*vcpu
);
432 void vcpu_put(struct kvm_vcpu
*vcpu
);
434 #ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
435 int kvm_irqfd_init(void);
436 void kvm_irqfd_exit(void);
438 static inline int kvm_irqfd_init(void)
443 static inline void kvm_irqfd_exit(void)
447 int kvm_init(void *opaque
, unsigned vcpu_size
, unsigned vcpu_align
,
448 struct module
*module
);
451 void kvm_get_kvm(struct kvm
*kvm
);
452 void kvm_put_kvm(struct kvm
*kvm
);
453 void update_memslots(struct kvm_memslots
*slots
, struct kvm_memory_slot
*new,
454 u64 last_generation
);
456 static inline struct kvm_memslots
*kvm_memslots(struct kvm
*kvm
)
458 return rcu_dereference_check(kvm
->memslots
,
459 srcu_read_lock_held(&kvm
->srcu
)
460 || lockdep_is_held(&kvm
->slots_lock
));
463 static inline struct kvm_memory_slot
*
464 id_to_memslot(struct kvm_memslots
*slots
, int id
)
466 int index
= slots
->id_to_index
[id
];
467 struct kvm_memory_slot
*slot
;
469 slot
= &slots
->memslots
[index
];
471 WARN_ON(slot
->id
!= id
);
476 * KVM_SET_USER_MEMORY_REGION ioctl allows the following operations:
477 * - create a new memory slot
478 * - delete an existing memory slot
479 * - modify an existing memory slot
480 * -- move it in the guest physical memory space
481 * -- just change its flags
483 * Since flags can be changed by some of these operations, the following
484 * differentiation is the best we can do for __kvm_set_memory_region():
493 int kvm_set_memory_region(struct kvm
*kvm
,
494 struct kvm_userspace_memory_region
*mem
);
495 int __kvm_set_memory_region(struct kvm
*kvm
,
496 struct kvm_userspace_memory_region
*mem
);
497 void kvm_arch_free_memslot(struct kvm_memory_slot
*free
,
498 struct kvm_memory_slot
*dont
);
499 int kvm_arch_create_memslot(struct kvm_memory_slot
*slot
, unsigned long npages
);
500 int kvm_arch_prepare_memory_region(struct kvm
*kvm
,
501 struct kvm_memory_slot
*memslot
,
502 struct kvm_userspace_memory_region
*mem
,
503 enum kvm_mr_change change
);
504 void kvm_arch_commit_memory_region(struct kvm
*kvm
,
505 struct kvm_userspace_memory_region
*mem
,
506 const struct kvm_memory_slot
*old
,
507 enum kvm_mr_change change
);
508 bool kvm_largepages_enabled(void);
509 void kvm_disable_largepages(void);
510 /* flush all memory translations */
511 void kvm_arch_flush_shadow_all(struct kvm
*kvm
);
512 /* flush memory translations pointing to 'slot' */
513 void kvm_arch_flush_shadow_memslot(struct kvm
*kvm
,
514 struct kvm_memory_slot
*slot
);
516 int gfn_to_page_many_atomic(struct kvm
*kvm
, gfn_t gfn
, struct page
**pages
,
519 struct page
*gfn_to_page(struct kvm
*kvm
, gfn_t gfn
);
520 unsigned long gfn_to_hva(struct kvm
*kvm
, gfn_t gfn
);
521 unsigned long gfn_to_hva_memslot(struct kvm_memory_slot
*slot
, gfn_t gfn
);
522 void kvm_release_page_clean(struct page
*page
);
523 void kvm_release_page_dirty(struct page
*page
);
524 void kvm_set_page_dirty(struct page
*page
);
525 void kvm_set_page_accessed(struct page
*page
);
527 pfn_t
gfn_to_pfn_atomic(struct kvm
*kvm
, gfn_t gfn
);
528 pfn_t
gfn_to_pfn_async(struct kvm
*kvm
, gfn_t gfn
, bool *async
,
529 bool write_fault
, bool *writable
);
530 pfn_t
gfn_to_pfn(struct kvm
*kvm
, gfn_t gfn
);
531 pfn_t
gfn_to_pfn_prot(struct kvm
*kvm
, gfn_t gfn
, bool write_fault
,
533 pfn_t
gfn_to_pfn_memslot(struct kvm_memory_slot
*slot
, gfn_t gfn
);
534 pfn_t
gfn_to_pfn_memslot_atomic(struct kvm_memory_slot
*slot
, gfn_t gfn
);
536 void kvm_release_pfn_dirty(pfn_t pfn
);
537 void kvm_release_pfn_clean(pfn_t pfn
);
538 void kvm_set_pfn_dirty(pfn_t pfn
);
539 void kvm_set_pfn_accessed(pfn_t pfn
);
540 void kvm_get_pfn(pfn_t pfn
);
542 int kvm_read_guest_page(struct kvm
*kvm
, gfn_t gfn
, void *data
, int offset
,
544 int kvm_read_guest_atomic(struct kvm
*kvm
, gpa_t gpa
, void *data
,
546 int kvm_read_guest(struct kvm
*kvm
, gpa_t gpa
, void *data
, unsigned long len
);
547 int kvm_read_guest_cached(struct kvm
*kvm
, struct gfn_to_hva_cache
*ghc
,
548 void *data
, unsigned long len
);
549 int kvm_write_guest_page(struct kvm
*kvm
, gfn_t gfn
, const void *data
,
550 int offset
, int len
);
551 int kvm_write_guest(struct kvm
*kvm
, gpa_t gpa
, const void *data
,
553 int kvm_write_guest_cached(struct kvm
*kvm
, struct gfn_to_hva_cache
*ghc
,
554 void *data
, unsigned long len
);
555 int kvm_gfn_to_hva_cache_init(struct kvm
*kvm
, struct gfn_to_hva_cache
*ghc
,
556 gpa_t gpa
, unsigned long len
);
557 int kvm_clear_guest_page(struct kvm
*kvm
, gfn_t gfn
, int offset
, int len
);
558 int kvm_clear_guest(struct kvm
*kvm
, gpa_t gpa
, unsigned long len
);
559 struct kvm_memory_slot
*gfn_to_memslot(struct kvm
*kvm
, gfn_t gfn
);
560 int kvm_is_visible_gfn(struct kvm
*kvm
, gfn_t gfn
);
561 unsigned long kvm_host_page_size(struct kvm
*kvm
, gfn_t gfn
);
562 void mark_page_dirty(struct kvm
*kvm
, gfn_t gfn
);
563 void mark_page_dirty_in_slot(struct kvm
*kvm
, struct kvm_memory_slot
*memslot
,
566 void kvm_vcpu_block(struct kvm_vcpu
*vcpu
);
567 void kvm_vcpu_kick(struct kvm_vcpu
*vcpu
);
568 bool kvm_vcpu_yield_to(struct kvm_vcpu
*target
);
569 void kvm_vcpu_on_spin(struct kvm_vcpu
*vcpu
);
570 void kvm_resched(struct kvm_vcpu
*vcpu
);
571 void kvm_load_guest_fpu(struct kvm_vcpu
*vcpu
);
572 void kvm_put_guest_fpu(struct kvm_vcpu
*vcpu
);
574 void kvm_flush_remote_tlbs(struct kvm
*kvm
);
575 void kvm_reload_remote_mmus(struct kvm
*kvm
);
576 void kvm_make_mclock_inprogress_request(struct kvm
*kvm
);
577 void kvm_make_scan_ioapic_request(struct kvm
*kvm
);
579 long kvm_arch_dev_ioctl(struct file
*filp
,
580 unsigned int ioctl
, unsigned long arg
);
581 long kvm_arch_vcpu_ioctl(struct file
*filp
,
582 unsigned int ioctl
, unsigned long arg
);
583 int kvm_arch_vcpu_fault(struct kvm_vcpu
*vcpu
, struct vm_fault
*vmf
);
585 int kvm_dev_ioctl_check_extension(long ext
);
587 int kvm_get_dirty_log(struct kvm
*kvm
,
588 struct kvm_dirty_log
*log
, int *is_dirty
);
589 int kvm_vm_ioctl_get_dirty_log(struct kvm
*kvm
,
590 struct kvm_dirty_log
*log
);
592 int kvm_vm_ioctl_set_memory_region(struct kvm
*kvm
,
593 struct kvm_userspace_memory_region
*mem
);
594 int kvm_vm_ioctl_irq_line(struct kvm
*kvm
, struct kvm_irq_level
*irq_level
,
596 long kvm_arch_vm_ioctl(struct file
*filp
,
597 unsigned int ioctl
, unsigned long arg
);
599 int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu
*vcpu
, struct kvm_fpu
*fpu
);
600 int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu
*vcpu
, struct kvm_fpu
*fpu
);
602 int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu
*vcpu
,
603 struct kvm_translation
*tr
);
605 int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu
*vcpu
, struct kvm_regs
*regs
);
606 int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu
*vcpu
, struct kvm_regs
*regs
);
607 int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu
*vcpu
,
608 struct kvm_sregs
*sregs
);
609 int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu
*vcpu
,
610 struct kvm_sregs
*sregs
);
611 int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu
*vcpu
,
612 struct kvm_mp_state
*mp_state
);
613 int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu
*vcpu
,
614 struct kvm_mp_state
*mp_state
);
615 int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu
*vcpu
,
616 struct kvm_guest_debug
*dbg
);
617 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu
*vcpu
, struct kvm_run
*kvm_run
);
619 int kvm_arch_init(void *opaque
);
620 void kvm_arch_exit(void);
622 int kvm_arch_vcpu_init(struct kvm_vcpu
*vcpu
);
623 void kvm_arch_vcpu_uninit(struct kvm_vcpu
*vcpu
);
625 void kvm_arch_vcpu_free(struct kvm_vcpu
*vcpu
);
626 void kvm_arch_vcpu_load(struct kvm_vcpu
*vcpu
, int cpu
);
627 void kvm_arch_vcpu_put(struct kvm_vcpu
*vcpu
);
628 struct kvm_vcpu
*kvm_arch_vcpu_create(struct kvm
*kvm
, unsigned int id
);
629 int kvm_arch_vcpu_setup(struct kvm_vcpu
*vcpu
);
630 int kvm_arch_vcpu_postcreate(struct kvm_vcpu
*vcpu
);
631 void kvm_arch_vcpu_destroy(struct kvm_vcpu
*vcpu
);
633 int kvm_arch_hardware_enable(void *garbage
);
634 void kvm_arch_hardware_disable(void *garbage
);
635 int kvm_arch_hardware_setup(void);
636 void kvm_arch_hardware_unsetup(void);
637 void kvm_arch_check_processor_compat(void *rtn
);
638 int kvm_arch_vcpu_runnable(struct kvm_vcpu
*vcpu
);
639 int kvm_arch_vcpu_should_kick(struct kvm_vcpu
*vcpu
);
641 void kvm_free_physmem(struct kvm
*kvm
);
643 void *kvm_kvzalloc(unsigned long size
);
644 void kvm_kvfree(const void *addr
);
646 #ifndef __KVM_HAVE_ARCH_VM_ALLOC
647 static inline struct kvm
*kvm_arch_alloc_vm(void)
649 return kzalloc(sizeof(struct kvm
), GFP_KERNEL
);
652 static inline void kvm_arch_free_vm(struct kvm
*kvm
)
658 static inline wait_queue_head_t
*kvm_arch_vcpu_wq(struct kvm_vcpu
*vcpu
)
660 #ifdef __KVM_HAVE_ARCH_WQP
661 return vcpu
->arch
.wqp
;
667 int kvm_arch_init_vm(struct kvm
*kvm
, unsigned long type
);
668 void kvm_arch_destroy_vm(struct kvm
*kvm
);
669 void kvm_arch_sync_events(struct kvm
*kvm
);
671 int kvm_cpu_has_pending_timer(struct kvm_vcpu
*vcpu
);
672 void kvm_vcpu_kick(struct kvm_vcpu
*vcpu
);
674 bool kvm_is_mmio_pfn(pfn_t pfn
);
676 struct kvm_irq_ack_notifier
{
677 struct hlist_node link
;
679 void (*irq_acked
)(struct kvm_irq_ack_notifier
*kian
);
682 struct kvm_assigned_dev_kernel
{
683 struct kvm_irq_ack_notifier ack_notifier
;
684 struct list_head list
;
689 unsigned int entries_nr
;
691 bool host_irq_disabled
;
693 struct msix_entry
*host_msix_entries
;
695 struct msix_entry
*guest_msix_entries
;
696 unsigned long irq_requested_type
;
701 spinlock_t intx_lock
;
702 spinlock_t intx_mask_lock
;
704 struct pci_saved_state
*pci_saved_state
;
707 struct kvm_irq_mask_notifier
{
708 void (*func
)(struct kvm_irq_mask_notifier
*kimn
, bool masked
);
710 struct hlist_node link
;
713 void kvm_register_irq_mask_notifier(struct kvm
*kvm
, int irq
,
714 struct kvm_irq_mask_notifier
*kimn
);
715 void kvm_unregister_irq_mask_notifier(struct kvm
*kvm
, int irq
,
716 struct kvm_irq_mask_notifier
*kimn
);
717 void kvm_fire_mask_notifiers(struct kvm
*kvm
, unsigned irqchip
, unsigned pin
,
720 int kvm_set_irq(struct kvm
*kvm
, int irq_source_id
, u32 irq
, int level
,
722 int kvm_set_irq_inatomic(struct kvm
*kvm
, int irq_source_id
, u32 irq
, int level
);
723 int kvm_set_msi(struct kvm_kernel_irq_routing_entry
*irq_entry
, struct kvm
*kvm
,
724 int irq_source_id
, int level
, bool line_status
);
725 bool kvm_irq_has_notifier(struct kvm
*kvm
, unsigned irqchip
, unsigned pin
);
726 void kvm_notify_acked_irq(struct kvm
*kvm
, unsigned irqchip
, unsigned pin
);
727 void kvm_register_irq_ack_notifier(struct kvm
*kvm
,
728 struct kvm_irq_ack_notifier
*kian
);
729 void kvm_unregister_irq_ack_notifier(struct kvm
*kvm
,
730 struct kvm_irq_ack_notifier
*kian
);
731 int kvm_request_irq_source_id(struct kvm
*kvm
);
732 void kvm_free_irq_source_id(struct kvm
*kvm
, int irq_source_id
);
734 /* For vcpu->arch.iommu_flags */
735 #define KVM_IOMMU_CACHE_COHERENCY 0x1
737 #ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
738 int kvm_iommu_map_pages(struct kvm
*kvm
, struct kvm_memory_slot
*slot
);
739 void kvm_iommu_unmap_pages(struct kvm
*kvm
, struct kvm_memory_slot
*slot
);
740 int kvm_iommu_map_guest(struct kvm
*kvm
);
741 int kvm_iommu_unmap_guest(struct kvm
*kvm
);
742 int kvm_assign_device(struct kvm
*kvm
,
743 struct kvm_assigned_dev_kernel
*assigned_dev
);
744 int kvm_deassign_device(struct kvm
*kvm
,
745 struct kvm_assigned_dev_kernel
*assigned_dev
);
747 static inline int kvm_iommu_map_pages(struct kvm
*kvm
,
748 struct kvm_memory_slot
*slot
)
753 static inline void kvm_iommu_unmap_pages(struct kvm
*kvm
,
754 struct kvm_memory_slot
*slot
)
758 static inline int kvm_iommu_unmap_guest(struct kvm
*kvm
)
764 static inline void kvm_guest_enter(void)
768 BUG_ON(preemptible());
770 local_irq_save(flags
);
772 local_irq_restore(flags
);
774 /* KVM does not hold any references to rcu protected data when it
775 * switches CPU into a guest mode. In fact switching to a guest mode
776 * is very similar to exiting to userspase from rcu point of view. In
777 * addition CPU may stay in a guest mode for quite a long time (up to
778 * one time slice). Lets treat guest mode as quiescent state, just like
779 * we do with user-mode execution.
781 rcu_virt_note_context_switch(smp_processor_id());
784 static inline void kvm_guest_exit(void)
788 local_irq_save(flags
);
790 local_irq_restore(flags
);
794 * search_memslots() and __gfn_to_memslot() are here because they are
795 * used in non-modular code in arch/powerpc/kvm/book3s_hv_rm_mmu.c.
796 * gfn_to_memslot() itself isn't here as an inline because that would
797 * bloat other code too much.
799 static inline struct kvm_memory_slot
*
800 search_memslots(struct kvm_memslots
*slots
, gfn_t gfn
)
802 struct kvm_memory_slot
*memslot
;
804 kvm_for_each_memslot(memslot
, slots
)
805 if (gfn
>= memslot
->base_gfn
&&
806 gfn
< memslot
->base_gfn
+ memslot
->npages
)
812 static inline struct kvm_memory_slot
*
813 __gfn_to_memslot(struct kvm_memslots
*slots
, gfn_t gfn
)
815 return search_memslots(slots
, gfn
);
818 static inline unsigned long
819 __gfn_to_hva_memslot(struct kvm_memory_slot
*slot
, gfn_t gfn
)
821 return slot
->userspace_addr
+ (gfn
- slot
->base_gfn
) * PAGE_SIZE
;
824 static inline int memslot_id(struct kvm
*kvm
, gfn_t gfn
)
826 return gfn_to_memslot(kvm
, gfn
)->id
;
829 static inline gfn_t
gfn_to_index(gfn_t gfn
, gfn_t base_gfn
, int level
)
831 /* KVM_HPAGE_GFN_SHIFT(PT_PAGE_TABLE_LEVEL) must be 0. */
832 return (gfn
>> KVM_HPAGE_GFN_SHIFT(level
)) -
833 (base_gfn
>> KVM_HPAGE_GFN_SHIFT(level
));
837 hva_to_gfn_memslot(unsigned long hva
, struct kvm_memory_slot
*slot
)
839 gfn_t gfn_offset
= (hva
- slot
->userspace_addr
) >> PAGE_SHIFT
;
841 return slot
->base_gfn
+ gfn_offset
;
844 static inline gpa_t
gfn_to_gpa(gfn_t gfn
)
846 return (gpa_t
)gfn
<< PAGE_SHIFT
;
849 static inline gfn_t
gpa_to_gfn(gpa_t gpa
)
851 return (gfn_t
)(gpa
>> PAGE_SHIFT
);
854 static inline hpa_t
pfn_to_hpa(pfn_t pfn
)
856 return (hpa_t
)pfn
<< PAGE_SHIFT
;
859 static inline void kvm_migrate_timers(struct kvm_vcpu
*vcpu
)
861 set_bit(KVM_REQ_MIGRATE_TIMER
, &vcpu
->requests
);
869 struct kvm_stats_debugfs_item
{
872 enum kvm_stat_kind kind
;
873 struct dentry
*dentry
;
875 extern struct kvm_stats_debugfs_item debugfs_entries
[];
876 extern struct dentry
*kvm_debugfs_dir
;
878 #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
879 static inline int mmu_notifier_retry(struct kvm
*kvm
, unsigned long mmu_seq
)
881 if (unlikely(kvm
->mmu_notifier_count
))
884 * Ensure the read of mmu_notifier_count happens before the read
885 * of mmu_notifier_seq. This interacts with the smp_wmb() in
886 * mmu_notifier_invalidate_range_end to make sure that the caller
887 * either sees the old (non-zero) value of mmu_notifier_count or
888 * the new (incremented) value of mmu_notifier_seq.
889 * PowerPC Book3s HV KVM calls this under a per-page lock
890 * rather than under kvm->mmu_lock, for scalability, so
891 * can't rely on kvm->mmu_lock to keep things ordered.
894 if (kvm
->mmu_notifier_seq
!= mmu_seq
)
900 #ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
902 #define KVM_MAX_IRQ_ROUTES 1024
904 int kvm_setup_default_irq_routing(struct kvm
*kvm
);
905 int kvm_set_irq_routing(struct kvm
*kvm
,
906 const struct kvm_irq_routing_entry
*entries
,
909 int kvm_set_routing_entry(struct kvm_irq_routing_table
*rt
,
910 struct kvm_kernel_irq_routing_entry
*e
,
911 const struct kvm_irq_routing_entry
*ue
);
912 void kvm_free_irq_routing(struct kvm
*kvm
);
914 int kvm_send_userspace_msi(struct kvm
*kvm
, struct kvm_msi
*msi
);
918 static inline void kvm_free_irq_routing(struct kvm
*kvm
) {}
922 #ifdef CONFIG_HAVE_KVM_EVENTFD
924 void kvm_eventfd_init(struct kvm
*kvm
);
925 int kvm_ioeventfd(struct kvm
*kvm
, struct kvm_ioeventfd
*args
);
927 #ifdef CONFIG_HAVE_KVM_IRQCHIP
928 int kvm_irqfd(struct kvm
*kvm
, struct kvm_irqfd
*args
);
929 void kvm_irqfd_release(struct kvm
*kvm
);
930 void kvm_irq_routing_update(struct kvm
*, struct kvm_irq_routing_table
*);
932 static inline int kvm_irqfd(struct kvm
*kvm
, struct kvm_irqfd
*args
)
937 static inline void kvm_irqfd_release(struct kvm
*kvm
) {}
942 static inline void kvm_eventfd_init(struct kvm
*kvm
) {}
944 static inline int kvm_irqfd(struct kvm
*kvm
, struct kvm_irqfd
*args
)
949 static inline void kvm_irqfd_release(struct kvm
*kvm
) {}
951 #ifdef CONFIG_HAVE_KVM_IRQCHIP
952 static inline void kvm_irq_routing_update(struct kvm
*kvm
,
953 struct kvm_irq_routing_table
*irq_rt
)
955 rcu_assign_pointer(kvm
->irq_routing
, irq_rt
);
959 static inline int kvm_ioeventfd(struct kvm
*kvm
, struct kvm_ioeventfd
*args
)
964 #endif /* CONFIG_HAVE_KVM_EVENTFD */
966 #ifdef CONFIG_KVM_APIC_ARCHITECTURE
967 static inline bool kvm_vcpu_is_bsp(struct kvm_vcpu
*vcpu
)
969 return vcpu
->kvm
->bsp_vcpu_id
== vcpu
->vcpu_id
;
972 bool kvm_vcpu_compatible(struct kvm_vcpu
*vcpu
);
976 static inline bool kvm_vcpu_compatible(struct kvm_vcpu
*vcpu
) { return true; }
980 #ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
982 long kvm_vm_ioctl_assigned_device(struct kvm
*kvm
, unsigned ioctl
,
985 void kvm_free_all_assigned_devices(struct kvm
*kvm
);
989 static inline long kvm_vm_ioctl_assigned_device(struct kvm
*kvm
, unsigned ioctl
,
995 static inline void kvm_free_all_assigned_devices(struct kvm
*kvm
) {}
999 static inline void kvm_make_request(int req
, struct kvm_vcpu
*vcpu
)
1001 set_bit(req
, &vcpu
->requests
);
1004 static inline bool kvm_check_request(int req
, struct kvm_vcpu
*vcpu
)
1006 if (test_bit(req
, &vcpu
->requests
)) {
1007 clear_bit(req
, &vcpu
->requests
);
1014 extern bool kvm_rebooting
;
1016 struct kvm_device_ops
;
1019 struct kvm_device_ops
*ops
;
1022 struct list_head vm_node
;
1025 /* create, destroy, and name are mandatory */
1026 struct kvm_device_ops
{
1028 int (*create
)(struct kvm_device
*dev
, u32 type
);
1031 * Destroy is responsible for freeing dev.
1033 * Destroy may be called before or after destructors are called
1034 * on emulated I/O regions, depending on whether a reference is
1035 * held by a vcpu or other kvm component that gets destroyed
1036 * after the emulated I/O.
1038 void (*destroy
)(struct kvm_device
*dev
);
1040 int (*set_attr
)(struct kvm_device
*dev
, struct kvm_device_attr
*attr
);
1041 int (*get_attr
)(struct kvm_device
*dev
, struct kvm_device_attr
*attr
);
1042 int (*has_attr
)(struct kvm_device
*dev
, struct kvm_device_attr
*attr
);
1043 long (*ioctl
)(struct kvm_device
*dev
, unsigned int ioctl
,
1047 void kvm_device_get(struct kvm_device
*dev
);
1048 void kvm_device_put(struct kvm_device
*dev
);
1049 struct kvm_device
*kvm_device_from_filp(struct file
*filp
);
1051 extern struct kvm_device_ops kvm_mpic_ops
;
1052 extern struct kvm_device_ops kvm_xics_ops
;
1054 #ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
1056 static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu
*vcpu
, bool val
)
1058 vcpu
->spin_loop
.in_spin_loop
= val
;
1060 static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu
*vcpu
, bool val
)
1062 vcpu
->spin_loop
.dy_eligible
= val
;
1065 #else /* !CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
1067 static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu
*vcpu
, bool val
)
1071 static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu
*vcpu
, bool val
)
1075 static inline bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu
*vcpu
)
1080 #endif /* CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */