blob: e4d8f705fecd0ae2657a66d6524fd4463fb38f1f [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>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040027#include <asm/signal.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080028
Avi Kivity6aa8b732006-12-10 02:21:36 -080029#include <linux/kvm.h>
Ingo Molnar102d8322007-02-19 14:37:47 +020030#include <linux/kvm_para.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080031
Avi Kivityedf88412007-12-16 11:02:48 +020032#include <linux/kvm_types.h>
Hollis Blanchardd77a39d92007-12-03 15:30:23 -060033
Avi Kivityedf88412007-12-16 11:02:48 +020034#include <asm/kvm_host.h>
Zhang Xiantaod657a982007-12-14 09:41:22 +080035
Avi Kivitycef4dea2010-01-20 12:01:20 +020036#ifndef KVM_MMIO_SIZE
37#define KVM_MMIO_SIZE 8
38#endif
39
Avi Kivity6aa8b732006-12-10 02:21:36 -080040/*
Xiao Guangrong67b29202012-08-21 10:58:45 +080041 * The bit 16 ~ bit 31 of kvm_memory_region::flags are internally used
42 * in kvm, other bits are visible for userspace which are defined in
43 * include/linux/kvm_h.
44 */
45#define KVM_MEMSLOT_INVALID (1UL << 16)
Ard Biesheuvel1050dcd2014-11-17 14:58:51 +000046#define KVM_MEMSLOT_INCOHERENT (1UL << 17)
Xiao Guangrong67b29202012-08-21 10:58:45 +080047
Xiao Guangrong87da7e62012-10-24 14:07:59 +080048/* Two fragments for cross MMIO pages. */
49#define KVM_MAX_MMIO_FRAGMENTS 2
Avi Kivityf78146b2012-04-18 19:22:47 +030050
51/*
Xiao Guangrong9c5b1172012-08-03 15:43:51 +080052 * For the normal pfn, the highest 12 bits should be zero,
Xiao Guangrong81c52c52012-10-16 20:10:59 +080053 * so we can mask bit 62 ~ bit 52 to indicate the error pfn,
54 * mask bit 63 to indicate the noslot pfn.
Xiao Guangrong9c5b1172012-08-03 15:43:51 +080055 */
Xiao Guangrong81c52c52012-10-16 20:10:59 +080056#define KVM_PFN_ERR_MASK (0x7ffULL << 52)
57#define KVM_PFN_ERR_NOSLOT_MASK (0xfffULL << 52)
58#define KVM_PFN_NOSLOT (0x1ULL << 63)
Xiao Guangrong6c8ee572012-08-03 15:37:54 +080059
Xiao Guangrong9c5b1172012-08-03 15:43:51 +080060#define KVM_PFN_ERR_FAULT (KVM_PFN_ERR_MASK)
61#define KVM_PFN_ERR_HWPOISON (KVM_PFN_ERR_MASK + 1)
Xiao Guangrong81c52c52012-10-16 20:10:59 +080062#define KVM_PFN_ERR_RO_FAULT (KVM_PFN_ERR_MASK + 2)
Xiao Guangrong9c5b1172012-08-03 15:43:51 +080063
Xiao Guangrong81c52c52012-10-16 20:10:59 +080064/*
65 * error pfns indicate that the gfn is in slot but faild to
66 * translate it to pfn on host.
67 */
Xiao Guangrong9c5b1172012-08-03 15:43:51 +080068static inline bool is_error_pfn(pfn_t pfn)
Xiao Guangrong83f09222012-08-03 15:39:59 +080069{
Xiao Guangrong9c5b1172012-08-03 15:43:51 +080070 return !!(pfn & KVM_PFN_ERR_MASK);
Xiao Guangrong83f09222012-08-03 15:39:59 +080071}
72
Xiao Guangrong81c52c52012-10-16 20:10:59 +080073/*
74 * error_noslot pfns indicate that the gfn can not be
75 * translated to pfn - it is not in slot or failed to
76 * translate it to pfn.
77 */
78static inline bool is_error_noslot_pfn(pfn_t pfn)
Xiao Guangrong83f09222012-08-03 15:39:59 +080079{
Xiao Guangrong81c52c52012-10-16 20:10:59 +080080 return !!(pfn & KVM_PFN_ERR_NOSLOT_MASK);
Xiao Guangrong83f09222012-08-03 15:39:59 +080081}
82
Xiao Guangrong81c52c52012-10-16 20:10:59 +080083/* noslot pfn indicates that the gfn is not in slot. */
84static inline bool is_noslot_pfn(pfn_t pfn)
Xiao Guangrong83f09222012-08-03 15:39:59 +080085{
Xiao Guangrong81c52c52012-10-16 20:10:59 +080086 return pfn == KVM_PFN_NOSLOT;
Xiao Guangrong83f09222012-08-03 15:39:59 +080087}
88
Dominik Dingelbf640872013-07-26 15:04:07 +020089/*
90 * architectures with KVM_HVA_ERR_BAD other than PAGE_OFFSET (e.g. s390)
91 * provide own defines and kvm_is_error_hva
92 */
93#ifndef KVM_HVA_ERR_BAD
94
Xiao Guangrong7068d092012-08-21 11:02:22 +080095#define KVM_HVA_ERR_BAD (PAGE_OFFSET)
96#define KVM_HVA_ERR_RO_BAD (PAGE_OFFSET + PAGE_SIZE)
Xiao Guangrongca3a4902012-08-21 11:01:50 +080097
98static inline bool kvm_is_error_hva(unsigned long addr)
99{
Xiao Guangrong7068d092012-08-21 11:02:22 +0800100 return addr >= PAGE_OFFSET;
Xiao Guangrongca3a4902012-08-21 11:01:50 +0800101}
102
Dominik Dingelbf640872013-07-26 15:04:07 +0200103#endif
104
Xiao Guangrong6cede2e2012-08-03 15:41:22 +0800105#define KVM_ERR_PTR_BAD_PAGE (ERR_PTR(-ENOENT))
106
Xiao Guangrong9c5b1172012-08-03 15:43:51 +0800107static inline bool is_error_page(struct page *page)
Xiao Guangrong6cede2e2012-08-03 15:41:22 +0800108{
109 return IS_ERR(page);
110}
111
Avi Kivity6aa8b732006-12-10 02:21:36 -0800112/*
Avi Kivityd9e368d2007-06-07 19:18:30 +0300113 * vcpu->requests bit members
114 */
Avi Kivity3176bc32007-10-16 17:22:08 +0200115#define KVM_REQ_TLB_FLUSH 0
Avi Kivity2f52d582008-01-16 12:49:30 +0200116#define KVM_REQ_MIGRATE_TIMER 1
Avi Kivityb209749f2007-10-22 16:50:39 +0200117#define KVM_REQ_REPORT_TPR_ACCESS 2
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500118#define KVM_REQ_MMU_RELOAD 3
Joerg Roedel71c4dfa2008-02-26 16:49:16 +0100119#define KVM_REQ_TRIPLE_FAULT 4
Marcelo Tosatti06e05642008-06-06 16:37:36 -0300120#define KVM_REQ_PENDING_TIMER 5
Marcelo Tosattid7690172008-09-08 15:23:48 -0300121#define KVM_REQ_UNHALT 6
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300122#define KVM_REQ_MMU_SYNC 7
Zachary Amsden34c238a2010-09-18 14:38:14 -1000123#define KVM_REQ_CLOCK_UPDATE 8
Marcelo Tosatti32f88402009-05-07 17:55:12 -0300124#define KVM_REQ_KICK 9
Avi Kivity02daab22009-12-30 12:40:26 +0200125#define KVM_REQ_DEACTIVATE_FPU 10
Avi Kivity3842d132010-07-27 12:30:24 +0300126#define KVM_REQ_EVENT 11
Gleb Natapovaf585b92010-10-14 11:22:46 +0200127#define KVM_REQ_APF_HALT 12
Glauber Costac9aaa892011-07-11 15:28:14 -0400128#define KVM_REQ_STEAL_UPDATE 13
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300129#define KVM_REQ_NMI 14
Jan Kiszka730dca42013-04-28 10:50:52 +0200130#define KVM_REQ_PMU 15
131#define KVM_REQ_PMI 16
132#define KVM_REQ_WATCHDOG 17
133#define KVM_REQ_MASTERCLOCK_UPDATE 18
134#define KVM_REQ_MCLOCK_INPROGRESS 19
135#define KVM_REQ_EPR_EXIT 20
136#define KVM_REQ_SCAN_IOAPIC 21
Marcelo Tosatti0061d532013-05-09 20:21:41 -0300137#define KVM_REQ_GLOBAL_CLOCK_UPDATE 22
David Hildenbrand8ad35752014-03-14 11:00:21 +0100138#define KVM_REQ_ENABLE_IBS 23
139#define KVM_REQ_DISABLE_IBS 24
Tang Chen4256f432014-09-24 15:57:54 +0800140#define KVM_REQ_APIC_PAGE_RELOAD 25
Avi Kivity6aa8b732006-12-10 02:21:36 -0800141
Alex Williamson7a844282012-09-21 11:58:03 -0600142#define KVM_USERSPACE_IRQ_SOURCE_ID 0
143#define KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID 1
Sheng Yang5550af42008-10-15 20:15:06 +0800144
Rusty Russellc16f8622007-07-30 21:12:19 +1000145extern struct kmem_cache *kvm_vcpu_cache;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800146
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200147extern spinlock_t kvm_lock;
Geoff Levandfc1b7492013-04-05 19:20:30 +0000148extern struct list_head vm_list;
149
Sasha Levin743eeb02011-07-27 16:00:48 +0300150struct kvm_io_range {
151 gpa_t addr;
152 int len;
153 struct kvm_io_device *dev;
154};
155
Amos Kong786a9f82012-03-09 12:17:40 +0800156#define NR_IOBUS_DEVS 1000
Amos Konga13007162012-03-09 12:17:32 +0800157
Gregory Haskins2eeb2e92007-05-31 14:08:53 -0400158struct kvm_io_bus {
Amos Kong6ea34c92013-05-25 06:44:15 +0800159 int dev_count;
160 int ioeventfd_count;
Amos Konga13007162012-03-09 12:17:32 +0800161 struct kvm_io_range range[];
Gregory Haskins2eeb2e92007-05-31 14:08:53 -0400162};
163
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200164enum kvm_bus {
165 KVM_MMIO_BUS,
166 KVM_PIO_BUS,
Cornelia Huck060f0ce2013-02-28 12:33:19 +0100167 KVM_VIRTIO_CCW_NOTIFY_BUS,
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +0300168 KVM_FAST_MMIO_BUS,
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200169 KVM_NR_BUSES
170};
171
172int kvm_io_bus_write(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
173 int len, const void *val);
Cornelia Huck126a5af2013-07-03 16:30:53 +0200174int kvm_io_bus_write_cookie(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
175 int len, const void *val, long cookie);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200176int kvm_io_bus_read(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr, int len,
Michael S. Tsirkinbda90202009-06-29 22:24:32 +0300177 void *val);
Sasha Levin743eeb02011-07-27 16:00:48 +0300178int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
179 int len, struct kvm_io_device *dev);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200180int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
181 struct kvm_io_device *dev);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -0400182
Gleb Natapovaf585b92010-10-14 11:22:46 +0200183#ifdef CONFIG_KVM_ASYNC_PF
184struct kvm_async_pf {
185 struct work_struct work;
186 struct list_head link;
187 struct list_head queue;
188 struct kvm_vcpu *vcpu;
189 struct mm_struct *mm;
190 gva_t gva;
191 unsigned long addr;
192 struct kvm_arch_async_pf arch;
chai wenf2e10662013-10-14 22:22:33 +0800193 bool wakeup_all;
Gleb Natapovaf585b92010-10-14 11:22:46 +0200194};
195
196void kvm_clear_async_pf_completion_queue(struct kvm_vcpu *vcpu);
197void kvm_check_async_pf_completion(struct kvm_vcpu *vcpu);
Dominik Dingele0ead412013-06-06 15:32:37 +0200198int kvm_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, unsigned long hva,
Gleb Natapovaf585b92010-10-14 11:22:46 +0200199 struct kvm_arch_async_pf *arch);
Gleb Natapov344d9582010-10-14 11:22:50 +0200200int kvm_async_pf_wakeup_all(struct kvm_vcpu *vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +0200201#endif
202
Andres Lagar-Cavilla234b2392014-09-17 10:51:48 -0700203/*
204 * Carry out a gup that requires IO. Allow the mm to relinquish the mmap
205 * semaphore if the filemap/swap has to wait on a page lock. pagep == NULL
206 * controls whether we retry the gup one more time to completion in that case.
207 * Typically this is called after a FAULT_FLAG_RETRY_NOWAIT in the main tdp
208 * handler.
209 */
210int kvm_get_user_page_io(struct task_struct *tsk, struct mm_struct *mm,
211 unsigned long addr, bool write_fault,
212 struct page **pagep);
213
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800214enum {
215 OUTSIDE_GUEST_MODE,
216 IN_GUEST_MODE,
Avi Kivityc1427862012-05-14 15:44:06 +0300217 EXITING_GUEST_MODE,
218 READING_SHADOW_PAGE_TABLES,
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800219};
220
Avi Kivityf78146b2012-04-18 19:22:47 +0300221/*
222 * Sometimes a large or cross-page mmio needs to be broken up into separate
223 * exits for userspace servicing.
224 */
225struct kvm_mmio_fragment {
226 gpa_t gpa;
227 void *data;
228 unsigned len;
229};
230
Zhang Xiantaod657a982007-12-14 09:41:22 +0800231struct kvm_vcpu {
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800232 struct kvm *kvm;
Hollis Blanchard31bb1172008-01-28 17:42:34 -0600233#ifdef CONFIG_PREEMPT_NOTIFIERS
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800234 struct preempt_notifier preempt_notifier;
Hollis Blanchard31bb1172008-01-28 17:42:34 -0600235#endif
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800236 int cpu;
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800237 int vcpu_id;
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800238 int srcu_idx;
239 int mode;
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800240 unsigned long requests;
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100241 unsigned long guest_debug;
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800242
243 struct mutex mutex;
244 struct kvm_run *run;
Marcelo Tosattif656ce02009-12-23 14:35:25 -0200245
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800246 int fpu_active;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800247 int guest_fpu_loaded, guest_xcr0_loaded;
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800248 wait_queue_head_t wq;
Rik van Riel34bb10b2011-02-01 09:52:41 -0500249 struct pid *pid;
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800250 int sigset_active;
251 sigset_t sigset;
252 struct kvm_vcpu_stat stat;
253
254#ifdef CONFIG_HAS_IOMEM
255 int mmio_needed;
256 int mmio_read_completed;
257 int mmio_is_write;
Avi Kivityf78146b2012-04-18 19:22:47 +0300258 int mmio_cur_fragment;
259 int mmio_nr_fragments;
260 struct kvm_mmio_fragment mmio_fragments[KVM_MAX_MMIO_FRAGMENTS];
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800261#endif
Zhang Xiantaod657a982007-12-14 09:41:22 +0800262
Gleb Natapovaf585b92010-10-14 11:22:46 +0200263#ifdef CONFIG_KVM_ASYNC_PF
264 struct {
265 u32 queued;
266 struct list_head queue;
267 struct list_head done;
268 spinlock_t lock;
269 } async_pf;
270#endif
271
Raghavendra K T4c088492012-07-18 19:07:46 +0530272#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
273 /*
274 * Cpu relax intercept or pause loop exit optimization
275 * in_spin_loop: set when a vcpu does a pause loop exit
276 * or cpu relax intercepted.
277 * dy_eligible: indicates whether vcpu is eligible for directed yield.
278 */
279 struct {
280 bool in_spin_loop;
281 bool dy_eligible;
282 } spin_loop;
283#endif
Raghavendra K T3a08a8f2013-03-04 23:32:07 +0530284 bool preempted;
Zhang Xiantaod657a982007-12-14 09:41:22 +0800285 struct kvm_vcpu_arch arch;
286};
287
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800288static inline int kvm_vcpu_exiting_guest_mode(struct kvm_vcpu *vcpu)
289{
290 return cmpxchg(&vcpu->mode, IN_GUEST_MODE, EXITING_GUEST_MODE);
291}
292
Takuya Yoshikawa660c22c2010-04-13 22:47:24 +0900293/*
294 * Some of the bitops functions do not support too long bitmaps.
295 * This number must be determined not to exceed such limits.
296 */
297#define KVM_MEM_MAX_NR_PAGES ((1UL << 31) - 1)
298
Avi Kivity6aa8b732006-12-10 02:21:36 -0800299struct kvm_memory_slot {
300 gfn_t base_gfn;
301 unsigned long npages;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800302 unsigned long *dirty_bitmap;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900303 struct kvm_arch_memory_slot arch;
Izik Eidus8a7ae052007-10-18 11:09:33 +0200304 unsigned long userspace_addr;
Alex Williamson6104f472012-12-10 10:33:26 -0700305 u32 flags;
Alex Williamson1e702d92012-12-10 10:33:32 -0700306 short id;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800307};
308
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900309static inline unsigned long kvm_dirty_bitmap_bytes(struct kvm_memory_slot *memslot)
310{
311 return ALIGN(memslot->npages, BITS_PER_LONG) / 8;
312}
313
Cornelia Huck84223592013-07-15 13:36:01 +0200314struct kvm_s390_adapter_int {
315 u64 ind_addr;
316 u64 summary_addr;
317 u64 ind_offset;
318 u32 summary_offset;
319 u32 adapter_id;
320};
321
Avi Kivity399ec802008-11-19 13:58:46 +0200322struct kvm_kernel_irq_routing_entry {
323 u32 gsi;
Michael S. Tsirkin5116d8f2009-07-26 17:10:01 +0300324 u32 type;
Gleb Natapov49256632009-02-04 17:28:14 +0200325 int (*set)(struct kvm_kernel_irq_routing_entry *e,
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800326 struct kvm *kvm, int irq_source_id, int level,
327 bool line_status);
Avi Kivity399ec802008-11-19 13:58:46 +0200328 union {
329 struct {
330 unsigned irqchip;
331 unsigned pin;
332 } irqchip;
Sheng Yang79950e12009-02-10 13:57:06 +0800333 struct msi_msg msi;
Cornelia Huck84223592013-07-15 13:36:01 +0200334 struct kvm_s390_adapter_int adapter;
Avi Kivity399ec802008-11-19 13:58:46 +0200335 };
Gleb Natapov46e624b2009-08-24 11:54:20 +0300336 struct hlist_node link;
337};
338
Alex Williamson07432472012-12-10 10:33:15 -0700339#ifndef KVM_PRIVATE_MEM_SLOTS
340#define KVM_PRIVATE_MEM_SLOTS 0
341#endif
342
Xiao Guangrong93a5cef2011-11-24 17:37:48 +0800343#ifndef KVM_MEM_SLOTS_NUM
Alex Williamsonbbacc0c2012-12-10 10:33:09 -0700344#define KVM_MEM_SLOTS_NUM (KVM_USER_MEM_SLOTS + KVM_PRIVATE_MEM_SLOTS)
Xiao Guangrong93a5cef2011-11-24 17:37:48 +0800345#endif
346
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800347/*
348 * Note:
349 * memslots are not sorted by id anymore, please use id_to_memslot()
350 * to get the memslot by its id.
351 */
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200352struct kvm_memslots {
Gleb Natapov49c77542010-10-18 15:22:23 +0200353 u64 generation;
Xiao Guangrong93a5cef2011-11-24 17:37:48 +0800354 struct kvm_memory_slot memslots[KVM_MEM_SLOTS_NUM];
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800355 /* The mapping table from slot id to the index in memslots[]. */
Alex Williamson1e702d92012-12-10 10:33:32 -0700356 short id_to_index[KVM_MEM_SLOTS_NUM];
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200357};
358
Avi Kivity6aa8b732006-12-10 02:21:36 -0800359struct kvm {
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -0500360 spinlock_t mmu_lock;
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200361 struct mutex slots_lock;
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200362 struct mm_struct *mm; /* userspace tied to this vm */
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200363 struct kvm_memslots *memslots;
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200364 struct srcu_struct srcu;
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100365 struct srcu_struct irq_srcu;
Gleb Natapov73880c82009-06-09 15:56:28 +0300366#ifdef CONFIG_KVM_APIC_ARCHITECTURE
367 u32 bsp_vcpu_id;
Gleb Natapov73880c82009-06-09 15:56:28 +0300368#endif
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000369 struct kvm_vcpu *vcpus[KVM_MAX_VCPUS];
Gleb Natapov73880c82009-06-09 15:56:28 +0300370 atomic_t online_vcpus;
Rik van Riel217ece62011-02-01 09:53:28 -0500371 int last_boosted_vcpu;
Avi Kivity133de902007-02-12 00:54:44 -0800372 struct list_head vm_list;
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300373 struct mutex lock;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200374 struct kvm_io_bus *buses[KVM_NR_BUSES];
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400375#ifdef CONFIG_HAVE_KVM_EVENTFD
376 struct {
377 spinlock_t lock;
378 struct list_head items;
Alex Williamson7a844282012-09-21 11:58:03 -0600379 struct list_head resampler_list;
380 struct mutex resampler_lock;
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400381 } irqfds;
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400382 struct list_head ioeventfds;
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400383#endif
Avi Kivityba1389b2007-11-18 16:24:12 +0200384 struct kvm_vm_stat stat;
Zhang Xiantaod69fb812007-12-14 09:54:20 +0800385 struct kvm_arch arch;
Izik Eidusd39f13b2008-03-30 16:01:25 +0300386 atomic_t users_count;
Laurent Vivier5f94c172008-05-30 16:05:54 +0200387#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
Laurent Vivier5f94c172008-05-30 16:05:54 +0200388 struct kvm_coalesced_mmio_ring *coalesced_mmio_ring;
Sasha Levin2b3c2462011-07-20 20:59:00 +0300389 spinlock_t ring_lock;
390 struct list_head coalesced_zones;
Laurent Vivier5f94c172008-05-30 16:05:54 +0200391#endif
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200392
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300393 struct mutex irq_lock;
Avi Kivity75858a82009-01-04 17:10:50 +0200394#ifdef CONFIG_HAVE_KVM_IRQCHIP
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200395 /*
Paul Mackerras9957c862014-06-30 20:51:11 +1000396 * Update side is protected by irq_lock.
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200397 */
Arnd Bergmann4b6a2872010-03-04 15:59:23 +0100398 struct kvm_irq_routing_table __rcu *irq_routing;
Avi Kivity75858a82009-01-04 17:10:50 +0200399 struct hlist_head mask_notifier_list;
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200400#endif
401#ifdef CONFIG_HAVE_KVM_IRQFD
Gleb Natapov136bdfe2009-08-24 11:54:23 +0300402 struct hlist_head irq_ack_notifier_list;
Avi Kivity75858a82009-01-04 17:10:50 +0200403#endif
404
Marc Zyngier36c1ed82012-06-15 15:07:24 -0400405#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200406 struct mmu_notifier mmu_notifier;
407 unsigned long mmu_notifier_seq;
408 long mmu_notifier_count;
409#endif
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800410 long tlbs_dirty;
Scott Wood07f0a7b2013-04-25 14:11:23 +0000411 struct list_head devices;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800412};
413
Christoffer Dalla737f252012-06-03 21:17:48 +0300414#define kvm_err(fmt, ...) \
415 pr_err("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
416#define kvm_info(fmt, ...) \
417 pr_info("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
418#define kvm_debug(fmt, ...) \
419 pr_debug("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
420#define kvm_pr_unimpl(fmt, ...) \
421 pr_err_ratelimited("kvm [%i]: " fmt, \
422 task_tgid_nr(current), ## __VA_ARGS__)
Rusty Russellf0242472007-08-01 10:48:02 +1000423
Christoffer Dalla737f252012-06-03 21:17:48 +0300424/* The guest did something we don't support. */
425#define vcpu_unimpl(vcpu, fmt, ...) \
426 kvm_pr_unimpl("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800427
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300428static inline struct kvm_vcpu *kvm_get_vcpu(struct kvm *kvm, int i)
429{
430 smp_rmb();
431 return kvm->vcpus[i];
432}
433
434#define kvm_for_each_vcpu(idx, vcpup, kvm) \
Jeff Mahoneyb42fc3c2011-04-12 21:30:17 -0400435 for (idx = 0; \
436 idx < atomic_read(&kvm->online_vcpus) && \
437 (vcpup = kvm_get_vcpu(kvm, idx)) != NULL; \
438 idx++)
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300439
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800440#define kvm_for_each_memslot(memslot, slots) \
441 for (memslot = &slots->memslots[0]; \
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800442 memslot < slots->memslots + KVM_MEM_SLOTS_NUM && memslot->npages;\
443 memslot++)
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800444
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000445int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id);
446void kvm_vcpu_uninit(struct kvm_vcpu *vcpu);
447
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300448int __must_check vcpu_load(struct kvm_vcpu *vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200449void vcpu_put(struct kvm_vcpu *vcpu);
450
Paul Mackerras297e2102014-06-30 20:51:13 +1000451#ifdef CONFIG_HAVE_KVM_IRQFD
Cornelia Hucka0f155e2013-02-28 12:33:18 +0100452int kvm_irqfd_init(void);
453void kvm_irqfd_exit(void);
454#else
455static inline int kvm_irqfd_init(void)
456{
457 return 0;
458}
459
460static inline void kvm_irqfd_exit(void)
461{
462}
463#endif
Avi Kivity0ee75be2010-04-28 15:39:01 +0300464int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +1000465 struct module *module);
Zhang Xiantaocb498ea2007-11-14 20:39:31 +0800466void kvm_exit(void);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800467
Izik Eidusd39f13b2008-03-30 16:01:25 +0300468void kvm_get_kvm(struct kvm *kvm);
469void kvm_put_kvm(struct kvm *kvm);
470
Lai Jiangshan90d83dc2010-04-19 17:41:23 +0800471static inline struct kvm_memslots *kvm_memslots(struct kvm *kvm)
472{
473 return rcu_dereference_check(kvm->memslots,
474 srcu_read_lock_held(&kvm->srcu)
475 || lockdep_is_held(&kvm->slots_lock));
476}
477
Xiao Guangrong28a37542011-11-24 19:04:35 +0800478static inline struct kvm_memory_slot *
479id_to_memslot(struct kvm_memslots *slots, int id)
480{
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800481 int index = slots->id_to_index[id];
482 struct kvm_memory_slot *slot;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800483
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800484 slot = &slots->memslots[index];
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800485
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800486 WARN_ON(slot->id != id);
487 return slot;
Xiao Guangrong28a37542011-11-24 19:04:35 +0800488}
489
Takuya Yoshikawa74d07272013-02-27 19:43:44 +0900490/*
491 * KVM_SET_USER_MEMORY_REGION ioctl allows the following operations:
492 * - create a new memory slot
493 * - delete an existing memory slot
494 * - modify an existing memory slot
495 * -- move it in the guest physical memory space
496 * -- just change its flags
497 *
498 * Since flags can be changed by some of these operations, the following
499 * differentiation is the best we can do for __kvm_set_memory_region():
500 */
501enum kvm_mr_change {
502 KVM_MR_CREATE,
503 KVM_MR_DELETE,
504 KVM_MR_MOVE,
505 KVM_MR_FLAGS_ONLY,
506};
507
Izik Eidus210c7c42007-10-24 23:52:57 +0200508int kvm_set_memory_region(struct kvm *kvm,
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900509 struct kvm_userspace_memory_region *mem);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800510int __kvm_set_memory_region(struct kvm *kvm,
Takuya Yoshikawa47ae31e2013-02-27 19:43:00 +0900511 struct kvm_userspace_memory_region *mem);
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530512void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900513 struct kvm_memory_slot *dont);
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530514int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
515 unsigned long npages);
Takuya Yoshikawae59dbe02013-07-04 13:40:29 +0900516void kvm_arch_memslots_updated(struct kvm *kvm);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200517int kvm_arch_prepare_memory_region(struct kvm *kvm,
518 struct kvm_memory_slot *memslot,
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200519 struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +0900520 enum kvm_mr_change change);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200521void kvm_arch_commit_memory_region(struct kvm *kvm,
Zhang Xiantao0de10342007-11-20 16:25:04 +0800522 struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900523 const struct kvm_memory_slot *old,
524 enum kvm_mr_change change);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900525bool kvm_largepages_enabled(void);
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300526void kvm_disable_largepages(void);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300527/* flush all memory translations */
528void kvm_arch_flush_shadow_all(struct kvm *kvm);
529/* flush memory translations pointing to 'slot' */
530void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
531 struct kvm_memory_slot *slot);
Marcelo Tosattia983fb22009-12-23 14:35:23 -0200532
Xiao Guangrong48987782010-08-22 19:11:43 +0800533int gfn_to_page_many_atomic(struct kvm *kvm, gfn_t gfn, struct page **pages,
534 int nr_pages);
535
Avi Kivity954bbbc2007-03-30 14:02:32 +0300536struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300537unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn);
Paolo Bonziniba6a3542013-09-09 13:52:33 +0200538unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable);
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800539unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
Christoffer Dall64d83122014-08-19 12:15:00 +0200540unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot, gfn_t gfn,
541 bool *writable);
Izik Eidusb4231d62007-11-20 11:49:33 +0200542void kvm_release_page_clean(struct page *page);
543void kvm_release_page_dirty(struct page *page);
Anthony Liguori35149e22008-04-02 14:46:56 -0500544void kvm_set_page_accessed(struct page *page);
545
Xiao Guangrong365fb3f2010-08-28 19:24:13 +0800546pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn);
Marcelo Tosatti612819c2010-10-22 14:18:18 -0200547pfn_t gfn_to_pfn_async(struct kvm *kvm, gfn_t gfn, bool *async,
548 bool write_fault, bool *writable);
Anthony Liguori35149e22008-04-02 14:46:56 -0500549pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn);
Marcelo Tosatti612819c2010-10-22 14:18:18 -0200550pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
551 bool *writable);
Xiao Guangrongd5661042012-07-17 21:56:16 +0800552pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
Xiao Guangrong037d92d2012-08-21 10:59:12 +0800553pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn);
554
Anthony Liguori35149e22008-04-02 14:46:56 -0500555void kvm_release_pfn_clean(pfn_t pfn);
556void kvm_set_pfn_dirty(pfn_t pfn);
557void kvm_set_pfn_accessed(pfn_t pfn);
558void kvm_get_pfn(pfn_t pfn);
559
Izik Eidus195aefd2007-10-01 22:14:18 +0200560int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
561 int len);
Marcelo Tosatti7ec54582007-12-20 19:18:23 -0500562int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
563 unsigned long len);
Izik Eidus195aefd2007-10-01 22:14:18 +0200564int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len);
Gleb Natapove03b6442011-07-11 15:28:11 -0400565int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
566 void *data, unsigned long len);
Izik Eidus195aefd2007-10-01 22:14:18 +0200567int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
568 int offset, int len);
569int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
570 unsigned long len);
Gleb Natapov49c77542010-10-18 15:22:23 +0200571int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
572 void *data, unsigned long len);
573int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
Andrew Honig8f964522013-03-29 09:35:21 -0700574 gpa_t gpa, unsigned long len);
Izik Eidus195aefd2007-10-01 22:14:18 +0200575int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len);
576int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800577struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
Izik Eiduse0d62c72007-10-24 23:57:46 +0200578int kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn);
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +0100579unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800580void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
581
Hollis Blanchard8776e512007-10-31 17:24:24 -0500582void kvm_vcpu_block(struct kvm_vcpu *vcpu);
Christoffer Dallb6d33832012-03-08 16:44:24 -0500583void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
Dan Carpenterfa933842014-05-23 13:20:42 +0300584int kvm_vcpu_yield_to(struct kvm_vcpu *target);
Zhai, Edwind255f4f2009-10-09 18:03:20 +0800585void kvm_vcpu_on_spin(struct kvm_vcpu *vcpu);
Avi Kivity7702fd12007-06-14 16:27:40 +0300586void kvm_load_guest_fpu(struct kvm_vcpu *vcpu);
587void kvm_put_guest_fpu(struct kvm_vcpu *vcpu);
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800588
Avi Kivityd9e368d2007-06-07 19:18:30 +0300589void kvm_flush_remote_tlbs(struct kvm *kvm);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500590void kvm_reload_remote_mmus(struct kvm *kvm);
Marcelo Tosattid8281992012-11-27 23:29:01 -0200591void kvm_make_mclock_inprogress_request(struct kvm *kvm);
Yang Zhang3d81bc72013-04-11 19:25:13 +0800592void kvm_make_scan_ioapic_request(struct kvm *kvm);
Tang Chen445b8232014-09-24 15:57:55 +0800593bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800594
Carsten Otte043405e2007-10-10 17:16:19 +0200595long kvm_arch_dev_ioctl(struct file *filp,
596 unsigned int ioctl, unsigned long arg);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200597long kvm_arch_vcpu_ioctl(struct file *filp,
598 unsigned int ioctl, unsigned long arg);
Carsten Otte5b1c1492012-01-04 10:25:23 +0100599int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf);
Zhang Xiantao018d00d2007-11-15 23:07:47 +0800600
Alexander Graf784aa3d2014-07-14 18:27:35 +0200601int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext);
Zhang Xiantao018d00d2007-11-15 23:07:47 +0800602
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800603int kvm_get_dirty_log(struct kvm *kvm,
604 struct kvm_dirty_log *log, int *is_dirty);
605int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
606 struct kvm_dirty_log *log);
607
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800608int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level,
609 bool line_status);
Carsten Otte1fe779f2007-10-29 16:08:35 +0100610long kvm_arch_vm_ioctl(struct file *filp,
611 unsigned int ioctl, unsigned long arg);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200612
Hollis Blanchardd0752062007-10-31 17:24:25 -0500613int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
614int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
615
Zhang Xiantao8b006792007-11-16 13:05:55 +0800616int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
617 struct kvm_translation *tr);
618
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -0500619int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
620int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
621int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
622 struct kvm_sregs *sregs);
623int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
624 struct kvm_sregs *sregs);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -0300625int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
626 struct kvm_mp_state *mp_state);
627int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
628 struct kvm_mp_state *mp_state);
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100629int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
630 struct kvm_guest_debug *dbg);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -0500631int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run);
632
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +0800633int kvm_arch_init(void *opaque);
634void kvm_arch_exit(void);
Carsten Otte043405e2007-10-10 17:16:19 +0200635
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800636int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu);
637void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu);
638
Radim Krčmáře790d9e2014-08-21 18:08:05 +0200639void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu);
640
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800641void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu);
642void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
643void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
644struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id);
Avi Kivity26e52152007-11-20 15:30:24 +0200645int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu);
Marcelo Tosatti42897d82012-11-27 23:29:02 -0200646int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu);
Hollis Blanchardd40ccc62007-11-19 14:04:43 -0600647void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800648
Radim Krčmář13a34e02014-08-28 15:13:03 +0200649int kvm_arch_hardware_enable(void);
650void kvm_arch_hardware_disable(void);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800651int kvm_arch_hardware_setup(void);
652void kvm_arch_hardware_unsetup(void);
653void kvm_arch_check_processor_compat(void *rtn);
Zhang Xiantao1d737c82007-12-14 09:35:10 +0800654int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu);
Christoffer Dallb6d33832012-03-08 16:44:24 -0500655int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800656
Takuya Yoshikawac1a7b322012-05-20 13:15:07 +0900657void *kvm_kvzalloc(unsigned long size);
658void kvm_kvfree(const void *addr);
659
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100660#ifndef __KVM_HAVE_ARCH_VM_ALLOC
661static inline struct kvm *kvm_arch_alloc_vm(void)
662{
663 return kzalloc(sizeof(struct kvm), GFP_KERNEL);
664}
665
666static inline void kvm_arch_free_vm(struct kvm *kvm)
667{
668 kfree(kvm);
669}
670#endif
671
Alex Williamsone0f0bbc2013-10-30 11:02:30 -0600672#ifdef __KVM_HAVE_ARCH_NONCOHERENT_DMA
673void kvm_arch_register_noncoherent_dma(struct kvm *kvm);
674void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm);
675bool kvm_arch_has_noncoherent_dma(struct kvm *kvm);
676#else
677static inline void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
678{
679}
680
681static inline void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
682{
683}
684
685static inline bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
686{
687 return false;
688}
689#endif
690
Christoffer Dallb6d33832012-03-08 16:44:24 -0500691static inline wait_queue_head_t *kvm_arch_vcpu_wq(struct kvm_vcpu *vcpu)
692{
Alexander Graf2246f8b2012-03-13 22:35:01 +0100693#ifdef __KVM_HAVE_ARCH_WQP
694 return vcpu->arch.wqp;
695#else
Christoffer Dallb6d33832012-03-08 16:44:24 -0500696 return &vcpu->wq;
Christoffer Dallb6d33832012-03-08 16:44:24 -0500697#endif
Alexander Graf2246f8b2012-03-13 22:35:01 +0100698}
Christoffer Dallb6d33832012-03-08 16:44:24 -0500699
Carsten Ottee08b9632012-01-04 10:25:20 +0100700int kvm_arch_init_vm(struct kvm *kvm, unsigned long type);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800701void kvm_arch_destroy_vm(struct kvm *kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800702void kvm_arch_sync_events(struct kvm *kvm);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800703
Marcelo Tosatti3d808402008-04-11 14:53:26 -0300704int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu);
Zhang Xiantao57361992007-12-17 14:21:40 +0800705void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
Zhang Xiantao682c59a2007-12-11 20:36:00 +0800706
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +0000707bool kvm_is_reserved_pfn(pfn_t pfn);
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +0800708
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300709struct kvm_irq_ack_notifier {
710 struct hlist_node link;
711 unsigned gsi;
712 void (*irq_acked)(struct kvm_irq_ack_notifier *kian);
713};
714
715struct kvm_assigned_dev_kernel {
716 struct kvm_irq_ack_notifier ack_notifier;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300717 struct list_head list;
718 int assigned_dev_id;
Zhai, Edwinab9f4ec2010-01-29 14:38:44 +0800719 int host_segnr;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300720 int host_busnr;
721 int host_devfn;
Sheng Yangc1e01512009-02-25 17:22:26 +0800722 unsigned int entries_nr;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300723 int host_irq;
Mark McLoughlindefaf152008-12-02 12:16:33 +0000724 bool host_irq_disabled;
Jan Kiszka07700a92012-02-28 14:19:54 +0100725 bool pci_2_3;
Sheng Yangc1e01512009-02-25 17:22:26 +0800726 struct msix_entry *host_msix_entries;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300727 int guest_irq;
Jan Kiszka0645211c2010-11-16 22:30:03 +0100728 struct msix_entry *guest_msix_entries;
Sheng Yang4f906c12008-11-24 14:32:51 +0800729 unsigned long irq_requested_type;
Sheng Yang5550af42008-10-15 20:15:06 +0800730 int irq_source_id;
Weidong Hanb6535742008-12-08 23:29:53 +0800731 int flags;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300732 struct pci_dev *dev;
733 struct kvm *kvm;
Jan Kiszka0645211c2010-11-16 22:30:03 +0100734 spinlock_t intx_lock;
Jan Kiszkacf9eeac2012-03-14 11:02:11 +0100735 spinlock_t intx_mask_lock;
Jan Kiszka1e001d42010-11-16 22:30:04 +0100736 char irq_name[32];
Alex Williamsonf8fcfd72011-05-10 10:02:39 -0600737 struct pci_saved_state *pci_saved_state;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300738};
Avi Kivity75858a82009-01-04 17:10:50 +0200739
740struct kvm_irq_mask_notifier {
741 void (*func)(struct kvm_irq_mask_notifier *kimn, bool masked);
742 int irq;
743 struct hlist_node link;
744};
745
746void kvm_register_irq_mask_notifier(struct kvm *kvm, int irq,
747 struct kvm_irq_mask_notifier *kimn);
748void kvm_unregister_irq_mask_notifier(struct kvm *kvm, int irq,
749 struct kvm_irq_mask_notifier *kimn);
Gleb Natapov4a994352010-07-11 15:32:23 +0300750void kvm_fire_mask_notifiers(struct kvm *kvm, unsigned irqchip, unsigned pin,
751 bool mask);
Avi Kivity75858a82009-01-04 17:10:50 +0200752
Paul Mackerras9957c862014-06-30 20:51:11 +1000753int kvm_irq_map_gsi(struct kvm *kvm,
754 struct kvm_kernel_irq_routing_entry *entries, int gsi);
755int kvm_irq_map_chip_pin(struct kvm *kvm, unsigned irqchip, unsigned pin);
Paul Mackerras8ba918d2014-06-30 20:51:10 +1000756
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800757int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level,
758 bool line_status);
Michael S. Tsirkin01f21882012-10-17 18:06:02 +0200759int kvm_set_irq_inatomic(struct kvm *kvm, int irq_source_id, u32 irq, int level);
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200760int kvm_set_msi(struct kvm_kernel_irq_routing_entry *irq_entry, struct kvm *kvm,
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800761 int irq_source_id, int level, bool line_status);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800762bool kvm_irq_has_notifier(struct kvm *kvm, unsigned irqchip, unsigned pin);
Marcelo Tosatti44882ee2009-01-27 15:12:38 -0200763void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin);
Xiantao Zhang3de42dc2008-10-06 13:48:45 +0800764void kvm_register_irq_ack_notifier(struct kvm *kvm,
765 struct kvm_irq_ack_notifier *kian);
Marcelo Tosattifa40a822009-06-04 15:08:24 -0300766void kvm_unregister_irq_ack_notifier(struct kvm *kvm,
767 struct kvm_irq_ack_notifier *kian);
Sheng Yang5550af42008-10-15 20:15:06 +0800768int kvm_request_irq_source_id(struct kvm *kvm);
769void kvm_free_irq_source_id(struct kvm *kvm, int irq_source_id);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300770
Alex Williamson2a5bab12013-04-16 13:49:18 -0600771#ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
Marcelo Tosatti3ad26d82009-12-23 14:35:20 -0200772int kvm_iommu_map_pages(struct kvm *kvm, struct kvm_memory_slot *slot);
Alex Williamson32f6daa2012-04-11 09:51:49 -0600773void kvm_iommu_unmap_pages(struct kvm *kvm, struct kvm_memory_slot *slot);
Weidong Han260782b2008-12-02 21:03:39 +0800774int kvm_iommu_map_guest(struct kvm *kvm);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300775int kvm_iommu_unmap_guest(struct kvm *kvm);
Weidong Han260782b2008-12-02 21:03:39 +0800776int kvm_assign_device(struct kvm *kvm,
777 struct kvm_assigned_dev_kernel *assigned_dev);
Weidong Han0a920352008-12-02 21:24:23 +0800778int kvm_deassign_device(struct kvm *kvm,
779 struct kvm_assigned_dev_kernel *assigned_dev);
Alex Williamson2a5bab12013-04-16 13:49:18 -0600780#else
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300781static inline int kvm_iommu_map_pages(struct kvm *kvm,
Jan Kiszkad7a79b62010-10-14 13:59:04 +0200782 struct kvm_memory_slot *slot)
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300783{
784 return 0;
785}
786
Alex Williamson32f6daa2012-04-11 09:51:49 -0600787static inline void kvm_iommu_unmap_pages(struct kvm *kvm,
788 struct kvm_memory_slot *slot)
789{
790}
791
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300792static inline int kvm_iommu_unmap_guest(struct kvm *kvm)
793{
794 return 0;
795}
Alex Williamson2a5bab12013-04-16 13:49:18 -0600796#endif
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300797
Frederic Weisbeckerc11f11f2013-01-21 00:50:22 +0100798static inline void kvm_guest_enter(void)
799{
800 unsigned long flags;
801
802 BUG_ON(preemptible());
803
804 local_irq_save(flags);
805 guest_enter();
806 local_irq_restore(flags);
807
Gleb Natapov8fa22062011-05-04 16:31:04 +0300808 /* KVM does not hold any references to rcu protected data when it
809 * switches CPU into a guest mode. In fact switching to a guest mode
Michael S. Tsirkin81e87e22013-10-30 21:43:01 +0200810 * is very similar to exiting to userspace from rcu point of view. In
Gleb Natapov8fa22062011-05-04 16:31:04 +0300811 * addition CPU may stay in a guest mode for quite a long time (up to
812 * one time slice). Lets treat guest mode as quiescent state, just like
813 * we do with user-mode execution.
814 */
815 rcu_virt_note_context_switch(smp_processor_id());
Laurent Vivierd172fcd2007-10-15 17:00:19 +0200816}
817
818static inline void kvm_guest_exit(void)
819{
Frederic Weisbeckerc11f11f2013-01-21 00:50:22 +0100820 unsigned long flags;
821
822 local_irq_save(flags);
823 guest_exit();
824 local_irq_restore(flags);
Laurent Vivierd172fcd2007-10-15 17:00:19 +0200825}
826
Paul Mackerras9d4cba72012-01-12 20:09:51 +0000827/*
828 * search_memslots() and __gfn_to_memslot() are here because they are
829 * used in non-modular code in arch/powerpc/kvm/book3s_hv_rm_mmu.c.
830 * gfn_to_memslot() itself isn't here as an inline because that would
831 * bloat other code too much.
832 */
833static inline struct kvm_memory_slot *
834search_memslots(struct kvm_memslots *slots, gfn_t gfn)
835{
836 struct kvm_memory_slot *memslot;
837
838 kvm_for_each_memslot(memslot, slots)
839 if (gfn >= memslot->base_gfn &&
840 gfn < memslot->base_gfn + memslot->npages)
841 return memslot;
842
843 return NULL;
844}
845
846static inline struct kvm_memory_slot *
847__gfn_to_memslot(struct kvm_memslots *slots, gfn_t gfn)
848{
849 return search_memslots(slots, gfn);
850}
851
Gavin Shan66a03502012-08-24 16:50:28 +0800852static inline unsigned long
853__gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
854{
855 return slot->userspace_addr + (gfn - slot->base_gfn) * PAGE_SIZE;
856}
857
Xiao Guangrong0ee8dcb2011-03-09 15:41:59 +0800858static inline int memslot_id(struct kvm *kvm, gfn_t gfn)
859{
860 return gfn_to_memslot(kvm, gfn)->id;
861}
862
Takuya Yoshikawad19a7482012-07-02 17:54:30 +0900863static inline gfn_t
864hva_to_gfn_memslot(unsigned long hva, struct kvm_memory_slot *slot)
Xiao Guangrong887c08a2010-08-22 19:10:28 +0800865{
Takuya Yoshikawad19a7482012-07-02 17:54:30 +0900866 gfn_t gfn_offset = (hva - slot->userspace_addr) >> PAGE_SHIFT;
867
868 return slot->base_gfn + gfn_offset;
Xiao Guangrong887c08a2010-08-22 19:10:28 +0800869}
870
Avi Kivity1755fbc2007-11-21 14:44:45 +0200871static inline gpa_t gfn_to_gpa(gfn_t gfn)
872{
873 return (gpa_t)gfn << PAGE_SHIFT;
874}
Avi Kivity6aa8b732006-12-10 02:21:36 -0800875
Joerg Roedelc30a3582010-09-10 17:30:48 +0200876static inline gfn_t gpa_to_gfn(gpa_t gpa)
877{
878 return (gfn_t)(gpa >> PAGE_SHIFT);
879}
880
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300881static inline hpa_t pfn_to_hpa(pfn_t pfn)
882{
883 return (hpa_t)pfn << PAGE_SHIFT;
884}
885
Heiko Carstensdfeec842014-01-01 16:09:21 +0100886static inline bool kvm_is_error_gpa(struct kvm *kvm, gpa_t gpa)
887{
888 unsigned long hva = gfn_to_hva(kvm, gpa_to_gfn(gpa));
889
890 return kvm_is_error_hva(hva);
891}
892
Marcelo Tosatti2f599712008-05-27 12:10:20 -0300893static inline void kvm_migrate_timers(struct kvm_vcpu *vcpu)
Avi Kivity2f52d582008-01-16 12:49:30 +0200894{
895 set_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests);
896}
897
Avi Kivityba1389b2007-11-18 16:24:12 +0200898enum kvm_stat_kind {
899 KVM_STAT_VM,
900 KVM_STAT_VCPU,
901};
902
Hollis Blanchard417bc302007-10-31 17:24:23 -0500903struct kvm_stats_debugfs_item {
904 const char *name;
905 int offset;
Avi Kivityba1389b2007-11-18 16:24:12 +0200906 enum kvm_stat_kind kind;
Hollis Blanchard417bc302007-10-31 17:24:23 -0500907 struct dentry *dentry;
908};
909extern struct kvm_stats_debugfs_item debugfs_entries[];
Hollis Blanchard76f7c872008-04-15 16:05:42 -0500910extern struct dentry *kvm_debugfs_dir;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -0400911
Marc Zyngier36c1ed82012-06-15 15:07:24 -0400912#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
Christoffer Dall8ca40a72012-10-14 23:10:18 -0400913static inline int mmu_notifier_retry(struct kvm *kvm, unsigned long mmu_seq)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200914{
Christoffer Dall8ca40a72012-10-14 23:10:18 -0400915 if (unlikely(kvm->mmu_notifier_count))
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200916 return 1;
917 /*
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000918 * Ensure the read of mmu_notifier_count happens before the read
919 * of mmu_notifier_seq. This interacts with the smp_wmb() in
920 * mmu_notifier_invalidate_range_end to make sure that the caller
921 * either sees the old (non-zero) value of mmu_notifier_count or
922 * the new (incremented) value of mmu_notifier_seq.
923 * PowerPC Book3s HV KVM calls this under a per-page lock
924 * rather than under kvm->mmu_lock, for scalability, so
925 * can't rely on kvm->mmu_lock to keep things ordered.
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200926 */
Paul Mackerrasa355aa52011-12-12 12:37:21 +0000927 smp_rmb();
Christoffer Dall8ca40a72012-10-14 23:10:18 -0400928 if (kvm->mmu_notifier_seq != mmu_seq)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200929 return 1;
930 return 0;
931}
932#endif
933
Alexander Grafa725d562013-04-17 13:29:30 +0200934#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
Avi Kivity399ec802008-11-19 13:58:46 +0200935
Cornelia Huckf3f710b2014-02-25 12:48:01 +0100936#ifdef CONFIG_S390
937#define KVM_MAX_IRQ_ROUTES 4096 //FIXME: we can have more than that...
938#else
Avi Kivity399ec802008-11-19 13:58:46 +0200939#define KVM_MAX_IRQ_ROUTES 1024
Cornelia Huckf3f710b2014-02-25 12:48:01 +0100940#endif
Avi Kivity399ec802008-11-19 13:58:46 +0200941
942int kvm_setup_default_irq_routing(struct kvm *kvm);
943int kvm_set_irq_routing(struct kvm *kvm,
944 const struct kvm_irq_routing_entry *entries,
945 unsigned nr,
946 unsigned flags);
Paul Mackerras8ba918d2014-06-30 20:51:10 +1000947int kvm_set_routing_entry(struct kvm_kernel_irq_routing_entry *e,
Alexander Grafe8cde092013-04-15 23:23:21 +0200948 const struct kvm_irq_routing_entry *ue);
Avi Kivity399ec802008-11-19 13:58:46 +0200949void kvm_free_irq_routing(struct kvm *kvm);
950
951#else
952
953static inline void kvm_free_irq_routing(struct kvm *kvm) {}
954
955#endif
956
Paul Mackerras297e2102014-06-30 20:51:13 +1000957int kvm_send_userspace_msi(struct kvm *kvm, struct kvm_msi *msi);
958
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400959#ifdef CONFIG_HAVE_KVM_EVENTFD
960
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400961void kvm_eventfd_init(struct kvm *kvm);
Alexander Graf914daba2012-10-09 00:22:59 +0200962int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args);
963
Paul Mackerras297e2102014-06-30 20:51:13 +1000964#ifdef CONFIG_HAVE_KVM_IRQFD
Alex Williamsond4db2932012-06-29 09:56:08 -0600965int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args);
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400966void kvm_irqfd_release(struct kvm *kvm);
Paul Mackerras9957c862014-06-30 20:51:11 +1000967void kvm_irq_routing_update(struct kvm *);
Alexander Graf914daba2012-10-09 00:22:59 +0200968#else
969static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
970{
971 return -EINVAL;
972}
973
974static inline void kvm_irqfd_release(struct kvm *kvm) {}
975#endif
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400976
977#else
978
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400979static inline void kvm_eventfd_init(struct kvm *kvm) {}
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200980
Alex Williamsond4db2932012-06-29 09:56:08 -0600981static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400982{
983 return -EINVAL;
984}
985
986static inline void kvm_irqfd_release(struct kvm *kvm) {}
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200987
Alexander Graf27923eb2010-11-25 10:25:44 +0100988#ifdef CONFIG_HAVE_KVM_IRQCHIP
Paul Mackerras9957c862014-06-30 20:51:11 +1000989static inline void kvm_irq_routing_update(struct kvm *kvm)
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200990{
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200991}
Alexander Graf27923eb2010-11-25 10:25:44 +0100992#endif
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200993
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400994static inline int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args)
995{
996 return -ENOSYS;
997}
Gregory Haskins721eecbf2009-05-20 10:30:49 -0400998
999#endif /* CONFIG_HAVE_KVM_EVENTFD */
1000
Gleb Natapov73880c82009-06-09 15:56:28 +03001001#ifdef CONFIG_KVM_APIC_ARCHITECTURE
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001002static inline bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
1003{
Marcelo Tosattid3efc8e2009-06-17 10:07:59 -03001004 return vcpu->kvm->bsp_vcpu_id == vcpu->vcpu_id;
Gleb Natapovc5af89b2009-06-09 15:56:26 +03001005}
Avi Kivity3e515702012-03-05 14:23:29 +02001006
1007bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu);
1008
1009#else
1010
1011static inline bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu) { return true; }
1012
Avi Kivity6aa8b732006-12-10 02:21:36 -08001013#endif
Avi Kivitybfd99ff2009-08-26 14:57:50 +03001014
Alex Williamson2a5bab12013-04-16 13:49:18 -06001015#ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
Avi Kivitybfd99ff2009-08-26 14:57:50 +03001016
1017long kvm_vm_ioctl_assigned_device(struct kvm *kvm, unsigned ioctl,
1018 unsigned long arg);
1019
Alex Williamson2a5bab12013-04-16 13:49:18 -06001020void kvm_free_all_assigned_devices(struct kvm *kvm);
1021
Avi Kivitybfd99ff2009-08-26 14:57:50 +03001022#else
1023
1024static inline long kvm_vm_ioctl_assigned_device(struct kvm *kvm, unsigned ioctl,
1025 unsigned long arg)
1026{
1027 return -ENOTTY;
1028}
1029
Alex Williamson2a5bab12013-04-16 13:49:18 -06001030static inline void kvm_free_all_assigned_devices(struct kvm *kvm) {}
1031
Gleb Natapov73880c82009-06-09 15:56:28 +03001032#endif
Avi Kivitybfd99ff2009-08-26 14:57:50 +03001033
Avi Kivitya8eeb042010-05-10 12:34:53 +03001034static inline void kvm_make_request(int req, struct kvm_vcpu *vcpu)
1035{
1036 set_bit(req, &vcpu->requests);
1037}
1038
Avi Kivitya8eeb042010-05-10 12:34:53 +03001039static inline bool kvm_check_request(int req, struct kvm_vcpu *vcpu)
1040{
Avi Kivity07198372010-05-10 13:08:26 +03001041 if (test_bit(req, &vcpu->requests)) {
1042 clear_bit(req, &vcpu->requests);
1043 return true;
1044 } else {
1045 return false;
1046 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03001047}
1048
Geoff Levand8b415dc2013-04-05 19:20:30 +00001049extern bool kvm_rebooting;
1050
Scott Wood852b6d52013-04-12 14:08:42 +00001051struct kvm_device {
1052 struct kvm_device_ops *ops;
1053 struct kvm *kvm;
Scott Wood852b6d52013-04-12 14:08:42 +00001054 void *private;
Scott Wood07f0a7b2013-04-25 14:11:23 +00001055 struct list_head vm_node;
Scott Wood852b6d52013-04-12 14:08:42 +00001056};
1057
1058/* create, destroy, and name are mandatory */
1059struct kvm_device_ops {
1060 const char *name;
1061 int (*create)(struct kvm_device *dev, u32 type);
1062
1063 /*
1064 * Destroy is responsible for freeing dev.
1065 *
1066 * Destroy may be called before or after destructors are called
1067 * on emulated I/O regions, depending on whether a reference is
1068 * held by a vcpu or other kvm component that gets destroyed
1069 * after the emulated I/O.
1070 */
1071 void (*destroy)(struct kvm_device *dev);
1072
1073 int (*set_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1074 int (*get_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1075 int (*has_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1076 long (*ioctl)(struct kvm_device *dev, unsigned int ioctl,
1077 unsigned long arg);
1078};
1079
1080void kvm_device_get(struct kvm_device *dev);
1081void kvm_device_put(struct kvm_device *dev);
1082struct kvm_device *kvm_device_from_filp(struct file *filp);
Will Deacond60eacb2014-09-02 10:27:33 +01001083int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type);
Wanpeng Li571ee1b2014-10-09 18:30:08 +08001084void kvm_unregister_device_ops(u32 type);
Scott Wood852b6d52013-04-12 14:08:42 +00001085
Scott Wood5df554ad2013-04-12 14:08:46 +00001086extern struct kvm_device_ops kvm_mpic_ops;
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001087extern struct kvm_device_ops kvm_xics_ops;
Scott Wood5df554ad2013-04-12 14:08:46 +00001088
Raghavendra K T4c088492012-07-18 19:07:46 +05301089#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
1090
1091static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
1092{
1093 vcpu->spin_loop.in_spin_loop = val;
1094}
1095static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
1096{
1097 vcpu->spin_loop.dy_eligible = val;
1098}
1099
1100#else /* !CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
1101
1102static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
1103{
1104}
1105
1106static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
1107{
1108}
Raghavendra K T4c088492012-07-18 19:07:46 +05301109#endif /* CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
Avi Kivitybfd99ff2009-08-26 14:57:50 +03001110#endif
Marcelo Tosatti09a6e1f2013-03-22 08:08:06 -03001111