KVM: MMU: prepopulate the shadow on invlpg
[linux-2.6-block.git] / arch / x86 / kvm / x86.c
1 /*
2  * Kernel-based Virtual Machine driver for Linux
3  *
4  * derived from drivers/kvm/kvm_main.c
5  *
6  * Copyright (C) 2006 Qumranet, Inc.
7  * Copyright (C) 2008 Qumranet, Inc.
8  * Copyright IBM Corporation, 2008
9  *
10  * Authors:
11  *   Avi Kivity   <avi@qumranet.com>
12  *   Yaniv Kamay  <yaniv@qumranet.com>
13  *   Amit Shah    <amit.shah@qumranet.com>
14  *   Ben-Ami Yassour <benami@il.ibm.com>
15  *
16  * This work is licensed under the terms of the GNU GPL, version 2.  See
17  * the COPYING file in the top-level directory.
18  *
19  */
20
21 #include <linux/kvm_host.h>
22 #include "irq.h"
23 #include "mmu.h"
24 #include "i8254.h"
25 #include "tss.h"
26 #include "kvm_cache_regs.h"
27 #include "x86.h"
28
29 #include <linux/clocksource.h>
30 #include <linux/interrupt.h>
31 #include <linux/kvm.h>
32 #include <linux/fs.h>
33 #include <linux/vmalloc.h>
34 #include <linux/module.h>
35 #include <linux/mman.h>
36 #include <linux/highmem.h>
37 #include <linux/intel-iommu.h>
38
39 #include <asm/uaccess.h>
40 #include <asm/msr.h>
41 #include <asm/desc.h>
42 #include <asm/mtrr.h>
43
44 #define MAX_IO_MSRS 256
45 #define CR0_RESERVED_BITS                                               \
46         (~(unsigned long)(X86_CR0_PE | X86_CR0_MP | X86_CR0_EM | X86_CR0_TS \
47                           | X86_CR0_ET | X86_CR0_NE | X86_CR0_WP | X86_CR0_AM \
48                           | X86_CR0_NW | X86_CR0_CD | X86_CR0_PG))
49 #define CR4_RESERVED_BITS                                               \
50         (~(unsigned long)(X86_CR4_VME | X86_CR4_PVI | X86_CR4_TSD | X86_CR4_DE\
51                           | X86_CR4_PSE | X86_CR4_PAE | X86_CR4_MCE     \
52                           | X86_CR4_PGE | X86_CR4_PCE | X86_CR4_OSFXSR  \
53                           | X86_CR4_OSXMMEXCPT | X86_CR4_VMXE))
54
55 #define CR8_RESERVED_BITS (~(unsigned long)X86_CR8_TPR)
56 /* EFER defaults:
57  * - enable syscall per default because its emulated by KVM
58  * - enable LME and LMA per default on 64 bit KVM
59  */
60 #ifdef CONFIG_X86_64
61 static u64 __read_mostly efer_reserved_bits = 0xfffffffffffffafeULL;
62 #else
63 static u64 __read_mostly efer_reserved_bits = 0xfffffffffffffffeULL;
64 #endif
65
66 #define VM_STAT(x) offsetof(struct kvm, stat.x), KVM_STAT_VM
67 #define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU
68
69 static int kvm_dev_ioctl_get_supported_cpuid(struct kvm_cpuid2 *cpuid,
70                                     struct kvm_cpuid_entry2 __user *entries);
71
72 struct kvm_x86_ops *kvm_x86_ops;
73 EXPORT_SYMBOL_GPL(kvm_x86_ops);
74
75 struct kvm_stats_debugfs_item debugfs_entries[] = {
76         { "pf_fixed", VCPU_STAT(pf_fixed) },
77         { "pf_guest", VCPU_STAT(pf_guest) },
78         { "tlb_flush", VCPU_STAT(tlb_flush) },
79         { "invlpg", VCPU_STAT(invlpg) },
80         { "exits", VCPU_STAT(exits) },
81         { "io_exits", VCPU_STAT(io_exits) },
82         { "mmio_exits", VCPU_STAT(mmio_exits) },
83         { "signal_exits", VCPU_STAT(signal_exits) },
84         { "irq_window", VCPU_STAT(irq_window_exits) },
85         { "nmi_window", VCPU_STAT(nmi_window_exits) },
86         { "halt_exits", VCPU_STAT(halt_exits) },
87         { "halt_wakeup", VCPU_STAT(halt_wakeup) },
88         { "hypercalls", VCPU_STAT(hypercalls) },
89         { "request_irq", VCPU_STAT(request_irq_exits) },
90         { "request_nmi", VCPU_STAT(request_nmi_exits) },
91         { "irq_exits", VCPU_STAT(irq_exits) },
92         { "host_state_reload", VCPU_STAT(host_state_reload) },
93         { "efer_reload", VCPU_STAT(efer_reload) },
94         { "fpu_reload", VCPU_STAT(fpu_reload) },
95         { "insn_emulation", VCPU_STAT(insn_emulation) },
96         { "insn_emulation_fail", VCPU_STAT(insn_emulation_fail) },
97         { "irq_injections", VCPU_STAT(irq_injections) },
98         { "nmi_injections", VCPU_STAT(nmi_injections) },
99         { "mmu_shadow_zapped", VM_STAT(mmu_shadow_zapped) },
100         { "mmu_pte_write", VM_STAT(mmu_pte_write) },
101         { "mmu_pte_updated", VM_STAT(mmu_pte_updated) },
102         { "mmu_pde_zapped", VM_STAT(mmu_pde_zapped) },
103         { "mmu_flooded", VM_STAT(mmu_flooded) },
104         { "mmu_recycled", VM_STAT(mmu_recycled) },
105         { "mmu_cache_miss", VM_STAT(mmu_cache_miss) },
106         { "mmu_unsync", VM_STAT(mmu_unsync) },
107         { "mmu_unsync_global", VM_STAT(mmu_unsync_global) },
108         { "remote_tlb_flush", VM_STAT(remote_tlb_flush) },
109         { "largepages", VM_STAT(lpages) },
110         { NULL }
111 };
112
113 unsigned long segment_base(u16 selector)
114 {
115         struct descriptor_table gdt;
116         struct desc_struct *d;
117         unsigned long table_base;
118         unsigned long v;
119
120         if (selector == 0)
121                 return 0;
122
123         asm("sgdt %0" : "=m"(gdt));
124         table_base = gdt.base;
125
126         if (selector & 4) {           /* from ldt */
127                 u16 ldt_selector;
128
129                 asm("sldt %0" : "=g"(ldt_selector));
130                 table_base = segment_base(ldt_selector);
131         }
132         d = (struct desc_struct *)(table_base + (selector & ~7));
133         v = d->base0 | ((unsigned long)d->base1 << 16) |
134                 ((unsigned long)d->base2 << 24);
135 #ifdef CONFIG_X86_64
136         if (d->s == 0 && (d->type == 2 || d->type == 9 || d->type == 11))
137                 v |= ((unsigned long)((struct ldttss_desc64 *)d)->base3) << 32;
138 #endif
139         return v;
140 }
141 EXPORT_SYMBOL_GPL(segment_base);
142
143 u64 kvm_get_apic_base(struct kvm_vcpu *vcpu)
144 {
145         if (irqchip_in_kernel(vcpu->kvm))
146                 return vcpu->arch.apic_base;
147         else
148                 return vcpu->arch.apic_base;
149 }
150 EXPORT_SYMBOL_GPL(kvm_get_apic_base);
151
152 void kvm_set_apic_base(struct kvm_vcpu *vcpu, u64 data)
153 {
154         /* TODO: reserve bits check */
155         if (irqchip_in_kernel(vcpu->kvm))
156                 kvm_lapic_set_base(vcpu, data);
157         else
158                 vcpu->arch.apic_base = data;
159 }
160 EXPORT_SYMBOL_GPL(kvm_set_apic_base);
161
162 void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr)
163 {
164         WARN_ON(vcpu->arch.exception.pending);
165         vcpu->arch.exception.pending = true;
166         vcpu->arch.exception.has_error_code = false;
167         vcpu->arch.exception.nr = nr;
168 }
169 EXPORT_SYMBOL_GPL(kvm_queue_exception);
170
171 void kvm_inject_page_fault(struct kvm_vcpu *vcpu, unsigned long addr,
172                            u32 error_code)
173 {
174         ++vcpu->stat.pf_guest;
175         if (vcpu->arch.exception.pending) {
176                 if (vcpu->arch.exception.nr == PF_VECTOR) {
177                         printk(KERN_DEBUG "kvm: inject_page_fault:"
178                                         " double fault 0x%lx\n", addr);
179                         vcpu->arch.exception.nr = DF_VECTOR;
180                         vcpu->arch.exception.error_code = 0;
181                 } else if (vcpu->arch.exception.nr == DF_VECTOR) {
182                         /* triple fault -> shutdown */
183                         set_bit(KVM_REQ_TRIPLE_FAULT, &vcpu->requests);
184                 }
185                 return;
186         }
187         vcpu->arch.cr2 = addr;
188         kvm_queue_exception_e(vcpu, PF_VECTOR, error_code);
189 }
190
191 void kvm_inject_nmi(struct kvm_vcpu *vcpu)
192 {
193         vcpu->arch.nmi_pending = 1;
194 }
195 EXPORT_SYMBOL_GPL(kvm_inject_nmi);
196
197 void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code)
198 {
199         WARN_ON(vcpu->arch.exception.pending);
200         vcpu->arch.exception.pending = true;
201         vcpu->arch.exception.has_error_code = true;
202         vcpu->arch.exception.nr = nr;
203         vcpu->arch.exception.error_code = error_code;
204 }
205 EXPORT_SYMBOL_GPL(kvm_queue_exception_e);
206
207 static void __queue_exception(struct kvm_vcpu *vcpu)
208 {
209         kvm_x86_ops->queue_exception(vcpu, vcpu->arch.exception.nr,
210                                      vcpu->arch.exception.has_error_code,
211                                      vcpu->arch.exception.error_code);
212 }
213
214 /*
215  * Load the pae pdptrs.  Return true is they are all valid.
216  */
217 int load_pdptrs(struct kvm_vcpu *vcpu, unsigned long cr3)
218 {
219         gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT;
220         unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2;
221         int i;
222         int ret;
223         u64 pdpte[ARRAY_SIZE(vcpu->arch.pdptrs)];
224
225         ret = kvm_read_guest_page(vcpu->kvm, pdpt_gfn, pdpte,
226                                   offset * sizeof(u64), sizeof(pdpte));
227         if (ret < 0) {
228                 ret = 0;
229                 goto out;
230         }
231         for (i = 0; i < ARRAY_SIZE(pdpte); ++i) {
232                 if ((pdpte[i] & 1) && (pdpte[i] & 0xfffffff0000001e6ull)) {
233                         ret = 0;
234                         goto out;
235                 }
236         }
237         ret = 1;
238
239         memcpy(vcpu->arch.pdptrs, pdpte, sizeof(vcpu->arch.pdptrs));
240 out:
241
242         return ret;
243 }
244 EXPORT_SYMBOL_GPL(load_pdptrs);
245
246 static bool pdptrs_changed(struct kvm_vcpu *vcpu)
247 {
248         u64 pdpte[ARRAY_SIZE(vcpu->arch.pdptrs)];
249         bool changed = true;
250         int r;
251
252         if (is_long_mode(vcpu) || !is_pae(vcpu))
253                 return false;
254
255         r = kvm_read_guest(vcpu->kvm, vcpu->arch.cr3 & ~31u, pdpte, sizeof(pdpte));
256         if (r < 0)
257                 goto out;
258         changed = memcmp(pdpte, vcpu->arch.pdptrs, sizeof(pdpte)) != 0;
259 out:
260
261         return changed;
262 }
263
264 void kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0)
265 {
266         if (cr0 & CR0_RESERVED_BITS) {
267                 printk(KERN_DEBUG "set_cr0: 0x%lx #GP, reserved bits 0x%lx\n",
268                        cr0, vcpu->arch.cr0);
269                 kvm_inject_gp(vcpu, 0);
270                 return;
271         }
272
273         if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD)) {
274                 printk(KERN_DEBUG "set_cr0: #GP, CD == 0 && NW == 1\n");
275                 kvm_inject_gp(vcpu, 0);
276                 return;
277         }
278
279         if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE)) {
280                 printk(KERN_DEBUG "set_cr0: #GP, set PG flag "
281                        "and a clear PE flag\n");
282                 kvm_inject_gp(vcpu, 0);
283                 return;
284         }
285
286         if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) {
287 #ifdef CONFIG_X86_64
288                 if ((vcpu->arch.shadow_efer & EFER_LME)) {
289                         int cs_db, cs_l;
290
291                         if (!is_pae(vcpu)) {
292                                 printk(KERN_DEBUG "set_cr0: #GP, start paging "
293                                        "in long mode while PAE is disabled\n");
294                                 kvm_inject_gp(vcpu, 0);
295                                 return;
296                         }
297                         kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
298                         if (cs_l) {
299                                 printk(KERN_DEBUG "set_cr0: #GP, start paging "
300                                        "in long mode while CS.L == 1\n");
301                                 kvm_inject_gp(vcpu, 0);
302                                 return;
303
304                         }
305                 } else
306 #endif
307                 if (is_pae(vcpu) && !load_pdptrs(vcpu, vcpu->arch.cr3)) {
308                         printk(KERN_DEBUG "set_cr0: #GP, pdptrs "
309                                "reserved bits\n");
310                         kvm_inject_gp(vcpu, 0);
311                         return;
312                 }
313
314         }
315
316         kvm_x86_ops->set_cr0(vcpu, cr0);
317         vcpu->arch.cr0 = cr0;
318
319         kvm_mmu_sync_global(vcpu);
320         kvm_mmu_reset_context(vcpu);
321         return;
322 }
323 EXPORT_SYMBOL_GPL(kvm_set_cr0);
324
325 void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw)
326 {
327         kvm_set_cr0(vcpu, (vcpu->arch.cr0 & ~0x0ful) | (msw & 0x0f));
328         KVMTRACE_1D(LMSW, vcpu,
329                     (u32)((vcpu->arch.cr0 & ~0x0ful) | (msw & 0x0f)),
330                     handler);
331 }
332 EXPORT_SYMBOL_GPL(kvm_lmsw);
333
334 void kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4)
335 {
336         if (cr4 & CR4_RESERVED_BITS) {
337                 printk(KERN_DEBUG "set_cr4: #GP, reserved bits\n");
338                 kvm_inject_gp(vcpu, 0);
339                 return;
340         }
341
342         if (is_long_mode(vcpu)) {
343                 if (!(cr4 & X86_CR4_PAE)) {
344                         printk(KERN_DEBUG "set_cr4: #GP, clearing PAE while "
345                                "in long mode\n");
346                         kvm_inject_gp(vcpu, 0);
347                         return;
348                 }
349         } else if (is_paging(vcpu) && !is_pae(vcpu) && (cr4 & X86_CR4_PAE)
350                    && !load_pdptrs(vcpu, vcpu->arch.cr3)) {
351                 printk(KERN_DEBUG "set_cr4: #GP, pdptrs reserved bits\n");
352                 kvm_inject_gp(vcpu, 0);
353                 return;
354         }
355
356         if (cr4 & X86_CR4_VMXE) {
357                 printk(KERN_DEBUG "set_cr4: #GP, setting VMXE\n");
358                 kvm_inject_gp(vcpu, 0);
359                 return;
360         }
361         kvm_x86_ops->set_cr4(vcpu, cr4);
362         vcpu->arch.cr4 = cr4;
363         kvm_mmu_sync_global(vcpu);
364         kvm_mmu_reset_context(vcpu);
365 }
366 EXPORT_SYMBOL_GPL(kvm_set_cr4);
367
368 void kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3)
369 {
370         if (cr3 == vcpu->arch.cr3 && !pdptrs_changed(vcpu)) {
371                 kvm_mmu_sync_roots(vcpu);
372                 kvm_mmu_flush_tlb(vcpu);
373                 return;
374         }
375
376         if (is_long_mode(vcpu)) {
377                 if (cr3 & CR3_L_MODE_RESERVED_BITS) {
378                         printk(KERN_DEBUG "set_cr3: #GP, reserved bits\n");
379                         kvm_inject_gp(vcpu, 0);
380                         return;
381                 }
382         } else {
383                 if (is_pae(vcpu)) {
384                         if (cr3 & CR3_PAE_RESERVED_BITS) {
385                                 printk(KERN_DEBUG
386                                        "set_cr3: #GP, reserved bits\n");
387                                 kvm_inject_gp(vcpu, 0);
388                                 return;
389                         }
390                         if (is_paging(vcpu) && !load_pdptrs(vcpu, cr3)) {
391                                 printk(KERN_DEBUG "set_cr3: #GP, pdptrs "
392                                        "reserved bits\n");
393                                 kvm_inject_gp(vcpu, 0);
394                                 return;
395                         }
396                 }
397                 /*
398                  * We don't check reserved bits in nonpae mode, because
399                  * this isn't enforced, and VMware depends on this.
400                  */
401         }
402
403         /*
404          * Does the new cr3 value map to physical memory? (Note, we
405          * catch an invalid cr3 even in real-mode, because it would
406          * cause trouble later on when we turn on paging anyway.)
407          *
408          * A real CPU would silently accept an invalid cr3 and would
409          * attempt to use it - with largely undefined (and often hard
410          * to debug) behavior on the guest side.
411          */
412         if (unlikely(!gfn_to_memslot(vcpu->kvm, cr3 >> PAGE_SHIFT)))
413                 kvm_inject_gp(vcpu, 0);
414         else {
415                 vcpu->arch.cr3 = cr3;
416                 vcpu->arch.mmu.new_cr3(vcpu);
417         }
418 }
419 EXPORT_SYMBOL_GPL(kvm_set_cr3);
420
421 void kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8)
422 {
423         if (cr8 & CR8_RESERVED_BITS) {
424                 printk(KERN_DEBUG "set_cr8: #GP, reserved bits 0x%lx\n", cr8);
425                 kvm_inject_gp(vcpu, 0);
426                 return;
427         }
428         if (irqchip_in_kernel(vcpu->kvm))
429                 kvm_lapic_set_tpr(vcpu, cr8);
430         else
431                 vcpu->arch.cr8 = cr8;
432 }
433 EXPORT_SYMBOL_GPL(kvm_set_cr8);
434
435 unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu)
436 {
437         if (irqchip_in_kernel(vcpu->kvm))
438                 return kvm_lapic_get_cr8(vcpu);
439         else
440                 return vcpu->arch.cr8;
441 }
442 EXPORT_SYMBOL_GPL(kvm_get_cr8);
443
444 /*
445  * List of msr numbers which we expose to userspace through KVM_GET_MSRS
446  * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST.
447  *
448  * This list is modified at module load time to reflect the
449  * capabilities of the host cpu.
450  */
451 static u32 msrs_to_save[] = {
452         MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP,
453         MSR_K6_STAR,
454 #ifdef CONFIG_X86_64
455         MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR,
456 #endif
457         MSR_IA32_TIME_STAMP_COUNTER, MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK,
458         MSR_IA32_PERF_STATUS, MSR_IA32_CR_PAT
459 };
460
461 static unsigned num_msrs_to_save;
462
463 static u32 emulated_msrs[] = {
464         MSR_IA32_MISC_ENABLE,
465 };
466
467 static void set_efer(struct kvm_vcpu *vcpu, u64 efer)
468 {
469         if (efer & efer_reserved_bits) {
470                 printk(KERN_DEBUG "set_efer: 0x%llx #GP, reserved bits\n",
471                        efer);
472                 kvm_inject_gp(vcpu, 0);
473                 return;
474         }
475
476         if (is_paging(vcpu)
477             && (vcpu->arch.shadow_efer & EFER_LME) != (efer & EFER_LME)) {
478                 printk(KERN_DEBUG "set_efer: #GP, change LME while paging\n");
479                 kvm_inject_gp(vcpu, 0);
480                 return;
481         }
482
483         kvm_x86_ops->set_efer(vcpu, efer);
484
485         efer &= ~EFER_LMA;
486         efer |= vcpu->arch.shadow_efer & EFER_LMA;
487
488         vcpu->arch.shadow_efer = efer;
489 }
490
491 void kvm_enable_efer_bits(u64 mask)
492 {
493        efer_reserved_bits &= ~mask;
494 }
495 EXPORT_SYMBOL_GPL(kvm_enable_efer_bits);
496
497
498 /*
499  * Writes msr value into into the appropriate "register".
500  * Returns 0 on success, non-0 otherwise.
501  * Assumes vcpu_load() was already called.
502  */
503 int kvm_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data)
504 {
505         return kvm_x86_ops->set_msr(vcpu, msr_index, data);
506 }
507
508 /*
509  * Adapt set_msr() to msr_io()'s calling convention
510  */
511 static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data)
512 {
513         return kvm_set_msr(vcpu, index, *data);
514 }
515
516 static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock)
517 {
518         static int version;
519         struct pvclock_wall_clock wc;
520         struct timespec now, sys, boot;
521
522         if (!wall_clock)
523                 return;
524
525         version++;
526
527         kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
528
529         /*
530          * The guest calculates current wall clock time by adding
531          * system time (updated by kvm_write_guest_time below) to the
532          * wall clock specified here.  guest system time equals host
533          * system time for us, thus we must fill in host boot time here.
534          */
535         now = current_kernel_time();
536         ktime_get_ts(&sys);
537         boot = ns_to_timespec(timespec_to_ns(&now) - timespec_to_ns(&sys));
538
539         wc.sec = boot.tv_sec;
540         wc.nsec = boot.tv_nsec;
541         wc.version = version;
542
543         kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc));
544
545         version++;
546         kvm_write_guest(kvm, wall_clock, &version, sizeof(version));
547 }
548
549 static uint32_t div_frac(uint32_t dividend, uint32_t divisor)
550 {
551         uint32_t quotient, remainder;
552
553         /* Don't try to replace with do_div(), this one calculates
554          * "(dividend << 32) / divisor" */
555         __asm__ ( "divl %4"
556                   : "=a" (quotient), "=d" (remainder)
557                   : "0" (0), "1" (dividend), "r" (divisor) );
558         return quotient;
559 }
560
561 static void kvm_set_time_scale(uint32_t tsc_khz, struct pvclock_vcpu_time_info *hv_clock)
562 {
563         uint64_t nsecs = 1000000000LL;
564         int32_t  shift = 0;
565         uint64_t tps64;
566         uint32_t tps32;
567
568         tps64 = tsc_khz * 1000LL;
569         while (tps64 > nsecs*2) {
570                 tps64 >>= 1;
571                 shift--;
572         }
573
574         tps32 = (uint32_t)tps64;
575         while (tps32 <= (uint32_t)nsecs) {
576                 tps32 <<= 1;
577                 shift++;
578         }
579
580         hv_clock->tsc_shift = shift;
581         hv_clock->tsc_to_system_mul = div_frac(nsecs, tps32);
582
583         pr_debug("%s: tsc_khz %u, tsc_shift %d, tsc_mul %u\n",
584                  __func__, tsc_khz, hv_clock->tsc_shift,
585                  hv_clock->tsc_to_system_mul);
586 }
587
588 static void kvm_write_guest_time(struct kvm_vcpu *v)
589 {
590         struct timespec ts;
591         unsigned long flags;
592         struct kvm_vcpu_arch *vcpu = &v->arch;
593         void *shared_kaddr;
594
595         if ((!vcpu->time_page))
596                 return;
597
598         if (unlikely(vcpu->hv_clock_tsc_khz != tsc_khz)) {
599                 kvm_set_time_scale(tsc_khz, &vcpu->hv_clock);
600                 vcpu->hv_clock_tsc_khz = tsc_khz;
601         }
602
603         /* Keep irq disabled to prevent changes to the clock */
604         local_irq_save(flags);
605         kvm_get_msr(v, MSR_IA32_TIME_STAMP_COUNTER,
606                           &vcpu->hv_clock.tsc_timestamp);
607         ktime_get_ts(&ts);
608         local_irq_restore(flags);
609
610         /* With all the info we got, fill in the values */
611
612         vcpu->hv_clock.system_time = ts.tv_nsec +
613                                      (NSEC_PER_SEC * (u64)ts.tv_sec);
614         /*
615          * The interface expects us to write an even number signaling that the
616          * update is finished. Since the guest won't see the intermediate
617          * state, we just increase by 2 at the end.
618          */
619         vcpu->hv_clock.version += 2;
620
621         shared_kaddr = kmap_atomic(vcpu->time_page, KM_USER0);
622
623         memcpy(shared_kaddr + vcpu->time_offset, &vcpu->hv_clock,
624                sizeof(vcpu->hv_clock));
625
626         kunmap_atomic(shared_kaddr, KM_USER0);
627
628         mark_page_dirty(v->kvm, vcpu->time >> PAGE_SHIFT);
629 }
630
631 static bool msr_mtrr_valid(unsigned msr)
632 {
633         switch (msr) {
634         case 0x200 ... 0x200 + 2 * KVM_NR_VAR_MTRR - 1:
635         case MSR_MTRRfix64K_00000:
636         case MSR_MTRRfix16K_80000:
637         case MSR_MTRRfix16K_A0000:
638         case MSR_MTRRfix4K_C0000:
639         case MSR_MTRRfix4K_C8000:
640         case MSR_MTRRfix4K_D0000:
641         case MSR_MTRRfix4K_D8000:
642         case MSR_MTRRfix4K_E0000:
643         case MSR_MTRRfix4K_E8000:
644         case MSR_MTRRfix4K_F0000:
645         case MSR_MTRRfix4K_F8000:
646         case MSR_MTRRdefType:
647         case MSR_IA32_CR_PAT:
648                 return true;
649         case 0x2f8:
650                 return true;
651         }
652         return false;
653 }
654
655 static int set_msr_mtrr(struct kvm_vcpu *vcpu, u32 msr, u64 data)
656 {
657         u64 *p = (u64 *)&vcpu->arch.mtrr_state.fixed_ranges;
658
659         if (!msr_mtrr_valid(msr))
660                 return 1;
661
662         if (msr == MSR_MTRRdefType) {
663                 vcpu->arch.mtrr_state.def_type = data;
664                 vcpu->arch.mtrr_state.enabled = (data & 0xc00) >> 10;
665         } else if (msr == MSR_MTRRfix64K_00000)
666                 p[0] = data;
667         else if (msr == MSR_MTRRfix16K_80000 || msr == MSR_MTRRfix16K_A0000)
668                 p[1 + msr - MSR_MTRRfix16K_80000] = data;
669         else if (msr >= MSR_MTRRfix4K_C0000 && msr <= MSR_MTRRfix4K_F8000)
670                 p[3 + msr - MSR_MTRRfix4K_C0000] = data;
671         else if (msr == MSR_IA32_CR_PAT)
672                 vcpu->arch.pat = data;
673         else {  /* Variable MTRRs */
674                 int idx, is_mtrr_mask;
675                 u64 *pt;
676
677                 idx = (msr - 0x200) / 2;
678                 is_mtrr_mask = msr - 0x200 - 2 * idx;
679                 if (!is_mtrr_mask)
680                         pt =
681                           (u64 *)&vcpu->arch.mtrr_state.var_ranges[idx].base_lo;
682                 else
683                         pt =
684                           (u64 *)&vcpu->arch.mtrr_state.var_ranges[idx].mask_lo;
685                 *pt = data;
686         }
687
688         kvm_mmu_reset_context(vcpu);
689         return 0;
690 }
691
692 int kvm_set_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 data)
693 {
694         switch (msr) {
695         case MSR_EFER:
696                 set_efer(vcpu, data);
697                 break;
698         case MSR_IA32_MC0_STATUS:
699                 pr_unimpl(vcpu, "%s: MSR_IA32_MC0_STATUS 0x%llx, nop\n",
700                        __func__, data);
701                 break;
702         case MSR_IA32_MCG_STATUS:
703                 pr_unimpl(vcpu, "%s: MSR_IA32_MCG_STATUS 0x%llx, nop\n",
704                         __func__, data);
705                 break;
706         case MSR_IA32_MCG_CTL:
707                 pr_unimpl(vcpu, "%s: MSR_IA32_MCG_CTL 0x%llx, nop\n",
708                         __func__, data);
709                 break;
710         case MSR_IA32_DEBUGCTLMSR:
711                 if (!data) {
712                         /* We support the non-activated case already */
713                         break;
714                 } else if (data & ~(DEBUGCTLMSR_LBR | DEBUGCTLMSR_BTF)) {
715                         /* Values other than LBR and BTF are vendor-specific,
716                            thus reserved and should throw a #GP */
717                         return 1;
718                 }
719                 pr_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTLMSR 0x%llx, nop\n",
720                         __func__, data);
721                 break;
722         case MSR_IA32_UCODE_REV:
723         case MSR_IA32_UCODE_WRITE:
724                 break;
725         case 0x200 ... 0x2ff:
726                 return set_msr_mtrr(vcpu, msr, data);
727         case MSR_IA32_APICBASE:
728                 kvm_set_apic_base(vcpu, data);
729                 break;
730         case MSR_IA32_MISC_ENABLE:
731                 vcpu->arch.ia32_misc_enable_msr = data;
732                 break;
733         case MSR_KVM_WALL_CLOCK:
734                 vcpu->kvm->arch.wall_clock = data;
735                 kvm_write_wall_clock(vcpu->kvm, data);
736                 break;
737         case MSR_KVM_SYSTEM_TIME: {
738                 if (vcpu->arch.time_page) {
739                         kvm_release_page_dirty(vcpu->arch.time_page);
740                         vcpu->arch.time_page = NULL;
741                 }
742
743                 vcpu->arch.time = data;
744
745                 /* we verify if the enable bit is set... */
746                 if (!(data & 1))
747                         break;
748
749                 /* ...but clean it before doing the actual write */
750                 vcpu->arch.time_offset = data & ~(PAGE_MASK | 1);
751
752                 vcpu->arch.time_page =
753                                 gfn_to_page(vcpu->kvm, data >> PAGE_SHIFT);
754
755                 if (is_error_page(vcpu->arch.time_page)) {
756                         kvm_release_page_clean(vcpu->arch.time_page);
757                         vcpu->arch.time_page = NULL;
758                 }
759
760                 kvm_write_guest_time(vcpu);
761                 break;
762         }
763         default:
764                 pr_unimpl(vcpu, "unhandled wrmsr: 0x%x data %llx\n", msr, data);
765                 return 1;
766         }
767         return 0;
768 }
769 EXPORT_SYMBOL_GPL(kvm_set_msr_common);
770
771
772 /*
773  * Reads an msr value (of 'msr_index') into 'pdata'.
774  * Returns 0 on success, non-0 otherwise.
775  * Assumes vcpu_load() was already called.
776  */
777 int kvm_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata)
778 {
779         return kvm_x86_ops->get_msr(vcpu, msr_index, pdata);
780 }
781
782 static int get_msr_mtrr(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
783 {
784         u64 *p = (u64 *)&vcpu->arch.mtrr_state.fixed_ranges;
785
786         if (!msr_mtrr_valid(msr))
787                 return 1;
788
789         if (msr == MSR_MTRRdefType)
790                 *pdata = vcpu->arch.mtrr_state.def_type +
791                          (vcpu->arch.mtrr_state.enabled << 10);
792         else if (msr == MSR_MTRRfix64K_00000)
793                 *pdata = p[0];
794         else if (msr == MSR_MTRRfix16K_80000 || msr == MSR_MTRRfix16K_A0000)
795                 *pdata = p[1 + msr - MSR_MTRRfix16K_80000];
796         else if (msr >= MSR_MTRRfix4K_C0000 && msr <= MSR_MTRRfix4K_F8000)
797                 *pdata = p[3 + msr - MSR_MTRRfix4K_C0000];
798         else if (msr == MSR_IA32_CR_PAT)
799                 *pdata = vcpu->arch.pat;
800         else {  /* Variable MTRRs */
801                 int idx, is_mtrr_mask;
802                 u64 *pt;
803
804                 idx = (msr - 0x200) / 2;
805                 is_mtrr_mask = msr - 0x200 - 2 * idx;
806                 if (!is_mtrr_mask)
807                         pt =
808                           (u64 *)&vcpu->arch.mtrr_state.var_ranges[idx].base_lo;
809                 else
810                         pt =
811                           (u64 *)&vcpu->arch.mtrr_state.var_ranges[idx].mask_lo;
812                 *pdata = *pt;
813         }
814
815         return 0;
816 }
817
818 int kvm_get_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata)
819 {
820         u64 data;
821
822         switch (msr) {
823         case 0xc0010010: /* SYSCFG */
824         case 0xc0010015: /* HWCR */
825         case MSR_IA32_PLATFORM_ID:
826         case MSR_IA32_P5_MC_ADDR:
827         case MSR_IA32_P5_MC_TYPE:
828         case MSR_IA32_MC0_CTL:
829         case MSR_IA32_MCG_STATUS:
830         case MSR_IA32_MCG_CAP:
831         case MSR_IA32_MCG_CTL:
832         case MSR_IA32_MC0_MISC:
833         case MSR_IA32_MC0_MISC+4:
834         case MSR_IA32_MC0_MISC+8:
835         case MSR_IA32_MC0_MISC+12:
836         case MSR_IA32_MC0_MISC+16:
837         case MSR_IA32_MC0_MISC+20:
838         case MSR_IA32_UCODE_REV:
839         case MSR_IA32_EBL_CR_POWERON:
840         case MSR_IA32_DEBUGCTLMSR:
841         case MSR_IA32_LASTBRANCHFROMIP:
842         case MSR_IA32_LASTBRANCHTOIP:
843         case MSR_IA32_LASTINTFROMIP:
844         case MSR_IA32_LASTINTTOIP:
845                 data = 0;
846                 break;
847         case MSR_MTRRcap:
848                 data = 0x500 | KVM_NR_VAR_MTRR;
849                 break;
850         case 0x200 ... 0x2ff:
851                 return get_msr_mtrr(vcpu, msr, pdata);
852         case 0xcd: /* fsb frequency */
853                 data = 3;
854                 break;
855         case MSR_IA32_APICBASE:
856                 data = kvm_get_apic_base(vcpu);
857                 break;
858         case MSR_IA32_MISC_ENABLE:
859                 data = vcpu->arch.ia32_misc_enable_msr;
860                 break;
861         case MSR_IA32_PERF_STATUS:
862                 /* TSC increment by tick */
863                 data = 1000ULL;
864                 /* CPU multiplier */
865                 data |= (((uint64_t)4ULL) << 40);
866                 break;
867         case MSR_EFER:
868                 data = vcpu->arch.shadow_efer;
869                 break;
870         case MSR_KVM_WALL_CLOCK:
871                 data = vcpu->kvm->arch.wall_clock;
872                 break;
873         case MSR_KVM_SYSTEM_TIME:
874                 data = vcpu->arch.time;
875                 break;
876         default:
877                 pr_unimpl(vcpu, "unhandled rdmsr: 0x%x\n", msr);
878                 return 1;
879         }
880         *pdata = data;
881         return 0;
882 }
883 EXPORT_SYMBOL_GPL(kvm_get_msr_common);
884
885 /*
886  * Read or write a bunch of msrs. All parameters are kernel addresses.
887  *
888  * @return number of msrs set successfully.
889  */
890 static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs,
891                     struct kvm_msr_entry *entries,
892                     int (*do_msr)(struct kvm_vcpu *vcpu,
893                                   unsigned index, u64 *data))
894 {
895         int i;
896
897         vcpu_load(vcpu);
898
899         down_read(&vcpu->kvm->slots_lock);
900         for (i = 0; i < msrs->nmsrs; ++i)
901                 if (do_msr(vcpu, entries[i].index, &entries[i].data))
902                         break;
903         up_read(&vcpu->kvm->slots_lock);
904
905         vcpu_put(vcpu);
906
907         return i;
908 }
909
910 /*
911  * Read or write a bunch of msrs. Parameters are user addresses.
912  *
913  * @return number of msrs set successfully.
914  */
915 static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs,
916                   int (*do_msr)(struct kvm_vcpu *vcpu,
917                                 unsigned index, u64 *data),
918                   int writeback)
919 {
920         struct kvm_msrs msrs;
921         struct kvm_msr_entry *entries;
922         int r, n;
923         unsigned size;
924
925         r = -EFAULT;
926         if (copy_from_user(&msrs, user_msrs, sizeof msrs))
927                 goto out;
928
929         r = -E2BIG;
930         if (msrs.nmsrs >= MAX_IO_MSRS)
931                 goto out;
932
933         r = -ENOMEM;
934         size = sizeof(struct kvm_msr_entry) * msrs.nmsrs;
935         entries = vmalloc(size);
936         if (!entries)
937                 goto out;
938
939         r = -EFAULT;
940         if (copy_from_user(entries, user_msrs->entries, size))
941                 goto out_free;
942
943         r = n = __msr_io(vcpu, &msrs, entries, do_msr);
944         if (r < 0)
945                 goto out_free;
946
947         r = -EFAULT;
948         if (writeback && copy_to_user(user_msrs->entries, entries, size))
949                 goto out_free;
950
951         r = n;
952
953 out_free:
954         vfree(entries);
955 out:
956         return r;
957 }
958
959 int kvm_dev_ioctl_check_extension(long ext)
960 {
961         int r;
962
963         switch (ext) {
964         case KVM_CAP_IRQCHIP:
965         case KVM_CAP_HLT:
966         case KVM_CAP_MMU_SHADOW_CACHE_CONTROL:
967         case KVM_CAP_USER_MEMORY:
968         case KVM_CAP_SET_TSS_ADDR:
969         case KVM_CAP_EXT_CPUID:
970         case KVM_CAP_CLOCKSOURCE:
971         case KVM_CAP_PIT:
972         case KVM_CAP_NOP_IO_DELAY:
973         case KVM_CAP_MP_STATE:
974         case KVM_CAP_SYNC_MMU:
975                 r = 1;
976                 break;
977         case KVM_CAP_COALESCED_MMIO:
978                 r = KVM_COALESCED_MMIO_PAGE_OFFSET;
979                 break;
980         case KVM_CAP_VAPIC:
981                 r = !kvm_x86_ops->cpu_has_accelerated_tpr();
982                 break;
983         case KVM_CAP_NR_VCPUS:
984                 r = KVM_MAX_VCPUS;
985                 break;
986         case KVM_CAP_NR_MEMSLOTS:
987                 r = KVM_MEMORY_SLOTS;
988                 break;
989         case KVM_CAP_PV_MMU:
990                 r = !tdp_enabled;
991                 break;
992         case KVM_CAP_IOMMU:
993                 r = intel_iommu_found();
994                 break;
995         default:
996                 r = 0;
997                 break;
998         }
999         return r;
1000
1001 }
1002
1003 long kvm_arch_dev_ioctl(struct file *filp,
1004                         unsigned int ioctl, unsigned long arg)
1005 {
1006         void __user *argp = (void __user *)arg;
1007         long r;
1008
1009         switch (ioctl) {
1010         case KVM_GET_MSR_INDEX_LIST: {
1011                 struct kvm_msr_list __user *user_msr_list = argp;
1012                 struct kvm_msr_list msr_list;
1013                 unsigned n;
1014
1015                 r = -EFAULT;
1016                 if (copy_from_user(&msr_list, user_msr_list, sizeof msr_list))
1017                         goto out;
1018                 n = msr_list.nmsrs;
1019                 msr_list.nmsrs = num_msrs_to_save + ARRAY_SIZE(emulated_msrs);
1020                 if (copy_to_user(user_msr_list, &msr_list, sizeof msr_list))
1021                         goto out;
1022                 r = -E2BIG;
1023                 if (n < num_msrs_to_save)
1024                         goto out;
1025                 r = -EFAULT;
1026                 if (copy_to_user(user_msr_list->indices, &msrs_to_save,
1027                                  num_msrs_to_save * sizeof(u32)))
1028                         goto out;
1029                 if (copy_to_user(user_msr_list->indices
1030                                  + num_msrs_to_save * sizeof(u32),
1031                                  &emulated_msrs,
1032                                  ARRAY_SIZE(emulated_msrs) * sizeof(u32)))
1033                         goto out;
1034                 r = 0;
1035                 break;
1036         }
1037         case KVM_GET_SUPPORTED_CPUID: {
1038                 struct kvm_cpuid2 __user *cpuid_arg = argp;
1039                 struct kvm_cpuid2 cpuid;
1040
1041                 r = -EFAULT;
1042                 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
1043                         goto out;
1044                 r = kvm_dev_ioctl_get_supported_cpuid(&cpuid,
1045                         cpuid_arg->entries);
1046                 if (r)
1047                         goto out;
1048
1049                 r = -EFAULT;
1050                 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
1051                         goto out;
1052                 r = 0;
1053                 break;
1054         }
1055         default:
1056                 r = -EINVAL;
1057         }
1058 out:
1059         return r;
1060 }
1061
1062 void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
1063 {
1064         kvm_x86_ops->vcpu_load(vcpu, cpu);
1065         kvm_write_guest_time(vcpu);
1066 }
1067
1068 void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
1069 {
1070         kvm_x86_ops->vcpu_put(vcpu);
1071         kvm_put_guest_fpu(vcpu);
1072 }
1073
1074 static int is_efer_nx(void)
1075 {
1076         u64 efer;
1077
1078         rdmsrl(MSR_EFER, efer);
1079         return efer & EFER_NX;
1080 }
1081
1082 static void cpuid_fix_nx_cap(struct kvm_vcpu *vcpu)
1083 {
1084         int i;
1085         struct kvm_cpuid_entry2 *e, *entry;
1086
1087         entry = NULL;
1088         for (i = 0; i < vcpu->arch.cpuid_nent; ++i) {
1089                 e = &vcpu->arch.cpuid_entries[i];
1090                 if (e->function == 0x80000001) {
1091                         entry = e;
1092                         break;
1093                 }
1094         }
1095         if (entry && (entry->edx & (1 << 20)) && !is_efer_nx()) {
1096                 entry->edx &= ~(1 << 20);
1097                 printk(KERN_INFO "kvm: guest NX capability removed\n");
1098         }
1099 }
1100
1101 /* when an old userspace process fills a new kernel module */
1102 static int kvm_vcpu_ioctl_set_cpuid(struct kvm_vcpu *vcpu,
1103                                     struct kvm_cpuid *cpuid,
1104                                     struct kvm_cpuid_entry __user *entries)
1105 {
1106         int r, i;
1107         struct kvm_cpuid_entry *cpuid_entries;
1108
1109         r = -E2BIG;
1110         if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
1111                 goto out;
1112         r = -ENOMEM;
1113         cpuid_entries = vmalloc(sizeof(struct kvm_cpuid_entry) * cpuid->nent);
1114         if (!cpuid_entries)
1115                 goto out;
1116         r = -EFAULT;
1117         if (copy_from_user(cpuid_entries, entries,
1118                            cpuid->nent * sizeof(struct kvm_cpuid_entry)))
1119                 goto out_free;
1120         for (i = 0; i < cpuid->nent; i++) {
1121                 vcpu->arch.cpuid_entries[i].function = cpuid_entries[i].function;
1122                 vcpu->arch.cpuid_entries[i].eax = cpuid_entries[i].eax;
1123                 vcpu->arch.cpuid_entries[i].ebx = cpuid_entries[i].ebx;
1124                 vcpu->arch.cpuid_entries[i].ecx = cpuid_entries[i].ecx;
1125                 vcpu->arch.cpuid_entries[i].edx = cpuid_entries[i].edx;
1126                 vcpu->arch.cpuid_entries[i].index = 0;
1127                 vcpu->arch.cpuid_entries[i].flags = 0;
1128                 vcpu->arch.cpuid_entries[i].padding[0] = 0;
1129                 vcpu->arch.cpuid_entries[i].padding[1] = 0;
1130                 vcpu->arch.cpuid_entries[i].padding[2] = 0;
1131         }
1132         vcpu->arch.cpuid_nent = cpuid->nent;
1133         cpuid_fix_nx_cap(vcpu);
1134         r = 0;
1135
1136 out_free:
1137         vfree(cpuid_entries);
1138 out:
1139         return r;
1140 }
1141
1142 static int kvm_vcpu_ioctl_set_cpuid2(struct kvm_vcpu *vcpu,
1143                                     struct kvm_cpuid2 *cpuid,
1144                                     struct kvm_cpuid_entry2 __user *entries)
1145 {
1146         int r;
1147
1148         r = -E2BIG;
1149         if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
1150                 goto out;
1151         r = -EFAULT;
1152         if (copy_from_user(&vcpu->arch.cpuid_entries, entries,
1153                            cpuid->nent * sizeof(struct kvm_cpuid_entry2)))
1154                 goto out;
1155         vcpu->arch.cpuid_nent = cpuid->nent;
1156         return 0;
1157
1158 out:
1159         return r;
1160 }
1161
1162 static int kvm_vcpu_ioctl_get_cpuid2(struct kvm_vcpu *vcpu,
1163                                     struct kvm_cpuid2 *cpuid,
1164                                     struct kvm_cpuid_entry2 __user *entries)
1165 {
1166         int r;
1167
1168         r = -E2BIG;
1169         if (cpuid->nent < vcpu->arch.cpuid_nent)
1170                 goto out;
1171         r = -EFAULT;
1172         if (copy_to_user(entries, &vcpu->arch.cpuid_entries,
1173                            vcpu->arch.cpuid_nent * sizeof(struct kvm_cpuid_entry2)))
1174                 goto out;
1175         return 0;
1176
1177 out:
1178         cpuid->nent = vcpu->arch.cpuid_nent;
1179         return r;
1180 }
1181
1182 static inline u32 bit(int bitno)
1183 {
1184         return 1 << (bitno & 31);
1185 }
1186
1187 static void do_cpuid_1_ent(struct kvm_cpuid_entry2 *entry, u32 function,
1188                           u32 index)
1189 {
1190         entry->function = function;
1191         entry->index = index;
1192         cpuid_count(entry->function, entry->index,
1193                 &entry->eax, &entry->ebx, &entry->ecx, &entry->edx);
1194         entry->flags = 0;
1195 }
1196
1197 static void do_cpuid_ent(struct kvm_cpuid_entry2 *entry, u32 function,
1198                          u32 index, int *nent, int maxnent)
1199 {
1200         const u32 kvm_supported_word0_x86_features = bit(X86_FEATURE_FPU) |
1201                 bit(X86_FEATURE_VME) | bit(X86_FEATURE_DE) |
1202                 bit(X86_FEATURE_PSE) | bit(X86_FEATURE_TSC) |
1203                 bit(X86_FEATURE_MSR) | bit(X86_FEATURE_PAE) |
1204                 bit(X86_FEATURE_CX8) | bit(X86_FEATURE_APIC) |
1205                 bit(X86_FEATURE_SEP) | bit(X86_FEATURE_PGE) |
1206                 bit(X86_FEATURE_CMOV) | bit(X86_FEATURE_PSE36) |
1207                 bit(X86_FEATURE_CLFLSH) | bit(X86_FEATURE_MMX) |
1208                 bit(X86_FEATURE_FXSR) | bit(X86_FEATURE_XMM) |
1209                 bit(X86_FEATURE_XMM2) | bit(X86_FEATURE_SELFSNOOP);
1210         const u32 kvm_supported_word1_x86_features = bit(X86_FEATURE_FPU) |
1211                 bit(X86_FEATURE_VME) | bit(X86_FEATURE_DE) |
1212                 bit(X86_FEATURE_PSE) | bit(X86_FEATURE_TSC) |
1213                 bit(X86_FEATURE_MSR) | bit(X86_FEATURE_PAE) |
1214                 bit(X86_FEATURE_CX8) | bit(X86_FEATURE_APIC) |
1215                 bit(X86_FEATURE_PGE) |
1216                 bit(X86_FEATURE_CMOV) | bit(X86_FEATURE_PSE36) |
1217                 bit(X86_FEATURE_MMX) | bit(X86_FEATURE_FXSR) |
1218                 bit(X86_FEATURE_SYSCALL) |
1219                 (bit(X86_FEATURE_NX) && is_efer_nx()) |
1220 #ifdef CONFIG_X86_64
1221                 bit(X86_FEATURE_LM) |
1222 #endif
1223                 bit(X86_FEATURE_MMXEXT) |
1224                 bit(X86_FEATURE_3DNOWEXT) |
1225                 bit(X86_FEATURE_3DNOW);
1226         const u32 kvm_supported_word3_x86_features =
1227                 bit(X86_FEATURE_XMM3) | bit(X86_FEATURE_CX16);
1228         const u32 kvm_supported_word6_x86_features =
1229                 bit(X86_FEATURE_LAHF_LM) | bit(X86_FEATURE_CMP_LEGACY);
1230
1231         /* all func 2 cpuid_count() should be called on the same cpu */
1232         get_cpu();
1233         do_cpuid_1_ent(entry, function, index);
1234         ++*nent;
1235
1236         switch (function) {
1237         case 0:
1238                 entry->eax = min(entry->eax, (u32)0xb);
1239                 break;
1240         case 1:
1241                 entry->edx &= kvm_supported_word0_x86_features;
1242                 entry->ecx &= kvm_supported_word3_x86_features;
1243                 break;
1244         /* function 2 entries are STATEFUL. That is, repeated cpuid commands
1245          * may return different values. This forces us to get_cpu() before
1246          * issuing the first command, and also to emulate this annoying behavior
1247          * in kvm_emulate_cpuid() using KVM_CPUID_FLAG_STATE_READ_NEXT */
1248         case 2: {
1249                 int t, times = entry->eax & 0xff;
1250
1251                 entry->flags |= KVM_CPUID_FLAG_STATEFUL_FUNC;
1252                 entry->flags |= KVM_CPUID_FLAG_STATE_READ_NEXT;
1253                 for (t = 1; t < times && *nent < maxnent; ++t) {
1254                         do_cpuid_1_ent(&entry[t], function, 0);
1255                         entry[t].flags |= KVM_CPUID_FLAG_STATEFUL_FUNC;
1256                         ++*nent;
1257                 }
1258                 break;
1259         }
1260         /* function 4 and 0xb have additional index. */
1261         case 4: {
1262                 int i, cache_type;
1263
1264                 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
1265                 /* read more entries until cache_type is zero */
1266                 for (i = 1; *nent < maxnent; ++i) {
1267                         cache_type = entry[i - 1].eax & 0x1f;
1268                         if (!cache_type)
1269                                 break;
1270                         do_cpuid_1_ent(&entry[i], function, i);
1271                         entry[i].flags |=
1272                                KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
1273                         ++*nent;
1274                 }
1275                 break;
1276         }
1277         case 0xb: {
1278                 int i, level_type;
1279
1280                 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
1281                 /* read more entries until level_type is zero */
1282                 for (i = 1; *nent < maxnent; ++i) {
1283                         level_type = entry[i - 1].ecx & 0xff00;
1284                         if (!level_type)
1285                                 break;
1286                         do_cpuid_1_ent(&entry[i], function, i);
1287                         entry[i].flags |=
1288                                KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
1289                         ++*nent;
1290                 }
1291                 break;
1292         }
1293         case 0x80000000:
1294                 entry->eax = min(entry->eax, 0x8000001a);
1295                 break;
1296         case 0x80000001:
1297                 entry->edx &= kvm_supported_word1_x86_features;
1298                 entry->ecx &= kvm_supported_word6_x86_features;
1299                 break;
1300         }
1301         put_cpu();
1302 }
1303
1304 static int kvm_dev_ioctl_get_supported_cpuid(struct kvm_cpuid2 *cpuid,
1305                                     struct kvm_cpuid_entry2 __user *entries)
1306 {
1307         struct kvm_cpuid_entry2 *cpuid_entries;
1308         int limit, nent = 0, r = -E2BIG;
1309         u32 func;
1310
1311         if (cpuid->nent < 1)
1312                 goto out;
1313         r = -ENOMEM;
1314         cpuid_entries = vmalloc(sizeof(struct kvm_cpuid_entry2) * cpuid->nent);
1315         if (!cpuid_entries)
1316                 goto out;
1317
1318         do_cpuid_ent(&cpuid_entries[0], 0, 0, &nent, cpuid->nent);
1319         limit = cpuid_entries[0].eax;
1320         for (func = 1; func <= limit && nent < cpuid->nent; ++func)
1321                 do_cpuid_ent(&cpuid_entries[nent], func, 0,
1322                                 &nent, cpuid->nent);
1323         r = -E2BIG;
1324         if (nent >= cpuid->nent)
1325                 goto out_free;
1326
1327         do_cpuid_ent(&cpuid_entries[nent], 0x80000000, 0, &nent, cpuid->nent);
1328         limit = cpuid_entries[nent - 1].eax;
1329         for (func = 0x80000001; func <= limit && nent < cpuid->nent; ++func)
1330                 do_cpuid_ent(&cpuid_entries[nent], func, 0,
1331                                &nent, cpuid->nent);
1332         r = -EFAULT;
1333         if (copy_to_user(entries, cpuid_entries,
1334                         nent * sizeof(struct kvm_cpuid_entry2)))
1335                 goto out_free;
1336         cpuid->nent = nent;
1337         r = 0;
1338
1339 out_free:
1340         vfree(cpuid_entries);
1341 out:
1342         return r;
1343 }
1344
1345 static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu,
1346                                     struct kvm_lapic_state *s)
1347 {
1348         vcpu_load(vcpu);
1349         memcpy(s->regs, vcpu->arch.apic->regs, sizeof *s);
1350         vcpu_put(vcpu);
1351
1352         return 0;
1353 }
1354
1355 static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
1356                                     struct kvm_lapic_state *s)
1357 {
1358         vcpu_load(vcpu);
1359         memcpy(vcpu->arch.apic->regs, s->regs, sizeof *s);
1360         kvm_apic_post_state_restore(vcpu);
1361         vcpu_put(vcpu);
1362
1363         return 0;
1364 }
1365
1366 static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
1367                                     struct kvm_interrupt *irq)
1368 {
1369         if (irq->irq < 0 || irq->irq >= 256)
1370                 return -EINVAL;
1371         if (irqchip_in_kernel(vcpu->kvm))
1372                 return -ENXIO;
1373         vcpu_load(vcpu);
1374
1375         set_bit(irq->irq, vcpu->arch.irq_pending);
1376         set_bit(irq->irq / BITS_PER_LONG, &vcpu->arch.irq_summary);
1377
1378         vcpu_put(vcpu);
1379
1380         return 0;
1381 }
1382
1383 static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu)
1384 {
1385         vcpu_load(vcpu);
1386         kvm_inject_nmi(vcpu);
1387         vcpu_put(vcpu);
1388
1389         return 0;
1390 }
1391
1392 static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu,
1393                                            struct kvm_tpr_access_ctl *tac)
1394 {
1395         if (tac->flags)
1396                 return -EINVAL;
1397         vcpu->arch.tpr_access_reporting = !!tac->enabled;
1398         return 0;
1399 }
1400
1401 long kvm_arch_vcpu_ioctl(struct file *filp,
1402                          unsigned int ioctl, unsigned long arg)
1403 {
1404         struct kvm_vcpu *vcpu = filp->private_data;
1405         void __user *argp = (void __user *)arg;
1406         int r;
1407         struct kvm_lapic_state *lapic = NULL;
1408
1409         switch (ioctl) {
1410         case KVM_GET_LAPIC: {
1411                 lapic = kzalloc(sizeof(struct kvm_lapic_state), GFP_KERNEL);
1412
1413                 r = -ENOMEM;
1414                 if (!lapic)
1415                         goto out;
1416                 r = kvm_vcpu_ioctl_get_lapic(vcpu, lapic);
1417                 if (r)
1418                         goto out;
1419                 r = -EFAULT;
1420                 if (copy_to_user(argp, lapic, sizeof(struct kvm_lapic_state)))
1421                         goto out;
1422                 r = 0;
1423                 break;
1424         }
1425         case KVM_SET_LAPIC: {
1426                 lapic = kmalloc(sizeof(struct kvm_lapic_state), GFP_KERNEL);
1427                 r = -ENOMEM;
1428                 if (!lapic)
1429                         goto out;
1430                 r = -EFAULT;
1431                 if (copy_from_user(lapic, argp, sizeof(struct kvm_lapic_state)))
1432                         goto out;
1433                 r = kvm_vcpu_ioctl_set_lapic(vcpu, lapic);
1434                 if (r)
1435                         goto out;
1436                 r = 0;
1437                 break;
1438         }
1439         case KVM_INTERRUPT: {
1440                 struct kvm_interrupt irq;
1441
1442                 r = -EFAULT;
1443                 if (copy_from_user(&irq, argp, sizeof irq))
1444                         goto out;
1445                 r = kvm_vcpu_ioctl_interrupt(vcpu, &irq);
1446                 if (r)
1447                         goto out;
1448                 r = 0;
1449                 break;
1450         }
1451         case KVM_NMI: {
1452                 r = kvm_vcpu_ioctl_nmi(vcpu);
1453                 if (r)
1454                         goto out;
1455                 r = 0;
1456                 break;
1457         }
1458         case KVM_SET_CPUID: {
1459                 struct kvm_cpuid __user *cpuid_arg = argp;
1460                 struct kvm_cpuid cpuid;
1461
1462                 r = -EFAULT;
1463                 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
1464                         goto out;
1465                 r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries);
1466                 if (r)
1467                         goto out;
1468                 break;
1469         }
1470         case KVM_SET_CPUID2: {
1471                 struct kvm_cpuid2 __user *cpuid_arg = argp;
1472                 struct kvm_cpuid2 cpuid;
1473
1474                 r = -EFAULT;
1475                 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
1476                         goto out;
1477                 r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid,
1478                                 cpuid_arg->entries);
1479                 if (r)
1480                         goto out;
1481                 break;
1482         }
1483         case KVM_GET_CPUID2: {
1484                 struct kvm_cpuid2 __user *cpuid_arg = argp;
1485                 struct kvm_cpuid2 cpuid;
1486
1487                 r = -EFAULT;
1488                 if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid))
1489                         goto out;
1490                 r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid,
1491                                 cpuid_arg->entries);
1492                 if (r)
1493                         goto out;
1494                 r = -EFAULT;
1495                 if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid))
1496                         goto out;
1497                 r = 0;
1498                 break;
1499         }
1500         case KVM_GET_MSRS:
1501                 r = msr_io(vcpu, argp, kvm_get_msr, 1);
1502                 break;
1503         case KVM_SET_MSRS:
1504                 r = msr_io(vcpu, argp, do_set_msr, 0);
1505                 break;
1506         case KVM_TPR_ACCESS_REPORTING: {
1507                 struct kvm_tpr_access_ctl tac;
1508
1509                 r = -EFAULT;
1510                 if (copy_from_user(&tac, argp, sizeof tac))
1511                         goto out;
1512                 r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac);
1513                 if (r)
1514                         goto out;
1515                 r = -EFAULT;
1516                 if (copy_to_user(argp, &tac, sizeof tac))
1517                         goto out;
1518                 r = 0;
1519                 break;
1520         };
1521         case KVM_SET_VAPIC_ADDR: {
1522                 struct kvm_vapic_addr va;
1523
1524                 r = -EINVAL;
1525                 if (!irqchip_in_kernel(vcpu->kvm))
1526                         goto out;
1527                 r = -EFAULT;
1528                 if (copy_from_user(&va, argp, sizeof va))
1529                         goto out;
1530                 r = 0;
1531                 kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr);
1532                 break;
1533         }
1534         default:
1535                 r = -EINVAL;
1536         }
1537 out:
1538         if (lapic)
1539                 kfree(lapic);
1540         return r;
1541 }
1542
1543 static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr)
1544 {
1545         int ret;
1546
1547         if (addr > (unsigned int)(-3 * PAGE_SIZE))
1548                 return -1;
1549         ret = kvm_x86_ops->set_tss_addr(kvm, addr);
1550         return ret;
1551 }
1552
1553 static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm,
1554                                           u32 kvm_nr_mmu_pages)
1555 {
1556         if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES)
1557                 return -EINVAL;
1558
1559         down_write(&kvm->slots_lock);
1560
1561         kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages);
1562         kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages;
1563
1564         up_write(&kvm->slots_lock);
1565         return 0;
1566 }
1567
1568 static int kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm)
1569 {
1570         return kvm->arch.n_alloc_mmu_pages;
1571 }
1572
1573 gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn)
1574 {
1575         int i;
1576         struct kvm_mem_alias *alias;
1577
1578         for (i = 0; i < kvm->arch.naliases; ++i) {
1579                 alias = &kvm->arch.aliases[i];
1580                 if (gfn >= alias->base_gfn
1581                     && gfn < alias->base_gfn + alias->npages)
1582                         return alias->target_gfn + gfn - alias->base_gfn;
1583         }
1584         return gfn;
1585 }
1586
1587 /*
1588  * Set a new alias region.  Aliases map a portion of physical memory into
1589  * another portion.  This is useful for memory windows, for example the PC
1590  * VGA region.
1591  */
1592 static int kvm_vm_ioctl_set_memory_alias(struct kvm *kvm,
1593                                          struct kvm_memory_alias *alias)
1594 {
1595         int r, n;
1596         struct kvm_mem_alias *p;
1597
1598         r = -EINVAL;
1599         /* General sanity checks */
1600         if (alias->memory_size & (PAGE_SIZE - 1))
1601                 goto out;
1602         if (alias->guest_phys_addr & (PAGE_SIZE - 1))
1603                 goto out;
1604         if (alias->slot >= KVM_ALIAS_SLOTS)
1605                 goto out;
1606         if (alias->guest_phys_addr + alias->memory_size
1607             < alias->guest_phys_addr)
1608                 goto out;
1609         if (alias->target_phys_addr + alias->memory_size
1610             < alias->target_phys_addr)
1611                 goto out;
1612
1613         down_write(&kvm->slots_lock);
1614         spin_lock(&kvm->mmu_lock);
1615
1616         p = &kvm->arch.aliases[alias->slot];
1617         p->base_gfn = alias->guest_phys_addr >> PAGE_SHIFT;
1618         p->npages = alias->memory_size >> PAGE_SHIFT;
1619         p->target_gfn = alias->target_phys_addr >> PAGE_SHIFT;
1620
1621         for (n = KVM_ALIAS_SLOTS; n > 0; --n)
1622                 if (kvm->arch.aliases[n - 1].npages)
1623                         break;
1624         kvm->arch.naliases = n;
1625
1626         spin_unlock(&kvm->mmu_lock);
1627         kvm_mmu_zap_all(kvm);
1628
1629         up_write(&kvm->slots_lock);
1630
1631         return 0;
1632
1633 out:
1634         return r;
1635 }
1636
1637 static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
1638 {
1639         int r;
1640
1641         r = 0;
1642         switch (chip->chip_id) {
1643         case KVM_IRQCHIP_PIC_MASTER:
1644                 memcpy(&chip->chip.pic,
1645                         &pic_irqchip(kvm)->pics[0],
1646                         sizeof(struct kvm_pic_state));
1647                 break;
1648         case KVM_IRQCHIP_PIC_SLAVE:
1649                 memcpy(&chip->chip.pic,
1650                         &pic_irqchip(kvm)->pics[1],
1651                         sizeof(struct kvm_pic_state));
1652                 break;
1653         case KVM_IRQCHIP_IOAPIC:
1654                 memcpy(&chip->chip.ioapic,
1655                         ioapic_irqchip(kvm),
1656                         sizeof(struct kvm_ioapic_state));
1657                 break;
1658         default:
1659                 r = -EINVAL;
1660                 break;
1661         }
1662         return r;
1663 }
1664
1665 static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip)
1666 {
1667         int r;
1668
1669         r = 0;
1670         switch (chip->chip_id) {
1671         case KVM_IRQCHIP_PIC_MASTER:
1672                 memcpy(&pic_irqchip(kvm)->pics[0],
1673                         &chip->chip.pic,
1674                         sizeof(struct kvm_pic_state));
1675                 break;
1676         case KVM_IRQCHIP_PIC_SLAVE:
1677                 memcpy(&pic_irqchip(kvm)->pics[1],
1678                         &chip->chip.pic,
1679                         sizeof(struct kvm_pic_state));
1680                 break;
1681         case KVM_IRQCHIP_IOAPIC:
1682                 memcpy(ioapic_irqchip(kvm),
1683                         &chip->chip.ioapic,
1684                         sizeof(struct kvm_ioapic_state));
1685                 break;
1686         default:
1687                 r = -EINVAL;
1688                 break;
1689         }
1690         kvm_pic_update_irq(pic_irqchip(kvm));
1691         return r;
1692 }
1693
1694 static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps)
1695 {
1696         int r = 0;
1697
1698         memcpy(ps, &kvm->arch.vpit->pit_state, sizeof(struct kvm_pit_state));
1699         return r;
1700 }
1701
1702 static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps)
1703 {
1704         int r = 0;
1705
1706         memcpy(&kvm->arch.vpit->pit_state, ps, sizeof(struct kvm_pit_state));
1707         kvm_pit_load_count(kvm, 0, ps->channels[0].count);
1708         return r;
1709 }
1710
1711 /*
1712  * Get (and clear) the dirty memory log for a memory slot.
1713  */
1714 int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
1715                                       struct kvm_dirty_log *log)
1716 {
1717         int r;
1718         int n;
1719         struct kvm_memory_slot *memslot;
1720         int is_dirty = 0;
1721
1722         down_write(&kvm->slots_lock);
1723
1724         r = kvm_get_dirty_log(kvm, log, &is_dirty);
1725         if (r)
1726                 goto out;
1727
1728         /* If nothing is dirty, don't bother messing with page tables. */
1729         if (is_dirty) {
1730                 kvm_mmu_slot_remove_write_access(kvm, log->slot);
1731                 kvm_flush_remote_tlbs(kvm);
1732                 memslot = &kvm->memslots[log->slot];
1733                 n = ALIGN(memslot->npages, BITS_PER_LONG) / 8;
1734                 memset(memslot->dirty_bitmap, 0, n);
1735         }
1736         r = 0;
1737 out:
1738         up_write(&kvm->slots_lock);
1739         return r;
1740 }
1741
1742 long kvm_arch_vm_ioctl(struct file *filp,
1743                        unsigned int ioctl, unsigned long arg)
1744 {
1745         struct kvm *kvm = filp->private_data;
1746         void __user *argp = (void __user *)arg;
1747         int r = -EINVAL;
1748         /*
1749          * This union makes it completely explicit to gcc-3.x
1750          * that these two variables' stack usage should be
1751          * combined, not added together.
1752          */
1753         union {
1754                 struct kvm_pit_state ps;
1755                 struct kvm_memory_alias alias;
1756         } u;
1757
1758         switch (ioctl) {
1759         case KVM_SET_TSS_ADDR:
1760                 r = kvm_vm_ioctl_set_tss_addr(kvm, arg);
1761                 if (r < 0)
1762                         goto out;
1763                 break;
1764         case KVM_SET_MEMORY_REGION: {
1765                 struct kvm_memory_region kvm_mem;
1766                 struct kvm_userspace_memory_region kvm_userspace_mem;
1767
1768                 r = -EFAULT;
1769                 if (copy_from_user(&kvm_mem, argp, sizeof kvm_mem))
1770                         goto out;
1771                 kvm_userspace_mem.slot = kvm_mem.slot;
1772                 kvm_userspace_mem.flags = kvm_mem.flags;
1773                 kvm_userspace_mem.guest_phys_addr = kvm_mem.guest_phys_addr;
1774                 kvm_userspace_mem.memory_size = kvm_mem.memory_size;
1775                 r = kvm_vm_ioctl_set_memory_region(kvm, &kvm_userspace_mem, 0);
1776                 if (r)
1777                         goto out;
1778                 break;
1779         }
1780         case KVM_SET_NR_MMU_PAGES:
1781                 r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg);
1782                 if (r)
1783                         goto out;
1784                 break;
1785         case KVM_GET_NR_MMU_PAGES:
1786                 r = kvm_vm_ioctl_get_nr_mmu_pages(kvm);
1787                 break;
1788         case KVM_SET_MEMORY_ALIAS:
1789                 r = -EFAULT;
1790                 if (copy_from_user(&u.alias, argp, sizeof(struct kvm_memory_alias)))
1791                         goto out;
1792                 r = kvm_vm_ioctl_set_memory_alias(kvm, &u.alias);
1793                 if (r)
1794                         goto out;
1795                 break;
1796         case KVM_CREATE_IRQCHIP:
1797                 r = -ENOMEM;
1798                 kvm->arch.vpic = kvm_create_pic(kvm);
1799                 if (kvm->arch.vpic) {
1800                         r = kvm_ioapic_init(kvm);
1801                         if (r) {
1802                                 kfree(kvm->arch.vpic);
1803                                 kvm->arch.vpic = NULL;
1804                                 goto out;
1805                         }
1806                 } else
1807                         goto out;
1808                 break;
1809         case KVM_CREATE_PIT:
1810                 r = -ENOMEM;
1811                 kvm->arch.vpit = kvm_create_pit(kvm);
1812                 if (kvm->arch.vpit)
1813                         r = 0;
1814                 break;
1815         case KVM_IRQ_LINE: {
1816                 struct kvm_irq_level irq_event;
1817
1818                 r = -EFAULT;
1819                 if (copy_from_user(&irq_event, argp, sizeof irq_event))
1820                         goto out;
1821                 if (irqchip_in_kernel(kvm)) {
1822                         mutex_lock(&kvm->lock);
1823                         kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID,
1824                                     irq_event.irq, irq_event.level);
1825                         mutex_unlock(&kvm->lock);
1826                         r = 0;
1827                 }
1828                 break;
1829         }
1830         case KVM_GET_IRQCHIP: {
1831                 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
1832                 struct kvm_irqchip *chip = kmalloc(sizeof(*chip), GFP_KERNEL);
1833
1834                 r = -ENOMEM;
1835                 if (!chip)
1836                         goto out;
1837                 r = -EFAULT;
1838                 if (copy_from_user(chip, argp, sizeof *chip))
1839                         goto get_irqchip_out;
1840                 r = -ENXIO;
1841                 if (!irqchip_in_kernel(kvm))
1842                         goto get_irqchip_out;
1843                 r = kvm_vm_ioctl_get_irqchip(kvm, chip);
1844                 if (r)
1845                         goto get_irqchip_out;
1846                 r = -EFAULT;
1847                 if (copy_to_user(argp, chip, sizeof *chip))
1848                         goto get_irqchip_out;
1849                 r = 0;
1850         get_irqchip_out:
1851                 kfree(chip);
1852                 if (r)
1853                         goto out;
1854                 break;
1855         }
1856         case KVM_SET_IRQCHIP: {
1857                 /* 0: PIC master, 1: PIC slave, 2: IOAPIC */
1858                 struct kvm_irqchip *chip = kmalloc(sizeof(*chip), GFP_KERNEL);
1859
1860                 r = -ENOMEM;
1861                 if (!chip)
1862                         goto out;
1863                 r = -EFAULT;
1864                 if (copy_from_user(chip, argp, sizeof *chip))
1865                         goto set_irqchip_out;
1866                 r = -ENXIO;
1867                 if (!irqchip_in_kernel(kvm))
1868                         goto set_irqchip_out;
1869                 r = kvm_vm_ioctl_set_irqchip(kvm, chip);
1870                 if (r)
1871                         goto set_irqchip_out;
1872                 r = 0;
1873         set_irqchip_out:
1874                 kfree(chip);
1875                 if (r)
1876                         goto out;
1877                 break;
1878         }
1879         case KVM_GET_PIT: {
1880                 r = -EFAULT;
1881                 if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state)))
1882                         goto out;
1883                 r = -ENXIO;
1884                 if (!kvm->arch.vpit)
1885                         goto out;
1886                 r = kvm_vm_ioctl_get_pit(kvm, &u.ps);
1887                 if (r)
1888                         goto out;
1889                 r = -EFAULT;
1890                 if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state)))
1891                         goto out;
1892                 r = 0;
1893                 break;
1894         }
1895         case KVM_SET_PIT: {
1896                 r = -EFAULT;
1897                 if (copy_from_user(&u.ps, argp, sizeof u.ps))
1898                         goto out;
1899                 r = -ENXIO;
1900                 if (!kvm->arch.vpit)
1901                         goto out;
1902                 r = kvm_vm_ioctl_set_pit(kvm, &u.ps);
1903                 if (r)
1904                         goto out;
1905                 r = 0;
1906                 break;
1907         }
1908         default:
1909                 ;
1910         }
1911 out:
1912         return r;
1913 }
1914
1915 static void kvm_init_msr_list(void)
1916 {
1917         u32 dummy[2];
1918         unsigned i, j;
1919
1920         for (i = j = 0; i < ARRAY_SIZE(msrs_to_save); i++) {
1921                 if (rdmsr_safe(msrs_to_save[i], &dummy[0], &dummy[1]) < 0)
1922                         continue;
1923                 if (j < i)
1924                         msrs_to_save[j] = msrs_to_save[i];
1925                 j++;
1926         }
1927         num_msrs_to_save = j;
1928 }
1929
1930 /*
1931  * Only apic need an MMIO device hook, so shortcut now..
1932  */
1933 static struct kvm_io_device *vcpu_find_pervcpu_dev(struct kvm_vcpu *vcpu,
1934                                                 gpa_t addr, int len,
1935                                                 int is_write)
1936 {
1937         struct kvm_io_device *dev;
1938
1939         if (vcpu->arch.apic) {
1940                 dev = &vcpu->arch.apic->dev;
1941                 if (dev->in_range(dev, addr, len, is_write))
1942                         return dev;
1943         }
1944         return NULL;
1945 }
1946
1947
1948 static struct kvm_io_device *vcpu_find_mmio_dev(struct kvm_vcpu *vcpu,
1949                                                 gpa_t addr, int len,
1950                                                 int is_write)
1951 {
1952         struct kvm_io_device *dev;
1953
1954         dev = vcpu_find_pervcpu_dev(vcpu, addr, len, is_write);
1955         if (dev == NULL)
1956                 dev = kvm_io_bus_find_dev(&vcpu->kvm->mmio_bus, addr, len,
1957                                           is_write);
1958         return dev;
1959 }
1960
1961 int emulator_read_std(unsigned long addr,
1962                              void *val,
1963                              unsigned int bytes,
1964                              struct kvm_vcpu *vcpu)
1965 {
1966         void *data = val;
1967         int r = X86EMUL_CONTINUE;
1968
1969         while (bytes) {
1970                 gpa_t gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, addr);
1971                 unsigned offset = addr & (PAGE_SIZE-1);
1972                 unsigned tocopy = min(bytes, (unsigned)PAGE_SIZE - offset);
1973                 int ret;
1974
1975                 if (gpa == UNMAPPED_GVA) {
1976                         r = X86EMUL_PROPAGATE_FAULT;
1977                         goto out;
1978                 }
1979                 ret = kvm_read_guest(vcpu->kvm, gpa, data, tocopy);
1980                 if (ret < 0) {
1981                         r = X86EMUL_UNHANDLEABLE;
1982                         goto out;
1983                 }
1984
1985                 bytes -= tocopy;
1986                 data += tocopy;
1987                 addr += tocopy;
1988         }
1989 out:
1990         return r;
1991 }
1992 EXPORT_SYMBOL_GPL(emulator_read_std);
1993
1994 static int emulator_read_emulated(unsigned long addr,
1995                                   void *val,
1996                                   unsigned int bytes,
1997                                   struct kvm_vcpu *vcpu)
1998 {
1999         struct kvm_io_device *mmio_dev;
2000         gpa_t                 gpa;
2001
2002         if (vcpu->mmio_read_completed) {
2003                 memcpy(val, vcpu->mmio_data, bytes);
2004                 vcpu->mmio_read_completed = 0;
2005                 return X86EMUL_CONTINUE;
2006         }
2007
2008         gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, addr);
2009
2010         /* For APIC access vmexit */
2011         if ((gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
2012                 goto mmio;
2013
2014         if (emulator_read_std(addr, val, bytes, vcpu)
2015                         == X86EMUL_CONTINUE)
2016                 return X86EMUL_CONTINUE;
2017         if (gpa == UNMAPPED_GVA)
2018                 return X86EMUL_PROPAGATE_FAULT;
2019
2020 mmio:
2021         /*
2022          * Is this MMIO handled locally?
2023          */
2024         mutex_lock(&vcpu->kvm->lock);
2025         mmio_dev = vcpu_find_mmio_dev(vcpu, gpa, bytes, 0);
2026         if (mmio_dev) {
2027                 kvm_iodevice_read(mmio_dev, gpa, bytes, val);
2028                 mutex_unlock(&vcpu->kvm->lock);
2029                 return X86EMUL_CONTINUE;
2030         }
2031         mutex_unlock(&vcpu->kvm->lock);
2032
2033         vcpu->mmio_needed = 1;
2034         vcpu->mmio_phys_addr = gpa;
2035         vcpu->mmio_size = bytes;
2036         vcpu->mmio_is_write = 0;
2037
2038         return X86EMUL_UNHANDLEABLE;
2039 }
2040
2041 int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa,
2042                           const void *val, int bytes)
2043 {
2044         int ret;
2045
2046         ret = kvm_write_guest(vcpu->kvm, gpa, val, bytes);
2047         if (ret < 0)
2048                 return 0;
2049         kvm_mmu_pte_write(vcpu, gpa, val, bytes, 1);
2050         return 1;
2051 }
2052
2053 static int emulator_write_emulated_onepage(unsigned long addr,
2054                                            const void *val,
2055                                            unsigned int bytes,
2056                                            struct kvm_vcpu *vcpu)
2057 {
2058         struct kvm_io_device *mmio_dev;
2059         gpa_t                 gpa;
2060
2061         gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, addr);
2062
2063         if (gpa == UNMAPPED_GVA) {
2064                 kvm_inject_page_fault(vcpu, addr, 2);
2065                 return X86EMUL_PROPAGATE_FAULT;
2066         }
2067
2068         /* For APIC access vmexit */
2069         if ((gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
2070                 goto mmio;
2071
2072         if (emulator_write_phys(vcpu, gpa, val, bytes))
2073                 return X86EMUL_CONTINUE;
2074
2075 mmio:
2076         /*
2077          * Is this MMIO handled locally?
2078          */
2079         mutex_lock(&vcpu->kvm->lock);
2080         mmio_dev = vcpu_find_mmio_dev(vcpu, gpa, bytes, 1);
2081         if (mmio_dev) {
2082                 kvm_iodevice_write(mmio_dev, gpa, bytes, val);
2083                 mutex_unlock(&vcpu->kvm->lock);
2084                 return X86EMUL_CONTINUE;
2085         }
2086         mutex_unlock(&vcpu->kvm->lock);
2087
2088         vcpu->mmio_needed = 1;
2089         vcpu->mmio_phys_addr = gpa;
2090         vcpu->mmio_size = bytes;
2091         vcpu->mmio_is_write = 1;
2092         memcpy(vcpu->mmio_data, val, bytes);
2093
2094         return X86EMUL_CONTINUE;
2095 }
2096
2097 int emulator_write_emulated(unsigned long addr,
2098                                    const void *val,
2099                                    unsigned int bytes,
2100                                    struct kvm_vcpu *vcpu)
2101 {
2102         /* Crossing a page boundary? */
2103         if (((addr + bytes - 1) ^ addr) & PAGE_MASK) {
2104                 int rc, now;
2105
2106                 now = -addr & ~PAGE_MASK;
2107                 rc = emulator_write_emulated_onepage(addr, val, now, vcpu);
2108                 if (rc != X86EMUL_CONTINUE)
2109                         return rc;
2110                 addr += now;
2111                 val += now;
2112                 bytes -= now;
2113         }
2114         return emulator_write_emulated_onepage(addr, val, bytes, vcpu);
2115 }
2116 EXPORT_SYMBOL_GPL(emulator_write_emulated);
2117
2118 static int emulator_cmpxchg_emulated(unsigned long addr,
2119                                      const void *old,
2120                                      const void *new,
2121                                      unsigned int bytes,
2122                                      struct kvm_vcpu *vcpu)
2123 {
2124         static int reported;
2125
2126         if (!reported) {
2127                 reported = 1;
2128                 printk(KERN_WARNING "kvm: emulating exchange as write\n");
2129         }
2130 #ifndef CONFIG_X86_64
2131         /* guests cmpxchg8b have to be emulated atomically */
2132         if (bytes == 8) {
2133                 gpa_t gpa;
2134                 struct page *page;
2135                 char *kaddr;
2136                 u64 val;
2137
2138                 gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, addr);
2139
2140                 if (gpa == UNMAPPED_GVA ||
2141                    (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE)
2142                         goto emul_write;
2143
2144                 if (((gpa + bytes - 1) & PAGE_MASK) != (gpa & PAGE_MASK))
2145                         goto emul_write;
2146
2147                 val = *(u64 *)new;
2148
2149                 page = gfn_to_page(vcpu->kvm, gpa >> PAGE_SHIFT);
2150
2151                 kaddr = kmap_atomic(page, KM_USER0);
2152                 set_64bit((u64 *)(kaddr + offset_in_page(gpa)), val);
2153                 kunmap_atomic(kaddr, KM_USER0);
2154                 kvm_release_page_dirty(page);
2155         }
2156 emul_write:
2157 #endif
2158
2159         return emulator_write_emulated(addr, new, bytes, vcpu);
2160 }
2161
2162 static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg)
2163 {
2164         return kvm_x86_ops->get_segment_base(vcpu, seg);
2165 }
2166
2167 int emulate_invlpg(struct kvm_vcpu *vcpu, gva_t address)
2168 {
2169         kvm_mmu_invlpg(vcpu, address);
2170         return X86EMUL_CONTINUE;
2171 }
2172
2173 int emulate_clts(struct kvm_vcpu *vcpu)
2174 {
2175         KVMTRACE_0D(CLTS, vcpu, handler);
2176         kvm_x86_ops->set_cr0(vcpu, vcpu->arch.cr0 & ~X86_CR0_TS);
2177         return X86EMUL_CONTINUE;
2178 }
2179
2180 int emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr, unsigned long *dest)
2181 {
2182         struct kvm_vcpu *vcpu = ctxt->vcpu;
2183
2184         switch (dr) {
2185         case 0 ... 3:
2186                 *dest = kvm_x86_ops->get_dr(vcpu, dr);
2187                 return X86EMUL_CONTINUE;
2188         default:
2189                 pr_unimpl(vcpu, "%s: unexpected dr %u\n", __func__, dr);
2190                 return X86EMUL_UNHANDLEABLE;
2191         }
2192 }
2193
2194 int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr, unsigned long value)
2195 {
2196         unsigned long mask = (ctxt->mode == X86EMUL_MODE_PROT64) ? ~0ULL : ~0U;
2197         int exception;
2198
2199         kvm_x86_ops->set_dr(ctxt->vcpu, dr, value & mask, &exception);
2200         if (exception) {
2201                 /* FIXME: better handling */
2202                 return X86EMUL_UNHANDLEABLE;
2203         }
2204         return X86EMUL_CONTINUE;
2205 }
2206
2207 void kvm_report_emulation_failure(struct kvm_vcpu *vcpu, const char *context)
2208 {
2209         u8 opcodes[4];
2210         unsigned long rip = kvm_rip_read(vcpu);
2211         unsigned long rip_linear;
2212
2213         if (!printk_ratelimit())
2214                 return;
2215
2216         rip_linear = rip + get_segment_base(vcpu, VCPU_SREG_CS);
2217
2218         emulator_read_std(rip_linear, (void *)opcodes, 4, vcpu);
2219
2220         printk(KERN_ERR "emulation failed (%s) rip %lx %02x %02x %02x %02x\n",
2221                context, rip, opcodes[0], opcodes[1], opcodes[2], opcodes[3]);
2222 }
2223 EXPORT_SYMBOL_GPL(kvm_report_emulation_failure);
2224
2225 static struct x86_emulate_ops emulate_ops = {
2226         .read_std            = emulator_read_std,
2227         .read_emulated       = emulator_read_emulated,
2228         .write_emulated      = emulator_write_emulated,
2229         .cmpxchg_emulated    = emulator_cmpxchg_emulated,
2230 };
2231
2232 static void cache_all_regs(struct kvm_vcpu *vcpu)
2233 {
2234         kvm_register_read(vcpu, VCPU_REGS_RAX);
2235         kvm_register_read(vcpu, VCPU_REGS_RSP);
2236         kvm_register_read(vcpu, VCPU_REGS_RIP);
2237         vcpu->arch.regs_dirty = ~0;
2238 }
2239
2240 int emulate_instruction(struct kvm_vcpu *vcpu,
2241                         struct kvm_run *run,
2242                         unsigned long cr2,
2243                         u16 error_code,
2244                         int emulation_type)
2245 {
2246         int r;
2247         struct decode_cache *c;
2248
2249         kvm_clear_exception_queue(vcpu);
2250         vcpu->arch.mmio_fault_cr2 = cr2;
2251         /*
2252          * TODO: fix x86_emulate.c to use guest_read/write_register
2253          * instead of direct ->regs accesses, can save hundred cycles
2254          * on Intel for instructions that don't read/change RSP, for
2255          * for example.
2256          */
2257         cache_all_regs(vcpu);
2258
2259         vcpu->mmio_is_write = 0;
2260         vcpu->arch.pio.string = 0;
2261
2262         if (!(emulation_type & EMULTYPE_NO_DECODE)) {
2263                 int cs_db, cs_l;
2264                 kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l);
2265
2266                 vcpu->arch.emulate_ctxt.vcpu = vcpu;
2267                 vcpu->arch.emulate_ctxt.eflags = kvm_x86_ops->get_rflags(vcpu);
2268                 vcpu->arch.emulate_ctxt.mode =
2269                         (vcpu->arch.emulate_ctxt.eflags & X86_EFLAGS_VM)
2270                         ? X86EMUL_MODE_REAL : cs_l
2271                         ? X86EMUL_MODE_PROT64 : cs_db
2272                         ? X86EMUL_MODE_PROT32 : X86EMUL_MODE_PROT16;
2273
2274                 r = x86_decode_insn(&vcpu->arch.emulate_ctxt, &emulate_ops);
2275
2276                 /* Reject the instructions other than VMCALL/VMMCALL when
2277                  * try to emulate invalid opcode */
2278                 c = &vcpu->arch.emulate_ctxt.decode;
2279                 if ((emulation_type & EMULTYPE_TRAP_UD) &&
2280                     (!(c->twobyte && c->b == 0x01 &&
2281                       (c->modrm_reg == 0 || c->modrm_reg == 3) &&
2282                        c->modrm_mod == 3 && c->modrm_rm == 1)))
2283                         return EMULATE_FAIL;
2284
2285                 ++vcpu->stat.insn_emulation;
2286                 if (r)  {
2287                         ++vcpu->stat.insn_emulation_fail;
2288                         if (kvm_mmu_unprotect_page_virt(vcpu, cr2))
2289                                 return EMULATE_DONE;
2290                         return EMULATE_FAIL;
2291                 }
2292         }
2293
2294         r = x86_emulate_insn(&vcpu->arch.emulate_ctxt, &emulate_ops);
2295
2296         if (vcpu->arch.pio.string)
2297                 return EMULATE_DO_MMIO;
2298
2299         if ((r || vcpu->mmio_is_write) && run) {
2300                 run->exit_reason = KVM_EXIT_MMIO;
2301                 run->mmio.phys_addr = vcpu->mmio_phys_addr;
2302                 memcpy(run->mmio.data, vcpu->mmio_data, 8);
2303                 run->mmio.len = vcpu->mmio_size;
2304                 run->mmio.is_write = vcpu->mmio_is_write;
2305         }
2306
2307         if (r) {
2308                 if (kvm_mmu_unprotect_page_virt(vcpu, cr2))
2309                         return EMULATE_DONE;
2310                 if (!vcpu->mmio_needed) {
2311                         kvm_report_emulation_failure(vcpu, "mmio");
2312                         return EMULATE_FAIL;
2313                 }
2314                 return EMULATE_DO_MMIO;
2315         }
2316
2317         kvm_x86_ops->set_rflags(vcpu, vcpu->arch.emulate_ctxt.eflags);
2318
2319         if (vcpu->mmio_is_write) {
2320                 vcpu->mmio_needed = 0;
2321                 return EMULATE_DO_MMIO;
2322         }
2323
2324         return EMULATE_DONE;
2325 }
2326 EXPORT_SYMBOL_GPL(emulate_instruction);
2327
2328 static void free_pio_guest_pages(struct kvm_vcpu *vcpu)
2329 {
2330         int i;
2331
2332         for (i = 0; i < ARRAY_SIZE(vcpu->arch.pio.guest_pages); ++i)
2333                 if (vcpu->arch.pio.guest_pages[i]) {
2334                         kvm_release_page_dirty(vcpu->arch.pio.guest_pages[i]);
2335                         vcpu->arch.pio.guest_pages[i] = NULL;
2336                 }
2337 }
2338
2339 static int pio_copy_data(struct kvm_vcpu *vcpu)
2340 {
2341         void *p = vcpu->arch.pio_data;
2342         void *q;
2343         unsigned bytes;
2344         int nr_pages = vcpu->arch.pio.guest_pages[1] ? 2 : 1;
2345
2346         q = vmap(vcpu->arch.pio.guest_pages, nr_pages, VM_READ|VM_WRITE,
2347                  PAGE_KERNEL);
2348         if (!q) {
2349                 free_pio_guest_pages(vcpu);
2350                 return -ENOMEM;
2351         }
2352         q += vcpu->arch.pio.guest_page_offset;
2353         bytes = vcpu->arch.pio.size * vcpu->arch.pio.cur_count;
2354         if (vcpu->arch.pio.in)
2355                 memcpy(q, p, bytes);
2356         else
2357                 memcpy(p, q, bytes);
2358         q -= vcpu->arch.pio.guest_page_offset;
2359         vunmap(q);
2360         free_pio_guest_pages(vcpu);
2361         return 0;
2362 }
2363
2364 int complete_pio(struct kvm_vcpu *vcpu)
2365 {
2366         struct kvm_pio_request *io = &vcpu->arch.pio;
2367         long delta;
2368         int r;
2369         unsigned long val;
2370
2371         if (!io->string) {
2372                 if (io->in) {
2373                         val = kvm_register_read(vcpu, VCPU_REGS_RAX);
2374                         memcpy(&val, vcpu->arch.pio_data, io->size);
2375                         kvm_register_write(vcpu, VCPU_REGS_RAX, val);
2376                 }
2377         } else {
2378                 if (io->in) {
2379                         r = pio_copy_data(vcpu);
2380                         if (r)
2381                                 return r;
2382                 }
2383
2384                 delta = 1;
2385                 if (io->rep) {
2386                         delta *= io->cur_count;
2387                         /*
2388                          * The size of the register should really depend on
2389                          * current address size.
2390                          */
2391                         val = kvm_register_read(vcpu, VCPU_REGS_RCX);
2392                         val -= delta;
2393                         kvm_register_write(vcpu, VCPU_REGS_RCX, val);
2394                 }
2395                 if (io->down)
2396                         delta = -delta;
2397                 delta *= io->size;
2398                 if (io->in) {
2399                         val = kvm_register_read(vcpu, VCPU_REGS_RDI);
2400                         val += delta;
2401                         kvm_register_write(vcpu, VCPU_REGS_RDI, val);
2402                 } else {
2403                         val = kvm_register_read(vcpu, VCPU_REGS_RSI);
2404                         val += delta;
2405                         kvm_register_write(vcpu, VCPU_REGS_RSI, val);
2406                 }
2407         }
2408
2409         io->count -= io->cur_count;
2410         io->cur_count = 0;
2411
2412         return 0;
2413 }
2414
2415 static void kernel_pio(struct kvm_io_device *pio_dev,
2416                        struct kvm_vcpu *vcpu,
2417                        void *pd)
2418 {
2419         /* TODO: String I/O for in kernel device */
2420
2421         mutex_lock(&vcpu->kvm->lock);
2422         if (vcpu->arch.pio.in)
2423                 kvm_iodevice_read(pio_dev, vcpu->arch.pio.port,
2424                                   vcpu->arch.pio.size,
2425                                   pd);
2426         else
2427                 kvm_iodevice_write(pio_dev, vcpu->arch.pio.port,
2428                                    vcpu->arch.pio.size,
2429                                    pd);
2430         mutex_unlock(&vcpu->kvm->lock);
2431 }
2432
2433 static void pio_string_write(struct kvm_io_device *pio_dev,
2434                              struct kvm_vcpu *vcpu)
2435 {
2436         struct kvm_pio_request *io = &vcpu->arch.pio;
2437         void *pd = vcpu->arch.pio_data;
2438         int i;
2439
2440         mutex_lock(&vcpu->kvm->lock);
2441         for (i = 0; i < io->cur_count; i++) {
2442                 kvm_iodevice_write(pio_dev, io->port,
2443                                    io->size,
2444                                    pd);
2445                 pd += io->size;
2446         }
2447         mutex_unlock(&vcpu->kvm->lock);
2448 }
2449
2450 static struct kvm_io_device *vcpu_find_pio_dev(struct kvm_vcpu *vcpu,
2451                                                gpa_t addr, int len,
2452                                                int is_write)
2453 {
2454         return kvm_io_bus_find_dev(&vcpu->kvm->pio_bus, addr, len, is_write);
2455 }
2456
2457 int kvm_emulate_pio(struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
2458                   int size, unsigned port)
2459 {
2460         struct kvm_io_device *pio_dev;
2461         unsigned long val;
2462
2463         vcpu->run->exit_reason = KVM_EXIT_IO;
2464         vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
2465         vcpu->run->io.size = vcpu->arch.pio.size = size;
2466         vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
2467         vcpu->run->io.count = vcpu->arch.pio.count = vcpu->arch.pio.cur_count = 1;
2468         vcpu->run->io.port = vcpu->arch.pio.port = port;
2469         vcpu->arch.pio.in = in;
2470         vcpu->arch.pio.string = 0;
2471         vcpu->arch.pio.down = 0;
2472         vcpu->arch.pio.guest_page_offset = 0;
2473         vcpu->arch.pio.rep = 0;
2474
2475         if (vcpu->run->io.direction == KVM_EXIT_IO_IN)
2476                 KVMTRACE_2D(IO_READ, vcpu, vcpu->run->io.port, (u32)size,
2477                             handler);
2478         else
2479                 KVMTRACE_2D(IO_WRITE, vcpu, vcpu->run->io.port, (u32)size,
2480                             handler);
2481
2482         val = kvm_register_read(vcpu, VCPU_REGS_RAX);
2483         memcpy(vcpu->arch.pio_data, &val, 4);
2484
2485         pio_dev = vcpu_find_pio_dev(vcpu, port, size, !in);
2486         if (pio_dev) {
2487                 kernel_pio(pio_dev, vcpu, vcpu->arch.pio_data);
2488                 complete_pio(vcpu);
2489                 return 1;
2490         }
2491         return 0;
2492 }
2493 EXPORT_SYMBOL_GPL(kvm_emulate_pio);
2494
2495 int kvm_emulate_pio_string(struct kvm_vcpu *vcpu, struct kvm_run *run, int in,
2496                   int size, unsigned long count, int down,
2497                   gva_t address, int rep, unsigned port)
2498 {
2499         unsigned now, in_page;
2500         int i, ret = 0;
2501         int nr_pages = 1;
2502         struct page *page;
2503         struct kvm_io_device *pio_dev;
2504
2505         vcpu->run->exit_reason = KVM_EXIT_IO;
2506         vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT;
2507         vcpu->run->io.size = vcpu->arch.pio.size = size;
2508         vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE;
2509         vcpu->run->io.count = vcpu->arch.pio.count = vcpu->arch.pio.cur_count = count;
2510         vcpu->run->io.port = vcpu->arch.pio.port = port;
2511         vcpu->arch.pio.in = in;
2512         vcpu->arch.pio.string = 1;
2513         vcpu->arch.pio.down = down;
2514         vcpu->arch.pio.guest_page_offset = offset_in_page(address);
2515         vcpu->arch.pio.rep = rep;
2516
2517         if (vcpu->run->io.direction == KVM_EXIT_IO_IN)
2518                 KVMTRACE_2D(IO_READ, vcpu, vcpu->run->io.port, (u32)size,
2519                             handler);
2520         else
2521                 KVMTRACE_2D(IO_WRITE, vcpu, vcpu->run->io.port, (u32)size,
2522                             handler);
2523
2524         if (!count) {
2525                 kvm_x86_ops->skip_emulated_instruction(vcpu);
2526                 return 1;
2527         }
2528
2529         if (!down)
2530                 in_page = PAGE_SIZE - offset_in_page(address);
2531         else
2532                 in_page = offset_in_page(address) + size;
2533         now = min(count, (unsigned long)in_page / size);
2534         if (!now) {
2535                 /*
2536                  * String I/O straddles page boundary.  Pin two guest pages
2537                  * so that we satisfy atomicity constraints.  Do just one
2538                  * transaction to avoid complexity.
2539                  */
2540                 nr_pages = 2;
2541                 now = 1;
2542         }
2543         if (down) {
2544                 /*
2545                  * String I/O in reverse.  Yuck.  Kill the guest, fix later.
2546                  */
2547                 pr_unimpl(vcpu, "guest string pio down\n");
2548                 kvm_inject_gp(vcpu, 0);
2549                 return 1;
2550         }
2551         vcpu->run->io.count = now;
2552         vcpu->arch.pio.cur_count = now;
2553
2554         if (vcpu->arch.pio.cur_count == vcpu->arch.pio.count)
2555                 kvm_x86_ops->skip_emulated_instruction(vcpu);
2556
2557         for (i = 0; i < nr_pages; ++i) {
2558                 page = gva_to_page(vcpu, address + i * PAGE_SIZE);
2559                 vcpu->arch.pio.guest_pages[i] = page;
2560                 if (!page) {
2561                         kvm_inject_gp(vcpu, 0);
2562                         free_pio_guest_pages(vcpu);
2563                         return 1;
2564                 }
2565         }
2566
2567         pio_dev = vcpu_find_pio_dev(vcpu, port,
2568                                     vcpu->arch.pio.cur_count,
2569                                     !vcpu->arch.pio.in);
2570         if (!vcpu->arch.pio.in) {
2571                 /* string PIO write */
2572                 ret = pio_copy_data(vcpu);
2573                 if (ret >= 0 && pio_dev) {
2574                         pio_string_write(pio_dev, vcpu);
2575                         complete_pio(vcpu);
2576                         if (vcpu->arch.pio.count == 0)
2577                                 ret = 1;
2578                 }
2579         } else if (pio_dev)
2580                 pr_unimpl(vcpu, "no string pio read support yet, "
2581                        "port %x size %d count %ld\n",
2582                         port, size, count);
2583
2584         return ret;
2585 }
2586 EXPORT_SYMBOL_GPL(kvm_emulate_pio_string);
2587
2588 int kvm_arch_init(void *opaque)
2589 {
2590         int r;
2591         struct kvm_x86_ops *ops = (struct kvm_x86_ops *)opaque;
2592
2593         if (kvm_x86_ops) {
2594                 printk(KERN_ERR "kvm: already loaded the other module\n");
2595                 r = -EEXIST;
2596                 goto out;
2597         }
2598
2599         if (!ops->cpu_has_kvm_support()) {
2600                 printk(KERN_ERR "kvm: no hardware support\n");
2601                 r = -EOPNOTSUPP;
2602                 goto out;
2603         }
2604         if (ops->disabled_by_bios()) {
2605                 printk(KERN_ERR "kvm: disabled by bios\n");
2606                 r = -EOPNOTSUPP;
2607                 goto out;
2608         }
2609
2610         r = kvm_mmu_module_init();
2611         if (r)
2612                 goto out;
2613
2614         kvm_init_msr_list();
2615
2616         kvm_x86_ops = ops;
2617         kvm_mmu_set_nonpresent_ptes(0ull, 0ull);
2618         kvm_mmu_set_base_ptes(PT_PRESENT_MASK);
2619         kvm_mmu_set_mask_ptes(PT_USER_MASK, PT_ACCESSED_MASK,
2620                         PT_DIRTY_MASK, PT64_NX_MASK, 0, 0);
2621         return 0;
2622
2623 out:
2624         return r;
2625 }
2626
2627 void kvm_arch_exit(void)
2628 {
2629         kvm_x86_ops = NULL;
2630         kvm_mmu_module_exit();
2631 }
2632
2633 int kvm_emulate_halt(struct kvm_vcpu *vcpu)
2634 {
2635         ++vcpu->stat.halt_exits;
2636         KVMTRACE_0D(HLT, vcpu, handler);
2637         if (irqchip_in_kernel(vcpu->kvm)) {
2638                 vcpu->arch.mp_state = KVM_MP_STATE_HALTED;
2639                 return 1;
2640         } else {
2641                 vcpu->run->exit_reason = KVM_EXIT_HLT;
2642                 return 0;
2643         }
2644 }
2645 EXPORT_SYMBOL_GPL(kvm_emulate_halt);
2646
2647 static inline gpa_t hc_gpa(struct kvm_vcpu *vcpu, unsigned long a0,
2648                            unsigned long a1)
2649 {
2650         if (is_long_mode(vcpu))
2651                 return a0;
2652         else
2653                 return a0 | ((gpa_t)a1 << 32);
2654 }
2655
2656 int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
2657 {
2658         unsigned long nr, a0, a1, a2, a3, ret;
2659         int r = 1;
2660
2661         nr = kvm_register_read(vcpu, VCPU_REGS_RAX);
2662         a0 = kvm_register_read(vcpu, VCPU_REGS_RBX);
2663         a1 = kvm_register_read(vcpu, VCPU_REGS_RCX);
2664         a2 = kvm_register_read(vcpu, VCPU_REGS_RDX);
2665         a3 = kvm_register_read(vcpu, VCPU_REGS_RSI);
2666
2667         KVMTRACE_1D(VMMCALL, vcpu, (u32)nr, handler);
2668
2669         if (!is_long_mode(vcpu)) {
2670                 nr &= 0xFFFFFFFF;
2671                 a0 &= 0xFFFFFFFF;
2672                 a1 &= 0xFFFFFFFF;
2673                 a2 &= 0xFFFFFFFF;
2674                 a3 &= 0xFFFFFFFF;
2675         }
2676
2677         switch (nr) {
2678         case KVM_HC_VAPIC_POLL_IRQ:
2679                 ret = 0;
2680                 break;
2681         case KVM_HC_MMU_OP:
2682                 r = kvm_pv_mmu_op(vcpu, a0, hc_gpa(vcpu, a1, a2), &ret);
2683                 break;
2684         default:
2685                 ret = -KVM_ENOSYS;
2686                 break;
2687         }
2688         kvm_register_write(vcpu, VCPU_REGS_RAX, ret);
2689         ++vcpu->stat.hypercalls;
2690         return r;
2691 }
2692 EXPORT_SYMBOL_GPL(kvm_emulate_hypercall);
2693
2694 int kvm_fix_hypercall(struct kvm_vcpu *vcpu)
2695 {
2696         char instruction[3];
2697         int ret = 0;
2698         unsigned long rip = kvm_rip_read(vcpu);
2699
2700
2701         /*
2702          * Blow out the MMU to ensure that no other VCPU has an active mapping
2703          * to ensure that the updated hypercall appears atomically across all
2704          * VCPUs.
2705          */
2706         kvm_mmu_zap_all(vcpu->kvm);
2707
2708         kvm_x86_ops->patch_hypercall(vcpu, instruction);
2709         if (emulator_write_emulated(rip, instruction, 3, vcpu)
2710             != X86EMUL_CONTINUE)
2711                 ret = -EFAULT;
2712
2713         return ret;
2714 }
2715
2716 static u64 mk_cr_64(u64 curr_cr, u32 new_val)
2717 {
2718         return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
2719 }
2720
2721 void realmode_lgdt(struct kvm_vcpu *vcpu, u16 limit, unsigned long base)
2722 {
2723         struct descriptor_table dt = { limit, base };
2724
2725         kvm_x86_ops->set_gdt(vcpu, &dt);
2726 }
2727
2728 void realmode_lidt(struct kvm_vcpu *vcpu, u16 limit, unsigned long base)
2729 {
2730         struct descriptor_table dt = { limit, base };
2731
2732         kvm_x86_ops->set_idt(vcpu, &dt);
2733 }
2734
2735 void realmode_lmsw(struct kvm_vcpu *vcpu, unsigned long msw,
2736                    unsigned long *rflags)
2737 {
2738         kvm_lmsw(vcpu, msw);
2739         *rflags = kvm_x86_ops->get_rflags(vcpu);
2740 }
2741
2742 unsigned long realmode_get_cr(struct kvm_vcpu *vcpu, int cr)
2743 {
2744         unsigned long value;
2745
2746         kvm_x86_ops->decache_cr4_guest_bits(vcpu);
2747         switch (cr) {
2748         case 0:
2749                 value = vcpu->arch.cr0;
2750                 break;
2751         case 2:
2752                 value = vcpu->arch.cr2;
2753                 break;
2754         case 3:
2755                 value = vcpu->arch.cr3;
2756                 break;
2757         case 4:
2758                 value = vcpu->arch.cr4;
2759                 break;
2760         case 8:
2761                 value = kvm_get_cr8(vcpu);
2762                 break;
2763         default:
2764                 vcpu_printf(vcpu, "%s: unexpected cr %u\n", __func__, cr);
2765                 return 0;
2766         }
2767         KVMTRACE_3D(CR_READ, vcpu, (u32)cr, (u32)value,
2768                     (u32)((u64)value >> 32), handler);
2769
2770         return value;
2771 }
2772
2773 void realmode_set_cr(struct kvm_vcpu *vcpu, int cr, unsigned long val,
2774                      unsigned long *rflags)
2775 {
2776         KVMTRACE_3D(CR_WRITE, vcpu, (u32)cr, (u32)val,
2777                     (u32)((u64)val >> 32), handler);
2778
2779         switch (cr) {
2780         case 0:
2781                 kvm_set_cr0(vcpu, mk_cr_64(vcpu->arch.cr0, val));
2782                 *rflags = kvm_x86_ops->get_rflags(vcpu);
2783                 break;
2784         case 2:
2785                 vcpu->arch.cr2 = val;
2786                 break;
2787         case 3:
2788                 kvm_set_cr3(vcpu, val);
2789                 break;
2790         case 4:
2791                 kvm_set_cr4(vcpu, mk_cr_64(vcpu->arch.cr4, val));
2792                 break;
2793         case 8:
2794                 kvm_set_cr8(vcpu, val & 0xfUL);
2795                 break;
2796         default:
2797                 vcpu_printf(vcpu, "%s: unexpected cr %u\n", __func__, cr);
2798         }
2799 }
2800
2801 static int move_to_next_stateful_cpuid_entry(struct kvm_vcpu *vcpu, int i)
2802 {
2803         struct kvm_cpuid_entry2 *e = &vcpu->arch.cpuid_entries[i];
2804         int j, nent = vcpu->arch.cpuid_nent;
2805
2806         e->flags &= ~KVM_CPUID_FLAG_STATE_READ_NEXT;
2807         /* when no next entry is found, the current entry[i] is reselected */
2808         for (j = i + 1; ; j = (j + 1) % nent) {
2809                 struct kvm_cpuid_entry2 *ej = &vcpu->arch.cpuid_entries[j];
2810                 if (ej->function == e->function) {
2811                         ej->flags |= KVM_CPUID_FLAG_STATE_READ_NEXT;
2812                         return j;
2813                 }
2814         }
2815         return 0; /* silence gcc, even though control never reaches here */
2816 }
2817
2818 /* find an entry with matching function, matching index (if needed), and that
2819  * should be read next (if it's stateful) */
2820 static int is_matching_cpuid_entry(struct kvm_cpuid_entry2 *e,
2821         u32 function, u32 index)
2822 {
2823         if (e->function != function)
2824                 return 0;
2825         if ((e->flags & KVM_CPUID_FLAG_SIGNIFCANT_INDEX) && e->index != index)
2826                 return 0;
2827         if ((e->flags & KVM_CPUID_FLAG_STATEFUL_FUNC) &&
2828                 !(e->flags & KVM_CPUID_FLAG_STATE_READ_NEXT))
2829                 return 0;
2830         return 1;
2831 }
2832
2833 void kvm_emulate_cpuid(struct kvm_vcpu *vcpu)
2834 {
2835         int i;
2836         u32 function, index;
2837         struct kvm_cpuid_entry2 *e, *best;
2838
2839         function = kvm_register_read(vcpu, VCPU_REGS_RAX);
2840         index = kvm_register_read(vcpu, VCPU_REGS_RCX);
2841         kvm_register_write(vcpu, VCPU_REGS_RAX, 0);
2842         kvm_register_write(vcpu, VCPU_REGS_RBX, 0);
2843         kvm_register_write(vcpu, VCPU_REGS_RCX, 0);
2844         kvm_register_write(vcpu, VCPU_REGS_RDX, 0);
2845         best = NULL;
2846         for (i = 0; i < vcpu->arch.cpuid_nent; ++i) {
2847                 e = &vcpu->arch.cpuid_entries[i];
2848                 if (is_matching_cpuid_entry(e, function, index)) {
2849                         if (e->flags & KVM_CPUID_FLAG_STATEFUL_FUNC)
2850                                 move_to_next_stateful_cpuid_entry(vcpu, i);
2851                         best = e;
2852                         break;
2853                 }
2854                 /*
2855                  * Both basic or both extended?
2856                  */
2857                 if (((e->function ^ function) & 0x80000000) == 0)
2858                         if (!best || e->function > best->function)
2859                                 best = e;
2860         }
2861         if (best) {
2862                 kvm_register_write(vcpu, VCPU_REGS_RAX, best->eax);
2863                 kvm_register_write(vcpu, VCPU_REGS_RBX, best->ebx);
2864                 kvm_register_write(vcpu, VCPU_REGS_RCX, best->ecx);
2865                 kvm_register_write(vcpu, VCPU_REGS_RDX, best->edx);
2866         }
2867         kvm_x86_ops->skip_emulated_instruction(vcpu);
2868         KVMTRACE_5D(CPUID, vcpu, function,
2869                     (u32)kvm_register_read(vcpu, VCPU_REGS_RAX),
2870                     (u32)kvm_register_read(vcpu, VCPU_REGS_RBX),
2871                     (u32)kvm_register_read(vcpu, VCPU_REGS_RCX),
2872                     (u32)kvm_register_read(vcpu, VCPU_REGS_RDX), handler);
2873 }
2874 EXPORT_SYMBOL_GPL(kvm_emulate_cpuid);
2875
2876 /*
2877  * Check if userspace requested an interrupt window, and that the
2878  * interrupt window is open.
2879  *
2880  * No need to exit to userspace if we already have an interrupt queued.
2881  */
2882 static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu,
2883                                           struct kvm_run *kvm_run)
2884 {
2885         return (!vcpu->arch.irq_summary &&
2886                 kvm_run->request_interrupt_window &&
2887                 vcpu->arch.interrupt_window_open &&
2888                 (kvm_x86_ops->get_rflags(vcpu) & X86_EFLAGS_IF));
2889 }
2890
2891 /*
2892  * Check if userspace requested a NMI window, and that the NMI window
2893  * is open.
2894  *
2895  * No need to exit to userspace if we already have a NMI queued.
2896  */
2897 static int dm_request_for_nmi_injection(struct kvm_vcpu *vcpu,
2898                                         struct kvm_run *kvm_run)
2899 {
2900         return (!vcpu->arch.nmi_pending &&
2901                 kvm_run->request_nmi_window &&
2902                 vcpu->arch.nmi_window_open);
2903 }
2904
2905 static void post_kvm_run_save(struct kvm_vcpu *vcpu,
2906                               struct kvm_run *kvm_run)
2907 {
2908         kvm_run->if_flag = (kvm_x86_ops->get_rflags(vcpu) & X86_EFLAGS_IF) != 0;
2909         kvm_run->cr8 = kvm_get_cr8(vcpu);
2910         kvm_run->apic_base = kvm_get_apic_base(vcpu);
2911         if (irqchip_in_kernel(vcpu->kvm)) {
2912                 kvm_run->ready_for_interrupt_injection = 1;
2913                 kvm_run->ready_for_nmi_injection = 1;
2914         } else {
2915                 kvm_run->ready_for_interrupt_injection =
2916                                         (vcpu->arch.interrupt_window_open &&
2917                                          vcpu->arch.irq_summary == 0);
2918                 kvm_run->ready_for_nmi_injection =
2919                                         (vcpu->arch.nmi_window_open &&
2920                                          vcpu->arch.nmi_pending == 0);
2921         }
2922 }
2923
2924 static void vapic_enter(struct kvm_vcpu *vcpu)
2925 {
2926         struct kvm_lapic *apic = vcpu->arch.apic;
2927         struct page *page;
2928
2929         if (!apic || !apic->vapic_addr)
2930                 return;
2931
2932         page = gfn_to_page(vcpu->kvm, apic->vapic_addr >> PAGE_SHIFT);
2933
2934         vcpu->arch.apic->vapic_page = page;
2935 }
2936
2937 static void vapic_exit(struct kvm_vcpu *vcpu)
2938 {
2939         struct kvm_lapic *apic = vcpu->arch.apic;
2940
2941         if (!apic || !apic->vapic_addr)
2942                 return;
2943
2944         down_read(&vcpu->kvm->slots_lock);
2945         kvm_release_page_dirty(apic->vapic_page);
2946         mark_page_dirty(vcpu->kvm, apic->vapic_addr >> PAGE_SHIFT);
2947         up_read(&vcpu->kvm->slots_lock);
2948 }
2949
2950 static int vcpu_enter_guest(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2951 {
2952         int r;
2953
2954         if (vcpu->requests)
2955                 if (test_and_clear_bit(KVM_REQ_MMU_RELOAD, &vcpu->requests))
2956                         kvm_mmu_unload(vcpu);
2957
2958         r = kvm_mmu_reload(vcpu);
2959         if (unlikely(r))
2960                 goto out;
2961
2962         if (vcpu->requests) {
2963                 if (test_and_clear_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests))
2964                         __kvm_migrate_timers(vcpu);
2965                 if (test_and_clear_bit(KVM_REQ_MMU_SYNC, &vcpu->requests))
2966                         kvm_mmu_sync_roots(vcpu);
2967                 if (test_and_clear_bit(KVM_REQ_TLB_FLUSH, &vcpu->requests))
2968                         kvm_x86_ops->tlb_flush(vcpu);
2969                 if (test_and_clear_bit(KVM_REQ_REPORT_TPR_ACCESS,
2970                                        &vcpu->requests)) {
2971                         kvm_run->exit_reason = KVM_EXIT_TPR_ACCESS;
2972                         r = 0;
2973                         goto out;
2974                 }
2975                 if (test_and_clear_bit(KVM_REQ_TRIPLE_FAULT, &vcpu->requests)) {
2976                         kvm_run->exit_reason = KVM_EXIT_SHUTDOWN;
2977                         r = 0;
2978                         goto out;
2979                 }
2980         }
2981
2982         clear_bit(KVM_REQ_PENDING_TIMER, &vcpu->requests);
2983         kvm_inject_pending_timer_irqs(vcpu);
2984
2985         preempt_disable();
2986
2987         kvm_x86_ops->prepare_guest_switch(vcpu);
2988         kvm_load_guest_fpu(vcpu);
2989
2990         local_irq_disable();
2991
2992         if (vcpu->requests || need_resched() || signal_pending(current)) {
2993                 local_irq_enable();
2994                 preempt_enable();
2995                 r = 1;
2996                 goto out;
2997         }
2998
2999         if (vcpu->guest_debug.enabled)
3000                 kvm_x86_ops->guest_debug_pre(vcpu);
3001
3002         vcpu->guest_mode = 1;
3003         /*
3004          * Make sure that guest_mode assignment won't happen after
3005          * testing the pending IRQ vector bitmap.
3006          */
3007         smp_wmb();
3008
3009         if (vcpu->arch.exception.pending)
3010                 __queue_exception(vcpu);
3011         else if (irqchip_in_kernel(vcpu->kvm))
3012                 kvm_x86_ops->inject_pending_irq(vcpu);
3013         else
3014                 kvm_x86_ops->inject_pending_vectors(vcpu, kvm_run);
3015
3016         kvm_lapic_sync_to_vapic(vcpu);
3017
3018         up_read(&vcpu->kvm->slots_lock);
3019
3020         kvm_guest_enter();
3021
3022
3023         KVMTRACE_0D(VMENTRY, vcpu, entryexit);
3024         kvm_x86_ops->run(vcpu, kvm_run);
3025
3026         vcpu->guest_mode = 0;
3027         local_irq_enable();
3028
3029         ++vcpu->stat.exits;
3030
3031         /*
3032          * We must have an instruction between local_irq_enable() and
3033          * kvm_guest_exit(), so the timer interrupt isn't delayed by
3034          * the interrupt shadow.  The stat.exits increment will do nicely.
3035          * But we need to prevent reordering, hence this barrier():
3036          */
3037         barrier();
3038
3039         kvm_guest_exit();
3040
3041         preempt_enable();
3042
3043         down_read(&vcpu->kvm->slots_lock);
3044
3045         /*
3046          * Profile KVM exit RIPs:
3047          */
3048         if (unlikely(prof_on == KVM_PROFILING)) {
3049                 unsigned long rip = kvm_rip_read(vcpu);
3050                 profile_hit(KVM_PROFILING, (void *)rip);
3051         }
3052
3053         if (vcpu->arch.exception.pending && kvm_x86_ops->exception_injected(vcpu))
3054                 vcpu->arch.exception.pending = false;
3055
3056         kvm_lapic_sync_from_vapic(vcpu);
3057
3058         r = kvm_x86_ops->handle_exit(kvm_run, vcpu);
3059 out:
3060         return r;
3061 }
3062
3063 static int __vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3064 {
3065         int r;
3066
3067         if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_SIPI_RECEIVED)) {
3068                 pr_debug("vcpu %d received sipi with vector # %x\n",
3069                          vcpu->vcpu_id, vcpu->arch.sipi_vector);
3070                 kvm_lapic_reset(vcpu);
3071                 r = kvm_arch_vcpu_reset(vcpu);
3072                 if (r)
3073                         return r;
3074                 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
3075         }
3076
3077         down_read(&vcpu->kvm->slots_lock);
3078         vapic_enter(vcpu);
3079
3080         r = 1;
3081         while (r > 0) {
3082                 if (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE)
3083                         r = vcpu_enter_guest(vcpu, kvm_run);
3084                 else {
3085                         up_read(&vcpu->kvm->slots_lock);
3086                         kvm_vcpu_block(vcpu);
3087                         down_read(&vcpu->kvm->slots_lock);
3088                         if (test_and_clear_bit(KVM_REQ_UNHALT, &vcpu->requests))
3089                                 if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED)
3090                                         vcpu->arch.mp_state =
3091                                                         KVM_MP_STATE_RUNNABLE;
3092                         if (vcpu->arch.mp_state != KVM_MP_STATE_RUNNABLE)
3093                                 r = -EINTR;
3094                 }
3095
3096                 if (r > 0) {
3097                         if (dm_request_for_nmi_injection(vcpu, kvm_run)) {
3098                                 r = -EINTR;
3099                                 kvm_run->exit_reason = KVM_EXIT_NMI;
3100                                 ++vcpu->stat.request_nmi_exits;
3101                         }
3102                         if (dm_request_for_irq_injection(vcpu, kvm_run)) {
3103                                 r = -EINTR;
3104                                 kvm_run->exit_reason = KVM_EXIT_INTR;
3105                                 ++vcpu->stat.request_irq_exits;
3106                         }
3107                         if (signal_pending(current)) {
3108                                 r = -EINTR;
3109                                 kvm_run->exit_reason = KVM_EXIT_INTR;
3110                                 ++vcpu->stat.signal_exits;
3111                         }
3112                         if (need_resched()) {
3113                                 up_read(&vcpu->kvm->slots_lock);
3114                                 kvm_resched(vcpu);
3115                                 down_read(&vcpu->kvm->slots_lock);
3116                         }
3117                 }
3118         }
3119
3120         up_read(&vcpu->kvm->slots_lock);
3121         post_kvm_run_save(vcpu, kvm_run);
3122
3123         vapic_exit(vcpu);
3124
3125         return r;
3126 }
3127
3128 int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3129 {
3130         int r;
3131         sigset_t sigsaved;
3132
3133         vcpu_load(vcpu);
3134
3135         if (vcpu->sigset_active)
3136                 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
3137
3138         if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) {
3139                 kvm_vcpu_block(vcpu);
3140                 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
3141                 r = -EAGAIN;
3142                 goto out;
3143         }
3144
3145         /* re-sync apic's tpr */
3146         if (!irqchip_in_kernel(vcpu->kvm))
3147                 kvm_set_cr8(vcpu, kvm_run->cr8);
3148
3149         if (vcpu->arch.pio.cur_count) {
3150                 r = complete_pio(vcpu);
3151                 if (r)
3152                         goto out;
3153         }
3154 #if CONFIG_HAS_IOMEM
3155         if (vcpu->mmio_needed) {
3156                 memcpy(vcpu->mmio_data, kvm_run->mmio.data, 8);
3157                 vcpu->mmio_read_completed = 1;
3158                 vcpu->mmio_needed = 0;
3159
3160                 down_read(&vcpu->kvm->slots_lock);
3161                 r = emulate_instruction(vcpu, kvm_run,
3162                                         vcpu->arch.mmio_fault_cr2, 0,
3163                                         EMULTYPE_NO_DECODE);
3164                 up_read(&vcpu->kvm->slots_lock);
3165                 if (r == EMULATE_DO_MMIO) {
3166                         /*
3167                          * Read-modify-write.  Back to userspace.
3168                          */
3169                         r = 0;
3170                         goto out;
3171                 }
3172         }
3173 #endif
3174         if (kvm_run->exit_reason == KVM_EXIT_HYPERCALL)
3175                 kvm_register_write(vcpu, VCPU_REGS_RAX,
3176                                      kvm_run->hypercall.ret);
3177
3178         r = __vcpu_run(vcpu, kvm_run);
3179
3180 out:
3181         if (vcpu->sigset_active)
3182                 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
3183
3184         vcpu_put(vcpu);
3185         return r;
3186 }
3187
3188 int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
3189 {
3190         vcpu_load(vcpu);
3191
3192         regs->rax = kvm_register_read(vcpu, VCPU_REGS_RAX);
3193         regs->rbx = kvm_register_read(vcpu, VCPU_REGS_RBX);
3194         regs->rcx = kvm_register_read(vcpu, VCPU_REGS_RCX);
3195         regs->rdx = kvm_register_read(vcpu, VCPU_REGS_RDX);
3196         regs->rsi = kvm_register_read(vcpu, VCPU_REGS_RSI);
3197         regs->rdi = kvm_register_read(vcpu, VCPU_REGS_RDI);
3198         regs->rsp = kvm_register_read(vcpu, VCPU_REGS_RSP);
3199         regs->rbp = kvm_register_read(vcpu, VCPU_REGS_RBP);
3200 #ifdef CONFIG_X86_64
3201         regs->r8 = kvm_register_read(vcpu, VCPU_REGS_R8);
3202         regs->r9 = kvm_register_read(vcpu, VCPU_REGS_R9);
3203         regs->r10 = kvm_register_read(vcpu, VCPU_REGS_R10);
3204         regs->r11 = kvm_register_read(vcpu, VCPU_REGS_R11);
3205         regs->r12 = kvm_register_read(vcpu, VCPU_REGS_R12);
3206         regs->r13 = kvm_register_read(vcpu, VCPU_REGS_R13);
3207         regs->r14 = kvm_register_read(vcpu, VCPU_REGS_R14);
3208         regs->r15 = kvm_register_read(vcpu, VCPU_REGS_R15);
3209 #endif
3210
3211         regs->rip = kvm_rip_read(vcpu);
3212         regs->rflags = kvm_x86_ops->get_rflags(vcpu);
3213
3214         /*
3215          * Don't leak debug flags in case they were set for guest debugging
3216          */
3217         if (vcpu->guest_debug.enabled && vcpu->guest_debug.singlestep)
3218                 regs->rflags &= ~(X86_EFLAGS_TF | X86_EFLAGS_RF);
3219
3220         vcpu_put(vcpu);
3221
3222         return 0;
3223 }
3224
3225 int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
3226 {
3227         vcpu_load(vcpu);
3228
3229         kvm_register_write(vcpu, VCPU_REGS_RAX, regs->rax);
3230         kvm_register_write(vcpu, VCPU_REGS_RBX, regs->rbx);
3231         kvm_register_write(vcpu, VCPU_REGS_RCX, regs->rcx);
3232         kvm_register_write(vcpu, VCPU_REGS_RDX, regs->rdx);
3233         kvm_register_write(vcpu, VCPU_REGS_RSI, regs->rsi);
3234         kvm_register_write(vcpu, VCPU_REGS_RDI, regs->rdi);
3235         kvm_register_write(vcpu, VCPU_REGS_RSP, regs->rsp);
3236         kvm_register_write(vcpu, VCPU_REGS_RBP, regs->rbp);
3237 #ifdef CONFIG_X86_64
3238         kvm_register_write(vcpu, VCPU_REGS_R8, regs->r8);
3239         kvm_register_write(vcpu, VCPU_REGS_R9, regs->r9);
3240         kvm_register_write(vcpu, VCPU_REGS_R10, regs->r10);
3241         kvm_register_write(vcpu, VCPU_REGS_R11, regs->r11);
3242         kvm_register_write(vcpu, VCPU_REGS_R12, regs->r12);
3243         kvm_register_write(vcpu, VCPU_REGS_R13, regs->r13);
3244         kvm_register_write(vcpu, VCPU_REGS_R14, regs->r14);
3245         kvm_register_write(vcpu, VCPU_REGS_R15, regs->r15);
3246
3247 #endif
3248
3249         kvm_rip_write(vcpu, regs->rip);
3250         kvm_x86_ops->set_rflags(vcpu, regs->rflags);
3251
3252
3253         vcpu->arch.exception.pending = false;
3254
3255         vcpu_put(vcpu);
3256
3257         return 0;
3258 }
3259
3260 void kvm_get_segment(struct kvm_vcpu *vcpu,
3261                      struct kvm_segment *var, int seg)
3262 {
3263         kvm_x86_ops->get_segment(vcpu, var, seg);
3264 }
3265
3266 void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
3267 {
3268         struct kvm_segment cs;
3269
3270         kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
3271         *db = cs.db;
3272         *l = cs.l;
3273 }
3274 EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits);
3275
3276 int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
3277                                   struct kvm_sregs *sregs)
3278 {
3279         struct descriptor_table dt;
3280         int pending_vec;
3281
3282         vcpu_load(vcpu);
3283
3284         kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
3285         kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
3286         kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES);
3287         kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
3288         kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
3289         kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
3290
3291         kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
3292         kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
3293
3294         kvm_x86_ops->get_idt(vcpu, &dt);
3295         sregs->idt.limit = dt.limit;
3296         sregs->idt.base = dt.base;
3297         kvm_x86_ops->get_gdt(vcpu, &dt);
3298         sregs->gdt.limit = dt.limit;
3299         sregs->gdt.base = dt.base;
3300
3301         kvm_x86_ops->decache_cr4_guest_bits(vcpu);
3302         sregs->cr0 = vcpu->arch.cr0;
3303         sregs->cr2 = vcpu->arch.cr2;
3304         sregs->cr3 = vcpu->arch.cr3;
3305         sregs->cr4 = vcpu->arch.cr4;
3306         sregs->cr8 = kvm_get_cr8(vcpu);
3307         sregs->efer = vcpu->arch.shadow_efer;
3308         sregs->apic_base = kvm_get_apic_base(vcpu);
3309
3310         if (irqchip_in_kernel(vcpu->kvm)) {
3311                 memset(sregs->interrupt_bitmap, 0,
3312                        sizeof sregs->interrupt_bitmap);
3313                 pending_vec = kvm_x86_ops->get_irq(vcpu);
3314                 if (pending_vec >= 0)
3315                         set_bit(pending_vec,
3316                                 (unsigned long *)sregs->interrupt_bitmap);
3317         } else
3318                 memcpy(sregs->interrupt_bitmap, vcpu->arch.irq_pending,
3319                        sizeof sregs->interrupt_bitmap);
3320
3321         vcpu_put(vcpu);
3322
3323         return 0;
3324 }
3325
3326 int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
3327                                     struct kvm_mp_state *mp_state)
3328 {
3329         vcpu_load(vcpu);
3330         mp_state->mp_state = vcpu->arch.mp_state;
3331         vcpu_put(vcpu);
3332         return 0;
3333 }
3334
3335 int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
3336                                     struct kvm_mp_state *mp_state)
3337 {
3338         vcpu_load(vcpu);
3339         vcpu->arch.mp_state = mp_state->mp_state;
3340         vcpu_put(vcpu);
3341         return 0;
3342 }
3343
3344 static void kvm_set_segment(struct kvm_vcpu *vcpu,
3345                         struct kvm_segment *var, int seg)
3346 {
3347         kvm_x86_ops->set_segment(vcpu, var, seg);
3348 }
3349
3350 static void seg_desct_to_kvm_desct(struct desc_struct *seg_desc, u16 selector,
3351                                    struct kvm_segment *kvm_desct)
3352 {
3353         kvm_desct->base = seg_desc->base0;
3354         kvm_desct->base |= seg_desc->base1 << 16;
3355         kvm_desct->base |= seg_desc->base2 << 24;
3356         kvm_desct->limit = seg_desc->limit0;
3357         kvm_desct->limit |= seg_desc->limit << 16;
3358         if (seg_desc->g) {
3359                 kvm_desct->limit <<= 12;
3360                 kvm_desct->limit |= 0xfff;
3361         }
3362         kvm_desct->selector = selector;
3363         kvm_desct->type = seg_desc->type;
3364         kvm_desct->present = seg_desc->p;
3365         kvm_desct->dpl = seg_desc->dpl;
3366         kvm_desct->db = seg_desc->d;
3367         kvm_desct->s = seg_desc->s;
3368         kvm_desct->l = seg_desc->l;
3369         kvm_desct->g = seg_desc->g;
3370         kvm_desct->avl = seg_desc->avl;
3371         if (!selector)
3372                 kvm_desct->unusable = 1;
3373         else
3374                 kvm_desct->unusable = 0;
3375         kvm_desct->padding = 0;
3376 }
3377
3378 static void get_segment_descriptor_dtable(struct kvm_vcpu *vcpu,
3379                                           u16 selector,
3380                                           struct descriptor_table *dtable)
3381 {
3382         if (selector & 1 << 2) {
3383                 struct kvm_segment kvm_seg;
3384
3385                 kvm_get_segment(vcpu, &kvm_seg, VCPU_SREG_LDTR);
3386
3387                 if (kvm_seg.unusable)
3388                         dtable->limit = 0;
3389                 else
3390                         dtable->limit = kvm_seg.limit;
3391                 dtable->base = kvm_seg.base;
3392         }
3393         else
3394                 kvm_x86_ops->get_gdt(vcpu, dtable);
3395 }
3396
3397 /* allowed just for 8 bytes segments */
3398 static int load_guest_segment_descriptor(struct kvm_vcpu *vcpu, u16 selector,
3399                                          struct desc_struct *seg_desc)
3400 {
3401         gpa_t gpa;
3402         struct descriptor_table dtable;
3403         u16 index = selector >> 3;
3404
3405         get_segment_descriptor_dtable(vcpu, selector, &dtable);
3406
3407         if (dtable.limit < index * 8 + 7) {
3408                 kvm_queue_exception_e(vcpu, GP_VECTOR, selector & 0xfffc);
3409                 return 1;
3410         }
3411         gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, dtable.base);
3412         gpa += index * 8;
3413         return kvm_read_guest(vcpu->kvm, gpa, seg_desc, 8);
3414 }
3415
3416 /* allowed just for 8 bytes segments */
3417 static int save_guest_segment_descriptor(struct kvm_vcpu *vcpu, u16 selector,
3418                                          struct desc_struct *seg_desc)
3419 {
3420         gpa_t gpa;
3421         struct descriptor_table dtable;
3422         u16 index = selector >> 3;
3423
3424         get_segment_descriptor_dtable(vcpu, selector, &dtable);
3425
3426         if (dtable.limit < index * 8 + 7)
3427                 return 1;
3428         gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, dtable.base);
3429         gpa += index * 8;
3430         return kvm_write_guest(vcpu->kvm, gpa, seg_desc, 8);
3431 }
3432
3433 static u32 get_tss_base_addr(struct kvm_vcpu *vcpu,
3434                              struct desc_struct *seg_desc)
3435 {
3436         u32 base_addr;
3437
3438         base_addr = seg_desc->base0;
3439         base_addr |= (seg_desc->base1 << 16);
3440         base_addr |= (seg_desc->base2 << 24);
3441
3442         return vcpu->arch.mmu.gva_to_gpa(vcpu, base_addr);
3443 }
3444
3445 static u16 get_segment_selector(struct kvm_vcpu *vcpu, int seg)
3446 {
3447         struct kvm_segment kvm_seg;
3448
3449         kvm_get_segment(vcpu, &kvm_seg, seg);
3450         return kvm_seg.selector;
3451 }
3452
3453 static int load_segment_descriptor_to_kvm_desct(struct kvm_vcpu *vcpu,
3454                                                 u16 selector,
3455                                                 struct kvm_segment *kvm_seg)
3456 {
3457         struct desc_struct seg_desc;
3458
3459         if (load_guest_segment_descriptor(vcpu, selector, &seg_desc))
3460                 return 1;
3461         seg_desct_to_kvm_desct(&seg_desc, selector, kvm_seg);
3462         return 0;
3463 }
3464
3465 static int kvm_load_realmode_segment(struct kvm_vcpu *vcpu, u16 selector, int seg)
3466 {
3467         struct kvm_segment segvar = {
3468                 .base = selector << 4,
3469                 .limit = 0xffff,
3470                 .selector = selector,
3471                 .type = 3,
3472                 .present = 1,
3473                 .dpl = 3,
3474                 .db = 0,
3475                 .s = 1,
3476                 .l = 0,
3477                 .g = 0,
3478                 .avl = 0,
3479                 .unusable = 0,
3480         };
3481         kvm_x86_ops->set_segment(vcpu, &segvar, seg);
3482         return 0;
3483 }
3484
3485 int kvm_load_segment_descriptor(struct kvm_vcpu *vcpu, u16 selector,
3486                                 int type_bits, int seg)
3487 {
3488         struct kvm_segment kvm_seg;
3489
3490         if (!(vcpu->arch.cr0 & X86_CR0_PE))
3491                 return kvm_load_realmode_segment(vcpu, selector, seg);
3492         if (load_segment_descriptor_to_kvm_desct(vcpu, selector, &kvm_seg))
3493                 return 1;
3494         kvm_seg.type |= type_bits;
3495
3496         if (seg != VCPU_SREG_SS && seg != VCPU_SREG_CS &&
3497             seg != VCPU_SREG_LDTR)
3498                 if (!kvm_seg.s)
3499                         kvm_seg.unusable = 1;
3500
3501         kvm_set_segment(vcpu, &kvm_seg, seg);
3502         return 0;
3503 }
3504
3505 static void save_state_to_tss32(struct kvm_vcpu *vcpu,
3506                                 struct tss_segment_32 *tss)
3507 {
3508         tss->cr3 = vcpu->arch.cr3;
3509         tss->eip = kvm_rip_read(vcpu);
3510         tss->eflags = kvm_x86_ops->get_rflags(vcpu);
3511         tss->eax = kvm_register_read(vcpu, VCPU_REGS_RAX);
3512         tss->ecx = kvm_register_read(vcpu, VCPU_REGS_RCX);
3513         tss->edx = kvm_register_read(vcpu, VCPU_REGS_RDX);
3514         tss->ebx = kvm_register_read(vcpu, VCPU_REGS_RBX);
3515         tss->esp = kvm_register_read(vcpu, VCPU_REGS_RSP);
3516         tss->ebp = kvm_register_read(vcpu, VCPU_REGS_RBP);
3517         tss->esi = kvm_register_read(vcpu, VCPU_REGS_RSI);
3518         tss->edi = kvm_register_read(vcpu, VCPU_REGS_RDI);
3519         tss->es = get_segment_selector(vcpu, VCPU_SREG_ES);
3520         tss->cs = get_segment_selector(vcpu, VCPU_SREG_CS);
3521         tss->ss = get_segment_selector(vcpu, VCPU_SREG_SS);
3522         tss->ds = get_segment_selector(vcpu, VCPU_SREG_DS);
3523         tss->fs = get_segment_selector(vcpu, VCPU_SREG_FS);
3524         tss->gs = get_segment_selector(vcpu, VCPU_SREG_GS);
3525         tss->ldt_selector = get_segment_selector(vcpu, VCPU_SREG_LDTR);
3526         tss->prev_task_link = get_segment_selector(vcpu, VCPU_SREG_TR);
3527 }
3528
3529 static int load_state_from_tss32(struct kvm_vcpu *vcpu,
3530                                   struct tss_segment_32 *tss)
3531 {
3532         kvm_set_cr3(vcpu, tss->cr3);
3533
3534         kvm_rip_write(vcpu, tss->eip);
3535         kvm_x86_ops->set_rflags(vcpu, tss->eflags | 2);
3536
3537         kvm_register_write(vcpu, VCPU_REGS_RAX, tss->eax);
3538         kvm_register_write(vcpu, VCPU_REGS_RCX, tss->ecx);
3539         kvm_register_write(vcpu, VCPU_REGS_RDX, tss->edx);
3540         kvm_register_write(vcpu, VCPU_REGS_RBX, tss->ebx);
3541         kvm_register_write(vcpu, VCPU_REGS_RSP, tss->esp);
3542         kvm_register_write(vcpu, VCPU_REGS_RBP, tss->ebp);
3543         kvm_register_write(vcpu, VCPU_REGS_RSI, tss->esi);
3544         kvm_register_write(vcpu, VCPU_REGS_RDI, tss->edi);
3545
3546         if (kvm_load_segment_descriptor(vcpu, tss->ldt_selector, 0, VCPU_SREG_LDTR))
3547                 return 1;
3548
3549         if (kvm_load_segment_descriptor(vcpu, tss->es, 1, VCPU_SREG_ES))
3550                 return 1;
3551
3552         if (kvm_load_segment_descriptor(vcpu, tss->cs, 9, VCPU_SREG_CS))
3553                 return 1;
3554
3555         if (kvm_load_segment_descriptor(vcpu, tss->ss, 1, VCPU_SREG_SS))
3556                 return 1;
3557
3558         if (kvm_load_segment_descriptor(vcpu, tss->ds, 1, VCPU_SREG_DS))
3559                 return 1;
3560
3561         if (kvm_load_segment_descriptor(vcpu, tss->fs, 1, VCPU_SREG_FS))
3562                 return 1;
3563
3564         if (kvm_load_segment_descriptor(vcpu, tss->gs, 1, VCPU_SREG_GS))
3565                 return 1;
3566         return 0;
3567 }
3568
3569 static void save_state_to_tss16(struct kvm_vcpu *vcpu,
3570                                 struct tss_segment_16 *tss)
3571 {
3572         tss->ip = kvm_rip_read(vcpu);
3573         tss->flag = kvm_x86_ops->get_rflags(vcpu);
3574         tss->ax = kvm_register_read(vcpu, VCPU_REGS_RAX);
3575         tss->cx = kvm_register_read(vcpu, VCPU_REGS_RCX);
3576         tss->dx = kvm_register_read(vcpu, VCPU_REGS_RDX);
3577         tss->bx = kvm_register_read(vcpu, VCPU_REGS_RBX);
3578         tss->sp = kvm_register_read(vcpu, VCPU_REGS_RSP);
3579         tss->bp = kvm_register_read(vcpu, VCPU_REGS_RBP);
3580         tss->si = kvm_register_read(vcpu, VCPU_REGS_RSI);
3581         tss->di = kvm_register_read(vcpu, VCPU_REGS_RDI);
3582
3583         tss->es = get_segment_selector(vcpu, VCPU_SREG_ES);
3584         tss->cs = get_segment_selector(vcpu, VCPU_SREG_CS);
3585         tss->ss = get_segment_selector(vcpu, VCPU_SREG_SS);
3586         tss->ds = get_segment_selector(vcpu, VCPU_SREG_DS);
3587         tss->ldt = get_segment_selector(vcpu, VCPU_SREG_LDTR);
3588         tss->prev_task_link = get_segment_selector(vcpu, VCPU_SREG_TR);
3589 }
3590
3591 static int load_state_from_tss16(struct kvm_vcpu *vcpu,
3592                                  struct tss_segment_16 *tss)
3593 {
3594         kvm_rip_write(vcpu, tss->ip);
3595         kvm_x86_ops->set_rflags(vcpu, tss->flag | 2);
3596         kvm_register_write(vcpu, VCPU_REGS_RAX, tss->ax);
3597         kvm_register_write(vcpu, VCPU_REGS_RCX, tss->cx);
3598         kvm_register_write(vcpu, VCPU_REGS_RDX, tss->dx);
3599         kvm_register_write(vcpu, VCPU_REGS_RBX, tss->bx);
3600         kvm_register_write(vcpu, VCPU_REGS_RSP, tss->sp);
3601         kvm_register_write(vcpu, VCPU_REGS_RBP, tss->bp);
3602         kvm_register_write(vcpu, VCPU_REGS_RSI, tss->si);
3603         kvm_register_write(vcpu, VCPU_REGS_RDI, tss->di);
3604
3605         if (kvm_load_segment_descriptor(vcpu, tss->ldt, 0, VCPU_SREG_LDTR))
3606                 return 1;
3607
3608         if (kvm_load_segment_descriptor(vcpu, tss->es, 1, VCPU_SREG_ES))
3609                 return 1;
3610
3611         if (kvm_load_segment_descriptor(vcpu, tss->cs, 9, VCPU_SREG_CS))
3612                 return 1;
3613
3614         if (kvm_load_segment_descriptor(vcpu, tss->ss, 1, VCPU_SREG_SS))
3615                 return 1;
3616
3617         if (kvm_load_segment_descriptor(vcpu, tss->ds, 1, VCPU_SREG_DS))
3618                 return 1;
3619         return 0;
3620 }
3621
3622 static int kvm_task_switch_16(struct kvm_vcpu *vcpu, u16 tss_selector,
3623                        u32 old_tss_base,
3624                        struct desc_struct *nseg_desc)
3625 {
3626         struct tss_segment_16 tss_segment_16;
3627         int ret = 0;
3628
3629         if (kvm_read_guest(vcpu->kvm, old_tss_base, &tss_segment_16,
3630                            sizeof tss_segment_16))
3631                 goto out;
3632
3633         save_state_to_tss16(vcpu, &tss_segment_16);
3634
3635         if (kvm_write_guest(vcpu->kvm, old_tss_base, &tss_segment_16,
3636                             sizeof tss_segment_16))
3637                 goto out;
3638
3639         if (kvm_read_guest(vcpu->kvm, get_tss_base_addr(vcpu, nseg_desc),
3640                            &tss_segment_16, sizeof tss_segment_16))
3641                 goto out;
3642
3643         if (load_state_from_tss16(vcpu, &tss_segment_16))
3644                 goto out;
3645
3646         ret = 1;
3647 out:
3648         return ret;
3649 }
3650
3651 static int kvm_task_switch_32(struct kvm_vcpu *vcpu, u16 tss_selector,
3652                        u32 old_tss_base,
3653                        struct desc_struct *nseg_desc)
3654 {
3655         struct tss_segment_32 tss_segment_32;
3656         int ret = 0;
3657
3658         if (kvm_read_guest(vcpu->kvm, old_tss_base, &tss_segment_32,
3659                            sizeof tss_segment_32))
3660                 goto out;
3661
3662         save_state_to_tss32(vcpu, &tss_segment_32);
3663
3664         if (kvm_write_guest(vcpu->kvm, old_tss_base, &tss_segment_32,
3665                             sizeof tss_segment_32))
3666                 goto out;
3667
3668         if (kvm_read_guest(vcpu->kvm, get_tss_base_addr(vcpu, nseg_desc),
3669                            &tss_segment_32, sizeof tss_segment_32))
3670                 goto out;
3671
3672         if (load_state_from_tss32(vcpu, &tss_segment_32))
3673                 goto out;
3674
3675         ret = 1;
3676 out:
3677         return ret;
3678 }
3679
3680 int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int reason)
3681 {
3682         struct kvm_segment tr_seg;
3683         struct desc_struct cseg_desc;
3684         struct desc_struct nseg_desc;
3685         int ret = 0;
3686         u32 old_tss_base = get_segment_base(vcpu, VCPU_SREG_TR);
3687         u16 old_tss_sel = get_segment_selector(vcpu, VCPU_SREG_TR);
3688
3689         old_tss_base = vcpu->arch.mmu.gva_to_gpa(vcpu, old_tss_base);
3690
3691         /* FIXME: Handle errors. Failure to read either TSS or their
3692          * descriptors should generate a pagefault.
3693          */
3694         if (load_guest_segment_descriptor(vcpu, tss_selector, &nseg_desc))
3695                 goto out;
3696
3697         if (load_guest_segment_descriptor(vcpu, old_tss_sel, &cseg_desc))
3698                 goto out;
3699
3700         if (reason != TASK_SWITCH_IRET) {
3701                 int cpl;
3702
3703                 cpl = kvm_x86_ops->get_cpl(vcpu);
3704                 if ((tss_selector & 3) > nseg_desc.dpl || cpl > nseg_desc.dpl) {
3705                         kvm_queue_exception_e(vcpu, GP_VECTOR, 0);
3706                         return 1;
3707                 }
3708         }
3709
3710         if (!nseg_desc.p || (nseg_desc.limit0 | nseg_desc.limit << 16) < 0x67) {
3711                 kvm_queue_exception_e(vcpu, TS_VECTOR, tss_selector & 0xfffc);
3712                 return 1;
3713         }
3714
3715         if (reason == TASK_SWITCH_IRET || reason == TASK_SWITCH_JMP) {
3716                 cseg_desc.type &= ~(1 << 1); //clear the B flag
3717                 save_guest_segment_descriptor(vcpu, old_tss_sel, &cseg_desc);
3718         }
3719
3720         if (reason == TASK_SWITCH_IRET) {
3721                 u32 eflags = kvm_x86_ops->get_rflags(vcpu);
3722                 kvm_x86_ops->set_rflags(vcpu, eflags & ~X86_EFLAGS_NT);
3723         }
3724
3725         kvm_x86_ops->skip_emulated_instruction(vcpu);
3726
3727         if (nseg_desc.type & 8)
3728                 ret = kvm_task_switch_32(vcpu, tss_selector, old_tss_base,
3729                                          &nseg_desc);
3730         else
3731                 ret = kvm_task_switch_16(vcpu, tss_selector, old_tss_base,
3732                                          &nseg_desc);
3733
3734         if (reason == TASK_SWITCH_CALL || reason == TASK_SWITCH_GATE) {
3735                 u32 eflags = kvm_x86_ops->get_rflags(vcpu);
3736                 kvm_x86_ops->set_rflags(vcpu, eflags | X86_EFLAGS_NT);
3737         }
3738
3739         if (reason != TASK_SWITCH_IRET) {
3740                 nseg_desc.type |= (1 << 1);
3741                 save_guest_segment_descriptor(vcpu, tss_selector,
3742                                               &nseg_desc);
3743         }
3744
3745         kvm_x86_ops->set_cr0(vcpu, vcpu->arch.cr0 | X86_CR0_TS);
3746         seg_desct_to_kvm_desct(&nseg_desc, tss_selector, &tr_seg);
3747         tr_seg.type = 11;
3748         kvm_set_segment(vcpu, &tr_seg, VCPU_SREG_TR);
3749 out:
3750         return ret;
3751 }
3752 EXPORT_SYMBOL_GPL(kvm_task_switch);
3753
3754 int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
3755                                   struct kvm_sregs *sregs)
3756 {
3757         int mmu_reset_needed = 0;
3758         int i, pending_vec, max_bits;
3759         struct descriptor_table dt;
3760
3761         vcpu_load(vcpu);
3762
3763         dt.limit = sregs->idt.limit;
3764         dt.base = sregs->idt.base;
3765         kvm_x86_ops->set_idt(vcpu, &dt);
3766         dt.limit = sregs->gdt.limit;
3767         dt.base = sregs->gdt.base;
3768         kvm_x86_ops->set_gdt(vcpu, &dt);
3769
3770         vcpu->arch.cr2 = sregs->cr2;
3771         mmu_reset_needed |= vcpu->arch.cr3 != sregs->cr3;
3772         vcpu->arch.cr3 = sregs->cr3;
3773
3774         kvm_set_cr8(vcpu, sregs->cr8);
3775
3776         mmu_reset_needed |= vcpu->arch.shadow_efer != sregs->efer;
3777         kvm_x86_ops->set_efer(vcpu, sregs->efer);
3778         kvm_set_apic_base(vcpu, sregs->apic_base);
3779
3780         kvm_x86_ops->decache_cr4_guest_bits(vcpu);
3781
3782         mmu_reset_needed |= vcpu->arch.cr0 != sregs->cr0;
3783         kvm_x86_ops->set_cr0(vcpu, sregs->cr0);
3784         vcpu->arch.cr0 = sregs->cr0;
3785
3786         mmu_reset_needed |= vcpu->arch.cr4 != sregs->cr4;
3787         kvm_x86_ops->set_cr4(vcpu, sregs->cr4);
3788         if (!is_long_mode(vcpu) && is_pae(vcpu))
3789                 load_pdptrs(vcpu, vcpu->arch.cr3);
3790
3791         if (mmu_reset_needed)
3792                 kvm_mmu_reset_context(vcpu);
3793
3794         if (!irqchip_in_kernel(vcpu->kvm)) {
3795                 memcpy(vcpu->arch.irq_pending, sregs->interrupt_bitmap,
3796                        sizeof vcpu->arch.irq_pending);
3797                 vcpu->arch.irq_summary = 0;
3798                 for (i = 0; i < ARRAY_SIZE(vcpu->arch.irq_pending); ++i)
3799                         if (vcpu->arch.irq_pending[i])
3800                                 __set_bit(i, &vcpu->arch.irq_summary);
3801         } else {
3802                 max_bits = (sizeof sregs->interrupt_bitmap) << 3;
3803                 pending_vec = find_first_bit(
3804                         (const unsigned long *)sregs->interrupt_bitmap,
3805                         max_bits);
3806                 /* Only pending external irq is handled here */
3807                 if (pending_vec < max_bits) {
3808                         kvm_x86_ops->set_irq(vcpu, pending_vec);
3809                         pr_debug("Set back pending irq %d\n",
3810                                  pending_vec);
3811                 }
3812                 kvm_pic_clear_isr_ack(vcpu->kvm);
3813         }
3814
3815         kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS);
3816         kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS);
3817         kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES);
3818         kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS);
3819         kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS);
3820         kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS);
3821
3822         kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR);
3823         kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR);
3824
3825         /* Older userspace won't unhalt the vcpu on reset. */
3826         if (vcpu->vcpu_id == 0 && kvm_rip_read(vcpu) == 0xfff0 &&
3827             sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 &&
3828             !(vcpu->arch.cr0 & X86_CR0_PE))
3829                 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
3830
3831         vcpu_put(vcpu);
3832
3833         return 0;
3834 }
3835
3836 int kvm_arch_vcpu_ioctl_debug_guest(struct kvm_vcpu *vcpu,
3837                                     struct kvm_debug_guest *dbg)
3838 {
3839         int r;
3840
3841         vcpu_load(vcpu);
3842
3843         r = kvm_x86_ops->set_guest_debug(vcpu, dbg);
3844
3845         vcpu_put(vcpu);
3846
3847         return r;
3848 }
3849
3850 /*
3851  * fxsave fpu state.  Taken from x86_64/processor.h.  To be killed when
3852  * we have asm/x86/processor.h
3853  */
3854 struct fxsave {
3855         u16     cwd;
3856         u16     swd;
3857         u16     twd;
3858         u16     fop;
3859         u64     rip;
3860         u64     rdp;
3861         u32     mxcsr;
3862         u32     mxcsr_mask;
3863         u32     st_space[32];   /* 8*16 bytes for each FP-reg = 128 bytes */
3864 #ifdef CONFIG_X86_64
3865         u32     xmm_space[64];  /* 16*16 bytes for each XMM-reg = 256 bytes */
3866 #else
3867         u32     xmm_space[32];  /* 8*16 bytes for each XMM-reg = 128 bytes */
3868 #endif
3869 };
3870
3871 /*
3872  * Translate a guest virtual address to a guest physical address.
3873  */
3874 int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
3875                                     struct kvm_translation *tr)
3876 {
3877         unsigned long vaddr = tr->linear_address;
3878         gpa_t gpa;
3879
3880         vcpu_load(vcpu);
3881         down_read(&vcpu->kvm->slots_lock);
3882         gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, vaddr);
3883         up_read(&vcpu->kvm->slots_lock);
3884         tr->physical_address = gpa;
3885         tr->valid = gpa != UNMAPPED_GVA;
3886         tr->writeable = 1;
3887         tr->usermode = 0;
3888         vcpu_put(vcpu);
3889
3890         return 0;
3891 }
3892
3893 int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
3894 {
3895         struct fxsave *fxsave = (struct fxsave *)&vcpu->arch.guest_fx_image;
3896
3897         vcpu_load(vcpu);
3898
3899         memcpy(fpu->fpr, fxsave->st_space, 128);
3900         fpu->fcw = fxsave->cwd;
3901         fpu->fsw = fxsave->swd;
3902         fpu->ftwx = fxsave->twd;
3903         fpu->last_opcode = fxsave->fop;
3904         fpu->last_ip = fxsave->rip;
3905         fpu->last_dp = fxsave->rdp;
3906         memcpy(fpu->xmm, fxsave->xmm_space, sizeof fxsave->xmm_space);
3907
3908         vcpu_put(vcpu);
3909
3910         return 0;
3911 }
3912
3913 int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
3914 {
3915         struct fxsave *fxsave = (struct fxsave *)&vcpu->arch.guest_fx_image;
3916
3917         vcpu_load(vcpu);
3918
3919         memcpy(fxsave->st_space, fpu->fpr, 128);
3920         fxsave->cwd = fpu->fcw;
3921         fxsave->swd = fpu->fsw;
3922         fxsave->twd = fpu->ftwx;
3923         fxsave->fop = fpu->last_opcode;
3924         fxsave->rip = fpu->last_ip;
3925         fxsave->rdp = fpu->last_dp;
3926         memcpy(fxsave->xmm_space, fpu->xmm, sizeof fxsave->xmm_space);
3927
3928         vcpu_put(vcpu);
3929
3930         return 0;
3931 }
3932
3933 void fx_init(struct kvm_vcpu *vcpu)
3934 {
3935         unsigned after_mxcsr_mask;
3936
3937         /*
3938          * Touch the fpu the first time in non atomic context as if
3939          * this is the first fpu instruction the exception handler
3940          * will fire before the instruction returns and it'll have to
3941          * allocate ram with GFP_KERNEL.
3942          */
3943         if (!used_math())
3944                 kvm_fx_save(&vcpu->arch.host_fx_image);
3945
3946         /* Initialize guest FPU by resetting ours and saving into guest's */
3947         preempt_disable();
3948         kvm_fx_save(&vcpu->arch.host_fx_image);
3949         kvm_fx_finit();
3950         kvm_fx_save(&vcpu->arch.guest_fx_image);
3951         kvm_fx_restore(&vcpu->arch.host_fx_image);
3952         preempt_enable();
3953
3954         vcpu->arch.cr0 |= X86_CR0_ET;
3955         after_mxcsr_mask = offsetof(struct i387_fxsave_struct, st_space);
3956         vcpu->arch.guest_fx_image.mxcsr = 0x1f80;
3957         memset((void *)&vcpu->arch.guest_fx_image + after_mxcsr_mask,
3958                0, sizeof(struct i387_fxsave_struct) - after_mxcsr_mask);
3959 }
3960 EXPORT_SYMBOL_GPL(fx_init);
3961
3962 void kvm_load_guest_fpu(struct kvm_vcpu *vcpu)
3963 {
3964         if (!vcpu->fpu_active || vcpu->guest_fpu_loaded)
3965                 return;
3966
3967         vcpu->guest_fpu_loaded = 1;
3968         kvm_fx_save(&vcpu->arch.host_fx_image);
3969         kvm_fx_restore(&vcpu->arch.guest_fx_image);
3970 }
3971 EXPORT_SYMBOL_GPL(kvm_load_guest_fpu);
3972
3973 void kvm_put_guest_fpu(struct kvm_vcpu *vcpu)
3974 {
3975         if (!vcpu->guest_fpu_loaded)
3976                 return;
3977
3978         vcpu->guest_fpu_loaded = 0;
3979         kvm_fx_save(&vcpu->arch.guest_fx_image);
3980         kvm_fx_restore(&vcpu->arch.host_fx_image);
3981         ++vcpu->stat.fpu_reload;
3982 }
3983 EXPORT_SYMBOL_GPL(kvm_put_guest_fpu);
3984
3985 void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu)
3986 {
3987         kvm_x86_ops->vcpu_free(vcpu);
3988 }
3989
3990 struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm,
3991                                                 unsigned int id)
3992 {
3993         return kvm_x86_ops->vcpu_create(kvm, id);
3994 }
3995
3996 int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
3997 {
3998         int r;
3999
4000         /* We do fxsave: this must be aligned. */
4001         BUG_ON((unsigned long)&vcpu->arch.host_fx_image & 0xF);
4002
4003         vcpu->arch.mtrr_state.have_fixed = 1;
4004         vcpu_load(vcpu);
4005         r = kvm_arch_vcpu_reset(vcpu);
4006         if (r == 0)
4007                 r = kvm_mmu_setup(vcpu);
4008         vcpu_put(vcpu);
4009         if (r < 0)
4010                 goto free_vcpu;
4011
4012         return 0;
4013 free_vcpu:
4014         kvm_x86_ops->vcpu_free(vcpu);
4015         return r;
4016 }
4017
4018 void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
4019 {
4020         vcpu_load(vcpu);
4021         kvm_mmu_unload(vcpu);
4022         vcpu_put(vcpu);
4023
4024         kvm_x86_ops->vcpu_free(vcpu);
4025 }
4026
4027 int kvm_arch_vcpu_reset(struct kvm_vcpu *vcpu)
4028 {
4029         vcpu->arch.nmi_pending = false;
4030         vcpu->arch.nmi_injected = false;
4031
4032         return kvm_x86_ops->vcpu_reset(vcpu);
4033 }
4034
4035 void kvm_arch_hardware_enable(void *garbage)
4036 {
4037         kvm_x86_ops->hardware_enable(garbage);
4038 }
4039
4040 void kvm_arch_hardware_disable(void *garbage)
4041 {
4042         kvm_x86_ops->hardware_disable(garbage);
4043 }
4044
4045 int kvm_arch_hardware_setup(void)
4046 {
4047         return kvm_x86_ops->hardware_setup();
4048 }
4049
4050 void kvm_arch_hardware_unsetup(void)
4051 {
4052         kvm_x86_ops->hardware_unsetup();
4053 }
4054
4055 void kvm_arch_check_processor_compat(void *rtn)
4056 {
4057         kvm_x86_ops->check_processor_compatibility(rtn);
4058 }
4059
4060 int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
4061 {
4062         struct page *page;
4063         struct kvm *kvm;
4064         int r;
4065
4066         BUG_ON(vcpu->kvm == NULL);
4067         kvm = vcpu->kvm;
4068
4069         vcpu->arch.mmu.root_hpa = INVALID_PAGE;
4070         if (!irqchip_in_kernel(kvm) || vcpu->vcpu_id == 0)
4071                 vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE;
4072         else
4073                 vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED;
4074
4075         page = alloc_page(GFP_KERNEL | __GFP_ZERO);
4076         if (!page) {
4077                 r = -ENOMEM;
4078                 goto fail;
4079         }
4080         vcpu->arch.pio_data = page_address(page);
4081
4082         r = kvm_mmu_create(vcpu);
4083         if (r < 0)
4084                 goto fail_free_pio_data;
4085
4086         if (irqchip_in_kernel(kvm)) {
4087                 r = kvm_create_lapic(vcpu);
4088                 if (r < 0)
4089                         goto fail_mmu_destroy;
4090         }
4091
4092         return 0;
4093
4094 fail_mmu_destroy:
4095         kvm_mmu_destroy(vcpu);
4096 fail_free_pio_data:
4097         free_page((unsigned long)vcpu->arch.pio_data);
4098 fail:
4099         return r;
4100 }
4101
4102 void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu)
4103 {
4104         kvm_free_lapic(vcpu);
4105         down_read(&vcpu->kvm->slots_lock);
4106         kvm_mmu_destroy(vcpu);
4107         up_read(&vcpu->kvm->slots_lock);
4108         free_page((unsigned long)vcpu->arch.pio_data);
4109 }
4110
4111 struct  kvm *kvm_arch_create_vm(void)
4112 {
4113         struct kvm *kvm = kzalloc(sizeof(struct kvm), GFP_KERNEL);
4114
4115         if (!kvm)
4116                 return ERR_PTR(-ENOMEM);
4117
4118         INIT_LIST_HEAD(&kvm->arch.active_mmu_pages);
4119         INIT_LIST_HEAD(&kvm->arch.oos_global_pages);
4120         INIT_LIST_HEAD(&kvm->arch.assigned_dev_head);
4121
4122         /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */
4123         set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap);
4124
4125         return kvm;
4126 }
4127
4128 static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu)
4129 {
4130         vcpu_load(vcpu);
4131         kvm_mmu_unload(vcpu);
4132         vcpu_put(vcpu);
4133 }
4134
4135 static void kvm_free_vcpus(struct kvm *kvm)
4136 {
4137         unsigned int i;
4138
4139         /*
4140          * Unpin any mmu pages first.
4141          */
4142         for (i = 0; i < KVM_MAX_VCPUS; ++i)
4143                 if (kvm->vcpus[i])
4144                         kvm_unload_vcpu_mmu(kvm->vcpus[i]);
4145         for (i = 0; i < KVM_MAX_VCPUS; ++i) {
4146                 if (kvm->vcpus[i]) {
4147                         kvm_arch_vcpu_free(kvm->vcpus[i]);
4148                         kvm->vcpus[i] = NULL;
4149                 }
4150         }
4151
4152 }
4153
4154 void kvm_arch_destroy_vm(struct kvm *kvm)
4155 {
4156         kvm_free_all_assigned_devices(kvm);
4157         kvm_iommu_unmap_guest(kvm);
4158         kvm_free_pit(kvm);
4159         kfree(kvm->arch.vpic);
4160         kfree(kvm->arch.vioapic);
4161         kvm_free_vcpus(kvm);
4162         kvm_free_physmem(kvm);
4163         if (kvm->arch.apic_access_page)
4164                 put_page(kvm->arch.apic_access_page);
4165         if (kvm->arch.ept_identity_pagetable)
4166                 put_page(kvm->arch.ept_identity_pagetable);
4167         kfree(kvm);
4168 }
4169
4170 int kvm_arch_set_memory_region(struct kvm *kvm,
4171                                 struct kvm_userspace_memory_region *mem,
4172                                 struct kvm_memory_slot old,
4173                                 int user_alloc)
4174 {
4175         int npages = mem->memory_size >> PAGE_SHIFT;
4176         struct kvm_memory_slot *memslot = &kvm->memslots[mem->slot];
4177
4178         /*To keep backward compatibility with older userspace,
4179          *x86 needs to hanlde !user_alloc case.
4180          */
4181         if (!user_alloc) {
4182                 if (npages && !old.rmap) {
4183                         unsigned long userspace_addr;
4184
4185                         down_write(&current->mm->mmap_sem);
4186                         userspace_addr = do_mmap(NULL, 0,
4187                                                  npages * PAGE_SIZE,
4188                                                  PROT_READ | PROT_WRITE,
4189                                                  MAP_PRIVATE | MAP_ANONYMOUS,
4190                                                  0);
4191                         up_write(&current->mm->mmap_sem);
4192
4193                         if (IS_ERR((void *)userspace_addr))
4194                                 return PTR_ERR((void *)userspace_addr);
4195
4196                         /* set userspace_addr atomically for kvm_hva_to_rmapp */
4197                         spin_lock(&kvm->mmu_lock);
4198                         memslot->userspace_addr = userspace_addr;
4199                         spin_unlock(&kvm->mmu_lock);
4200                 } else {
4201                         if (!old.user_alloc && old.rmap) {
4202                                 int ret;
4203
4204                                 down_write(&current->mm->mmap_sem);
4205                                 ret = do_munmap(current->mm, old.userspace_addr,
4206                                                 old.npages * PAGE_SIZE);
4207                                 up_write(&current->mm->mmap_sem);
4208                                 if (ret < 0)
4209                                         printk(KERN_WARNING
4210                                        "kvm_vm_ioctl_set_memory_region: "
4211                                        "failed to munmap memory\n");
4212                         }
4213                 }
4214         }
4215
4216         if (!kvm->arch.n_requested_mmu_pages) {
4217                 unsigned int nr_mmu_pages = kvm_mmu_calculate_mmu_pages(kvm);
4218                 kvm_mmu_change_mmu_pages(kvm, nr_mmu_pages);
4219         }
4220
4221         kvm_mmu_slot_remove_write_access(kvm, mem->slot);
4222         kvm_flush_remote_tlbs(kvm);
4223
4224         return 0;
4225 }
4226
4227 void kvm_arch_flush_shadow(struct kvm *kvm)
4228 {
4229         kvm_mmu_zap_all(kvm);
4230 }
4231
4232 int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
4233 {
4234         return vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE
4235                || vcpu->arch.mp_state == KVM_MP_STATE_SIPI_RECEIVED
4236                || vcpu->arch.nmi_pending;
4237 }
4238
4239 static void vcpu_kick_intr(void *info)
4240 {
4241 #ifdef DEBUG
4242         struct kvm_vcpu *vcpu = (struct kvm_vcpu *)info;
4243         printk(KERN_DEBUG "vcpu_kick_intr %p \n", vcpu);
4244 #endif
4245 }
4246
4247 void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
4248 {
4249         int ipi_pcpu = vcpu->cpu;
4250         int cpu = get_cpu();
4251
4252         if (waitqueue_active(&vcpu->wq)) {
4253                 wake_up_interruptible(&vcpu->wq);
4254                 ++vcpu->stat.halt_wakeup;
4255         }
4256         /*
4257          * We may be called synchronously with irqs disabled in guest mode,
4258          * So need not to call smp_call_function_single() in that case.
4259          */
4260         if (vcpu->guest_mode && vcpu->cpu != cpu)
4261                 smp_call_function_single(ipi_pcpu, vcpu_kick_intr, vcpu, 0);
4262         put_cpu();
4263 }