KVM: do not treat noslot pfn as a error pfn
[deliverable/linux.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>
e8edc6e0 25#include <asm/signal.h>
6aa8b732 26
6aa8b732 27#include <linux/kvm.h>
102d8325 28#include <linux/kvm_para.h>
6aa8b732 29
edf88417 30#include <linux/kvm_types.h>
d77a39d9 31
edf88417 32#include <asm/kvm_host.h>
d657a98e 33
cef4dea0
AK
34#ifndef KVM_MMIO_SIZE
35#define KVM_MMIO_SIZE 8
36#endif
37
67b29204
XG
38/*
39 * The bit 16 ~ bit 31 of kvm_memory_region::flags are internally used
40 * in kvm, other bits are visible for userspace which are defined in
41 * include/linux/kvm_h.
42 */
43#define KVM_MEMSLOT_INVALID (1UL << 16)
44
f78146b0
AK
45/*
46 * If we support unaligned MMIO, at most one fragment will be split into two:
47 */
48#ifdef KVM_UNALIGNED_MMIO
49# define KVM_EXTRA_MMIO_FRAGMENTS 1
50#else
51# define KVM_EXTRA_MMIO_FRAGMENTS 0
52#endif
53
54#define KVM_USER_MMIO_SIZE 8
55
56#define KVM_MAX_MMIO_FRAGMENTS \
57 (KVM_MMIO_SIZE / KVM_USER_MMIO_SIZE + KVM_EXTRA_MMIO_FRAGMENTS)
58
9c5b1172
XG
59/*
60 * For the normal pfn, the highest 12 bits should be zero,
81c52c56
XG
61 * so we can mask bit 62 ~ bit 52 to indicate the error pfn,
62 * mask bit 63 to indicate the noslot pfn.
9c5b1172 63 */
81c52c56
XG
64#define KVM_PFN_ERR_MASK (0x7ffULL << 52)
65#define KVM_PFN_ERR_NOSLOT_MASK (0xfffULL << 52)
66#define KVM_PFN_NOSLOT (0x1ULL << 63)
9c5b1172
XG
67
68#define KVM_PFN_ERR_FAULT (KVM_PFN_ERR_MASK)
69#define KVM_PFN_ERR_HWPOISON (KVM_PFN_ERR_MASK + 1)
81c52c56 70#define KVM_PFN_ERR_RO_FAULT (KVM_PFN_ERR_MASK + 2)
6c8ee57b 71
81c52c56
XG
72/*
73 * error pfns indicate that the gfn is in slot but faild to
74 * translate it to pfn on host.
75 */
9c5b1172 76static inline bool is_error_pfn(pfn_t pfn)
83f09228 77{
9c5b1172 78 return !!(pfn & KVM_PFN_ERR_MASK);
83f09228
XG
79}
80
81c52c56
XG
81/*
82 * error_noslot pfns indicate that the gfn can not be
83 * translated to pfn - it is not in slot or failed to
84 * translate it to pfn.
85 */
86static inline bool is_error_noslot_pfn(pfn_t pfn)
83f09228 87{
81c52c56 88 return !!(pfn & KVM_PFN_ERR_NOSLOT_MASK);
83f09228
XG
89}
90
81c52c56
XG
91/* noslot pfn indicates that the gfn is not in slot. */
92static inline bool is_noslot_pfn(pfn_t pfn)
83f09228 93{
81c52c56 94 return pfn == KVM_PFN_NOSLOT;
83f09228
XG
95}
96
7068d097
XG
97#define KVM_HVA_ERR_BAD (PAGE_OFFSET)
98#define KVM_HVA_ERR_RO_BAD (PAGE_OFFSET + PAGE_SIZE)
ca3a490c
XG
99
100static inline bool kvm_is_error_hva(unsigned long addr)
101{
7068d097 102 return addr >= PAGE_OFFSET;
ca3a490c
XG
103}
104
6cede2e6
XG
105#define KVM_ERR_PTR_BAD_PAGE (ERR_PTR(-ENOENT))
106
9c5b1172 107static inline bool is_error_page(struct page *page)
6cede2e6
XG
108{
109 return IS_ERR(page);
110}
111
d9e368d6
AK
112/*
113 * vcpu->requests bit members
114 */
3176bc3e 115#define KVM_REQ_TLB_FLUSH 0
2f52d58c 116#define KVM_REQ_MIGRATE_TIMER 1
b209749f 117#define KVM_REQ_REPORT_TPR_ACCESS 2
2e53d63a 118#define KVM_REQ_MMU_RELOAD 3
71c4dfaf 119#define KVM_REQ_TRIPLE_FAULT 4
06e05645 120#define KVM_REQ_PENDING_TIMER 5
d7690175 121#define KVM_REQ_UNHALT 6
4731d4c7 122#define KVM_REQ_MMU_SYNC 7
34c238a1 123#define KVM_REQ_CLOCK_UPDATE 8
32f88400 124#define KVM_REQ_KICK 9
02daab21 125#define KVM_REQ_DEACTIVATE_FPU 10
3842d135 126#define KVM_REQ_EVENT 11
af585b92 127#define KVM_REQ_APF_HALT 12
c9aaa895 128#define KVM_REQ_STEAL_UPDATE 13
7460fb4a 129#define KVM_REQ_NMI 14
d6185f20 130#define KVM_REQ_IMMEDIATE_EXIT 15
f5132b01
GN
131#define KVM_REQ_PMU 16
132#define KVM_REQ_PMI 17
f61c94bb 133#define KVM_REQ_WATCHDOG 18
6aa8b732 134
7a84428a
AW
135#define KVM_USERSPACE_IRQ_SOURCE_ID 0
136#define KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID 1
5550af4d 137
6c474694 138struct kvm;
6aa8b732 139struct kvm_vcpu;
c16f862d 140extern struct kmem_cache *kvm_vcpu_cache;
6aa8b732 141
743eeb0b
SL
142struct kvm_io_range {
143 gpa_t addr;
144 int len;
145 struct kvm_io_device *dev;
146};
147
786a9f88 148#define NR_IOBUS_DEVS 1000
a1300716 149
2eeb2e94
GH
150struct kvm_io_bus {
151 int dev_count;
a1300716 152 struct kvm_io_range range[];
2eeb2e94
GH
153};
154
e93f8a0f
MT
155enum kvm_bus {
156 KVM_MMIO_BUS,
157 KVM_PIO_BUS,
158 KVM_NR_BUSES
159};
160
161int kvm_io_bus_write(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
162 int len, const void *val);
163int kvm_io_bus_read(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr, int len,
bda9020e 164 void *val);
743eeb0b
SL
165int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
166 int len, struct kvm_io_device *dev);
e93f8a0f
MT
167int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
168 struct kvm_io_device *dev);
2eeb2e94 169
af585b92
GN
170#ifdef CONFIG_KVM_ASYNC_PF
171struct kvm_async_pf {
172 struct work_struct work;
173 struct list_head link;
174 struct list_head queue;
175 struct kvm_vcpu *vcpu;
176 struct mm_struct *mm;
177 gva_t gva;
178 unsigned long addr;
179 struct kvm_arch_async_pf arch;
180 struct page *page;
181 bool done;
182};
183
184void kvm_clear_async_pf_completion_queue(struct kvm_vcpu *vcpu);
185void kvm_check_async_pf_completion(struct kvm_vcpu *vcpu);
186int kvm_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, gfn_t gfn,
187 struct kvm_arch_async_pf *arch);
344d9588 188int kvm_async_pf_wakeup_all(struct kvm_vcpu *vcpu);
af585b92
GN
189#endif
190
6b7e2d09
XG
191enum {
192 OUTSIDE_GUEST_MODE,
193 IN_GUEST_MODE,
c142786c
AK
194 EXITING_GUEST_MODE,
195 READING_SHADOW_PAGE_TABLES,
6b7e2d09
XG
196};
197
f78146b0
AK
198/*
199 * Sometimes a large or cross-page mmio needs to be broken up into separate
200 * exits for userspace servicing.
201 */
202struct kvm_mmio_fragment {
203 gpa_t gpa;
204 void *data;
205 unsigned len;
206};
207
d17fbbf7
ZX
208struct kvm_vcpu {
209 struct kvm *kvm;
31bb117e 210#ifdef CONFIG_PREEMPT_NOTIFIERS
d17fbbf7 211 struct preempt_notifier preempt_notifier;
31bb117e 212#endif
6b7e2d09 213 int cpu;
d17fbbf7 214 int vcpu_id;
6b7e2d09
XG
215 int srcu_idx;
216 int mode;
d17fbbf7 217 unsigned long requests;
d0bfb940 218 unsigned long guest_debug;
6b7e2d09
XG
219
220 struct mutex mutex;
221 struct kvm_run *run;
f656ce01 222
d17fbbf7 223 int fpu_active;
2acf923e 224 int guest_fpu_loaded, guest_xcr0_loaded;
d17fbbf7 225 wait_queue_head_t wq;
34bb10b7 226 struct pid *pid;
d17fbbf7
ZX
227 int sigset_active;
228 sigset_t sigset;
229 struct kvm_vcpu_stat stat;
230
34c16eec 231#ifdef CONFIG_HAS_IOMEM
d17fbbf7
ZX
232 int mmio_needed;
233 int mmio_read_completed;
234 int mmio_is_write;
f78146b0
AK
235 int mmio_cur_fragment;
236 int mmio_nr_fragments;
237 struct kvm_mmio_fragment mmio_fragments[KVM_MAX_MMIO_FRAGMENTS];
34c16eec 238#endif
1165f5fe 239
af585b92
GN
240#ifdef CONFIG_KVM_ASYNC_PF
241 struct {
242 u32 queued;
243 struct list_head queue;
244 struct list_head done;
245 spinlock_t lock;
246 } async_pf;
247#endif
248
4c088493
R
249#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
250 /*
251 * Cpu relax intercept or pause loop exit optimization
252 * in_spin_loop: set when a vcpu does a pause loop exit
253 * or cpu relax intercepted.
254 * dy_eligible: indicates whether vcpu is eligible for directed yield.
255 */
256 struct {
257 bool in_spin_loop;
258 bool dy_eligible;
259 } spin_loop;
260#endif
d657a98e
ZX
261 struct kvm_vcpu_arch arch;
262};
263
6b7e2d09
XG
264static inline int kvm_vcpu_exiting_guest_mode(struct kvm_vcpu *vcpu)
265{
266 return cmpxchg(&vcpu->mode, IN_GUEST_MODE, EXITING_GUEST_MODE);
267}
268
660c22c4
TY
269/*
270 * Some of the bitops functions do not support too long bitmaps.
271 * This number must be determined not to exceed such limits.
272 */
273#define KVM_MEM_MAX_NR_PAGES ((1UL << 31) - 1)
274
6aa8b732
AK
275struct kvm_memory_slot {
276 gfn_t base_gfn;
277 unsigned long npages;
278 unsigned long flags;
6aa8b732 279 unsigned long *dirty_bitmap;
db3fe4eb 280 struct kvm_arch_memory_slot arch;
8a7ae055 281 unsigned long userspace_addr;
80b14b5b 282 int user_alloc;
e36d96f7 283 int id;
6aa8b732
AK
284};
285
87bf6e7d
TY
286static inline unsigned long kvm_dirty_bitmap_bytes(struct kvm_memory_slot *memslot)
287{
288 return ALIGN(memslot->npages, BITS_PER_LONG) / 8;
289}
290
399ec807
AK
291struct kvm_kernel_irq_routing_entry {
292 u32 gsi;
5116d8f6 293 u32 type;
4925663a 294 int (*set)(struct kvm_kernel_irq_routing_entry *e,
1a6e4a8c 295 struct kvm *kvm, int irq_source_id, int level);
399ec807
AK
296 union {
297 struct {
298 unsigned irqchip;
299 unsigned pin;
300 } irqchip;
79950e10 301 struct msi_msg msi;
399ec807 302 };
46e624b9
GN
303 struct hlist_node link;
304};
305
3e71f88b
GN
306#ifdef __KVM_HAVE_IOAPIC
307
46e624b9 308struct kvm_irq_routing_table {
3e71f88b 309 int chip[KVM_NR_IRQCHIPS][KVM_IOAPIC_NUM_PINS];
46e624b9
GN
310 struct kvm_kernel_irq_routing_entry *rt_entries;
311 u32 nr_rt_entries;
312 /*
313 * Array indexed by gsi. Each entry contains list of irq chips
314 * the gsi is connected to.
315 */
316 struct hlist_head map[0];
399ec807
AK
317};
318
3e71f88b
GN
319#else
320
321struct kvm_irq_routing_table {};
322
323#endif
324
93a5cef0
XG
325#ifndef KVM_MEM_SLOTS_NUM
326#define KVM_MEM_SLOTS_NUM (KVM_MEMORY_SLOTS + KVM_PRIVATE_MEM_SLOTS)
327#endif
328
bf3e05bc
XG
329/*
330 * Note:
331 * memslots are not sorted by id anymore, please use id_to_memslot()
332 * to get the memslot by its id.
333 */
46a26bf5 334struct kvm_memslots {
49c7754c 335 u64 generation;
93a5cef0 336 struct kvm_memory_slot memslots[KVM_MEM_SLOTS_NUM];
f85e2cb5
XG
337 /* The mapping table from slot id to the index in memslots[]. */
338 int id_to_index[KVM_MEM_SLOTS_NUM];
46a26bf5
MT
339};
340
6aa8b732 341struct kvm {
aaee2c94 342 spinlock_t mmu_lock;
79fac95e 343 struct mutex slots_lock;
6d4e4c4f 344 struct mm_struct *mm; /* userspace tied to this vm */
46a26bf5 345 struct kvm_memslots *memslots;
bc6678a3 346 struct srcu_struct srcu;
73880c80
GN
347#ifdef CONFIG_KVM_APIC_ARCHITECTURE
348 u32 bsp_vcpu_id;
73880c80 349#endif
fb3f0f51 350 struct kvm_vcpu *vcpus[KVM_MAX_VCPUS];
73880c80 351 atomic_t online_vcpus;
217ece61 352 int last_boosted_vcpu;
133de902 353 struct list_head vm_list;
60eead79 354 struct mutex lock;
e93f8a0f 355 struct kvm_io_bus *buses[KVM_NR_BUSES];
721eecbf
GH
356#ifdef CONFIG_HAVE_KVM_EVENTFD
357 struct {
358 spinlock_t lock;
359 struct list_head items;
7a84428a
AW
360 struct list_head resampler_list;
361 struct mutex resampler_lock;
721eecbf 362 } irqfds;
d34e6b17 363 struct list_head ioeventfds;
721eecbf 364#endif
ba1389b7 365 struct kvm_vm_stat stat;
d69fb81f 366 struct kvm_arch arch;
d39f13b0 367 atomic_t users_count;
5f94c174 368#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
5f94c174 369 struct kvm_coalesced_mmio_ring *coalesced_mmio_ring;
2b3c246a
SL
370 spinlock_t ring_lock;
371 struct list_head coalesced_zones;
5f94c174 372#endif
e930bffe 373
60eead79 374 struct mutex irq_lock;
75858a84 375#ifdef CONFIG_HAVE_KVM_IRQCHIP
bd2b53b2
MT
376 /*
377 * Update side is protected by irq_lock and,
378 * if configured, irqfds.lock.
379 */
4b6a2872 380 struct kvm_irq_routing_table __rcu *irq_routing;
75858a84 381 struct hlist_head mask_notifier_list;
136bdfee 382 struct hlist_head irq_ack_notifier_list;
75858a84
AK
383#endif
384
36c1ed82 385#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
e930bffe
AA
386 struct mmu_notifier mmu_notifier;
387 unsigned long mmu_notifier_seq;
388 long mmu_notifier_count;
389#endif
5c663a15 390 long tlbs_dirty;
6aa8b732
AK
391};
392
a737f256
CD
393#define kvm_err(fmt, ...) \
394 pr_err("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
395#define kvm_info(fmt, ...) \
396 pr_info("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
397#define kvm_debug(fmt, ...) \
398 pr_debug("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
399#define kvm_pr_unimpl(fmt, ...) \
400 pr_err_ratelimited("kvm [%i]: " fmt, \
401 task_tgid_nr(current), ## __VA_ARGS__)
f0242478 402
a737f256
CD
403/* The guest did something we don't support. */
404#define vcpu_unimpl(vcpu, fmt, ...) \
405 kvm_pr_unimpl("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
6aa8b732 406
988a2cae
GN
407static inline struct kvm_vcpu *kvm_get_vcpu(struct kvm *kvm, int i)
408{
409 smp_rmb();
410 return kvm->vcpus[i];
411}
412
413#define kvm_for_each_vcpu(idx, vcpup, kvm) \
b42fc3cb
JM
414 for (idx = 0; \
415 idx < atomic_read(&kvm->online_vcpus) && \
416 (vcpup = kvm_get_vcpu(kvm, idx)) != NULL; \
417 idx++)
988a2cae 418
be6ba0f0
XG
419#define kvm_for_each_memslot(memslot, slots) \
420 for (memslot = &slots->memslots[0]; \
bf3e05bc
XG
421 memslot < slots->memslots + KVM_MEM_SLOTS_NUM && memslot->npages;\
422 memslot++)
be6ba0f0 423
fb3f0f51
RR
424int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id);
425void kvm_vcpu_uninit(struct kvm_vcpu *vcpu);
426
9fc77441 427int __must_check vcpu_load(struct kvm_vcpu *vcpu);
313a3dc7
CO
428void vcpu_put(struct kvm_vcpu *vcpu);
429
0ee75bea 430int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
c16f862d 431 struct module *module);
cb498ea2 432void kvm_exit(void);
6aa8b732 433
d39f13b0
IE
434void kvm_get_kvm(struct kvm *kvm);
435void kvm_put_kvm(struct kvm *kvm);
be593d62 436void update_memslots(struct kvm_memslots *slots, struct kvm_memory_slot *new);
d39f13b0 437
90d83dc3
LJ
438static inline struct kvm_memslots *kvm_memslots(struct kvm *kvm)
439{
440 return rcu_dereference_check(kvm->memslots,
441 srcu_read_lock_held(&kvm->srcu)
442 || lockdep_is_held(&kvm->slots_lock));
443}
444
28a37544
XG
445static inline struct kvm_memory_slot *
446id_to_memslot(struct kvm_memslots *slots, int id)
447{
f85e2cb5
XG
448 int index = slots->id_to_index[id];
449 struct kvm_memory_slot *slot;
bf3e05bc 450
f85e2cb5 451 slot = &slots->memslots[index];
bf3e05bc 452
f85e2cb5
XG
453 WARN_ON(slot->id != id);
454 return slot;
28a37544
XG
455}
456
210c7c4d
IE
457int kvm_set_memory_region(struct kvm *kvm,
458 struct kvm_userspace_memory_region *mem,
459 int user_alloc);
f78e0e2e
SY
460int __kvm_set_memory_region(struct kvm *kvm,
461 struct kvm_userspace_memory_region *mem,
462 int user_alloc);
db3fe4eb
TY
463void kvm_arch_free_memslot(struct kvm_memory_slot *free,
464 struct kvm_memory_slot *dont);
465int kvm_arch_create_memslot(struct kvm_memory_slot *slot, unsigned long npages);
f7784b8e
MT
466int kvm_arch_prepare_memory_region(struct kvm *kvm,
467 struct kvm_memory_slot *memslot,
468 struct kvm_memory_slot old,
469 struct kvm_userspace_memory_region *mem,
470 int user_alloc);
471void kvm_arch_commit_memory_region(struct kvm *kvm,
0de10343
ZX
472 struct kvm_userspace_memory_region *mem,
473 struct kvm_memory_slot old,
474 int user_alloc);
db3fe4eb 475bool kvm_largepages_enabled(void);
54dee993 476void kvm_disable_largepages(void);
2df72e9b
MT
477/* flush all memory translations */
478void kvm_arch_flush_shadow_all(struct kvm *kvm);
479/* flush memory translations pointing to 'slot' */
480void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
481 struct kvm_memory_slot *slot);
a983fb23 482
48987781
XG
483int gfn_to_page_many_atomic(struct kvm *kvm, gfn_t gfn, struct page **pages,
484 int nr_pages);
485
954bbbc2 486struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
05da4558 487unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn);
4d8b81ab 488unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
b4231d61
IE
489void kvm_release_page_clean(struct page *page);
490void kvm_release_page_dirty(struct page *page);
35149e21
AL
491void kvm_set_page_dirty(struct page *page);
492void kvm_set_page_accessed(struct page *page);
493
365fb3fd 494pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn);
612819c3
MT
495pfn_t gfn_to_pfn_async(struct kvm *kvm, gfn_t gfn, bool *async,
496 bool write_fault, bool *writable);
35149e21 497pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn);
612819c3
MT
498pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
499 bool *writable);
d5661048 500pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
037d92dc
XG
501pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn);
502
32cad84f 503void kvm_release_pfn_dirty(pfn_t pfn);
35149e21
AL
504void kvm_release_pfn_clean(pfn_t pfn);
505void kvm_set_pfn_dirty(pfn_t pfn);
506void kvm_set_pfn_accessed(pfn_t pfn);
507void kvm_get_pfn(pfn_t pfn);
508
195aefde
IE
509int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
510 int len);
7ec54588
MT
511int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
512 unsigned long len);
195aefde 513int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len);
e03b644f
GN
514int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
515 void *data, unsigned long len);
195aefde
IE
516int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
517 int offset, int len);
518int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
519 unsigned long len);
49c7754c
GN
520int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
521 void *data, unsigned long len);
522int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
523 gpa_t gpa);
195aefde
IE
524int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len);
525int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len);
6aa8b732 526struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
e0d62c7f 527int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn);
8f0b1ab6 528unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn);
6aa8b732 529void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
49c7754c
GN
530void mark_page_dirty_in_slot(struct kvm *kvm, struct kvm_memory_slot *memslot,
531 gfn_t gfn);
6aa8b732 532
8776e519 533void kvm_vcpu_block(struct kvm_vcpu *vcpu);
b6d33834 534void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
41628d33 535bool kvm_vcpu_yield_to(struct kvm_vcpu *target);
d255f4f2 536void kvm_vcpu_on_spin(struct kvm_vcpu *vcpu);
6aa8b732 537void kvm_resched(struct kvm_vcpu *vcpu);
7702fd1f
AK
538void kvm_load_guest_fpu(struct kvm_vcpu *vcpu);
539void kvm_put_guest_fpu(struct kvm_vcpu *vcpu);
a4ee1ca4 540
d9e368d6 541void kvm_flush_remote_tlbs(struct kvm *kvm);
2e53d63a 542void kvm_reload_remote_mmus(struct kvm *kvm);
6aa8b732 543
043405e1
CO
544long kvm_arch_dev_ioctl(struct file *filp,
545 unsigned int ioctl, unsigned long arg);
313a3dc7
CO
546long kvm_arch_vcpu_ioctl(struct file *filp,
547 unsigned int ioctl, unsigned long arg);
5b1c1493 548int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf);
018d00d2
ZX
549
550int kvm_dev_ioctl_check_extension(long ext);
551
5bb064dc
ZX
552int kvm_get_dirty_log(struct kvm *kvm,
553 struct kvm_dirty_log *log, int *is_dirty);
554int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
555 struct kvm_dirty_log *log);
556
1fe779f8
CO
557int kvm_vm_ioctl_set_memory_region(struct kvm *kvm,
558 struct
559 kvm_userspace_memory_region *mem,
560 int user_alloc);
23d43cf9 561int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level);
1fe779f8
CO
562long kvm_arch_vm_ioctl(struct file *filp,
563 unsigned int ioctl, unsigned long arg);
313a3dc7 564
d0752060
HB
565int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
566int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
567
8b006791
ZX
568int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
569 struct kvm_translation *tr);
570
b6c7a5dc
HB
571int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
572int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
573int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
574 struct kvm_sregs *sregs);
575int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
576 struct kvm_sregs *sregs);
62d9f0db
MT
577int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
578 struct kvm_mp_state *mp_state);
579int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
580 struct kvm_mp_state *mp_state);
d0bfb940
JK
581int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
582 struct kvm_guest_debug *dbg);
b6c7a5dc
HB
583int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run);
584
f8c16bba
ZX
585int kvm_arch_init(void *opaque);
586void kvm_arch_exit(void);
043405e1 587
e9b11c17
ZX
588int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu);
589void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu);
590
591void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu);
592void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
593void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
594struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id);
26e5215f 595int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu);
d40ccc62 596void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu);
e9b11c17 597
10474ae8 598int kvm_arch_hardware_enable(void *garbage);
e9b11c17
ZX
599void kvm_arch_hardware_disable(void *garbage);
600int kvm_arch_hardware_setup(void);
601void kvm_arch_hardware_unsetup(void);
602void kvm_arch_check_processor_compat(void *rtn);
1d737c8a 603int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu);
b6d33834 604int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu);
e9b11c17 605
d19a9cd2
ZX
606void kvm_free_physmem(struct kvm *kvm);
607
c1a7b32a
TY
608void *kvm_kvzalloc(unsigned long size);
609void kvm_kvfree(const void *addr);
610
d89f5eff
JK
611#ifndef __KVM_HAVE_ARCH_VM_ALLOC
612static inline struct kvm *kvm_arch_alloc_vm(void)
613{
614 return kzalloc(sizeof(struct kvm), GFP_KERNEL);
615}
616
617static inline void kvm_arch_free_vm(struct kvm *kvm)
618{
619 kfree(kvm);
620}
621#endif
622
b6d33834
CD
623static inline wait_queue_head_t *kvm_arch_vcpu_wq(struct kvm_vcpu *vcpu)
624{
2246f8b5
AG
625#ifdef __KVM_HAVE_ARCH_WQP
626 return vcpu->arch.wqp;
627#else
b6d33834 628 return &vcpu->wq;
b6d33834 629#endif
2246f8b5 630}
b6d33834 631
e08b9637 632int kvm_arch_init_vm(struct kvm *kvm, unsigned long type);
d19a9cd2 633void kvm_arch_destroy_vm(struct kvm *kvm);
8a98f664 634void kvm_free_all_assigned_devices(struct kvm *kvm);
ad8ba2cd 635void kvm_arch_sync_events(struct kvm *kvm);
e9b11c17 636
3d80840d 637int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu);
5736199a 638void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
682c59a3 639
a2766325 640bool kvm_is_mmio_pfn(pfn_t pfn);
c77fb9dc 641
62c476c7
BAY
642struct kvm_irq_ack_notifier {
643 struct hlist_node link;
644 unsigned gsi;
645 void (*irq_acked)(struct kvm_irq_ack_notifier *kian);
646};
647
648struct kvm_assigned_dev_kernel {
649 struct kvm_irq_ack_notifier ack_notifier;
62c476c7
BAY
650 struct list_head list;
651 int assigned_dev_id;
ab9f4ecb 652 int host_segnr;
62c476c7
BAY
653 int host_busnr;
654 int host_devfn;
c1e01514 655 unsigned int entries_nr;
62c476c7 656 int host_irq;
defaf158 657 bool host_irq_disabled;
07700a94 658 bool pci_2_3;
c1e01514 659 struct msix_entry *host_msix_entries;
62c476c7 660 int guest_irq;
0645211c 661 struct msix_entry *guest_msix_entries;
4f906c19 662 unsigned long irq_requested_type;
5550af4d 663 int irq_source_id;
b653574a 664 int flags;
62c476c7
BAY
665 struct pci_dev *dev;
666 struct kvm *kvm;
0645211c 667 spinlock_t intx_lock;
cf9eeac4 668 spinlock_t intx_mask_lock;
1e001d49 669 char irq_name[32];
f8fcfd77 670 struct pci_saved_state *pci_saved_state;
62c476c7 671};
75858a84
AK
672
673struct kvm_irq_mask_notifier {
674 void (*func)(struct kvm_irq_mask_notifier *kimn, bool masked);
675 int irq;
676 struct hlist_node link;
677};
678
679void kvm_register_irq_mask_notifier(struct kvm *kvm, int irq,
680 struct kvm_irq_mask_notifier *kimn);
681void kvm_unregister_irq_mask_notifier(struct kvm *kvm, int irq,
682 struct kvm_irq_mask_notifier *kimn);
4a994358
GN
683void kvm_fire_mask_notifiers(struct kvm *kvm, unsigned irqchip, unsigned pin,
684 bool mask);
75858a84 685
46e624b9
GN
686#ifdef __KVM_HAVE_IOAPIC
687void kvm_get_intr_delivery_bitmask(struct kvm_ioapic *ioapic,
688 union kvm_ioapic_redirect_entry *entry,
689 unsigned long *deliver_bitmask);
690#endif
691int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level);
bd2b53b2
MT
692int kvm_set_msi(struct kvm_kernel_irq_routing_entry *irq_entry, struct kvm *kvm,
693 int irq_source_id, int level);
44882eed 694void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin);
3de42dc0
XZ
695void kvm_register_irq_ack_notifier(struct kvm *kvm,
696 struct kvm_irq_ack_notifier *kian);
fa40a821
MT
697void kvm_unregister_irq_ack_notifier(struct kvm *kvm,
698 struct kvm_irq_ack_notifier *kian);
5550af4d
SY
699int kvm_request_irq_source_id(struct kvm *kvm);
700void kvm_free_irq_source_id(struct kvm *kvm, int irq_source_id);
62c476c7 701
522c68c4
SY
702/* For vcpu->arch.iommu_flags */
703#define KVM_IOMMU_CACHE_COHERENCY 0x1
704
19de40a8 705#ifdef CONFIG_IOMMU_API
3ad26d81 706int kvm_iommu_map_pages(struct kvm *kvm, struct kvm_memory_slot *slot);
32f6daad 707void kvm_iommu_unmap_pages(struct kvm *kvm, struct kvm_memory_slot *slot);
260782bc 708int kvm_iommu_map_guest(struct kvm *kvm);
62c476c7 709int kvm_iommu_unmap_guest(struct kvm *kvm);
260782bc
WH
710int kvm_assign_device(struct kvm *kvm,
711 struct kvm_assigned_dev_kernel *assigned_dev);
0a920356
WH
712int kvm_deassign_device(struct kvm *kvm,
713 struct kvm_assigned_dev_kernel *assigned_dev);
19de40a8 714#else /* CONFIG_IOMMU_API */
62c476c7 715static inline int kvm_iommu_map_pages(struct kvm *kvm,
d7a79b6c 716 struct kvm_memory_slot *slot)
62c476c7
BAY
717{
718 return 0;
719}
720
32f6daad
AW
721static inline void kvm_iommu_unmap_pages(struct kvm *kvm,
722 struct kvm_memory_slot *slot)
723{
724}
725
260782bc 726static inline int kvm_iommu_map_guest(struct kvm *kvm)
62c476c7
BAY
727{
728 return -ENODEV;
729}
730
731static inline int kvm_iommu_unmap_guest(struct kvm *kvm)
732{
733 return 0;
734}
260782bc
WH
735
736static inline int kvm_assign_device(struct kvm *kvm,
737 struct kvm_assigned_dev_kernel *assigned_dev)
738{
739 return 0;
740}
0a920356
WH
741
742static inline int kvm_deassign_device(struct kvm *kvm,
743 struct kvm_assigned_dev_kernel *assigned_dev)
744{
745 return 0;
746}
19de40a8 747#endif /* CONFIG_IOMMU_API */
62c476c7 748
d172fcd3
LV
749static inline void kvm_guest_enter(void)
750{
8fa22068 751 BUG_ON(preemptible());
bf9fae9f 752 vtime_account(current);
d172fcd3 753 current->flags |= PF_VCPU;
8fa22068
GN
754 /* KVM does not hold any references to rcu protected data when it
755 * switches CPU into a guest mode. In fact switching to a guest mode
756 * is very similar to exiting to userspase from rcu point of view. In
757 * addition CPU may stay in a guest mode for quite a long time (up to
758 * one time slice). Lets treat guest mode as quiescent state, just like
759 * we do with user-mode execution.
760 */
761 rcu_virt_note_context_switch(smp_processor_id());
d172fcd3
LV
762}
763
764static inline void kvm_guest_exit(void)
765{
bf9fae9f 766 vtime_account(current);
d172fcd3
LV
767 current->flags &= ~PF_VCPU;
768}
769
9d4cba7f
PM
770/*
771 * search_memslots() and __gfn_to_memslot() are here because they are
772 * used in non-modular code in arch/powerpc/kvm/book3s_hv_rm_mmu.c.
773 * gfn_to_memslot() itself isn't here as an inline because that would
774 * bloat other code too much.
775 */
776static inline struct kvm_memory_slot *
777search_memslots(struct kvm_memslots *slots, gfn_t gfn)
778{
779 struct kvm_memory_slot *memslot;
780
781 kvm_for_each_memslot(memslot, slots)
782 if (gfn >= memslot->base_gfn &&
783 gfn < memslot->base_gfn + memslot->npages)
784 return memslot;
785
786 return NULL;
787}
788
789static inline struct kvm_memory_slot *
790__gfn_to_memslot(struct kvm_memslots *slots, gfn_t gfn)
791{
792 return search_memslots(slots, gfn);
793}
794
66a03505
GS
795static inline unsigned long
796__gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
797{
798 return slot->userspace_addr + (gfn - slot->base_gfn) * PAGE_SIZE;
799}
800
0ee8dcb8
XG
801static inline int memslot_id(struct kvm *kvm, gfn_t gfn)
802{
803 return gfn_to_memslot(kvm, gfn)->id;
804}
805
fb03cb6f
TY
806static inline gfn_t gfn_to_index(gfn_t gfn, gfn_t base_gfn, int level)
807{
808 /* KVM_HPAGE_GFN_SHIFT(PT_PAGE_TABLE_LEVEL) must be 0. */
809 return (gfn >> KVM_HPAGE_GFN_SHIFT(level)) -
810 (base_gfn >> KVM_HPAGE_GFN_SHIFT(level));
811}
812
d19a748b
TY
813static inline gfn_t
814hva_to_gfn_memslot(unsigned long hva, struct kvm_memory_slot *slot)
887c08ac 815{
d19a748b
TY
816 gfn_t gfn_offset = (hva - slot->userspace_addr) >> PAGE_SHIFT;
817
818 return slot->base_gfn + gfn_offset;
887c08ac
XG
819}
820
1755fbcc
AK
821static inline gpa_t gfn_to_gpa(gfn_t gfn)
822{
823 return (gpa_t)gfn << PAGE_SHIFT;
824}
6aa8b732 825
c30a358d
JR
826static inline gfn_t gpa_to_gfn(gpa_t gpa)
827{
828 return (gfn_t)(gpa >> PAGE_SHIFT);
829}
830
62c476c7
BAY
831static inline hpa_t pfn_to_hpa(pfn_t pfn)
832{
833 return (hpa_t)pfn << PAGE_SHIFT;
834}
835
2f599714 836static inline void kvm_migrate_timers(struct kvm_vcpu *vcpu)
2f52d58c
AK
837{
838 set_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests);
839}
840
ba1389b7
AK
841enum kvm_stat_kind {
842 KVM_STAT_VM,
843 KVM_STAT_VCPU,
844};
845
417bc304
HB
846struct kvm_stats_debugfs_item {
847 const char *name;
848 int offset;
ba1389b7 849 enum kvm_stat_kind kind;
417bc304
HB
850 struct dentry *dentry;
851};
852extern struct kvm_stats_debugfs_item debugfs_entries[];
76f7c879 853extern struct dentry *kvm_debugfs_dir;
d4c9ff2d 854
36c1ed82 855#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
8ca40a70 856static inline int mmu_notifier_retry(struct kvm *kvm, unsigned long mmu_seq)
e930bffe 857{
8ca40a70 858 if (unlikely(kvm->mmu_notifier_count))
e930bffe
AA
859 return 1;
860 /*
a355aa54
PM
861 * Ensure the read of mmu_notifier_count happens before the read
862 * of mmu_notifier_seq. This interacts with the smp_wmb() in
863 * mmu_notifier_invalidate_range_end to make sure that the caller
864 * either sees the old (non-zero) value of mmu_notifier_count or
865 * the new (incremented) value of mmu_notifier_seq.
866 * PowerPC Book3s HV KVM calls this under a per-page lock
867 * rather than under kvm->mmu_lock, for scalability, so
868 * can't rely on kvm->mmu_lock to keep things ordered.
e930bffe 869 */
a355aa54 870 smp_rmb();
8ca40a70 871 if (kvm->mmu_notifier_seq != mmu_seq)
e930bffe
AA
872 return 1;
873 return 0;
874}
875#endif
876
9900b4b4 877#ifdef KVM_CAP_IRQ_ROUTING
399ec807
AK
878
879#define KVM_MAX_IRQ_ROUTES 1024
880
881int kvm_setup_default_irq_routing(struct kvm *kvm);
882int kvm_set_irq_routing(struct kvm *kvm,
883 const struct kvm_irq_routing_entry *entries,
884 unsigned nr,
885 unsigned flags);
886void kvm_free_irq_routing(struct kvm *kvm);
887
07975ad3
JK
888int kvm_send_userspace_msi(struct kvm *kvm, struct kvm_msi *msi);
889
399ec807
AK
890#else
891
892static inline void kvm_free_irq_routing(struct kvm *kvm) {}
893
894#endif
895
721eecbf
GH
896#ifdef CONFIG_HAVE_KVM_EVENTFD
897
d34e6b17 898void kvm_eventfd_init(struct kvm *kvm);
d4db2935 899int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args);
721eecbf 900void kvm_irqfd_release(struct kvm *kvm);
bd2b53b2 901void kvm_irq_routing_update(struct kvm *, struct kvm_irq_routing_table *);
d34e6b17 902int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args);
721eecbf
GH
903
904#else
905
d34e6b17 906static inline void kvm_eventfd_init(struct kvm *kvm) {}
bd2b53b2 907
d4db2935 908static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
721eecbf
GH
909{
910 return -EINVAL;
911}
912
913static inline void kvm_irqfd_release(struct kvm *kvm) {}
bd2b53b2 914
27923eb1 915#ifdef CONFIG_HAVE_KVM_IRQCHIP
bd2b53b2
MT
916static inline void kvm_irq_routing_update(struct kvm *kvm,
917 struct kvm_irq_routing_table *irq_rt)
918{
919 rcu_assign_pointer(kvm->irq_routing, irq_rt);
920}
27923eb1 921#endif
bd2b53b2 922
d34e6b17
GH
923static inline int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args)
924{
925 return -ENOSYS;
926}
721eecbf
GH
927
928#endif /* CONFIG_HAVE_KVM_EVENTFD */
929
73880c80 930#ifdef CONFIG_KVM_APIC_ARCHITECTURE
c5af89b6
GN
931static inline bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
932{
d3efc8ef 933 return vcpu->kvm->bsp_vcpu_id == vcpu->vcpu_id;
c5af89b6 934}
3e515705
AK
935
936bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu);
937
938#else
939
940static inline bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu) { return true; }
941
6aa8b732 942#endif
bfd99ff5
AK
943
944#ifdef __KVM_HAVE_DEVICE_ASSIGNMENT
945
946long kvm_vm_ioctl_assigned_device(struct kvm *kvm, unsigned ioctl,
947 unsigned long arg);
948
949#else
950
951static inline long kvm_vm_ioctl_assigned_device(struct kvm *kvm, unsigned ioctl,
952 unsigned long arg)
953{
954 return -ENOTTY;
955}
956
73880c80 957#endif
bfd99ff5 958
a8eeb04a
AK
959static inline void kvm_make_request(int req, struct kvm_vcpu *vcpu)
960{
961 set_bit(req, &vcpu->requests);
962}
963
a8eeb04a
AK
964static inline bool kvm_check_request(int req, struct kvm_vcpu *vcpu)
965{
0719837c
AK
966 if (test_bit(req, &vcpu->requests)) {
967 clear_bit(req, &vcpu->requests);
968 return true;
969 } else {
970 return false;
971 }
a8eeb04a
AK
972}
973
4c088493
R
974#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
975
976static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
977{
978 vcpu->spin_loop.in_spin_loop = val;
979}
980static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
981{
982 vcpu->spin_loop.dy_eligible = val;
983}
984
985#else /* !CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
986
987static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
988{
989}
990
991static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
992{
993}
994
06e48c51
R
995static inline bool kvm_vcpu_eligible_for_directed_yield(struct kvm_vcpu *vcpu)
996{
997 return true;
998}
999
4c088493 1000#endif /* CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
bfd99ff5
AK
1001#endif
1002
This page took 1.126303 seconds and 5 git commands to generate.