KVM: Clean up local variable usage in __kvm_set_memory_region()
[linux-2.6-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>
187f1882 13#include <linux/bug.h>
6aa8b732 14#include <linux/mm.h>
b297e672 15#include <linux/mmu_notifier.h>
15ad7146 16#include <linux/preempt.h>
0937c48d 17#include <linux/msi.h>
d89f5eff 18#include <linux/slab.h>
d1e5b0e9 19#include <linux/vmalloc.h>
bd2b53b2 20#include <linux/rcupdate.h>
bd80158a 21#include <linux/ratelimit.h>
83f09228 22#include <linux/err.h>
c11f11fc 23#include <linux/irqflags.h>
521921ba 24#include <linux/context_tracking.h>
1a02b270 25#include <linux/irqbypass.h>
8577370f 26#include <linux/swait.h>
e3736c3e 27#include <linux/refcount.h>
1d487e9b 28#include <linux/nospec.h>
e8edc6e0 29#include <asm/signal.h>
6aa8b732 30
6aa8b732 31#include <linux/kvm.h>
102d8325 32#include <linux/kvm_para.h>
6aa8b732 33
edf88417 34#include <linux/kvm_types.h>
d77a39d9 35
edf88417 36#include <asm/kvm_host.h>
d657a98e 37
0b1b1dfd
GK
38#ifndef KVM_MAX_VCPU_ID
39#define KVM_MAX_VCPU_ID KVM_MAX_VCPUS
40#endif
41
67b29204
XG
42/*
43 * The bit 16 ~ bit 31 of kvm_memory_region::flags are internally used
44 * in kvm, other bits are visible for userspace which are defined in
45 * include/linux/kvm_h.
46 */
47#define KVM_MEMSLOT_INVALID (1UL << 16)
48
361209e0 49/*
164bf7e5 50 * Bit 63 of the memslot generation number is an "update in-progress flag",
361209e0
SC
51 * e.g. is temporarily set for the duration of install_new_memslots().
52 * This flag effectively creates a unique generation number that is used to
53 * mark cached memslot data, e.g. MMIO accesses, as potentially being stale,
54 * i.e. may (or may not) have come from the previous memslots generation.
55 *
56 * This is necessary because the actual memslots update is not atomic with
57 * respect to the generation number update. Updating the generation number
58 * first would allow a vCPU to cache a spte from the old memslots using the
59 * new generation number, and updating the generation number after switching
60 * to the new memslots would allow cache hits using the old generation number
61 * to reference the defunct memslots.
62 *
63 * This mechanism is used to prevent getting hits in KVM's caches while a
64 * memslot update is in-progress, and to prevent cache hits *after* updating
65 * the actual generation number against accesses that were inserted into the
66 * cache *before* the memslots were updated.
67 */
164bf7e5 68#define KVM_MEMSLOT_GEN_UPDATE_IN_PROGRESS BIT_ULL(63)
361209e0 69
87da7e66
XG
70/* Two fragments for cross MMIO pages. */
71#define KVM_MAX_MMIO_FRAGMENTS 2
f78146b0 72
f481b069
PB
73#ifndef KVM_ADDRESS_SPACE_NUM
74#define KVM_ADDRESS_SPACE_NUM 1
75#endif
76
9c5b1172
XG
77/*
78 * For the normal pfn, the highest 12 bits should be zero,
81c52c56
XG
79 * so we can mask bit 62 ~ bit 52 to indicate the error pfn,
80 * mask bit 63 to indicate the noslot pfn.
9c5b1172 81 */
81c52c56
XG
82#define KVM_PFN_ERR_MASK (0x7ffULL << 52)
83#define KVM_PFN_ERR_NOSLOT_MASK (0xfffULL << 52)
84#define KVM_PFN_NOSLOT (0x1ULL << 63)
9c5b1172
XG
85
86#define KVM_PFN_ERR_FAULT (KVM_PFN_ERR_MASK)
87#define KVM_PFN_ERR_HWPOISON (KVM_PFN_ERR_MASK + 1)
81c52c56 88#define KVM_PFN_ERR_RO_FAULT (KVM_PFN_ERR_MASK + 2)
6c8ee57b 89
81c52c56
XG
90/*
91 * error pfns indicate that the gfn is in slot but faild to
92 * translate it to pfn on host.
93 */
ba049e93 94static inline bool is_error_pfn(kvm_pfn_t pfn)
83f09228 95{
9c5b1172 96 return !!(pfn & KVM_PFN_ERR_MASK);
83f09228
XG
97}
98
81c52c56
XG
99/*
100 * error_noslot pfns indicate that the gfn can not be
101 * translated to pfn - it is not in slot or failed to
102 * translate it to pfn.
103 */
ba049e93 104static inline bool is_error_noslot_pfn(kvm_pfn_t pfn)
83f09228 105{
81c52c56 106 return !!(pfn & KVM_PFN_ERR_NOSLOT_MASK);
83f09228
XG
107}
108
81c52c56 109/* noslot pfn indicates that the gfn is not in slot. */
ba049e93 110static inline bool is_noslot_pfn(kvm_pfn_t pfn)
83f09228 111{
81c52c56 112 return pfn == KVM_PFN_NOSLOT;
83f09228
XG
113}
114
bf640876
DD
115/*
116 * architectures with KVM_HVA_ERR_BAD other than PAGE_OFFSET (e.g. s390)
117 * provide own defines and kvm_is_error_hva
118 */
119#ifndef KVM_HVA_ERR_BAD
120
7068d097
XG
121#define KVM_HVA_ERR_BAD (PAGE_OFFSET)
122#define KVM_HVA_ERR_RO_BAD (PAGE_OFFSET + PAGE_SIZE)
ca3a490c
XG
123
124static inline bool kvm_is_error_hva(unsigned long addr)
125{
7068d097 126 return addr >= PAGE_OFFSET;
ca3a490c
XG
127}
128
bf640876
DD
129#endif
130
6cede2e6
XG
131#define KVM_ERR_PTR_BAD_PAGE (ERR_PTR(-ENOENT))
132
9c5b1172 133static inline bool is_error_page(struct page *page)
6cede2e6
XG
134{
135 return IS_ERR(page);
136}
137
930f7fd6
RK
138#define KVM_REQUEST_MASK GENMASK(7,0)
139#define KVM_REQUEST_NO_WAKEUP BIT(8)
7a97cec2 140#define KVM_REQUEST_WAIT BIT(9)
d9e368d6 141/*
2860c4b1
PB
142 * Architecture-independent vcpu->requests bit members
143 * Bits 4-7 are reserved for more arch-independent bits.
d9e368d6 144 */
7a97cec2
PB
145#define KVM_REQ_TLB_FLUSH (0 | KVM_REQUEST_WAIT | KVM_REQUEST_NO_WAKEUP)
146#define KVM_REQ_MMU_RELOAD (1 | KVM_REQUEST_WAIT | KVM_REQUEST_NO_WAKEUP)
147#define KVM_REQ_PENDING_TIMER 2
148#define KVM_REQ_UNHALT 3
2387149e
AJ
149#define KVM_REQUEST_ARCH_BASE 8
150
151#define KVM_ARCH_REQ_FLAGS(nr, flags) ({ \
c593642c 152 BUILD_BUG_ON((unsigned)(nr) >= (sizeof_field(struct kvm_vcpu, requests) * 8) - KVM_REQUEST_ARCH_BASE); \
2387149e
AJ
153 (unsigned)(((nr) + KVM_REQUEST_ARCH_BASE) | (flags)); \
154})
155#define KVM_ARCH_REQ(nr) KVM_ARCH_REQ_FLAGS(nr, 0)
0cd31043 156
7a84428a
AW
157#define KVM_USERSPACE_IRQ_SOURCE_ID 0
158#define KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID 1
5550af4d 159
0d9ce162 160extern struct mutex kvm_lock;
fc1b7492
GL
161extern struct list_head vm_list;
162
743eeb0b
SL
163struct kvm_io_range {
164 gpa_t addr;
165 int len;
166 struct kvm_io_device *dev;
167};
168
786a9f88 169#define NR_IOBUS_DEVS 1000
a1300716 170
2eeb2e94 171struct kvm_io_bus {
6ea34c9b
AK
172 int dev_count;
173 int ioeventfd_count;
a1300716 174 struct kvm_io_range range[];
2eeb2e94
GH
175};
176
e93f8a0f
MT
177enum kvm_bus {
178 KVM_MMIO_BUS,
179 KVM_PIO_BUS,
060f0ce6 180 KVM_VIRTIO_CCW_NOTIFY_BUS,
68c3b4d1 181 KVM_FAST_MMIO_BUS,
e93f8a0f
MT
182 KVM_NR_BUSES
183};
184
e32edf4f 185int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
e93f8a0f 186 int len, const void *val);
e32edf4f
NN
187int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
188 gpa_t addr, int len, const void *val, long cookie);
189int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
190 int len, void *val);
743eeb0b
SL
191int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
192 int len, struct kvm_io_device *dev);
90db1043
DH
193void kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
194 struct kvm_io_device *dev);
8a39d006
AP
195struct kvm_io_device *kvm_io_bus_get_dev(struct kvm *kvm, enum kvm_bus bus_idx,
196 gpa_t addr);
2eeb2e94 197
af585b92
GN
198#ifdef CONFIG_KVM_ASYNC_PF
199struct kvm_async_pf {
200 struct work_struct work;
201 struct list_head link;
202 struct list_head queue;
203 struct kvm_vcpu *vcpu;
204 struct mm_struct *mm;
736c291c 205 gpa_t cr2_or_gpa;
af585b92
GN
206 unsigned long addr;
207 struct kvm_arch_async_pf arch;
f2e10669 208 bool wakeup_all;
af585b92
GN
209};
210
211void kvm_clear_async_pf_completion_queue(struct kvm_vcpu *vcpu);
212void kvm_check_async_pf_completion(struct kvm_vcpu *vcpu);
736c291c
SC
213int kvm_setup_async_pf(struct kvm_vcpu *vcpu, gpa_t cr2_or_gpa,
214 unsigned long hva, struct kvm_arch_async_pf *arch);
344d9588 215int kvm_async_pf_wakeup_all(struct kvm_vcpu *vcpu);
af585b92
GN
216#endif
217
6b7e2d09
XG
218enum {
219 OUTSIDE_GUEST_MODE,
220 IN_GUEST_MODE,
c142786c
AK
221 EXITING_GUEST_MODE,
222 READING_SHADOW_PAGE_TABLES,
6b7e2d09
XG
223};
224
e45adf66
KA
225#define KVM_UNMAPPED_PAGE ((void *) 0x500 + POISON_POINTER_DELTA)
226
227struct kvm_host_map {
228 /*
229 * Only valid if the 'pfn' is managed by the host kernel (i.e. There is
230 * a 'struct page' for it. When using mem= kernel parameter some memory
231 * can be used as guest memory but they are not managed by host
232 * kernel).
233 * If 'pfn' is not managed by the host kernel, this field is
234 * initialized to KVM_UNMAPPED_PAGE.
235 */
236 struct page *page;
237 void *hva;
238 kvm_pfn_t pfn;
239 kvm_pfn_t gfn;
240};
241
242/*
243 * Used to check if the mapping is valid or not. Never use 'kvm_host_map'
244 * directly to check for that.
245 */
246static inline bool kvm_vcpu_mapped(struct kvm_host_map *map)
247{
248 return !!map->hva;
249}
250
f78146b0
AK
251/*
252 * Sometimes a large or cross-page mmio needs to be broken up into separate
253 * exits for userspace servicing.
254 */
255struct kvm_mmio_fragment {
256 gpa_t gpa;
257 void *data;
258 unsigned len;
259};
260
d17fbbf7
ZX
261struct kvm_vcpu {
262 struct kvm *kvm;
31bb117e 263#ifdef CONFIG_PREEMPT_NOTIFIERS
d17fbbf7 264 struct preempt_notifier preempt_notifier;
31bb117e 265#endif
6b7e2d09 266 int cpu;
8750e72a
RK
267 int vcpu_id; /* id given by userspace at creation */
268 int vcpu_idx; /* index in kvm->vcpus array */
6b7e2d09
XG
269 int srcu_idx;
270 int mode;
86dafed5 271 u64 requests;
d0bfb940 272 unsigned long guest_debug;
6b7e2d09 273
bf9f6ac8
FW
274 int pre_pcpu;
275 struct list_head blocked_vcpu_list;
276
6b7e2d09
XG
277 struct mutex mutex;
278 struct kvm_run *run;
f656ce01 279
8577370f 280 struct swait_queue_head wq;
0e4524a5 281 struct pid __rcu *pid;
d17fbbf7
ZX
282 int sigset_active;
283 sigset_t sigset;
284 struct kvm_vcpu_stat stat;
19020f8a 285 unsigned int halt_poll_ns;
3491caf2 286 bool valid_wakeup;
d17fbbf7 287
34c16eec 288#ifdef CONFIG_HAS_IOMEM
d17fbbf7
ZX
289 int mmio_needed;
290 int mmio_read_completed;
291 int mmio_is_write;
f78146b0
AK
292 int mmio_cur_fragment;
293 int mmio_nr_fragments;
294 struct kvm_mmio_fragment mmio_fragments[KVM_MAX_MMIO_FRAGMENTS];
34c16eec 295#endif
1165f5fe 296
af585b92
GN
297#ifdef CONFIG_KVM_ASYNC_PF
298 struct {
299 u32 queued;
300 struct list_head queue;
301 struct list_head done;
302 spinlock_t lock;
303 } async_pf;
304#endif
305
4c088493
R
306#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
307 /*
308 * Cpu relax intercept or pause loop exit optimization
309 * in_spin_loop: set when a vcpu does a pause loop exit
310 * or cpu relax intercepted.
311 * dy_eligible: indicates whether vcpu is eligible for directed yield.
312 */
313 struct {
314 bool in_spin_loop;
315 bool dy_eligible;
316 } spin_loop;
317#endif
3a08a8f9 318 bool preempted;
d73eb57b 319 bool ready;
d657a98e 320 struct kvm_vcpu_arch arch;
45b5939e 321 struct dentry *debugfs_dentry;
d657a98e
ZX
322};
323
6b7e2d09
XG
324static inline int kvm_vcpu_exiting_guest_mode(struct kvm_vcpu *vcpu)
325{
cde9af6e
AJ
326 /*
327 * The memory barrier ensures a previous write to vcpu->requests cannot
328 * be reordered with the read of vcpu->mode. It pairs with the general
329 * memory barrier following the write of vcpu->mode in VCPU RUN.
330 */
331 smp_mb__before_atomic();
6b7e2d09
XG
332 return cmpxchg(&vcpu->mode, IN_GUEST_MODE, EXITING_GUEST_MODE);
333}
334
660c22c4
TY
335/*
336 * Some of the bitops functions do not support too long bitmaps.
337 * This number must be determined not to exceed such limits.
338 */
339#define KVM_MEM_MAX_NR_PAGES ((1UL << 31) - 1)
340
6aa8b732
AK
341struct kvm_memory_slot {
342 gfn_t base_gfn;
343 unsigned long npages;
6aa8b732 344 unsigned long *dirty_bitmap;
db3fe4eb 345 struct kvm_arch_memory_slot arch;
8a7ae055 346 unsigned long userspace_addr;
6104f472 347 u32 flags;
1e702d9a 348 short id;
6aa8b732
AK
349};
350
87bf6e7d
TY
351static inline unsigned long kvm_dirty_bitmap_bytes(struct kvm_memory_slot *memslot)
352{
353 return ALIGN(memslot->npages, BITS_PER_LONG) / 8;
354}
355
03133347
CI
356static inline unsigned long *kvm_second_dirty_bitmap(struct kvm_memory_slot *memslot)
357{
358 unsigned long len = kvm_dirty_bitmap_bytes(memslot);
359
360 return memslot->dirty_bitmap + len / sizeof(*memslot->dirty_bitmap);
361}
362
84223598
CH
363struct kvm_s390_adapter_int {
364 u64 ind_addr;
365 u64 summary_addr;
366 u64 ind_offset;
367 u32 summary_offset;
368 u32 adapter_id;
369};
370
5c919412
AS
371struct kvm_hv_sint {
372 u32 vcpu;
373 u32 sint;
374};
375
399ec807
AK
376struct kvm_kernel_irq_routing_entry {
377 u32 gsi;
5116d8f6 378 u32 type;
4925663a 379 int (*set)(struct kvm_kernel_irq_routing_entry *e,
aa2fbe6d
YZ
380 struct kvm *kvm, int irq_source_id, int level,
381 bool line_status);
399ec807
AK
382 union {
383 struct {
384 unsigned irqchip;
385 unsigned pin;
386 } irqchip;
0455e72c
EA
387 struct {
388 u32 address_lo;
389 u32 address_hi;
390 u32 data;
391 u32 flags;
392 u32 devid;
393 } msi;
84223598 394 struct kvm_s390_adapter_int adapter;
5c919412 395 struct kvm_hv_sint hv_sint;
399ec807 396 };
46e624b9
GN
397 struct hlist_node link;
398};
399
b053b2ae
SR
400#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
401struct kvm_irq_routing_table {
402 int chip[KVM_NR_IRQCHIPS][KVM_IRQCHIP_NUM_PINS];
403 u32 nr_rt_entries;
404 /*
405 * Array indexed by gsi. Each entry contains list of irq chips
406 * the gsi is connected to.
407 */
408 struct hlist_head map[0];
409};
410#endif
411
0743247f
AW
412#ifndef KVM_PRIVATE_MEM_SLOTS
413#define KVM_PRIVATE_MEM_SLOTS 0
414#endif
415
93a5cef0 416#ifndef KVM_MEM_SLOTS_NUM
bbacc0c1 417#define KVM_MEM_SLOTS_NUM (KVM_USER_MEM_SLOTS + KVM_PRIVATE_MEM_SLOTS)
93a5cef0
XG
418#endif
419
f481b069
PB
420#ifndef __KVM_VCPU_MULTIPLE_ADDRESS_SPACE
421static inline int kvm_arch_vcpu_memslots_id(struct kvm_vcpu *vcpu)
422{
423 return 0;
424}
425#endif
426
bf3e05bc
XG
427/*
428 * Note:
429 * memslots are not sorted by id anymore, please use id_to_memslot()
430 * to get the memslot by its id.
431 */
46a26bf5 432struct kvm_memslots {
49c7754c 433 u64 generation;
93a5cef0 434 struct kvm_memory_slot memslots[KVM_MEM_SLOTS_NUM];
f85e2cb5 435 /* The mapping table from slot id to the index in memslots[]. */
1e702d9a 436 short id_to_index[KVM_MEM_SLOTS_NUM];
d4ae84a0 437 atomic_t lru_slot;
9c1a5d38 438 int used_slots;
46a26bf5
MT
439};
440
6aa8b732 441struct kvm {
aaee2c94 442 spinlock_t mmu_lock;
79fac95e 443 struct mutex slots_lock;
6d4e4c4f 444 struct mm_struct *mm; /* userspace tied to this vm */
a80cf7b5 445 struct kvm_memslots __rcu *memslots[KVM_ADDRESS_SPACE_NUM];
fb3f0f51 446 struct kvm_vcpu *vcpus[KVM_MAX_VCPUS];
6c7caebc
PB
447
448 /*
449 * created_vcpus is protected by kvm->lock, and is incremented
450 * at the beginning of KVM_CREATE_VCPU. online_vcpus is only
451 * incremented after storing the kvm_vcpu pointer in vcpus,
452 * and is accessed atomically.
453 */
73880c80 454 atomic_t online_vcpus;
6c7caebc 455 int created_vcpus;
217ece61 456 int last_boosted_vcpu;
133de902 457 struct list_head vm_list;
60eead79 458 struct mutex lock;
4a12f951 459 struct kvm_io_bus __rcu *buses[KVM_NR_BUSES];
721eecbf
GH
460#ifdef CONFIG_HAVE_KVM_EVENTFD
461 struct {
462 spinlock_t lock;
463 struct list_head items;
7a84428a
AW
464 struct list_head resampler_list;
465 struct mutex resampler_lock;
721eecbf 466 } irqfds;
d34e6b17 467 struct list_head ioeventfds;
721eecbf 468#endif
ba1389b7 469 struct kvm_vm_stat stat;
d69fb81f 470 struct kvm_arch arch;
e3736c3e 471 refcount_t users_count;
4b4357e0 472#ifdef CONFIG_KVM_MMIO
5f94c174 473 struct kvm_coalesced_mmio_ring *coalesced_mmio_ring;
2b3c246a
SL
474 spinlock_t ring_lock;
475 struct list_head coalesced_zones;
5f94c174 476#endif
e930bffe 477
60eead79 478 struct mutex irq_lock;
75858a84 479#ifdef CONFIG_HAVE_KVM_IRQCHIP
bd2b53b2 480 /*
9957c86d 481 * Update side is protected by irq_lock.
bd2b53b2 482 */
4b6a2872 483 struct kvm_irq_routing_table __rcu *irq_routing;
c77dcacb
PB
484#endif
485#ifdef CONFIG_HAVE_KVM_IRQFD
136bdfee 486 struct hlist_head irq_ack_notifier_list;
75858a84
AK
487#endif
488
36c1ed82 489#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
e930bffe
AA
490 struct mmu_notifier mmu_notifier;
491 unsigned long mmu_notifier_seq;
492 long mmu_notifier_count;
493#endif
a086f6a1 494 long tlbs_dirty;
07f0a7bd 495 struct list_head devices;
2a31b9db 496 bool manual_dirty_log_protect;
536a6f88
JF
497 struct dentry *debugfs_dentry;
498 struct kvm_stat_data **debugfs_stat_data;
6ade8694
PM
499 struct srcu_struct srcu;
500 struct srcu_struct irq_srcu;
fdeaf7e3 501 pid_t userspace_pid;
6aa8b732
AK
502};
503
a737f256
CD
504#define kvm_err(fmt, ...) \
505 pr_err("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
506#define kvm_info(fmt, ...) \
507 pr_info("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
508#define kvm_debug(fmt, ...) \
509 pr_debug("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
ae0f5499
BD
510#define kvm_debug_ratelimited(fmt, ...) \
511 pr_debug_ratelimited("kvm [%i]: " fmt, task_pid_nr(current), \
512 ## __VA_ARGS__)
a737f256
CD
513#define kvm_pr_unimpl(fmt, ...) \
514 pr_err_ratelimited("kvm [%i]: " fmt, \
515 task_tgid_nr(current), ## __VA_ARGS__)
f0242478 516
a737f256
CD
517/* The guest did something we don't support. */
518#define vcpu_unimpl(vcpu, fmt, ...) \
671d9ab3
BP
519 kvm_pr_unimpl("vcpu%i, guest rIP: 0x%lx " fmt, \
520 (vcpu)->vcpu_id, kvm_rip_read(vcpu), ## __VA_ARGS__)
6aa8b732 521
ee86dbc6
AS
522#define vcpu_debug(vcpu, fmt, ...) \
523 kvm_debug("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
ae0f5499
BD
524#define vcpu_debug_ratelimited(vcpu, fmt, ...) \
525 kvm_debug_ratelimited("vcpu%i " fmt, (vcpu)->vcpu_id, \
526 ## __VA_ARGS__)
765eaa0f
AS
527#define vcpu_err(vcpu, fmt, ...) \
528 kvm_err("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
ee86dbc6 529
4a12f951
CB
530static inline struct kvm_io_bus *kvm_get_bus(struct kvm *kvm, enum kvm_bus idx)
531{
532 return srcu_dereference_check(kvm->buses[idx], &kvm->srcu,
3898da94
PB
533 lockdep_is_held(&kvm->slots_lock) ||
534 !refcount_read(&kvm->users_count));
4a12f951
CB
535}
536
988a2cae
GN
537static inline struct kvm_vcpu *kvm_get_vcpu(struct kvm *kvm, int i)
538{
1d487e9b
PB
539 int num_vcpus = atomic_read(&kvm->online_vcpus);
540 i = array_index_nospec(i, num_vcpus);
541
542 /* Pairs with smp_wmb() in kvm_vm_ioctl_create_vcpu. */
988a2cae
GN
543 smp_rmb();
544 return kvm->vcpus[i];
545}
546
547#define kvm_for_each_vcpu(idx, vcpup, kvm) \
b42fc3cb
JM
548 for (idx = 0; \
549 idx < atomic_read(&kvm->online_vcpus) && \
550 (vcpup = kvm_get_vcpu(kvm, idx)) != NULL; \
551 idx++)
988a2cae 552
db27a7a3
DH
553static inline struct kvm_vcpu *kvm_get_vcpu_by_id(struct kvm *kvm, int id)
554{
9b9e3fc4 555 struct kvm_vcpu *vcpu = NULL;
db27a7a3
DH
556 int i;
557
9b9e3fc4 558 if (id < 0)
c896939f 559 return NULL;
9b9e3fc4
GK
560 if (id < KVM_MAX_VCPUS)
561 vcpu = kvm_get_vcpu(kvm, id);
c896939f
DH
562 if (vcpu && vcpu->vcpu_id == id)
563 return vcpu;
db27a7a3
DH
564 kvm_for_each_vcpu(i, vcpu, kvm)
565 if (vcpu->vcpu_id == id)
566 return vcpu;
567 return NULL;
568}
569
497d72d8
CD
570static inline int kvm_vcpu_get_idx(struct kvm_vcpu *vcpu)
571{
8750e72a 572 return vcpu->vcpu_idx;
497d72d8
CD
573}
574
be6ba0f0
XG
575#define kvm_for_each_memslot(memslot, slots) \
576 for (memslot = &slots->memslots[0]; \
bf3e05bc
XG
577 memslot < slots->memslots + KVM_MEM_SLOTS_NUM && memslot->npages;\
578 memslot++)
be6ba0f0 579
4543bdc0 580void kvm_vcpu_destroy(struct kvm_vcpu *vcpu);
fb3f0f51 581
ec7660cc 582void vcpu_load(struct kvm_vcpu *vcpu);
313a3dc7
CO
583void vcpu_put(struct kvm_vcpu *vcpu);
584
6ef768fa 585#ifdef __KVM_HAVE_IOAPIC
993225ad 586void kvm_arch_post_irq_ack_notifier_list_update(struct kvm *kvm);
abdb080f 587void kvm_arch_post_irq_routing_update(struct kvm *kvm);
6ef768fa 588#else
993225ad 589static inline void kvm_arch_post_irq_ack_notifier_list_update(struct kvm *kvm)
6ef768fa
PB
590{
591}
abdb080f 592static inline void kvm_arch_post_irq_routing_update(struct kvm *kvm)
b053b2ae
SR
593{
594}
6ef768fa
PB
595#endif
596
297e2105 597#ifdef CONFIG_HAVE_KVM_IRQFD
a0f155e9
CH
598int kvm_irqfd_init(void);
599void kvm_irqfd_exit(void);
600#else
601static inline int kvm_irqfd_init(void)
602{
603 return 0;
604}
605
606static inline void kvm_irqfd_exit(void)
607{
608}
609#endif
0ee75bea 610int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
c16f862d 611 struct module *module);
cb498ea2 612void kvm_exit(void);
6aa8b732 613
d39f13b0
IE
614void kvm_get_kvm(struct kvm *kvm);
615void kvm_put_kvm(struct kvm *kvm);
149487bd 616void kvm_put_kvm_no_destroy(struct kvm *kvm);
d39f13b0 617
f481b069 618static inline struct kvm_memslots *__kvm_memslots(struct kvm *kvm, int as_id)
90d83dc3 619{
1d487e9b 620 as_id = array_index_nospec(as_id, KVM_ADDRESS_SPACE_NUM);
7e988b10 621 return srcu_dereference_check(kvm->memslots[as_id], &kvm->srcu,
3898da94
PB
622 lockdep_is_held(&kvm->slots_lock) ||
623 !refcount_read(&kvm->users_count));
90d83dc3
LJ
624}
625
f481b069
PB
626static inline struct kvm_memslots *kvm_memslots(struct kvm *kvm)
627{
628 return __kvm_memslots(kvm, 0);
629}
630
8e73485c
PB
631static inline struct kvm_memslots *kvm_vcpu_memslots(struct kvm_vcpu *vcpu)
632{
f481b069
PB
633 int as_id = kvm_arch_vcpu_memslots_id(vcpu);
634
635 return __kvm_memslots(vcpu->kvm, as_id);
8e73485c
PB
636}
637
28a37544
XG
638static inline struct kvm_memory_slot *
639id_to_memslot(struct kvm_memslots *slots, int id)
640{
f85e2cb5
XG
641 int index = slots->id_to_index[id];
642 struct kvm_memory_slot *slot;
bf3e05bc 643
f85e2cb5 644 slot = &slots->memslots[index];
bf3e05bc 645
f85e2cb5
XG
646 WARN_ON(slot->id != id);
647 return slot;
28a37544
XG
648}
649
74d0727c
TY
650/*
651 * KVM_SET_USER_MEMORY_REGION ioctl allows the following operations:
652 * - create a new memory slot
653 * - delete an existing memory slot
654 * - modify an existing memory slot
655 * -- move it in the guest physical memory space
656 * -- just change its flags
657 *
658 * Since flags can be changed by some of these operations, the following
659 * differentiation is the best we can do for __kvm_set_memory_region():
660 */
661enum kvm_mr_change {
662 KVM_MR_CREATE,
663 KVM_MR_DELETE,
664 KVM_MR_MOVE,
665 KVM_MR_FLAGS_ONLY,
666};
667
210c7c4d 668int kvm_set_memory_region(struct kvm *kvm,
09170a49 669 const struct kvm_userspace_memory_region *mem);
f78e0e2e 670int __kvm_set_memory_region(struct kvm *kvm,
09170a49 671 const struct kvm_userspace_memory_region *mem);
e96c81ee 672void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *slot);
15248258 673void kvm_arch_memslots_updated(struct kvm *kvm, u64 gen);
f7784b8e
MT
674int kvm_arch_prepare_memory_region(struct kvm *kvm,
675 struct kvm_memory_slot *memslot,
09170a49 676 const struct kvm_userspace_memory_region *mem,
7b6195a9 677 enum kvm_mr_change change);
f7784b8e 678void kvm_arch_commit_memory_region(struct kvm *kvm,
09170a49 679 const struct kvm_userspace_memory_region *mem,
9d4c197c 680 struct kvm_memory_slot *old,
f36f3f28 681 const struct kvm_memory_slot *new,
8482644a 682 enum kvm_mr_change change);
db3fe4eb 683bool kvm_largepages_enabled(void);
54dee993 684void kvm_disable_largepages(void);
2df72e9b
MT
685/* flush all memory translations */
686void kvm_arch_flush_shadow_all(struct kvm *kvm);
687/* flush memory translations pointing to 'slot' */
688void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
689 struct kvm_memory_slot *slot);
a983fb23 690
d9ef13c2
PB
691int gfn_to_page_many_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
692 struct page **pages, int nr_pages);
48987781 693
954bbbc2 694struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
05da4558 695unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn);
ba6a3541 696unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable);
4d8b81ab 697unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
64d83126
CD
698unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot, gfn_t gfn,
699 bool *writable);
b4231d61
IE
700void kvm_release_page_clean(struct page *page);
701void kvm_release_page_dirty(struct page *page);
35149e21
AL
702void kvm_set_page_accessed(struct page *page);
703
ba049e93
DW
704kvm_pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn);
705kvm_pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn);
706kvm_pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
612819c3 707 bool *writable);
ba049e93
DW
708kvm_pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
709kvm_pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn);
710kvm_pfn_t __gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn,
711 bool atomic, bool *async, bool write_fault,
712 bool *writable);
037d92dc 713
ba049e93 714void kvm_release_pfn_clean(kvm_pfn_t pfn);
f7a6509f 715void kvm_release_pfn_dirty(kvm_pfn_t pfn);
ba049e93
DW
716void kvm_set_pfn_dirty(kvm_pfn_t pfn);
717void kvm_set_pfn_accessed(kvm_pfn_t pfn);
718void kvm_get_pfn(kvm_pfn_t pfn);
35149e21 719
91724814 720void kvm_release_pfn(kvm_pfn_t pfn, bool dirty, struct gfn_to_pfn_cache *cache);
195aefde
IE
721int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
722 int len);
723int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len);
4e335d9e
PB
724int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
725 void *data, unsigned long len);
195aefde
IE
726int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
727 int offset, int len);
728int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
729 unsigned long len);
4e335d9e
PB
730int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
731 void *data, unsigned long len);
732int kvm_write_guest_offset_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
7a86dab8
JM
733 void *data, unsigned int offset,
734 unsigned long len);
4e335d9e
PB
735int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
736 gpa_t gpa, unsigned long len);
cac0f1b7
SP
737
738#define __kvm_put_guest(kvm, gfn, offset, value, type) \
739({ \
740 unsigned long __addr = gfn_to_hva(kvm, gfn); \
741 type __user *__uaddr = (type __user *)(__addr + offset); \
742 int __ret = -EFAULT; \
743 \
744 if (!kvm_is_error_hva(__addr)) \
745 __ret = put_user(value, __uaddr); \
746 if (!__ret) \
747 mark_page_dirty(kvm, gfn); \
748 __ret; \
749})
750
751#define kvm_put_guest(kvm, gpa, value, type) \
752({ \
753 gpa_t __gpa = gpa; \
754 struct kvm *__kvm = kvm; \
755 __kvm_put_guest(__kvm, __gpa >> PAGE_SHIFT, \
756 offset_in_page(__gpa), (value), type); \
757})
758
195aefde
IE
759int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len);
760int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len);
6aa8b732 761struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
33e94154 762bool kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn);
f9b84e19 763unsigned long kvm_host_page_size(struct kvm_vcpu *vcpu, gfn_t gfn);
6aa8b732
AK
764void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
765
8e73485c
PB
766struct kvm_memslots *kvm_vcpu_memslots(struct kvm_vcpu *vcpu);
767struct kvm_memory_slot *kvm_vcpu_gfn_to_memslot(struct kvm_vcpu *vcpu, gfn_t gfn);
ba049e93
DW
768kvm_pfn_t kvm_vcpu_gfn_to_pfn_atomic(struct kvm_vcpu *vcpu, gfn_t gfn);
769kvm_pfn_t kvm_vcpu_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn);
e45adf66 770int kvm_vcpu_map(struct kvm_vcpu *vcpu, gpa_t gpa, struct kvm_host_map *map);
91724814
BO
771int kvm_map_gfn(struct kvm_vcpu *vcpu, gfn_t gfn, struct kvm_host_map *map,
772 struct gfn_to_pfn_cache *cache, bool atomic);
8e73485c 773struct page *kvm_vcpu_gfn_to_page(struct kvm_vcpu *vcpu, gfn_t gfn);
e45adf66 774void kvm_vcpu_unmap(struct kvm_vcpu *vcpu, struct kvm_host_map *map, bool dirty);
91724814
BO
775int kvm_unmap_gfn(struct kvm_vcpu *vcpu, struct kvm_host_map *map,
776 struct gfn_to_pfn_cache *cache, bool dirty, bool atomic);
8e73485c
PB
777unsigned long kvm_vcpu_gfn_to_hva(struct kvm_vcpu *vcpu, gfn_t gfn);
778unsigned long kvm_vcpu_gfn_to_hva_prot(struct kvm_vcpu *vcpu, gfn_t gfn, bool *writable);
779int kvm_vcpu_read_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, void *data, int offset,
780 int len);
781int kvm_vcpu_read_guest_atomic(struct kvm_vcpu *vcpu, gpa_t gpa, void *data,
782 unsigned long len);
783int kvm_vcpu_read_guest(struct kvm_vcpu *vcpu, gpa_t gpa, void *data,
784 unsigned long len);
785int kvm_vcpu_write_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, const void *data,
786 int offset, int len);
787int kvm_vcpu_write_guest(struct kvm_vcpu *vcpu, gpa_t gpa, const void *data,
788 unsigned long len);
789void kvm_vcpu_mark_page_dirty(struct kvm_vcpu *vcpu, gfn_t gfn);
790
20b7035c
JS
791void kvm_sigset_activate(struct kvm_vcpu *vcpu);
792void kvm_sigset_deactivate(struct kvm_vcpu *vcpu);
793
8776e519 794void kvm_vcpu_block(struct kvm_vcpu *vcpu);
3217f7c2
CD
795void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu);
796void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu);
178f02ff 797bool kvm_vcpu_wake_up(struct kvm_vcpu *vcpu);
b6d33834 798void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
fa93384f 799int kvm_vcpu_yield_to(struct kvm_vcpu *target);
199b5763 800void kvm_vcpu_on_spin(struct kvm_vcpu *vcpu, bool usermode_vcpu_not_eligible);
a4ee1ca4 801
d9e368d6 802void kvm_flush_remote_tlbs(struct kvm *kvm);
2e53d63a 803void kvm_reload_remote_mmus(struct kvm *kvm);
7053df4e
VK
804
805bool kvm_make_vcpus_request_mask(struct kvm *kvm, unsigned int req,
806 unsigned long *vcpu_bitmap, cpumask_var_t tmp);
445b8236 807bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req);
7ee30bc1
NNL
808bool kvm_make_cpus_request_mask(struct kvm *kvm, unsigned int req,
809 unsigned long *vcpu_bitmap);
6aa8b732 810
043405e1
CO
811long kvm_arch_dev_ioctl(struct file *filp,
812 unsigned int ioctl, unsigned long arg);
313a3dc7
CO
813long kvm_arch_vcpu_ioctl(struct file *filp,
814 unsigned int ioctl, unsigned long arg);
1499fa80 815vm_fault_t kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf);
018d00d2 816
784aa3d7 817int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext);
018d00d2 818
5bb064dc
ZX
819int kvm_get_dirty_log(struct kvm *kvm,
820 struct kvm_dirty_log *log, int *is_dirty);
ba0513b5
MS
821
822int kvm_get_dirty_log_protect(struct kvm *kvm,
8fe65a82 823 struct kvm_dirty_log *log, bool *flush);
2a31b9db
PB
824int kvm_clear_dirty_log_protect(struct kvm *kvm,
825 struct kvm_clear_dirty_log *log, bool *flush);
ba0513b5 826
3b0f1d01 827void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm,
ba0513b5
MS
828 struct kvm_memory_slot *slot,
829 gfn_t gfn_offset,
830 unsigned long mask);
831
5bb064dc
ZX
832int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
833 struct kvm_dirty_log *log);
2a31b9db
PB
834int kvm_vm_ioctl_clear_dirty_log(struct kvm *kvm,
835 struct kvm_clear_dirty_log *log);
5bb064dc 836
aa2fbe6d
YZ
837int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level,
838 bool line_status);
e5d83c74
PB
839int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
840 struct kvm_enable_cap *cap);
1fe779f8
CO
841long kvm_arch_vm_ioctl(struct file *filp,
842 unsigned int ioctl, unsigned long arg);
313a3dc7 843
d0752060
HB
844int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
845int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
846
8b006791
ZX
847int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
848 struct kvm_translation *tr);
849
b6c7a5dc
HB
850int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
851int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
852int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
853 struct kvm_sregs *sregs);
854int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
855 struct kvm_sregs *sregs);
62d9f0db
MT
856int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
857 struct kvm_mp_state *mp_state);
858int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
859 struct kvm_mp_state *mp_state);
d0bfb940
JK
860int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
861 struct kvm_guest_debug *dbg);
b6c7a5dc
HB
862int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run);
863
f8c16bba
ZX
864int kvm_arch_init(void *opaque);
865void kvm_arch_exit(void);
043405e1 866
e790d9ef
RK
867void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu);
868
e9b11c17
ZX
869void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
870void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
897cc38e 871int kvm_arch_vcpu_precreate(struct kvm *kvm, unsigned int id);
e529ef66 872int kvm_arch_vcpu_create(struct kvm_vcpu *vcpu);
31928aa5 873void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu);
d40ccc62 874void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu);
e9b11c17 875
741cbbae 876#ifdef __KVM_HAVE_ARCH_VCPU_DEBUGFS
3e7093d0 877void kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu);
741cbbae 878#endif
235539b4 879
13a34e06
RK
880int kvm_arch_hardware_enable(void);
881void kvm_arch_hardware_disable(void);
e9b11c17
ZX
882int kvm_arch_hardware_setup(void);
883void kvm_arch_hardware_unsetup(void);
f257d6dc 884int kvm_arch_check_processor_compat(void);
1d737c8a 885int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu);
199b5763 886bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu);
b6d33834 887int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu);
17e433b5 888bool kvm_arch_dy_runnable(struct kvm_vcpu *vcpu);
d970a325
PB
889int kvm_arch_post_init_vm(struct kvm *kvm);
890void kvm_arch_pre_destroy_vm(struct kvm *kvm);
e9b11c17 891
d89f5eff 892#ifndef __KVM_HAVE_ARCH_VM_ALLOC
d1e5b0e9
MO
893/*
894 * All architectures that want to use vzalloc currently also
895 * need their own kvm_arch_alloc_vm implementation.
896 */
d89f5eff
JK
897static inline struct kvm *kvm_arch_alloc_vm(void)
898{
899 return kzalloc(sizeof(struct kvm), GFP_KERNEL);
900}
901
902static inline void kvm_arch_free_vm(struct kvm *kvm)
903{
904 kfree(kvm);
905}
906#endif
907
b08660e5
TL
908#ifndef __KVM_HAVE_ARCH_FLUSH_REMOTE_TLB
909static inline int kvm_arch_flush_remote_tlb(struct kvm *kvm)
910{
911 return -ENOTSUPP;
912}
913#endif
914
e0f0bbc5
AW
915#ifdef __KVM_HAVE_ARCH_NONCOHERENT_DMA
916void kvm_arch_register_noncoherent_dma(struct kvm *kvm);
917void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm);
918bool kvm_arch_has_noncoherent_dma(struct kvm *kvm);
919#else
920static inline void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
921{
922}
923
924static inline void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
925{
926}
927
928static inline bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
929{
930 return false;
931}
932#endif
5544eb9b
PB
933#ifdef __KVM_HAVE_ARCH_ASSIGNED_DEVICE
934void kvm_arch_start_assignment(struct kvm *kvm);
935void kvm_arch_end_assignment(struct kvm *kvm);
936bool kvm_arch_has_assigned_device(struct kvm *kvm);
937#else
938static inline void kvm_arch_start_assignment(struct kvm *kvm)
939{
940}
941
942static inline void kvm_arch_end_assignment(struct kvm *kvm)
943{
944}
945
946static inline bool kvm_arch_has_assigned_device(struct kvm *kvm)
947{
948 return false;
949}
950#endif
e0f0bbc5 951
8577370f 952static inline struct swait_queue_head *kvm_arch_vcpu_wq(struct kvm_vcpu *vcpu)
b6d33834 953{
2246f8b5
AG
954#ifdef __KVM_HAVE_ARCH_WQP
955 return vcpu->arch.wqp;
956#else
b6d33834 957 return &vcpu->wq;
b6d33834 958#endif
2246f8b5 959}
b6d33834 960
01c94e64
EA
961#ifdef __KVM_HAVE_ARCH_INTC_INITIALIZED
962/*
963 * returns true if the virtual interrupt controller is initialized and
964 * ready to accept virtual IRQ. On some architectures the virtual interrupt
965 * controller is dynamically instantiated and this is not always true.
966 */
967bool kvm_arch_intc_initialized(struct kvm *kvm);
968#else
969static inline bool kvm_arch_intc_initialized(struct kvm *kvm)
970{
971 return true;
972}
973#endif
974
e08b9637 975int kvm_arch_init_vm(struct kvm *kvm, unsigned long type);
d19a9cd2 976void kvm_arch_destroy_vm(struct kvm *kvm);
ad8ba2cd 977void kvm_arch_sync_events(struct kvm *kvm);
e9b11c17 978
3d80840d 979int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu);
682c59a3 980
ba049e93 981bool kvm_is_reserved_pfn(kvm_pfn_t pfn);
a78986aa 982bool kvm_is_zone_device_pfn(kvm_pfn_t pfn);
005ba37c 983bool kvm_is_transparent_hugepage(kvm_pfn_t pfn);
c77fb9dc 984
62c476c7
BAY
985struct kvm_irq_ack_notifier {
986 struct hlist_node link;
987 unsigned gsi;
988 void (*irq_acked)(struct kvm_irq_ack_notifier *kian);
989};
990
9957c86d
PM
991int kvm_irq_map_gsi(struct kvm *kvm,
992 struct kvm_kernel_irq_routing_entry *entries, int gsi);
993int kvm_irq_map_chip_pin(struct kvm *kvm, unsigned irqchip, unsigned pin);
8ba918d4 994
aa2fbe6d
YZ
995int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level,
996 bool line_status);
bd2b53b2 997int kvm_set_msi(struct kvm_kernel_irq_routing_entry *irq_entry, struct kvm *kvm,
aa2fbe6d 998 int irq_source_id, int level, bool line_status);
b97e6de9
PB
999int kvm_arch_set_irq_inatomic(struct kvm_kernel_irq_routing_entry *e,
1000 struct kvm *kvm, int irq_source_id,
1001 int level, bool line_status);
c7c9c56c 1002bool kvm_irq_has_notifier(struct kvm *kvm, unsigned irqchip, unsigned pin);
ba1aefcd 1003void kvm_notify_acked_gsi(struct kvm *kvm, int gsi);
44882eed 1004void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin);
3de42dc0
XZ
1005void kvm_register_irq_ack_notifier(struct kvm *kvm,
1006 struct kvm_irq_ack_notifier *kian);
fa40a821
MT
1007void kvm_unregister_irq_ack_notifier(struct kvm *kvm,
1008 struct kvm_irq_ack_notifier *kian);
5550af4d
SY
1009int kvm_request_irq_source_id(struct kvm *kvm);
1010void kvm_free_irq_source_id(struct kvm *kvm, int irq_source_id);
cdc238eb 1011bool kvm_arch_irqfd_allowed(struct kvm *kvm, struct kvm_irqfd *args);
62c476c7 1012
9d4cba7f
PM
1013/*
1014 * search_memslots() and __gfn_to_memslot() are here because they are
1015 * used in non-modular code in arch/powerpc/kvm/book3s_hv_rm_mmu.c.
1016 * gfn_to_memslot() itself isn't here as an inline because that would
1017 * bloat other code too much.
1018 */
1019static inline struct kvm_memory_slot *
1020search_memslots(struct kvm_memslots *slots, gfn_t gfn)
1021{
9c1a5d38 1022 int start = 0, end = slots->used_slots;
d4ae84a0 1023 int slot = atomic_read(&slots->lru_slot);
9c1a5d38
IM
1024 struct kvm_memory_slot *memslots = slots->memslots;
1025
1026 if (gfn >= memslots[slot].base_gfn &&
1027 gfn < memslots[slot].base_gfn + memslots[slot].npages)
1028 return &memslots[slot];
1029
1030 while (start < end) {
1031 slot = start + (end - start) / 2;
1032
1033 if (gfn >= memslots[slot].base_gfn)
1034 end = slot;
1035 else
1036 start = slot + 1;
1037 }
1038
1039 if (gfn >= memslots[start].base_gfn &&
1040 gfn < memslots[start].base_gfn + memslots[start].npages) {
1041 atomic_set(&slots->lru_slot, start);
1042 return &memslots[start];
1043 }
9d4cba7f
PM
1044
1045 return NULL;
1046}
1047
1048static inline struct kvm_memory_slot *
1049__gfn_to_memslot(struct kvm_memslots *slots, gfn_t gfn)
1050{
1051 return search_memslots(slots, gfn);
1052}
1053
66a03505
GS
1054static inline unsigned long
1055__gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
1056{
1057 return slot->userspace_addr + (gfn - slot->base_gfn) * PAGE_SIZE;
1058}
1059
0ee8dcb8
XG
1060static inline int memslot_id(struct kvm *kvm, gfn_t gfn)
1061{
1062 return gfn_to_memslot(kvm, gfn)->id;
1063}
1064
d19a748b
TY
1065static inline gfn_t
1066hva_to_gfn_memslot(unsigned long hva, struct kvm_memory_slot *slot)
887c08ac 1067{
d19a748b
TY
1068 gfn_t gfn_offset = (hva - slot->userspace_addr) >> PAGE_SHIFT;
1069
1070 return slot->base_gfn + gfn_offset;
887c08ac
XG
1071}
1072
1755fbcc
AK
1073static inline gpa_t gfn_to_gpa(gfn_t gfn)
1074{
1075 return (gpa_t)gfn << PAGE_SHIFT;
1076}
6aa8b732 1077
c30a358d
JR
1078static inline gfn_t gpa_to_gfn(gpa_t gpa)
1079{
1080 return (gfn_t)(gpa >> PAGE_SHIFT);
1081}
1082
ba049e93 1083static inline hpa_t pfn_to_hpa(kvm_pfn_t pfn)
62c476c7
BAY
1084{
1085 return (hpa_t)pfn << PAGE_SHIFT;
1086}
1087
5e2f30b7
DH
1088static inline struct page *kvm_vcpu_gpa_to_page(struct kvm_vcpu *vcpu,
1089 gpa_t gpa)
1090{
1091 return kvm_vcpu_gfn_to_page(vcpu, gpa_to_gfn(gpa));
1092}
1093
dfeec843
HC
1094static inline bool kvm_is_error_gpa(struct kvm *kvm, gpa_t gpa)
1095{
1096 unsigned long hva = gfn_to_hva(kvm, gpa_to_gfn(gpa));
1097
1098 return kvm_is_error_hva(hva);
1099}
1100
ba1389b7
AK
1101enum kvm_stat_kind {
1102 KVM_STAT_VM,
1103 KVM_STAT_VCPU,
1104};
1105
536a6f88 1106struct kvm_stat_data {
536a6f88 1107 struct kvm *kvm;
09cbcef6 1108 struct kvm_stats_debugfs_item *dbgfs_item;
536a6f88
JF
1109};
1110
417bc304
HB
1111struct kvm_stats_debugfs_item {
1112 const char *name;
1113 int offset;
ba1389b7 1114 enum kvm_stat_kind kind;
833b45de 1115 int mode;
417bc304 1116};
09cbcef6
MP
1117
1118#define KVM_DBGFS_GET_MODE(dbgfs_item) \
1119 ((dbgfs_item)->mode ? (dbgfs_item)->mode : 0644)
1120
417bc304 1121extern struct kvm_stats_debugfs_item debugfs_entries[];
76f7c879 1122extern struct dentry *kvm_debugfs_dir;
d4c9ff2d 1123
36c1ed82 1124#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
8ca40a70 1125static inline int mmu_notifier_retry(struct kvm *kvm, unsigned long mmu_seq)
e930bffe 1126{
8ca40a70 1127 if (unlikely(kvm->mmu_notifier_count))
e930bffe
AA
1128 return 1;
1129 /*
a355aa54
PM
1130 * Ensure the read of mmu_notifier_count happens before the read
1131 * of mmu_notifier_seq. This interacts with the smp_wmb() in
1132 * mmu_notifier_invalidate_range_end to make sure that the caller
1133 * either sees the old (non-zero) value of mmu_notifier_count or
1134 * the new (incremented) value of mmu_notifier_seq.
1135 * PowerPC Book3s HV KVM calls this under a per-page lock
1136 * rather than under kvm->mmu_lock, for scalability, so
1137 * can't rely on kvm->mmu_lock to keep things ordered.
e930bffe 1138 */
a355aa54 1139 smp_rmb();
8ca40a70 1140 if (kvm->mmu_notifier_seq != mmu_seq)
e930bffe
AA
1141 return 1;
1142 return 0;
1143}
1144#endif
1145
a725d56a 1146#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
399ec807 1147
ddc9cfb7 1148#define KVM_MAX_IRQ_ROUTES 4096 /* might need extension/rework in the future */
399ec807 1149
5c0aea0e 1150bool kvm_arch_can_set_irq_routing(struct kvm *kvm);
399ec807
AK
1151int kvm_set_irq_routing(struct kvm *kvm,
1152 const struct kvm_irq_routing_entry *entries,
1153 unsigned nr,
1154 unsigned flags);
c63cf538
RK
1155int kvm_set_routing_entry(struct kvm *kvm,
1156 struct kvm_kernel_irq_routing_entry *e,
e8cde093 1157 const struct kvm_irq_routing_entry *ue);
399ec807
AK
1158void kvm_free_irq_routing(struct kvm *kvm);
1159
1160#else
1161
1162static inline void kvm_free_irq_routing(struct kvm *kvm) {}
1163
1164#endif
1165
297e2105
PM
1166int kvm_send_userspace_msi(struct kvm *kvm, struct kvm_msi *msi);
1167
721eecbf
GH
1168#ifdef CONFIG_HAVE_KVM_EVENTFD
1169
d34e6b17 1170void kvm_eventfd_init(struct kvm *kvm);
914daba8
AG
1171int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args);
1172
297e2105 1173#ifdef CONFIG_HAVE_KVM_IRQFD
d4db2935 1174int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args);
721eecbf 1175void kvm_irqfd_release(struct kvm *kvm);
9957c86d 1176void kvm_irq_routing_update(struct kvm *);
914daba8
AG
1177#else
1178static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
1179{
1180 return -EINVAL;
1181}
1182
1183static inline void kvm_irqfd_release(struct kvm *kvm) {}
1184#endif
721eecbf
GH
1185
1186#else
1187
d34e6b17 1188static inline void kvm_eventfd_init(struct kvm *kvm) {}
bd2b53b2 1189
d4db2935 1190static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
721eecbf
GH
1191{
1192 return -EINVAL;
1193}
1194
1195static inline void kvm_irqfd_release(struct kvm *kvm) {}
bd2b53b2 1196
27923eb1 1197#ifdef CONFIG_HAVE_KVM_IRQCHIP
9957c86d 1198static inline void kvm_irq_routing_update(struct kvm *kvm)
bd2b53b2 1199{
bd2b53b2 1200}
27923eb1 1201#endif
bd2b53b2 1202
d34e6b17
GH
1203static inline int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args)
1204{
1205 return -ENOSYS;
1206}
721eecbf
GH
1207
1208#endif /* CONFIG_HAVE_KVM_EVENTFD */
1209
07646749
SO
1210void kvm_arch_irq_routing_update(struct kvm *kvm);
1211
a8eeb04a
AK
1212static inline void kvm_make_request(int req, struct kvm_vcpu *vcpu)
1213{
2e4682ba
PB
1214 /*
1215 * Ensure the rest of the request is published to kvm_check_request's
1216 * caller. Paired with the smp_mb__after_atomic in kvm_check_request.
1217 */
1218 smp_wmb();
86dafed5 1219 set_bit(req & KVM_REQUEST_MASK, (void *)&vcpu->requests);
a8eeb04a
AK
1220}
1221
2fa6e1e1
RK
1222static inline bool kvm_request_pending(struct kvm_vcpu *vcpu)
1223{
1224 return READ_ONCE(vcpu->requests);
1225}
1226
72875d8a
RK
1227static inline bool kvm_test_request(int req, struct kvm_vcpu *vcpu)
1228{
86dafed5 1229 return test_bit(req & KVM_REQUEST_MASK, (void *)&vcpu->requests);
72875d8a
RK
1230}
1231
1232static inline void kvm_clear_request(int req, struct kvm_vcpu *vcpu)
1233{
86dafed5 1234 clear_bit(req & KVM_REQUEST_MASK, (void *)&vcpu->requests);
72875d8a
RK
1235}
1236
a8eeb04a
AK
1237static inline bool kvm_check_request(int req, struct kvm_vcpu *vcpu)
1238{
72875d8a
RK
1239 if (kvm_test_request(req, vcpu)) {
1240 kvm_clear_request(req, vcpu);
2e4682ba
PB
1241
1242 /*
1243 * Ensure the rest of the request is visible to kvm_check_request's
1244 * caller. Paired with the smp_wmb in kvm_make_request.
1245 */
1246 smp_mb__after_atomic();
0719837c
AK
1247 return true;
1248 } else {
1249 return false;
1250 }
a8eeb04a
AK
1251}
1252
8b415dcd
GL
1253extern bool kvm_rebooting;
1254
ec76d819
SJS
1255extern unsigned int halt_poll_ns;
1256extern unsigned int halt_poll_ns_grow;
49113d36 1257extern unsigned int halt_poll_ns_grow_start;
ec76d819
SJS
1258extern unsigned int halt_poll_ns_shrink;
1259
852b6d57 1260struct kvm_device {
8538cb22 1261 const struct kvm_device_ops *ops;
852b6d57 1262 struct kvm *kvm;
852b6d57 1263 void *private;
07f0a7bd 1264 struct list_head vm_node;
852b6d57
SW
1265};
1266
1267/* create, destroy, and name are mandatory */
1268struct kvm_device_ops {
1269 const char *name;
a28ebea2
CD
1270
1271 /*
1272 * create is called holding kvm->lock and any operations not suitable
1273 * to do while holding the lock should be deferred to init (see
1274 * below).
1275 */
852b6d57
SW
1276 int (*create)(struct kvm_device *dev, u32 type);
1277
023e9fdd
CD
1278 /*
1279 * init is called after create if create is successful and is called
1280 * outside of holding kvm->lock.
1281 */
1282 void (*init)(struct kvm_device *dev);
1283
852b6d57
SW
1284 /*
1285 * Destroy is responsible for freeing dev.
1286 *
1287 * Destroy may be called before or after destructors are called
1288 * on emulated I/O regions, depending on whether a reference is
1289 * held by a vcpu or other kvm component that gets destroyed
1290 * after the emulated I/O.
1291 */
1292 void (*destroy)(struct kvm_device *dev);
1293
2bde9b3e
CLG
1294 /*
1295 * Release is an alternative method to free the device. It is
1296 * called when the device file descriptor is closed. Once
1297 * release is called, the destroy method will not be called
1298 * anymore as the device is removed from the device list of
1299 * the VM. kvm->lock is held.
1300 */
1301 void (*release)(struct kvm_device *dev);
1302
852b6d57
SW
1303 int (*set_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1304 int (*get_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1305 int (*has_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1306 long (*ioctl)(struct kvm_device *dev, unsigned int ioctl,
1307 unsigned long arg);
a1cd3f08 1308 int (*mmap)(struct kvm_device *dev, struct vm_area_struct *vma);
852b6d57
SW
1309};
1310
1311void kvm_device_get(struct kvm_device *dev);
1312void kvm_device_put(struct kvm_device *dev);
1313struct kvm_device *kvm_device_from_filp(struct file *filp);
8538cb22 1314int kvm_register_device_ops(const struct kvm_device_ops *ops, u32 type);
571ee1b6 1315void kvm_unregister_device_ops(u32 type);
852b6d57 1316
5df554ad 1317extern struct kvm_device_ops kvm_mpic_ops;
ea2f83a7 1318extern struct kvm_device_ops kvm_arm_vgic_v2_ops;
a0675c25 1319extern struct kvm_device_ops kvm_arm_vgic_v3_ops;
5df554ad 1320
4c088493
R
1321#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
1322
1323static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
1324{
1325 vcpu->spin_loop.in_spin_loop = val;
1326}
1327static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
1328{
1329 vcpu->spin_loop.dy_eligible = val;
1330}
1331
1332#else /* !CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
1333
1334static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
1335{
1336}
1337
1338static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
1339{
1340}
4c088493 1341#endif /* CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
1a02b270 1342
7495e22b
PB
1343struct kvm_vcpu *kvm_get_running_vcpu(void);
1344struct kvm_vcpu __percpu **kvm_get_running_vcpus(void);
1345
1a02b270 1346#ifdef CONFIG_HAVE_KVM_IRQ_BYPASS
14717e20 1347bool kvm_arch_has_irq_bypass(void);
1a02b270
EA
1348int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *,
1349 struct irq_bypass_producer *);
1350void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *,
1351 struct irq_bypass_producer *);
1352void kvm_arch_irq_bypass_stop(struct irq_bypass_consumer *);
1353void kvm_arch_irq_bypass_start(struct irq_bypass_consumer *);
f70c20aa
FW
1354int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
1355 uint32_t guest_irq, bool set);
1a02b270 1356#endif /* CONFIG_HAVE_KVM_IRQ_BYPASS */
35181e86 1357
3491caf2
CB
1358#ifdef CONFIG_HAVE_KVM_INVALID_WAKEUPS
1359/* If we wakeup during the poll time, was it a sucessful poll? */
1360static inline bool vcpu_valid_wakeup(struct kvm_vcpu *vcpu)
1361{
1362 return vcpu->valid_wakeup;
1363}
1364
1365#else
1366static inline bool vcpu_valid_wakeup(struct kvm_vcpu *vcpu)
1367{
1368 return true;
1369}
1370#endif /* CONFIG_HAVE_KVM_INVALID_WAKEUPS */
1371
cdd6ad3a
CB
1372#ifdef CONFIG_HAVE_KVM_NO_POLL
1373/* Callback that tells if we must not poll */
1374bool kvm_arch_no_poll(struct kvm_vcpu *vcpu);
1375#else
1376static inline bool kvm_arch_no_poll(struct kvm_vcpu *vcpu)
1377{
1378 return false;
1379}
1380#endif /* CONFIG_HAVE_KVM_NO_POLL */
1381
5cb0944c
PB
1382#ifdef CONFIG_HAVE_KVM_VCPU_ASYNC_IOCTL
1383long kvm_arch_vcpu_async_ioctl(struct file *filp,
1384 unsigned int ioctl, unsigned long arg);
1385#else
1386static inline long kvm_arch_vcpu_async_ioctl(struct file *filp,
1387 unsigned int ioctl,
1388 unsigned long arg)
1389{
1390 return -ENOIOCTLCMD;
1391}
1392#endif /* CONFIG_HAVE_KVM_VCPU_ASYNC_IOCTL */
1393
93065ac7
MH
1394int kvm_arch_mmu_notifier_invalidate_range(struct kvm *kvm,
1395 unsigned long start, unsigned long end, bool blockable);
f75e4924 1396
bd2a6394
CD
1397#ifdef CONFIG_HAVE_KVM_VCPU_RUN_PID_CHANGE
1398int kvm_arch_vcpu_run_pid_change(struct kvm_vcpu *vcpu);
1399#else
1400static inline int kvm_arch_vcpu_run_pid_change(struct kvm_vcpu *vcpu)
1401{
1402 return 0;
1403}
1404#endif /* CONFIG_HAVE_KVM_VCPU_RUN_PID_CHANGE */
1405
c57c8046
JS
1406typedef int (*kvm_vm_thread_fn_t)(struct kvm *kvm, uintptr_t data);
1407
1408int kvm_vm_create_worker_thread(struct kvm *kvm, kvm_vm_thread_fn_t thread_fn,
1409 uintptr_t data, const char *name,
1410 struct task_struct **thread_ptr);
1411
bfd99ff5 1412#endif