Merge tag '5.15-rc-cifs-part2' of git://git.samba.org/sfrench/cifs-2.6
[linux-block.git] / include / linux / kvm_host.h
CommitLineData
20c8ccb1 1/* SPDX-License-Identifier: GPL-2.0-only */
edf88417
AK
2#ifndef __KVM_HOST_H
3#define __KVM_HOST_H
6aa8b732 4
6aa8b732
AK
5
6#include <linux/types.h>
e56a7a28 7#include <linux/hardirq.h>
6aa8b732
AK
8#include <linux/list.h>
9#include <linux/mutex.h>
10#include <linux/spinlock.h>
06ff0d37
MR
11#include <linux/signal.h>
12#include <linux/sched.h>
6bd5b743 13#include <linux/sched/stat.h>
187f1882 14#include <linux/bug.h>
4a42d848 15#include <linux/minmax.h>
6aa8b732 16#include <linux/mm.h>
b297e672 17#include <linux/mmu_notifier.h>
15ad7146 18#include <linux/preempt.h>
0937c48d 19#include <linux/msi.h>
d89f5eff 20#include <linux/slab.h>
d1e5b0e9 21#include <linux/vmalloc.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>
da4ad88c 28#include <linux/rcuwait.h>
e3736c3e 29#include <linux/refcount.h>
1d487e9b 30#include <linux/nospec.h>
2fdef3a2 31#include <linux/notifier.h>
e8edc6e0 32#include <asm/signal.h>
6aa8b732 33
6aa8b732 34#include <linux/kvm.h>
102d8325 35#include <linux/kvm_para.h>
6aa8b732 36
edf88417 37#include <linux/kvm_types.h>
d77a39d9 38
edf88417 39#include <asm/kvm_host.h>
fb04a1ed 40#include <linux/kvm_dirty_ring.h>
d657a98e 41
0b1b1dfd
GK
42#ifndef KVM_MAX_VCPU_ID
43#define KVM_MAX_VCPU_ID KVM_MAX_VCPUS
44#endif
45
67b29204
XG
46/*
47 * The bit 16 ~ bit 31 of kvm_memory_region::flags are internally used
48 * in kvm, other bits are visible for userspace which are defined in
49 * include/linux/kvm_h.
50 */
51#define KVM_MEMSLOT_INVALID (1UL << 16)
52
361209e0 53/*
164bf7e5 54 * Bit 63 of the memslot generation number is an "update in-progress flag",
361209e0
SC
55 * e.g. is temporarily set for the duration of install_new_memslots().
56 * This flag effectively creates a unique generation number that is used to
57 * mark cached memslot data, e.g. MMIO accesses, as potentially being stale,
58 * i.e. may (or may not) have come from the previous memslots generation.
59 *
60 * This is necessary because the actual memslots update is not atomic with
61 * respect to the generation number update. Updating the generation number
62 * first would allow a vCPU to cache a spte from the old memslots using the
63 * new generation number, and updating the generation number after switching
64 * to the new memslots would allow cache hits using the old generation number
65 * to reference the defunct memslots.
66 *
67 * This mechanism is used to prevent getting hits in KVM's caches while a
68 * memslot update is in-progress, and to prevent cache hits *after* updating
69 * the actual generation number against accesses that were inserted into the
70 * cache *before* the memslots were updated.
71 */
164bf7e5 72#define KVM_MEMSLOT_GEN_UPDATE_IN_PROGRESS BIT_ULL(63)
361209e0 73
87da7e66
XG
74/* Two fragments for cross MMIO pages. */
75#define KVM_MAX_MMIO_FRAGMENTS 2
f78146b0 76
f481b069
PB
77#ifndef KVM_ADDRESS_SPACE_NUM
78#define KVM_ADDRESS_SPACE_NUM 1
79#endif
80
9c5b1172
XG
81/*
82 * For the normal pfn, the highest 12 bits should be zero,
81c52c56
XG
83 * so we can mask bit 62 ~ bit 52 to indicate the error pfn,
84 * mask bit 63 to indicate the noslot pfn.
9c5b1172 85 */
81c52c56
XG
86#define KVM_PFN_ERR_MASK (0x7ffULL << 52)
87#define KVM_PFN_ERR_NOSLOT_MASK (0xfffULL << 52)
88#define KVM_PFN_NOSLOT (0x1ULL << 63)
9c5b1172
XG
89
90#define KVM_PFN_ERR_FAULT (KVM_PFN_ERR_MASK)
91#define KVM_PFN_ERR_HWPOISON (KVM_PFN_ERR_MASK + 1)
81c52c56 92#define KVM_PFN_ERR_RO_FAULT (KVM_PFN_ERR_MASK + 2)
6c8ee57b 93
81c52c56
XG
94/*
95 * error pfns indicate that the gfn is in slot but faild to
96 * translate it to pfn on host.
97 */
ba049e93 98static inline bool is_error_pfn(kvm_pfn_t pfn)
83f09228 99{
9c5b1172 100 return !!(pfn & KVM_PFN_ERR_MASK);
83f09228
XG
101}
102
81c52c56
XG
103/*
104 * error_noslot pfns indicate that the gfn can not be
105 * translated to pfn - it is not in slot or failed to
106 * translate it to pfn.
107 */
ba049e93 108static inline bool is_error_noslot_pfn(kvm_pfn_t pfn)
83f09228 109{
81c52c56 110 return !!(pfn & KVM_PFN_ERR_NOSLOT_MASK);
83f09228
XG
111}
112
81c52c56 113/* noslot pfn indicates that the gfn is not in slot. */
ba049e93 114static inline bool is_noslot_pfn(kvm_pfn_t pfn)
83f09228 115{
81c52c56 116 return pfn == KVM_PFN_NOSLOT;
83f09228
XG
117}
118
bf640876
DD
119/*
120 * architectures with KVM_HVA_ERR_BAD other than PAGE_OFFSET (e.g. s390)
121 * provide own defines and kvm_is_error_hva
122 */
123#ifndef KVM_HVA_ERR_BAD
124
7068d097
XG
125#define KVM_HVA_ERR_BAD (PAGE_OFFSET)
126#define KVM_HVA_ERR_RO_BAD (PAGE_OFFSET + PAGE_SIZE)
ca3a490c
XG
127
128static inline bool kvm_is_error_hva(unsigned long addr)
129{
7068d097 130 return addr >= PAGE_OFFSET;
ca3a490c
XG
131}
132
bf640876
DD
133#endif
134
6cede2e6
XG
135#define KVM_ERR_PTR_BAD_PAGE (ERR_PTR(-ENOENT))
136
9c5b1172 137static inline bool is_error_page(struct page *page)
6cede2e6
XG
138{
139 return IS_ERR(page);
140}
141
930f7fd6
RK
142#define KVM_REQUEST_MASK GENMASK(7,0)
143#define KVM_REQUEST_NO_WAKEUP BIT(8)
7a97cec2 144#define KVM_REQUEST_WAIT BIT(9)
d9e368d6 145/*
2860c4b1
PB
146 * Architecture-independent vcpu->requests bit members
147 * Bits 4-7 are reserved for more arch-independent bits.
d9e368d6 148 */
7a97cec2
PB
149#define KVM_REQ_TLB_FLUSH (0 | KVM_REQUEST_WAIT | KVM_REQUEST_NO_WAKEUP)
150#define KVM_REQ_MMU_RELOAD (1 | KVM_REQUEST_WAIT | KVM_REQUEST_NO_WAKEUP)
084071d5 151#define KVM_REQ_UNBLOCK 2
7a97cec2 152#define KVM_REQ_UNHALT 3
0b8f1173 153#define KVM_REQ_VM_BUGGED (4 | KVM_REQUEST_WAIT | KVM_REQUEST_NO_WAKEUP)
2387149e
AJ
154#define KVM_REQUEST_ARCH_BASE 8
155
156#define KVM_ARCH_REQ_FLAGS(nr, flags) ({ \
c593642c 157 BUILD_BUG_ON((unsigned)(nr) >= (sizeof_field(struct kvm_vcpu, requests) * 8) - KVM_REQUEST_ARCH_BASE); \
2387149e
AJ
158 (unsigned)(((nr) + KVM_REQUEST_ARCH_BASE) | (flags)); \
159})
160#define KVM_ARCH_REQ(nr) KVM_ARCH_REQ_FLAGS(nr, 0)
0cd31043 161
7ee3e8c3
SC
162bool kvm_make_vcpus_request_mask(struct kvm *kvm, unsigned int req,
163 struct kvm_vcpu *except,
164 unsigned long *vcpu_bitmap, cpumask_var_t tmp);
165bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req);
166bool kvm_make_all_cpus_request_except(struct kvm *kvm, unsigned int req,
167 struct kvm_vcpu *except);
168bool kvm_make_cpus_request_mask(struct kvm *kvm, unsigned int req,
169 unsigned long *vcpu_bitmap);
170
7a84428a
AW
171#define KVM_USERSPACE_IRQ_SOURCE_ID 0
172#define KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID 1
5550af4d 173
0d9ce162 174extern struct mutex kvm_lock;
fc1b7492
GL
175extern struct list_head vm_list;
176
743eeb0b
SL
177struct kvm_io_range {
178 gpa_t addr;
179 int len;
180 struct kvm_io_device *dev;
181};
182
786a9f88 183#define NR_IOBUS_DEVS 1000
a1300716 184
2eeb2e94 185struct kvm_io_bus {
6ea34c9b
AK
186 int dev_count;
187 int ioeventfd_count;
a1300716 188 struct kvm_io_range range[];
2eeb2e94
GH
189};
190
e93f8a0f
MT
191enum kvm_bus {
192 KVM_MMIO_BUS,
193 KVM_PIO_BUS,
060f0ce6 194 KVM_VIRTIO_CCW_NOTIFY_BUS,
68c3b4d1 195 KVM_FAST_MMIO_BUS,
e93f8a0f
MT
196 KVM_NR_BUSES
197};
198
e32edf4f 199int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
e93f8a0f 200 int len, const void *val);
e32edf4f
NN
201int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
202 gpa_t addr, int len, const void *val, long cookie);
203int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
204 int len, void *val);
743eeb0b
SL
205int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
206 int len, struct kvm_io_device *dev);
5d3c4c79
SC
207int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
208 struct kvm_io_device *dev);
8a39d006
AP
209struct kvm_io_device *kvm_io_bus_get_dev(struct kvm *kvm, enum kvm_bus bus_idx,
210 gpa_t addr);
2eeb2e94 211
af585b92
GN
212#ifdef CONFIG_KVM_ASYNC_PF
213struct kvm_async_pf {
214 struct work_struct work;
215 struct list_head link;
216 struct list_head queue;
217 struct kvm_vcpu *vcpu;
218 struct mm_struct *mm;
736c291c 219 gpa_t cr2_or_gpa;
af585b92
GN
220 unsigned long addr;
221 struct kvm_arch_async_pf arch;
f2e10669 222 bool wakeup_all;
2a18b7e7 223 bool notpresent_injected;
af585b92
GN
224};
225
226void kvm_clear_async_pf_completion_queue(struct kvm_vcpu *vcpu);
227void kvm_check_async_pf_completion(struct kvm_vcpu *vcpu);
e8c22266
VK
228bool kvm_setup_async_pf(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
229 unsigned long hva, struct kvm_arch_async_pf *arch);
344d9588 230int kvm_async_pf_wakeup_all(struct kvm_vcpu *vcpu);
af585b92
GN
231#endif
232
5f7c292b 233#ifdef KVM_ARCH_WANT_MMU_NOTIFIER
3039bcc7
SC
234struct kvm_gfn_range {
235 struct kvm_memory_slot *slot;
236 gfn_t start;
237 gfn_t end;
238 pte_t pte;
239 bool may_block;
240};
241bool kvm_unmap_gfn_range(struct kvm *kvm, struct kvm_gfn_range *range);
242bool kvm_age_gfn(struct kvm *kvm, struct kvm_gfn_range *range);
243bool kvm_test_age_gfn(struct kvm *kvm, struct kvm_gfn_range *range);
244bool kvm_set_spte_gfn(struct kvm *kvm, struct kvm_gfn_range *range);
5f7c292b
SC
245#endif
246
6b7e2d09
XG
247enum {
248 OUTSIDE_GUEST_MODE,
249 IN_GUEST_MODE,
c142786c
AK
250 EXITING_GUEST_MODE,
251 READING_SHADOW_PAGE_TABLES,
6b7e2d09
XG
252};
253
e45adf66
KA
254#define KVM_UNMAPPED_PAGE ((void *) 0x500 + POISON_POINTER_DELTA)
255
256struct kvm_host_map {
257 /*
258 * Only valid if the 'pfn' is managed by the host kernel (i.e. There is
259 * a 'struct page' for it. When using mem= kernel parameter some memory
260 * can be used as guest memory but they are not managed by host
261 * kernel).
262 * If 'pfn' is not managed by the host kernel, this field is
263 * initialized to KVM_UNMAPPED_PAGE.
264 */
265 struct page *page;
266 void *hva;
267 kvm_pfn_t pfn;
268 kvm_pfn_t gfn;
269};
270
271/*
272 * Used to check if the mapping is valid or not. Never use 'kvm_host_map'
273 * directly to check for that.
274 */
275static inline bool kvm_vcpu_mapped(struct kvm_host_map *map)
276{
277 return !!map->hva;
278}
279
6bd5b743
WL
280static inline bool kvm_vcpu_can_poll(ktime_t cur, ktime_t stop)
281{
282 return single_task_running() && !need_resched() && ktime_before(cur, stop);
283}
284
f78146b0
AK
285/*
286 * Sometimes a large or cross-page mmio needs to be broken up into separate
287 * exits for userspace servicing.
288 */
289struct kvm_mmio_fragment {
290 gpa_t gpa;
291 void *data;
292 unsigned len;
293};
294
d17fbbf7
ZX
295struct kvm_vcpu {
296 struct kvm *kvm;
31bb117e 297#ifdef CONFIG_PREEMPT_NOTIFIERS
d17fbbf7 298 struct preempt_notifier preempt_notifier;
31bb117e 299#endif
6b7e2d09 300 int cpu;
8750e72a
RK
301 int vcpu_id; /* id given by userspace at creation */
302 int vcpu_idx; /* index in kvm->vcpus array */
6b7e2d09
XG
303 int srcu_idx;
304 int mode;
86dafed5 305 u64 requests;
d0bfb940 306 unsigned long guest_debug;
6b7e2d09 307
bf9f6ac8
FW
308 int pre_pcpu;
309 struct list_head blocked_vcpu_list;
310
6b7e2d09
XG
311 struct mutex mutex;
312 struct kvm_run *run;
f656ce01 313
da4ad88c 314 struct rcuwait wait;
0e4524a5 315 struct pid __rcu *pid;
d17fbbf7
ZX
316 int sigset_active;
317 sigset_t sigset;
19020f8a 318 unsigned int halt_poll_ns;
3491caf2 319 bool valid_wakeup;
d17fbbf7 320
34c16eec 321#ifdef CONFIG_HAS_IOMEM
d17fbbf7
ZX
322 int mmio_needed;
323 int mmio_read_completed;
324 int mmio_is_write;
f78146b0
AK
325 int mmio_cur_fragment;
326 int mmio_nr_fragments;
327 struct kvm_mmio_fragment mmio_fragments[KVM_MAX_MMIO_FRAGMENTS];
34c16eec 328#endif
1165f5fe 329
af585b92
GN
330#ifdef CONFIG_KVM_ASYNC_PF
331 struct {
332 u32 queued;
333 struct list_head queue;
334 struct list_head done;
335 spinlock_t lock;
336 } async_pf;
337#endif
338
4c088493
R
339#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
340 /*
341 * Cpu relax intercept or pause loop exit optimization
342 * in_spin_loop: set when a vcpu does a pause loop exit
343 * or cpu relax intercepted.
344 * dy_eligible: indicates whether vcpu is eligible for directed yield.
345 */
346 struct {
347 bool in_spin_loop;
348 bool dy_eligible;
349 } spin_loop;
350#endif
3a08a8f9 351 bool preempted;
d73eb57b 352 bool ready;
d657a98e 353 struct kvm_vcpu_arch arch;
ce55c049
JZ
354 struct kvm_vcpu_stat stat;
355 char stats_id[KVM_STATS_NAME_SIZE];
fb04a1ed 356 struct kvm_dirty_ring dirty_ring;
fe22ed82
DM
357
358 /*
359 * The index of the most recently used memslot by this vCPU. It's ok
360 * if this becomes stale due to memslot changes since we always check
361 * it is a valid slot.
362 */
363 int last_used_slot;
d657a98e
ZX
364};
365
1ca0016c
SC
366/* must be called with irqs disabled */
367static __always_inline void guest_enter_irqoff(void)
368{
369 /*
370 * This is running in ioctl context so its safe to assume that it's the
371 * stime pending cputime to flush.
372 */
373 instrumentation_begin();
374 vtime_account_guest_enter();
375 instrumentation_end();
376
377 /*
378 * KVM does not hold any references to rcu protected data when it
379 * switches CPU into a guest mode. In fact switching to a guest mode
380 * is very similar to exiting to userspace from rcu point of view. In
381 * addition CPU may stay in a guest mode for quite a long time (up to
382 * one time slice). Lets treat guest mode as quiescent state, just like
383 * we do with user-mode execution.
384 */
385 if (!context_tracking_guest_enter()) {
386 instrumentation_begin();
387 rcu_virt_note_context_switch(smp_processor_id());
388 instrumentation_end();
389 }
390}
391
392static __always_inline void guest_exit_irqoff(void)
393{
394 context_tracking_guest_exit();
395
396 instrumentation_begin();
397 /* Flush the guest cputime we spent on the guest */
398 vtime_account_guest_exit();
399 instrumentation_end();
400}
401
402static inline void guest_exit(void)
403{
404 unsigned long flags;
405
406 local_irq_save(flags);
407 guest_exit_irqoff();
408 local_irq_restore(flags);
409}
410
6b7e2d09
XG
411static inline int kvm_vcpu_exiting_guest_mode(struct kvm_vcpu *vcpu)
412{
cde9af6e
AJ
413 /*
414 * The memory barrier ensures a previous write to vcpu->requests cannot
415 * be reordered with the read of vcpu->mode. It pairs with the general
416 * memory barrier following the write of vcpu->mode in VCPU RUN.
417 */
418 smp_mb__before_atomic();
6b7e2d09
XG
419 return cmpxchg(&vcpu->mode, IN_GUEST_MODE, EXITING_GUEST_MODE);
420}
421
660c22c4
TY
422/*
423 * Some of the bitops functions do not support too long bitmaps.
424 * This number must be determined not to exceed such limits.
425 */
426#define KVM_MEM_MAX_NR_PAGES ((1UL << 31) - 1)
427
6aa8b732
AK
428struct kvm_memory_slot {
429 gfn_t base_gfn;
430 unsigned long npages;
6aa8b732 431 unsigned long *dirty_bitmap;
db3fe4eb 432 struct kvm_arch_memory_slot arch;
8a7ae055 433 unsigned long userspace_addr;
6104f472 434 u32 flags;
1e702d9a 435 short id;
9e9eb226 436 u16 as_id;
6aa8b732
AK
437};
438
044c59c4
PX
439static inline bool kvm_slot_dirty_track_enabled(struct kvm_memory_slot *slot)
440{
441 return slot->flags & KVM_MEM_LOG_DIRTY_PAGES;
442}
443
87bf6e7d
TY
444static inline unsigned long kvm_dirty_bitmap_bytes(struct kvm_memory_slot *memslot)
445{
446 return ALIGN(memslot->npages, BITS_PER_LONG) / 8;
447}
448
03133347
CI
449static inline unsigned long *kvm_second_dirty_bitmap(struct kvm_memory_slot *memslot)
450{
451 unsigned long len = kvm_dirty_bitmap_bytes(memslot);
452
453 return memslot->dirty_bitmap + len / sizeof(*memslot->dirty_bitmap);
454}
455
3c9bd400
JZ
456#ifndef KVM_DIRTY_LOG_MANUAL_CAPS
457#define KVM_DIRTY_LOG_MANUAL_CAPS KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE
458#endif
459
84223598
CH
460struct kvm_s390_adapter_int {
461 u64 ind_addr;
462 u64 summary_addr;
463 u64 ind_offset;
464 u32 summary_offset;
465 u32 adapter_id;
466};
467
5c919412
AS
468struct kvm_hv_sint {
469 u32 vcpu;
470 u32 sint;
471};
472
399ec807
AK
473struct kvm_kernel_irq_routing_entry {
474 u32 gsi;
5116d8f6 475 u32 type;
4925663a 476 int (*set)(struct kvm_kernel_irq_routing_entry *e,
aa2fbe6d
YZ
477 struct kvm *kvm, int irq_source_id, int level,
478 bool line_status);
399ec807
AK
479 union {
480 struct {
481 unsigned irqchip;
482 unsigned pin;
483 } irqchip;
0455e72c
EA
484 struct {
485 u32 address_lo;
486 u32 address_hi;
487 u32 data;
488 u32 flags;
489 u32 devid;
490 } msi;
84223598 491 struct kvm_s390_adapter_int adapter;
5c919412 492 struct kvm_hv_sint hv_sint;
399ec807 493 };
46e624b9
GN
494 struct hlist_node link;
495};
496
b053b2ae
SR
497#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
498struct kvm_irq_routing_table {
499 int chip[KVM_NR_IRQCHIPS][KVM_IRQCHIP_NUM_PINS];
500 u32 nr_rt_entries;
501 /*
502 * Array indexed by gsi. Each entry contains list of irq chips
503 * the gsi is connected to.
504 */
764e515f 505 struct hlist_head map[];
b053b2ae
SR
506};
507#endif
508
0743247f
AW
509#ifndef KVM_PRIVATE_MEM_SLOTS
510#define KVM_PRIVATE_MEM_SLOTS 0
511#endif
512
4fc096a9
VK
513#define KVM_MEM_SLOTS_NUM SHRT_MAX
514#define KVM_USER_MEM_SLOTS (KVM_MEM_SLOTS_NUM - KVM_PRIVATE_MEM_SLOTS)
93a5cef0 515
f481b069
PB
516#ifndef __KVM_VCPU_MULTIPLE_ADDRESS_SPACE
517static inline int kvm_arch_vcpu_memslots_id(struct kvm_vcpu *vcpu)
518{
519 return 0;
520}
521#endif
522
bf3e05bc
XG
523/*
524 * Note:
525 * memslots are not sorted by id anymore, please use id_to_memslot()
526 * to get the memslot by its id.
527 */
46a26bf5 528struct kvm_memslots {
49c7754c 529 u64 generation;
f85e2cb5 530 /* The mapping table from slot id to the index in memslots[]. */
1e702d9a 531 short id_to_index[KVM_MEM_SLOTS_NUM];
87689270 532 atomic_t last_used_slot;
9c1a5d38 533 int used_slots;
36947254 534 struct kvm_memory_slot memslots[];
46a26bf5
MT
535};
536
6aa8b732 537struct kvm {
531810ca
BG
538#ifdef KVM_HAVE_MMU_RWLOCK
539 rwlock_t mmu_lock;
540#else
aaee2c94 541 spinlock_t mmu_lock;
531810ca
BG
542#endif /* KVM_HAVE_MMU_RWLOCK */
543
79fac95e 544 struct mutex slots_lock;
b10a038e
BG
545
546 /*
547 * Protects the arch-specific fields of struct kvm_memory_slots in
548 * use by the VM. To be used under the slots_lock (above) or in a
549 * kvm->srcu critical section where acquiring the slots_lock would
550 * lead to deadlock with the synchronize_srcu in
551 * install_new_memslots.
552 */
553 struct mutex slots_arch_lock;
6d4e4c4f 554 struct mm_struct *mm; /* userspace tied to this vm */
a80cf7b5 555 struct kvm_memslots __rcu *memslots[KVM_ADDRESS_SPACE_NUM];
fb3f0f51 556 struct kvm_vcpu *vcpus[KVM_MAX_VCPUS];
6c7caebc 557
52ac8b35
PB
558 /* Used to wait for completion of MMU notifiers. */
559 spinlock_t mn_invalidate_lock;
560 unsigned long mn_active_invalidate_count;
561 struct rcuwait mn_memslots_update_rcuwait;
562
6c7caebc
PB
563 /*
564 * created_vcpus is protected by kvm->lock, and is incremented
565 * at the beginning of KVM_CREATE_VCPU. online_vcpus is only
566 * incremented after storing the kvm_vcpu pointer in vcpus,
567 * and is accessed atomically.
568 */
73880c80 569 atomic_t online_vcpus;
6c7caebc 570 int created_vcpus;
217ece61 571 int last_boosted_vcpu;
133de902 572 struct list_head vm_list;
60eead79 573 struct mutex lock;
4a12f951 574 struct kvm_io_bus __rcu *buses[KVM_NR_BUSES];
721eecbf
GH
575#ifdef CONFIG_HAVE_KVM_EVENTFD
576 struct {
577 spinlock_t lock;
578 struct list_head items;
7a84428a
AW
579 struct list_head resampler_list;
580 struct mutex resampler_lock;
721eecbf 581 } irqfds;
d34e6b17 582 struct list_head ioeventfds;
721eecbf 583#endif
ba1389b7 584 struct kvm_vm_stat stat;
d69fb81f 585 struct kvm_arch arch;
e3736c3e 586 refcount_t users_count;
4b4357e0 587#ifdef CONFIG_KVM_MMIO
5f94c174 588 struct kvm_coalesced_mmio_ring *coalesced_mmio_ring;
2b3c246a
SL
589 spinlock_t ring_lock;
590 struct list_head coalesced_zones;
5f94c174 591#endif
e930bffe 592
60eead79 593 struct mutex irq_lock;
75858a84 594#ifdef CONFIG_HAVE_KVM_IRQCHIP
bd2b53b2 595 /*
9957c86d 596 * Update side is protected by irq_lock.
bd2b53b2 597 */
4b6a2872 598 struct kvm_irq_routing_table __rcu *irq_routing;
c77dcacb
PB
599#endif
600#ifdef CONFIG_HAVE_KVM_IRQFD
136bdfee 601 struct hlist_head irq_ack_notifier_list;
75858a84
AK
602#endif
603
36c1ed82 604#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
e930bffe
AA
605 struct mmu_notifier mmu_notifier;
606 unsigned long mmu_notifier_seq;
607 long mmu_notifier_count;
4a42d848
DS
608 unsigned long mmu_notifier_range_start;
609 unsigned long mmu_notifier_range_end;
e930bffe 610#endif
a086f6a1 611 long tlbs_dirty;
07f0a7bd 612 struct list_head devices;
3c9bd400 613 u64 manual_dirty_log_protect;
536a6f88
JF
614 struct dentry *debugfs_dentry;
615 struct kvm_stat_data **debugfs_stat_data;
6ade8694
PM
616 struct srcu_struct srcu;
617 struct srcu_struct irq_srcu;
fdeaf7e3 618 pid_t userspace_pid;
acd05785 619 unsigned int max_halt_poll_ns;
fb04a1ed 620 u32 dirty_ring_size;
0b8f1173 621 bool vm_bugged;
2fdef3a2
SS
622
623#ifdef CONFIG_HAVE_KVM_PM_NOTIFIER
624 struct notifier_block pm_notifier;
625#endif
fcfe1bae 626 char stats_id[KVM_STATS_NAME_SIZE];
6aa8b732
AK
627};
628
a737f256
CD
629#define kvm_err(fmt, ...) \
630 pr_err("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
631#define kvm_info(fmt, ...) \
632 pr_info("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
633#define kvm_debug(fmt, ...) \
634 pr_debug("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
ae0f5499
BD
635#define kvm_debug_ratelimited(fmt, ...) \
636 pr_debug_ratelimited("kvm [%i]: " fmt, task_pid_nr(current), \
637 ## __VA_ARGS__)
a737f256
CD
638#define kvm_pr_unimpl(fmt, ...) \
639 pr_err_ratelimited("kvm [%i]: " fmt, \
640 task_tgid_nr(current), ## __VA_ARGS__)
f0242478 641
a737f256
CD
642/* The guest did something we don't support. */
643#define vcpu_unimpl(vcpu, fmt, ...) \
671d9ab3
BP
644 kvm_pr_unimpl("vcpu%i, guest rIP: 0x%lx " fmt, \
645 (vcpu)->vcpu_id, kvm_rip_read(vcpu), ## __VA_ARGS__)
6aa8b732 646
ee86dbc6
AS
647#define vcpu_debug(vcpu, fmt, ...) \
648 kvm_debug("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
ae0f5499
BD
649#define vcpu_debug_ratelimited(vcpu, fmt, ...) \
650 kvm_debug_ratelimited("vcpu%i " fmt, (vcpu)->vcpu_id, \
651 ## __VA_ARGS__)
765eaa0f
AS
652#define vcpu_err(vcpu, fmt, ...) \
653 kvm_err("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
ee86dbc6 654
0b8f1173
SC
655static inline void kvm_vm_bugged(struct kvm *kvm)
656{
657 kvm->vm_bugged = true;
658 kvm_make_all_cpus_request(kvm, KVM_REQ_VM_BUGGED);
659}
660
661#define KVM_BUG(cond, kvm, fmt...) \
662({ \
663 int __ret = (cond); \
664 \
665 if (WARN_ONCE(__ret && !(kvm)->vm_bugged, fmt)) \
666 kvm_vm_bugged(kvm); \
667 unlikely(__ret); \
668})
669
670#define KVM_BUG_ON(cond, kvm) \
671({ \
672 int __ret = (cond); \
673 \
674 if (WARN_ON_ONCE(__ret && !(kvm)->vm_bugged)) \
675 kvm_vm_bugged(kvm); \
676 unlikely(__ret); \
677})
678
3c9bd400
JZ
679static inline bool kvm_dirty_log_manual_protect_and_init_set(struct kvm *kvm)
680{
681 return !!(kvm->manual_dirty_log_protect & KVM_DIRTY_LOG_INITIALLY_SET);
682}
683
4a12f951
CB
684static inline struct kvm_io_bus *kvm_get_bus(struct kvm *kvm, enum kvm_bus idx)
685{
686 return srcu_dereference_check(kvm->buses[idx], &kvm->srcu,
3898da94
PB
687 lockdep_is_held(&kvm->slots_lock) ||
688 !refcount_read(&kvm->users_count));
4a12f951
CB
689}
690
988a2cae
GN
691static inline struct kvm_vcpu *kvm_get_vcpu(struct kvm *kvm, int i)
692{
1d487e9b
PB
693 int num_vcpus = atomic_read(&kvm->online_vcpus);
694 i = array_index_nospec(i, num_vcpus);
695
696 /* Pairs with smp_wmb() in kvm_vm_ioctl_create_vcpu. */
988a2cae
GN
697 smp_rmb();
698 return kvm->vcpus[i];
699}
700
701#define kvm_for_each_vcpu(idx, vcpup, kvm) \
b42fc3cb
JM
702 for (idx = 0; \
703 idx < atomic_read(&kvm->online_vcpus) && \
704 (vcpup = kvm_get_vcpu(kvm, idx)) != NULL; \
705 idx++)
988a2cae 706
db27a7a3
DH
707static inline struct kvm_vcpu *kvm_get_vcpu_by_id(struct kvm *kvm, int id)
708{
9b9e3fc4 709 struct kvm_vcpu *vcpu = NULL;
db27a7a3
DH
710 int i;
711
9b9e3fc4 712 if (id < 0)
c896939f 713 return NULL;
9b9e3fc4
GK
714 if (id < KVM_MAX_VCPUS)
715 vcpu = kvm_get_vcpu(kvm, id);
c896939f
DH
716 if (vcpu && vcpu->vcpu_id == id)
717 return vcpu;
db27a7a3
DH
718 kvm_for_each_vcpu(i, vcpu, kvm)
719 if (vcpu->vcpu_id == id)
720 return vcpu;
721 return NULL;
722}
723
497d72d8
CD
724static inline int kvm_vcpu_get_idx(struct kvm_vcpu *vcpu)
725{
8750e72a 726 return vcpu->vcpu_idx;
497d72d8
CD
727}
728
0577d1ab
SC
729#define kvm_for_each_memslot(memslot, slots) \
730 for (memslot = &slots->memslots[0]; \
731 memslot < slots->memslots + slots->used_slots; memslot++) \
732 if (WARN_ON_ONCE(!memslot->npages)) { \
733 } else
be6ba0f0 734
4543bdc0 735void kvm_vcpu_destroy(struct kvm_vcpu *vcpu);
fb3f0f51 736
ec7660cc 737void vcpu_load(struct kvm_vcpu *vcpu);
313a3dc7
CO
738void vcpu_put(struct kvm_vcpu *vcpu);
739
6ef768fa 740#ifdef __KVM_HAVE_IOAPIC
993225ad 741void kvm_arch_post_irq_ack_notifier_list_update(struct kvm *kvm);
abdb080f 742void kvm_arch_post_irq_routing_update(struct kvm *kvm);
6ef768fa 743#else
993225ad 744static inline void kvm_arch_post_irq_ack_notifier_list_update(struct kvm *kvm)
6ef768fa
PB
745{
746}
abdb080f 747static inline void kvm_arch_post_irq_routing_update(struct kvm *kvm)
b053b2ae
SR
748{
749}
6ef768fa
PB
750#endif
751
297e2105 752#ifdef CONFIG_HAVE_KVM_IRQFD
a0f155e9
CH
753int kvm_irqfd_init(void);
754void kvm_irqfd_exit(void);
755#else
756static inline int kvm_irqfd_init(void)
757{
758 return 0;
759}
760
761static inline void kvm_irqfd_exit(void)
762{
763}
764#endif
0ee75bea 765int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
c16f862d 766 struct module *module);
cb498ea2 767void kvm_exit(void);
6aa8b732 768
d39f13b0 769void kvm_get_kvm(struct kvm *kvm);
605c7130 770bool kvm_get_kvm_safe(struct kvm *kvm);
d39f13b0 771void kvm_put_kvm(struct kvm *kvm);
54526d1f 772bool file_is_kvm(struct file *file);
149487bd 773void kvm_put_kvm_no_destroy(struct kvm *kvm);
d39f13b0 774
f481b069 775static inline struct kvm_memslots *__kvm_memslots(struct kvm *kvm, int as_id)
90d83dc3 776{
1d487e9b 777 as_id = array_index_nospec(as_id, KVM_ADDRESS_SPACE_NUM);
7e988b10 778 return srcu_dereference_check(kvm->memslots[as_id], &kvm->srcu,
3898da94
PB
779 lockdep_is_held(&kvm->slots_lock) ||
780 !refcount_read(&kvm->users_count));
90d83dc3
LJ
781}
782
f481b069
PB
783static inline struct kvm_memslots *kvm_memslots(struct kvm *kvm)
784{
785 return __kvm_memslots(kvm, 0);
786}
787
8e73485c
PB
788static inline struct kvm_memslots *kvm_vcpu_memslots(struct kvm_vcpu *vcpu)
789{
f481b069
PB
790 int as_id = kvm_arch_vcpu_memslots_id(vcpu);
791
792 return __kvm_memslots(vcpu->kvm, as_id);
8e73485c
PB
793}
794
0577d1ab
SC
795static inline
796struct kvm_memory_slot *id_to_memslot(struct kvm_memslots *slots, int id)
28a37544 797{
f85e2cb5
XG
798 int index = slots->id_to_index[id];
799 struct kvm_memory_slot *slot;
bf3e05bc 800
0577d1ab
SC
801 if (index < 0)
802 return NULL;
803
f85e2cb5 804 slot = &slots->memslots[index];
bf3e05bc 805
f85e2cb5
XG
806 WARN_ON(slot->id != id);
807 return slot;
28a37544
XG
808}
809
74d0727c
TY
810/*
811 * KVM_SET_USER_MEMORY_REGION ioctl allows the following operations:
812 * - create a new memory slot
813 * - delete an existing memory slot
814 * - modify an existing memory slot
815 * -- move it in the guest physical memory space
816 * -- just change its flags
817 *
818 * Since flags can be changed by some of these operations, the following
819 * differentiation is the best we can do for __kvm_set_memory_region():
820 */
821enum kvm_mr_change {
822 KVM_MR_CREATE,
823 KVM_MR_DELETE,
824 KVM_MR_MOVE,
825 KVM_MR_FLAGS_ONLY,
826};
827
210c7c4d 828int kvm_set_memory_region(struct kvm *kvm,
09170a49 829 const struct kvm_userspace_memory_region *mem);
f78e0e2e 830int __kvm_set_memory_region(struct kvm *kvm,
09170a49 831 const struct kvm_userspace_memory_region *mem);
e96c81ee 832void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot);
15248258 833void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen);
f7784b8e
MT
834int kvm_arch_prepare_memory_region(struct kvm *kvm,
835 struct kvm_memory_slot *memslot,
09170a49 836 const struct kvm_userspace_memory_region *mem,
7b6195a9 837 enum kvm_mr_change change);
f7784b8e 838void kvm_arch_commit_memory_region(struct kvm *kvm,
09170a49 839 const struct kvm_userspace_memory_region *mem,
9d4c197c 840 struct kvm_memory_slot *old,
f36f3f28 841 const struct kvm_memory_slot *new,
8482644a 842 enum kvm_mr_change change);
2df72e9b
MT
843/* flush all memory translations */
844void kvm_arch_flush_shadow_all(struct kvm *kvm);
845/* flush memory translations pointing to 'slot' */
846void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
847 struct kvm_memory_slot *slot);
a983fb23 848
d9ef13c2
PB
849int gfn_to_page_many_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
850 struct page **pages, int nr_pages);
48987781 851
954bbbc2 852struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
05da4558 853unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn);
ba6a3541 854unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable);
4d8b81ab 855unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
64d83126
CD
856unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot, gfn_t gfn,
857 bool *writable);
b4231d61
IE
858void kvm_release_page_clean(struct page *page);
859void kvm_release_page_dirty(struct page *page);
35149e21
AL
860void kvm_set_page_accessed(struct page *page);
861
ba049e93
DW
862kvm_pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn);
863kvm_pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
612819c3 864 bool *writable);
ba049e93
DW
865kvm_pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
866kvm_pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn);
867kvm_pfn_t __gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn,
868 bool atomic, bool *async, bool write_fault,
4a42d848 869 bool *writable, hva_t *hva);
037d92dc 870
ba049e93 871void kvm_release_pfn_clean(kvm_pfn_t pfn);
f7a6509f 872void kvm_release_pfn_dirty(kvm_pfn_t pfn);
ba049e93
DW
873void kvm_set_pfn_dirty(kvm_pfn_t pfn);
874void kvm_set_pfn_accessed(kvm_pfn_t pfn);
35149e21 875
91724814 876void kvm_release_pfn(kvm_pfn_t pfn, bool dirty, struct gfn_to_pfn_cache *cache);
195aefde
IE
877int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
878 int len);
879int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len);
4e335d9e
PB
880int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
881 void *data, unsigned long len);
0958f0ce
VK
882int kvm_read_guest_offset_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
883 void *data, unsigned int offset,
884 unsigned long len);
195aefde
IE
885int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
886 int offset, int len);
887int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
888 unsigned long len);
4e335d9e
PB
889int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
890 void *data, unsigned long len);
891int kvm_write_guest_offset_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
7a86dab8
JM
892 void *data, unsigned int offset,
893 unsigned long len);
4e335d9e
PB
894int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
895 gpa_t gpa, unsigned long len);
cac0f1b7 896
53f98558
AJ
897#define __kvm_get_guest(kvm, gfn, offset, v) \
898({ \
899 unsigned long __addr = gfn_to_hva(kvm, gfn); \
900 typeof(v) __user *__uaddr = (typeof(__uaddr))(__addr + offset); \
901 int __ret = -EFAULT; \
902 \
903 if (!kvm_is_error_hva(__addr)) \
904 __ret = get_user(v, __uaddr); \
905 __ret; \
906})
907
908#define kvm_get_guest(kvm, gpa, v) \
909({ \
910 gpa_t __gpa = gpa; \
911 struct kvm *__kvm = kvm; \
912 \
913 __kvm_get_guest(__kvm, __gpa >> PAGE_SHIFT, \
914 offset_in_page(__gpa), v); \
915})
916
4d2d4ce0 917#define __kvm_put_guest(kvm, gfn, offset, v) \
cac0f1b7
SP
918({ \
919 unsigned long __addr = gfn_to_hva(kvm, gfn); \
4d2d4ce0 920 typeof(v) __user *__uaddr = (typeof(__uaddr))(__addr + offset); \
cac0f1b7
SP
921 int __ret = -EFAULT; \
922 \
923 if (!kvm_is_error_hva(__addr)) \
4d2d4ce0 924 __ret = put_user(v, __uaddr); \
cac0f1b7
SP
925 if (!__ret) \
926 mark_page_dirty(kvm, gfn); \
927 __ret; \
928})
929
4d2d4ce0 930#define kvm_put_guest(kvm, gpa, v) \
cac0f1b7
SP
931({ \
932 gpa_t __gpa = gpa; \
933 struct kvm *__kvm = kvm; \
4d2d4ce0 934 \
cac0f1b7 935 __kvm_put_guest(__kvm, __gpa >> PAGE_SHIFT, \
4d2d4ce0 936 offset_in_page(__gpa), v); \
cac0f1b7
SP
937})
938
195aefde 939int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len);
6aa8b732 940struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
33e94154 941bool kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn);
995decb6 942bool kvm_vcpu_is_visible_gfn(struct kvm_vcpu *vcpu, gfn_t gfn);
f9b84e19 943unsigned long kvm_host_page_size(struct kvm_vcpu *vcpu, gfn_t gfn);
28bd726a 944void mark_page_dirty_in_slot(struct kvm *kvm, struct kvm_memory_slot *memslot, gfn_t gfn);
6aa8b732
AK
945void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
946
8e73485c
PB
947struct kvm_memslots *kvm_vcpu_memslots(struct kvm_vcpu *vcpu);
948struct kvm_memory_slot *kvm_vcpu_gfn_to_memslot(struct kvm_vcpu *vcpu, gfn_t gfn);
ba049e93
DW
949kvm_pfn_t kvm_vcpu_gfn_to_pfn_atomic(struct kvm_vcpu *vcpu, gfn_t gfn);
950kvm_pfn_t kvm_vcpu_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn);
e45adf66 951int kvm_vcpu_map(struct kvm_vcpu *vcpu, gpa_t gpa, struct kvm_host_map *map);
91724814
BO
952int kvm_map_gfn(struct kvm_vcpu *vcpu, gfn_t gfn, struct kvm_host_map *map,
953 struct gfn_to_pfn_cache *cache, bool atomic);
8e73485c 954struct page *kvm_vcpu_gfn_to_page(struct kvm_vcpu *vcpu, gfn_t gfn);
e45adf66 955void kvm_vcpu_unmap(struct kvm_vcpu *vcpu, struct kvm_host_map *map, bool dirty);
91724814
BO
956int kvm_unmap_gfn(struct kvm_vcpu *vcpu, struct kvm_host_map *map,
957 struct gfn_to_pfn_cache *cache, bool dirty, bool atomic);
8e73485c
PB
958unsigned long kvm_vcpu_gfn_to_hva(struct kvm_vcpu *vcpu, gfn_t gfn);
959unsigned long kvm_vcpu_gfn_to_hva_prot(struct kvm_vcpu *vcpu, gfn_t gfn, bool *writable);
960int kvm_vcpu_read_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, void *data, int offset,
961 int len);
962int kvm_vcpu_read_guest_atomic(struct kvm_vcpu *vcpu, gpa_t gpa, void *data,
963 unsigned long len);
964int kvm_vcpu_read_guest(struct kvm_vcpu *vcpu, gpa_t gpa, void *data,
965 unsigned long len);
966int kvm_vcpu_write_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, const void *data,
967 int offset, int len);
968int kvm_vcpu_write_guest(struct kvm_vcpu *vcpu, gpa_t gpa, const void *data,
969 unsigned long len);
970void kvm_vcpu_mark_page_dirty(struct kvm_vcpu *vcpu, gfn_t gfn);
971
20b7035c
JS
972void kvm_sigset_activate(struct kvm_vcpu *vcpu);
973void kvm_sigset_deactivate(struct kvm_vcpu *vcpu);
974
8776e519 975void kvm_vcpu_block(struct kvm_vcpu *vcpu);
3217f7c2
CD
976void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu);
977void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu);
178f02ff 978bool kvm_vcpu_wake_up(struct kvm_vcpu *vcpu);
b6d33834 979void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
fa93384f 980int kvm_vcpu_yield_to(struct kvm_vcpu *target);
199b5763 981void kvm_vcpu_on_spin(struct kvm_vcpu *vcpu, bool usermode_vcpu_not_eligible);
a4ee1ca4 982
d9e368d6 983void kvm_flush_remote_tlbs(struct kvm *kvm);
2e53d63a 984void kvm_reload_remote_mmus(struct kvm *kvm);
7053df4e 985
6926f95a
SC
986#ifdef KVM_ARCH_NR_OBJS_PER_MEMORY_CACHE
987int kvm_mmu_topup_memory_cache(struct kvm_mmu_memory_cache *mc, int min);
988int kvm_mmu_memory_cache_nr_free_objects(struct kvm_mmu_memory_cache *mc);
989void kvm_mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc);
990void *kvm_mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc);
991#endif
992
edb298c6
ML
993void kvm_inc_notifier_count(struct kvm *kvm, unsigned long start,
994 unsigned long end);
995void kvm_dec_notifier_count(struct kvm *kvm, unsigned long start,
996 unsigned long end);
997
043405e1
CO
998long kvm_arch_dev_ioctl(struct file *filp,
999 unsigned int ioctl, unsigned long arg);
313a3dc7
CO
1000long kvm_arch_vcpu_ioctl(struct file *filp,
1001 unsigned int ioctl, unsigned long arg);
1499fa80 1002vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf);
018d00d2 1003
784aa3d7 1004int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext);
018d00d2 1005
3b0f1d01 1006void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm,
ba0513b5
MS
1007 struct kvm_memory_slot *slot,
1008 gfn_t gfn_offset,
1009 unsigned long mask);
0dff0846
SC
1010void kvm_arch_sync_dirty_log(struct kvm *kvm, struct kvm_memory_slot *memslot);
1011
1012#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
1013void kvm_arch_flush_remote_tlbs_memslot(struct kvm *kvm,
6c9dd6d2 1014 const struct kvm_memory_slot *memslot);
0dff0846
SC
1015#else /* !CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT */
1016int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log);
1017int kvm_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log,
2a49f61d 1018 int *is_dirty, struct kvm_memory_slot **memslot);
0dff0846 1019#endif
5bb064dc 1020
aa2fbe6d
YZ
1021int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level,
1022 bool line_status);
e5d83c74
PB
1023int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
1024 struct kvm_enable_cap *cap);
1fe779f8
CO
1025long kvm_arch_vm_ioctl(struct file *filp,
1026 unsigned int ioctl, unsigned long arg);
313a3dc7 1027
d0752060
HB
1028int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
1029int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
1030
8b006791
ZX
1031int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
1032 struct kvm_translation *tr);
1033
b6c7a5dc
HB
1034int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
1035int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
1036int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
1037 struct kvm_sregs *sregs);
1038int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
1039 struct kvm_sregs *sregs);
62d9f0db
MT
1040int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
1041 struct kvm_mp_state *mp_state);
1042int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
1043 struct kvm_mp_state *mp_state);
d0bfb940
JK
1044int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
1045 struct kvm_guest_debug *dbg);
1b94f6f8 1046int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu);
b6c7a5dc 1047
f8c16bba
ZX
1048int kvm_arch_init(void *opaque);
1049void kvm_arch_exit(void);
043405e1 1050
e790d9ef
RK
1051void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu);
1052
e9b11c17
ZX
1053void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
1054void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
897cc38e 1055int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id);
e529ef66 1056int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu);
31928aa5 1057void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu);
d40ccc62 1058void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu);
e9b11c17 1059
2fdef3a2
SS
1060#ifdef CONFIG_HAVE_KVM_PM_NOTIFIER
1061int kvm_arch_pm_notifier(struct kvm *kvm, unsigned long state);
1062#endif
1063
741cbbae 1064#ifdef __KVM_HAVE_ARCH_VCPU_DEBUGFS
d56f5136 1065void kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu, struct dentry *debugfs_dentry);
741cbbae 1066#endif
235539b4 1067
13a34e06
RK
1068int kvm_arch_hardware_enable(void);
1069void kvm_arch_hardware_disable(void);
b9904085 1070int kvm_arch_hardware_setup(void *opaque);
e9b11c17 1071void kvm_arch_hardware_unsetup(void);
b9904085 1072int kvm_arch_check_processor_compat(void *opaque);
1d737c8a 1073int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu);
199b5763 1074bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu);
b6d33834 1075int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu);
17e433b5 1076bool kvm_arch_dy_runnable(struct kvm_vcpu *vcpu);
52acd22f 1077bool kvm_arch_dy_has_pending_interrupt(struct kvm_vcpu *vcpu);
d970a325
PB
1078int kvm_arch_post_init_vm(struct kvm *kvm);
1079void kvm_arch_pre_destroy_vm(struct kvm *kvm);
3165af73 1080int kvm_arch_create_vm_debugfs(struct kvm *kvm);
e9b11c17 1081
d89f5eff 1082#ifndef __KVM_HAVE_ARCH_VM_ALLOC
d1e5b0e9
MO
1083/*
1084 * All architectures that want to use vzalloc currently also
1085 * need their own kvm_arch_alloc_vm implementation.
1086 */
d89f5eff
JK
1087static inline struct kvm *kvm_arch_alloc_vm(void)
1088{
1089 return kzalloc(sizeof(struct kvm), GFP_KERNEL);
1090}
1091
1092static inline void kvm_arch_free_vm(struct kvm *kvm)
1093{
1094 kfree(kvm);
1095}
1096#endif
1097
b08660e5
TL
1098#ifndef __KVM_HAVE_ARCH_FLUSH_REMOTE_TLB
1099static inline int kvm_arch_flush_remote_tlb(struct kvm *kvm)
1100{
1101 return -ENOTSUPP;
1102}
1103#endif
1104
e0f0bbc5
AW
1105#ifdef __KVM_HAVE_ARCH_NONCOHERENT_DMA
1106void kvm_arch_register_noncoherent_dma(struct kvm *kvm);
1107void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm);
1108bool kvm_arch_has_noncoherent_dma(struct kvm *kvm);
1109#else
1110static inline void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
1111{
1112}
1113
1114static inline void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
1115{
1116}
1117
1118static inline bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
1119{
1120 return false;
1121}
1122#endif
5544eb9b
PB
1123#ifdef __KVM_HAVE_ARCH_ASSIGNED_DEVICE
1124void kvm_arch_start_assignment(struct kvm *kvm);
1125void kvm_arch_end_assignment(struct kvm *kvm);
1126bool kvm_arch_has_assigned_device(struct kvm *kvm);
1127#else
1128static inline void kvm_arch_start_assignment(struct kvm *kvm)
1129{
1130}
1131
1132static inline void kvm_arch_end_assignment(struct kvm *kvm)
1133{
1134}
1135
1136static inline bool kvm_arch_has_assigned_device(struct kvm *kvm)
1137{
1138 return false;
1139}
1140#endif
e0f0bbc5 1141
da4ad88c 1142static inline struct rcuwait *kvm_arch_vcpu_get_wait(struct kvm_vcpu *vcpu)
b6d33834 1143{
2246f8b5 1144#ifdef __KVM_HAVE_ARCH_WQP
da4ad88c 1145 return vcpu->arch.waitp;
2246f8b5 1146#else
da4ad88c 1147 return &vcpu->wait;
b6d33834 1148#endif
2246f8b5 1149}
b6d33834 1150
01c94e64
EA
1151#ifdef __KVM_HAVE_ARCH_INTC_INITIALIZED
1152/*
1153 * returns true if the virtual interrupt controller is initialized and
1154 * ready to accept virtual IRQ. On some architectures the virtual interrupt
1155 * controller is dynamically instantiated and this is not always true.
1156 */
1157bool kvm_arch_intc_initialized(struct kvm *kvm);
1158#else
1159static inline bool kvm_arch_intc_initialized(struct kvm *kvm)
1160{
1161 return true;
1162}
1163#endif
1164
e08b9637 1165int kvm_arch_init_vm(struct kvm *kvm, unsigned long type);
d19a9cd2 1166void kvm_arch_destroy_vm(struct kvm *kvm);
ad8ba2cd 1167void kvm_arch_sync_events(struct kvm *kvm);
e9b11c17 1168
3d80840d 1169int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu);
682c59a3 1170
ba049e93 1171bool kvm_is_reserved_pfn(kvm_pfn_t pfn);
a78986aa 1172bool kvm_is_zone_device_pfn(kvm_pfn_t pfn);
005ba37c 1173bool kvm_is_transparent_hugepage(kvm_pfn_t pfn);
c77fb9dc 1174
62c476c7
BAY
1175struct kvm_irq_ack_notifier {
1176 struct hlist_node link;
1177 unsigned gsi;
1178 void (*irq_acked)(struct kvm_irq_ack_notifier *kian);
1179};
1180
9957c86d
PM
1181int kvm_irq_map_gsi(struct kvm *kvm,
1182 struct kvm_kernel_irq_routing_entry *entries, int gsi);
1183int kvm_irq_map_chip_pin(struct kvm *kvm, unsigned irqchip, unsigned pin);
8ba918d4 1184
aa2fbe6d
YZ
1185int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level,
1186 bool line_status);
bd2b53b2 1187int kvm_set_msi(struct kvm_kernel_irq_routing_entry *irq_entry, struct kvm *kvm,
aa2fbe6d 1188 int irq_source_id, int level, bool line_status);
b97e6de9
PB
1189int kvm_arch_set_irq_inatomic(struct kvm_kernel_irq_routing_entry *e,
1190 struct kvm *kvm, int irq_source_id,
1191 int level, bool line_status);
c7c9c56c 1192bool kvm_irq_has_notifier(struct kvm *kvm, unsigned irqchip, unsigned pin);
ba1aefcd 1193void kvm_notify_acked_gsi(struct kvm *kvm, int gsi);
44882eed 1194void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin);
3de42dc0
XZ
1195void kvm_register_irq_ack_notifier(struct kvm *kvm,
1196 struct kvm_irq_ack_notifier *kian);
fa40a821
MT
1197void kvm_unregister_irq_ack_notifier(struct kvm *kvm,
1198 struct kvm_irq_ack_notifier *kian);
5550af4d
SY
1199int kvm_request_irq_source_id(struct kvm *kvm);
1200void kvm_free_irq_source_id(struct kvm *kvm, int irq_source_id);
cdc238eb 1201bool kvm_arch_irqfd_allowed(struct kvm *kvm, struct kvm_irqfd *args);
62c476c7 1202
9d4cba7f 1203/*
0f22af94
DM
1204 * Returns a pointer to the memslot at slot_index if it contains gfn.
1205 * Otherwise returns NULL.
1206 */
1207static inline struct kvm_memory_slot *
1208try_get_memslot(struct kvm_memslots *slots, int slot_index, gfn_t gfn)
1209{
1210 struct kvm_memory_slot *slot;
1211
1212 if (slot_index < 0 || slot_index >= slots->used_slots)
1213 return NULL;
1214
fe22ed82
DM
1215 /*
1216 * slot_index can come from vcpu->last_used_slot which is not kept
1217 * in sync with userspace-controllable memslot deletion. So use nospec
1218 * to prevent the CPU from speculating past the end of memslots[].
1219 */
1220 slot_index = array_index_nospec(slot_index, slots->used_slots);
0f22af94
DM
1221 slot = &slots->memslots[slot_index];
1222
1223 if (gfn >= slot->base_gfn && gfn < slot->base_gfn + slot->npages)
1224 return slot;
1225 else
1226 return NULL;
1227}
1228
1229/*
1230 * Returns a pointer to the memslot that contains gfn and records the index of
1231 * the slot in index. Otherwise returns NULL.
0577d1ab
SC
1232 *
1233 * IMPORTANT: Slots are sorted from highest GFN to lowest GFN!
9d4cba7f
PM
1234 */
1235static inline struct kvm_memory_slot *
0f22af94 1236search_memslots(struct kvm_memslots *slots, gfn_t gfn, int *index)
9d4cba7f 1237{
9c1a5d38 1238 int start = 0, end = slots->used_slots;
9c1a5d38 1239 struct kvm_memory_slot *memslots = slots->memslots;
0f22af94 1240 struct kvm_memory_slot *slot;
9c1a5d38 1241
0774a964
SC
1242 if (unlikely(!slots->used_slots))
1243 return NULL;
1244
9c1a5d38 1245 while (start < end) {
0f22af94 1246 int slot = start + (end - start) / 2;
9c1a5d38
IM
1247
1248 if (gfn >= memslots[slot].base_gfn)
1249 end = slot;
1250 else
1251 start = slot + 1;
1252 }
1253
0f22af94
DM
1254 slot = try_get_memslot(slots, start, gfn);
1255 if (slot) {
1256 *index = start;
1257 return slot;
9c1a5d38 1258 }
9d4cba7f
PM
1259
1260 return NULL;
1261}
1262
0f22af94
DM
1263/*
1264 * __gfn_to_memslot() and its descendants are here because it is called from
1265 * non-modular code in arch/powerpc/kvm/book3s_64_vio{,_hv}.c. gfn_to_memslot()
1266 * itself isn't here as an inline because that would bloat other code too much.
1267 */
9d4cba7f
PM
1268static inline struct kvm_memory_slot *
1269__gfn_to_memslot(struct kvm_memslots *slots, gfn_t gfn)
1270{
0f22af94
DM
1271 struct kvm_memory_slot *slot;
1272 int slot_index = atomic_read(&slots->last_used_slot);
1273
1274 slot = try_get_memslot(slots, slot_index, gfn);
1275 if (slot)
1276 return slot;
1277
1278 slot = search_memslots(slots, gfn, &slot_index);
1279 if (slot) {
1280 atomic_set(&slots->last_used_slot, slot_index);
1281 return slot;
1282 }
1283
1284 return NULL;
9d4cba7f
PM
1285}
1286
66a03505 1287static inline unsigned long
8ca6f063 1288__gfn_to_hva_memslot(const struct kvm_memory_slot *slot, gfn_t gfn)
66a03505 1289{
da27a83f
PB
1290 /*
1291 * The index was checked originally in search_memslots. To avoid
1292 * that a malicious guest builds a Spectre gadget out of e.g. page
1293 * table walks, do not let the processor speculate loads outside
1294 * the guest's registered memslots.
1295 */
4422829e
PB
1296 unsigned long offset = gfn - slot->base_gfn;
1297 offset = array_index_nospec(offset, slot->npages);
da27a83f 1298 return slot->userspace_addr + offset * PAGE_SIZE;
66a03505
GS
1299}
1300
0ee8dcb8
XG
1301static inline int memslot_id(struct kvm *kvm, gfn_t gfn)
1302{
1303 return gfn_to_memslot(kvm, gfn)->id;
1304}
1305
d19a748b
TY
1306static inline gfn_t
1307hva_to_gfn_memslot(unsigned long hva, struct kvm_memory_slot *slot)
887c08ac 1308{
d19a748b
TY
1309 gfn_t gfn_offset = (hva - slot->userspace_addr) >> PAGE_SHIFT;
1310
1311 return slot->base_gfn + gfn_offset;
887c08ac
XG
1312}
1313
1755fbcc
AK
1314static inline gpa_t gfn_to_gpa(gfn_t gfn)
1315{
1316 return (gpa_t)gfn << PAGE_SHIFT;
1317}
6aa8b732 1318
c30a358d
JR
1319static inline gfn_t gpa_to_gfn(gpa_t gpa)
1320{
1321 return (gfn_t)(gpa >> PAGE_SHIFT);
1322}
1323
ba049e93 1324static inline hpa_t pfn_to_hpa(kvm_pfn_t pfn)
62c476c7
BAY
1325{
1326 return (hpa_t)pfn << PAGE_SHIFT;
1327}
1328
5e2f30b7
DH
1329static inline struct page *kvm_vcpu_gpa_to_page(struct kvm_vcpu *vcpu,
1330 gpa_t gpa)
1331{
1332 return kvm_vcpu_gfn_to_page(vcpu, gpa_to_gfn(gpa));
1333}
1334
dfeec843
HC
1335static inline bool kvm_is_error_gpa(struct kvm *kvm, gpa_t gpa)
1336{
1337 unsigned long hva = gfn_to_hva(kvm, gpa_to_gfn(gpa));
1338
1339 return kvm_is_error_hva(hva);
1340}
1341
ba1389b7
AK
1342enum kvm_stat_kind {
1343 KVM_STAT_VM,
1344 KVM_STAT_VCPU,
1345};
1346
536a6f88 1347struct kvm_stat_data {
536a6f88 1348 struct kvm *kvm;
bc9e9e67 1349 const struct _kvm_stats_desc *desc;
ba1389b7 1350 enum kvm_stat_kind kind;
417bc304 1351};
09cbcef6 1352
cb082bfa
JZ
1353struct _kvm_stats_desc {
1354 struct kvm_stats_desc desc;
1355 char name[KVM_STATS_NAME_SIZE];
1356};
1357
f95937cc 1358#define STATS_DESC_COMMON(type, unit, base, exp, sz, bsz) \
cb082bfa
JZ
1359 .flags = type | unit | base | \
1360 BUILD_BUG_ON_ZERO(type & ~KVM_STATS_TYPE_MASK) | \
1361 BUILD_BUG_ON_ZERO(unit & ~KVM_STATS_UNIT_MASK) | \
1362 BUILD_BUG_ON_ZERO(base & ~KVM_STATS_BASE_MASK), \
1363 .exponent = exp, \
f95937cc
JZ
1364 .size = sz, \
1365 .bucket_size = bsz
cb082bfa 1366
f95937cc 1367#define VM_GENERIC_STATS_DESC(stat, type, unit, base, exp, sz, bsz) \
cb082bfa
JZ
1368 { \
1369 { \
f95937cc 1370 STATS_DESC_COMMON(type, unit, base, exp, sz, bsz), \
cb082bfa
JZ
1371 .offset = offsetof(struct kvm_vm_stat, generic.stat) \
1372 }, \
1373 .name = #stat, \
1374 }
f95937cc 1375#define VCPU_GENERIC_STATS_DESC(stat, type, unit, base, exp, sz, bsz) \
cb082bfa
JZ
1376 { \
1377 { \
f95937cc 1378 STATS_DESC_COMMON(type, unit, base, exp, sz, bsz), \
cb082bfa
JZ
1379 .offset = offsetof(struct kvm_vcpu_stat, generic.stat) \
1380 }, \
1381 .name = #stat, \
1382 }
f95937cc 1383#define VM_STATS_DESC(stat, type, unit, base, exp, sz, bsz) \
cb082bfa
JZ
1384 { \
1385 { \
f95937cc 1386 STATS_DESC_COMMON(type, unit, base, exp, sz, bsz), \
cb082bfa
JZ
1387 .offset = offsetof(struct kvm_vm_stat, stat) \
1388 }, \
1389 .name = #stat, \
1390 }
f95937cc 1391#define VCPU_STATS_DESC(stat, type, unit, base, exp, sz, bsz) \
cb082bfa
JZ
1392 { \
1393 { \
f95937cc 1394 STATS_DESC_COMMON(type, unit, base, exp, sz, bsz), \
cb082bfa
JZ
1395 .offset = offsetof(struct kvm_vcpu_stat, stat) \
1396 }, \
1397 .name = #stat, \
1398 }
1399/* SCOPE: VM, VM_GENERIC, VCPU, VCPU_GENERIC */
f95937cc
JZ
1400#define STATS_DESC(SCOPE, stat, type, unit, base, exp, sz, bsz) \
1401 SCOPE##_STATS_DESC(stat, type, unit, base, exp, sz, bsz)
cb082bfa
JZ
1402
1403#define STATS_DESC_CUMULATIVE(SCOPE, name, unit, base, exponent) \
f95937cc
JZ
1404 STATS_DESC(SCOPE, name, KVM_STATS_TYPE_CUMULATIVE, \
1405 unit, base, exponent, 1, 0)
cb082bfa 1406#define STATS_DESC_INSTANT(SCOPE, name, unit, base, exponent) \
f95937cc
JZ
1407 STATS_DESC(SCOPE, name, KVM_STATS_TYPE_INSTANT, \
1408 unit, base, exponent, 1, 0)
cb082bfa 1409#define STATS_DESC_PEAK(SCOPE, name, unit, base, exponent) \
f95937cc
JZ
1410 STATS_DESC(SCOPE, name, KVM_STATS_TYPE_PEAK, \
1411 unit, base, exponent, 1, 0)
1412#define STATS_DESC_LINEAR_HIST(SCOPE, name, unit, base, exponent, sz, bsz) \
1413 STATS_DESC(SCOPE, name, KVM_STATS_TYPE_LINEAR_HIST, \
1414 unit, base, exponent, sz, bsz)
1415#define STATS_DESC_LOG_HIST(SCOPE, name, unit, base, exponent, sz) \
1416 STATS_DESC(SCOPE, name, KVM_STATS_TYPE_LOG_HIST, \
1417 unit, base, exponent, sz, 0)
cb082bfa
JZ
1418
1419/* Cumulative counter, read/write */
1420#define STATS_DESC_COUNTER(SCOPE, name) \
1421 STATS_DESC_CUMULATIVE(SCOPE, name, KVM_STATS_UNIT_NONE, \
1422 KVM_STATS_BASE_POW10, 0)
1423/* Instantaneous counter, read only */
1424#define STATS_DESC_ICOUNTER(SCOPE, name) \
1425 STATS_DESC_INSTANT(SCOPE, name, KVM_STATS_UNIT_NONE, \
1426 KVM_STATS_BASE_POW10, 0)
1427/* Peak counter, read/write */
1428#define STATS_DESC_PCOUNTER(SCOPE, name) \
1429 STATS_DESC_PEAK(SCOPE, name, KVM_STATS_UNIT_NONE, \
1430 KVM_STATS_BASE_POW10, 0)
1431
1432/* Cumulative time in nanosecond */
1433#define STATS_DESC_TIME_NSEC(SCOPE, name) \
1434 STATS_DESC_CUMULATIVE(SCOPE, name, KVM_STATS_UNIT_SECONDS, \
1435 KVM_STATS_BASE_POW10, -9)
f95937cc
JZ
1436/* Linear histogram for time in nanosecond */
1437#define STATS_DESC_LINHIST_TIME_NSEC(SCOPE, name, sz, bsz) \
1438 STATS_DESC_LINEAR_HIST(SCOPE, name, KVM_STATS_UNIT_SECONDS, \
1439 KVM_STATS_BASE_POW10, -9, sz, bsz)
1440/* Logarithmic histogram for time in nanosecond */
1441#define STATS_DESC_LOGHIST_TIME_NSEC(SCOPE, name, sz) \
1442 STATS_DESC_LOG_HIST(SCOPE, name, KVM_STATS_UNIT_SECONDS, \
1443 KVM_STATS_BASE_POW10, -9, sz)
cb082bfa 1444
fcfe1bae 1445#define KVM_GENERIC_VM_STATS() \
3cc4e148
JZ
1446 STATS_DESC_COUNTER(VM_GENERIC, remote_tlb_flush), \
1447 STATS_DESC_COUNTER(VM_GENERIC, remote_tlb_flush_requests)
fcfe1bae 1448
ce55c049
JZ
1449#define KVM_GENERIC_VCPU_STATS() \
1450 STATS_DESC_COUNTER(VCPU_GENERIC, halt_successful_poll), \
1451 STATS_DESC_COUNTER(VCPU_GENERIC, halt_attempted_poll), \
1452 STATS_DESC_COUNTER(VCPU_GENERIC, halt_poll_invalid), \
1453 STATS_DESC_COUNTER(VCPU_GENERIC, halt_wakeup), \
1454 STATS_DESC_TIME_NSEC(VCPU_GENERIC, halt_poll_success_ns), \
87bcc5fa 1455 STATS_DESC_TIME_NSEC(VCPU_GENERIC, halt_poll_fail_ns), \
8ccba534
JZ
1456 STATS_DESC_TIME_NSEC(VCPU_GENERIC, halt_wait_ns), \
1457 STATS_DESC_LOGHIST_TIME_NSEC(VCPU_GENERIC, halt_poll_success_hist, \
1458 HALT_POLL_HIST_COUNT), \
1459 STATS_DESC_LOGHIST_TIME_NSEC(VCPU_GENERIC, halt_poll_fail_hist, \
1460 HALT_POLL_HIST_COUNT), \
1461 STATS_DESC_LOGHIST_TIME_NSEC(VCPU_GENERIC, halt_wait_hist, \
1462 HALT_POLL_HIST_COUNT)
ce55c049 1463
76f7c879 1464extern struct dentry *kvm_debugfs_dir;
f95937cc 1465
cb082bfa
JZ
1466ssize_t kvm_stats_read(char *id, const struct kvm_stats_header *header,
1467 const struct _kvm_stats_desc *desc,
1468 void *stats, size_t size_stats,
1469 char __user *user_buffer, size_t size, loff_t *offset);
f95937cc
JZ
1470
1471/**
1472 * kvm_stats_linear_hist_update() - Update bucket value for linear histogram
1473 * statistics data.
1474 *
1475 * @data: start address of the stats data
1476 * @size: the number of bucket of the stats data
1477 * @value: the new value used to update the linear histogram's bucket
1478 * @bucket_size: the size (width) of a bucket
1479 */
1480static inline void kvm_stats_linear_hist_update(u64 *data, size_t size,
1481 u64 value, size_t bucket_size)
1482{
1483 size_t index = div64_u64(value, bucket_size);
1484
1485 index = min(index, size - 1);
1486 ++data[index];
1487}
1488
1489/**
1490 * kvm_stats_log_hist_update() - Update bucket value for logarithmic histogram
1491 * statistics data.
1492 *
1493 * @data: start address of the stats data
1494 * @size: the number of bucket of the stats data
1495 * @value: the new value used to update the logarithmic histogram's bucket
1496 */
1497static inline void kvm_stats_log_hist_update(u64 *data, size_t size, u64 value)
1498{
1499 size_t index = fls64(value);
1500
1501 index = min(index, size - 1);
1502 ++data[index];
1503}
1504
1505#define KVM_STATS_LINEAR_HIST_UPDATE(array, value, bsize) \
1506 kvm_stats_linear_hist_update(array, ARRAY_SIZE(array), value, bsize)
1507#define KVM_STATS_LOG_HIST_UPDATE(array, value) \
1508 kvm_stats_log_hist_update(array, ARRAY_SIZE(array), value)
1509
1510
fcfe1bae
JZ
1511extern const struct kvm_stats_header kvm_vm_stats_header;
1512extern const struct _kvm_stats_desc kvm_vm_stats_desc[];
ce55c049
JZ
1513extern const struct kvm_stats_header kvm_vcpu_stats_header;
1514extern const struct _kvm_stats_desc kvm_vcpu_stats_desc[];
d4c9ff2d 1515
36c1ed82 1516#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
8ca40a70 1517static inline int mmu_notifier_retry(struct kvm *kvm, unsigned long mmu_seq)
e930bffe 1518{
8ca40a70 1519 if (unlikely(kvm->mmu_notifier_count))
e930bffe
AA
1520 return 1;
1521 /*
a355aa54
PM
1522 * Ensure the read of mmu_notifier_count happens before the read
1523 * of mmu_notifier_seq. This interacts with the smp_wmb() in
1524 * mmu_notifier_invalidate_range_end to make sure that the caller
1525 * either sees the old (non-zero) value of mmu_notifier_count or
1526 * the new (incremented) value of mmu_notifier_seq.
1527 * PowerPC Book3s HV KVM calls this under a per-page lock
1528 * rather than under kvm->mmu_lock, for scalability, so
1529 * can't rely on kvm->mmu_lock to keep things ordered.
e930bffe 1530 */
a355aa54 1531 smp_rmb();
8ca40a70 1532 if (kvm->mmu_notifier_seq != mmu_seq)
e930bffe
AA
1533 return 1;
1534 return 0;
1535}
4a42d848
DS
1536
1537static inline int mmu_notifier_retry_hva(struct kvm *kvm,
1538 unsigned long mmu_seq,
1539 unsigned long hva)
1540{
1541 lockdep_assert_held(&kvm->mmu_lock);
1542 /*
1543 * If mmu_notifier_count is non-zero, then the range maintained by
1544 * kvm_mmu_notifier_invalidate_range_start contains all addresses that
1545 * might be being invalidated. Note that it may include some false
1546 * positives, due to shortcuts when handing concurrent invalidations.
1547 */
1548 if (unlikely(kvm->mmu_notifier_count) &&
1549 hva >= kvm->mmu_notifier_range_start &&
1550 hva < kvm->mmu_notifier_range_end)
1551 return 1;
1552 if (kvm->mmu_notifier_seq != mmu_seq)
1553 return 1;
1554 return 0;
1555}
e930bffe
AA
1556#endif
1557
a725d56a 1558#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
399ec807 1559
ddc9cfb7 1560#define KVM_MAX_IRQ_ROUTES 4096 /* might need extension/rework in the future */
399ec807 1561
5c0aea0e 1562bool kvm_arch_can_set_irq_routing(struct kvm *kvm);
399ec807
AK
1563int kvm_set_irq_routing(struct kvm *kvm,
1564 const struct kvm_irq_routing_entry *entries,
1565 unsigned nr,
1566 unsigned flags);
c63cf538
RK
1567int kvm_set_routing_entry(struct kvm *kvm,
1568 struct kvm_kernel_irq_routing_entry *e,
e8cde093 1569 const struct kvm_irq_routing_entry *ue);
399ec807
AK
1570void kvm_free_irq_routing(struct kvm *kvm);
1571
1572#else
1573
1574static inline void kvm_free_irq_routing(struct kvm *kvm) {}
1575
1576#endif
1577
297e2105
PM
1578int kvm_send_userspace_msi(struct kvm *kvm, struct kvm_msi *msi);
1579
721eecbf
GH
1580#ifdef CONFIG_HAVE_KVM_EVENTFD
1581
d34e6b17 1582void kvm_eventfd_init(struct kvm *kvm);
914daba8
AG
1583int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args);
1584
297e2105 1585#ifdef CONFIG_HAVE_KVM_IRQFD
d4db2935 1586int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args);
721eecbf 1587void kvm_irqfd_release(struct kvm *kvm);
9957c86d 1588void kvm_irq_routing_update(struct kvm *);
914daba8
AG
1589#else
1590static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
1591{
1592 return -EINVAL;
1593}
1594
1595static inline void kvm_irqfd_release(struct kvm *kvm) {}
1596#endif
721eecbf
GH
1597
1598#else
1599
d34e6b17 1600static inline void kvm_eventfd_init(struct kvm *kvm) {}
bd2b53b2 1601
d4db2935 1602static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
721eecbf
GH
1603{
1604 return -EINVAL;
1605}
1606
1607static inline void kvm_irqfd_release(struct kvm *kvm) {}
bd2b53b2 1608
27923eb1 1609#ifdef CONFIG_HAVE_KVM_IRQCHIP
9957c86d 1610static inline void kvm_irq_routing_update(struct kvm *kvm)
bd2b53b2 1611{
bd2b53b2 1612}
27923eb1 1613#endif
bd2b53b2 1614
d34e6b17
GH
1615static inline int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args)
1616{
1617 return -ENOSYS;
1618}
721eecbf
GH
1619
1620#endif /* CONFIG_HAVE_KVM_EVENTFD */
1621
07646749
SO
1622void kvm_arch_irq_routing_update(struct kvm *kvm);
1623
a8eeb04a
AK
1624static inline void kvm_make_request(int req, struct kvm_vcpu *vcpu)
1625{
2e4682ba
PB
1626 /*
1627 * Ensure the rest of the request is published to kvm_check_request's
1628 * caller. Paired with the smp_mb__after_atomic in kvm_check_request.
1629 */
1630 smp_wmb();
86dafed5 1631 set_bit(req & KVM_REQUEST_MASK, (void *)&vcpu->requests);
a8eeb04a
AK
1632}
1633
2fa6e1e1
RK
1634static inline bool kvm_request_pending(struct kvm_vcpu *vcpu)
1635{
1636 return READ_ONCE(vcpu->requests);
1637}
1638
72875d8a
RK
1639static inline bool kvm_test_request(int req, struct kvm_vcpu *vcpu)
1640{
86dafed5 1641 return test_bit(req & KVM_REQUEST_MASK, (void *)&vcpu->requests);
72875d8a
RK
1642}
1643
1644static inline void kvm_clear_request(int req, struct kvm_vcpu *vcpu)
1645{
86dafed5 1646 clear_bit(req & KVM_REQUEST_MASK, (void *)&vcpu->requests);
72875d8a
RK
1647}
1648
a8eeb04a
AK
1649static inline bool kvm_check_request(int req, struct kvm_vcpu *vcpu)
1650{
72875d8a
RK
1651 if (kvm_test_request(req, vcpu)) {
1652 kvm_clear_request(req, vcpu);
2e4682ba
PB
1653
1654 /*
1655 * Ensure the rest of the request is visible to kvm_check_request's
1656 * caller. Paired with the smp_wmb in kvm_make_request.
1657 */
1658 smp_mb__after_atomic();
0719837c
AK
1659 return true;
1660 } else {
1661 return false;
1662 }
a8eeb04a
AK
1663}
1664
8b415dcd
GL
1665extern bool kvm_rebooting;
1666
ec76d819
SJS
1667extern unsigned int halt_poll_ns;
1668extern unsigned int halt_poll_ns_grow;
49113d36 1669extern unsigned int halt_poll_ns_grow_start;
ec76d819
SJS
1670extern unsigned int halt_poll_ns_shrink;
1671
852b6d57 1672struct kvm_device {
8538cb22 1673 const struct kvm_device_ops *ops;
852b6d57 1674 struct kvm *kvm;
852b6d57 1675 void *private;
07f0a7bd 1676 struct list_head vm_node;
852b6d57
SW
1677};
1678
1679/* create, destroy, and name are mandatory */
1680struct kvm_device_ops {
1681 const char *name;
a28ebea2
CD
1682
1683 /*
1684 * create is called holding kvm->lock and any operations not suitable
1685 * to do while holding the lock should be deferred to init (see
1686 * below).
1687 */
852b6d57
SW
1688 int (*create)(struct kvm_device *dev, u32 type);
1689
023e9fdd
CD
1690 /*
1691 * init is called after create if create is successful and is called
1692 * outside of holding kvm->lock.
1693 */
1694 void (*init)(struct kvm_device *dev);
1695
852b6d57
SW
1696 /*
1697 * Destroy is responsible for freeing dev.
1698 *
1699 * Destroy may be called before or after destructors are called
1700 * on emulated I/O regions, depending on whether a reference is
1701 * held by a vcpu or other kvm component that gets destroyed
1702 * after the emulated I/O.
1703 */
1704 void (*destroy)(struct kvm_device *dev);
1705
2bde9b3e
CLG
1706 /*
1707 * Release is an alternative method to free the device. It is
1708 * called when the device file descriptor is closed. Once
1709 * release is called, the destroy method will not be called
1710 * anymore as the device is removed from the device list of
1711 * the VM. kvm->lock is held.
1712 */
1713 void (*release)(struct kvm_device *dev);
1714
852b6d57
SW
1715 int (*set_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1716 int (*get_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1717 int (*has_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1718 long (*ioctl)(struct kvm_device *dev, unsigned int ioctl,
1719 unsigned long arg);
a1cd3f08 1720 int (*mmap)(struct kvm_device *dev, struct vm_area_struct *vma);
852b6d57
SW
1721};
1722
1723void kvm_device_get(struct kvm_device *dev);
1724void kvm_device_put(struct kvm_device *dev);
1725struct kvm_device *kvm_device_from_filp(struct file *filp);
8538cb22 1726int kvm_register_device_ops(const struct kvm_device_ops *ops, u32 type);
571ee1b6 1727void kvm_unregister_device_ops(u32 type);
852b6d57 1728
5df554ad 1729extern struct kvm_device_ops kvm_mpic_ops;
ea2f83a7 1730extern struct kvm_device_ops kvm_arm_vgic_v2_ops;
a0675c25 1731extern struct kvm_device_ops kvm_arm_vgic_v3_ops;
5df554ad 1732
4c088493
R
1733#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
1734
1735static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
1736{
1737 vcpu->spin_loop.in_spin_loop = val;
1738}
1739static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
1740{
1741 vcpu->spin_loop.dy_eligible = val;
1742}
1743
1744#else /* !CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
1745
1746static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
1747{
1748}
1749
1750static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
1751{
1752}
4c088493 1753#endif /* CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
1a02b270 1754
c36b7150
PB
1755static inline bool kvm_is_visible_memslot(struct kvm_memory_slot *memslot)
1756{
1757 return (memslot && memslot->id < KVM_USER_MEM_SLOTS &&
1758 !(memslot->flags & KVM_MEMSLOT_INVALID));
1759}
1760
7495e22b 1761struct kvm_vcpu *kvm_get_running_vcpu(void);
fcd07f9a 1762struct kvm_vcpu * __percpu *kvm_get_running_vcpus(void);
7495e22b 1763
1a02b270 1764#ifdef CONFIG_HAVE_KVM_IRQ_BYPASS
14717e20 1765bool kvm_arch_has_irq_bypass(void);
1a02b270
EA
1766int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *,
1767 struct irq_bypass_producer *);
1768void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *,
1769 struct irq_bypass_producer *);
1770void kvm_arch_irq_bypass_stop(struct irq_bypass_consumer *);
1771void kvm_arch_irq_bypass_start(struct irq_bypass_consumer *);
f70c20aa
FW
1772int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
1773 uint32_t guest_irq, bool set);
1a02b270 1774#endif /* CONFIG_HAVE_KVM_IRQ_BYPASS */
35181e86 1775
3491caf2
CB
1776#ifdef CONFIG_HAVE_KVM_INVALID_WAKEUPS
1777/* If we wakeup during the poll time, was it a sucessful poll? */
1778static inline bool vcpu_valid_wakeup(struct kvm_vcpu *vcpu)
1779{
1780 return vcpu->valid_wakeup;
1781}
1782
1783#else
1784static inline bool vcpu_valid_wakeup(struct kvm_vcpu *vcpu)
1785{
1786 return true;
1787}
1788#endif /* CONFIG_HAVE_KVM_INVALID_WAKEUPS */
1789
cdd6ad3a
CB
1790#ifdef CONFIG_HAVE_KVM_NO_POLL
1791/* Callback that tells if we must not poll */
1792bool kvm_arch_no_poll(struct kvm_vcpu *vcpu);
1793#else
1794static inline bool kvm_arch_no_poll(struct kvm_vcpu *vcpu)
1795{
1796 return false;
1797}
1798#endif /* CONFIG_HAVE_KVM_NO_POLL */
1799
5cb0944c
PB
1800#ifdef CONFIG_HAVE_KVM_VCPU_ASYNC_IOCTL
1801long kvm_arch_vcpu_async_ioctl(struct file *filp,
1802 unsigned int ioctl, unsigned long arg);
1803#else
1804static inline long kvm_arch_vcpu_async_ioctl(struct file *filp,
1805 unsigned int ioctl,
1806 unsigned long arg)
1807{
1808 return -ENOIOCTLCMD;
1809}
1810#endif /* CONFIG_HAVE_KVM_VCPU_ASYNC_IOCTL */
1811
e649b3f0
ET
1812void kvm_arch_mmu_notifier_invalidate_range(struct kvm *kvm,
1813 unsigned long start, unsigned long end);
f75e4924 1814
bd2a6394
CD
1815#ifdef CONFIG_HAVE_KVM_VCPU_RUN_PID_CHANGE
1816int kvm_arch_vcpu_run_pid_change(struct kvm_vcpu *vcpu);
1817#else
1818static inline int kvm_arch_vcpu_run_pid_change(struct kvm_vcpu *vcpu)
1819{
1820 return 0;
1821}
1822#endif /* CONFIG_HAVE_KVM_VCPU_RUN_PID_CHANGE */
1823
c57c8046
JS
1824typedef int (*kvm_vm_thread_fn_t)(struct kvm *kvm, uintptr_t data);
1825
1826int kvm_vm_create_worker_thread(struct kvm *kvm, kvm_vm_thread_fn_t thread_fn,
1827 uintptr_t data, const char *name,
1828 struct task_struct **thread_ptr);
1829
935ace2f
TG
1830#ifdef CONFIG_KVM_XFER_TO_GUEST_WORK
1831static inline void kvm_handle_signal_exit(struct kvm_vcpu *vcpu)
1832{
1833 vcpu->run->exit_reason = KVM_EXIT_INTR;
1834 vcpu->stat.signal_exits++;
1835}
1836#endif /* CONFIG_KVM_XFER_TO_GUEST_WORK */
1837
fb04a1ed
PX
1838/*
1839 * This defines how many reserved entries we want to keep before we
1840 * kick the vcpu to the userspace to avoid dirty ring full. This
1841 * value can be tuned to higher if e.g. PML is enabled on the host.
1842 */
1843#define KVM_DIRTY_RING_RSVD_ENTRIES 64
1844
1845/* Max number of entries allowed for each kvm dirty ring */
1846#define KVM_DIRTY_RING_MAX_ENTRIES 65536
1847
bfd99ff5 1848#endif