blob: 61c3e6c69f27f0660a7fe950819cbdafc43895c1 [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>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040028#include <asm/signal.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080029
Avi Kivity6aa8b732006-12-10 02:21:36 -080030#include <linux/kvm.h>
Ingo Molnar102d8322007-02-19 14:37:47 +020031#include <linux/kvm_para.h>
Avi Kivity6aa8b732006-12-10 02:21:36 -080032
Avi Kivityedf88412007-12-16 11:02:48 +020033#include <linux/kvm_types.h>
Hollis Blanchardd77a39d2007-12-03 15:30:23 -060034
Avi Kivityedf88412007-12-16 11:02:48 +020035#include <asm/kvm_host.h>
Zhang Xiantaod657a982007-12-14 09:41:22 +080036
Avi Kivity6aa8b732006-12-10 02:21:36 -080037/*
Xiao Guangrong67b29202012-08-21 10:58:45 +080038 * The bit 16 ~ bit 31 of kvm_memory_region::flags are internally used
39 * in kvm, other bits are visible for userspace which are defined in
40 * include/linux/kvm_h.
41 */
42#define KVM_MEMSLOT_INVALID (1UL << 16)
Ard Biesheuvel1050dcd2014-11-17 14:58:51 +000043#define KVM_MEMSLOT_INCOHERENT (1UL << 17)
Xiao Guangrong67b29202012-08-21 10:58:45 +080044
Xiao Guangrong87da7e62012-10-24 14:07:59 +080045/* Two fragments for cross MMIO pages. */
46#define KVM_MAX_MMIO_FRAGMENTS 2
Avi Kivityf78146b2012-04-18 19:22:47 +030047
Paolo Bonzinif481b062015-05-17 17:30:37 +020048#ifndef KVM_ADDRESS_SPACE_NUM
49#define KVM_ADDRESS_SPACE_NUM 1
50#endif
51
Avi Kivityf78146b2012-04-18 19:22:47 +030052/*
Xiao Guangrong9c5b1172012-08-03 15:43:51 +080053 * For the normal pfn, the highest 12 bits should be zero,
Xiao Guangrong81c52c52012-10-16 20:10:59 +080054 * so we can mask bit 62 ~ bit 52 to indicate the error pfn,
55 * mask bit 63 to indicate the noslot pfn.
Xiao Guangrong9c5b1172012-08-03 15:43:51 +080056 */
Xiao Guangrong81c52c52012-10-16 20:10:59 +080057#define KVM_PFN_ERR_MASK (0x7ffULL << 52)
58#define KVM_PFN_ERR_NOSLOT_MASK (0xfffULL << 52)
59#define KVM_PFN_NOSLOT (0x1ULL << 63)
Xiao Guangrong6c8ee572012-08-03 15:37:54 +080060
Xiao Guangrong9c5b1172012-08-03 15:43:51 +080061#define KVM_PFN_ERR_FAULT (KVM_PFN_ERR_MASK)
62#define KVM_PFN_ERR_HWPOISON (KVM_PFN_ERR_MASK + 1)
Xiao Guangrong81c52c52012-10-16 20:10:59 +080063#define KVM_PFN_ERR_RO_FAULT (KVM_PFN_ERR_MASK + 2)
Xiao Guangrong9c5b1172012-08-03 15:43:51 +080064
Xiao Guangrong81c52c52012-10-16 20:10:59 +080065/*
66 * error pfns indicate that the gfn is in slot but faild to
67 * translate it to pfn on host.
68 */
Xiao Guangrong9c5b1172012-08-03 15:43:51 +080069static inline bool is_error_pfn(pfn_t pfn)
Xiao Guangrong83f09222012-08-03 15:39:59 +080070{
Xiao Guangrong9c5b1172012-08-03 15:43:51 +080071 return !!(pfn & KVM_PFN_ERR_MASK);
Xiao Guangrong83f09222012-08-03 15:39:59 +080072}
73
Xiao Guangrong81c52c52012-10-16 20:10:59 +080074/*
75 * error_noslot pfns indicate that the gfn can not be
76 * translated to pfn - it is not in slot or failed to
77 * translate it to pfn.
78 */
79static inline bool is_error_noslot_pfn(pfn_t pfn)
Xiao Guangrong83f09222012-08-03 15:39:59 +080080{
Xiao Guangrong81c52c52012-10-16 20:10:59 +080081 return !!(pfn & KVM_PFN_ERR_NOSLOT_MASK);
Xiao Guangrong83f09222012-08-03 15:39:59 +080082}
83
Xiao Guangrong81c52c52012-10-16 20:10:59 +080084/* noslot pfn indicates that the gfn is not in slot. */
85static inline bool is_noslot_pfn(pfn_t pfn)
Xiao Guangrong83f09222012-08-03 15:39:59 +080086{
Xiao Guangrong81c52c52012-10-16 20:10:59 +080087 return pfn == KVM_PFN_NOSLOT;
Xiao Guangrong83f09222012-08-03 15:39:59 +080088}
89
Dominik Dingelbf640872013-07-26 15:04:07 +020090/*
91 * architectures with KVM_HVA_ERR_BAD other than PAGE_OFFSET (e.g. s390)
92 * provide own defines and kvm_is_error_hva
93 */
94#ifndef KVM_HVA_ERR_BAD
95
Xiao Guangrong7068d092012-08-21 11:02:22 +080096#define KVM_HVA_ERR_BAD (PAGE_OFFSET)
97#define KVM_HVA_ERR_RO_BAD (PAGE_OFFSET + PAGE_SIZE)
Xiao Guangrongca3a4902012-08-21 11:01:50 +080098
99static inline bool kvm_is_error_hva(unsigned long addr)
100{
Xiao Guangrong7068d092012-08-21 11:02:22 +0800101 return addr >= PAGE_OFFSET;
Xiao Guangrongca3a4902012-08-21 11:01:50 +0800102}
103
Dominik Dingelbf640872013-07-26 15:04:07 +0200104#endif
105
Xiao Guangrong6cede2e2012-08-03 15:41:22 +0800106#define KVM_ERR_PTR_BAD_PAGE (ERR_PTR(-ENOENT))
107
Xiao Guangrong9c5b1172012-08-03 15:43:51 +0800108static inline bool is_error_page(struct page *page)
Xiao Guangrong6cede2e2012-08-03 15:41:22 +0800109{
110 return IS_ERR(page);
111}
112
Avi Kivity6aa8b732006-12-10 02:21:36 -0800113/*
Avi Kivityd9e368d2007-06-07 19:18:30 +0300114 * vcpu->requests bit members
115 */
Avi Kivity3176bc32007-10-16 17:22:08 +0200116#define KVM_REQ_TLB_FLUSH 0
Avi Kivity2f52d582008-01-16 12:49:30 +0200117#define KVM_REQ_MIGRATE_TIMER 1
Avi Kivityb209749f2007-10-22 16:50:39 +0200118#define KVM_REQ_REPORT_TPR_ACCESS 2
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500119#define KVM_REQ_MMU_RELOAD 3
Joerg Roedel71c4dfa2008-02-26 16:49:16 +0100120#define KVM_REQ_TRIPLE_FAULT 4
Marcelo Tosatti06e05642008-06-06 16:37:36 -0300121#define KVM_REQ_PENDING_TIMER 5
Marcelo Tosattid7690172008-09-08 15:23:48 -0300122#define KVM_REQ_UNHALT 6
Marcelo Tosatti4731d4c2008-09-23 13:18:39 -0300123#define KVM_REQ_MMU_SYNC 7
Zachary Amsden34c238a2010-09-18 14:38:14 -1000124#define KVM_REQ_CLOCK_UPDATE 8
Marcelo Tosatti32f88402009-05-07 17:55:12 -0300125#define KVM_REQ_KICK 9
Avi Kivity02daab22009-12-30 12:40:26 +0200126#define KVM_REQ_DEACTIVATE_FPU 10
Avi Kivity3842d132010-07-27 12:30:24 +0300127#define KVM_REQ_EVENT 11
Gleb Natapovaf585b92010-10-14 11:22:46 +0200128#define KVM_REQ_APF_HALT 12
Glauber Costac9aaa892011-07-11 15:28:14 -0400129#define KVM_REQ_STEAL_UPDATE 13
Avi Kivity7460fb4a2011-09-20 13:43:14 +0300130#define KVM_REQ_NMI 14
Jan Kiszka730dca42013-04-28 10:50:52 +0200131#define KVM_REQ_PMU 15
132#define KVM_REQ_PMI 16
133#define KVM_REQ_WATCHDOG 17
134#define KVM_REQ_MASTERCLOCK_UPDATE 18
135#define KVM_REQ_MCLOCK_INPROGRESS 19
136#define KVM_REQ_EPR_EXIT 20
137#define KVM_REQ_SCAN_IOAPIC 21
Marcelo Tosatti0061d532013-05-09 20:21:41 -0300138#define KVM_REQ_GLOBAL_CLOCK_UPDATE 22
David Hildenbrand8ad35752014-03-14 11:00:21 +0100139#define KVM_REQ_ENABLE_IBS 23
140#define KVM_REQ_DISABLE_IBS 24
Tang Chen4256f432014-09-24 15:57:54 +0800141#define KVM_REQ_APIC_PAGE_RELOAD 25
Paolo Bonzini64d60672015-05-07 11:36:11 +0200142#define KVM_REQ_SMI 26
Andrey Smetanin2ce79182015-07-03 15:01:41 +0300143#define KVM_REQ_HV_CRASH 27
Steve Rutherford7543a632015-07-29 23:21:41 -0700144#define KVM_REQ_IOAPIC_EOI_EXIT 28
Andrey Smetanine516ceb2015-09-16 12:29:48 +0300145#define KVM_REQ_HV_RESET 29
Andrey Smetanindb3975712015-11-10 15:36:35 +0300146#define KVM_REQ_HV_EXIT 30
Andrey Smetanin1f4b34f2015-11-30 19:22:21 +0300147#define KVM_REQ_HV_STIMER 31
Avi Kivity6aa8b732006-12-10 02:21:36 -0800148
Alex Williamson7a844282012-09-21 11:58:03 -0600149#define KVM_USERSPACE_IRQ_SOURCE_ID 0
150#define KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID 1
Sheng Yang5550af42008-10-15 20:15:06 +0800151
Rusty Russellc16f8622007-07-30 21:12:19 +1000152extern struct kmem_cache *kvm_vcpu_cache;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800153
Paolo Bonzini2f303b72013-09-25 13:53:07 +0200154extern spinlock_t kvm_lock;
Geoff Levandfc1b7492013-04-05 19:20:30 +0000155extern struct list_head vm_list;
156
Sasha Levin743eeb02011-07-27 16:00:48 +0300157struct kvm_io_range {
158 gpa_t addr;
159 int len;
160 struct kvm_io_device *dev;
161};
162
Amos Kong786a9f82012-03-09 12:17:40 +0800163#define NR_IOBUS_DEVS 1000
Amos Konga13007162012-03-09 12:17:32 +0800164
Gregory Haskins2eeb2e92007-05-31 14:08:53 -0400165struct kvm_io_bus {
Amos Kong6ea34c92013-05-25 06:44:15 +0800166 int dev_count;
167 int ioeventfd_count;
Amos Konga13007162012-03-09 12:17:32 +0800168 struct kvm_io_range range[];
Gregory Haskins2eeb2e92007-05-31 14:08:53 -0400169};
170
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200171enum kvm_bus {
172 KVM_MMIO_BUS,
173 KVM_PIO_BUS,
Cornelia Huck060f0ce2013-02-28 12:33:19 +0100174 KVM_VIRTIO_CCW_NOTIFY_BUS,
Michael S. Tsirkin68c3b4d2014-03-31 21:50:44 +0300175 KVM_FAST_MMIO_BUS,
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200176 KVM_NR_BUSES
177};
178
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +0000179int kvm_io_bus_write(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200180 int len, const void *val);
Nikolay Nikolaeve32edf42015-03-26 14:39:28 +0000181int kvm_io_bus_write_cookie(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx,
182 gpa_t addr, int len, const void *val, long cookie);
183int kvm_io_bus_read(struct kvm_vcpu *vcpu, enum kvm_bus bus_idx, gpa_t addr,
184 int len, void *val);
Sasha Levin743eeb02011-07-27 16:00:48 +0300185int kvm_io_bus_register_dev(struct kvm *kvm, enum kvm_bus bus_idx, gpa_t addr,
186 int len, struct kvm_io_device *dev);
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200187int kvm_io_bus_unregister_dev(struct kvm *kvm, enum kvm_bus bus_idx,
188 struct kvm_io_device *dev);
Gregory Haskins2eeb2e92007-05-31 14:08:53 -0400189
Gleb Natapovaf585b92010-10-14 11:22:46 +0200190#ifdef CONFIG_KVM_ASYNC_PF
191struct kvm_async_pf {
192 struct work_struct work;
193 struct list_head link;
194 struct list_head queue;
195 struct kvm_vcpu *vcpu;
196 struct mm_struct *mm;
197 gva_t gva;
198 unsigned long addr;
199 struct kvm_arch_async_pf arch;
chai wenf2e10662013-10-14 22:22:33 +0800200 bool wakeup_all;
Gleb Natapovaf585b92010-10-14 11:22:46 +0200201};
202
203void kvm_clear_async_pf_completion_queue(struct kvm_vcpu *vcpu);
204void kvm_check_async_pf_completion(struct kvm_vcpu *vcpu);
Dominik Dingele0ead412013-06-06 15:32:37 +0200205int kvm_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, unsigned long hva,
Gleb Natapovaf585b92010-10-14 11:22:46 +0200206 struct kvm_arch_async_pf *arch);
Gleb Natapov344d9582010-10-14 11:22:50 +0200207int kvm_async_pf_wakeup_all(struct kvm_vcpu *vcpu);
Gleb Natapovaf585b92010-10-14 11:22:46 +0200208#endif
209
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800210enum {
211 OUTSIDE_GUEST_MODE,
212 IN_GUEST_MODE,
Avi Kivityc1427862012-05-14 15:44:06 +0300213 EXITING_GUEST_MODE,
214 READING_SHADOW_PAGE_TABLES,
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800215};
216
Avi Kivityf78146b2012-04-18 19:22:47 +0300217/*
218 * Sometimes a large or cross-page mmio needs to be broken up into separate
219 * exits for userspace servicing.
220 */
221struct kvm_mmio_fragment {
222 gpa_t gpa;
223 void *data;
224 unsigned len;
225};
226
Zhang Xiantaod657a982007-12-14 09:41:22 +0800227struct kvm_vcpu {
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800228 struct kvm *kvm;
Hollis Blanchard31bb1172008-01-28 17:42:34 -0600229#ifdef CONFIG_PREEMPT_NOTIFIERS
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800230 struct preempt_notifier preempt_notifier;
Hollis Blanchard31bb1172008-01-28 17:42:34 -0600231#endif
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800232 int cpu;
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800233 int vcpu_id;
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800234 int srcu_idx;
235 int mode;
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800236 unsigned long requests;
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100237 unsigned long guest_debug;
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800238
Feng Wubf9f6ac2015-09-18 22:29:55 +0800239 int pre_pcpu;
240 struct list_head blocked_vcpu_list;
241
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800242 struct mutex mutex;
243 struct kvm_run *run;
Marcelo Tosattif656ce02009-12-23 14:35:25 -0200244
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800245 int fpu_active;
Dexuan Cui2acf9232010-06-10 11:27:12 +0800246 int guest_fpu_loaded, guest_xcr0_loaded;
Rik van Riel653f52c2015-04-23 11:52:37 -0400247 unsigned char fpu_counter;
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;
Wanpeng Li19020f82015-09-03 22:07:37 +0800253 unsigned int halt_poll_ns;
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800254
255#ifdef CONFIG_HAS_IOMEM
256 int mmio_needed;
257 int mmio_read_completed;
258 int mmio_is_write;
Avi Kivityf78146b2012-04-18 19:22:47 +0300259 int mmio_cur_fragment;
260 int mmio_nr_fragments;
261 struct kvm_mmio_fragment mmio_fragments[KVM_MAX_MMIO_FRAGMENTS];
Zhang Xiantaod17fbbf2007-12-14 09:45:31 +0800262#endif
Zhang Xiantaod657a982007-12-14 09:41:22 +0800263
Gleb Natapovaf585b92010-10-14 11:22:46 +0200264#ifdef CONFIG_KVM_ASYNC_PF
265 struct {
266 u32 queued;
267 struct list_head queue;
268 struct list_head done;
269 spinlock_t lock;
270 } async_pf;
271#endif
272
Raghavendra K T4c088492012-07-18 19:07:46 +0530273#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
274 /*
275 * Cpu relax intercept or pause loop exit optimization
276 * in_spin_loop: set when a vcpu does a pause loop exit
277 * or cpu relax intercepted.
278 * dy_eligible: indicates whether vcpu is eligible for directed yield.
279 */
280 struct {
281 bool in_spin_loop;
282 bool dy_eligible;
283 } spin_loop;
284#endif
Raghavendra K T3a08a8f2013-03-04 23:32:07 +0530285 bool preempted;
Zhang Xiantaod657a982007-12-14 09:41:22 +0800286 struct kvm_vcpu_arch arch;
287};
288
Xiao Guangrong6b7e2d02011-01-12 15:40:31 +0800289static inline int kvm_vcpu_exiting_guest_mode(struct kvm_vcpu *vcpu)
290{
291 return cmpxchg(&vcpu->mode, IN_GUEST_MODE, EXITING_GUEST_MODE);
292}
293
Takuya Yoshikawa660c22c2010-04-13 22:47:24 +0900294/*
295 * Some of the bitops functions do not support too long bitmaps.
296 * This number must be determined not to exceed such limits.
297 */
298#define KVM_MEM_MAX_NR_PAGES ((1UL << 31) - 1)
299
Avi Kivity6aa8b732006-12-10 02:21:36 -0800300struct kvm_memory_slot {
301 gfn_t base_gfn;
302 unsigned long npages;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800303 unsigned long *dirty_bitmap;
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900304 struct kvm_arch_memory_slot arch;
Izik Eidus8a7ae052007-10-18 11:09:33 +0200305 unsigned long userspace_addr;
Alex Williamson6104f472012-12-10 10:33:26 -0700306 u32 flags;
Alex Williamson1e702d92012-12-10 10:33:32 -0700307 short id;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800308};
309
Takuya Yoshikawa87bf6e72010-04-12 19:35:35 +0900310static inline unsigned long kvm_dirty_bitmap_bytes(struct kvm_memory_slot *memslot)
311{
312 return ALIGN(memslot->npages, BITS_PER_LONG) / 8;
313}
314
Cornelia Huck84223592013-07-15 13:36:01 +0200315struct kvm_s390_adapter_int {
316 u64 ind_addr;
317 u64 summary_addr;
318 u64 ind_offset;
319 u32 summary_offset;
320 u32 adapter_id;
321};
322
Andrey Smetanin5c9194122015-11-10 15:36:34 +0300323struct kvm_hv_sint {
324 u32 vcpu;
325 u32 sint;
326};
327
Avi Kivity399ec802008-11-19 13:58:46 +0200328struct kvm_kernel_irq_routing_entry {
329 u32 gsi;
Michael S. Tsirkin5116d8f2009-07-26 17:10:01 +0300330 u32 type;
Gleb Natapov49256632009-02-04 17:28:14 +0200331 int (*set)(struct kvm_kernel_irq_routing_entry *e,
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800332 struct kvm *kvm, int irq_source_id, int level,
333 bool line_status);
Avi Kivity399ec802008-11-19 13:58:46 +0200334 union {
335 struct {
336 unsigned irqchip;
337 unsigned pin;
338 } irqchip;
Sheng Yang79950e12009-02-10 13:57:06 +0800339 struct msi_msg msi;
Cornelia Huck84223592013-07-15 13:36:01 +0200340 struct kvm_s390_adapter_int adapter;
Andrey Smetanin5c9194122015-11-10 15:36:34 +0300341 struct kvm_hv_sint hv_sint;
Avi Kivity399ec802008-11-19 13:58:46 +0200342 };
Gleb Natapov46e624b2009-08-24 11:54:20 +0300343 struct hlist_node link;
344};
345
Steve Rutherfordb053b2a2015-07-29 23:32:35 -0700346#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
347struct kvm_irq_routing_table {
348 int chip[KVM_NR_IRQCHIPS][KVM_IRQCHIP_NUM_PINS];
349 u32 nr_rt_entries;
350 /*
351 * Array indexed by gsi. Each entry contains list of irq chips
352 * the gsi is connected to.
353 */
354 struct hlist_head map[0];
355};
356#endif
357
Alex Williamson07432472012-12-10 10:33:15 -0700358#ifndef KVM_PRIVATE_MEM_SLOTS
359#define KVM_PRIVATE_MEM_SLOTS 0
360#endif
361
Xiao Guangrong93a5cef2011-11-24 17:37:48 +0800362#ifndef KVM_MEM_SLOTS_NUM
Alex Williamsonbbacc0c2012-12-10 10:33:09 -0700363#define KVM_MEM_SLOTS_NUM (KVM_USER_MEM_SLOTS + KVM_PRIVATE_MEM_SLOTS)
Xiao Guangrong93a5cef2011-11-24 17:37:48 +0800364#endif
365
Paolo Bonzinif481b062015-05-17 17:30:37 +0200366#ifndef __KVM_VCPU_MULTIPLE_ADDRESS_SPACE
367static inline int kvm_arch_vcpu_memslots_id(struct kvm_vcpu *vcpu)
368{
369 return 0;
370}
371#endif
372
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800373/*
374 * Note:
375 * memslots are not sorted by id anymore, please use id_to_memslot()
376 * to get the memslot by its id.
377 */
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200378struct kvm_memslots {
Gleb Natapov49c77542010-10-18 15:22:23 +0200379 u64 generation;
Xiao Guangrong93a5cef2011-11-24 17:37:48 +0800380 struct kvm_memory_slot memslots[KVM_MEM_SLOTS_NUM];
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800381 /* The mapping table from slot id to the index in memslots[]. */
Alex Williamson1e702d92012-12-10 10:33:32 -0700382 short id_to_index[KVM_MEM_SLOTS_NUM];
Igor Mammedovd4ae84a02014-12-01 17:29:25 +0000383 atomic_t lru_slot;
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000384 int used_slots;
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200385};
386
Avi Kivity6aa8b732006-12-10 02:21:36 -0800387struct kvm {
Marcelo Tosattiaaee2c92007-12-20 19:18:26 -0500388 spinlock_t mmu_lock;
Marcelo Tosatti79fac952009-12-23 14:35:26 -0200389 struct mutex slots_lock;
Avi Kivity6d4e4c42007-11-21 16:41:05 +0200390 struct mm_struct *mm; /* userspace tied to this vm */
Paolo Bonzinif481b062015-05-17 17:30:37 +0200391 struct kvm_memslots *memslots[KVM_ADDRESS_SPACE_NUM];
Marcelo Tosattibc6678a2009-12-23 14:35:21 -0200392 struct srcu_struct srcu;
Christian Borntraeger719d93c2014-01-16 13:44:20 +0100393 struct srcu_struct irq_srcu;
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000394 struct kvm_vcpu *vcpus[KVM_MAX_VCPUS];
Gleb Natapov73880c82009-06-09 15:56:28 +0300395 atomic_t online_vcpus;
Rik van Riel217ece62011-02-01 09:53:28 -0500396 int last_boosted_vcpu;
Avi Kivity133de902007-02-12 00:54:44 -0800397 struct list_head vm_list;
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300398 struct mutex lock;
Marcelo Tosattie93f8a02009-12-23 14:35:24 -0200399 struct kvm_io_bus *buses[KVM_NR_BUSES];
Gregory Haskins721eecb2009-05-20 10:30:49 -0400400#ifdef CONFIG_HAVE_KVM_EVENTFD
401 struct {
402 spinlock_t lock;
403 struct list_head items;
Alex Williamson7a844282012-09-21 11:58:03 -0600404 struct list_head resampler_list;
405 struct mutex resampler_lock;
Gregory Haskins721eecb2009-05-20 10:30:49 -0400406 } irqfds;
Gregory Haskinsd34e6b12009-07-07 17:08:49 -0400407 struct list_head ioeventfds;
Gregory Haskins721eecb2009-05-20 10:30:49 -0400408#endif
Avi Kivityba1389b2007-11-18 16:24:12 +0200409 struct kvm_vm_stat stat;
Zhang Xiantaod69fb812007-12-14 09:54:20 +0800410 struct kvm_arch arch;
Izik Eidusd39f13b2008-03-30 16:01:25 +0300411 atomic_t users_count;
Laurent Vivier5f94c172008-05-30 16:05:54 +0200412#ifdef KVM_COALESCED_MMIO_PAGE_OFFSET
Laurent Vivier5f94c172008-05-30 16:05:54 +0200413 struct kvm_coalesced_mmio_ring *coalesced_mmio_ring;
Sasha Levin2b3c2462011-07-20 20:59:00 +0300414 spinlock_t ring_lock;
415 struct list_head coalesced_zones;
Laurent Vivier5f94c172008-05-30 16:05:54 +0200416#endif
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200417
Marcelo Tosatti60eead72009-06-04 15:08:23 -0300418 struct mutex irq_lock;
Avi Kivity75858a82009-01-04 17:10:50 +0200419#ifdef CONFIG_HAVE_KVM_IRQCHIP
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200420 /*
Paul Mackerras9957c862014-06-30 20:51:11 +1000421 * Update side is protected by irq_lock.
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200422 */
Arnd Bergmann4b6a2872010-03-04 15:59:23 +0100423 struct kvm_irq_routing_table __rcu *irq_routing;
Paolo Bonzinic77dcac2014-08-06 14:24:45 +0200424#endif
425#ifdef CONFIG_HAVE_KVM_IRQFD
Gleb Natapov136bdfe2009-08-24 11:54:23 +0300426 struct hlist_head irq_ack_notifier_list;
Avi Kivity75858a82009-01-04 17:10:50 +0200427#endif
428
Marc Zyngier36c1ed82012-06-15 15:07:24 -0400429#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
Andrea Arcangelie930bff2008-07-25 16:24:52 +0200430 struct mmu_notifier mmu_notifier;
431 unsigned long mmu_notifier_seq;
432 long mmu_notifier_count;
433#endif
Xiao Guangronga086f6a2014-04-17 17:06:12 +0800434 long tlbs_dirty;
Scott Wood07f0a7b2013-04-25 14:11:23 +0000435 struct list_head devices;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800436};
437
Christoffer Dalla737f252012-06-03 21:17:48 +0300438#define kvm_err(fmt, ...) \
439 pr_err("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
440#define kvm_info(fmt, ...) \
441 pr_info("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
442#define kvm_debug(fmt, ...) \
443 pr_debug("kvm [%i]: " fmt, task_pid_nr(current), ## __VA_ARGS__)
444#define kvm_pr_unimpl(fmt, ...) \
445 pr_err_ratelimited("kvm [%i]: " fmt, \
446 task_tgid_nr(current), ## __VA_ARGS__)
Rusty Russellf0242472007-08-01 10:48:02 +1000447
Christoffer Dalla737f252012-06-03 21:17:48 +0300448/* The guest did something we don't support. */
449#define vcpu_unimpl(vcpu, fmt, ...) \
Borislav Petkov671d9ab2015-11-20 19:52:12 +0100450 kvm_pr_unimpl("vcpu%i, guest rIP: 0x%lx " fmt, \
451 (vcpu)->vcpu_id, kvm_rip_read(vcpu), ## __VA_ARGS__)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800452
Andrey Smetaninee86dbc2015-07-03 15:01:35 +0300453#define vcpu_debug(vcpu, fmt, ...) \
454 kvm_debug("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
Andrey Smetanin765eaa02015-11-30 19:22:20 +0300455#define vcpu_err(vcpu, fmt, ...) \
456 kvm_err("vcpu%i " fmt, (vcpu)->vcpu_id, ## __VA_ARGS__)
Andrey Smetaninee86dbc2015-07-03 15:01:35 +0300457
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300458static inline struct kvm_vcpu *kvm_get_vcpu(struct kvm *kvm, int i)
459{
Paolo Bonzinidd489242015-07-29 11:32:20 +0200460 /* Pairs with smp_wmb() in kvm_vm_ioctl_create_vcpu, in case
461 * the caller has read kvm->online_vcpus before (as is the case
462 * for kvm_for_each_vcpu, for example).
463 */
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300464 smp_rmb();
465 return kvm->vcpus[i];
466}
467
468#define kvm_for_each_vcpu(idx, vcpup, kvm) \
Jeff Mahoneyb42fc3c2011-04-12 21:30:17 -0400469 for (idx = 0; \
470 idx < atomic_read(&kvm->online_vcpus) && \
471 (vcpup = kvm_get_vcpu(kvm, idx)) != NULL; \
472 idx++)
Gleb Natapov988a2ca2009-06-09 15:56:29 +0300473
David Hildenbranddb27a7a2015-11-05 09:03:50 +0100474static inline struct kvm_vcpu *kvm_get_vcpu_by_id(struct kvm *kvm, int id)
475{
476 struct kvm_vcpu *vcpu;
477 int i;
478
David Hildenbrandc8969392015-11-05 09:55:08 +0100479 if (id < 0 || id >= KVM_MAX_VCPUS)
480 return NULL;
481 vcpu = kvm_get_vcpu(kvm, id);
482 if (vcpu && vcpu->vcpu_id == id)
483 return vcpu;
David Hildenbranddb27a7a2015-11-05 09:03:50 +0100484 kvm_for_each_vcpu(i, vcpu, kvm)
485 if (vcpu->vcpu_id == id)
486 return vcpu;
487 return NULL;
488}
489
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800490#define kvm_for_each_memslot(memslot, slots) \
491 for (memslot = &slots->memslots[0]; \
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800492 memslot < slots->memslots + KVM_MEM_SLOTS_NUM && memslot->npages;\
493 memslot++)
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800494
Rusty Russellfb3f0f52007-07-27 17:16:56 +1000495int kvm_vcpu_init(struct kvm_vcpu *vcpu, struct kvm *kvm, unsigned id);
496void kvm_vcpu_uninit(struct kvm_vcpu *vcpu);
497
Michael S. Tsirkin9fc77442012-09-16 11:50:30 +0300498int __must_check vcpu_load(struct kvm_vcpu *vcpu);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200499void vcpu_put(struct kvm_vcpu *vcpu);
500
Paolo Bonzini6ef768f2014-11-20 13:45:31 +0100501#ifdef __KVM_HAVE_IOAPIC
502void kvm_vcpu_request_scan_ioapic(struct kvm *kvm);
Andrey Smetaninabdb0802015-11-10 15:36:31 +0300503void kvm_arch_post_irq_routing_update(struct kvm *kvm);
Paolo Bonzini6ef768f2014-11-20 13:45:31 +0100504#else
505static inline void kvm_vcpu_request_scan_ioapic(struct kvm *kvm)
506{
507}
Andrey Smetaninabdb0802015-11-10 15:36:31 +0300508static inline void kvm_arch_post_irq_routing_update(struct kvm *kvm)
Steve Rutherfordb053b2a2015-07-29 23:32:35 -0700509{
510}
Paolo Bonzini6ef768f2014-11-20 13:45:31 +0100511#endif
512
Paul Mackerras297e2102014-06-30 20:51:13 +1000513#ifdef CONFIG_HAVE_KVM_IRQFD
Cornelia Hucka0f155e2013-02-28 12:33:18 +0100514int kvm_irqfd_init(void);
515void kvm_irqfd_exit(void);
516#else
517static inline int kvm_irqfd_init(void)
518{
519 return 0;
520}
521
522static inline void kvm_irqfd_exit(void)
523{
524}
525#endif
Avi Kivity0ee75be2010-04-28 15:39:01 +0300526int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
Rusty Russellc16f8622007-07-30 21:12:19 +1000527 struct module *module);
Zhang Xiantaocb498ea2007-11-14 20:39:31 +0800528void kvm_exit(void);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800529
Izik Eidusd39f13b2008-03-30 16:01:25 +0300530void kvm_get_kvm(struct kvm *kvm);
531void kvm_put_kvm(struct kvm *kvm);
532
Paolo Bonzinif481b062015-05-17 17:30:37 +0200533static inline struct kvm_memslots *__kvm_memslots(struct kvm *kvm, int as_id)
Lai Jiangshan90d83dc2010-04-19 17:41:23 +0800534{
Paolo Bonzinif481b062015-05-17 17:30:37 +0200535 return rcu_dereference_check(kvm->memslots[as_id],
Lai Jiangshan90d83dc2010-04-19 17:41:23 +0800536 srcu_read_lock_held(&kvm->srcu)
537 || lockdep_is_held(&kvm->slots_lock));
538}
539
Paolo Bonzinif481b062015-05-17 17:30:37 +0200540static inline struct kvm_memslots *kvm_memslots(struct kvm *kvm)
541{
542 return __kvm_memslots(kvm, 0);
543}
544
Paolo Bonzini8e734852015-05-17 13:58:53 +0200545static inline struct kvm_memslots *kvm_vcpu_memslots(struct kvm_vcpu *vcpu)
546{
Paolo Bonzinif481b062015-05-17 17:30:37 +0200547 int as_id = kvm_arch_vcpu_memslots_id(vcpu);
548
549 return __kvm_memslots(vcpu->kvm, as_id);
Paolo Bonzini8e734852015-05-17 13:58:53 +0200550}
551
Xiao Guangrong28a37542011-11-24 19:04:35 +0800552static inline struct kvm_memory_slot *
553id_to_memslot(struct kvm_memslots *slots, int id)
554{
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800555 int index = slots->id_to_index[id];
556 struct kvm_memory_slot *slot;
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800557
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800558 slot = &slots->memslots[index];
Xiao Guangrongbf3e05b2011-11-24 17:40:57 +0800559
Xiao Guangrongf85e2cb2011-11-24 17:41:54 +0800560 WARN_ON(slot->id != id);
561 return slot;
Xiao Guangrong28a37542011-11-24 19:04:35 +0800562}
563
Takuya Yoshikawa74d07272013-02-27 19:43:44 +0900564/*
565 * KVM_SET_USER_MEMORY_REGION ioctl allows the following operations:
566 * - create a new memory slot
567 * - delete an existing memory slot
568 * - modify an existing memory slot
569 * -- move it in the guest physical memory space
570 * -- just change its flags
571 *
572 * Since flags can be changed by some of these operations, the following
573 * differentiation is the best we can do for __kvm_set_memory_region():
574 */
575enum kvm_mr_change {
576 KVM_MR_CREATE,
577 KVM_MR_DELETE,
578 KVM_MR_MOVE,
579 KVM_MR_FLAGS_ONLY,
580};
581
Izik Eidus210c7c42007-10-24 23:52:57 +0200582int kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200583 const struct kvm_userspace_memory_region *mem);
Sheng Yangf78e0e22007-10-29 09:40:42 +0800584int __kvm_set_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200585 const struct kvm_userspace_memory_region *mem);
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530586void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free,
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900587 struct kvm_memory_slot *dont);
Aneesh Kumar K.V55870272013-10-07 22:18:00 +0530588int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
589 unsigned long npages);
Paolo Bonzini15f46012015-05-17 21:26:08 +0200590void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200591int kvm_arch_prepare_memory_region(struct kvm *kvm,
592 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200593 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +0900594 enum kvm_mr_change change);
Marcelo Tosattif7784b82009-12-23 14:35:18 -0200595void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +0200596 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900597 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +0200598 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +0900599 enum kvm_mr_change change);
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +0900600bool kvm_largepages_enabled(void);
Marcelo Tosatti54dee992009-06-11 12:07:44 -0300601void kvm_disable_largepages(void);
Marcelo Tosatti2df72e92012-08-24 15:54:57 -0300602/* flush all memory translations */
603void kvm_arch_flush_shadow_all(struct kvm *kvm);
604/* flush memory translations pointing to 'slot' */
605void kvm_arch_flush_shadow_memslot(struct kvm *kvm,
606 struct kvm_memory_slot *slot);
Marcelo Tosattia983fb22009-12-23 14:35:23 -0200607
Paolo Bonzinid9ef13c2015-05-19 16:01:50 +0200608int gfn_to_page_many_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
609 struct page **pages, int nr_pages);
Xiao Guangrong48987782010-08-22 19:11:43 +0800610
Avi Kivity954bbbc2007-03-30 14:02:32 +0300611struct page *gfn_to_page(struct kvm *kvm, gfn_t gfn);
Marcelo Tosatti05da4552008-02-23 11:44:30 -0300612unsigned long gfn_to_hva(struct kvm *kvm, gfn_t gfn);
Paolo Bonziniba6a3542013-09-09 13:52:33 +0200613unsigned long gfn_to_hva_prot(struct kvm *kvm, gfn_t gfn, bool *writable);
Xiao Guangrong4d8b81a2012-08-21 11:02:51 +0800614unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
Christoffer Dall64d83122014-08-19 12:15:00 +0200615unsigned long gfn_to_hva_memslot_prot(struct kvm_memory_slot *slot, gfn_t gfn,
616 bool *writable);
Izik Eidusb4231d62007-11-20 11:49:33 +0200617void kvm_release_page_clean(struct page *page);
618void kvm_release_page_dirty(struct page *page);
Anthony Liguori35149e22008-04-02 14:46:56 -0500619void kvm_set_page_accessed(struct page *page);
620
Xiao Guangrong365fb3f2010-08-28 19:24:13 +0800621pfn_t gfn_to_pfn_atomic(struct kvm *kvm, gfn_t gfn);
Anthony Liguori35149e22008-04-02 14:46:56 -0500622pfn_t gfn_to_pfn(struct kvm *kvm, gfn_t gfn);
Marcelo Tosatti612819c2010-10-22 14:18:18 -0200623pfn_t gfn_to_pfn_prot(struct kvm *kvm, gfn_t gfn, bool write_fault,
624 bool *writable);
Xiao Guangrongd5661042012-07-17 21:56:16 +0800625pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn);
Xiao Guangrong037d92d2012-08-21 10:59:12 +0800626pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn);
Paolo Bonzini35204692015-04-02 11:20:48 +0200627pfn_t __gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn, bool atomic,
628 bool *async, bool write_fault, bool *writable);
Xiao Guangrong037d92d2012-08-21 10:59:12 +0800629
Anthony Liguori35149e22008-04-02 14:46:56 -0500630void kvm_release_pfn_clean(pfn_t pfn);
631void kvm_set_pfn_dirty(pfn_t pfn);
632void kvm_set_pfn_accessed(pfn_t pfn);
633void kvm_get_pfn(pfn_t pfn);
634
Izik Eidus195aefd2007-10-01 22:14:18 +0200635int kvm_read_guest_page(struct kvm *kvm, gfn_t gfn, void *data, int offset,
636 int len);
Marcelo Tosatti7ec54582007-12-20 19:18:23 -0500637int kvm_read_guest_atomic(struct kvm *kvm, gpa_t gpa, void *data,
638 unsigned long len);
Izik Eidus195aefd2007-10-01 22:14:18 +0200639int kvm_read_guest(struct kvm *kvm, gpa_t gpa, void *data, unsigned long len);
Gleb Natapove03b6442011-07-11 15:28:11 -0400640int kvm_read_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
641 void *data, unsigned long len);
Izik Eidus195aefd2007-10-01 22:14:18 +0200642int kvm_write_guest_page(struct kvm *kvm, gfn_t gfn, const void *data,
643 int offset, int len);
644int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
645 unsigned long len);
Gleb Natapov49c77542010-10-18 15:22:23 +0200646int kvm_write_guest_cached(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
647 void *data, unsigned long len);
648int kvm_gfn_to_hva_cache_init(struct kvm *kvm, struct gfn_to_hva_cache *ghc,
Andrew Honig8f964522013-03-29 09:35:21 -0700649 gpa_t gpa, unsigned long len);
Izik Eidus195aefd2007-10-01 22:14:18 +0200650int kvm_clear_guest_page(struct kvm *kvm, gfn_t gfn, int offset, int len);
651int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800652struct kvm_memory_slot *gfn_to_memslot(struct kvm *kvm, gfn_t gfn);
Yaowei Bai33e94152015-11-14 11:21:06 +0800653bool kvm_is_visible_gfn(struct kvm *kvm, gfn_t gfn);
Joerg Roedel8f0b1ab2010-01-28 12:37:56 +0100654unsigned long kvm_host_page_size(struct kvm *kvm, gfn_t gfn);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800655void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
656
Paolo Bonzini8e734852015-05-17 13:58:53 +0200657struct kvm_memslots *kvm_vcpu_memslots(struct kvm_vcpu *vcpu);
658struct kvm_memory_slot *kvm_vcpu_gfn_to_memslot(struct kvm_vcpu *vcpu, gfn_t gfn);
659pfn_t kvm_vcpu_gfn_to_pfn_atomic(struct kvm_vcpu *vcpu, gfn_t gfn);
660pfn_t kvm_vcpu_gfn_to_pfn(struct kvm_vcpu *vcpu, gfn_t gfn);
661struct page *kvm_vcpu_gfn_to_page(struct kvm_vcpu *vcpu, gfn_t gfn);
662unsigned long kvm_vcpu_gfn_to_hva(struct kvm_vcpu *vcpu, gfn_t gfn);
663unsigned long kvm_vcpu_gfn_to_hva_prot(struct kvm_vcpu *vcpu, gfn_t gfn, bool *writable);
664int kvm_vcpu_read_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, void *data, int offset,
665 int len);
666int kvm_vcpu_read_guest_atomic(struct kvm_vcpu *vcpu, gpa_t gpa, void *data,
667 unsigned long len);
668int kvm_vcpu_read_guest(struct kvm_vcpu *vcpu, gpa_t gpa, void *data,
669 unsigned long len);
670int kvm_vcpu_write_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, const void *data,
671 int offset, int len);
672int kvm_vcpu_write_guest(struct kvm_vcpu *vcpu, gpa_t gpa, const void *data,
673 unsigned long len);
674void kvm_vcpu_mark_page_dirty(struct kvm_vcpu *vcpu, gfn_t gfn);
675
Hollis Blanchard8776e512007-10-31 17:24:24 -0500676void kvm_vcpu_block(struct kvm_vcpu *vcpu);
Christoffer Dall3217f7c2015-08-27 16:41:15 +0200677void kvm_arch_vcpu_blocking(struct kvm_vcpu *vcpu);
678void kvm_arch_vcpu_unblocking(struct kvm_vcpu *vcpu);
Christoffer Dallb6d33832012-03-08 16:44:24 -0500679void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
Dan Carpenterfa933842014-05-23 13:20:42 +0300680int kvm_vcpu_yield_to(struct kvm_vcpu *target);
Zhai, Edwind255f4f2009-10-09 18:03:20 +0800681void kvm_vcpu_on_spin(struct kvm_vcpu *vcpu);
Avi Kivity7702fd12007-06-14 16:27:40 +0300682void kvm_load_guest_fpu(struct kvm_vcpu *vcpu);
683void kvm_put_guest_fpu(struct kvm_vcpu *vcpu);
Xiao Guangronga4ee1ca2010-11-23 11:13:00 +0800684
Avi Kivityd9e368d2007-06-07 19:18:30 +0300685void kvm_flush_remote_tlbs(struct kvm *kvm);
Marcelo Tosatti2e53d632008-02-20 14:47:24 -0500686void kvm_reload_remote_mmus(struct kvm *kvm);
Marcelo Tosattid8281992012-11-27 23:29:01 -0200687void kvm_make_mclock_inprogress_request(struct kvm *kvm);
Yang Zhang3d81bc72013-04-11 19:25:13 +0800688void kvm_make_scan_ioapic_request(struct kvm *kvm);
Tang Chen445b8232014-09-24 15:57:55 +0800689bool kvm_make_all_cpus_request(struct kvm *kvm, unsigned int req);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800690
Carsten Otte043405e2007-10-10 17:16:19 +0200691long kvm_arch_dev_ioctl(struct file *filp,
692 unsigned int ioctl, unsigned long arg);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200693long kvm_arch_vcpu_ioctl(struct file *filp,
694 unsigned int ioctl, unsigned long arg);
Carsten Otte5b1c1492012-01-04 10:25:23 +0100695int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf);
Zhang Xiantao018d00d2007-11-15 23:07:47 +0800696
Alexander Graf784aa3d2014-07-14 18:27:35 +0200697int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext);
Zhang Xiantao018d00d2007-11-15 23:07:47 +0800698
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800699int kvm_get_dirty_log(struct kvm *kvm,
700 struct kvm_dirty_log *log, int *is_dirty);
Mario Smarduchba0513b2015-01-15 15:58:53 -0800701
702int kvm_get_dirty_log_protect(struct kvm *kvm,
703 struct kvm_dirty_log *log, bool *is_dirty);
704
Kai Huang3b0f1d02015-01-28 10:54:23 +0800705void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm,
Mario Smarduchba0513b2015-01-15 15:58:53 -0800706 struct kvm_memory_slot *slot,
707 gfn_t gfn_offset,
708 unsigned long mask);
709
Zhang Xiantao5bb064d2007-11-18 20:29:43 +0800710int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
711 struct kvm_dirty_log *log);
712
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800713int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level,
714 bool line_status);
Carsten Otte1fe779f2007-10-29 16:08:35 +0100715long kvm_arch_vm_ioctl(struct file *filp,
716 unsigned int ioctl, unsigned long arg);
Carsten Otte313a3dc2007-10-11 19:16:52 +0200717
Hollis Blanchardd0752062007-10-31 17:24:25 -0500718int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
719int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
720
Zhang Xiantao8b006792007-11-16 13:05:55 +0800721int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
722 struct kvm_translation *tr);
723
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -0500724int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
725int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs);
726int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
727 struct kvm_sregs *sregs);
728int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
729 struct kvm_sregs *sregs);
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -0300730int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
731 struct kvm_mp_state *mp_state);
732int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
733 struct kvm_mp_state *mp_state);
Jan Kiszkad0bfb942008-12-15 13:52:10 +0100734int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
735 struct kvm_guest_debug *dbg);
Hollis Blanchardb6c7a5d2007-11-01 14:16:10 -0500736int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run);
737
Zhang Xiantaof8c16bb2007-11-14 20:40:21 +0800738int kvm_arch_init(void *opaque);
739void kvm_arch_exit(void);
Carsten Otte043405e2007-10-10 17:16:19 +0200740
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800741int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu);
742void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu);
743
Radim Krčmáře790d9e2014-08-21 18:08:05 +0200744void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu);
745
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800746void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu);
747void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu);
748void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu);
749struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id);
Avi Kivity26e52152007-11-20 15:30:24 +0200750int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu);
Dominik Dingel31928aa2014-12-04 15:47:07 +0100751void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu);
Hollis Blanchardd40ccc62007-11-19 14:04:43 -0600752void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800753
Radim Krčmář13a34e02014-08-28 15:13:03 +0200754int kvm_arch_hardware_enable(void);
755void kvm_arch_hardware_disable(void);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800756int kvm_arch_hardware_setup(void);
757void kvm_arch_hardware_unsetup(void);
758void kvm_arch_check_processor_compat(void *rtn);
Zhang Xiantao1d737c82007-12-14 09:35:10 +0800759int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu);
Christoffer Dallb6d33832012-03-08 16:44:24 -0500760int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800761
Takuya Yoshikawac1a7b322012-05-20 13:15:07 +0900762void *kvm_kvzalloc(unsigned long size);
Takuya Yoshikawac1a7b322012-05-20 13:15:07 +0900763
Jan Kiszkad89f5ef2010-11-09 17:02:49 +0100764#ifndef __KVM_HAVE_ARCH_VM_ALLOC
765static inline struct kvm *kvm_arch_alloc_vm(void)
766{
767 return kzalloc(sizeof(struct kvm), GFP_KERNEL);
768}
769
770static inline void kvm_arch_free_vm(struct kvm *kvm)
771{
772 kfree(kvm);
773}
774#endif
775
Alex Williamsone0f0bbc2013-10-30 11:02:30 -0600776#ifdef __KVM_HAVE_ARCH_NONCOHERENT_DMA
777void kvm_arch_register_noncoherent_dma(struct kvm *kvm);
778void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm);
779bool kvm_arch_has_noncoherent_dma(struct kvm *kvm);
780#else
781static inline void kvm_arch_register_noncoherent_dma(struct kvm *kvm)
782{
783}
784
785static inline void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm)
786{
787}
788
789static inline bool kvm_arch_has_noncoherent_dma(struct kvm *kvm)
790{
791 return false;
792}
793#endif
Paolo Bonzini5544eb92015-07-07 15:41:58 +0200794#ifdef __KVM_HAVE_ARCH_ASSIGNED_DEVICE
795void kvm_arch_start_assignment(struct kvm *kvm);
796void kvm_arch_end_assignment(struct kvm *kvm);
797bool kvm_arch_has_assigned_device(struct kvm *kvm);
798#else
799static inline void kvm_arch_start_assignment(struct kvm *kvm)
800{
801}
802
803static inline void kvm_arch_end_assignment(struct kvm *kvm)
804{
805}
806
807static inline bool kvm_arch_has_assigned_device(struct kvm *kvm)
808{
809 return false;
810}
811#endif
Alex Williamsone0f0bbc2013-10-30 11:02:30 -0600812
Christoffer Dallb6d33832012-03-08 16:44:24 -0500813static inline wait_queue_head_t *kvm_arch_vcpu_wq(struct kvm_vcpu *vcpu)
814{
Alexander Graf2246f8b2012-03-13 22:35:01 +0100815#ifdef __KVM_HAVE_ARCH_WQP
816 return vcpu->arch.wqp;
817#else
Christoffer Dallb6d33832012-03-08 16:44:24 -0500818 return &vcpu->wq;
Christoffer Dallb6d33832012-03-08 16:44:24 -0500819#endif
Alexander Graf2246f8b2012-03-13 22:35:01 +0100820}
Christoffer Dallb6d33832012-03-08 16:44:24 -0500821
Eric Auger01c94e62015-03-04 11:14:33 +0100822#ifdef __KVM_HAVE_ARCH_INTC_INITIALIZED
823/*
824 * returns true if the virtual interrupt controller is initialized and
825 * ready to accept virtual IRQ. On some architectures the virtual interrupt
826 * controller is dynamically instantiated and this is not always true.
827 */
828bool kvm_arch_intc_initialized(struct kvm *kvm);
829#else
830static inline bool kvm_arch_intc_initialized(struct kvm *kvm)
831{
832 return true;
833}
834#endif
835
Carsten Ottee08b9632012-01-04 10:25:20 +0100836int kvm_arch_init_vm(struct kvm *kvm, unsigned long type);
Zhang Xiantaod19a9cd2007-11-18 18:43:45 +0800837void kvm_arch_destroy_vm(struct kvm *kvm);
Sheng Yangad8ba2c2009-01-06 10:03:02 +0800838void kvm_arch_sync_events(struct kvm *kvm);
Zhang Xiantaoe9b11c12007-11-14 20:38:21 +0800839
Marcelo Tosatti3d808402008-04-11 14:53:26 -0300840int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu);
Zhang Xiantao57361992007-12-17 14:21:40 +0800841void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
Zhang Xiantao682c59a2007-12-11 20:36:00 +0800842
Ard Biesheuvelbf4bea82014-11-10 08:33:56 +0000843bool kvm_is_reserved_pfn(pfn_t pfn);
Xiantao Zhangc77fb9d2008-09-27 10:55:40 +0800844
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300845struct kvm_irq_ack_notifier {
846 struct hlist_node link;
847 unsigned gsi;
848 void (*irq_acked)(struct kvm_irq_ack_notifier *kian);
849};
850
Paul Mackerras9957c862014-06-30 20:51:11 +1000851int kvm_irq_map_gsi(struct kvm *kvm,
852 struct kvm_kernel_irq_routing_entry *entries, int gsi);
853int kvm_irq_map_chip_pin(struct kvm *kvm, unsigned irqchip, unsigned pin);
Paul Mackerras8ba918d2014-06-30 20:51:10 +1000854
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800855int kvm_set_irq(struct kvm *kvm, int irq_source_id, u32 irq, int level,
856 bool line_status);
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +0200857int kvm_set_msi(struct kvm_kernel_irq_routing_entry *irq_entry, struct kvm *kvm,
Yang Zhangaa2fbe62013-04-11 19:21:40 +0800858 int irq_source_id, int level, bool line_status);
Paolo Bonzinib97e6de2015-10-28 19:16:47 +0100859int kvm_arch_set_irq_inatomic(struct kvm_kernel_irq_routing_entry *e,
860 struct kvm *kvm, int irq_source_id,
861 int level, bool line_status);
Yang Zhangc7c9c562013-01-25 10:18:51 +0800862bool kvm_irq_has_notifier(struct kvm *kvm, unsigned irqchip, unsigned pin);
Andrey Smetaninba1aefc2015-10-16 10:07:46 +0300863void kvm_notify_acked_gsi(struct kvm *kvm, int gsi);
Marcelo Tosatti44882ee2009-01-27 15:12:38 -0200864void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin);
Xiantao Zhang3de42dc2008-10-06 13:48:45 +0800865void kvm_register_irq_ack_notifier(struct kvm *kvm,
866 struct kvm_irq_ack_notifier *kian);
Marcelo Tosattifa40a822009-06-04 15:08:24 -0300867void kvm_unregister_irq_ack_notifier(struct kvm *kvm,
868 struct kvm_irq_ack_notifier *kian);
Sheng Yang5550af42008-10-15 20:15:06 +0800869int kvm_request_irq_source_id(struct kvm *kvm);
870void kvm_free_irq_source_id(struct kvm *kvm, int irq_source_id);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300871
Alex Williamson2a5bab12013-04-16 13:49:18 -0600872#ifdef CONFIG_KVM_DEVICE_ASSIGNMENT
Marcelo Tosatti3ad26d82009-12-23 14:35:20 -0200873int kvm_iommu_map_pages(struct kvm *kvm, struct kvm_memory_slot *slot);
Alex Williamson32f6daa2012-04-11 09:51:49 -0600874void kvm_iommu_unmap_pages(struct kvm *kvm, struct kvm_memory_slot *slot);
Alex Williamson2a5bab12013-04-16 13:49:18 -0600875#else
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300876static inline int kvm_iommu_map_pages(struct kvm *kvm,
Jan Kiszkad7a79b62010-10-14 13:59:04 +0200877 struct kvm_memory_slot *slot)
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300878{
879 return 0;
880}
881
Alex Williamson32f6daa2012-04-11 09:51:49 -0600882static inline void kvm_iommu_unmap_pages(struct kvm *kvm,
883 struct kvm_memory_slot *slot)
884{
885}
Alex Williamson2a5bab12013-04-16 13:49:18 -0600886#endif
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300887
Christian Borntraeger0097d122015-04-30 13:43:30 +0200888/* must be called with irqs disabled */
889static inline void __kvm_guest_enter(void)
Frederic Weisbeckerc11f11f2013-01-21 00:50:22 +0100890{
Frederic Weisbeckerc11f11f2013-01-21 00:50:22 +0100891 guest_enter();
Gleb Natapov8fa22062011-05-04 16:31:04 +0300892 /* KVM does not hold any references to rcu protected data when it
893 * switches CPU into a guest mode. In fact switching to a guest mode
Michael S. Tsirkin81e87e22013-10-30 21:43:01 +0200894 * is very similar to exiting to userspace from rcu point of view. In
Gleb Natapov8fa22062011-05-04 16:31:04 +0300895 * addition CPU may stay in a guest mode for quite a long time (up to
896 * one time slice). Lets treat guest mode as quiescent state, just like
897 * we do with user-mode execution.
898 */
Rik van Riel126a6a52015-02-10 15:27:54 -0500899 if (!context_tracking_cpu_is_enabled())
900 rcu_virt_note_context_switch(smp_processor_id());
Laurent Vivierd172fcd2007-10-15 17:00:19 +0200901}
902
Christian Borntraeger0097d122015-04-30 13:43:30 +0200903/* must be called with irqs disabled */
904static inline void __kvm_guest_exit(void)
905{
906 guest_exit();
907}
908
909static inline void kvm_guest_enter(void)
910{
911 unsigned long flags;
912
913 local_irq_save(flags);
914 __kvm_guest_enter();
915 local_irq_restore(flags);
916}
917
Laurent Vivierd172fcd2007-10-15 17:00:19 +0200918static inline void kvm_guest_exit(void)
919{
Frederic Weisbeckerc11f11f2013-01-21 00:50:22 +0100920 unsigned long flags;
921
922 local_irq_save(flags);
Christian Borntraeger0097d122015-04-30 13:43:30 +0200923 __kvm_guest_exit();
Frederic Weisbeckerc11f11f2013-01-21 00:50:22 +0100924 local_irq_restore(flags);
Laurent Vivierd172fcd2007-10-15 17:00:19 +0200925}
926
Paul Mackerras9d4cba72012-01-12 20:09:51 +0000927/*
928 * search_memslots() and __gfn_to_memslot() are here because they are
929 * used in non-modular code in arch/powerpc/kvm/book3s_hv_rm_mmu.c.
930 * gfn_to_memslot() itself isn't here as an inline because that would
931 * bloat other code too much.
932 */
933static inline struct kvm_memory_slot *
934search_memslots(struct kvm_memslots *slots, gfn_t gfn)
935{
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000936 int start = 0, end = slots->used_slots;
Igor Mammedovd4ae84a02014-12-01 17:29:25 +0000937 int slot = atomic_read(&slots->lru_slot);
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000938 struct kvm_memory_slot *memslots = slots->memslots;
Igor Mammedovd4ae84a02014-12-01 17:29:25 +0000939
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000940 if (gfn >= memslots[slot].base_gfn &&
941 gfn < memslots[slot].base_gfn + memslots[slot].npages)
942 return &memslots[slot];
Paul Mackerras9d4cba72012-01-12 20:09:51 +0000943
Igor Mammedov9c1a5d382014-12-01 17:29:27 +0000944 while (start < end) {
945 slot = start + (end - start) / 2;
946
947 if (gfn >= memslots[slot].base_gfn)
948 end = slot;
949 else
950 start = slot + 1;
951 }
952
953 if (gfn >= memslots[start].base_gfn &&
954 gfn < memslots[start].base_gfn + memslots[start].npages) {
955 atomic_set(&slots->lru_slot, start);
956 return &memslots[start];
957 }
Paul Mackerras9d4cba72012-01-12 20:09:51 +0000958
959 return NULL;
960}
961
962static inline struct kvm_memory_slot *
963__gfn_to_memslot(struct kvm_memslots *slots, gfn_t gfn)
964{
965 return search_memslots(slots, gfn);
966}
967
Gavin Shan66a03502012-08-24 16:50:28 +0800968static inline unsigned long
969__gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn)
970{
971 return slot->userspace_addr + (gfn - slot->base_gfn) * PAGE_SIZE;
972}
973
Xiao Guangrong0ee8dcb2011-03-09 15:41:59 +0800974static inline int memslot_id(struct kvm *kvm, gfn_t gfn)
975{
976 return gfn_to_memslot(kvm, gfn)->id;
977}
978
Takuya Yoshikawad19a7482012-07-02 17:54:30 +0900979static inline gfn_t
980hva_to_gfn_memslot(unsigned long hva, struct kvm_memory_slot *slot)
Xiao Guangrong887c08a2010-08-22 19:10:28 +0800981{
Takuya Yoshikawad19a7482012-07-02 17:54:30 +0900982 gfn_t gfn_offset = (hva - slot->userspace_addr) >> PAGE_SHIFT;
983
984 return slot->base_gfn + gfn_offset;
Xiao Guangrong887c08a2010-08-22 19:10:28 +0800985}
986
Avi Kivity1755fbc2007-11-21 14:44:45 +0200987static inline gpa_t gfn_to_gpa(gfn_t gfn)
988{
989 return (gpa_t)gfn << PAGE_SHIFT;
990}
Avi Kivity6aa8b732006-12-10 02:21:36 -0800991
Joerg Roedelc30a3582010-09-10 17:30:48 +0200992static inline gfn_t gpa_to_gfn(gpa_t gpa)
993{
994 return (gfn_t)(gpa >> PAGE_SHIFT);
995}
996
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300997static inline hpa_t pfn_to_hpa(pfn_t pfn)
998{
999 return (hpa_t)pfn << PAGE_SHIFT;
1000}
1001
Heiko Carstensdfeec842014-01-01 16:09:21 +01001002static inline bool kvm_is_error_gpa(struct kvm *kvm, gpa_t gpa)
1003{
1004 unsigned long hva = gfn_to_hva(kvm, gpa_to_gfn(gpa));
1005
1006 return kvm_is_error_hva(hva);
1007}
1008
Marcelo Tosatti2f599712008-05-27 12:10:20 -03001009static inline void kvm_migrate_timers(struct kvm_vcpu *vcpu)
Avi Kivity2f52d582008-01-16 12:49:30 +02001010{
1011 set_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests);
1012}
1013
Avi Kivityba1389b2007-11-18 16:24:12 +02001014enum kvm_stat_kind {
1015 KVM_STAT_VM,
1016 KVM_STAT_VCPU,
1017};
1018
Hollis Blanchard417bc302007-10-31 17:24:23 -05001019struct kvm_stats_debugfs_item {
1020 const char *name;
1021 int offset;
Avi Kivityba1389b2007-11-18 16:24:12 +02001022 enum kvm_stat_kind kind;
Hollis Blanchard417bc302007-10-31 17:24:23 -05001023};
1024extern struct kvm_stats_debugfs_item debugfs_entries[];
Hollis Blanchard76f7c872008-04-15 16:05:42 -05001025extern struct dentry *kvm_debugfs_dir;
Feng(Eric) Liud4c9ff22008-04-10 08:47:53 -04001026
Marc Zyngier36c1ed82012-06-15 15:07:24 -04001027#if defined(CONFIG_MMU_NOTIFIER) && defined(KVM_ARCH_WANT_MMU_NOTIFIER)
Christoffer Dall8ca40a72012-10-14 23:10:18 -04001028static inline int mmu_notifier_retry(struct kvm *kvm, unsigned long mmu_seq)
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001029{
Christoffer Dall8ca40a72012-10-14 23:10:18 -04001030 if (unlikely(kvm->mmu_notifier_count))
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001031 return 1;
1032 /*
Paul Mackerrasa355aa52011-12-12 12:37:21 +00001033 * Ensure the read of mmu_notifier_count happens before the read
1034 * of mmu_notifier_seq. This interacts with the smp_wmb() in
1035 * mmu_notifier_invalidate_range_end to make sure that the caller
1036 * either sees the old (non-zero) value of mmu_notifier_count or
1037 * the new (incremented) value of mmu_notifier_seq.
1038 * PowerPC Book3s HV KVM calls this under a per-page lock
1039 * rather than under kvm->mmu_lock, for scalability, so
1040 * can't rely on kvm->mmu_lock to keep things ordered.
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001041 */
Paul Mackerrasa355aa52011-12-12 12:37:21 +00001042 smp_rmb();
Christoffer Dall8ca40a72012-10-14 23:10:18 -04001043 if (kvm->mmu_notifier_seq != mmu_seq)
Andrea Arcangelie930bff2008-07-25 16:24:52 +02001044 return 1;
1045 return 0;
1046}
1047#endif
1048
Alexander Grafa725d562013-04-17 13:29:30 +02001049#ifdef CONFIG_HAVE_KVM_IRQ_ROUTING
Avi Kivity399ec802008-11-19 13:58:46 +02001050
Cornelia Huckf3f710b2014-02-25 12:48:01 +01001051#ifdef CONFIG_S390
1052#define KVM_MAX_IRQ_ROUTES 4096 //FIXME: we can have more than that...
1053#else
Avi Kivity399ec802008-11-19 13:58:46 +02001054#define KVM_MAX_IRQ_ROUTES 1024
Cornelia Huckf3f710b2014-02-25 12:48:01 +01001055#endif
Avi Kivity399ec802008-11-19 13:58:46 +02001056
1057int kvm_setup_default_irq_routing(struct kvm *kvm);
Steve Rutherford49df6392015-07-29 23:21:40 -07001058int kvm_setup_empty_irq_routing(struct kvm *kvm);
Avi Kivity399ec802008-11-19 13:58:46 +02001059int kvm_set_irq_routing(struct kvm *kvm,
1060 const struct kvm_irq_routing_entry *entries,
1061 unsigned nr,
1062 unsigned flags);
Paul Mackerras8ba918d2014-06-30 20:51:10 +10001063int kvm_set_routing_entry(struct kvm_kernel_irq_routing_entry *e,
Alexander Grafe8cde092013-04-15 23:23:21 +02001064 const struct kvm_irq_routing_entry *ue);
Avi Kivity399ec802008-11-19 13:58:46 +02001065void kvm_free_irq_routing(struct kvm *kvm);
1066
1067#else
1068
1069static inline void kvm_free_irq_routing(struct kvm *kvm) {}
1070
1071#endif
1072
Paul Mackerras297e2102014-06-30 20:51:13 +10001073int kvm_send_userspace_msi(struct kvm *kvm, struct kvm_msi *msi);
1074
Gregory Haskins721eecb2009-05-20 10:30:49 -04001075#ifdef CONFIG_HAVE_KVM_EVENTFD
1076
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04001077void kvm_eventfd_init(struct kvm *kvm);
Alexander Graf914daba2012-10-09 00:22:59 +02001078int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args);
1079
Paul Mackerras297e2102014-06-30 20:51:13 +10001080#ifdef CONFIG_HAVE_KVM_IRQFD
Alex Williamsond4db2932012-06-29 09:56:08 -06001081int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args);
Gregory Haskins721eecb2009-05-20 10:30:49 -04001082void kvm_irqfd_release(struct kvm *kvm);
Paul Mackerras9957c862014-06-30 20:51:11 +10001083void kvm_irq_routing_update(struct kvm *);
Alexander Graf914daba2012-10-09 00:22:59 +02001084#else
1085static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
1086{
1087 return -EINVAL;
1088}
1089
1090static inline void kvm_irqfd_release(struct kvm *kvm) {}
1091#endif
Gregory Haskins721eecb2009-05-20 10:30:49 -04001092
1093#else
1094
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04001095static inline void kvm_eventfd_init(struct kvm *kvm) {}
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +02001096
Alex Williamsond4db2932012-06-29 09:56:08 -06001097static inline int kvm_irqfd(struct kvm *kvm, struct kvm_irqfd *args)
Gregory Haskins721eecb2009-05-20 10:30:49 -04001098{
1099 return -EINVAL;
1100}
1101
1102static inline void kvm_irqfd_release(struct kvm *kvm) {}
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +02001103
Alexander Graf27923eb2010-11-25 10:25:44 +01001104#ifdef CONFIG_HAVE_KVM_IRQCHIP
Paul Mackerras9957c862014-06-30 20:51:11 +10001105static inline void kvm_irq_routing_update(struct kvm *kvm)
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +02001106{
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +02001107}
Alexander Graf27923eb2010-11-25 10:25:44 +01001108#endif
Andrey Smetaninabdb0802015-11-10 15:36:31 +03001109void kvm_arch_irq_routing_update(struct kvm *kvm);
Michael S. Tsirkinbd2b53b2010-11-18 19:09:08 +02001110
Gregory Haskinsd34e6b12009-07-07 17:08:49 -04001111static inline int kvm_ioeventfd(struct kvm *kvm, struct kvm_ioeventfd *args)
1112{
1113 return -ENOSYS;
1114}
Gregory Haskins721eecb2009-05-20 10:30:49 -04001115
1116#endif /* CONFIG_HAVE_KVM_EVENTFD */
1117
Gleb Natapov73880c82009-06-09 15:56:28 +03001118#ifdef CONFIG_KVM_APIC_ARCHITECTURE
Avi Kivity3e515702012-03-05 14:23:29 +02001119bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu);
Avi Kivity3e515702012-03-05 14:23:29 +02001120#else
Avi Kivity3e515702012-03-05 14:23:29 +02001121static inline bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu) { return true; }
Avi Kivity6aa8b732006-12-10 02:21:36 -08001122#endif
Avi Kivitybfd99ff2009-08-26 14:57:50 +03001123
Avi Kivitya8eeb042010-05-10 12:34:53 +03001124static inline void kvm_make_request(int req, struct kvm_vcpu *vcpu)
1125{
1126 set_bit(req, &vcpu->requests);
1127}
1128
Avi Kivitya8eeb042010-05-10 12:34:53 +03001129static inline bool kvm_check_request(int req, struct kvm_vcpu *vcpu)
1130{
Avi Kivity07198372010-05-10 13:08:26 +03001131 if (test_bit(req, &vcpu->requests)) {
1132 clear_bit(req, &vcpu->requests);
1133 return true;
1134 } else {
1135 return false;
1136 }
Avi Kivitya8eeb042010-05-10 12:34:53 +03001137}
1138
Geoff Levand8b415dc2013-04-05 19:20:30 +00001139extern bool kvm_rebooting;
1140
Scott Wood852b6d52013-04-12 14:08:42 +00001141struct kvm_device {
1142 struct kvm_device_ops *ops;
1143 struct kvm *kvm;
Scott Wood852b6d52013-04-12 14:08:42 +00001144 void *private;
Scott Wood07f0a7b2013-04-25 14:11:23 +00001145 struct list_head vm_node;
Scott Wood852b6d52013-04-12 14:08:42 +00001146};
1147
1148/* create, destroy, and name are mandatory */
1149struct kvm_device_ops {
1150 const char *name;
1151 int (*create)(struct kvm_device *dev, u32 type);
1152
1153 /*
1154 * Destroy is responsible for freeing dev.
1155 *
1156 * Destroy may be called before or after destructors are called
1157 * on emulated I/O regions, depending on whether a reference is
1158 * held by a vcpu or other kvm component that gets destroyed
1159 * after the emulated I/O.
1160 */
1161 void (*destroy)(struct kvm_device *dev);
1162
1163 int (*set_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1164 int (*get_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1165 int (*has_attr)(struct kvm_device *dev, struct kvm_device_attr *attr);
1166 long (*ioctl)(struct kvm_device *dev, unsigned int ioctl,
1167 unsigned long arg);
1168};
1169
1170void kvm_device_get(struct kvm_device *dev);
1171void kvm_device_put(struct kvm_device *dev);
1172struct kvm_device *kvm_device_from_filp(struct file *filp);
Will Deacond60eacb2014-09-02 10:27:33 +01001173int kvm_register_device_ops(struct kvm_device_ops *ops, u32 type);
Wanpeng Li571ee1b2014-10-09 18:30:08 +08001174void kvm_unregister_device_ops(u32 type);
Scott Wood852b6d52013-04-12 14:08:42 +00001175
Scott Wood5df554a2013-04-12 14:08:46 +00001176extern struct kvm_device_ops kvm_mpic_ops;
Paul Mackerras5975a2e2013-04-27 00:28:37 +00001177extern struct kvm_device_ops kvm_xics_ops;
Andre Przywaraea2f83a2014-10-26 23:17:00 +00001178extern struct kvm_device_ops kvm_arm_vgic_v2_ops;
Andre Przywaraa0675c22014-06-07 00:54:51 +02001179extern struct kvm_device_ops kvm_arm_vgic_v3_ops;
Scott Wood5df554a2013-04-12 14:08:46 +00001180
Raghavendra K T4c088492012-07-18 19:07:46 +05301181#ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT
1182
1183static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
1184{
1185 vcpu->spin_loop.in_spin_loop = val;
1186}
1187static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
1188{
1189 vcpu->spin_loop.dy_eligible = val;
1190}
1191
1192#else /* !CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
1193
1194static inline void kvm_vcpu_set_in_spin_loop(struct kvm_vcpu *vcpu, bool val)
1195{
1196}
1197
1198static inline void kvm_vcpu_set_dy_eligible(struct kvm_vcpu *vcpu, bool val)
1199{
1200}
Raghavendra K T4c088492012-07-18 19:07:46 +05301201#endif /* CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT */
Eric Auger1a02b272015-09-18 22:29:43 +08001202
1203#ifdef CONFIG_HAVE_KVM_IRQ_BYPASS
1204int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *,
1205 struct irq_bypass_producer *);
1206void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *,
1207 struct irq_bypass_producer *);
1208void kvm_arch_irq_bypass_stop(struct irq_bypass_consumer *);
1209void kvm_arch_irq_bypass_start(struct irq_bypass_consumer *);
Feng Wuf70c20a2015-09-18 22:29:53 +08001210int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq,
1211 uint32_t guest_irq, bool set);
Eric Auger1a02b272015-09-18 22:29:43 +08001212#endif /* CONFIG_HAVE_KVM_IRQ_BYPASS */
Haozhong Zhang35181e82015-10-20 15:39:03 +08001213
Avi Kivitybfd99ff2009-08-26 14:57:50 +03001214#endif