Merge tag 'mm-hotfixes-stable-2023-05-03-16-27' of git://git.kernel.org/pub/scm/linux...
[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>
ef9989af 32#include <linux/ftrace.h>
26b8345a 33#include <linux/hashtable.h>
ef9989af 34#include <linux/instrumentation.h>
ed922739 35#include <linux/interval_tree.h>
a54d8066 36#include <linux/rbtree.h>
c5b07754 37#include <linux/xarray.h>
e8edc6e0 38#include <asm/signal.h>
6aa8b732 39
6aa8b732 40#include <linux/kvm.h>
102d8325 41#include <linux/kvm_para.h>
6aa8b732 42
edf88417 43#include <linux/kvm_types.h>
d77a39d9 44
edf88417 45#include <asm/kvm_host.h>
fb04a1ed 46#include <linux/kvm_dirty_ring.h>
d657a98e 47
a1c42dde
JG
48#ifndef KVM_MAX_VCPU_IDS
49#define KVM_MAX_VCPU_IDS KVM_MAX_VCPUS
0b1b1dfd
GK
50#endif
51
67b29204 52/*
30ee198c
JMC
53 * The bit 16 ~ bit 31 of kvm_userspace_memory_region::flags are internally
54 * used in kvm, other bits are visible for userspace which are defined in
67b29204
XG
55 * include/linux/kvm_h.
56 */
57#define KVM_MEMSLOT_INVALID (1UL << 16)
58
361209e0 59/*
164bf7e5 60 * Bit 63 of the memslot generation number is an "update in-progress flag",
b0d23708 61 * e.g. is temporarily set for the duration of kvm_swap_active_memslots().
361209e0
SC
62 * This flag effectively creates a unique generation number that is used to
63 * mark cached memslot data, e.g. MMIO accesses, as potentially being stale,
64 * i.e. may (or may not) have come from the previous memslots generation.
65 *
66 * This is necessary because the actual memslots update is not atomic with
67 * respect to the generation number update. Updating the generation number
68 * first would allow a vCPU to cache a spte from the old memslots using the
69 * new generation number, and updating the generation number after switching
70 * to the new memslots would allow cache hits using the old generation number
71 * to reference the defunct memslots.
72 *
73 * This mechanism is used to prevent getting hits in KVM's caches while a
74 * memslot update is in-progress, and to prevent cache hits *after* updating
75 * the actual generation number against accesses that were inserted into the
76 * cache *before* the memslots were updated.
77 */
164bf7e5 78#define KVM_MEMSLOT_GEN_UPDATE_IN_PROGRESS BIT_ULL(63)
361209e0 79
87da7e66
XG
80/* Two fragments for cross MMIO pages. */
81#define KVM_MAX_MMIO_FRAGMENTS 2
f78146b0 82
f481b069
PB
83#ifndef KVM_ADDRESS_SPACE_NUM
84#define KVM_ADDRESS_SPACE_NUM 1
85#endif
86
9c5b1172
XG
87/*
88 * For the normal pfn, the highest 12 bits should be zero,
81c52c56
XG
89 * so we can mask bit 62 ~ bit 52 to indicate the error pfn,
90 * mask bit 63 to indicate the noslot pfn.
9c5b1172 91 */
81c52c56
XG
92#define KVM_PFN_ERR_MASK (0x7ffULL << 52)
93#define KVM_PFN_ERR_NOSLOT_MASK (0xfffULL << 52)
94#define KVM_PFN_NOSLOT (0x1ULL << 63)
9c5b1172
XG
95
96#define KVM_PFN_ERR_FAULT (KVM_PFN_ERR_MASK)
97#define KVM_PFN_ERR_HWPOISON (KVM_PFN_ERR_MASK + 1)
81c52c56 98#define KVM_PFN_ERR_RO_FAULT (KVM_PFN_ERR_MASK + 2)
fe5ed56c 99#define KVM_PFN_ERR_SIGPENDING (KVM_PFN_ERR_MASK + 3)
6c8ee57b 100
81c52c56
XG
101/*
102 * error pfns indicate that the gfn is in slot but faild to
103 * translate it to pfn on host.
104 */
ba049e93 105static inline bool is_error_pfn(kvm_pfn_t pfn)
83f09228 106{
9c5b1172 107 return !!(pfn & KVM_PFN_ERR_MASK);
83f09228
XG
108}
109
fe5ed56c
PX
110/*
111 * KVM_PFN_ERR_SIGPENDING indicates that fetching the PFN was interrupted
112 * by a pending signal. Note, the signal may or may not be fatal.
113 */
114static inline bool is_sigpending_pfn(kvm_pfn_t pfn)
115{
116 return pfn == KVM_PFN_ERR_SIGPENDING;
117}
118
81c52c56
XG
119/*
120 * error_noslot pfns indicate that the gfn can not be
121 * translated to pfn - it is not in slot or failed to
122 * translate it to pfn.
123 */
ba049e93 124static inline bool is_error_noslot_pfn(kvm_pfn_t pfn)
83f09228 125{
81c52c56 126 return !!(pfn & KVM_PFN_ERR_NOSLOT_MASK);
83f09228
XG
127}
128
81c52c56 129/* noslot pfn indicates that the gfn is not in slot. */
ba049e93 130static inline bool is_noslot_pfn(kvm_pfn_t pfn)
83f09228 131{
81c52c56 132 return pfn == KVM_PFN_NOSLOT;
83f09228
XG
133}
134
bf640876
DD
135/*
136 * architectures with KVM_HVA_ERR_BAD other than PAGE_OFFSET (e.g. s390)
137 * provide own defines and kvm_is_error_hva
138 */
139#ifndef KVM_HVA_ERR_BAD
140
7068d097
XG
141#define KVM_HVA_ERR_BAD (PAGE_OFFSET)
142#define KVM_HVA_ERR_RO_BAD (PAGE_OFFSET + PAGE_SIZE)
ca3a490c
XG
143
144static inline bool kvm_is_error_hva(unsigned long addr)
145{
7068d097 146 return addr >= PAGE_OFFSET;
ca3a490c
XG
147}
148
bf640876
DD
149#endif
150
6cede2e6
XG
151#define KVM_ERR_PTR_BAD_PAGE (ERR_PTR(-ENOENT))
152
9c5b1172 153static inline bool is_error_page(struct page *page)
6cede2e6
XG
154{
155 return IS_ERR(page);
156}
157
930f7fd6
RK
158#define KVM_REQUEST_MASK GENMASK(7,0)
159#define KVM_REQUEST_NO_WAKEUP BIT(8)
7a97cec2 160#define KVM_REQUEST_WAIT BIT(9)
df06dae3 161#define KVM_REQUEST_NO_ACTION BIT(10)
d9e368d6 162/*
2860c4b1 163 * Architecture-independent vcpu->requests bit members
c59fb127 164 * Bits 3-7 are reserved for more arch-independent bits.
d9e368d6 165 */
cf87ac73
GS
166#define KVM_REQ_TLB_FLUSH (0 | KVM_REQUEST_WAIT | KVM_REQUEST_NO_WAKEUP)
167#define KVM_REQ_VM_DEAD (1 | KVM_REQUEST_WAIT | KVM_REQUEST_NO_WAKEUP)
168#define KVM_REQ_UNBLOCK 2
169#define KVM_REQ_DIRTY_RING_SOFT_FULL 3
170#define KVM_REQUEST_ARCH_BASE 8
2387149e 171
df06dae3
SC
172/*
173 * KVM_REQ_OUTSIDE_GUEST_MODE exists is purely as way to force the vCPU to
174 * OUTSIDE_GUEST_MODE. KVM_REQ_OUTSIDE_GUEST_MODE differs from a vCPU "kick"
175 * in that it ensures the vCPU has reached OUTSIDE_GUEST_MODE before continuing
176 * on. A kick only guarantees that the vCPU is on its way out, e.g. a previous
177 * kick may have set vcpu->mode to EXITING_GUEST_MODE, and so there's no
178 * guarantee the vCPU received an IPI and has actually exited guest mode.
179 */
180#define KVM_REQ_OUTSIDE_GUEST_MODE (KVM_REQUEST_NO_ACTION | KVM_REQUEST_WAIT | KVM_REQUEST_NO_WAKEUP)
181
2387149e 182#define KVM_ARCH_REQ_FLAGS(nr, flags) ({ \
c593642c 183 BUILD_BUG_ON((unsigned)(nr) >= (sizeof_field(struct kvm_vcpu, requests) * 8) - KVM_REQUEST_ARCH_BASE); \
2387149e
AJ
184 (unsigned)(((nr) + KVM_REQUEST_ARCH_BASE) | (flags)); \
185})
186#define KVM_ARCH_REQ(nr) KVM_ARCH_REQ_FLAGS(nr, 0)
0cd31043 187
7ee3e8c3 188bool kvm_make_vcpus_request_mask(struct kvm *kvm, unsigned int req,
620b2438 189 unsigned long *vcpu_bitmap);
7ee3e8c3
SC
190bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req);
191bool kvm_make_all_cpus_request_except(struct kvm *kvm, unsigned int req,
192 struct kvm_vcpu *except);
193bool kvm_make_cpus_request_mask(struct kvm *kvm, unsigned int req,
194 unsigned long *vcpu_bitmap);
195
7a84428a
AW
196#define KVM_USERSPACE_IRQ_SOURCE_ID 0
197#define KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID 1
5550af4d 198
0d9ce162 199extern struct mutex kvm_lock;
fc1b7492
GL
200extern struct list_head vm_list;
201
743eeb0b
SL
202struct kvm_io_range {
203 gpa_t addr;
204 int len;
205 struct kvm_io_device *dev;
206};
207
786a9f88 208#define NR_IOBUS_DEVS 1000
a1300716 209
2eeb2e94 210struct kvm_io_bus {
6ea34c9b
AK
211 int dev_count;
212 int ioeventfd_count;
a1300716 213 struct kvm_io_range range[];
2eeb2e94
GH
214};
215
e93f8a0f
MT
216enum kvm_bus {
217 KVM_MMIO_BUS,
218 KVM_PIO_BUS,
060f0ce6 219 KVM_VIRTIO_CCW_NOTIFY_BUS,
68c3b4d1 220 KVM_FAST_MMIO_BUS,
e93f8a0f
MT
221 KVM_NR_BUSES
222};
223
e32edf4f 224int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
e93f8a0f 225 int len, const void *val);
e32edf4f
NN
226int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
227 gpa_t addr, int len, const void *val, long cookie);
228int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
229 int len, void *val);
743eeb0b
SL
230int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
231 int len, struct kvm_io_device *dev);
5d3c4c79
SC
232int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
233 struct kvm_io_device *dev);
8a39d006
AP
234struct kvm_io_device *kvm_io_bus_get_dev(struct kvm *kvm, enum kvm_bus bus_idx,
235 gpa_t addr);
2eeb2e94 236
af585b92
GN
237#ifdef CONFIG_KVM_ASYNC_PF
238struct kvm_async_pf {
239 struct work_struct work;
240 struct list_head link;
241 struct list_head queue;
242 struct kvm_vcpu *vcpu;
243 struct mm_struct *mm;
736c291c 244 gpa_t cr2_or_gpa;
af585b92
GN
245 unsigned long addr;
246 struct kvm_arch_async_pf arch;
f2e10669 247 bool wakeup_all;
2a18b7e7 248 bool notpresent_injected;
af585b92
GN
249};
250
251void kvm_clear_async_pf_completion_queue(struct kvm_vcpu *vcpu);
252void kvm_check_async_pf_completion(struct kvm_vcpu *vcpu);
e8c22266
VK
253bool kvm_setup_async_pf(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
254 unsigned long hva, struct kvm_arch_async_pf *arch);
344d9588 255int kvm_async_pf_wakeup_all(struct kvm_vcpu *vcpu);
af585b92
GN
256#endif
257
5f7c292b 258#ifdef KVM_ARCH_WANT_MMU_NOTIFIER
3039bcc7
SC
259struct kvm_gfn_range {
260 struct kvm_memory_slot *slot;
261 gfn_t start;
262 gfn_t end;
263 pte_t pte;
264 bool may_block;
265};
266bool kvm_unmap_gfn_range(struct kvm *kvm, struct kvm_gfn_range *range);
267bool kvm_age_gfn(struct kvm *kvm, struct kvm_gfn_range *range);
268bool kvm_test_age_gfn(struct kvm *kvm, struct kvm_gfn_range *range);
269bool kvm_set_spte_gfn(struct kvm *kvm, struct kvm_gfn_range *range);
5f7c292b
SC
270#endif
271
6b7e2d09
XG
272enum {
273 OUTSIDE_GUEST_MODE,
274 IN_GUEST_MODE,
c142786c
AK
275 EXITING_GUEST_MODE,
276 READING_SHADOW_PAGE_TABLES,
6b7e2d09
XG
277};
278
e45adf66
KA
279#define KVM_UNMAPPED_PAGE ((void *) 0x500 + POISON_POINTER_DELTA)
280
281struct kvm_host_map {
282 /*
283 * Only valid if the 'pfn' is managed by the host kernel (i.e. There is
284 * a 'struct page' for it. When using mem= kernel parameter some memory
285 * can be used as guest memory but they are not managed by host
286 * kernel).
287 * If 'pfn' is not managed by the host kernel, this field is
288 * initialized to KVM_UNMAPPED_PAGE.
289 */
290 struct page *page;
291 void *hva;
292 kvm_pfn_t pfn;
293 kvm_pfn_t gfn;
294};
295
296/*
297 * Used to check if the mapping is valid or not. Never use 'kvm_host_map'
298 * directly to check for that.
299 */
300static inline bool kvm_vcpu_mapped(struct kvm_host_map *map)
301{
302 return !!map->hva;
303}
304
6bd5b743
WL
305static inline bool kvm_vcpu_can_poll(ktime_t cur, ktime_t stop)
306{
307 return single_task_running() && !need_resched() && ktime_before(cur, stop);
308}
309
f78146b0
AK
310/*
311 * Sometimes a large or cross-page mmio needs to be broken up into separate
312 * exits for userspace servicing.
313 */
314struct kvm_mmio_fragment {
315 gpa_t gpa;
316 void *data;
317 unsigned len;
318};
319
d17fbbf7
ZX
320struct kvm_vcpu {
321 struct kvm *kvm;
31bb117e 322#ifdef CONFIG_PREEMPT_NOTIFIERS
d17fbbf7 323 struct preempt_notifier preempt_notifier;
31bb117e 324#endif
6b7e2d09 325 int cpu;
8750e72a 326 int vcpu_id; /* id given by userspace at creation */
5bad5d55 327 int vcpu_idx; /* index into kvm->vcpu_array */
2031f287
SC
328 int ____srcu_idx; /* Don't use this directly. You've been warned. */
329#ifdef CONFIG_PROVE_RCU
330 int srcu_depth;
331#endif
6b7e2d09 332 int mode;
86dafed5 333 u64 requests;
d0bfb940 334 unsigned long guest_debug;
6b7e2d09
XG
335
336 struct mutex mutex;
337 struct kvm_run *run;
f656ce01 338
510958e9 339#ifndef __KVM_HAVE_ARCH_WQP
da4ad88c 340 struct rcuwait wait;
510958e9 341#endif
0e4524a5 342 struct pid __rcu *pid;
d17fbbf7
ZX
343 int sigset_active;
344 sigset_t sigset;
19020f8a 345 unsigned int halt_poll_ns;
3491caf2 346 bool valid_wakeup;
d17fbbf7 347
34c16eec 348#ifdef CONFIG_HAS_IOMEM
d17fbbf7
ZX
349 int mmio_needed;
350 int mmio_read_completed;
351 int mmio_is_write;
f78146b0
AK
352 int mmio_cur_fragment;
353 int mmio_nr_fragments;
354 struct kvm_mmio_fragment mmio_fragments[KVM_MAX_MMIO_FRAGMENTS];
34c16eec 355#endif
1165f5fe 356
af585b92
GN
357#ifdef CONFIG_KVM_ASYNC_PF
358 struct {
359 u32 queued;
360 struct list_head queue;
361 struct list_head done;
362 spinlock_t lock;
363 } async_pf;
364#endif
365
4c088493
R
366#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
367 /*
368 * Cpu relax intercept or pause loop exit optimization
369 * in_spin_loop: set when a vcpu does a pause loop exit
370 * or cpu relax intercepted.
371 * dy_eligible: indicates whether vcpu is eligible for directed yield.
372 */
373 struct {
374 bool in_spin_loop;
375 bool dy_eligible;
376 } spin_loop;
377#endif
3a08a8f9 378 bool preempted;
d73eb57b 379 bool ready;
d657a98e 380 struct kvm_vcpu_arch arch;
ce55c049
JZ
381 struct kvm_vcpu_stat stat;
382 char stats_id[KVM_STATS_NAME_SIZE];
fb04a1ed 383 struct kvm_dirty_ring dirty_ring;
fe22ed82
DM
384
385 /*
a54d8066
MS
386 * The most recently used memslot by this vCPU and the slots generation
387 * for which it is valid.
388 * No wraparound protection is needed since generations won't overflow in
389 * thousands of years, even assuming 1M memslot operations per second.
fe22ed82 390 */
a54d8066
MS
391 struct kvm_memory_slot *last_used_slot;
392 u64 last_used_slot_gen;
d657a98e
ZX
393};
394
ef9989af
MR
395/*
396 * Start accounting time towards a guest.
397 * Must be called before entering guest context.
398 */
399static __always_inline void guest_timing_enter_irqoff(void)
1ca0016c
SC
400{
401 /*
402 * This is running in ioctl context so its safe to assume that it's the
403 * stime pending cputime to flush.
404 */
405 instrumentation_begin();
406 vtime_account_guest_enter();
407 instrumentation_end();
ef9989af 408}
1ca0016c 409
ef9989af
MR
410/*
411 * Enter guest context and enter an RCU extended quiescent state.
412 *
413 * Between guest_context_enter_irqoff() and guest_context_exit_irqoff() it is
414 * unsafe to use any code which may directly or indirectly use RCU, tracing
415 * (including IRQ flag tracing), or lockdep. All code in this period must be
416 * non-instrumentable.
417 */
418static __always_inline void guest_context_enter_irqoff(void)
419{
1ca0016c
SC
420 /*
421 * KVM does not hold any references to rcu protected data when it
422 * switches CPU into a guest mode. In fact switching to a guest mode
423 * is very similar to exiting to userspace from rcu point of view. In
424 * addition CPU may stay in a guest mode for quite a long time (up to
425 * one time slice). Lets treat guest mode as quiescent state, just like
426 * we do with user-mode execution.
427 */
428 if (!context_tracking_guest_enter()) {
429 instrumentation_begin();
b5ad0d2e 430 rcu_virt_note_context_switch();
1ca0016c
SC
431 instrumentation_end();
432 }
433}
434
ef9989af
MR
435/*
436 * Deprecated. Architectures should move to guest_timing_enter_irqoff() and
437 * guest_state_enter_irqoff().
438 */
439static __always_inline void guest_enter_irqoff(void)
440{
441 guest_timing_enter_irqoff();
442 guest_context_enter_irqoff();
443}
444
445/**
446 * guest_state_enter_irqoff - Fixup state when entering a guest
447 *
448 * Entry to a guest will enable interrupts, but the kernel state is interrupts
449 * disabled when this is invoked. Also tell RCU about it.
450 *
451 * 1) Trace interrupts on state
452 * 2) Invoke context tracking if enabled to adjust RCU state
453 * 3) Tell lockdep that interrupts are enabled
454 *
455 * Invoked from architecture specific code before entering a guest.
456 * Must be called with interrupts disabled and the caller must be
457 * non-instrumentable.
458 * The caller has to invoke guest_timing_enter_irqoff() before this.
459 *
460 * Note: this is analogous to exit_to_user_mode().
461 */
462static __always_inline void guest_state_enter_irqoff(void)
463{
464 instrumentation_begin();
465 trace_hardirqs_on_prepare();
8b023acc 466 lockdep_hardirqs_on_prepare();
ef9989af
MR
467 instrumentation_end();
468
469 guest_context_enter_irqoff();
470 lockdep_hardirqs_on(CALLER_ADDR0);
471}
472
473/*
474 * Exit guest context and exit an RCU extended quiescent state.
475 *
476 * Between guest_context_enter_irqoff() and guest_context_exit_irqoff() it is
477 * unsafe to use any code which may directly or indirectly use RCU, tracing
478 * (including IRQ flag tracing), or lockdep. All code in this period must be
479 * non-instrumentable.
480 */
481static __always_inline void guest_context_exit_irqoff(void)
1ca0016c
SC
482{
483 context_tracking_guest_exit();
ef9989af 484}
1ca0016c 485
ef9989af
MR
486/*
487 * Stop accounting time towards a guest.
488 * Must be called after exiting guest context.
489 */
490static __always_inline void guest_timing_exit_irqoff(void)
491{
1ca0016c
SC
492 instrumentation_begin();
493 /* Flush the guest cputime we spent on the guest */
494 vtime_account_guest_exit();
495 instrumentation_end();
496}
497
ef9989af
MR
498/*
499 * Deprecated. Architectures should move to guest_state_exit_irqoff() and
500 * guest_timing_exit_irqoff().
501 */
502static __always_inline void guest_exit_irqoff(void)
503{
504 guest_context_exit_irqoff();
505 guest_timing_exit_irqoff();
506}
507
1ca0016c
SC
508static inline void guest_exit(void)
509{
510 unsigned long flags;
511
512 local_irq_save(flags);
513 guest_exit_irqoff();
514 local_irq_restore(flags);
515}
516
ef9989af
MR
517/**
518 * guest_state_exit_irqoff - Establish state when returning from guest mode
519 *
520 * Entry from a guest disables interrupts, but guest mode is traced as
521 * interrupts enabled. Also with NO_HZ_FULL RCU might be idle.
522 *
523 * 1) Tell lockdep that interrupts are disabled
524 * 2) Invoke context tracking if enabled to reactivate RCU
525 * 3) Trace interrupts off state
526 *
527 * Invoked from architecture specific code after exiting a guest.
528 * Must be invoked with interrupts disabled and the caller must be
529 * non-instrumentable.
530 * The caller has to invoke guest_timing_exit_irqoff() after this.
531 *
532 * Note: this is analogous to enter_from_user_mode().
533 */
534static __always_inline void guest_state_exit_irqoff(void)
535{
536 lockdep_hardirqs_off(CALLER_ADDR0);
537 guest_context_exit_irqoff();
538
539 instrumentation_begin();
540 trace_hardirqs_off_finish();
541 instrumentation_end();
542}
543
6b7e2d09
XG
544static inline int kvm_vcpu_exiting_guest_mode(struct kvm_vcpu *vcpu)
545{
cde9af6e
AJ
546 /*
547 * The memory barrier ensures a previous write to vcpu->requests cannot
548 * be reordered with the read of vcpu->mode. It pairs with the general
549 * memory barrier following the write of vcpu->mode in VCPU RUN.
550 */
551 smp_mb__before_atomic();
6b7e2d09
XG
552 return cmpxchg(&vcpu->mode, IN_GUEST_MODE, EXITING_GUEST_MODE);
553}
554
660c22c4
TY
555/*
556 * Some of the bitops functions do not support too long bitmaps.
557 * This number must be determined not to exceed such limits.
558 */
559#define KVM_MEM_MAX_NR_PAGES ((1UL << 31) - 1)
560
a54d8066
MS
561/*
562 * Since at idle each memslot belongs to two memslot sets it has to contain
563 * two embedded nodes for each data structure that it forms a part of.
564 *
565 * Two memslot sets (one active and one inactive) are necessary so the VM
566 * continues to run on one memslot set while the other is being modified.
567 *
568 * These two memslot sets normally point to the same set of memslots.
569 * They can, however, be desynchronized when performing a memslot management
570 * operation by replacing the memslot to be modified by its copy.
571 * After the operation is complete, both memslot sets once again point to
572 * the same, common set of memslot data.
573 *
574 * The memslots themselves are independent of each other so they can be
575 * individually added or deleted.
576 */
6aa8b732 577struct kvm_memory_slot {
a54d8066
MS
578 struct hlist_node id_node[2];
579 struct interval_tree_node hva_node[2];
580 struct rb_node gfn_node[2];
6aa8b732
AK
581 gfn_t base_gfn;
582 unsigned long npages;
6aa8b732 583 unsigned long *dirty_bitmap;
db3fe4eb 584 struct kvm_arch_memory_slot arch;
8a7ae055 585 unsigned long userspace_addr;
6104f472 586 u32 flags;
1e702d9a 587 short id;
9e9eb226 588 u16 as_id;
6aa8b732
AK
589};
590
8283e36a 591static inline bool kvm_slot_dirty_track_enabled(const struct kvm_memory_slot *slot)
044c59c4
PX
592{
593 return slot->flags & KVM_MEM_LOG_DIRTY_PAGES;
594}
595
87bf6e7d
TY
596static inline unsigned long kvm_dirty_bitmap_bytes(struct kvm_memory_slot *memslot)
597{
598 return ALIGN(memslot->npages, BITS_PER_LONG) / 8;
599}
600
03133347
CI
601static inline unsigned long *kvm_second_dirty_bitmap(struct kvm_memory_slot *memslot)
602{
603 unsigned long len = kvm_dirty_bitmap_bytes(memslot);
604
605 return memslot->dirty_bitmap + len / sizeof(*memslot->dirty_bitmap);
606}
607
3c9bd400
JZ
608#ifndef KVM_DIRTY_LOG_MANUAL_CAPS
609#define KVM_DIRTY_LOG_MANUAL_CAPS KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE
610#endif
611
84223598
CH
612struct kvm_s390_adapter_int {
613 u64 ind_addr;
614 u64 summary_addr;
615 u64 ind_offset;
616 u32 summary_offset;
617 u32 adapter_id;
618};
619
5c919412
AS
620struct kvm_hv_sint {
621 u32 vcpu;
622 u32 sint;
623};
624
14243b38
DW
625struct kvm_xen_evtchn {
626 u32 port;
8733068b
DW
627 u32 vcpu_id;
628 int vcpu_idx;
14243b38
DW
629 u32 priority;
630};
631
399ec807
AK
632struct kvm_kernel_irq_routing_entry {
633 u32 gsi;
5116d8f6 634 u32 type;
4925663a 635 int (*set)(struct kvm_kernel_irq_routing_entry *e,
aa2fbe6d
YZ
636 struct kvm *kvm, int irq_source_id, int level,
637 bool line_status);
399ec807
AK
638 union {
639 struct {
640 unsigned irqchip;
641 unsigned pin;
642 } irqchip;
0455e72c
EA
643 struct {
644 u32 address_lo;
645 u32 address_hi;
646 u32 data;
647 u32 flags;
648 u32 devid;
649 } msi;
84223598 650 struct kvm_s390_adapter_int adapter;
5c919412 651 struct kvm_hv_sint hv_sint;
14243b38 652 struct kvm_xen_evtchn xen_evtchn;
399ec807 653 };
46e624b9
GN
654 struct hlist_node link;
655};
656
b053b2ae
SR
657#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
658struct kvm_irq_routing_table {
659 int chip[KVM_NR_IRQCHIPS][KVM_IRQCHIP_NUM_PINS];
660 u32 nr_rt_entries;
661 /*
662 * Array indexed by gsi. Each entry contains list of irq chips
663 * the gsi is connected to.
664 */
764e515f 665 struct hlist_head map[];
b053b2ae
SR
666};
667#endif
668
d663b8a2 669bool kvm_arch_irqchip_in_kernel(struct kvm *kvm);
b053b2ae 670
bdd1c37a
CP
671#ifndef KVM_INTERNAL_MEM_SLOTS
672#define KVM_INTERNAL_MEM_SLOTS 0
0743247f
AW
673#endif
674
4fc096a9 675#define KVM_MEM_SLOTS_NUM SHRT_MAX
bdd1c37a 676#define KVM_USER_MEM_SLOTS (KVM_MEM_SLOTS_NUM - KVM_INTERNAL_MEM_SLOTS)
93a5cef0 677
f481b069
PB
678#ifndef __KVM_VCPU_MULTIPLE_ADDRESS_SPACE
679static inline int kvm_arch_vcpu_memslots_id(struct kvm_vcpu *vcpu)
680{
681 return 0;
682}
683#endif
684
46a26bf5 685struct kvm_memslots {
49c7754c 686 u64 generation;
a54d8066 687 atomic_long_t last_used_slot;
ed922739 688 struct rb_root_cached hva_tree;
a54d8066 689 struct rb_root gfn_tree;
26b8345a 690 /*
a54d8066 691 * The mapping table from slot id to memslot.
26b8345a
MS
692 *
693 * 7-bit bucket count matches the size of the old id to index array for
694 * 512 slots, while giving good performance with this slot count.
695 * Higher bucket counts bring only small performance improvements but
696 * always result in higher memory usage (even for lower memslot counts).
697 */
698 DECLARE_HASHTABLE(id_hash, 7);
a54d8066 699 int node_idx;
46a26bf5
MT
700};
701
6aa8b732 702struct kvm {
531810ca
BG
703#ifdef KVM_HAVE_MMU_RWLOCK
704 rwlock_t mmu_lock;
705#else
aaee2c94 706 spinlock_t mmu_lock;
531810ca
BG
707#endif /* KVM_HAVE_MMU_RWLOCK */
708
79fac95e 709 struct mutex slots_lock;
b10a038e
BG
710
711 /*
712 * Protects the arch-specific fields of struct kvm_memory_slots in
713 * use by the VM. To be used under the slots_lock (above) or in a
714 * kvm->srcu critical section where acquiring the slots_lock would
715 * lead to deadlock with the synchronize_srcu in
b0d23708 716 * kvm_swap_active_memslots().
b10a038e
BG
717 */
718 struct mutex slots_arch_lock;
6d4e4c4f 719 struct mm_struct *mm; /* userspace tied to this vm */
afa319a5 720 unsigned long nr_memslot_pages;
a54d8066
MS
721 /* The two memslot sets - active and inactive (per address space) */
722 struct kvm_memslots __memslots[KVM_ADDRESS_SPACE_NUM][2];
723 /* The current active memslot set for each address space */
a80cf7b5 724 struct kvm_memslots __rcu *memslots[KVM_ADDRESS_SPACE_NUM];
c5b07754 725 struct xarray vcpu_array;
6c7b2202
PB
726 /*
727 * Protected by slots_lock, but can be read outside if an
728 * incorrect answer is acceptable.
729 */
730 atomic_t nr_memslots_dirty_logging;
6c7caebc 731
52ac8b35
PB
732 /* Used to wait for completion of MMU notifiers. */
733 spinlock_t mn_invalidate_lock;
734 unsigned long mn_active_invalidate_count;
735 struct rcuwait mn_memslots_update_rcuwait;
736
982ed0de
DW
737 /* For management / invalidation of gfn_to_pfn_caches */
738 spinlock_t gpc_lock;
739 struct list_head gpc_list;
740
6c7caebc
PB
741 /*
742 * created_vcpus is protected by kvm->lock, and is incremented
743 * at the beginning of KVM_CREATE_VCPU. online_vcpus is only
744 * incremented after storing the kvm_vcpu pointer in vcpus,
745 * and is accessed atomically.
746 */
73880c80 747 atomic_t online_vcpus;
f502cc56 748 int max_vcpus;
6c7caebc 749 int created_vcpus;
217ece61 750 int last_boosted_vcpu;
133de902 751 struct list_head vm_list;
60eead79 752 struct mutex lock;
4a12f951 753 struct kvm_io_bus __rcu *buses[KVM_NR_BUSES];
721eecbf
GH
754#ifdef CONFIG_HAVE_KVM_EVENTFD
755 struct {
756 spinlock_t lock;
757 struct list_head items;
d583fbd7 758 /* resampler_list update side is protected by resampler_lock. */
7a84428a
AW
759 struct list_head resampler_list;
760 struct mutex resampler_lock;
721eecbf 761 } irqfds;
d34e6b17 762 struct list_head ioeventfds;
721eecbf 763#endif
ba1389b7 764 struct kvm_vm_stat stat;
d69fb81f 765 struct kvm_arch arch;
e3736c3e 766 refcount_t users_count;
4b4357e0 767#ifdef CONFIG_KVM_MMIO
5f94c174 768 struct kvm_coalesced_mmio_ring *coalesced_mmio_ring;
2b3c246a
SL
769 spinlock_t ring_lock;
770 struct list_head coalesced_zones;
5f94c174 771#endif
e930bffe 772
60eead79 773 struct mutex irq_lock;
75858a84 774#ifdef CONFIG_HAVE_KVM_IRQCHIP
bd2b53b2 775 /*
9957c86d 776 * Update side is protected by irq_lock.
bd2b53b2 777 */
4b6a2872 778 struct kvm_irq_routing_table __rcu *irq_routing;
c77dcacb
PB
779#endif
780#ifdef CONFIG_HAVE_KVM_IRQFD
136bdfee 781 struct hlist_head irq_ack_notifier_list;
75858a84
AK
782#endif
783
36c1ed82 784#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
e930bffe 785 struct mmu_notifier mmu_notifier;
20ec3ebd
CP
786 unsigned long mmu_invalidate_seq;
787 long mmu_invalidate_in_progress;
788 unsigned long mmu_invalidate_range_start;
789 unsigned long mmu_invalidate_range_end;
e930bffe 790#endif
07f0a7bd 791 struct list_head devices;
3c9bd400 792 u64 manual_dirty_log_protect;
536a6f88
JF
793 struct dentry *debugfs_dentry;
794 struct kvm_stat_data **debugfs_stat_data;
6ade8694
PM
795 struct srcu_struct srcu;
796 struct srcu_struct irq_srcu;
fdeaf7e3 797 pid_t userspace_pid;
9eb8ca04 798 bool override_halt_poll_ns;
acd05785 799 unsigned int max_halt_poll_ns;
fb04a1ed 800 u32 dirty_ring_size;
86bdf3eb 801 bool dirty_ring_with_bitmap;
0b8f1173 802 bool vm_bugged;
f4d31653 803 bool vm_dead;
2fdef3a2
SS
804
805#ifdef CONFIG_HAVE_KVM_PM_NOTIFIER
806 struct notifier_block pm_notifier;
807#endif
fcfe1bae 808 char stats_id[KVM_STATS_NAME_SIZE];
6aa8b732
AK
809};
810
a737f256
CD
811#define kvm_err(fmt, ...) \
812 pr_err("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
813#define kvm_info(fmt, ...) \
814 pr_info("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
815#define kvm_debug(fmt, ...) \
816 pr_debug("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
ae0f5499
BD
817#define kvm_debug_ratelimited(fmt, ...) \
818 pr_debug_ratelimited("kvm [%i]: " fmt, task_pid_nr(current), \
819 ## __VA_ARGS__)
a737f256
CD
820#define kvm_pr_unimpl(fmt, ...) \
821 pr_err_ratelimited("kvm [%i]: " fmt, \
822 task_tgid_nr(current), ## __VA_ARGS__)
f0242478 823
a737f256
CD
824/* The guest did something we don't support. */
825#define vcpu_unimpl(vcpu, fmt, ...) \
671d9ab3
BP
826 kvm_pr_unimpl("vcpu%i, guest rIP: 0x%lx " fmt, \
827 (vcpu)->vcpu_id, kvm_rip_read(vcpu), ## __VA_ARGS__)
6aa8b732 828
ee86dbc6
AS
829#define vcpu_debug(vcpu, fmt, ...) \
830 kvm_debug("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
ae0f5499
BD
831#define vcpu_debug_ratelimited(vcpu, fmt, ...) \
832 kvm_debug_ratelimited("vcpu%i " fmt, (vcpu)->vcpu_id, \
833 ## __VA_ARGS__)
765eaa0f
AS
834#define vcpu_err(vcpu, fmt, ...) \
835 kvm_err("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
ee86dbc6 836
f4d31653
PB
837static inline void kvm_vm_dead(struct kvm *kvm)
838{
839 kvm->vm_dead = true;
840 kvm_make_all_cpus_request(kvm, KVM_REQ_VM_DEAD);
841}
842
0b8f1173
SC
843static inline void kvm_vm_bugged(struct kvm *kvm)
844{
845 kvm->vm_bugged = true;
f4d31653 846 kvm_vm_dead(kvm);
0b8f1173
SC
847}
848
f4d31653 849
0b8f1173
SC
850#define KVM_BUG(cond, kvm, fmt...) \
851({ \
852 int __ret = (cond); \
853 \
854 if (WARN_ONCE(__ret && !(kvm)->vm_bugged, fmt)) \
855 kvm_vm_bugged(kvm); \
856 unlikely(__ret); \
857})
858
859#define KVM_BUG_ON(cond, kvm) \
860({ \
861 int __ret = (cond); \
862 \
863 if (WARN_ON_ONCE(__ret && !(kvm)->vm_bugged)) \
864 kvm_vm_bugged(kvm); \
865 unlikely(__ret); \
866})
867
2031f287
SC
868static inline void kvm_vcpu_srcu_read_lock(struct kvm_vcpu *vcpu)
869{
870#ifdef CONFIG_PROVE_RCU
871 WARN_ONCE(vcpu->srcu_depth++,
872 "KVM: Illegal vCPU srcu_idx LOCK, depth=%d", vcpu->srcu_depth - 1);
873#endif
874 vcpu->____srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
875}
876
877static inline void kvm_vcpu_srcu_read_unlock(struct kvm_vcpu *vcpu)
878{
879 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->____srcu_idx);
880
881#ifdef CONFIG_PROVE_RCU
882 WARN_ONCE(--vcpu->srcu_depth,
883 "KVM: Illegal vCPU srcu_idx UNLOCK, depth=%d", vcpu->srcu_depth);
884#endif
885}
886
3c9bd400
JZ
887static inline bool kvm_dirty_log_manual_protect_and_init_set(struct kvm *kvm)
888{
889 return !!(kvm->manual_dirty_log_protect & KVM_DIRTY_LOG_INITIALLY_SET);
890}
891
4a12f951
CB
892static inline struct kvm_io_bus *kvm_get_bus(struct kvm *kvm, enum kvm_bus idx)
893{
894 return srcu_dereference_check(kvm->buses[idx], &kvm->srcu,
3898da94
PB
895 lockdep_is_held(&kvm->slots_lock) ||
896 !refcount_read(&kvm->users_count));
4a12f951
CB
897}
898
988a2cae
GN
899static inline struct kvm_vcpu *kvm_get_vcpu(struct kvm *kvm, int i)
900{
1d487e9b
PB
901 int num_vcpus = atomic_read(&kvm->online_vcpus);
902 i = array_index_nospec(i, num_vcpus);
903
904 /* Pairs with smp_wmb() in kvm_vm_ioctl_create_vcpu. */
988a2cae 905 smp_rmb();
c5b07754 906 return xa_load(&kvm->vcpu_array, i);
988a2cae
GN
907}
908
214bd3a6
MZ
909#define kvm_for_each_vcpu(idx, vcpup, kvm) \
910 xa_for_each_range(&kvm->vcpu_array, idx, vcpup, 0, \
911 (atomic_read(&kvm->online_vcpus) - 1))
988a2cae 912
db27a7a3
DH
913static inline struct kvm_vcpu *kvm_get_vcpu_by_id(struct kvm *kvm, int id)
914{
9b9e3fc4 915 struct kvm_vcpu *vcpu = NULL;
46808a4c 916 unsigned long i;
db27a7a3 917
9b9e3fc4 918 if (id < 0)
c896939f 919 return NULL;
9b9e3fc4
GK
920 if (id < KVM_MAX_VCPUS)
921 vcpu = kvm_get_vcpu(kvm, id);
c896939f
DH
922 if (vcpu && vcpu->vcpu_id == id)
923 return vcpu;
db27a7a3
DH
924 kvm_for_each_vcpu(i, vcpu, kvm)
925 if (vcpu->vcpu_id == id)
926 return vcpu;
927 return NULL;
928}
929
27592ae8 930void kvm_destroy_vcpus(struct kvm *kvm);
fb3f0f51 931
ec7660cc 932void vcpu_load(struct kvm_vcpu *vcpu);
313a3dc7
CO
933void vcpu_put(struct kvm_vcpu *vcpu);
934
6ef768fa 935#ifdef __KVM_HAVE_IOAPIC
993225ad 936void kvm_arch_post_irq_ack_notifier_list_update(struct kvm *kvm);
abdb080f 937void kvm_arch_post_irq_routing_update(struct kvm *kvm);
6ef768fa 938#else
993225ad 939static inline void kvm_arch_post_irq_ack_notifier_list_update(struct kvm *kvm)
6ef768fa
PB
940{
941}
abdb080f 942static inline void kvm_arch_post_irq_routing_update(struct kvm *kvm)
b053b2ae
SR
943{
944}
6ef768fa
PB
945#endif
946
297e2105 947#ifdef CONFIG_HAVE_KVM_IRQFD
a0f155e9
CH
948int kvm_irqfd_init(void);
949void kvm_irqfd_exit(void);
950#else
951static inline int kvm_irqfd_init(void)
952{
953 return 0;
954}
955
956static inline void kvm_irqfd_exit(void)
957{
958}
959#endif
81a1cf9f 960int kvm_init(unsigned vcpu_size, unsigned vcpu_align, struct module *module);
cb498ea2 961void kvm_exit(void);
6aa8b732 962
d39f13b0 963void kvm_get_kvm(struct kvm *kvm);
605c7130 964bool kvm_get_kvm_safe(struct kvm *kvm);
d39f13b0 965void kvm_put_kvm(struct kvm *kvm);
54526d1f 966bool file_is_kvm(struct file *file);
149487bd 967void kvm_put_kvm_no_destroy(struct kvm *kvm);
d39f13b0 968
f481b069 969static inline struct kvm_memslots *__kvm_memslots(struct kvm *kvm, int as_id)
90d83dc3 970{
1d487e9b 971 as_id = array_index_nospec(as_id, KVM_ADDRESS_SPACE_NUM);
7e988b10 972 return srcu_dereference_check(kvm->memslots[as_id], &kvm->srcu,
3898da94
PB
973 lockdep_is_held(&kvm->slots_lock) ||
974 !refcount_read(&kvm->users_count));
90d83dc3
LJ
975}
976
f481b069
PB
977static inline struct kvm_memslots *kvm_memslots(struct kvm *kvm)
978{
979 return __kvm_memslots(kvm, 0);
980}
981
8e73485c
PB
982static inline struct kvm_memslots *kvm_vcpu_memslots(struct kvm_vcpu *vcpu)
983{
f481b069
PB
984 int as_id = kvm_arch_vcpu_memslots_id(vcpu);
985
986 return __kvm_memslots(vcpu->kvm, as_id);
8e73485c
PB
987}
988
a54d8066
MS
989static inline bool kvm_memslots_empty(struct kvm_memslots *slots)
990{
991 return RB_EMPTY_ROOT(&slots->gfn_tree);
992}
993
994#define kvm_for_each_memslot(memslot, bkt, slots) \
995 hash_for_each(slots->id_hash, bkt, memslot, id_node[slots->node_idx]) \
996 if (WARN_ON_ONCE(!memslot->npages)) { \
997 } else
998
0577d1ab
SC
999static inline
1000struct kvm_memory_slot *id_to_memslot(struct kvm_memslots *slots, int id)
28a37544 1001{
f85e2cb5 1002 struct kvm_memory_slot *slot;
a54d8066 1003 int idx = slots->node_idx;
bf3e05bc 1004
a54d8066 1005 hash_for_each_possible(slots->id_hash, slot, id_node[idx], id) {
26b8345a
MS
1006 if (slot->id == id)
1007 return slot;
1008 }
bf3e05bc 1009
26b8345a 1010 return NULL;
28a37544
XG
1011}
1012
f4209439
MS
1013/* Iterator used for walking memslots that overlap a gfn range. */
1014struct kvm_memslot_iter {
1015 struct kvm_memslots *slots;
1016 struct rb_node *node;
1017 struct kvm_memory_slot *slot;
1018};
1019
1020static inline void kvm_memslot_iter_next(struct kvm_memslot_iter *iter)
1021{
1022 iter->node = rb_next(iter->node);
1023 if (!iter->node)
1024 return;
1025
1026 iter->slot = container_of(iter->node, struct kvm_memory_slot, gfn_node[iter->slots->node_idx]);
1027}
1028
1029static inline void kvm_memslot_iter_start(struct kvm_memslot_iter *iter,
1030 struct kvm_memslots *slots,
1031 gfn_t start)
1032{
1033 int idx = slots->node_idx;
1034 struct rb_node *tmp;
1035 struct kvm_memory_slot *slot;
1036
1037 iter->slots = slots;
1038
1039 /*
1040 * Find the so called "upper bound" of a key - the first node that has
1041 * its key strictly greater than the searched one (the start gfn in our case).
1042 */
1043 iter->node = NULL;
1044 for (tmp = slots->gfn_tree.rb_node; tmp; ) {
1045 slot = container_of(tmp, struct kvm_memory_slot, gfn_node[idx]);
1046 if (start < slot->base_gfn) {
1047 iter->node = tmp;
1048 tmp = tmp->rb_left;
1049 } else {
1050 tmp = tmp->rb_right;
1051 }
1052 }
1053
1054 /*
1055 * Find the slot with the lowest gfn that can possibly intersect with
1056 * the range, so we'll ideally have slot start <= range start
1057 */
1058 if (iter->node) {
1059 /*
1060 * A NULL previous node means that the very first slot
1061 * already has a higher start gfn.
1062 * In this case slot start > range start.
1063 */
1064 tmp = rb_prev(iter->node);
1065 if (tmp)
1066 iter->node = tmp;
1067 } else {
1068 /* a NULL node below means no slots */
1069 iter->node = rb_last(&slots->gfn_tree);
1070 }
1071
1072 if (iter->node) {
1073 iter->slot = container_of(iter->node, struct kvm_memory_slot, gfn_node[idx]);
1074
1075 /*
1076 * It is possible in the slot start < range start case that the
1077 * found slot ends before or at range start (slot end <= range start)
1078 * and so it does not overlap the requested range.
1079 *
1080 * In such non-overlapping case the next slot (if it exists) will
1081 * already have slot start > range start, otherwise the logic above
1082 * would have found it instead of the current slot.
1083 */
1084 if (iter->slot->base_gfn + iter->slot->npages <= start)
1085 kvm_memslot_iter_next(iter);
1086 }
1087}
1088
1089static inline bool kvm_memslot_iter_is_valid(struct kvm_memslot_iter *iter, gfn_t end)
1090{
1091 if (!iter->node)
1092 return false;
1093
1094 /*
1095 * If this slot starts beyond or at the end of the range so does
1096 * every next one
1097 */
1098 return iter->slot->base_gfn < end;
1099}
1100
1101/* Iterate over each memslot at least partially intersecting [start, end) range */
1102#define kvm_for_each_memslot_in_gfn_range(iter, slots, start, end) \
1103 for (kvm_memslot_iter_start(iter, slots, start); \
1104 kvm_memslot_iter_is_valid(iter, end); \
1105 kvm_memslot_iter_next(iter))
1106
74d0727c
TY
1107/*
1108 * KVM_SET_USER_MEMORY_REGION ioctl allows the following operations:
1109 * - create a new memory slot
1110 * - delete an existing memory slot
1111 * - modify an existing memory slot
1112 * -- move it in the guest physical memory space
1113 * -- just change its flags
1114 *
1115 * Since flags can be changed by some of these operations, the following
1116 * differentiation is the best we can do for __kvm_set_memory_region():
1117 */
1118enum kvm_mr_change {
1119 KVM_MR_CREATE,
1120 KVM_MR_DELETE,
1121 KVM_MR_MOVE,
1122 KVM_MR_FLAGS_ONLY,
1123};
1124
210c7c4d 1125int kvm_set_memory_region(struct kvm *kvm,
09170a49 1126 const struct kvm_userspace_memory_region *mem);
f78e0e2e 1127int __kvm_set_memory_region(struct kvm *kvm,
09170a49 1128 const struct kvm_userspace_memory_region *mem);
e96c81ee 1129void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot);
15248258 1130void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen);
f7784b8e 1131int kvm_arch_prepare_memory_region(struct kvm *kvm,
537a17b3
SC
1132 const struct kvm_memory_slot *old,
1133 struct kvm_memory_slot *new,
7b6195a9 1134 enum kvm_mr_change change);
f7784b8e 1135void kvm_arch_commit_memory_region(struct kvm *kvm,
9d4c197c 1136 struct kvm_memory_slot *old,
f36f3f28 1137 const struct kvm_memory_slot *new,
8482644a 1138 enum kvm_mr_change change);
2df72e9b
MT
1139/* flush all memory translations */
1140void kvm_arch_flush_shadow_all(struct kvm *kvm);
1141/* flush memory translations pointing to 'slot' */
1142void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
1143 struct kvm_memory_slot *slot);
a983fb23 1144
d9ef13c2
PB
1145int gfn_to_page_many_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
1146 struct page **pages, int nr_pages);
48987781 1147
954bbbc2 1148struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
05da4558 1149unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn);
ba6a3541 1150unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable);
4d8b81ab 1151unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
64d83126
CD
1152unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot, gfn_t gfn,
1153 bool *writable);
b4231d61
IE
1154void kvm_release_page_clean(struct page *page);
1155void kvm_release_page_dirty(struct page *page);
35149e21 1156
ba049e93
DW
1157kvm_pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn);
1158kvm_pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
612819c3 1159 bool *writable);
8283e36a
BG
1160kvm_pfn_t gfn_to_pfn_memslot(const struct kvm_memory_slot *slot, gfn_t gfn);
1161kvm_pfn_t gfn_to_pfn_memslot_atomic(const struct kvm_memory_slot *slot, gfn_t gfn);
1162kvm_pfn_t __gfn_to_pfn_memslot(const struct kvm_memory_slot *slot, gfn_t gfn,
c8b88b33
PX
1163 bool atomic, bool interruptible, bool *async,
1164 bool write_fault, bool *writable, hva_t *hva);
037d92dc 1165
ba049e93 1166void kvm_release_pfn_clean(kvm_pfn_t pfn);
f7a6509f 1167void kvm_release_pfn_dirty(kvm_pfn_t pfn);
ba049e93
DW
1168void kvm_set_pfn_dirty(kvm_pfn_t pfn);
1169void kvm_set_pfn_accessed(kvm_pfn_t pfn);
35149e21 1170
357a18ad 1171void kvm_release_pfn(kvm_pfn_t pfn, bool dirty);
195aefde
IE
1172int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
1173 int len);
1174int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len);
4e335d9e
PB
1175int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1176 void *data, unsigned long len);
0958f0ce
VK
1177int kvm_read_guest_offset_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1178 void *data, unsigned int offset,
1179 unsigned long len);
195aefde
IE
1180int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
1181 int offset, int len);
1182int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
1183 unsigned long len);
4e335d9e
PB
1184int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1185 void *data, unsigned long len);
1186int kvm_write_guest_offset_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
7a86dab8
JM
1187 void *data, unsigned int offset,
1188 unsigned long len);
4e335d9e
PB
1189int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
1190 gpa_t gpa, unsigned long len);
cac0f1b7 1191
53f98558
AJ
1192#define __kvm_get_guest(kvm, gfn, offset, v) \
1193({ \
1194 unsigned long __addr = gfn_to_hva(kvm, gfn); \
1195 typeof(v) __user *__uaddr = (typeof(__uaddr))(__addr + offset); \
1196 int __ret = -EFAULT; \
1197 \
1198 if (!kvm_is_error_hva(__addr)) \
1199 __ret = get_user(v, __uaddr); \
1200 __ret; \
1201})
1202
1203#define kvm_get_guest(kvm, gpa, v) \
1204({ \
1205 gpa_t __gpa = gpa; \
1206 struct kvm *__kvm = kvm; \
1207 \
1208 __kvm_get_guest(__kvm, __gpa >> PAGE_SHIFT, \
1209 offset_in_page(__gpa), v); \
1210})
1211
4d2d4ce0 1212#define __kvm_put_guest(kvm, gfn, offset, v) \
cac0f1b7
SP
1213({ \
1214 unsigned long __addr = gfn_to_hva(kvm, gfn); \
4d2d4ce0 1215 typeof(v) __user *__uaddr = (typeof(__uaddr))(__addr + offset); \
cac0f1b7
SP
1216 int __ret = -EFAULT; \
1217 \
1218 if (!kvm_is_error_hva(__addr)) \
4d2d4ce0 1219 __ret = put_user(v, __uaddr); \
cac0f1b7
SP
1220 if (!__ret) \
1221 mark_page_dirty(kvm, gfn); \
1222 __ret; \
1223})
1224
4d2d4ce0 1225#define kvm_put_guest(kvm, gpa, v) \
cac0f1b7
SP
1226({ \
1227 gpa_t __gpa = gpa; \
1228 struct kvm *__kvm = kvm; \
4d2d4ce0 1229 \
cac0f1b7 1230 __kvm_put_guest(__kvm, __gpa >> PAGE_SHIFT, \
4d2d4ce0 1231 offset_in_page(__gpa), v); \
cac0f1b7
SP
1232})
1233
195aefde 1234int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len);
6aa8b732 1235struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
33e94154 1236bool kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn);
995decb6 1237bool kvm_vcpu_is_visible_gfn(struct kvm_vcpu *vcpu, gfn_t gfn);
f9b84e19 1238unsigned long kvm_host_page_size(struct kvm_vcpu *vcpu, gfn_t gfn);
8283e36a 1239void mark_page_dirty_in_slot(struct kvm *kvm, const struct kvm_memory_slot *memslot, gfn_t gfn);
6aa8b732
AK
1240void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
1241
8e73485c
PB
1242struct kvm_memslots *kvm_vcpu_memslots(struct kvm_vcpu *vcpu);
1243struct kvm_memory_slot *kvm_vcpu_gfn_to_memslot(struct kvm_vcpu *vcpu, gfn_t gfn);
ba049e93
DW
1244kvm_pfn_t kvm_vcpu_gfn_to_pfn_atomic(struct kvm_vcpu *vcpu, gfn_t gfn);
1245kvm_pfn_t kvm_vcpu_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn);
e45adf66 1246int kvm_vcpu_map(struct kvm_vcpu *vcpu, gpa_t gpa, struct kvm_host_map *map);
e45adf66 1247void kvm_vcpu_unmap(struct kvm_vcpu *vcpu, struct kvm_host_map *map, bool dirty);
8e73485c
PB
1248unsigned long kvm_vcpu_gfn_to_hva(struct kvm_vcpu *vcpu, gfn_t gfn);
1249unsigned long kvm_vcpu_gfn_to_hva_prot(struct kvm_vcpu *vcpu, gfn_t gfn, bool *writable);
1250int kvm_vcpu_read_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, void *data, int offset,
1251 int len);
1252int kvm_vcpu_read_guest_atomic(struct kvm_vcpu *vcpu, gpa_t gpa, void *data,
1253 unsigned long len);
1254int kvm_vcpu_read_guest(struct kvm_vcpu *vcpu, gpa_t gpa, void *data,
1255 unsigned long len);
1256int kvm_vcpu_write_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, const void *data,
1257 int offset, int len);
1258int kvm_vcpu_write_guest(struct kvm_vcpu *vcpu, gpa_t gpa, const void *data,
1259 unsigned long len);
1260void kvm_vcpu_mark_page_dirty(struct kvm_vcpu *vcpu, gfn_t gfn);
1261
982ed0de 1262/**
52491a38
ML
1263 * kvm_gpc_init - initialize gfn_to_pfn_cache.
1264 *
1265 * @gpc: struct gfn_to_pfn_cache object.
982ed0de 1266 * @kvm: pointer to kvm instance.
982ed0de
DW
1267 * @vcpu: vCPU to be used for marking pages dirty and to be woken on
1268 * invalidation.
d0d96121
SC
1269 * @usage: indicates if the resulting host physical PFN is used while
1270 * the @vcpu is IN_GUEST_MODE (in which case invalidation of
1271 * the cache from MMU notifiers---but not for KVM memslot
1272 * changes!---will also force @vcpu to exit the guest and
1273 * refresh the cache); and/or if the PFN used directly
1274 * by KVM (and thus needs a kernel virtual mapping).
8c82a0b3
ML
1275 *
1276 * This sets up a gfn_to_pfn_cache by initializing locks and assigning the
1277 * immutable attributes. Note, the cache must be zero-allocated (or zeroed by
1278 * the caller before init).
1279 */
1280void kvm_gpc_init(struct gfn_to_pfn_cache *gpc, struct kvm *kvm,
1281 struct kvm_vcpu *vcpu, enum pfn_cache_usage usage);
1282
1283/**
1284 * kvm_gpc_activate - prepare a cached kernel mapping and HPA for a given guest
1285 * physical address.
1286 *
1287 * @gpc: struct gfn_to_pfn_cache object.
982ed0de
DW
1288 * @gpa: guest physical address to map.
1289 * @len: sanity check; the range being access must fit a single page.
982ed0de
DW
1290 *
1291 * @return: 0 for success.
1292 * -EINVAL for a mapping which would cross a page boundary.
8c82a0b3 1293 * -EFAULT for an untranslatable guest physical address.
982ed0de 1294 *
8c82a0b3 1295 * This primes a gfn_to_pfn_cache and links it into the @gpc->kvm's list for
aba3caef
ML
1296 * invalidations to be processed. Callers are required to use kvm_gpc_check()
1297 * to ensure that the cache is valid before accessing the target page.
982ed0de 1298 */
8c82a0b3 1299int kvm_gpc_activate(struct gfn_to_pfn_cache *gpc, gpa_t gpa, unsigned long len);
982ed0de
DW
1300
1301/**
aba3caef 1302 * kvm_gpc_check - check validity of a gfn_to_pfn_cache.
982ed0de 1303 *
982ed0de 1304 * @gpc: struct gfn_to_pfn_cache object.
982ed0de 1305 * @len: sanity check; the range being access must fit a single page.
982ed0de
DW
1306 *
1307 * @return: %true if the cache is still valid and the address matches.
1308 * %false if the cache is not valid.
1309 *
1310 * Callers outside IN_GUEST_MODE context should hold a read lock on @gpc->lock
1311 * while calling this function, and then continue to hold the lock until the
1312 * access is complete.
1313 *
1314 * Callers in IN_GUEST_MODE may do so without locking, although they should
1315 * still hold a read lock on kvm->scru for the memslot checks.
1316 */
58f5ee5f 1317bool kvm_gpc_check(struct gfn_to_pfn_cache *gpc, unsigned long len);
982ed0de
DW
1318
1319/**
aba3caef 1320 * kvm_gpc_refresh - update a previously initialized cache.
982ed0de 1321 *
982ed0de 1322 * @gpc: struct gfn_to_pfn_cache object.
982ed0de 1323 * @len: sanity check; the range being access must fit a single page.
982ed0de
DW
1324 *
1325 * @return: 0 for success.
1326 * -EINVAL for a mapping which would cross a page boundary.
0318f207 1327 * -EFAULT for an untranslatable guest physical address.
982ed0de
DW
1328 *
1329 * This will attempt to refresh a gfn_to_pfn_cache. Note that a successful
0318f207 1330 * return from this function does not mean the page can be immediately
982ed0de
DW
1331 * accessed because it may have raced with an invalidation. Callers must
1332 * still lock and check the cache status, as this function does not return
1333 * with the lock still held to permit access.
1334 */
58f5ee5f 1335int kvm_gpc_refresh(struct gfn_to_pfn_cache *gpc, unsigned long len);
982ed0de
DW
1336
1337/**
52491a38 1338 * kvm_gpc_deactivate - deactivate and unlink a gfn_to_pfn_cache.
982ed0de 1339 *
982ed0de
DW
1340 * @gpc: struct gfn_to_pfn_cache object.
1341 *
8c82a0b3 1342 * This removes a cache from the VM's list to be processed on MMU notifier
982ed0de
DW
1343 * invocation.
1344 */
8c82a0b3 1345void kvm_gpc_deactivate(struct gfn_to_pfn_cache *gpc);
982ed0de 1346
20b7035c
JS
1347void kvm_sigset_activate(struct kvm_vcpu *vcpu);
1348void kvm_sigset_deactivate(struct kvm_vcpu *vcpu);
1349
91b99ea7 1350void kvm_vcpu_halt(struct kvm_vcpu *vcpu);
fac42688 1351bool kvm_vcpu_block(struct kvm_vcpu *vcpu);
3217f7c2
CD
1352void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu);
1353void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu);
178f02ff 1354bool kvm_vcpu_wake_up(struct kvm_vcpu *vcpu);
b6d33834 1355void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
fa93384f 1356int kvm_vcpu_yield_to(struct kvm_vcpu *target);
b9926482 1357void kvm_vcpu_on_spin(struct kvm_vcpu *vcpu, bool yield_to_kernel_mode);
a4ee1ca4 1358
d9e368d6 1359void kvm_flush_remote_tlbs(struct kvm *kvm);
7053df4e 1360
6926f95a
SC
1361#ifdef KVM_ARCH_NR_OBJS_PER_MEMORY_CACHE
1362int kvm_mmu_topup_memory_cache(struct kvm_mmu_memory_cache *mc, int min);
837f66c7 1363int __kvm_mmu_topup_memory_cache(struct kvm_mmu_memory_cache *mc, int capacity, int min);
6926f95a
SC
1364int kvm_mmu_memory_cache_nr_free_objects(struct kvm_mmu_memory_cache *mc);
1365void kvm_mmu_free_memory_cache(struct kvm_mmu_memory_cache *mc);
1366void *kvm_mmu_memory_cache_alloc(struct kvm_mmu_memory_cache *mc);
1367#endif
1368
20ec3ebd
CP
1369void kvm_mmu_invalidate_begin(struct kvm *kvm, unsigned long start,
1370 unsigned long end);
1371void kvm_mmu_invalidate_end(struct kvm *kvm, unsigned long start,
1372 unsigned long end);
edb298c6 1373
043405e1
CO
1374long kvm_arch_dev_ioctl(struct file *filp,
1375 unsigned int ioctl, unsigned long arg);
313a3dc7
CO
1376long kvm_arch_vcpu_ioctl(struct file *filp,
1377 unsigned int ioctl, unsigned long arg);
1499fa80 1378vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf);
018d00d2 1379
784aa3d7 1380int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext);
018d00d2 1381
3b0f1d01 1382void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm,
ba0513b5
MS
1383 struct kvm_memory_slot *slot,
1384 gfn_t gfn_offset,
1385 unsigned long mask);
0dff0846
SC
1386void kvm_arch_sync_dirty_log(struct kvm *kvm, struct kvm_memory_slot *memslot);
1387
1388#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
1389void kvm_arch_flush_remote_tlbs_memslot(struct kvm *kvm,
6c9dd6d2 1390 const struct kvm_memory_slot *memslot);
0dff0846
SC
1391#else /* !CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT */
1392int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log);
1393int kvm_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log,
2a49f61d 1394 int *is_dirty, struct kvm_memory_slot **memslot);
0dff0846 1395#endif
5bb064dc 1396
aa2fbe6d
YZ
1397int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level,
1398 bool line_status);
e5d83c74
PB
1399int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
1400 struct kvm_enable_cap *cap);
d8708b80 1401int kvm_arch_vm_ioctl(struct file *filp, unsigned int ioctl, unsigned long arg);
ed51862f
AG
1402long kvm_arch_vm_compat_ioctl(struct file *filp, unsigned int ioctl,
1403 unsigned long arg);
313a3dc7 1404
d0752060
HB
1405int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
1406int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
1407
8b006791
ZX
1408int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
1409 struct kvm_translation *tr);
1410
b6c7a5dc
HB
1411int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
1412int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
1413int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
1414 struct kvm_sregs *sregs);
1415int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
1416 struct kvm_sregs *sregs);
62d9f0db
MT
1417int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
1418 struct kvm_mp_state *mp_state);
1419int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
1420 struct kvm_mp_state *mp_state);
d0bfb940
JK
1421int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
1422 struct kvm_guest_debug *dbg);
1b94f6f8 1423int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu);
b6c7a5dc 1424
e790d9ef
RK
1425void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu);
1426
e9b11c17
ZX
1427void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
1428void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
897cc38e 1429int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id);
e529ef66 1430int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu);
31928aa5 1431void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu);
d40ccc62 1432void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu);
e9b11c17 1433
2fdef3a2
SS
1434#ifdef CONFIG_HAVE_KVM_PM_NOTIFIER
1435int kvm_arch_pm_notifier(struct kvm *kvm, unsigned long state);
1436#endif
1437
741cbbae 1438#ifdef __KVM_HAVE_ARCH_VCPU_DEBUGFS
d56f5136 1439void kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu, struct dentry *debugfs_dentry);
e36de87d
VP
1440#else
1441static inline void kvm_create_vcpu_debugfs(struct kvm_vcpu *vcpu) {}
741cbbae 1442#endif
235539b4 1443
441f7bfa 1444#ifdef CONFIG_KVM_GENERIC_HARDWARE_ENABLING
13a34e06
RK
1445int kvm_arch_hardware_enable(void);
1446void kvm_arch_hardware_disable(void);
441f7bfa 1447#endif
1d737c8a 1448int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu);
199b5763 1449bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu);
b6d33834 1450int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu);
17e433b5 1451bool kvm_arch_dy_runnable(struct kvm_vcpu *vcpu);
52acd22f 1452bool kvm_arch_dy_has_pending_interrupt(struct kvm_vcpu *vcpu);
d970a325
PB
1453int kvm_arch_post_init_vm(struct kvm *kvm);
1454void kvm_arch_pre_destroy_vm(struct kvm *kvm);
3165af73 1455int kvm_arch_create_vm_debugfs(struct kvm *kvm);
e9b11c17 1456
d89f5eff 1457#ifndef __KVM_HAVE_ARCH_VM_ALLOC
d1e5b0e9
MO
1458/*
1459 * All architectures that want to use vzalloc currently also
1460 * need their own kvm_arch_alloc_vm implementation.
1461 */
d89f5eff
JK
1462static inline struct kvm *kvm_arch_alloc_vm(void)
1463{
b1cd1633 1464 return kzalloc(sizeof(struct kvm), GFP_KERNEL_ACCOUNT);
d89f5eff 1465}
78b497f2
JG
1466#endif
1467
1468static inline void __kvm_arch_free_vm(struct kvm *kvm)
1469{
1470 kvfree(kvm);
1471}
d89f5eff 1472
78b497f2 1473#ifndef __KVM_HAVE_ARCH_VM_FREE
d89f5eff
JK
1474static inline void kvm_arch_free_vm(struct kvm *kvm)
1475{
78b497f2 1476 __kvm_arch_free_vm(kvm);
d89f5eff
JK
1477}
1478#endif
1479
b08660e5
TL
1480#ifndef __KVM_HAVE_ARCH_FLUSH_REMOTE_TLB
1481static inline int kvm_arch_flush_remote_tlb(struct kvm *kvm)
1482{
1483 return -ENOTSUPP;
1484}
1485#endif
1486
e0f0bbc5
AW
1487#ifdef __KVM_HAVE_ARCH_NONCOHERENT_DMA
1488void kvm_arch_register_noncoherent_dma(struct kvm *kvm);
1489void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm);
1490bool kvm_arch_has_noncoherent_dma(struct kvm *kvm);
1491#else
1492static inline void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
1493{
1494}
1495
1496static inline void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
1497{
1498}
1499
1500static inline bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
1501{
1502 return false;
1503}
1504#endif
5544eb9b
PB
1505#ifdef __KVM_HAVE_ARCH_ASSIGNED_DEVICE
1506void kvm_arch_start_assignment(struct kvm *kvm);
1507void kvm_arch_end_assignment(struct kvm *kvm);
1508bool kvm_arch_has_assigned_device(struct kvm *kvm);
1509#else
1510static inline void kvm_arch_start_assignment(struct kvm *kvm)
1511{
1512}
1513
1514static inline void kvm_arch_end_assignment(struct kvm *kvm)
1515{
1516}
1517
742ab6df 1518static __always_inline bool kvm_arch_has_assigned_device(struct kvm *kvm)
5544eb9b
PB
1519{
1520 return false;
1521}
1522#endif
e0f0bbc5 1523
da4ad88c 1524static inline struct rcuwait *kvm_arch_vcpu_get_wait(struct kvm_vcpu *vcpu)
b6d33834 1525{
2246f8b5 1526#ifdef __KVM_HAVE_ARCH_WQP
da4ad88c 1527 return vcpu->arch.waitp;
2246f8b5 1528#else
da4ad88c 1529 return &vcpu->wait;
b6d33834 1530#endif
2246f8b5 1531}
b6d33834 1532
d92a5d1c
SC
1533/*
1534 * Wake a vCPU if necessary, but don't do any stats/metadata updates. Returns
1535 * true if the vCPU was blocking and was awakened, false otherwise.
1536 */
1537static inline bool __kvm_vcpu_wake_up(struct kvm_vcpu *vcpu)
1538{
1539 return !!rcuwait_wake_up(kvm_arch_vcpu_get_wait(vcpu));
1540}
1541
1542static inline bool kvm_vcpu_is_blocking(struct kvm_vcpu *vcpu)
1543{
1544 return rcuwait_active(kvm_arch_vcpu_get_wait(vcpu));
1545}
1546
01c94e64
EA
1547#ifdef __KVM_HAVE_ARCH_INTC_INITIALIZED
1548/*
1549 * returns true if the virtual interrupt controller is initialized and
1550 * ready to accept virtual IRQ. On some architectures the virtual interrupt
1551 * controller is dynamically instantiated and this is not always true.
1552 */
1553bool kvm_arch_intc_initialized(struct kvm *kvm);
1554#else
1555static inline bool kvm_arch_intc_initialized(struct kvm *kvm)
1556{
1557 return true;
1558}
1559#endif
1560
e1bfc245
SC
1561#ifdef CONFIG_GUEST_PERF_EVENTS
1562unsigned long kvm_arch_vcpu_get_ip(struct kvm_vcpu *vcpu);
1563
1564void kvm_register_perf_callbacks(unsigned int (*pt_intr_handler)(void));
1565void kvm_unregister_perf_callbacks(void);
1566#else
1567static inline void kvm_register_perf_callbacks(void *ign) {}
1568static inline void kvm_unregister_perf_callbacks(void) {}
1569#endif /* CONFIG_GUEST_PERF_EVENTS */
1570
e08b9637 1571int kvm_arch_init_vm(struct kvm *kvm, unsigned long type);
d19a9cd2 1572void kvm_arch_destroy_vm(struct kvm *kvm);
ad8ba2cd 1573void kvm_arch_sync_events(struct kvm *kvm);
e9b11c17 1574
3d80840d 1575int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu);
682c59a3 1576
b14b2690 1577struct page *kvm_pfn_to_refcounted_page(kvm_pfn_t pfn);
284dc493 1578bool kvm_is_zone_device_page(struct page *page);
c77fb9dc 1579
62c476c7
BAY
1580struct kvm_irq_ack_notifier {
1581 struct hlist_node link;
1582 unsigned gsi;
1583 void (*irq_acked)(struct kvm_irq_ack_notifier *kian);
1584};
1585
9957c86d
PM
1586int kvm_irq_map_gsi(struct kvm *kvm,
1587 struct kvm_kernel_irq_routing_entry *entries, int gsi);
1588int kvm_irq_map_chip_pin(struct kvm *kvm, unsigned irqchip, unsigned pin);
8ba918d4 1589
aa2fbe6d
YZ
1590int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level,
1591 bool line_status);
bd2b53b2 1592int kvm_set_msi(struct kvm_kernel_irq_routing_entry *irq_entry, struct kvm *kvm,
aa2fbe6d 1593 int irq_source_id, int level, bool line_status);
b97e6de9
PB
1594int kvm_arch_set_irq_inatomic(struct kvm_kernel_irq_routing_entry *e,
1595 struct kvm *kvm, int irq_source_id,
1596 int level, bool line_status);
c7c9c56c 1597bool kvm_irq_has_notifier(struct kvm *kvm, unsigned irqchip, unsigned pin);
ba1aefcd 1598void kvm_notify_acked_gsi(struct kvm *kvm, int gsi);
44882eed 1599void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin);
3de42dc0
XZ
1600void kvm_register_irq_ack_notifier(struct kvm *kvm,
1601 struct kvm_irq_ack_notifier *kian);
fa40a821
MT
1602void kvm_unregister_irq_ack_notifier(struct kvm *kvm,
1603 struct kvm_irq_ack_notifier *kian);
5550af4d
SY
1604int kvm_request_irq_source_id(struct kvm *kvm);
1605void kvm_free_irq_source_id(struct kvm *kvm, int irq_source_id);
cdc238eb 1606bool kvm_arch_irqfd_allowed(struct kvm *kvm, struct kvm_irqfd *args);
62c476c7 1607
9d4cba7f 1608/*
a54d8066 1609 * Returns a pointer to the memslot if it contains gfn.
0f22af94
DM
1610 * Otherwise returns NULL.
1611 */
1612static inline struct kvm_memory_slot *
a54d8066 1613try_get_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
0f22af94 1614{
a54d8066 1615 if (!slot)
0f22af94
DM
1616 return NULL;
1617
0f22af94
DM
1618 if (gfn >= slot->base_gfn && gfn < slot->base_gfn + slot->npages)
1619 return slot;
1620 else
1621 return NULL;
1622}
1623
1624/*
a54d8066 1625 * Returns a pointer to the memslot that contains gfn. Otherwise returns NULL.
0577d1ab 1626 *
c928bfc2
MS
1627 * With "approx" set returns the memslot also when the address falls
1628 * in a hole. In that case one of the memslots bordering the hole is
1629 * returned.
9d4cba7f
PM
1630 */
1631static inline struct kvm_memory_slot *
a54d8066 1632search_memslots(struct kvm_memslots *slots, gfn_t gfn, bool approx)
9d4cba7f 1633{
0f22af94 1634 struct kvm_memory_slot *slot;
a54d8066
MS
1635 struct rb_node *node;
1636 int idx = slots->node_idx;
1637
1638 slot = NULL;
1639 for (node = slots->gfn_tree.rb_node; node; ) {
1640 slot = container_of(node, struct kvm_memory_slot, gfn_node[idx]);
1641 if (gfn >= slot->base_gfn) {
1642 if (gfn < slot->base_gfn + slot->npages)
1643 return slot;
1644 node = node->rb_right;
1645 } else
1646 node = node->rb_left;
c928bfc2 1647 }
9d4cba7f 1648
a54d8066 1649 return approx ? slot : NULL;
9d4cba7f
PM
1650}
1651
1652static inline struct kvm_memory_slot *
c928bfc2 1653____gfn_to_memslot(struct kvm_memslots *slots, gfn_t gfn, bool approx)
9d4cba7f 1654{
0f22af94 1655 struct kvm_memory_slot *slot;
0f22af94 1656
a54d8066
MS
1657 slot = (struct kvm_memory_slot *)atomic_long_read(&slots->last_used_slot);
1658 slot = try_get_memslot(slot, gfn);
0f22af94
DM
1659 if (slot)
1660 return slot;
1661
a54d8066 1662 slot = search_memslots(slots, gfn, approx);
0f22af94 1663 if (slot) {
a54d8066 1664 atomic_long_set(&slots->last_used_slot, (unsigned long)slot);
0f22af94
DM
1665 return slot;
1666 }
1667
1668 return NULL;
9d4cba7f
PM
1669}
1670
c928bfc2
MS
1671/*
1672 * __gfn_to_memslot() and its descendants are here to allow arch code to inline
1673 * the lookups in hot paths. gfn_to_memslot() itself isn't here as an inline
1674 * because that would bloat other code too much.
1675 */
1676static inline struct kvm_memory_slot *
1677__gfn_to_memslot(struct kvm_memslots *slots, gfn_t gfn)
1678{
1679 return ____gfn_to_memslot(slots, gfn, false);
1680}
1681
66a03505 1682static inline unsigned long
8ca6f063 1683__gfn_to_hva_memslot(const struct kvm_memory_slot *slot, gfn_t gfn)
66a03505 1684{
da27a83f
PB
1685 /*
1686 * The index was checked originally in search_memslots. To avoid
1687 * that a malicious guest builds a Spectre gadget out of e.g. page
1688 * table walks, do not let the processor speculate loads outside
1689 * the guest's registered memslots.
1690 */
4422829e
PB
1691 unsigned long offset = gfn - slot->base_gfn;
1692 offset = array_index_nospec(offset, slot->npages);
da27a83f 1693 return slot->userspace_addr + offset * PAGE_SIZE;
66a03505
GS
1694}
1695
0ee8dcb8
XG
1696static inline int memslot_id(struct kvm *kvm, gfn_t gfn)
1697{
1698 return gfn_to_memslot(kvm, gfn)->id;
1699}
1700
d19a748b
TY
1701static inline gfn_t
1702hva_to_gfn_memslot(unsigned long hva, struct kvm_memory_slot *slot)
887c08ac 1703{
d19a748b
TY
1704 gfn_t gfn_offset = (hva - slot->userspace_addr) >> PAGE_SHIFT;
1705
1706 return slot->base_gfn + gfn_offset;
887c08ac
XG
1707}
1708
1755fbcc
AK
1709static inline gpa_t gfn_to_gpa(gfn_t gfn)
1710{
1711 return (gpa_t)gfn << PAGE_SHIFT;
1712}
6aa8b732 1713
c30a358d
JR
1714static inline gfn_t gpa_to_gfn(gpa_t gpa)
1715{
1716 return (gfn_t)(gpa >> PAGE_SHIFT);
1717}
1718
ba049e93 1719static inline hpa_t pfn_to_hpa(kvm_pfn_t pfn)
62c476c7
BAY
1720{
1721 return (hpa_t)pfn << PAGE_SHIFT;
1722}
1723
dfeec843
HC
1724static inline bool kvm_is_error_gpa(struct kvm *kvm, gpa_t gpa)
1725{
1726 unsigned long hva = gfn_to_hva(kvm, gpa_to_gfn(gpa));
1727
1728 return kvm_is_error_hva(hva);
1729}
1730
ba1389b7
AK
1731enum kvm_stat_kind {
1732 KVM_STAT_VM,
1733 KVM_STAT_VCPU,
1734};
1735
536a6f88 1736struct kvm_stat_data {
536a6f88 1737 struct kvm *kvm;
bc9e9e67 1738 const struct _kvm_stats_desc *desc;
ba1389b7 1739 enum kvm_stat_kind kind;
417bc304 1740};
09cbcef6 1741
cb082bfa
JZ
1742struct _kvm_stats_desc {
1743 struct kvm_stats_desc desc;
1744 char name[KVM_STATS_NAME_SIZE];
1745};
1746
f95937cc 1747#define STATS_DESC_COMMON(type, unit, base, exp, sz, bsz) \
cb082bfa
JZ
1748 .flags = type | unit | base | \
1749 BUILD_BUG_ON_ZERO(type & ~KVM_STATS_TYPE_MASK) | \
1750 BUILD_BUG_ON_ZERO(unit & ~KVM_STATS_UNIT_MASK) | \
1751 BUILD_BUG_ON_ZERO(base & ~KVM_STATS_BASE_MASK), \
1752 .exponent = exp, \
f95937cc
JZ
1753 .size = sz, \
1754 .bucket_size = bsz
cb082bfa 1755
f95937cc 1756#define VM_GENERIC_STATS_DESC(stat, type, unit, base, exp, sz, bsz) \
cb082bfa
JZ
1757 { \
1758 { \
f95937cc 1759 STATS_DESC_COMMON(type, unit, base, exp, sz, bsz), \
cb082bfa
JZ
1760 .offset = offsetof(struct kvm_vm_stat, generic.stat) \
1761 }, \
1762 .name = #stat, \
1763 }
f95937cc 1764#define VCPU_GENERIC_STATS_DESC(stat, type, unit, base, exp, sz, bsz) \
cb082bfa
JZ
1765 { \
1766 { \
f95937cc 1767 STATS_DESC_COMMON(type, unit, base, exp, sz, bsz), \
cb082bfa
JZ
1768 .offset = offsetof(struct kvm_vcpu_stat, generic.stat) \
1769 }, \
1770 .name = #stat, \
1771 }
f95937cc 1772#define VM_STATS_DESC(stat, type, unit, base, exp, sz, bsz) \
cb082bfa
JZ
1773 { \
1774 { \
f95937cc 1775 STATS_DESC_COMMON(type, unit, base, exp, sz, bsz), \
cb082bfa
JZ
1776 .offset = offsetof(struct kvm_vm_stat, stat) \
1777 }, \
1778 .name = #stat, \
1779 }
f95937cc 1780#define VCPU_STATS_DESC(stat, type, unit, base, exp, sz, bsz) \
cb082bfa
JZ
1781 { \
1782 { \
f95937cc 1783 STATS_DESC_COMMON(type, unit, base, exp, sz, bsz), \
cb082bfa
JZ
1784 .offset = offsetof(struct kvm_vcpu_stat, stat) \
1785 }, \
1786 .name = #stat, \
1787 }
1788/* SCOPE: VM, VM_GENERIC, VCPU, VCPU_GENERIC */
f95937cc
JZ
1789#define STATS_DESC(SCOPE, stat, type, unit, base, exp, sz, bsz) \
1790 SCOPE##_STATS_DESC(stat, type, unit, base, exp, sz, bsz)
cb082bfa
JZ
1791
1792#define STATS_DESC_CUMULATIVE(SCOPE, name, unit, base, exponent) \
f95937cc
JZ
1793 STATS_DESC(SCOPE, name, KVM_STATS_TYPE_CUMULATIVE, \
1794 unit, base, exponent, 1, 0)
cb082bfa 1795#define STATS_DESC_INSTANT(SCOPE, name, unit, base, exponent) \
f95937cc
JZ
1796 STATS_DESC(SCOPE, name, KVM_STATS_TYPE_INSTANT, \
1797 unit, base, exponent, 1, 0)
cb082bfa 1798#define STATS_DESC_PEAK(SCOPE, name, unit, base, exponent) \
f95937cc
JZ
1799 STATS_DESC(SCOPE, name, KVM_STATS_TYPE_PEAK, \
1800 unit, base, exponent, 1, 0)
1801#define STATS_DESC_LINEAR_HIST(SCOPE, name, unit, base, exponent, sz, bsz) \
1802 STATS_DESC(SCOPE, name, KVM_STATS_TYPE_LINEAR_HIST, \
1803 unit, base, exponent, sz, bsz)
1804#define STATS_DESC_LOG_HIST(SCOPE, name, unit, base, exponent, sz) \
1805 STATS_DESC(SCOPE, name, KVM_STATS_TYPE_LOG_HIST, \
1806 unit, base, exponent, sz, 0)
cb082bfa
JZ
1807
1808/* Cumulative counter, read/write */
1809#define STATS_DESC_COUNTER(SCOPE, name) \
1810 STATS_DESC_CUMULATIVE(SCOPE, name, KVM_STATS_UNIT_NONE, \
1811 KVM_STATS_BASE_POW10, 0)
1812/* Instantaneous counter, read only */
1813#define STATS_DESC_ICOUNTER(SCOPE, name) \
1814 STATS_DESC_INSTANT(SCOPE, name, KVM_STATS_UNIT_NONE, \
1815 KVM_STATS_BASE_POW10, 0)
1816/* Peak counter, read/write */
1817#define STATS_DESC_PCOUNTER(SCOPE, name) \
1818 STATS_DESC_PEAK(SCOPE, name, KVM_STATS_UNIT_NONE, \
1819 KVM_STATS_BASE_POW10, 0)
1820
1b870fa5
PB
1821/* Instantaneous boolean value, read only */
1822#define STATS_DESC_IBOOLEAN(SCOPE, name) \
1823 STATS_DESC_INSTANT(SCOPE, name, KVM_STATS_UNIT_BOOLEAN, \
1824 KVM_STATS_BASE_POW10, 0)
1825/* Peak (sticky) boolean value, read/write */
1826#define STATS_DESC_PBOOLEAN(SCOPE, name) \
1827 STATS_DESC_PEAK(SCOPE, name, KVM_STATS_UNIT_BOOLEAN, \
1828 KVM_STATS_BASE_POW10, 0)
1829
cb082bfa
JZ
1830/* Cumulative time in nanosecond */
1831#define STATS_DESC_TIME_NSEC(SCOPE, name) \
1832 STATS_DESC_CUMULATIVE(SCOPE, name, KVM_STATS_UNIT_SECONDS, \
1833 KVM_STATS_BASE_POW10, -9)
f95937cc
JZ
1834/* Linear histogram for time in nanosecond */
1835#define STATS_DESC_LINHIST_TIME_NSEC(SCOPE, name, sz, bsz) \
1836 STATS_DESC_LINEAR_HIST(SCOPE, name, KVM_STATS_UNIT_SECONDS, \
1837 KVM_STATS_BASE_POW10, -9, sz, bsz)
1838/* Logarithmic histogram for time in nanosecond */
1839#define STATS_DESC_LOGHIST_TIME_NSEC(SCOPE, name, sz) \
1840 STATS_DESC_LOG_HIST(SCOPE, name, KVM_STATS_UNIT_SECONDS, \
1841 KVM_STATS_BASE_POW10, -9, sz)
cb082bfa 1842
fcfe1bae 1843#define KVM_GENERIC_VM_STATS() \
3cc4e148
JZ
1844 STATS_DESC_COUNTER(VM_GENERIC, remote_tlb_flush), \
1845 STATS_DESC_COUNTER(VM_GENERIC, remote_tlb_flush_requests)
fcfe1bae 1846
ce55c049
JZ
1847#define KVM_GENERIC_VCPU_STATS() \
1848 STATS_DESC_COUNTER(VCPU_GENERIC, halt_successful_poll), \
1849 STATS_DESC_COUNTER(VCPU_GENERIC, halt_attempted_poll), \
1850 STATS_DESC_COUNTER(VCPU_GENERIC, halt_poll_invalid), \
1851 STATS_DESC_COUNTER(VCPU_GENERIC, halt_wakeup), \
1852 STATS_DESC_TIME_NSEC(VCPU_GENERIC, halt_poll_success_ns), \
87bcc5fa 1853 STATS_DESC_TIME_NSEC(VCPU_GENERIC, halt_poll_fail_ns), \
8ccba534
JZ
1854 STATS_DESC_TIME_NSEC(VCPU_GENERIC, halt_wait_ns), \
1855 STATS_DESC_LOGHIST_TIME_NSEC(VCPU_GENERIC, halt_poll_success_hist, \
1856 HALT_POLL_HIST_COUNT), \
1857 STATS_DESC_LOGHIST_TIME_NSEC(VCPU_GENERIC, halt_poll_fail_hist, \
1858 HALT_POLL_HIST_COUNT), \
1859 STATS_DESC_LOGHIST_TIME_NSEC(VCPU_GENERIC, halt_wait_hist, \
c3858335 1860 HALT_POLL_HIST_COUNT), \
1b870fa5 1861 STATS_DESC_IBOOLEAN(VCPU_GENERIC, blocking)
ce55c049 1862
76f7c879 1863extern struct dentry *kvm_debugfs_dir;
f95937cc 1864
cb082bfa
JZ
1865ssize_t kvm_stats_read(char *id, const struct kvm_stats_header *header,
1866 const struct _kvm_stats_desc *desc,
1867 void *stats, size_t size_stats,
1868 char __user *user_buffer, size_t size, loff_t *offset);
f95937cc
JZ
1869
1870/**
1871 * kvm_stats_linear_hist_update() - Update bucket value for linear histogram
1872 * statistics data.
1873 *
1874 * @data: start address of the stats data
1875 * @size: the number of bucket of the stats data
1876 * @value: the new value used to update the linear histogram's bucket
1877 * @bucket_size: the size (width) of a bucket
1878 */
1879static inline void kvm_stats_linear_hist_update(u64 *data, size_t size,
1880 u64 value, size_t bucket_size)
1881{
1882 size_t index = div64_u64(value, bucket_size);
1883
1884 index = min(index, size - 1);
1885 ++data[index];
1886}
1887
1888/**
1889 * kvm_stats_log_hist_update() - Update bucket value for logarithmic histogram
1890 * statistics data.
1891 *
1892 * @data: start address of the stats data
1893 * @size: the number of bucket of the stats data
1894 * @value: the new value used to update the logarithmic histogram's bucket
1895 */
1896static inline void kvm_stats_log_hist_update(u64 *data, size_t size, u64 value)
1897{
1898 size_t index = fls64(value);
1899
1900 index = min(index, size - 1);
1901 ++data[index];
1902}
1903
1904#define KVM_STATS_LINEAR_HIST_UPDATE(array, value, bsize) \
1905 kvm_stats_linear_hist_update(array, ARRAY_SIZE(array), value, bsize)
1906#define KVM_STATS_LOG_HIST_UPDATE(array, value) \
1907 kvm_stats_log_hist_update(array, ARRAY_SIZE(array), value)
1908
1909
fcfe1bae
JZ
1910extern const struct kvm_stats_header kvm_vm_stats_header;
1911extern const struct _kvm_stats_desc kvm_vm_stats_desc[];
ce55c049
JZ
1912extern const struct kvm_stats_header kvm_vcpu_stats_header;
1913extern const struct _kvm_stats_desc kvm_vcpu_stats_desc[];
d4c9ff2d 1914
36c1ed82 1915#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
20ec3ebd 1916static inline int mmu_invalidate_retry(struct kvm *kvm, unsigned long mmu_seq)
e930bffe 1917{
20ec3ebd 1918 if (unlikely(kvm->mmu_invalidate_in_progress))
e930bffe
AA
1919 return 1;
1920 /*
20ec3ebd
CP
1921 * Ensure the read of mmu_invalidate_in_progress happens before
1922 * the read of mmu_invalidate_seq. This interacts with the
1923 * smp_wmb() in mmu_notifier_invalidate_range_end to make sure
1924 * that the caller either sees the old (non-zero) value of
1925 * mmu_invalidate_in_progress or the new (incremented) value of
1926 * mmu_invalidate_seq.
1927 *
1928 * PowerPC Book3s HV KVM calls this under a per-page lock rather
1929 * than under kvm->mmu_lock, for scalability, so can't rely on
1930 * kvm->mmu_lock to keep things ordered.
e930bffe 1931 */
a355aa54 1932 smp_rmb();
20ec3ebd 1933 if (kvm->mmu_invalidate_seq != mmu_seq)
e930bffe
AA
1934 return 1;
1935 return 0;
1936}
4a42d848 1937
20ec3ebd
CP
1938static inline int mmu_invalidate_retry_hva(struct kvm *kvm,
1939 unsigned long mmu_seq,
1940 unsigned long hva)
4a42d848
DS
1941{
1942 lockdep_assert_held(&kvm->mmu_lock);
1943 /*
20ec3ebd
CP
1944 * If mmu_invalidate_in_progress is non-zero, then the range maintained
1945 * by kvm_mmu_notifier_invalidate_range_start contains all addresses
1946 * that might be being invalidated. Note that it may include some false
4a42d848
DS
1947 * positives, due to shortcuts when handing concurrent invalidations.
1948 */
20ec3ebd
CP
1949 if (unlikely(kvm->mmu_invalidate_in_progress) &&
1950 hva >= kvm->mmu_invalidate_range_start &&
1951 hva < kvm->mmu_invalidate_range_end)
4a42d848 1952 return 1;
20ec3ebd 1953 if (kvm->mmu_invalidate_seq != mmu_seq)
4a42d848
DS
1954 return 1;
1955 return 0;
1956}
e930bffe
AA
1957#endif
1958
a725d56a 1959#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
399ec807 1960
ddc9cfb7 1961#define KVM_MAX_IRQ_ROUTES 4096 /* might need extension/rework in the future */
399ec807 1962
5c0aea0e 1963bool kvm_arch_can_set_irq_routing(struct kvm *kvm);
399ec807
AK
1964int kvm_set_irq_routing(struct kvm *kvm,
1965 const struct kvm_irq_routing_entry *entries,
1966 unsigned nr,
1967 unsigned flags);
c63cf538
RK
1968int kvm_set_routing_entry(struct kvm *kvm,
1969 struct kvm_kernel_irq_routing_entry *e,
e8cde093 1970 const struct kvm_irq_routing_entry *ue);
399ec807
AK
1971void kvm_free_irq_routing(struct kvm *kvm);
1972
1973#else
1974
1975static inline void kvm_free_irq_routing(struct kvm *kvm) {}
1976
1977#endif
1978
297e2105
PM
1979int kvm_send_userspace_msi(struct kvm *kvm, struct kvm_msi *msi);
1980
721eecbf
GH
1981#ifdef CONFIG_HAVE_KVM_EVENTFD
1982
d34e6b17 1983void kvm_eventfd_init(struct kvm *kvm);
914daba8
AG
1984int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args);
1985
297e2105 1986#ifdef CONFIG_HAVE_KVM_IRQFD
d4db2935 1987int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args);
721eecbf 1988void kvm_irqfd_release(struct kvm *kvm);
fef8f2b9
DM
1989bool kvm_notify_irqfd_resampler(struct kvm *kvm,
1990 unsigned int irqchip,
1991 unsigned int pin);
9957c86d 1992void kvm_irq_routing_update(struct kvm *);
914daba8
AG
1993#else
1994static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
1995{
1996 return -EINVAL;
1997}
1998
1999static inline void kvm_irqfd_release(struct kvm *kvm) {}
fef8f2b9
DM
2000
2001static inline bool kvm_notify_irqfd_resampler(struct kvm *kvm,
2002 unsigned int irqchip,
2003 unsigned int pin)
2004{
2005 return false;
2006}
914daba8 2007#endif
721eecbf
GH
2008
2009#else
2010
d34e6b17 2011static inline void kvm_eventfd_init(struct kvm *kvm) {}
bd2b53b2 2012
d4db2935 2013static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
721eecbf
GH
2014{
2015 return -EINVAL;
2016}
2017
2018static inline void kvm_irqfd_release(struct kvm *kvm) {}
bd2b53b2 2019
27923eb1 2020#ifdef CONFIG_HAVE_KVM_IRQCHIP
9957c86d 2021static inline void kvm_irq_routing_update(struct kvm *kvm)
bd2b53b2 2022{
bd2b53b2 2023}
27923eb1 2024#endif
bd2b53b2 2025
d34e6b17
GH
2026static inline int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args)
2027{
2028 return -ENOSYS;
2029}
721eecbf
GH
2030
2031#endif /* CONFIG_HAVE_KVM_EVENTFD */
2032
07646749
SO
2033void kvm_arch_irq_routing_update(struct kvm *kvm);
2034
df06dae3 2035static inline void __kvm_make_request(int req, struct kvm_vcpu *vcpu)
a8eeb04a 2036{
2e4682ba
PB
2037 /*
2038 * Ensure the rest of the request is published to kvm_check_request's
2039 * caller. Paired with the smp_mb__after_atomic in kvm_check_request.
2040 */
2041 smp_wmb();
86dafed5 2042 set_bit(req & KVM_REQUEST_MASK, (void *)&vcpu->requests);
a8eeb04a
AK
2043}
2044
df06dae3
SC
2045static __always_inline void kvm_make_request(int req, struct kvm_vcpu *vcpu)
2046{
2047 /*
2048 * Request that don't require vCPU action should never be logged in
2049 * vcpu->requests. The vCPU won't clear the request, so it will stay
2050 * logged indefinitely and prevent the vCPU from entering the guest.
2051 */
2052 BUILD_BUG_ON(!__builtin_constant_p(req) ||
2053 (req & KVM_REQUEST_NO_ACTION));
2054
2055 __kvm_make_request(req, vcpu);
2056}
2057
2fa6e1e1
RK
2058static inline bool kvm_request_pending(struct kvm_vcpu *vcpu)
2059{
2060 return READ_ONCE(vcpu->requests);
2061}
2062
72875d8a
RK
2063static inline bool kvm_test_request(int req, struct kvm_vcpu *vcpu)
2064{
86dafed5 2065 return test_bit(req & KVM_REQUEST_MASK, (void *)&vcpu->requests);
72875d8a
RK
2066}
2067
2068static inline void kvm_clear_request(int req, struct kvm_vcpu *vcpu)
2069{
86dafed5 2070 clear_bit(req & KVM_REQUEST_MASK, (void *)&vcpu->requests);
72875d8a
RK
2071}
2072
a8eeb04a
AK
2073static inline bool kvm_check_request(int req, struct kvm_vcpu *vcpu)
2074{
72875d8a
RK
2075 if (kvm_test_request(req, vcpu)) {
2076 kvm_clear_request(req, vcpu);
2e4682ba
PB
2077
2078 /*
2079 * Ensure the rest of the request is visible to kvm_check_request's
2080 * caller. Paired with the smp_wmb in kvm_make_request.
2081 */
2082 smp_mb__after_atomic();
0719837c
AK
2083 return true;
2084 } else {
2085 return false;
2086 }
a8eeb04a
AK
2087}
2088
441f7bfa 2089#ifdef CONFIG_KVM_GENERIC_HARDWARE_ENABLING
8b415dcd 2090extern bool kvm_rebooting;
441f7bfa 2091#endif
8b415dcd 2092
ec76d819
SJS
2093extern unsigned int halt_poll_ns;
2094extern unsigned int halt_poll_ns_grow;
49113d36 2095extern unsigned int halt_poll_ns_grow_start;
ec76d819
SJS
2096extern unsigned int halt_poll_ns_shrink;
2097
852b6d57 2098struct kvm_device {
8538cb22 2099 const struct kvm_device_ops *ops;
852b6d57 2100 struct kvm *kvm;
852b6d57 2101 void *private;
07f0a7bd 2102 struct list_head vm_node;
852b6d57
SW
2103};
2104
2105/* create, destroy, and name are mandatory */
2106struct kvm_device_ops {
2107 const char *name;
a28ebea2
CD
2108
2109 /*
2110 * create is called holding kvm->lock and any operations not suitable
2111 * to do while holding the lock should be deferred to init (see
2112 * below).
2113 */
852b6d57
SW
2114 int (*create)(struct kvm_device *dev, u32 type);
2115
023e9fdd
CD
2116 /*
2117 * init is called after create if create is successful and is called
2118 * outside of holding kvm->lock.
2119 */
2120 void (*init)(struct kvm_device *dev);
2121
852b6d57
SW
2122 /*
2123 * Destroy is responsible for freeing dev.
2124 *
2125 * Destroy may be called before or after destructors are called
2126 * on emulated I/O regions, depending on whether a reference is
2127 * held by a vcpu or other kvm component that gets destroyed
2128 * after the emulated I/O.
2129 */
2130 void (*destroy)(struct kvm_device *dev);
2131
2bde9b3e
CLG
2132 /*
2133 * Release is an alternative method to free the device. It is
2134 * called when the device file descriptor is closed. Once
2135 * release is called, the destroy method will not be called
2136 * anymore as the device is removed from the device list of
2137 * the VM. kvm->lock is held.
2138 */
2139 void (*release)(struct kvm_device *dev);
2140
852b6d57
SW
2141 int (*set_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
2142 int (*get_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
2143 int (*has_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
2144 long (*ioctl)(struct kvm_device *dev, unsigned int ioctl,
2145 unsigned long arg);
a1cd3f08 2146 int (*mmap)(struct kvm_device *dev, struct vm_area_struct *vma);
852b6d57
SW
2147};
2148
2149void kvm_device_get(struct kvm_device *dev);
2150void kvm_device_put(struct kvm_device *dev);
2151struct kvm_device *kvm_device_from_filp(struct file *filp);
8538cb22 2152int kvm_register_device_ops(const struct kvm_device_ops *ops, u32 type);
571ee1b6 2153void kvm_unregister_device_ops(u32 type);
852b6d57 2154
5df554ad 2155extern struct kvm_device_ops kvm_mpic_ops;
ea2f83a7 2156extern struct kvm_device_ops kvm_arm_vgic_v2_ops;
a0675c25 2157extern struct kvm_device_ops kvm_arm_vgic_v3_ops;
5df554ad 2158
4c088493
R
2159#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
2160
2161static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
2162{
2163 vcpu->spin_loop.in_spin_loop = val;
2164}
2165static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
2166{
2167 vcpu->spin_loop.dy_eligible = val;
2168}
2169
2170#else /* !CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
2171
2172static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
2173{
2174}
2175
2176static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
2177{
2178}
4c088493 2179#endif /* CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
1a02b270 2180
c36b7150
PB
2181static inline bool kvm_is_visible_memslot(struct kvm_memory_slot *memslot)
2182{
2183 return (memslot && memslot->id < KVM_USER_MEM_SLOTS &&
2184 !(memslot->flags & KVM_MEMSLOT_INVALID));
2185}
2186
7495e22b 2187struct kvm_vcpu *kvm_get_running_vcpu(void);
fcd07f9a 2188struct kvm_vcpu * __percpu *kvm_get_running_vcpus(void);
7495e22b 2189
1a02b270 2190#ifdef CONFIG_HAVE_KVM_IRQ_BYPASS
14717e20 2191bool kvm_arch_has_irq_bypass(void);
1a02b270
EA
2192int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *,
2193 struct irq_bypass_producer *);
2194void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *,
2195 struct irq_bypass_producer *);
2196void kvm_arch_irq_bypass_stop(struct irq_bypass_consumer *);
2197void kvm_arch_irq_bypass_start(struct irq_bypass_consumer *);
f70c20aa
FW
2198int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
2199 uint32_t guest_irq, bool set);
515a0c79
LM
2200bool kvm_arch_irqfd_route_changed(struct kvm_kernel_irq_routing_entry *,
2201 struct kvm_kernel_irq_routing_entry *);
1a02b270 2202#endif /* CONFIG_HAVE_KVM_IRQ_BYPASS */
35181e86 2203
3491caf2
CB
2204#ifdef CONFIG_HAVE_KVM_INVALID_WAKEUPS
2205/* If we wakeup during the poll time, was it a sucessful poll? */
2206static inline bool vcpu_valid_wakeup(struct kvm_vcpu *vcpu)
2207{
2208 return vcpu->valid_wakeup;
2209}
2210
2211#else
2212static inline bool vcpu_valid_wakeup(struct kvm_vcpu *vcpu)
2213{
2214 return true;
2215}
2216#endif /* CONFIG_HAVE_KVM_INVALID_WAKEUPS */
2217
cdd6ad3a
CB
2218#ifdef CONFIG_HAVE_KVM_NO_POLL
2219/* Callback that tells if we must not poll */
2220bool kvm_arch_no_poll(struct kvm_vcpu *vcpu);
2221#else
2222static inline bool kvm_arch_no_poll(struct kvm_vcpu *vcpu)
2223{
2224 return false;
2225}
2226#endif /* CONFIG_HAVE_KVM_NO_POLL */
2227
5cb0944c
PB
2228#ifdef CONFIG_HAVE_KVM_VCPU_ASYNC_IOCTL
2229long kvm_arch_vcpu_async_ioctl(struct file *filp,
2230 unsigned int ioctl, unsigned long arg);
2231#else
2232static inline long kvm_arch_vcpu_async_ioctl(struct file *filp,
2233 unsigned int ioctl,
2234 unsigned long arg)
2235{
2236 return -ENOIOCTLCMD;
2237}
2238#endif /* CONFIG_HAVE_KVM_VCPU_ASYNC_IOCTL */
2239
e649b3f0
ET
2240void kvm_arch_mmu_notifier_invalidate_range(struct kvm *kvm,
2241 unsigned long start, unsigned long end);
f75e4924 2242
683412cc
MZ
2243void kvm_arch_guest_memory_reclaimed(struct kvm *kvm);
2244
bd2a6394
CD
2245#ifdef CONFIG_HAVE_KVM_VCPU_RUN_PID_CHANGE
2246int kvm_arch_vcpu_run_pid_change(struct kvm_vcpu *vcpu);
2247#else
2248static inline int kvm_arch_vcpu_run_pid_change(struct kvm_vcpu *vcpu)
2249{
2250 return 0;
2251}
2252#endif /* CONFIG_HAVE_KVM_VCPU_RUN_PID_CHANGE */
2253
c57c8046
JS
2254typedef int (*kvm_vm_thread_fn_t)(struct kvm *kvm, uintptr_t data);
2255
2256int kvm_vm_create_worker_thread(struct kvm *kvm, kvm_vm_thread_fn_t thread_fn,
2257 uintptr_t data, const char *name,
2258 struct task_struct **thread_ptr);
2259
935ace2f
TG
2260#ifdef CONFIG_KVM_XFER_TO_GUEST_WORK
2261static inline void kvm_handle_signal_exit(struct kvm_vcpu *vcpu)
2262{
2263 vcpu->run->exit_reason = KVM_EXIT_INTR;
2264 vcpu->stat.signal_exits++;
2265}
2266#endif /* CONFIG_KVM_XFER_TO_GUEST_WORK */
2267
43a063ca
YA
2268/*
2269 * If more than one page is being (un)accounted, @virt must be the address of
2270 * the first page of a block of pages what were allocated together (i.e
2271 * accounted together).
2272 *
2273 * kvm_account_pgtable_pages() is thread-safe because mod_lruvec_page_state()
2274 * is thread-safe.
2275 */
2276static inline void kvm_account_pgtable_pages(void *virt, int nr)
2277{
2278 mod_lruvec_page_state(virt_to_page(virt), NR_SECONDARY_PAGETABLE, nr);
2279}
2280
fb04a1ed
PX
2281/*
2282 * This defines how many reserved entries we want to keep before we
2283 * kick the vcpu to the userspace to avoid dirty ring full. This
2284 * value can be tuned to higher if e.g. PML is enabled on the host.
2285 */
2286#define KVM_DIRTY_RING_RSVD_ENTRIES 64
2287
2288/* Max number of entries allowed for each kvm dirty ring */
2289#define KVM_DIRTY_RING_MAX_ENTRIES 65536
2290
bfd99ff5 2291#endif