]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/kvm_host.h
KVM: document which architecture uses each request bit
[mirror_ubuntu-bionic-kernel.git] / include / linux / kvm_host.h
CommitLineData
edf88417
AK
1#ifndef __KVM_HOST_H
2#define __KVM_HOST_H
6aa8b732
AK
3
4/*
5 * This work is licensed under the terms of the GNU GPL, version 2. See
6 * the COPYING file in the top-level directory.
7 */
8
9#include <linux/types.h>
e56a7a28 10#include <linux/hardirq.h>
6aa8b732
AK
11#include <linux/list.h>
12#include <linux/mutex.h>
13#include <linux/spinlock.h>
06ff0d37
MR
14#include <linux/signal.h>
15#include <linux/sched.h>
187f1882 16#include <linux/bug.h>
6aa8b732 17#include <linux/mm.h>
b297e672 18#include <linux/mmu_notifier.h>
15ad7146 19#include <linux/preempt.h>
0937c48d 20#include <linux/msi.h>
d89f5eff 21#include <linux/slab.h>
bd2b53b2 22#include <linux/rcupdate.h>
bd80158a 23#include <linux/ratelimit.h>
83f09228 24#include <linux/err.h>
c11f11fc 25#include <linux/irqflags.h>
521921ba 26#include <linux/context_tracking.h>
1a02b270 27#include <linux/irqbypass.h>
e8edc6e0 28#include <asm/signal.h>
6aa8b732 29
6aa8b732 30#include <linux/kvm.h>
102d8325 31#include <linux/kvm_para.h>
6aa8b732 32
edf88417 33#include <linux/kvm_types.h>
d77a39d9 34
edf88417 35#include <asm/kvm_host.h>
d657a98e 36
67b29204
XG
37/*
38 * The bit 16 ~ bit 31 of kvm_memory_region::flags are internally used
39 * in kvm, other bits are visible for userspace which are defined in
40 * include/linux/kvm_h.
41 */
42#define KVM_MEMSLOT_INVALID (1UL << 16)
1050dcda 43#define KVM_MEMSLOT_INCOHERENT (1UL << 17)
67b29204 44
87da7e66
XG
45/* Two fragments for cross MMIO pages. */
46#define KVM_MAX_MMIO_FRAGMENTS 2
f78146b0 47
f481b069
PB
48#ifndef KVM_ADDRESS_SPACE_NUM
49#define KVM_ADDRESS_SPACE_NUM 1
50#endif
51
9c5b1172
XG
52/*
53 * For the normal pfn, the highest 12 bits should be zero,
81c52c56
XG
54 * so we can mask bit 62 ~ bit 52 to indicate the error pfn,
55 * mask bit 63 to indicate the noslot pfn.
9c5b1172 56 */
81c52c56
XG
57#define KVM_PFN_ERR_MASK (0x7ffULL << 52)
58#define KVM_PFN_ERR_NOSLOT_MASK (0xfffULL << 52)
59#define KVM_PFN_NOSLOT (0x1ULL << 63)
9c5b1172
XG
60
61#define KVM_PFN_ERR_FAULT (KVM_PFN_ERR_MASK)
62#define KVM_PFN_ERR_HWPOISON (KVM_PFN_ERR_MASK + 1)
81c52c56 63#define KVM_PFN_ERR_RO_FAULT (KVM_PFN_ERR_MASK + 2)
6c8ee57b 64
81c52c56
XG
65/*
66 * error pfns indicate that the gfn is in slot but faild to
67 * translate it to pfn on host.
68 */
9c5b1172 69static inline bool is_error_pfn(pfn_t pfn)
83f09228 70{
9c5b1172 71 return !!(pfn & KVM_PFN_ERR_MASK);
83f09228
XG
72}
73
81c52c56
XG
74/*
75 * error_noslot pfns indicate that the gfn can not be
76 * translated to pfn - it is not in slot or failed to
77 * translate it to pfn.
78 */
79static inline bool is_error_noslot_pfn(pfn_t pfn)
83f09228 80{
81c52c56 81 return !!(pfn & KVM_PFN_ERR_NOSLOT_MASK);
83f09228
XG
82}
83
81c52c56
XG
84/* noslot pfn indicates that the gfn is not in slot. */
85static inline bool is_noslot_pfn(pfn_t pfn)
83f09228 86{
81c52c56 87 return pfn == KVM_PFN_NOSLOT;
83f09228
XG
88}
89
bf640876
DD
90/*
91 * architectures with KVM_HVA_ERR_BAD other than PAGE_OFFSET (e.g. s390)
92 * provide own defines and kvm_is_error_hva
93 */
94#ifndef KVM_HVA_ERR_BAD
95
7068d097
XG
96#define KVM_HVA_ERR_BAD (PAGE_OFFSET)
97#define KVM_HVA_ERR_RO_BAD (PAGE_OFFSET + PAGE_SIZE)
ca3a490c
XG
98
99static inline bool kvm_is_error_hva(unsigned long addr)
100{
7068d097 101 return addr >= PAGE_OFFSET;
ca3a490c
XG
102}
103
bf640876
DD
104#endif
105
6cede2e6
XG
106#define KVM_ERR_PTR_BAD_PAGE (ERR_PTR(-ENOENT))
107
9c5b1172 108static inline bool is_error_page(struct page *page)
6cede2e6
XG
109{
110 return IS_ERR(page);
111}
112
d9e368d6
AK
113/*
114 * vcpu->requests bit members
115 */
3176bc3e 116#define KVM_REQ_TLB_FLUSH 0
2e53d63a 117#define KVM_REQ_MMU_RELOAD 3
06e05645 118#define KVM_REQ_PENDING_TIMER 5
d7690175 119#define KVM_REQ_UNHALT 6
0cd31043
PB
120
121/* x86-specific requests */
122#define KVM_REQ_MIGRATE_TIMER 1
123#define KVM_REQ_REPORT_TPR_ACCESS 2
124#define KVM_REQ_TRIPLE_FAULT 4
4731d4c7 125#define KVM_REQ_MMU_SYNC 7
34c238a1 126#define KVM_REQ_CLOCK_UPDATE 8
6c71f8ae 127/* 9 is unused */
02daab21 128#define KVM_REQ_DEACTIVATE_FPU 10
3842d135 129#define KVM_REQ_EVENT 11
af585b92 130#define KVM_REQ_APF_HALT 12
c9aaa895 131#define KVM_REQ_STEAL_UPDATE 13
7460fb4a 132#define KVM_REQ_NMI 14
730dca42
JK
133#define KVM_REQ_PMU 15
134#define KVM_REQ_PMI 16
730dca42
JK
135#define KVM_REQ_MASTERCLOCK_UPDATE 18
136#define KVM_REQ_MCLOCK_INPROGRESS 19
730dca42 137#define KVM_REQ_SCAN_IOAPIC 21
0061d53d 138#define KVM_REQ_GLOBAL_CLOCK_UPDATE 22
4256f43f 139#define KVM_REQ_APIC_PAGE_RELOAD 25
64d60670 140#define KVM_REQ_SMI 26
2ce79189 141#define KVM_REQ_HV_CRASH 27
7543a635 142#define KVM_REQ_IOAPIC_EOI_EXIT 28
e516cebb 143#define KVM_REQ_HV_RESET 29
db397571 144#define KVM_REQ_HV_EXIT 30
1f4b34f8 145#define KVM_REQ_HV_STIMER 31
6aa8b732 146
0cd31043
PB
147/* PPC-specific requests */
148#define KVM_REQ_WATCHDOG 17
149#define KVM_REQ_EPR_EXIT 20
150
151/* s390-specific requests */
152#define KVM_REQ_ENABLE_IBS 23
153#define KVM_REQ_DISABLE_IBS 24
154
7a84428a
AW
155#define KVM_USERSPACE_IRQ_SOURCE_ID 0
156#define KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID 1
5550af4d 157
c16f862d 158extern struct kmem_cache *kvm_vcpu_cache;
6aa8b732 159
2f303b74 160extern spinlock_t kvm_lock;
fc1b7492
GL
161extern struct list_head vm_list;
162
743eeb0b
SL
163struct kvm_io_range {
164 gpa_t addr;
165 int len;
166 struct kvm_io_device *dev;
167};
168
786a9f88 169#define NR_IOBUS_DEVS 1000
a1300716 170
2eeb2e94 171struct kvm_io_bus {
6ea34c9b
AK
172 int dev_count;
173 int ioeventfd_count;
a1300716 174 struct kvm_io_range range[];
2eeb2e94
GH
175};
176
e93f8a0f
MT
177enum kvm_bus {
178 KVM_MMIO_BUS,
179 KVM_PIO_BUS,
060f0ce6 180 KVM_VIRTIO_CCW_NOTIFY_BUS,
68c3b4d1 181 KVM_FAST_MMIO_BUS,
e93f8a0f
MT
182 KVM_NR_BUSES
183};
184
e32edf4f 185int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
e93f8a0f 186 int len, const void *val);
e32edf4f
NN
187int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
188 gpa_t addr, int len, const void *val, long cookie);
189int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
190 int len, void *val);
743eeb0b
SL
191int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
192 int len, struct kvm_io_device *dev);
e93f8a0f
MT
193int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
194 struct kvm_io_device *dev);
2eeb2e94 195
af585b92
GN
196#ifdef CONFIG_KVM_ASYNC_PF
197struct kvm_async_pf {
198 struct work_struct work;
199 struct list_head link;
200 struct list_head queue;
201 struct kvm_vcpu *vcpu;
202 struct mm_struct *mm;
203 gva_t gva;
204 unsigned long addr;
205 struct kvm_arch_async_pf arch;
f2e10669 206 bool wakeup_all;
af585b92
GN
207};
208
209void kvm_clear_async_pf_completion_queue(struct kvm_vcpu *vcpu);
210void kvm_check_async_pf_completion(struct kvm_vcpu *vcpu);
e0ead41a 211int kvm_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, unsigned long hva,
af585b92 212 struct kvm_arch_async_pf *arch);
344d9588 213int kvm_async_pf_wakeup_all(struct kvm_vcpu *vcpu);
af585b92
GN
214#endif
215
6b7e2d09
XG
216enum {
217 OUTSIDE_GUEST_MODE,
218 IN_GUEST_MODE,
c142786c
AK
219 EXITING_GUEST_MODE,
220 READING_SHADOW_PAGE_TABLES,
6b7e2d09
XG
221};
222
f78146b0
AK
223/*
224 * Sometimes a large or cross-page mmio needs to be broken up into separate
225 * exits for userspace servicing.
226 */
227struct kvm_mmio_fragment {
228 gpa_t gpa;
229 void *data;
230 unsigned len;
231};
232
d17fbbf7
ZX
233struct kvm_vcpu {
234 struct kvm *kvm;
31bb117e 235#ifdef CONFIG_PREEMPT_NOTIFIERS
d17fbbf7 236 struct preempt_notifier preempt_notifier;
31bb117e 237#endif
6b7e2d09 238 int cpu;
d17fbbf7 239 int vcpu_id;
6b7e2d09
XG
240 int srcu_idx;
241 int mode;
d17fbbf7 242 unsigned long requests;
d0bfb940 243 unsigned long guest_debug;
6b7e2d09 244
bf9f6ac8
FW
245 int pre_pcpu;
246 struct list_head blocked_vcpu_list;
247
6b7e2d09
XG
248 struct mutex mutex;
249 struct kvm_run *run;
f656ce01 250
d17fbbf7 251 int fpu_active;
2acf923e 252 int guest_fpu_loaded, guest_xcr0_loaded;
653f52c3 253 unsigned char fpu_counter;
d17fbbf7 254 wait_queue_head_t wq;
34bb10b7 255 struct pid *pid;
d17fbbf7
ZX
256 int sigset_active;
257 sigset_t sigset;
258 struct kvm_vcpu_stat stat;
19020f8a 259 unsigned int halt_poll_ns;
d17fbbf7 260
34c16eec 261#ifdef CONFIG_HAS_IOMEM
d17fbbf7
ZX
262 int mmio_needed;
263 int mmio_read_completed;
264 int mmio_is_write;
f78146b0
AK
265 int mmio_cur_fragment;
266 int mmio_nr_fragments;
267 struct kvm_mmio_fragment mmio_fragments[KVM_MAX_MMIO_FRAGMENTS];
34c16eec 268#endif
1165f5fe 269
af585b92
GN
270#ifdef CONFIG_KVM_ASYNC_PF
271 struct {
272 u32 queued;
273 struct list_head queue;
274 struct list_head done;
275 spinlock_t lock;
276 } async_pf;
277#endif
278
4c088493
R
279#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
280 /*
281 * Cpu relax intercept or pause loop exit optimization
282 * in_spin_loop: set when a vcpu does a pause loop exit
283 * or cpu relax intercepted.
284 * dy_eligible: indicates whether vcpu is eligible for directed yield.
285 */
286 struct {
287 bool in_spin_loop;
288 bool dy_eligible;
289 } spin_loop;
290#endif
3a08a8f9 291 bool preempted;
d657a98e
ZX
292 struct kvm_vcpu_arch arch;
293};
294
6b7e2d09
XG
295static inline int kvm_vcpu_exiting_guest_mode(struct kvm_vcpu *vcpu)
296{
297 return cmpxchg(&vcpu->mode, IN_GUEST_MODE, EXITING_GUEST_MODE);
298}
299
660c22c4
TY
300/*
301 * Some of the bitops functions do not support too long bitmaps.
302 * This number must be determined not to exceed such limits.
303 */
304#define KVM_MEM_MAX_NR_PAGES ((1UL << 31) - 1)
305
6aa8b732
AK
306struct kvm_memory_slot {
307 gfn_t base_gfn;
308 unsigned long npages;
6aa8b732 309 unsigned long *dirty_bitmap;
db3fe4eb 310 struct kvm_arch_memory_slot arch;
8a7ae055 311 unsigned long userspace_addr;
6104f472 312 u32 flags;
1e702d9a 313 short id;
6aa8b732
AK
314};
315
87bf6e7d
TY
316static inline unsigned long kvm_dirty_bitmap_bytes(struct kvm_memory_slot *memslot)
317{
318 return ALIGN(memslot->npages, BITS_PER_LONG) / 8;
319}
320
84223598
CH
321struct kvm_s390_adapter_int {
322 u64 ind_addr;
323 u64 summary_addr;
324 u64 ind_offset;
325 u32 summary_offset;
326 u32 adapter_id;
327};
328
5c919412
AS
329struct kvm_hv_sint {
330 u32 vcpu;
331 u32 sint;
332};
333
399ec807
AK
334struct kvm_kernel_irq_routing_entry {
335 u32 gsi;
5116d8f6 336 u32 type;
4925663a 337 int (*set)(struct kvm_kernel_irq_routing_entry *e,
aa2fbe6d
YZ
338 struct kvm *kvm, int irq_source_id, int level,
339 bool line_status);
399ec807
AK
340 union {
341 struct {
342 unsigned irqchip;
343 unsigned pin;
344 } irqchip;
79950e10 345 struct msi_msg msi;
84223598 346 struct kvm_s390_adapter_int adapter;
5c919412 347 struct kvm_hv_sint hv_sint;
399ec807 348 };
46e624b9
GN
349 struct hlist_node link;
350};
351
b053b2ae
SR
352#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
353struct kvm_irq_routing_table {
354 int chip[KVM_NR_IRQCHIPS][KVM_IRQCHIP_NUM_PINS];
355 u32 nr_rt_entries;
356 /*
357 * Array indexed by gsi. Each entry contains list of irq chips
358 * the gsi is connected to.
359 */
360 struct hlist_head map[0];
361};
362#endif
363
0743247f
AW
364#ifndef KVM_PRIVATE_MEM_SLOTS
365#define KVM_PRIVATE_MEM_SLOTS 0
366#endif
367
93a5cef0 368#ifndef KVM_MEM_SLOTS_NUM
bbacc0c1 369#define KVM_MEM_SLOTS_NUM (KVM_USER_MEM_SLOTS + KVM_PRIVATE_MEM_SLOTS)
93a5cef0
XG
370#endif
371
f481b069
PB
372#ifndef __KVM_VCPU_MULTIPLE_ADDRESS_SPACE
373static inline int kvm_arch_vcpu_memslots_id(struct kvm_vcpu *vcpu)
374{
375 return 0;
376}
377#endif
378
bf3e05bc
XG
379/*
380 * Note:
381 * memslots are not sorted by id anymore, please use id_to_memslot()
382 * to get the memslot by its id.
383 */
46a26bf5 384struct kvm_memslots {
49c7754c 385 u64 generation;
93a5cef0 386 struct kvm_memory_slot memslots[KVM_MEM_SLOTS_NUM];
f85e2cb5 387 /* The mapping table from slot id to the index in memslots[]. */
1e702d9a 388 short id_to_index[KVM_MEM_SLOTS_NUM];
d4ae84a0 389 atomic_t lru_slot;
9c1a5d38 390 int used_slots;
46a26bf5
MT
391};
392
6aa8b732 393struct kvm {
aaee2c94 394 spinlock_t mmu_lock;
79fac95e 395 struct mutex slots_lock;
6d4e4c4f 396 struct mm_struct *mm; /* userspace tied to this vm */
f481b069 397 struct kvm_memslots *memslots[KVM_ADDRESS_SPACE_NUM];
bc6678a3 398 struct srcu_struct srcu;
719d93cd 399 struct srcu_struct irq_srcu;
fb3f0f51 400 struct kvm_vcpu *vcpus[KVM_MAX_VCPUS];
73880c80 401 atomic_t online_vcpus;
217ece61 402 int last_boosted_vcpu;
133de902 403 struct list_head vm_list;
60eead79 404 struct mutex lock;
e93f8a0f 405 struct kvm_io_bus *buses[KVM_NR_BUSES];
721eecbf
GH
406#ifdef CONFIG_HAVE_KVM_EVENTFD
407 struct {
408 spinlock_t lock;
409 struct list_head items;
7a84428a
AW
410 struct list_head resampler_list;
411 struct mutex resampler_lock;
721eecbf 412 } irqfds;
d34e6b17 413 struct list_head ioeventfds;
721eecbf 414#endif
ba1389b7 415 struct kvm_vm_stat stat;
d69fb81f 416 struct kvm_arch arch;
d39f13b0 417 atomic_t users_count;
5f94c174 418#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
5f94c174 419 struct kvm_coalesced_mmio_ring *coalesced_mmio_ring;
2b3c246a
SL
420 spinlock_t ring_lock;
421 struct list_head coalesced_zones;
5f94c174 422#endif
e930bffe 423
60eead79 424 struct mutex irq_lock;
75858a84 425#ifdef CONFIG_HAVE_KVM_IRQCHIP
bd2b53b2 426 /*
9957c86d 427 * Update side is protected by irq_lock.
bd2b53b2 428 */
4b6a2872 429 struct kvm_irq_routing_table __rcu *irq_routing;
c77dcacb
PB
430#endif
431#ifdef CONFIG_HAVE_KVM_IRQFD
136bdfee 432 struct hlist_head irq_ack_notifier_list;
75858a84
AK
433#endif
434
36c1ed82 435#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
e930bffe
AA
436 struct mmu_notifier mmu_notifier;
437 unsigned long mmu_notifier_seq;
438 long mmu_notifier_count;
439#endif
a086f6a1 440 long tlbs_dirty;
07f0a7bd 441 struct list_head devices;
6aa8b732
AK
442};
443
a737f256
CD
444#define kvm_err(fmt, ...) \
445 pr_err("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
446#define kvm_info(fmt, ...) \
447 pr_info("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
448#define kvm_debug(fmt, ...) \
449 pr_debug("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
450#define kvm_pr_unimpl(fmt, ...) \
451 pr_err_ratelimited("kvm [%i]: " fmt, \
452 task_tgid_nr(current), ## __VA_ARGS__)
f0242478 453
a737f256
CD
454/* The guest did something we don't support. */
455#define vcpu_unimpl(vcpu, fmt, ...) \
671d9ab3
BP
456 kvm_pr_unimpl("vcpu%i, guest rIP: 0x%lx " fmt, \
457 (vcpu)->vcpu_id, kvm_rip_read(vcpu), ## __VA_ARGS__)
6aa8b732 458
ee86dbc6
AS
459#define vcpu_debug(vcpu, fmt, ...) \
460 kvm_debug("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
765eaa0f
AS
461#define vcpu_err(vcpu, fmt, ...) \
462 kvm_err("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
ee86dbc6 463
988a2cae
GN
464static inline struct kvm_vcpu *kvm_get_vcpu(struct kvm *kvm, int i)
465{
dd489240
PB
466 /* Pairs with smp_wmb() in kvm_vm_ioctl_create_vcpu, in case
467 * the caller has read kvm->online_vcpus before (as is the case
468 * for kvm_for_each_vcpu, for example).
469 */
988a2cae
GN
470 smp_rmb();
471 return kvm->vcpus[i];
472}
473
474#define kvm_for_each_vcpu(idx, vcpup, kvm) \
b42fc3cb
JM
475 for (idx = 0; \
476 idx < atomic_read(&kvm->online_vcpus) && \
477 (vcpup = kvm_get_vcpu(kvm, idx)) != NULL; \
478 idx++)
988a2cae 479
db27a7a3
DH
480static inline struct kvm_vcpu *kvm_get_vcpu_by_id(struct kvm *kvm, int id)
481{
482 struct kvm_vcpu *vcpu;
483 int i;
484
c896939f
DH
485 if (id < 0 || id >= KVM_MAX_VCPUS)
486 return NULL;
487 vcpu = kvm_get_vcpu(kvm, id);
488 if (vcpu && vcpu->vcpu_id == id)
489 return vcpu;
db27a7a3
DH
490 kvm_for_each_vcpu(i, vcpu, kvm)
491 if (vcpu->vcpu_id == id)
492 return vcpu;
493 return NULL;
494}
495
be6ba0f0
XG
496#define kvm_for_each_memslot(memslot, slots) \
497 for (memslot = &slots->memslots[0]; \
bf3e05bc
XG
498 memslot < slots->memslots + KVM_MEM_SLOTS_NUM && memslot->npages;\
499 memslot++)
be6ba0f0 500
fb3f0f51
RR
501int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id);
502void kvm_vcpu_uninit(struct kvm_vcpu *vcpu);
503
9fc77441 504int __must_check vcpu_load(struct kvm_vcpu *vcpu);
313a3dc7
CO
505void vcpu_put(struct kvm_vcpu *vcpu);
506
6ef768fa
PB
507#ifdef __KVM_HAVE_IOAPIC
508void kvm_vcpu_request_scan_ioapic(struct kvm *kvm);
abdb080f 509void kvm_arch_post_irq_routing_update(struct kvm *kvm);
6ef768fa
PB
510#else
511static inline void kvm_vcpu_request_scan_ioapic(struct kvm *kvm)
512{
513}
abdb080f 514static inline void kvm_arch_post_irq_routing_update(struct kvm *kvm)
b053b2ae
SR
515{
516}
6ef768fa
PB
517#endif
518
297e2105 519#ifdef CONFIG_HAVE_KVM_IRQFD
a0f155e9
CH
520int kvm_irqfd_init(void);
521void kvm_irqfd_exit(void);
522#else
523static inline int kvm_irqfd_init(void)
524{
525 return 0;
526}
527
528static inline void kvm_irqfd_exit(void)
529{
530}
531#endif
0ee75bea 532int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
c16f862d 533 struct module *module);
cb498ea2 534void kvm_exit(void);
6aa8b732 535
d39f13b0
IE
536void kvm_get_kvm(struct kvm *kvm);
537void kvm_put_kvm(struct kvm *kvm);
538
f481b069 539static inline struct kvm_memslots *__kvm_memslots(struct kvm *kvm, int as_id)
90d83dc3 540{
f481b069 541 return rcu_dereference_check(kvm->memslots[as_id],
90d83dc3
LJ
542 srcu_read_lock_held(&kvm->srcu)
543 || lockdep_is_held(&kvm->slots_lock));
544}
545
f481b069
PB
546static inline struct kvm_memslots *kvm_memslots(struct kvm *kvm)
547{
548 return __kvm_memslots(kvm, 0);
549}
550
8e73485c
PB
551static inline struct kvm_memslots *kvm_vcpu_memslots(struct kvm_vcpu *vcpu)
552{
f481b069
PB
553 int as_id = kvm_arch_vcpu_memslots_id(vcpu);
554
555 return __kvm_memslots(vcpu->kvm, as_id);
8e73485c
PB
556}
557
28a37544
XG
558static inline struct kvm_memory_slot *
559id_to_memslot(struct kvm_memslots *slots, int id)
560{
f85e2cb5
XG
561 int index = slots->id_to_index[id];
562 struct kvm_memory_slot *slot;
bf3e05bc 563
f85e2cb5 564 slot = &slots->memslots[index];
bf3e05bc 565
f85e2cb5
XG
566 WARN_ON(slot->id != id);
567 return slot;
28a37544
XG
568}
569
74d0727c
TY
570/*
571 * KVM_SET_USER_MEMORY_REGION ioctl allows the following operations:
572 * - create a new memory slot
573 * - delete an existing memory slot
574 * - modify an existing memory slot
575 * -- move it in the guest physical memory space
576 * -- just change its flags
577 *
578 * Since flags can be changed by some of these operations, the following
579 * differentiation is the best we can do for __kvm_set_memory_region():
580 */
581enum kvm_mr_change {
582 KVM_MR_CREATE,
583 KVM_MR_DELETE,
584 KVM_MR_MOVE,
585 KVM_MR_FLAGS_ONLY,
586};
587
210c7c4d 588int kvm_set_memory_region(struct kvm *kvm,
09170a49 589 const struct kvm_userspace_memory_region *mem);
f78e0e2e 590int __kvm_set_memory_region(struct kvm *kvm,
09170a49 591 const struct kvm_userspace_memory_region *mem);
5587027c 592void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
db3fe4eb 593 struct kvm_memory_slot *dont);
5587027c
AK
594int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
595 unsigned long npages);
15f46015 596void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots);
f7784b8e
MT
597int kvm_arch_prepare_memory_region(struct kvm *kvm,
598 struct kvm_memory_slot *memslot,
09170a49 599 const struct kvm_userspace_memory_region *mem,
7b6195a9 600 enum kvm_mr_change change);
f7784b8e 601void kvm_arch_commit_memory_region(struct kvm *kvm,
09170a49 602 const struct kvm_userspace_memory_region *mem,
8482644a 603 const struct kvm_memory_slot *old,
f36f3f28 604 const struct kvm_memory_slot *new,
8482644a 605 enum kvm_mr_change change);
db3fe4eb 606bool kvm_largepages_enabled(void);
54dee993 607void kvm_disable_largepages(void);
2df72e9b
MT
608/* flush all memory translations */
609void kvm_arch_flush_shadow_all(struct kvm *kvm);
610/* flush memory translations pointing to 'slot' */
611void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
612 struct kvm_memory_slot *slot);
a983fb23 613
d9ef13c2
PB
614int gfn_to_page_many_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
615 struct page **pages, int nr_pages);
48987781 616
954bbbc2 617struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
05da4558 618unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn);
ba6a3541 619unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable);
4d8b81ab 620unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
64d83126
CD
621unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot, gfn_t gfn,
622 bool *writable);
b4231d61
IE
623void kvm_release_page_clean(struct page *page);
624void kvm_release_page_dirty(struct page *page);
35149e21
AL
625void kvm_set_page_accessed(struct page *page);
626
365fb3fd 627pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn);
35149e21 628pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn);
612819c3
MT
629pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
630 bool *writable);
d5661048 631pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
037d92dc 632pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn);
3520469d
PB
633pfn_t __gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn, bool atomic,
634 bool *async, bool write_fault, bool *writable);
037d92dc 635
35149e21
AL
636void kvm_release_pfn_clean(pfn_t pfn);
637void kvm_set_pfn_dirty(pfn_t pfn);
638void kvm_set_pfn_accessed(pfn_t pfn);
639void kvm_get_pfn(pfn_t pfn);
640
195aefde
IE
641int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
642 int len);
7ec54588
MT
643int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
644 unsigned long len);
195aefde 645int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len);
e03b644f
GN
646int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
647 void *data, unsigned long len);
195aefde
IE
648int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
649 int offset, int len);
650int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
651 unsigned long len);
49c7754c
GN
652int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
653 void *data, unsigned long len);
654int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
8f964525 655 gpa_t gpa, unsigned long len);
195aefde
IE
656int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len);
657int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len);
6aa8b732 658struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
33e94154 659bool kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn);
8f0b1ab6 660unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn);
6aa8b732
AK
661void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
662
8e73485c
PB
663struct kvm_memslots *kvm_vcpu_memslots(struct kvm_vcpu *vcpu);
664struct kvm_memory_slot *kvm_vcpu_gfn_to_memslot(struct kvm_vcpu *vcpu, gfn_t gfn);
665pfn_t kvm_vcpu_gfn_to_pfn_atomic(struct kvm_vcpu *vcpu, gfn_t gfn);
666pfn_t kvm_vcpu_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn);
667struct page *kvm_vcpu_gfn_to_page(struct kvm_vcpu *vcpu, gfn_t gfn);
668unsigned long kvm_vcpu_gfn_to_hva(struct kvm_vcpu *vcpu, gfn_t gfn);
669unsigned long kvm_vcpu_gfn_to_hva_prot(struct kvm_vcpu *vcpu, gfn_t gfn, bool *writable);
670int kvm_vcpu_read_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, void *data, int offset,
671 int len);
672int kvm_vcpu_read_guest_atomic(struct kvm_vcpu *vcpu, gpa_t gpa, void *data,
673 unsigned long len);
674int kvm_vcpu_read_guest(struct kvm_vcpu *vcpu, gpa_t gpa, void *data,
675 unsigned long len);
676int kvm_vcpu_write_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, const void *data,
677 int offset, int len);
678int kvm_vcpu_write_guest(struct kvm_vcpu *vcpu, gpa_t gpa, const void *data,
679 unsigned long len);
680void kvm_vcpu_mark_page_dirty(struct kvm_vcpu *vcpu, gfn_t gfn);
681
8776e519 682void kvm_vcpu_block(struct kvm_vcpu *vcpu);
3217f7c2
CD
683void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu);
684void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu);
b6d33834 685void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
fa93384f 686int kvm_vcpu_yield_to(struct kvm_vcpu *target);
d255f4f2 687void kvm_vcpu_on_spin(struct kvm_vcpu *vcpu);
7702fd1f
AK
688void kvm_load_guest_fpu(struct kvm_vcpu *vcpu);
689void kvm_put_guest_fpu(struct kvm_vcpu *vcpu);
a4ee1ca4 690
d9e368d6 691void kvm_flush_remote_tlbs(struct kvm *kvm);
2e53d63a 692void kvm_reload_remote_mmus(struct kvm *kvm);
d828199e 693void kvm_make_mclock_inprogress_request(struct kvm *kvm);
3d81bc7e 694void kvm_make_scan_ioapic_request(struct kvm *kvm);
445b8236 695bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req);
6aa8b732 696
043405e1
CO
697long kvm_arch_dev_ioctl(struct file *filp,
698 unsigned int ioctl, unsigned long arg);
313a3dc7
CO
699long kvm_arch_vcpu_ioctl(struct file *filp,
700 unsigned int ioctl, unsigned long arg);
5b1c1493 701int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf);
018d00d2 702
784aa3d7 703int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext);
018d00d2 704
5bb064dc
ZX
705int kvm_get_dirty_log(struct kvm *kvm,
706 struct kvm_dirty_log *log, int *is_dirty);
ba0513b5
MS
707
708int kvm_get_dirty_log_protect(struct kvm *kvm,
709 struct kvm_dirty_log *log, bool *is_dirty);
710
3b0f1d01 711void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm,
ba0513b5
MS
712 struct kvm_memory_slot *slot,
713 gfn_t gfn_offset,
714 unsigned long mask);
715
5bb064dc
ZX
716int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
717 struct kvm_dirty_log *log);
718
aa2fbe6d
YZ
719int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level,
720 bool line_status);
1fe779f8
CO
721long kvm_arch_vm_ioctl(struct file *filp,
722 unsigned int ioctl, unsigned long arg);
313a3dc7 723
d0752060
HB
724int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
725int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
726
8b006791
ZX
727int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
728 struct kvm_translation *tr);
729
b6c7a5dc
HB
730int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
731int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
732int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
733 struct kvm_sregs *sregs);
734int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
735 struct kvm_sregs *sregs);
62d9f0db
MT
736int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
737 struct kvm_mp_state *mp_state);
738int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
739 struct kvm_mp_state *mp_state);
d0bfb940
JK
740int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
741 struct kvm_guest_debug *dbg);
b6c7a5dc
HB
742int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run);
743
f8c16bba
ZX
744int kvm_arch_init(void *opaque);
745void kvm_arch_exit(void);
043405e1 746
e9b11c17
ZX
747int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu);
748void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu);
749
e790d9ef
RK
750void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu);
751
e9b11c17
ZX
752void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu);
753void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
754void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
755struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id);
26e5215f 756int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu);
31928aa5 757void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu);
d40ccc62 758void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu);
e9b11c17 759
13a34e06
RK
760int kvm_arch_hardware_enable(void);
761void kvm_arch_hardware_disable(void);
e9b11c17
ZX
762int kvm_arch_hardware_setup(void);
763void kvm_arch_hardware_unsetup(void);
764void kvm_arch_check_processor_compat(void *rtn);
1d737c8a 765int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu);
b6d33834 766int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu);
e9b11c17 767
c1a7b32a 768void *kvm_kvzalloc(unsigned long size);
c1a7b32a 769
d89f5eff
JK
770#ifndef __KVM_HAVE_ARCH_VM_ALLOC
771static inline struct kvm *kvm_arch_alloc_vm(void)
772{
773 return kzalloc(sizeof(struct kvm), GFP_KERNEL);
774}
775
776static inline void kvm_arch_free_vm(struct kvm *kvm)
777{
778 kfree(kvm);
779}
780#endif
781
e0f0bbc5
AW
782#ifdef __KVM_HAVE_ARCH_NONCOHERENT_DMA
783void kvm_arch_register_noncoherent_dma(struct kvm *kvm);
784void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm);
785bool kvm_arch_has_noncoherent_dma(struct kvm *kvm);
786#else
787static inline void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
788{
789}
790
791static inline void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
792{
793}
794
795static inline bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
796{
797 return false;
798}
799#endif
5544eb9b
PB
800#ifdef __KVM_HAVE_ARCH_ASSIGNED_DEVICE
801void kvm_arch_start_assignment(struct kvm *kvm);
802void kvm_arch_end_assignment(struct kvm *kvm);
803bool kvm_arch_has_assigned_device(struct kvm *kvm);
804#else
805static inline void kvm_arch_start_assignment(struct kvm *kvm)
806{
807}
808
809static inline void kvm_arch_end_assignment(struct kvm *kvm)
810{
811}
812
813static inline bool kvm_arch_has_assigned_device(struct kvm *kvm)
814{
815 return false;
816}
817#endif
e0f0bbc5 818
b6d33834
CD
819static inline wait_queue_head_t *kvm_arch_vcpu_wq(struct kvm_vcpu *vcpu)
820{
2246f8b5
AG
821#ifdef __KVM_HAVE_ARCH_WQP
822 return vcpu->arch.wqp;
823#else
b6d33834 824 return &vcpu->wq;
b6d33834 825#endif
2246f8b5 826}
b6d33834 827
01c94e64
EA
828#ifdef __KVM_HAVE_ARCH_INTC_INITIALIZED
829/*
830 * returns true if the virtual interrupt controller is initialized and
831 * ready to accept virtual IRQ. On some architectures the virtual interrupt
832 * controller is dynamically instantiated and this is not always true.
833 */
834bool kvm_arch_intc_initialized(struct kvm *kvm);
835#else
836static inline bool kvm_arch_intc_initialized(struct kvm *kvm)
837{
838 return true;
839}
840#endif
841
e08b9637 842int kvm_arch_init_vm(struct kvm *kvm, unsigned long type);
d19a9cd2 843void kvm_arch_destroy_vm(struct kvm *kvm);
ad8ba2cd 844void kvm_arch_sync_events(struct kvm *kvm);
e9b11c17 845
3d80840d 846int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu);
5736199a 847void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
682c59a3 848
bf4bea8e 849bool kvm_is_reserved_pfn(pfn_t pfn);
c77fb9dc 850
62c476c7
BAY
851struct kvm_irq_ack_notifier {
852 struct hlist_node link;
853 unsigned gsi;
854 void (*irq_acked)(struct kvm_irq_ack_notifier *kian);
855};
856
9957c86d
PM
857int kvm_irq_map_gsi(struct kvm *kvm,
858 struct kvm_kernel_irq_routing_entry *entries, int gsi);
859int kvm_irq_map_chip_pin(struct kvm *kvm, unsigned irqchip, unsigned pin);
8ba918d4 860
aa2fbe6d
YZ
861int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level,
862 bool line_status);
bd2b53b2 863int kvm_set_msi(struct kvm_kernel_irq_routing_entry *irq_entry, struct kvm *kvm,
aa2fbe6d 864 int irq_source_id, int level, bool line_status);
b97e6de9
PB
865int kvm_arch_set_irq_inatomic(struct kvm_kernel_irq_routing_entry *e,
866 struct kvm *kvm, int irq_source_id,
867 int level, bool line_status);
c7c9c56c 868bool kvm_irq_has_notifier(struct kvm *kvm, unsigned irqchip, unsigned pin);
ba1aefcd 869void kvm_notify_acked_gsi(struct kvm *kvm, int gsi);
44882eed 870void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin);
3de42dc0
XZ
871void kvm_register_irq_ack_notifier(struct kvm *kvm,
872 struct kvm_irq_ack_notifier *kian);
fa40a821
MT
873void kvm_unregister_irq_ack_notifier(struct kvm *kvm,
874 struct kvm_irq_ack_notifier *kian);
5550af4d
SY
875int kvm_request_irq_source_id(struct kvm *kvm);
876void kvm_free_irq_source_id(struct kvm *kvm, int irq_source_id);
62c476c7 877
2a5bab10 878#ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
3ad26d81 879int kvm_iommu_map_pages(struct kvm *kvm, struct kvm_memory_slot *slot);
32f6daad 880void kvm_iommu_unmap_pages(struct kvm *kvm, struct kvm_memory_slot *slot);
2a5bab10 881#else
62c476c7 882static inline int kvm_iommu_map_pages(struct kvm *kvm,
d7a79b6c 883 struct kvm_memory_slot *slot)
62c476c7
BAY
884{
885 return 0;
886}
887
32f6daad
AW
888static inline void kvm_iommu_unmap_pages(struct kvm *kvm,
889 struct kvm_memory_slot *slot)
890{
891}
2a5bab10 892#endif
62c476c7 893
0097d12e
CB
894/* must be called with irqs disabled */
895static inline void __kvm_guest_enter(void)
c11f11fc 896{
c11f11fc 897 guest_enter();
8fa22068
GN
898 /* KVM does not hold any references to rcu protected data when it
899 * switches CPU into a guest mode. In fact switching to a guest mode
81e87e26 900 * is very similar to exiting to userspace from rcu point of view. In
8fa22068
GN
901 * addition CPU may stay in a guest mode for quite a long time (up to
902 * one time slice). Lets treat guest mode as quiescent state, just like
903 * we do with user-mode execution.
904 */
126a6a54
RR
905 if (!context_tracking_cpu_is_enabled())
906 rcu_virt_note_context_switch(smp_processor_id());
d172fcd3
LV
907}
908
0097d12e
CB
909/* must be called with irqs disabled */
910static inline void __kvm_guest_exit(void)
911{
912 guest_exit();
913}
914
915static inline void kvm_guest_enter(void)
916{
917 unsigned long flags;
918
919 local_irq_save(flags);
920 __kvm_guest_enter();
921 local_irq_restore(flags);
922}
923
d172fcd3
LV
924static inline void kvm_guest_exit(void)
925{
c11f11fc
FW
926 unsigned long flags;
927
928 local_irq_save(flags);
0097d12e 929 __kvm_guest_exit();
c11f11fc 930 local_irq_restore(flags);
d172fcd3
LV
931}
932
9d4cba7f
PM
933/*
934 * search_memslots() and __gfn_to_memslot() are here because they are
935 * used in non-modular code in arch/powerpc/kvm/book3s_hv_rm_mmu.c.
936 * gfn_to_memslot() itself isn't here as an inline because that would
937 * bloat other code too much.
938 */
939static inline struct kvm_memory_slot *
940search_memslots(struct kvm_memslots *slots, gfn_t gfn)
941{
9c1a5d38 942 int start = 0, end = slots->used_slots;
d4ae84a0 943 int slot = atomic_read(&slots->lru_slot);
9c1a5d38
IM
944 struct kvm_memory_slot *memslots = slots->memslots;
945
946 if (gfn >= memslots[slot].base_gfn &&
947 gfn < memslots[slot].base_gfn + memslots[slot].npages)
948 return &memslots[slot];
949
950 while (start < end) {
951 slot = start + (end - start) / 2;
952
953 if (gfn >= memslots[slot].base_gfn)
954 end = slot;
955 else
956 start = slot + 1;
957 }
958
959 if (gfn >= memslots[start].base_gfn &&
960 gfn < memslots[start].base_gfn + memslots[start].npages) {
961 atomic_set(&slots->lru_slot, start);
962 return &memslots[start];
963 }
9d4cba7f
PM
964
965 return NULL;
966}
967
968static inline struct kvm_memory_slot *
969__gfn_to_memslot(struct kvm_memslots *slots, gfn_t gfn)
970{
971 return search_memslots(slots, gfn);
972}
973
66a03505
GS
974static inline unsigned long
975__gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
976{
977 return slot->userspace_addr + (gfn - slot->base_gfn) * PAGE_SIZE;
978}
979
0ee8dcb8
XG
980static inline int memslot_id(struct kvm *kvm, gfn_t gfn)
981{
982 return gfn_to_memslot(kvm, gfn)->id;
983}
984
d19a748b
TY
985static inline gfn_t
986hva_to_gfn_memslot(unsigned long hva, struct kvm_memory_slot *slot)
887c08ac 987{
d19a748b
TY
988 gfn_t gfn_offset = (hva - slot->userspace_addr) >> PAGE_SHIFT;
989
990 return slot->base_gfn + gfn_offset;
887c08ac
XG
991}
992
1755fbcc
AK
993static inline gpa_t gfn_to_gpa(gfn_t gfn)
994{
995 return (gpa_t)gfn << PAGE_SHIFT;
996}
6aa8b732 997
c30a358d
JR
998static inline gfn_t gpa_to_gfn(gpa_t gpa)
999{
1000 return (gfn_t)(gpa >> PAGE_SHIFT);
1001}
1002
62c476c7
BAY
1003static inline hpa_t pfn_to_hpa(pfn_t pfn)
1004{
1005 return (hpa_t)pfn << PAGE_SHIFT;
1006}
1007
dfeec843
HC
1008static inline bool kvm_is_error_gpa(struct kvm *kvm, gpa_t gpa)
1009{
1010 unsigned long hva = gfn_to_hva(kvm, gpa_to_gfn(gpa));
1011
1012 return kvm_is_error_hva(hva);
1013}
1014
2f599714 1015static inline void kvm_migrate_timers(struct kvm_vcpu *vcpu)
2f52d58c
AK
1016{
1017 set_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests);
1018}
1019
ba1389b7
AK
1020enum kvm_stat_kind {
1021 KVM_STAT_VM,
1022 KVM_STAT_VCPU,
1023};
1024
417bc304
HB
1025struct kvm_stats_debugfs_item {
1026 const char *name;
1027 int offset;
ba1389b7 1028 enum kvm_stat_kind kind;
417bc304
HB
1029};
1030extern struct kvm_stats_debugfs_item debugfs_entries[];
76f7c879 1031extern struct dentry *kvm_debugfs_dir;
d4c9ff2d 1032
36c1ed82 1033#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
8ca40a70 1034static inline int mmu_notifier_retry(struct kvm *kvm, unsigned long mmu_seq)
e930bffe 1035{
8ca40a70 1036 if (unlikely(kvm->mmu_notifier_count))
e930bffe
AA
1037 return 1;
1038 /*
a355aa54
PM
1039 * Ensure the read of mmu_notifier_count happens before the read
1040 * of mmu_notifier_seq. This interacts with the smp_wmb() in
1041 * mmu_notifier_invalidate_range_end to make sure that the caller
1042 * either sees the old (non-zero) value of mmu_notifier_count or
1043 * the new (incremented) value of mmu_notifier_seq.
1044 * PowerPC Book3s HV KVM calls this under a per-page lock
1045 * rather than under kvm->mmu_lock, for scalability, so
1046 * can't rely on kvm->mmu_lock to keep things ordered.
e930bffe 1047 */
a355aa54 1048 smp_rmb();
8ca40a70 1049 if (kvm->mmu_notifier_seq != mmu_seq)
e930bffe
AA
1050 return 1;
1051 return 0;
1052}
1053#endif
1054
a725d56a 1055#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
399ec807 1056
f3f710bc
CH
1057#ifdef CONFIG_S390
1058#define KVM_MAX_IRQ_ROUTES 4096 //FIXME: we can have more than that...
1059#else
399ec807 1060#define KVM_MAX_IRQ_ROUTES 1024
f3f710bc 1061#endif
399ec807
AK
1062
1063int kvm_setup_default_irq_routing(struct kvm *kvm);
49df6397 1064int kvm_setup_empty_irq_routing(struct kvm *kvm);
399ec807
AK
1065int kvm_set_irq_routing(struct kvm *kvm,
1066 const struct kvm_irq_routing_entry *entries,
1067 unsigned nr,
1068 unsigned flags);
8ba918d4 1069int kvm_set_routing_entry(struct kvm_kernel_irq_routing_entry *e,
e8cde093 1070 const struct kvm_irq_routing_entry *ue);
399ec807
AK
1071void kvm_free_irq_routing(struct kvm *kvm);
1072
1073#else
1074
1075static inline void kvm_free_irq_routing(struct kvm *kvm) {}
1076
1077#endif
1078
297e2105
PM
1079int kvm_send_userspace_msi(struct kvm *kvm, struct kvm_msi *msi);
1080
721eecbf
GH
1081#ifdef CONFIG_HAVE_KVM_EVENTFD
1082
d34e6b17 1083void kvm_eventfd_init(struct kvm *kvm);
914daba8
AG
1084int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args);
1085
297e2105 1086#ifdef CONFIG_HAVE_KVM_IRQFD
d4db2935 1087int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args);
721eecbf 1088void kvm_irqfd_release(struct kvm *kvm);
9957c86d 1089void kvm_irq_routing_update(struct kvm *);
914daba8
AG
1090#else
1091static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
1092{
1093 return -EINVAL;
1094}
1095
1096static inline void kvm_irqfd_release(struct kvm *kvm) {}
1097#endif
721eecbf
GH
1098
1099#else
1100
d34e6b17 1101static inline void kvm_eventfd_init(struct kvm *kvm) {}
bd2b53b2 1102
d4db2935 1103static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
721eecbf
GH
1104{
1105 return -EINVAL;
1106}
1107
1108static inline void kvm_irqfd_release(struct kvm *kvm) {}
bd2b53b2 1109
27923eb1 1110#ifdef CONFIG_HAVE_KVM_IRQCHIP
9957c86d 1111static inline void kvm_irq_routing_update(struct kvm *kvm)
bd2b53b2 1112{
bd2b53b2 1113}
27923eb1 1114#endif
abdb080f 1115void kvm_arch_irq_routing_update(struct kvm *kvm);
bd2b53b2 1116
d34e6b17
GH
1117static inline int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args)
1118{
1119 return -ENOSYS;
1120}
721eecbf
GH
1121
1122#endif /* CONFIG_HAVE_KVM_EVENTFD */
1123
73880c80 1124#ifdef CONFIG_KVM_APIC_ARCHITECTURE
3e515705 1125bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu);
3e515705 1126#else
3e515705 1127static inline bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu) { return true; }
6aa8b732 1128#endif
bfd99ff5 1129
a8eeb04a
AK
1130static inline void kvm_make_request(int req, struct kvm_vcpu *vcpu)
1131{
1132 set_bit(req, &vcpu->requests);
1133}
1134
a8eeb04a
AK
1135static inline bool kvm_check_request(int req, struct kvm_vcpu *vcpu)
1136{
0719837c
AK
1137 if (test_bit(req, &vcpu->requests)) {
1138 clear_bit(req, &vcpu->requests);
1139 return true;
1140 } else {
1141 return false;
1142 }
a8eeb04a
AK
1143}
1144
8b415dcd
GL
1145extern bool kvm_rebooting;
1146
852b6d57
SW
1147struct kvm_device {
1148 struct kvm_device_ops *ops;
1149 struct kvm *kvm;
852b6d57 1150 void *private;
07f0a7bd 1151 struct list_head vm_node;
852b6d57
SW
1152};
1153
1154/* create, destroy, and name are mandatory */
1155struct kvm_device_ops {
1156 const char *name;
1157 int (*create)(struct kvm_device *dev, u32 type);
1158
1159 /*
1160 * Destroy is responsible for freeing dev.
1161 *
1162 * Destroy may be called before or after destructors are called
1163 * on emulated I/O regions, depending on whether a reference is
1164 * held by a vcpu or other kvm component that gets destroyed
1165 * after the emulated I/O.
1166 */
1167 void (*destroy)(struct kvm_device *dev);
1168
1169 int (*set_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1170 int (*get_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1171 int (*has_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1172 long (*ioctl)(struct kvm_device *dev, unsigned int ioctl,
1173 unsigned long arg);
1174};
1175
1176void kvm_device_get(struct kvm_device *dev);
1177void kvm_device_put(struct kvm_device *dev);
1178struct kvm_device *kvm_device_from_filp(struct file *filp);
d60eacb0 1179int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type);
571ee1b6 1180void kvm_unregister_device_ops(u32 type);
852b6d57 1181
5df554ad 1182extern struct kvm_device_ops kvm_mpic_ops;
5975a2e0 1183extern struct kvm_device_ops kvm_xics_ops;
ea2f83a7 1184extern struct kvm_device_ops kvm_arm_vgic_v2_ops;
a0675c25 1185extern struct kvm_device_ops kvm_arm_vgic_v3_ops;
5df554ad 1186
4c088493
R
1187#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
1188
1189static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
1190{
1191 vcpu->spin_loop.in_spin_loop = val;
1192}
1193static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
1194{
1195 vcpu->spin_loop.dy_eligible = val;
1196}
1197
1198#else /* !CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
1199
1200static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
1201{
1202}
1203
1204static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
1205{
1206}
4c088493 1207#endif /* CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
1a02b270
EA
1208
1209#ifdef CONFIG_HAVE_KVM_IRQ_BYPASS
1210int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *,
1211 struct irq_bypass_producer *);
1212void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *,
1213 struct irq_bypass_producer *);
1214void kvm_arch_irq_bypass_stop(struct irq_bypass_consumer *);
1215void kvm_arch_irq_bypass_start(struct irq_bypass_consumer *);
f70c20aa
FW
1216int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
1217 uint32_t guest_irq, bool set);
1a02b270 1218#endif /* CONFIG_HAVE_KVM_IRQ_BYPASS */
35181e86 1219
bfd99ff5 1220#endif