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 <asm/signal.h>
26 #include <linux/kvm.h>
27 #include <linux/kvm_para.h>
29 #include <linux/kvm_types.h>
31 #include <asm/kvm_host.h>
34 #define KVM_MMIO_SIZE 8
38 * If we support unaligned MMIO, at most one fragment will be split into two:
40 #ifdef KVM_UNALIGNED_MMIO
41 # define KVM_EXTRA_MMIO_FRAGMENTS 1
43 # define KVM_EXTRA_MMIO_FRAGMENTS 0
46 #define KVM_USER_MMIO_SIZE 8
48 #define KVM_MAX_MMIO_FRAGMENTS \
49 (KVM_MMIO_SIZE / KVM_USER_MMIO_SIZE + KVM_EXTRA_MMIO_FRAGMENTS)
52 * vcpu->requests bit members
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
73 #define KVM_USERSPACE_IRQ_SOURCE_ID 0
77 extern struct kmem_cache *kvm_vcpu_cache;
82 struct kvm_io_device *dev;
85 #define NR_IOBUS_DEVS 1000
89 struct kvm_io_range range[];
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,
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);
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;
116 struct kvm_arch_async_pf arch;
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);
132 READING_SHADOW_PAGE_TABLES,
136 * Sometimes a large or cross-page mmio needs to be broken up into separate
137 * exits for userspace servicing.
139 struct kvm_mmio_fragment {
147 #ifdef CONFIG_PREEMPT_NOTIFIERS
148 struct preempt_notifier preempt_notifier;
154 unsigned long requests;
155 unsigned long guest_debug;
161 int guest_fpu_loaded, guest_xcr0_loaded;
162 wait_queue_head_t wq;
166 struct kvm_vcpu_stat stat;
168 #ifdef CONFIG_HAS_IOMEM
170 int mmio_read_completed;
172 int mmio_cur_fragment;
173 int mmio_nr_fragments;
174 struct kvm_mmio_fragment mmio_fragments[KVM_MAX_MMIO_FRAGMENTS];
177 #ifdef CONFIG_KVM_ASYNC_PF
180 struct list_head queue;
181 struct list_head done;
186 #ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
188 * Cpu relax intercept or pause loop exit optimization
189 * in_spin_loop: set when a vcpu does a pause loop exit
190 * or cpu relax intercepted.
191 * dy_eligible: indicates whether vcpu is eligible for directed yield.
198 struct kvm_vcpu_arch arch;
201 static inline int kvm_vcpu_exiting_guest_mode(struct kvm_vcpu *vcpu)
203 return cmpxchg(&vcpu->mode, IN_GUEST_MODE, EXITING_GUEST_MODE);
207 * Some of the bitops functions do not support too long bitmaps.
208 * This number must be determined not to exceed such limits.
210 #define KVM_MEM_MAX_NR_PAGES ((1UL << 31) - 1)
212 struct kvm_memory_slot {
214 unsigned long npages;
217 unsigned long *dirty_bitmap;
218 struct kvm_arch_memory_slot arch;
219 unsigned long userspace_addr;
224 static inline unsigned long kvm_dirty_bitmap_bytes(struct kvm_memory_slot *memslot)
226 return ALIGN(memslot->npages, BITS_PER_LONG) / 8;
229 struct kvm_kernel_irq_routing_entry {
232 int (*set)(struct kvm_kernel_irq_routing_entry *e,
233 struct kvm *kvm, int irq_source_id, int level);
241 struct hlist_node link;
244 #ifdef __KVM_HAVE_IOAPIC
246 struct kvm_irq_routing_table {
247 int chip[KVM_NR_IRQCHIPS][KVM_IOAPIC_NUM_PINS];
248 struct kvm_kernel_irq_routing_entry *rt_entries;
251 * Array indexed by gsi. Each entry contains list of irq chips
252 * the gsi is connected to.
254 struct hlist_head map[0];
259 struct kvm_irq_routing_table {};
263 #ifndef KVM_MEM_SLOTS_NUM
264 #define KVM_MEM_SLOTS_NUM (KVM_MEMORY_SLOTS + KVM_PRIVATE_MEM_SLOTS)
269 * memslots are not sorted by id anymore, please use id_to_memslot()
270 * to get the memslot by its id.
272 struct kvm_memslots {
274 struct kvm_memory_slot memslots[KVM_MEM_SLOTS_NUM];
275 /* The mapping table from slot id to the index in memslots[]. */
276 int id_to_index[KVM_MEM_SLOTS_NUM];
281 struct mutex slots_lock;
282 struct mm_struct *mm; /* userspace tied to this vm */
283 struct kvm_memslots *memslots;
284 struct srcu_struct srcu;
285 #ifdef CONFIG_KVM_APIC_ARCHITECTURE
288 struct kvm_vcpu *vcpus[KVM_MAX_VCPUS];
289 atomic_t online_vcpus;
290 int last_boosted_vcpu;
291 struct list_head vm_list;
293 struct kvm_io_bus *buses[KVM_NR_BUSES];
294 #ifdef CONFIG_HAVE_KVM_EVENTFD
297 struct list_head items;
299 struct list_head ioeventfds;
301 struct kvm_vm_stat stat;
302 struct kvm_arch arch;
303 atomic_t users_count;
304 #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
305 struct kvm_coalesced_mmio_ring *coalesced_mmio_ring;
306 spinlock_t ring_lock;
307 struct list_head coalesced_zones;
310 struct mutex irq_lock;
311 #ifdef CONFIG_HAVE_KVM_IRQCHIP
313 * Update side is protected by irq_lock and,
314 * if configured, irqfds.lock.
316 struct kvm_irq_routing_table __rcu *irq_routing;
317 struct hlist_head mask_notifier_list;
318 struct hlist_head irq_ack_notifier_list;
321 #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
322 struct mmu_notifier mmu_notifier;
323 unsigned long mmu_notifier_seq;
324 long mmu_notifier_count;
329 #define kvm_err(fmt, ...) \
330 pr_err("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
331 #define kvm_info(fmt, ...) \
332 pr_info("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
333 #define kvm_debug(fmt, ...) \
334 pr_debug("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
335 #define kvm_pr_unimpl(fmt, ...) \
336 pr_err_ratelimited("kvm [%i]: " fmt, \
337 task_tgid_nr(current), ## __VA_ARGS__)
339 /* The guest did something we don't support. */
340 #define vcpu_unimpl(vcpu, fmt, ...) \
341 kvm_pr_unimpl("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
343 static inline struct kvm_vcpu *kvm_get_vcpu(struct kvm *kvm, int i)
346 return kvm->vcpus[i];
349 #define kvm_for_each_vcpu(idx, vcpup, kvm) \
351 idx < atomic_read(&kvm->online_vcpus) && \
352 (vcpup = kvm_get_vcpu(kvm, idx)) != NULL; \
355 #define kvm_for_each_memslot(memslot, slots) \
356 for (memslot = &slots->memslots[0]; \
357 memslot < slots->memslots + KVM_MEM_SLOTS_NUM && memslot->npages;\
360 int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id);
361 void kvm_vcpu_uninit(struct kvm_vcpu *vcpu);
363 void vcpu_load(struct kvm_vcpu *vcpu);
364 void vcpu_put(struct kvm_vcpu *vcpu);
366 int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
367 struct module *module);
370 void kvm_get_kvm(struct kvm *kvm);
371 void kvm_put_kvm(struct kvm *kvm);
372 void update_memslots(struct kvm_memslots *slots, struct kvm_memory_slot *new);
374 static inline struct kvm_memslots *kvm_memslots(struct kvm *kvm)
376 return rcu_dereference_check(kvm->memslots,
377 srcu_read_lock_held(&kvm->srcu)
378 || lockdep_is_held(&kvm->slots_lock));
381 static inline struct kvm_memory_slot *
382 id_to_memslot(struct kvm_memslots *slots, int id)
384 int index = slots->id_to_index[id];
385 struct kvm_memory_slot *slot;
387 slot = &slots->memslots[index];
389 WARN_ON(slot->id != id);
393 extern struct page *bad_page;
395 int is_error_page(struct page *page);
396 int is_error_pfn(pfn_t pfn);
397 int is_hwpoison_pfn(pfn_t pfn);
398 int is_noslot_pfn(pfn_t pfn);
399 int is_invalid_pfn(pfn_t pfn);
400 int kvm_is_error_hva(unsigned long addr);
401 int kvm_set_memory_region(struct kvm *kvm,
402 struct kvm_userspace_memory_region *mem,
404 int __kvm_set_memory_region(struct kvm *kvm,
405 struct kvm_userspace_memory_region *mem,
407 void kvm_arch_free_memslot(struct kvm_memory_slot *free,
408 struct kvm_memory_slot *dont);
409 int kvm_arch_create_memslot(struct kvm_memory_slot *slot, unsigned long npages);
410 int kvm_arch_prepare_memory_region(struct kvm *kvm,
411 struct kvm_memory_slot *memslot,
412 struct kvm_memory_slot old,
413 struct kvm_userspace_memory_region *mem,
415 void kvm_arch_commit_memory_region(struct kvm *kvm,
416 struct kvm_userspace_memory_region *mem,
417 struct kvm_memory_slot old,
419 bool kvm_largepages_enabled(void);
420 void kvm_disable_largepages(void);
421 void kvm_arch_flush_shadow(struct kvm *kvm);
423 int gfn_to_page_many_atomic(struct kvm *kvm, gfn_t gfn, struct page **pages,
426 struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
427 unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn);
428 void kvm_release_page_clean(struct page *page);
429 void kvm_release_page_dirty(struct page *page);
430 void kvm_set_page_dirty(struct page *page);
431 void kvm_set_page_accessed(struct page *page);
433 pfn_t hva_to_pfn_atomic(unsigned long addr);
434 pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn);
435 pfn_t gfn_to_pfn_async(struct kvm *kvm, gfn_t gfn, bool *async,
436 bool write_fault, bool *writable);
437 pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn);
438 pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
440 pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
441 void kvm_release_pfn_dirty(pfn_t);
442 void kvm_release_pfn_clean(pfn_t pfn);
443 void kvm_set_pfn_dirty(pfn_t pfn);
444 void kvm_set_pfn_accessed(pfn_t pfn);
445 void kvm_get_pfn(pfn_t pfn);
446 pfn_t get_fault_pfn(void);
448 int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
450 int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
452 int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len);
453 int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
454 void *data, unsigned long len);
455 int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
456 int offset, int len);
457 int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
459 int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
460 void *data, unsigned long len);
461 int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
463 int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len);
464 int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len);
465 struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
466 int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn);
467 unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn);
468 void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
469 void mark_page_dirty_in_slot(struct kvm *kvm, struct kvm_memory_slot *memslot,
472 void kvm_vcpu_block(struct kvm_vcpu *vcpu);
473 void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
474 bool kvm_vcpu_yield_to(struct kvm_vcpu *target);
475 void kvm_vcpu_on_spin(struct kvm_vcpu *vcpu);
476 void kvm_resched(struct kvm_vcpu *vcpu);
477 void kvm_load_guest_fpu(struct kvm_vcpu *vcpu);
478 void kvm_put_guest_fpu(struct kvm_vcpu *vcpu);
480 void kvm_flush_remote_tlbs(struct kvm *kvm);
481 void kvm_reload_remote_mmus(struct kvm *kvm);
483 long kvm_arch_dev_ioctl(struct file *filp,
484 unsigned int ioctl, unsigned long arg);
485 long kvm_arch_vcpu_ioctl(struct file *filp,
486 unsigned int ioctl, unsigned long arg);
487 int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf);
489 int kvm_dev_ioctl_check_extension(long ext);
491 int kvm_get_dirty_log(struct kvm *kvm,
492 struct kvm_dirty_log *log, int *is_dirty);
493 int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
494 struct kvm_dirty_log *log);
496 int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
498 kvm_userspace_memory_region *mem,
500 long kvm_arch_vm_ioctl(struct file *filp,
501 unsigned int ioctl, unsigned long arg);
503 int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
504 int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
506 int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
507 struct kvm_translation *tr);
509 int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
510 int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
511 int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
512 struct kvm_sregs *sregs);
513 int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
514 struct kvm_sregs *sregs);
515 int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
516 struct kvm_mp_state *mp_state);
517 int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
518 struct kvm_mp_state *mp_state);
519 int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
520 struct kvm_guest_debug *dbg);
521 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run);
523 int kvm_arch_init(void *opaque);
524 void kvm_arch_exit(void);
526 int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu);
527 void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu);
529 void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu);
530 void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
531 void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
532 struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id);
533 int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu);
534 void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu);
536 int kvm_arch_vcpu_reset(struct kvm_vcpu *vcpu);
537 int kvm_arch_hardware_enable(void *garbage);
538 void kvm_arch_hardware_disable(void *garbage);
539 int kvm_arch_hardware_setup(void);
540 void kvm_arch_hardware_unsetup(void);
541 void kvm_arch_check_processor_compat(void *rtn);
542 int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu);
543 int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu);
545 void kvm_free_physmem(struct kvm *kvm);
547 void *kvm_kvzalloc(unsigned long size);
548 void kvm_kvfree(const void *addr);
550 #ifndef __KVM_HAVE_ARCH_VM_ALLOC
551 static inline struct kvm *kvm_arch_alloc_vm(void)
553 return kzalloc(sizeof(struct kvm), GFP_KERNEL);
556 static inline void kvm_arch_free_vm(struct kvm *kvm)
562 static inline wait_queue_head_t *kvm_arch_vcpu_wq(struct kvm_vcpu *vcpu)
564 #ifdef __KVM_HAVE_ARCH_WQP
565 return vcpu->arch.wqp;
571 int kvm_arch_init_vm(struct kvm *kvm, unsigned long type);
572 void kvm_arch_destroy_vm(struct kvm *kvm);
573 void kvm_free_all_assigned_devices(struct kvm *kvm);
574 void kvm_arch_sync_events(struct kvm *kvm);
576 int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu);
577 void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
579 int kvm_is_mmio_pfn(pfn_t pfn);
581 struct kvm_irq_ack_notifier {
582 struct hlist_node link;
584 void (*irq_acked)(struct kvm_irq_ack_notifier *kian);
587 struct kvm_assigned_dev_kernel {
588 struct kvm_irq_ack_notifier ack_notifier;
589 struct list_head list;
594 unsigned int entries_nr;
596 bool host_irq_disabled;
598 struct msix_entry *host_msix_entries;
600 struct msix_entry *guest_msix_entries;
601 unsigned long irq_requested_type;
606 spinlock_t intx_lock;
607 spinlock_t intx_mask_lock;
609 struct pci_saved_state *pci_saved_state;
612 struct kvm_irq_mask_notifier {
613 void (*func)(struct kvm_irq_mask_notifier *kimn, bool masked);
615 struct hlist_node link;
618 void kvm_register_irq_mask_notifier(struct kvm *kvm, int irq,
619 struct kvm_irq_mask_notifier *kimn);
620 void kvm_unregister_irq_mask_notifier(struct kvm *kvm, int irq,
621 struct kvm_irq_mask_notifier *kimn);
622 void kvm_fire_mask_notifiers(struct kvm *kvm, unsigned irqchip, unsigned pin,
625 #ifdef __KVM_HAVE_IOAPIC
626 void kvm_get_intr_delivery_bitmask(struct kvm_ioapic *ioapic,
627 union kvm_ioapic_redirect_entry *entry,
628 unsigned long *deliver_bitmask);
630 int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level);
631 int kvm_set_msi(struct kvm_kernel_irq_routing_entry *irq_entry, struct kvm *kvm,
632 int irq_source_id, int level);
633 void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin);
634 void kvm_register_irq_ack_notifier(struct kvm *kvm,
635 struct kvm_irq_ack_notifier *kian);
636 void kvm_unregister_irq_ack_notifier(struct kvm *kvm,
637 struct kvm_irq_ack_notifier *kian);
638 int kvm_request_irq_source_id(struct kvm *kvm);
639 void kvm_free_irq_source_id(struct kvm *kvm, int irq_source_id);
641 /* For vcpu->arch.iommu_flags */
642 #define KVM_IOMMU_CACHE_COHERENCY 0x1
644 #ifdef CONFIG_IOMMU_API
645 int kvm_iommu_map_pages(struct kvm *kvm, struct kvm_memory_slot *slot);
646 void kvm_iommu_unmap_pages(struct kvm *kvm, struct kvm_memory_slot *slot);
647 int kvm_iommu_map_guest(struct kvm *kvm);
648 int kvm_iommu_unmap_guest(struct kvm *kvm);
649 int kvm_assign_device(struct kvm *kvm,
650 struct kvm_assigned_dev_kernel *assigned_dev);
651 int kvm_deassign_device(struct kvm *kvm,
652 struct kvm_assigned_dev_kernel *assigned_dev);
653 #else /* CONFIG_IOMMU_API */
654 static inline int kvm_iommu_map_pages(struct kvm *kvm,
655 struct kvm_memory_slot *slot)
660 static inline void kvm_iommu_unmap_pages(struct kvm *kvm,
661 struct kvm_memory_slot *slot)
665 static inline int kvm_iommu_map_guest(struct kvm *kvm)
670 static inline int kvm_iommu_unmap_guest(struct kvm *kvm)
675 static inline int kvm_assign_device(struct kvm *kvm,
676 struct kvm_assigned_dev_kernel *assigned_dev)
681 static inline int kvm_deassign_device(struct kvm *kvm,
682 struct kvm_assigned_dev_kernel *assigned_dev)
686 #endif /* CONFIG_IOMMU_API */
688 static inline void kvm_guest_enter(void)
690 BUG_ON(preemptible());
691 account_system_vtime(current);
692 current->flags |= PF_VCPU;
693 /* KVM does not hold any references to rcu protected data when it
694 * switches CPU into a guest mode. In fact switching to a guest mode
695 * is very similar to exiting to userspase from rcu point of view. In
696 * addition CPU may stay in a guest mode for quite a long time (up to
697 * one time slice). Lets treat guest mode as quiescent state, just like
698 * we do with user-mode execution.
700 rcu_virt_note_context_switch(smp_processor_id());
703 static inline void kvm_guest_exit(void)
705 account_system_vtime(current);
706 current->flags &= ~PF_VCPU;
710 * search_memslots() and __gfn_to_memslot() are here because they are
711 * used in non-modular code in arch/powerpc/kvm/book3s_hv_rm_mmu.c.
712 * gfn_to_memslot() itself isn't here as an inline because that would
713 * bloat other code too much.
715 static inline struct kvm_memory_slot *
716 search_memslots(struct kvm_memslots *slots, gfn_t gfn)
718 struct kvm_memory_slot *memslot;
720 kvm_for_each_memslot(memslot, slots)
721 if (gfn >= memslot->base_gfn &&
722 gfn < memslot->base_gfn + memslot->npages)
728 static inline struct kvm_memory_slot *
729 __gfn_to_memslot(struct kvm_memslots *slots, gfn_t gfn)
731 return search_memslots(slots, gfn);
734 static inline int memslot_id(struct kvm *kvm, gfn_t gfn)
736 return gfn_to_memslot(kvm, gfn)->id;
739 static inline gfn_t gfn_to_index(gfn_t gfn, gfn_t base_gfn, int level)
741 /* KVM_HPAGE_GFN_SHIFT(PT_PAGE_TABLE_LEVEL) must be 0. */
742 return (gfn >> KVM_HPAGE_GFN_SHIFT(level)) -
743 (base_gfn >> KVM_HPAGE_GFN_SHIFT(level));
747 hva_to_gfn_memslot(unsigned long hva, struct kvm_memory_slot *slot)
749 gfn_t gfn_offset = (hva - slot->userspace_addr) >> PAGE_SHIFT;
751 return slot->base_gfn + gfn_offset;
754 static inline unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot,
757 return slot->userspace_addr + (gfn - slot->base_gfn) * PAGE_SIZE;
760 static inline gpa_t gfn_to_gpa(gfn_t gfn)
762 return (gpa_t)gfn << PAGE_SHIFT;
765 static inline gfn_t gpa_to_gfn(gpa_t gpa)
767 return (gfn_t)(gpa >> PAGE_SHIFT);
770 static inline hpa_t pfn_to_hpa(pfn_t pfn)
772 return (hpa_t)pfn << PAGE_SHIFT;
775 static inline void kvm_migrate_timers(struct kvm_vcpu *vcpu)
777 set_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests);
785 struct kvm_stats_debugfs_item {
788 enum kvm_stat_kind kind;
789 struct dentry *dentry;
791 extern struct kvm_stats_debugfs_item debugfs_entries[];
792 extern struct dentry *kvm_debugfs_dir;
794 #if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
795 static inline int mmu_notifier_retry(struct kvm_vcpu *vcpu, unsigned long mmu_seq)
797 if (unlikely(vcpu->kvm->mmu_notifier_count))
800 * Ensure the read of mmu_notifier_count happens before the read
801 * of mmu_notifier_seq. This interacts with the smp_wmb() in
802 * mmu_notifier_invalidate_range_end to make sure that the caller
803 * either sees the old (non-zero) value of mmu_notifier_count or
804 * the new (incremented) value of mmu_notifier_seq.
805 * PowerPC Book3s HV KVM calls this under a per-page lock
806 * rather than under kvm->mmu_lock, for scalability, so
807 * can't rely on kvm->mmu_lock to keep things ordered.
810 if (vcpu->kvm->mmu_notifier_seq != mmu_seq)
816 #ifdef KVM_CAP_IRQ_ROUTING
818 #define KVM_MAX_IRQ_ROUTES 1024
820 int kvm_setup_default_irq_routing(struct kvm *kvm);
821 int kvm_set_irq_routing(struct kvm *kvm,
822 const struct kvm_irq_routing_entry *entries,
825 void kvm_free_irq_routing(struct kvm *kvm);
827 int kvm_send_userspace_msi(struct kvm *kvm, struct kvm_msi *msi);
831 static inline void kvm_free_irq_routing(struct kvm *kvm) {}
835 #ifdef CONFIG_HAVE_KVM_EVENTFD
837 void kvm_eventfd_init(struct kvm *kvm);
838 int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args);
839 void kvm_irqfd_release(struct kvm *kvm);
840 void kvm_irq_routing_update(struct kvm *, struct kvm_irq_routing_table *);
841 int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args);
845 static inline void kvm_eventfd_init(struct kvm *kvm) {}
847 static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
852 static inline void kvm_irqfd_release(struct kvm *kvm) {}
854 #ifdef CONFIG_HAVE_KVM_IRQCHIP
855 static inline void kvm_irq_routing_update(struct kvm *kvm,
856 struct kvm_irq_routing_table *irq_rt)
858 rcu_assign_pointer(kvm->irq_routing, irq_rt);
862 static inline int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args)
867 #endif /* CONFIG_HAVE_KVM_EVENTFD */
869 #ifdef CONFIG_KVM_APIC_ARCHITECTURE
870 static inline bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
872 return vcpu->kvm->bsp_vcpu_id == vcpu->vcpu_id;
875 bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu);
879 static inline bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu) { return true; }
883 #ifdef __KVM_HAVE_DEVICE_ASSIGNMENT
885 long kvm_vm_ioctl_assigned_device(struct kvm *kvm, unsigned ioctl,
890 static inline long kvm_vm_ioctl_assigned_device(struct kvm *kvm, unsigned ioctl,
898 static inline void kvm_make_request(int req, struct kvm_vcpu *vcpu)
900 set_bit(req, &vcpu->requests);
903 static inline bool kvm_check_request(int req, struct kvm_vcpu *vcpu)
905 if (test_bit(req, &vcpu->requests)) {
906 clear_bit(req, &vcpu->requests);
913 #ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
915 static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
917 vcpu->spin_loop.in_spin_loop = val;
919 static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
921 vcpu->spin_loop.dy_eligible = val;
924 #else /* !CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
926 static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
930 static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
934 static inline bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
939 #endif /* CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */