blob: 60d339faa94c4d571667127db7fd06192537d4f6 [file] [log] [blame]
Avi Kivityedf88412007-12-16 11:02:48 +02001#ifndef __KVM_HOST_H
2#define __KVM_HOST_H
Avi Kivity6aa8b732006-12-10 02:21:36 -08003
4/*
5 * This work is licensed under the terms of the GNU GPL, version 2. See
6 * the COPYING file in the top-level directory.
7 */
8
9#include <linux/types.h>
Christian Borntraegere56a7a22007-10-18 14:39:10 +020010#include <linux/hardirq.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080011#include <linux/list.h>
12#include <linux/mutex.h>
13#include <linux/spinlock.h>
Markus Rechberger06ff0d32007-05-27 10:46:52 +030014#include <linux/signal.h>
15#include <linux/sched.h>
Paul Gortmaker187f1882011-11-23 20:12:59 -050016#include <linux/bug.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080017#include <linux/mm.h>
Eric B Munsonb297e672011-10-10 11:46:15 -040018#include <linux/mmu_notifier.h>
Avi Kivity15ad7142007-07-11 18:17:21 +030019#include <linux/preempt.h>
Sheng Yang0937c482008-11-24 14:32:53 +080020#include <linux/msi.h>
Jan Kiszkad89f5ef2010-11-09 17:02:49 +010021#include <linux/slab.h>
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +020022#include <linux/rcupdate.h>
Jan Kiszkabd801582011-09-12 11:26:22 +020023#include <linux/ratelimit.h>
Xiao Guangrong83f09222012-08-03 15:39:59 +080024#include <linux/err.h>
Frederic Weisbeckerc11f11f2013-01-21 00:50:22 +010025#include <linux/irqflags.h>
Frederic Weisbecker521921b2013-05-16 01:21:38 +020026#include <linux/context_tracking.h>
Eric Auger1a02b272015-09-18 22:29:43 +080027#include <linux/irqbypass.h>
Marcelo Tosatti85773702016-02-19 09:46:39 +010028#include <linux/swait.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040029#include <asm/signal.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080030
Avi Kivity6aa8b732006-12-10 02:21:36 -080031#include <linux/kvm.h>
Ingo Molnar102d8322007-02-19 14:37:47 +020032#include <linux/kvm_para.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080033
Avi Kivityedf88412007-12-16 11:02:48 +020034#include <linux/kvm_types.h>
Hollis Blanchardd77a39d92007-12-03 15:30:23 -060035
Avi Kivityedf88412007-12-16 11:02:48 +020036#include <asm/kvm_host.h>
Zhang Xiantaod657a982007-12-14 09:41:22 +080037
Greg Kurz0b1b1df2016-05-09 18:13:37 +020038#ifndef KVM_MAX_VCPU_ID
39#define KVM_MAX_VCPU_ID KVM_MAX_VCPUS
40#endif
41
Avi Kivity6aa8b732006-12-10 02:21:36 -080042/*
Xiao Guangrong67b29202012-08-21 10:58:45 +080043 * 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)
Ard Biesheuvel1050dcd2014-11-17 14:58:51 +000048#define KVM_MEMSLOT_INCOHERENT (1UL << 17)
Xiao Guangrong67b29202012-08-21 10:58:45 +080049
Xiao Guangrong87da7e62012-10-24 14:07:59 +080050/* Two fragments for cross MMIO pages. */
51#define KVM_MAX_MMIO_FRAGMENTS 2
Avi Kivityf78146b2012-04-18 19:22:47 +030052
Paolo Bonzinif481b062015-05-17 17:30:37 +020053#ifndef KVM_ADDRESS_SPACE_NUM
54#define KVM_ADDRESS_SPACE_NUM 1
55#endif
56
Avi Kivityf78146b2012-04-18 19:22:47 +030057/*
Xiao Guangrong9c5b1172012-08-03 15:43:51 +080058 * For the normal pfn, the highest 12 bits should be zero,
Xiao Guangrong81c52c52012-10-16 20:10:59 +080059 * so we can mask bit 62 ~ bit 52 to indicate the error pfn,
60 * mask bit 63 to indicate the noslot pfn.
Xiao Guangrong9c5b1172012-08-03 15:43:51 +080061 */
Xiao Guangrong81c52c52012-10-16 20:10:59 +080062#define KVM_PFN_ERR_MASK (0x7ffULL << 52)
63#define KVM_PFN_ERR_NOSLOT_MASK (0xfffULL << 52)
64#define KVM_PFN_NOSLOT (0x1ULL << 63)
Xiao Guangrong6c8ee572012-08-03 15:37:54 +080065
Xiao Guangrong9c5b1172012-08-03 15:43:51 +080066#define KVM_PFN_ERR_FAULT (KVM_PFN_ERR_MASK)
67#define KVM_PFN_ERR_HWPOISON (KVM_PFN_ERR_MASK + 1)
Xiao Guangrong81c52c52012-10-16 20:10:59 +080068#define KVM_PFN_ERR_RO_FAULT (KVM_PFN_ERR_MASK + 2)
Xiao Guangrong9c5b1172012-08-03 15:43:51 +080069
Xiao Guangrong81c52c52012-10-16 20:10:59 +080070/*
71 * error pfns indicate that the gfn is in slot but faild to
72 * translate it to pfn on host.
73 */
Dan Williamsba049e92016-01-15 16:56:11 -080074static inline bool is_error_pfn(kvm_pfn_t pfn)
Xiao Guangrong83f09222012-08-03 15:39:59 +080075{
Xiao Guangrong9c5b1172012-08-03 15:43:51 +080076 return !!(pfn & KVM_PFN_ERR_MASK);
Xiao Guangrong83f09222012-08-03 15:39:59 +080077}
78
Xiao Guangrong81c52c52012-10-16 20:10:59 +080079/*
80 * error_noslot pfns indicate that the gfn can not be
81 * translated to pfn - it is not in slot or failed to
82 * translate it to pfn.
83 */
Dan Williamsba049e92016-01-15 16:56:11 -080084static inline bool is_error_noslot_pfn(kvm_pfn_t pfn)
Xiao Guangrong83f09222012-08-03 15:39:59 +080085{
Xiao Guangrong81c52c52012-10-16 20:10:59 +080086 return !!(pfn & KVM_PFN_ERR_NOSLOT_MASK);
Xiao Guangrong83f09222012-08-03 15:39:59 +080087}
88
Xiao Guangrong81c52c52012-10-16 20:10:59 +080089/* noslot pfn indicates that the gfn is not in slot. */
Dan Williamsba049e92016-01-15 16:56:11 -080090static inline bool is_noslot_pfn(kvm_pfn_t pfn)
Xiao Guangrong83f09222012-08-03 15:39:59 +080091{
Xiao Guangrong81c52c52012-10-16 20:10:59 +080092 return pfn == KVM_PFN_NOSLOT;
Xiao Guangrong83f09222012-08-03 15:39:59 +080093}
94
Dominik Dingelbf640872013-07-26 15:04:07 +020095/*
96 * architectures with KVM_HVA_ERR_BAD other than PAGE_OFFSET (e.g. s390)
97 * provide own defines and kvm_is_error_hva
98 */
99#ifndef KVM_HVA_ERR_BAD
100
Xiao Guangrong7068d092012-08-21 11:02:22 +0800101#define KVM_HVA_ERR_BAD (PAGE_OFFSET)
102#define KVM_HVA_ERR_RO_BAD (PAGE_OFFSET + PAGE_SIZE)
Xiao Guangrongca3a4902012-08-21 11:01:50 +0800103
104static inline bool kvm_is_error_hva(unsigned long addr)
105{
Xiao Guangrong7068d092012-08-21 11:02:22 +0800106 return addr >= PAGE_OFFSET;
Xiao Guangrongca3a4902012-08-21 11:01:50 +0800107}
108
Dominik Dingelbf640872013-07-26 15:04:07 +0200109#endif
110
Xiao Guangrong6cede2e2012-08-03 15:41:22 +0800111#define KVM_ERR_PTR_BAD_PAGE (ERR_PTR(-ENOENT))
112
Xiao Guangrong9c5b1172012-08-03 15:43:51 +0800113static inline bool is_error_page(struct page *page)
Xiao Guangrong6cede2e2012-08-03 15:41:22 +0800114{
115 return IS_ERR(page);
116}
117
Avi Kivity6aa8b732006-12-10 02:21:36 -0800118/*
Paolo Bonzini2860c4b2016-01-07 15:05:10 +0100119 * Architecture-independent vcpu->requests bit members
120 * Bits 4-7 are reserved for more arch-independent bits.
Avi Kivityd9e368d2007-06-07 19:18:30 +0300121 */
Avi Kivity3176bc32007-10-16 17:22:08 +0200122#define KVM_REQ_TLB_FLUSH 0
Paolo Bonzini6662ba32016-01-07 15:02:44 +0100123#define KVM_REQ_MMU_RELOAD 1
124#define KVM_REQ_PENDING_TIMER 2
125#define KVM_REQ_UNHALT 3
Paolo Bonzini0cd31042016-01-07 15:00:53 +0100126
Alex Williamson7a844282012-09-21 11:58:03 -0600127#define KVM_USERSPACE_IRQ_SOURCE_ID 0
128#define KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID 1
Sheng Yang5550af42008-10-15 20:15:06 +0800129
Rusty Russellc16f8622007-07-30 21:12:19 +1000130extern struct kmem_cache *kvm_vcpu_cache;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800131
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200132extern spinlock_t kvm_lock;
Geoff Levandfc1b7492013-04-05 19:20:30 +0000133extern struct list_head vm_list;
134
Sasha Levin743eeb02011-07-27 16:00:48 +0300135struct kvm_io_range {
136 gpa_t addr;
137 int len;
138 struct kvm_io_device *dev;
139};
140
Amos Kong786a9f82012-03-09 12:17:40 +0800141#define NR_IOBUS_DEVS 1000
Amos Konga13007162012-03-09 12:17:32 +0800142
Gregory Haskins2eeb2e92007-05-31 14:08:53 -0400143struct kvm_io_bus {
Amos Kong6ea34c92013-05-25 06:44:15 +0800144 int dev_count;
145 int ioeventfd_count;
Amos Konga13007162012-03-09 12:17:32 +0800146 struct kvm_io_range range[];
Gregory Haskins2eeb2e92007-05-31 14:08:53 -0400147};
148
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200149enum kvm_bus {
150 KVM_MMIO_BUS,
151 KVM_PIO_BUS,
Cornelia Huck060f0ce2013-02-28 12:33:19 +0100152 KVM_VIRTIO_CCW_NOTIFY_BUS,
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +0300153 KVM_FAST_MMIO_BUS,
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200154 KVM_NR_BUSES
155};
156
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +0000157int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200158 int len, const void *val);
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +0000159int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
160 gpa_t addr, int len, const void *val, long cookie);
161int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
162 int len, void *val);
Sasha Levin743eeb02011-07-27 16:00:48 +0300163int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
164 int len, struct kvm_io_device *dev);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200165int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
166 struct kvm_io_device *dev);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -0400167
Gleb Natapovaf585b92010-10-14 11:22:46 +0200168#ifdef CONFIG_KVM_ASYNC_PF
169struct kvm_async_pf {
170 struct work_struct work;
171 struct list_head link;
172 struct list_head queue;
173 struct kvm_vcpu *vcpu;
174 struct mm_struct *mm;
175 gva_t gva;
176 unsigned long addr;
177 struct kvm_arch_async_pf arch;
chai wenf2e10662013-10-14 22:22:33 +0800178 bool wakeup_all;
Gleb Natapovaf585b92010-10-14 11:22:46 +0200179};
180
181void kvm_clear_async_pf_completion_queue(struct kvm_vcpu *vcpu);
182void kvm_check_async_pf_completion(struct kvm_vcpu *vcpu);
Dominik Dingele0ead412013-06-06 15:32:37 +0200183int kvm_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, unsigned long hva,
Gleb Natapovaf585b92010-10-14 11:22:46 +0200184 struct kvm_arch_async_pf *arch);
Gleb Natapov344d9582010-10-14 11:22:50 +0200185int kvm_async_pf_wakeup_all(struct kvm_vcpu *vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +0200186#endif
187
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800188enum {
189 OUTSIDE_GUEST_MODE,
190 IN_GUEST_MODE,
Avi Kivityc1427862012-05-14 15:44:06 +0300191 EXITING_GUEST_MODE,
192 READING_SHADOW_PAGE_TABLES,
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800193};
194
Avi Kivityf78146b2012-04-18 19:22:47 +0300195/*
196 * Sometimes a large or cross-page mmio needs to be broken up into separate
197 * exits for userspace servicing.
198 */
199struct kvm_mmio_fragment {
200 gpa_t gpa;
201 void *data;
202 unsigned len;
203};
204
Zhang Xiantaod657a982007-12-14 09:41:22 +0800205struct kvm_vcpu {
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800206 struct kvm *kvm;
Hollis Blanchard31bb1172008-01-28 17:42:34 -0600207#ifdef CONFIG_PREEMPT_NOTIFIERS
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800208 struct preempt_notifier preempt_notifier;
Hollis Blanchard31bb1172008-01-28 17:42:34 -0600209#endif
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800210 int cpu;
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800211 int vcpu_id;
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800212 int srcu_idx;
213 int mode;
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800214 unsigned long requests;
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100215 unsigned long guest_debug;
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800216
Feng Wubf9f6ac2015-09-18 22:29:55 +0800217 int pre_pcpu;
218 struct list_head blocked_vcpu_list;
219
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800220 struct mutex mutex;
221 struct kvm_run *run;
Marcelo Tosattif656ce02009-12-23 14:35:25 -0200222
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800223 int fpu_active;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800224 int guest_fpu_loaded, guest_xcr0_loaded;
Rik van Riel653f52c2015-04-23 11:52:37 -0400225 unsigned char fpu_counter;
Marcelo Tosatti85773702016-02-19 09:46:39 +0100226 struct swait_queue_head wq;
Rik van Riel34bb10b2011-02-01 09:52:41 -0500227 struct pid *pid;
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800228 int sigset_active;
229 sigset_t sigset;
230 struct kvm_vcpu_stat stat;
Wanpeng Li19020f82015-09-03 22:07:37 +0800231 unsigned int halt_poll_ns;
Christian Borntraeger3491caf2016-05-13 12:16:35 +0200232 bool valid_wakeup;
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800233
234#ifdef CONFIG_HAS_IOMEM
235 int mmio_needed;
236 int mmio_read_completed;
237 int mmio_is_write;
Avi Kivityf78146b2012-04-18 19:22:47 +0300238 int mmio_cur_fragment;
239 int mmio_nr_fragments;
240 struct kvm_mmio_fragment mmio_fragments[KVM_MAX_MMIO_FRAGMENTS];
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800241#endif
Zhang Xiantaod657a982007-12-14 09:41:22 +0800242
Gleb Natapovaf585b92010-10-14 11:22:46 +0200243#ifdef CONFIG_KVM_ASYNC_PF
244 struct {
245 u32 queued;
246 struct list_head queue;
247 struct list_head done;
248 spinlock_t lock;
249 } async_pf;
250#endif
251
Raghavendra K T4c088492012-07-18 19:07:46 +0530252#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
253 /*
254 * Cpu relax intercept or pause loop exit optimization
255 * in_spin_loop: set when a vcpu does a pause loop exit
256 * or cpu relax intercepted.
257 * dy_eligible: indicates whether vcpu is eligible for directed yield.
258 */
259 struct {
260 bool in_spin_loop;
261 bool dy_eligible;
262 } spin_loop;
263#endif
Raghavendra K T3a08a8f2013-03-04 23:32:07 +0530264 bool preempted;
Zhang Xiantaod657a982007-12-14 09:41:22 +0800265 struct kvm_vcpu_arch arch;
266};
267
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800268static inline int kvm_vcpu_exiting_guest_mode(struct kvm_vcpu *vcpu)
269{
270 return cmpxchg(&vcpu->mode, IN_GUEST_MODE, EXITING_GUEST_MODE);
271}
272
Takuya Yoshikawa660c22c2010-04-13 22:47:24 +0900273/*
274 * Some of the bitops functions do not support too long bitmaps.
275 * This number must be determined not to exceed such limits.
276 */
277#define KVM_MEM_MAX_NR_PAGES ((1UL << 31) - 1)
278
Avi Kivity6aa8b732006-12-10 02:21:36 -0800279struct kvm_memory_slot {
280 gfn_t base_gfn;
281 unsigned long npages;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800282 unsigned long *dirty_bitmap;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900283 struct kvm_arch_memory_slot arch;
Izik Eidus8a7ae052007-10-18 11:09:33 +0200284 unsigned long userspace_addr;
Alex Williamson6104f472012-12-10 10:33:26 -0700285 u32 flags;
Alex Williamson1e702d92012-12-10 10:33:32 -0700286 short id;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800287};
288
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900289static inline unsigned long kvm_dirty_bitmap_bytes(struct kvm_memory_slot *memslot)
290{
291 return ALIGN(memslot->npages, BITS_PER_LONG) / 8;
292}
293
Cornelia Huck84223592013-07-15 13:36:01 +0200294struct kvm_s390_adapter_int {
295 u64 ind_addr;
296 u64 summary_addr;
297 u64 ind_offset;
298 u32 summary_offset;
299 u32 adapter_id;
300};
301
Andrey Smetanin5c9194122015-11-10 15:36:34 +0300302struct kvm_hv_sint {
303 u32 vcpu;
304 u32 sint;
305};
306
Avi Kivity399ec802008-11-19 13:58:46 +0200307struct kvm_kernel_irq_routing_entry {
308 u32 gsi;
Michael S. Tsirkin5116d8f2009-07-26 17:10:01 +0300309 u32 type;
Gleb Natapov49256632009-02-04 17:28:14 +0200310 int (*set)(struct kvm_kernel_irq_routing_entry *e,
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800311 struct kvm *kvm, int irq_source_id, int level,
312 bool line_status);
Avi Kivity399ec802008-11-19 13:58:46 +0200313 union {
314 struct {
315 unsigned irqchip;
316 unsigned pin;
317 } irqchip;
Sheng Yang79950e12009-02-10 13:57:06 +0800318 struct msi_msg msi;
Cornelia Huck84223592013-07-15 13:36:01 +0200319 struct kvm_s390_adapter_int adapter;
Andrey Smetanin5c9194122015-11-10 15:36:34 +0300320 struct kvm_hv_sint hv_sint;
Avi Kivity399ec802008-11-19 13:58:46 +0200321 };
Gleb Natapov46e624b2009-08-24 11:54:20 +0300322 struct hlist_node link;
323};
324
Steve Rutherfordb053b2a2015-07-29 23:32:35 -0700325#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
326struct kvm_irq_routing_table {
327 int chip[KVM_NR_IRQCHIPS][KVM_IRQCHIP_NUM_PINS];
328 u32 nr_rt_entries;
329 /*
330 * Array indexed by gsi. Each entry contains list of irq chips
331 * the gsi is connected to.
332 */
333 struct hlist_head map[0];
334};
335#endif
336
Alex Williamson07432472012-12-10 10:33:15 -0700337#ifndef KVM_PRIVATE_MEM_SLOTS
338#define KVM_PRIVATE_MEM_SLOTS 0
339#endif
340
Xiao Guangrong93a5cef2011-11-24 17:37:48 +0800341#ifndef KVM_MEM_SLOTS_NUM
Alex Williamsonbbacc0c2012-12-10 10:33:09 -0700342#define KVM_MEM_SLOTS_NUM (KVM_USER_MEM_SLOTS + KVM_PRIVATE_MEM_SLOTS)
Xiao Guangrong93a5cef2011-11-24 17:37:48 +0800343#endif
344
Paolo Bonzinif481b062015-05-17 17:30:37 +0200345#ifndef __KVM_VCPU_MULTIPLE_ADDRESS_SPACE
346static inline int kvm_arch_vcpu_memslots_id(struct kvm_vcpu *vcpu)
347{
348 return 0;
349}
350#endif
351
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800352/*
353 * Note:
354 * memslots are not sorted by id anymore, please use id_to_memslot()
355 * to get the memslot by its id.
356 */
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200357struct kvm_memslots {
Gleb Natapov49c77542010-10-18 15:22:23 +0200358 u64 generation;
Xiao Guangrong93a5cef2011-11-24 17:37:48 +0800359 struct kvm_memory_slot memslots[KVM_MEM_SLOTS_NUM];
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800360 /* The mapping table from slot id to the index in memslots[]. */
Alex Williamson1e702d92012-12-10 10:33:32 -0700361 short id_to_index[KVM_MEM_SLOTS_NUM];
Igor Mammedovd4ae84a02014-12-01 17:29:25 +0000362 atomic_t lru_slot;
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000363 int used_slots;
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200364};
365
Avi Kivity6aa8b732006-12-10 02:21:36 -0800366struct kvm {
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -0500367 spinlock_t mmu_lock;
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200368 struct mutex slots_lock;
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200369 struct mm_struct *mm; /* userspace tied to this vm */
Paolo Bonzinif481b062015-05-17 17:30:37 +0200370 struct kvm_memslots *memslots[KVM_ADDRESS_SPACE_NUM];
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200371 struct srcu_struct srcu;
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100372 struct srcu_struct irq_srcu;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000373 struct kvm_vcpu *vcpus[KVM_MAX_VCPUS];
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +0200374
375 /*
376 * created_vcpus is protected by kvm->lock, and is incremented
377 * at the beginning of KVM_CREATE_VCPU. online_vcpus is only
378 * incremented after storing the kvm_vcpu pointer in vcpus,
379 * and is accessed atomically.
380 */
Gleb Natapov73880c82009-06-09 15:56:28 +0300381 atomic_t online_vcpus;
Paolo Bonzini6c7caeb2016-06-13 14:48:25 +0200382 int created_vcpus;
Rik van Riel217ece62011-02-01 09:53:28 -0500383 int last_boosted_vcpu;
Avi Kivity133de902007-02-12 00:54:44 -0800384 struct list_head vm_list;
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300385 struct mutex lock;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200386 struct kvm_io_bus *buses[KVM_NR_BUSES];
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400387#ifdef CONFIG_HAVE_KVM_EVENTFD
388 struct {
389 spinlock_t lock;
390 struct list_head items;
Alex Williamson7a844282012-09-21 11:58:03 -0600391 struct list_head resampler_list;
392 struct mutex resampler_lock;
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400393 } irqfds;
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400394 struct list_head ioeventfds;
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400395#endif
Avi Kivityba1389b2007-11-18 16:24:12 +0200396 struct kvm_vm_stat stat;
Zhang Xiantaod69fb812007-12-14 09:54:20 +0800397 struct kvm_arch arch;
Izik Eidusd39f13b2008-03-30 16:01:25 +0300398 atomic_t users_count;
Laurent Vivier5f94c172008-05-30 16:05:54 +0200399#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
Laurent Vivier5f94c172008-05-30 16:05:54 +0200400 struct kvm_coalesced_mmio_ring *coalesced_mmio_ring;
Sasha Levin2b3c246a2011-07-20 20:59:00 +0300401 spinlock_t ring_lock;
402 struct list_head coalesced_zones;
Laurent Vivier5f94c172008-05-30 16:05:54 +0200403#endif
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200404
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300405 struct mutex irq_lock;
Avi Kivity75858a82009-01-04 17:10:50 +0200406#ifdef CONFIG_HAVE_KVM_IRQCHIP
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200407 /*
Paul Mackerras9957c862014-06-30 20:51:11 +1000408 * Update side is protected by irq_lock.
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200409 */
Arnd Bergmann4b6a2872010-03-04 15:59:23 +0100410 struct kvm_irq_routing_table __rcu *irq_routing;
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200411#endif
412#ifdef CONFIG_HAVE_KVM_IRQFD
Gleb Natapov136bdfe2009-08-24 11:54:23 +0300413 struct hlist_head irq_ack_notifier_list;
Avi Kivity75858a82009-01-04 17:10:50 +0200414#endif
415
Marc Zyngier36c1ed82012-06-15 15:07:24 -0400416#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200417 struct mmu_notifier mmu_notifier;
418 unsigned long mmu_notifier_seq;
419 long mmu_notifier_count;
420#endif
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800421 long tlbs_dirty;
Scott Wood07f0a7b2013-04-25 14:11:23 +0000422 struct list_head devices;
Janosch Frank536a6f82016-05-18 13:26:23 +0200423 struct dentry *debugfs_dentry;
424 struct kvm_stat_data **debugfs_stat_data;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800425};
426
Christoffer Dalla737f252012-06-03 21:17:48 +0300427#define kvm_err(fmt, ...) \
428 pr_err("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
429#define kvm_info(fmt, ...) \
430 pr_info("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
431#define kvm_debug(fmt, ...) \
432 pr_debug("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
433#define kvm_pr_unimpl(fmt, ...) \
434 pr_err_ratelimited("kvm [%i]: " fmt, \
435 task_tgid_nr(current), ## __VA_ARGS__)
Rusty Russellf0242472007-08-01 10:48:02 +1000436
Christoffer Dalla737f252012-06-03 21:17:48 +0300437/* The guest did something we don't support. */
438#define vcpu_unimpl(vcpu, fmt, ...) \
Borislav Petkov671d9ab2015-11-20 19:52:12 +0100439 kvm_pr_unimpl("vcpu%i, guest rIP: 0x%lx " fmt, \
440 (vcpu)->vcpu_id, kvm_rip_read(vcpu), ## __VA_ARGS__)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800441
Andrey Smetaninee86dbc2015-07-03 15:01:35 +0300442#define vcpu_debug(vcpu, fmt, ...) \
443 kvm_debug("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
Andrey Smetanin765eaa02015-11-30 19:22:20 +0300444#define vcpu_err(vcpu, fmt, ...) \
445 kvm_err("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
Andrey Smetaninee86dbc2015-07-03 15:01:35 +0300446
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300447static inline struct kvm_vcpu *kvm_get_vcpu(struct kvm *kvm, int i)
448{
Paolo Bonzinidd489242015-07-29 11:32:20 +0200449 /* Pairs with smp_wmb() in kvm_vm_ioctl_create_vcpu, in case
450 * the caller has read kvm->online_vcpus before (as is the case
451 * for kvm_for_each_vcpu, for example).
452 */
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300453 smp_rmb();
454 return kvm->vcpus[i];
455}
456
457#define kvm_for_each_vcpu(idx, vcpup, kvm) \
Jeff Mahoneyb42fc3c2011-04-12 21:30:17 -0400458 for (idx = 0; \
459 idx < atomic_read(&kvm->online_vcpus) && \
460 (vcpup = kvm_get_vcpu(kvm, idx)) != NULL; \
461 idx++)
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300462
David Hildenbranddb27a7a2015-11-05 09:03:50 +0100463static inline struct kvm_vcpu *kvm_get_vcpu_by_id(struct kvm *kvm, int id)
464{
Greg Kurz9b9e3fc2016-05-09 18:11:54 +0200465 struct kvm_vcpu *vcpu = NULL;
David Hildenbranddb27a7a2015-11-05 09:03:50 +0100466 int i;
467
Greg Kurz9b9e3fc2016-05-09 18:11:54 +0200468 if (id < 0)
David Hildenbrandc8969392015-11-05 09:55:08 +0100469 return NULL;
Greg Kurz9b9e3fc2016-05-09 18:11:54 +0200470 if (id < KVM_MAX_VCPUS)
471 vcpu = kvm_get_vcpu(kvm, id);
David Hildenbrandc8969392015-11-05 09:55:08 +0100472 if (vcpu && vcpu->vcpu_id == id)
473 return vcpu;
David Hildenbranddb27a7a2015-11-05 09:03:50 +0100474 kvm_for_each_vcpu(i, vcpu, kvm)
475 if (vcpu->vcpu_id == id)
476 return vcpu;
477 return NULL;
478}
479
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800480#define kvm_for_each_memslot(memslot, slots) \
481 for (memslot = &slots->memslots[0]; \
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800482 memslot < slots->memslots + KVM_MEM_SLOTS_NUM && memslot->npages;\
483 memslot++)
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800484
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000485int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id);
486void kvm_vcpu_uninit(struct kvm_vcpu *vcpu);
487
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300488int __must_check vcpu_load(struct kvm_vcpu *vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200489void vcpu_put(struct kvm_vcpu *vcpu);
490
Paolo Bonzini6ef768f2014-11-20 13:45:31 +0100491#ifdef __KVM_HAVE_IOAPIC
492void kvm_vcpu_request_scan_ioapic(struct kvm *kvm);
Andrey Smetaninabdb0802015-11-10 15:36:31 +0300493void kvm_arch_post_irq_routing_update(struct kvm *kvm);
Paolo Bonzini6ef768f2014-11-20 13:45:31 +0100494#else
495static inline void kvm_vcpu_request_scan_ioapic(struct kvm *kvm)
496{
497}
Andrey Smetaninabdb0802015-11-10 15:36:31 +0300498static inline void kvm_arch_post_irq_routing_update(struct kvm *kvm)
Steve Rutherfordb053b2a2015-07-29 23:32:35 -0700499{
500}
Paolo Bonzini6ef768f2014-11-20 13:45:31 +0100501#endif
502
Paul Mackerras297e2102014-06-30 20:51:13 +1000503#ifdef CONFIG_HAVE_KVM_IRQFD
Cornelia Hucka0f155e2013-02-28 12:33:18 +0100504int kvm_irqfd_init(void);
505void kvm_irqfd_exit(void);
506#else
507static inline int kvm_irqfd_init(void)
508{
509 return 0;
510}
511
512static inline void kvm_irqfd_exit(void)
513{
514}
515#endif
Avi Kivity0ee75be2010-04-28 15:39:01 +0300516int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +1000517 struct module *module);
Zhang Xiantaocb498ea2007-11-14 20:39:31 +0800518void kvm_exit(void);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800519
Izik Eidusd39f13b2008-03-30 16:01:25 +0300520void kvm_get_kvm(struct kvm *kvm);
521void kvm_put_kvm(struct kvm *kvm);
522
Paolo Bonzinif481b062015-05-17 17:30:37 +0200523static inline struct kvm_memslots *__kvm_memslots(struct kvm *kvm, int as_id)
Lai Jiangshan90d83dc2010-04-19 17:41:23 +0800524{
Paolo Bonzinif481b062015-05-17 17:30:37 +0200525 return rcu_dereference_check(kvm->memslots[as_id],
Lai Jiangshan90d83dc2010-04-19 17:41:23 +0800526 srcu_read_lock_held(&kvm->srcu)
527 || lockdep_is_held(&kvm->slots_lock));
528}
529
Paolo Bonzinif481b062015-05-17 17:30:37 +0200530static inline struct kvm_memslots *kvm_memslots(struct kvm *kvm)
531{
532 return __kvm_memslots(kvm, 0);
533}
534
Paolo Bonzini8e734852015-05-17 13:58:53 +0200535static inline struct kvm_memslots *kvm_vcpu_memslots(struct kvm_vcpu *vcpu)
536{
Paolo Bonzinif481b062015-05-17 17:30:37 +0200537 int as_id = kvm_arch_vcpu_memslots_id(vcpu);
538
539 return __kvm_memslots(vcpu->kvm, as_id);
Paolo Bonzini8e734852015-05-17 13:58:53 +0200540}
541
Xiao Guangrong28a37542011-11-24 19:04:35 +0800542static inline struct kvm_memory_slot *
543id_to_memslot(struct kvm_memslots *slots, int id)
544{
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800545 int index = slots->id_to_index[id];
546 struct kvm_memory_slot *slot;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800547
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800548 slot = &slots->memslots[index];
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800549
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800550 WARN_ON(slot->id != id);
551 return slot;
Xiao Guangrong28a37542011-11-24 19:04:35 +0800552}
553
Takuya Yoshikawa74d07272013-02-27 19:43:44 +0900554/*
555 * KVM_SET_USER_MEMORY_REGION ioctl allows the following operations:
556 * - create a new memory slot
557 * - delete an existing memory slot
558 * - modify an existing memory slot
559 * -- move it in the guest physical memory space
560 * -- just change its flags
561 *
562 * Since flags can be changed by some of these operations, the following
563 * differentiation is the best we can do for __kvm_set_memory_region():
564 */
565enum kvm_mr_change {
566 KVM_MR_CREATE,
567 KVM_MR_DELETE,
568 KVM_MR_MOVE,
569 KVM_MR_FLAGS_ONLY,
570};
571
Izik Eidus210c7c42007-10-24 23:52:57 +0200572int kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200573 const struct kvm_userspace_memory_region *mem);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800574int __kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200575 const struct kvm_userspace_memory_region *mem);
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530576void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900577 struct kvm_memory_slot *dont);
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530578int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
579 unsigned long npages);
Paolo Bonzini15f46012015-05-17 21:26:08 +0200580void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200581int kvm_arch_prepare_memory_region(struct kvm *kvm,
582 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200583 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +0900584 enum kvm_mr_change change);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200585void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200586 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900587 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +0200588 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900589 enum kvm_mr_change change);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900590bool kvm_largepages_enabled(void);
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300591void kvm_disable_largepages(void);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300592/* flush all memory translations */
593void kvm_arch_flush_shadow_all(struct kvm *kvm);
594/* flush memory translations pointing to 'slot' */
595void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
596 struct kvm_memory_slot *slot);
Marcelo Tosattia983fb22009-12-23 14:35:23 -0200597
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +0200598int gfn_to_page_many_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
599 struct page **pages, int nr_pages);
Xiao Guangrong48987782010-08-22 19:11:43 +0800600
Avi Kivity954bbbc2007-03-30 14:02:32 +0300601struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300602unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn);
Paolo Bonziniba6a3542013-09-09 13:52:33 +0200603unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable);
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800604unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
Christoffer Dall64d83122014-08-19 12:15:00 +0200605unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot, gfn_t gfn,
606 bool *writable);
Izik Eidusb4231d62007-11-20 11:49:33 +0200607void kvm_release_page_clean(struct page *page);
608void kvm_release_page_dirty(struct page *page);
Anthony Liguori35149e22008-04-02 14:46:56 -0500609void kvm_set_page_accessed(struct page *page);
610
Dan Williamsba049e92016-01-15 16:56:11 -0800611kvm_pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn);
612kvm_pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn);
613kvm_pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
Marcelo Tosatti612819c2010-10-22 14:18:18 -0200614 bool *writable);
Dan Williamsba049e92016-01-15 16:56:11 -0800615kvm_pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
616kvm_pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn);
617kvm_pfn_t __gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn,
618 bool atomic, bool *async, bool write_fault,
619 bool *writable);
Xiao Guangrong037d92d2012-08-21 10:59:12 +0800620
Dan Williamsba049e92016-01-15 16:56:11 -0800621void kvm_release_pfn_clean(kvm_pfn_t pfn);
622void kvm_set_pfn_dirty(kvm_pfn_t pfn);
623void kvm_set_pfn_accessed(kvm_pfn_t pfn);
624void kvm_get_pfn(kvm_pfn_t pfn);
Anthony Liguori35149e22008-04-02 14:46:56 -0500625
Izik Eidus195aefd2007-10-01 22:14:18 +0200626int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
627 int len);
Marcelo Tosatti7ec54582007-12-20 19:18:23 -0500628int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
629 unsigned long len);
Izik Eidus195aefd2007-10-01 22:14:18 +0200630int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len);
Gleb Natapove03b6442011-07-11 15:28:11 -0400631int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
632 void *data, unsigned long len);
Izik Eidus195aefd2007-10-01 22:14:18 +0200633int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
634 int offset, int len);
635int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
636 unsigned long len);
Gleb Natapov49c77542010-10-18 15:22:23 +0200637int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
638 void *data, unsigned long len);
639int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
Andrew Honig8f964522013-03-29 09:35:21 -0700640 gpa_t gpa, unsigned long len);
Izik Eidus195aefd2007-10-01 22:14:18 +0200641int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len);
642int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800643struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
Yaowei Bai33e94152015-11-14 11:21:06 +0800644bool kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn);
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +0100645unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800646void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
647
Paolo Bonzini8e734852015-05-17 13:58:53 +0200648struct kvm_memslots *kvm_vcpu_memslots(struct kvm_vcpu *vcpu);
649struct kvm_memory_slot *kvm_vcpu_gfn_to_memslot(struct kvm_vcpu *vcpu, gfn_t gfn);
Dan Williamsba049e92016-01-15 16:56:11 -0800650kvm_pfn_t kvm_vcpu_gfn_to_pfn_atomic(struct kvm_vcpu *vcpu, gfn_t gfn);
651kvm_pfn_t kvm_vcpu_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn);
Paolo Bonzini8e734852015-05-17 13:58:53 +0200652struct page *kvm_vcpu_gfn_to_page(struct kvm_vcpu *vcpu, gfn_t gfn);
653unsigned long kvm_vcpu_gfn_to_hva(struct kvm_vcpu *vcpu, gfn_t gfn);
654unsigned long kvm_vcpu_gfn_to_hva_prot(struct kvm_vcpu *vcpu, gfn_t gfn, bool *writable);
655int kvm_vcpu_read_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, void *data, int offset,
656 int len);
657int kvm_vcpu_read_guest_atomic(struct kvm_vcpu *vcpu, gpa_t gpa, void *data,
658 unsigned long len);
659int kvm_vcpu_read_guest(struct kvm_vcpu *vcpu, gpa_t gpa, void *data,
660 unsigned long len);
661int kvm_vcpu_write_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, const void *data,
662 int offset, int len);
663int kvm_vcpu_write_guest(struct kvm_vcpu *vcpu, gpa_t gpa, const void *data,
664 unsigned long len);
665void kvm_vcpu_mark_page_dirty(struct kvm_vcpu *vcpu, gfn_t gfn);
666
Hollis Blanchard8776e512007-10-31 17:24:24 -0500667void kvm_vcpu_block(struct kvm_vcpu *vcpu);
Christoffer Dall3217f7c2015-08-27 16:41:15 +0200668void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu);
669void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu);
Radim Krčmářdd1a4cc2016-05-04 14:09:44 -0500670void kvm_vcpu_wake_up(struct kvm_vcpu *vcpu);
Christoffer Dallb6d33832012-03-08 16:44:24 -0500671void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
Dan Carpenterfa933842014-05-23 13:20:42 +0300672int kvm_vcpu_yield_to(struct kvm_vcpu *target);
Zhai, Edwind255f4f2009-10-09 18:03:20 +0800673void kvm_vcpu_on_spin(struct kvm_vcpu *vcpu);
Avi Kivity7702fd12007-06-14 16:27:40 +0300674void kvm_load_guest_fpu(struct kvm_vcpu *vcpu);
675void kvm_put_guest_fpu(struct kvm_vcpu *vcpu);
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800676
Avi Kivityd9e368d2007-06-07 19:18:30 +0300677void kvm_flush_remote_tlbs(struct kvm *kvm);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500678void kvm_reload_remote_mmus(struct kvm *kvm);
Tang Chen445b8232014-09-24 15:57:55 +0800679bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800680
Carsten Otte043405e2007-10-10 17:16:19 +0200681long kvm_arch_dev_ioctl(struct file *filp,
682 unsigned int ioctl, unsigned long arg);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200683long kvm_arch_vcpu_ioctl(struct file *filp,
684 unsigned int ioctl, unsigned long arg);
Carsten Otte5b1c1492012-01-04 10:25:23 +0100685int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf);
Zhang Xiantao018d00d2007-11-15 23:07:47 +0800686
Alexander Graf784aa3d2014-07-14 18:27:35 +0200687int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext);
Zhang Xiantao018d00d2007-11-15 23:07:47 +0800688
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800689int kvm_get_dirty_log(struct kvm *kvm,
690 struct kvm_dirty_log *log, int *is_dirty);
Mario Smarduchba0513b2015-01-15 15:58:53 -0800691
692int kvm_get_dirty_log_protect(struct kvm *kvm,
693 struct kvm_dirty_log *log, bool *is_dirty);
694
Kai Huang3b0f1d02015-01-28 10:54:23 +0800695void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm,
Mario Smarduchba0513b2015-01-15 15:58:53 -0800696 struct kvm_memory_slot *slot,
697 gfn_t gfn_offset,
698 unsigned long mask);
699
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800700int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
701 struct kvm_dirty_log *log);
702
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800703int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level,
704 bool line_status);
Carsten Otte1fe779f2007-10-29 16:08:35 +0100705long kvm_arch_vm_ioctl(struct file *filp,
706 unsigned int ioctl, unsigned long arg);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200707
Hollis Blanchardd0752062007-10-31 17:24:25 -0500708int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
709int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
710
Zhang Xiantao8b006792007-11-16 13:05:55 +0800711int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
712 struct kvm_translation *tr);
713
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -0500714int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
715int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
716int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
717 struct kvm_sregs *sregs);
718int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
719 struct kvm_sregs *sregs);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -0300720int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
721 struct kvm_mp_state *mp_state);
722int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
723 struct kvm_mp_state *mp_state);
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100724int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
725 struct kvm_guest_debug *dbg);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -0500726int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run);
727
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +0800728int kvm_arch_init(void *opaque);
729void kvm_arch_exit(void);
Carsten Otte043405e2007-10-10 17:16:19 +0200730
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800731int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu);
732void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu);
733
Radim Krčmáře790d9e2014-08-21 18:08:05 +0200734void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu);
735
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800736void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu);
737void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
738void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
739struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id);
Avi Kivity26e52152007-11-20 15:30:24 +0200740int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu);
Dominik Dingel31928aa2014-12-04 15:47:07 +0100741void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu);
Hollis Blanchardd40ccc62007-11-19 14:04:43 -0600742void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800743
Radim Krčmář13a34e02014-08-28 15:13:03 +0200744int kvm_arch_hardware_enable(void);
745void kvm_arch_hardware_disable(void);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800746int kvm_arch_hardware_setup(void);
747void kvm_arch_hardware_unsetup(void);
748void kvm_arch_check_processor_compat(void *rtn);
Zhang Xiantao1d737c82007-12-14 09:35:10 +0800749int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu);
Christoffer Dallb6d33832012-03-08 16:44:24 -0500750int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800751
Takuya Yoshikawac1a7b322012-05-20 13:15:07 +0900752void *kvm_kvzalloc(unsigned long size);
Takuya Yoshikawac1a7b322012-05-20 13:15:07 +0900753
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100754#ifndef __KVM_HAVE_ARCH_VM_ALLOC
755static inline struct kvm *kvm_arch_alloc_vm(void)
756{
757 return kzalloc(sizeof(struct kvm), GFP_KERNEL);
758}
759
760static inline void kvm_arch_free_vm(struct kvm *kvm)
761{
762 kfree(kvm);
763}
764#endif
765
Alex Williamsone0f0bbc2013-10-30 11:02:30 -0600766#ifdef __KVM_HAVE_ARCH_NONCOHERENT_DMA
767void kvm_arch_register_noncoherent_dma(struct kvm *kvm);
768void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm);
769bool kvm_arch_has_noncoherent_dma(struct kvm *kvm);
770#else
771static inline void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
772{
773}
774
775static inline void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
776{
777}
778
779static inline bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
780{
781 return false;
782}
783#endif
Paolo Bonzini5544eb92015-07-07 15:41:58 +0200784#ifdef __KVM_HAVE_ARCH_ASSIGNED_DEVICE
785void kvm_arch_start_assignment(struct kvm *kvm);
786void kvm_arch_end_assignment(struct kvm *kvm);
787bool kvm_arch_has_assigned_device(struct kvm *kvm);
788#else
789static inline void kvm_arch_start_assignment(struct kvm *kvm)
790{
791}
792
793static inline void kvm_arch_end_assignment(struct kvm *kvm)
794{
795}
796
797static inline bool kvm_arch_has_assigned_device(struct kvm *kvm)
798{
799 return false;
800}
801#endif
Alex Williamsone0f0bbc2013-10-30 11:02:30 -0600802
Marcelo Tosatti85773702016-02-19 09:46:39 +0100803static inline struct swait_queue_head *kvm_arch_vcpu_wq(struct kvm_vcpu *vcpu)
Christoffer Dallb6d33832012-03-08 16:44:24 -0500804{
Alexander Graf2246f8b2012-03-13 22:35:01 +0100805#ifdef __KVM_HAVE_ARCH_WQP
806 return vcpu->arch.wqp;
807#else
Christoffer Dallb6d33832012-03-08 16:44:24 -0500808 return &vcpu->wq;
Christoffer Dallb6d33832012-03-08 16:44:24 -0500809#endif
Alexander Graf2246f8b2012-03-13 22:35:01 +0100810}
Christoffer Dallb6d33832012-03-08 16:44:24 -0500811
Eric Auger01c94e62015-03-04 11:14:33 +0100812#ifdef __KVM_HAVE_ARCH_INTC_INITIALIZED
813/*
814 * returns true if the virtual interrupt controller is initialized and
815 * ready to accept virtual IRQ. On some architectures the virtual interrupt
816 * controller is dynamically instantiated and this is not always true.
817 */
818bool kvm_arch_intc_initialized(struct kvm *kvm);
819#else
820static inline bool kvm_arch_intc_initialized(struct kvm *kvm)
821{
822 return true;
823}
824#endif
825
Carsten Ottee08b9632012-01-04 10:25:20 +0100826int kvm_arch_init_vm(struct kvm *kvm, unsigned long type);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800827void kvm_arch_destroy_vm(struct kvm *kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800828void kvm_arch_sync_events(struct kvm *kvm);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800829
Marcelo Tosatti3d808402008-04-11 14:53:26 -0300830int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu);
Zhang Xiantao57361992007-12-17 14:21:40 +0800831void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
Zhang Xiantao682c59a2007-12-11 20:36:00 +0800832
Dan Williamsba049e92016-01-15 16:56:11 -0800833bool kvm_is_reserved_pfn(kvm_pfn_t pfn);
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +0800834
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300835struct kvm_irq_ack_notifier {
836 struct hlist_node link;
837 unsigned gsi;
838 void (*irq_acked)(struct kvm_irq_ack_notifier *kian);
839};
840
Paul Mackerras9957c862014-06-30 20:51:11 +1000841int kvm_irq_map_gsi(struct kvm *kvm,
842 struct kvm_kernel_irq_routing_entry *entries, int gsi);
843int kvm_irq_map_chip_pin(struct kvm *kvm, unsigned irqchip, unsigned pin);
Paul Mackerras8ba918d2014-06-30 20:51:10 +1000844
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800845int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level,
846 bool line_status);
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200847int kvm_set_msi(struct kvm_kernel_irq_routing_entry *irq_entry, struct kvm *kvm,
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800848 int irq_source_id, int level, bool line_status);
Paolo Bonzinib97e6de2015-10-28 19:16:47 +0100849int kvm_arch_set_irq_inatomic(struct kvm_kernel_irq_routing_entry *e,
850 struct kvm *kvm, int irq_source_id,
851 int level, bool line_status);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800852bool kvm_irq_has_notifier(struct kvm *kvm, unsigned irqchip, unsigned pin);
Andrey Smetaninba1aefc2015-10-16 10:07:46 +0300853void kvm_notify_acked_gsi(struct kvm *kvm, int gsi);
Marcelo Tosatti44882ee2009-01-27 15:12:38 -0200854void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin);
Xiantao Zhang3de42dc2008-10-06 13:48:45 +0800855void kvm_register_irq_ack_notifier(struct kvm *kvm,
856 struct kvm_irq_ack_notifier *kian);
Marcelo Tosattifa40a822009-06-04 15:08:24 -0300857void kvm_unregister_irq_ack_notifier(struct kvm *kvm,
858 struct kvm_irq_ack_notifier *kian);
Sheng Yang5550af42008-10-15 20:15:06 +0800859int kvm_request_irq_source_id(struct kvm *kvm);
860void kvm_free_irq_source_id(struct kvm *kvm, int irq_source_id);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300861
Alex Williamson2a5bab12013-04-16 13:49:18 -0600862#ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
Marcelo Tosatti3ad26d82009-12-23 14:35:20 -0200863int kvm_iommu_map_pages(struct kvm *kvm, struct kvm_memory_slot *slot);
Alex Williamson32f6daa2012-04-11 09:51:49 -0600864void kvm_iommu_unmap_pages(struct kvm *kvm, struct kvm_memory_slot *slot);
Alex Williamson2a5bab12013-04-16 13:49:18 -0600865#else
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300866static inline int kvm_iommu_map_pages(struct kvm *kvm,
Jan Kiszkad7a79b62010-10-14 13:59:04 +0200867 struct kvm_memory_slot *slot)
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300868{
869 return 0;
870}
871
Alex Williamson32f6daa2012-04-11 09:51:49 -0600872static inline void kvm_iommu_unmap_pages(struct kvm *kvm,
873 struct kvm_memory_slot *slot)
874{
875}
Alex Williamson2a5bab12013-04-16 13:49:18 -0600876#endif
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300877
Paul Mackerras9d4cba72012-01-12 20:09:51 +0000878/*
879 * search_memslots() and __gfn_to_memslot() are here because they are
880 * used in non-modular code in arch/powerpc/kvm/book3s_hv_rm_mmu.c.
881 * gfn_to_memslot() itself isn't here as an inline because that would
882 * bloat other code too much.
883 */
884static inline struct kvm_memory_slot *
885search_memslots(struct kvm_memslots *slots, gfn_t gfn)
886{
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000887 int start = 0, end = slots->used_slots;
Igor Mammedovd4ae84a02014-12-01 17:29:25 +0000888 int slot = atomic_read(&slots->lru_slot);
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000889 struct kvm_memory_slot *memslots = slots->memslots;
Igor Mammedovd4ae84a02014-12-01 17:29:25 +0000890
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000891 if (gfn >= memslots[slot].base_gfn &&
892 gfn < memslots[slot].base_gfn + memslots[slot].npages)
893 return &memslots[slot];
Paul Mackerras9d4cba72012-01-12 20:09:51 +0000894
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000895 while (start < end) {
896 slot = start + (end - start) / 2;
897
898 if (gfn >= memslots[slot].base_gfn)
899 end = slot;
900 else
901 start = slot + 1;
902 }
903
904 if (gfn >= memslots[start].base_gfn &&
905 gfn < memslots[start].base_gfn + memslots[start].npages) {
906 atomic_set(&slots->lru_slot, start);
907 return &memslots[start];
908 }
Paul Mackerras9d4cba72012-01-12 20:09:51 +0000909
910 return NULL;
911}
912
913static inline struct kvm_memory_slot *
914__gfn_to_memslot(struct kvm_memslots *slots, gfn_t gfn)
915{
916 return search_memslots(slots, gfn);
917}
918
Gavin Shan66a03502012-08-24 16:50:28 +0800919static inline unsigned long
920__gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
921{
922 return slot->userspace_addr + (gfn - slot->base_gfn) * PAGE_SIZE;
923}
924
Xiao Guangrong0ee8dcb2011-03-09 15:41:59 +0800925static inline int memslot_id(struct kvm *kvm, gfn_t gfn)
926{
927 return gfn_to_memslot(kvm, gfn)->id;
928}
929
Takuya Yoshikawad19a7482012-07-02 17:54:30 +0900930static inline gfn_t
931hva_to_gfn_memslot(unsigned long hva, struct kvm_memory_slot *slot)
Xiao Guangrong887c08a2010-08-22 19:10:28 +0800932{
Takuya Yoshikawad19a7482012-07-02 17:54:30 +0900933 gfn_t gfn_offset = (hva - slot->userspace_addr) >> PAGE_SHIFT;
934
935 return slot->base_gfn + gfn_offset;
Xiao Guangrong887c08a2010-08-22 19:10:28 +0800936}
937
Avi Kivity1755fbc2007-11-21 14:44:45 +0200938static inline gpa_t gfn_to_gpa(gfn_t gfn)
939{
940 return (gpa_t)gfn << PAGE_SHIFT;
941}
Avi Kivity6aa8b732006-12-10 02:21:36 -0800942
Joerg Roedelc30a3582010-09-10 17:30:48 +0200943static inline gfn_t gpa_to_gfn(gpa_t gpa)
944{
945 return (gfn_t)(gpa >> PAGE_SHIFT);
946}
947
Dan Williamsba049e92016-01-15 16:56:11 -0800948static inline hpa_t pfn_to_hpa(kvm_pfn_t pfn)
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300949{
950 return (hpa_t)pfn << PAGE_SHIFT;
951}
952
Heiko Carstensdfeec842014-01-01 16:09:21 +0100953static inline bool kvm_is_error_gpa(struct kvm *kvm, gpa_t gpa)
954{
955 unsigned long hva = gfn_to_hva(kvm, gpa_to_gfn(gpa));
956
957 return kvm_is_error_hva(hva);
958}
959
Avi Kivityba1389b2007-11-18 16:24:12 +0200960enum kvm_stat_kind {
961 KVM_STAT_VM,
962 KVM_STAT_VCPU,
963};
964
Janosch Frank536a6f82016-05-18 13:26:23 +0200965struct kvm_stat_data {
966 int offset;
967 struct kvm *kvm;
968};
969
Hollis Blanchard417bc302007-10-31 17:24:23 -0500970struct kvm_stats_debugfs_item {
971 const char *name;
972 int offset;
Avi Kivityba1389b2007-11-18 16:24:12 +0200973 enum kvm_stat_kind kind;
Hollis Blanchard417bc302007-10-31 17:24:23 -0500974};
975extern struct kvm_stats_debugfs_item debugfs_entries[];
Hollis Blanchard76f7c872008-04-15 16:05:42 -0500976extern struct dentry *kvm_debugfs_dir;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -0400977
Marc Zyngier36c1ed82012-06-15 15:07:24 -0400978#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
Christoffer Dall8ca40a72012-10-14 23:10:18 -0400979static inline int mmu_notifier_retry(struct kvm *kvm, unsigned long mmu_seq)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200980{
Christoffer Dall8ca40a72012-10-14 23:10:18 -0400981 if (unlikely(kvm->mmu_notifier_count))
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200982 return 1;
983 /*
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000984 * Ensure the read of mmu_notifier_count happens before the read
985 * of mmu_notifier_seq. This interacts with the smp_wmb() in
986 * mmu_notifier_invalidate_range_end to make sure that the caller
987 * either sees the old (non-zero) value of mmu_notifier_count or
988 * the new (incremented) value of mmu_notifier_seq.
989 * PowerPC Book3s HV KVM calls this under a per-page lock
990 * rather than under kvm->mmu_lock, for scalability, so
991 * can't rely on kvm->mmu_lock to keep things ordered.
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200992 */
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000993 smp_rmb();
Christoffer Dall8ca40a72012-10-14 23:10:18 -0400994 if (kvm->mmu_notifier_seq != mmu_seq)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200995 return 1;
996 return 0;
997}
998#endif
999
Alexander Grafa725d562013-04-17 13:29:30 +02001000#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
Avi Kivity399ec802008-11-19 13:58:46 +02001001
Cornelia Huckf3f710b2014-02-25 12:48:01 +01001002#ifdef CONFIG_S390
1003#define KVM_MAX_IRQ_ROUTES 4096 //FIXME: we can have more than that...
1004#else
Avi Kivity399ec802008-11-19 13:58:46 +02001005#define KVM_MAX_IRQ_ROUTES 1024
Cornelia Huckf3f710b2014-02-25 12:48:01 +01001006#endif
Avi Kivity399ec802008-11-19 13:58:46 +02001007
1008int kvm_setup_default_irq_routing(struct kvm *kvm);
Steve Rutherford49df63972015-07-29 23:21:40 -07001009int kvm_setup_empty_irq_routing(struct kvm *kvm);
Avi Kivity399ec802008-11-19 13:58:46 +02001010int kvm_set_irq_routing(struct kvm *kvm,
1011 const struct kvm_irq_routing_entry *entries,
1012 unsigned nr,
1013 unsigned flags);
Radim Krčmářc63cf532016-07-12 22:09:26 +02001014int kvm_set_routing_entry(struct kvm *kvm,
1015 struct kvm_kernel_irq_routing_entry *e,
Alexander Grafe8cde092013-04-15 23:23:21 +02001016 const struct kvm_irq_routing_entry *ue);
Avi Kivity399ec802008-11-19 13:58:46 +02001017void kvm_free_irq_routing(struct kvm *kvm);
1018
1019#else
1020
1021static inline void kvm_free_irq_routing(struct kvm *kvm) {}
1022
1023#endif
1024
Paul Mackerras297e2102014-06-30 20:51:13 +10001025int kvm_send_userspace_msi(struct kvm *kvm, struct kvm_msi *msi);
1026
Gregory Haskins721eecbf2009-05-20 10:30:49 -04001027#ifdef CONFIG_HAVE_KVM_EVENTFD
1028
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04001029void kvm_eventfd_init(struct kvm *kvm);
Alexander Graf914daba2012-10-09 00:22:59 +02001030int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args);
1031
Paul Mackerras297e2102014-06-30 20:51:13 +10001032#ifdef CONFIG_HAVE_KVM_IRQFD
Alex Williamsond4db2932012-06-29 09:56:08 -06001033int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args);
Gregory Haskins721eecbf2009-05-20 10:30:49 -04001034void kvm_irqfd_release(struct kvm *kvm);
Paul Mackerras9957c862014-06-30 20:51:11 +10001035void kvm_irq_routing_update(struct kvm *);
Alexander Graf914daba2012-10-09 00:22:59 +02001036#else
1037static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
1038{
1039 return -EINVAL;
1040}
1041
1042static inline void kvm_irqfd_release(struct kvm *kvm) {}
1043#endif
Gregory Haskins721eecbf2009-05-20 10:30:49 -04001044
1045#else
1046
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04001047static inline void kvm_eventfd_init(struct kvm *kvm) {}
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +02001048
Alex Williamsond4db2932012-06-29 09:56:08 -06001049static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
Gregory Haskins721eecbf2009-05-20 10:30:49 -04001050{
1051 return -EINVAL;
1052}
1053
1054static inline void kvm_irqfd_release(struct kvm *kvm) {}
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +02001055
Alexander Graf27923eb2010-11-25 10:25:44 +01001056#ifdef CONFIG_HAVE_KVM_IRQCHIP
Paul Mackerras9957c862014-06-30 20:51:11 +10001057static inline void kvm_irq_routing_update(struct kvm *kvm)
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +02001058{
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +02001059}
Alexander Graf27923eb2010-11-25 10:25:44 +01001060#endif
Andrey Smetaninabdb0802015-11-10 15:36:31 +03001061void kvm_arch_irq_routing_update(struct kvm *kvm);
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +02001062
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04001063static inline int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args)
1064{
1065 return -ENOSYS;
1066}
Gregory Haskins721eecbf2009-05-20 10:30:49 -04001067
1068#endif /* CONFIG_HAVE_KVM_EVENTFD */
1069
Avi Kivitya8eeb042010-05-10 12:34:53 +03001070static inline void kvm_make_request(int req, struct kvm_vcpu *vcpu)
1071{
Paolo Bonzini2e4682b2016-03-10 16:30:22 +01001072 /*
1073 * Ensure the rest of the request is published to kvm_check_request's
1074 * caller. Paired with the smp_mb__after_atomic in kvm_check_request.
1075 */
1076 smp_wmb();
Avi Kivitya8eeb042010-05-10 12:34:53 +03001077 set_bit(req, &vcpu->requests);
1078}
1079
Avi Kivitya8eeb042010-05-10 12:34:53 +03001080static inline bool kvm_check_request(int req, struct kvm_vcpu *vcpu)
1081{
Avi Kivity07198372010-05-10 13:08:26 +03001082 if (test_bit(req, &vcpu->requests)) {
1083 clear_bit(req, &vcpu->requests);
Paolo Bonzini2e4682b2016-03-10 16:30:22 +01001084
1085 /*
1086 * Ensure the rest of the request is visible to kvm_check_request's
1087 * caller. Paired with the smp_wmb in kvm_make_request.
1088 */
1089 smp_mb__after_atomic();
Avi Kivity07198372010-05-10 13:08:26 +03001090 return true;
1091 } else {
1092 return false;
1093 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03001094}
1095
Geoff Levand8b415dc2013-04-05 19:20:30 +00001096extern bool kvm_rebooting;
1097
Scott Wood852b6d52013-04-12 14:08:42 +00001098struct kvm_device {
1099 struct kvm_device_ops *ops;
1100 struct kvm *kvm;
Scott Wood852b6d52013-04-12 14:08:42 +00001101 void *private;
Scott Wood07f0a7b2013-04-25 14:11:23 +00001102 struct list_head vm_node;
Scott Wood852b6d52013-04-12 14:08:42 +00001103};
1104
1105/* create, destroy, and name are mandatory */
1106struct kvm_device_ops {
1107 const char *name;
1108 int (*create)(struct kvm_device *dev, u32 type);
1109
1110 /*
1111 * Destroy is responsible for freeing dev.
1112 *
1113 * Destroy may be called before or after destructors are called
1114 * on emulated I/O regions, depending on whether a reference is
1115 * held by a vcpu or other kvm component that gets destroyed
1116 * after the emulated I/O.
1117 */
1118 void (*destroy)(struct kvm_device *dev);
1119
1120 int (*set_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1121 int (*get_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1122 int (*has_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1123 long (*ioctl)(struct kvm_device *dev, unsigned int ioctl,
1124 unsigned long arg);
1125};
1126
1127void kvm_device_get(struct kvm_device *dev);
1128void kvm_device_put(struct kvm_device *dev);
1129struct kvm_device *kvm_device_from_filp(struct file *filp);
Will Deacond60eacb2014-09-02 10:27:33 +01001130int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type);
Wanpeng Li571ee1b2014-10-09 18:30:08 +08001131void kvm_unregister_device_ops(u32 type);
Scott Wood852b6d52013-04-12 14:08:42 +00001132
Scott Wood5df554ad2013-04-12 14:08:46 +00001133extern struct kvm_device_ops kvm_mpic_ops;
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001134extern struct kvm_device_ops kvm_xics_ops;
Andre Przywaraea2f83a2014-10-26 23:17:00 +00001135extern struct kvm_device_ops kvm_arm_vgic_v2_ops;
Andre Przywaraa0675c22014-06-07 00:54:51 +02001136extern struct kvm_device_ops kvm_arm_vgic_v3_ops;
Scott Wood5df554ad2013-04-12 14:08:46 +00001137
Raghavendra K T4c088492012-07-18 19:07:46 +05301138#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
1139
1140static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
1141{
1142 vcpu->spin_loop.in_spin_loop = val;
1143}
1144static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
1145{
1146 vcpu->spin_loop.dy_eligible = val;
1147}
1148
1149#else /* !CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
1150
1151static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
1152{
1153}
1154
1155static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
1156{
1157}
Raghavendra K T4c088492012-07-18 19:07:46 +05301158#endif /* CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
Eric Auger1a02b272015-09-18 22:29:43 +08001159
1160#ifdef CONFIG_HAVE_KVM_IRQ_BYPASS
Alex Williamson14717e22016-05-05 11:58:35 -06001161bool kvm_arch_has_irq_bypass(void);
Eric Auger1a02b272015-09-18 22:29:43 +08001162int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *,
1163 struct irq_bypass_producer *);
1164void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *,
1165 struct irq_bypass_producer *);
1166void kvm_arch_irq_bypass_stop(struct irq_bypass_consumer *);
1167void kvm_arch_irq_bypass_start(struct irq_bypass_consumer *);
Feng Wuf70c20a2015-09-18 22:29:53 +08001168int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
1169 uint32_t guest_irq, bool set);
Eric Auger1a02b272015-09-18 22:29:43 +08001170#endif /* CONFIG_HAVE_KVM_IRQ_BYPASS */
Haozhong Zhang35181e82015-10-20 15:39:03 +08001171
Christian Borntraeger3491caf2016-05-13 12:16:35 +02001172#ifdef CONFIG_HAVE_KVM_INVALID_WAKEUPS
1173/* If we wakeup during the poll time, was it a sucessful poll? */
1174static inline bool vcpu_valid_wakeup(struct kvm_vcpu *vcpu)
1175{
1176 return vcpu->valid_wakeup;
1177}
1178
1179#else
1180static inline bool vcpu_valid_wakeup(struct kvm_vcpu *vcpu)
1181{
1182 return true;
1183}
1184#endif /* CONFIG_HAVE_KVM_INVALID_WAKEUPS */
1185
Avi Kivitybfd99ff2009-08-26 14:57:50 +03001186#endif