Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 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. |
Ben-Ami Yassour | 4d5c5d0 | 2008-07-28 19:26:26 +0300 | [diff] [blame] | 7 | * Copyright (C) 2008 Qumranet, Inc. |
| 8 | * Copyright IBM Corporation, 2008 |
Nicolas Kaiser | 9611c18 | 2010-10-06 14:23:22 +0200 | [diff] [blame] | 9 | * Copyright 2010 Red Hat, Inc. and/or its affiliates. |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 10 | * |
| 11 | * Authors: |
| 12 | * Avi Kivity <avi@qumranet.com> |
| 13 | * Yaniv Kamay <yaniv@qumranet.com> |
Ben-Ami Yassour | 4d5c5d0 | 2008-07-28 19:26:26 +0300 | [diff] [blame] | 14 | * Amit Shah <amit.shah@qumranet.com> |
| 15 | * Ben-Ami Yassour <benami@il.ibm.com> |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 16 | * |
| 17 | * This work is licensed under the terms of the GNU GPL, version 2. See |
| 18 | * the COPYING file in the top-level directory. |
| 19 | * |
| 20 | */ |
| 21 | |
Avi Kivity | edf8841 | 2007-12-16 11:02:48 +0200 | [diff] [blame] | 22 | #include <linux/kvm_host.h> |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 23 | #include "irq.h" |
Zhang Xiantao | 1d737c8 | 2007-12-14 09:35:10 +0800 | [diff] [blame] | 24 | #include "mmu.h" |
Sheng Yang | 7837699 | 2008-01-28 05:10:22 +0800 | [diff] [blame] | 25 | #include "i8254.h" |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 26 | #include "tss.h" |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 27 | #include "kvm_cache_regs.h" |
Avi Kivity | 26eef70 | 2008-07-03 14:59:22 +0300 | [diff] [blame] | 28 | #include "x86.h" |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 29 | #include "cpuid.h" |
Paolo Bonzini | c9eab58 | 2014-11-24 15:27:17 +0100 | [diff] [blame] | 30 | #include "assigned-dev.h" |
Wei Huang | 474a5bb | 2015-06-19 13:54:23 +0200 | [diff] [blame] | 31 | #include "pmu.h" |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 32 | |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 33 | #include <linux/clocksource.h> |
Ben-Ami Yassour | 4d5c5d0 | 2008-07-28 19:26:26 +0300 | [diff] [blame] | 34 | #include <linux/interrupt.h> |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 35 | #include <linux/kvm.h> |
| 36 | #include <linux/fs.h> |
| 37 | #include <linux/vmalloc.h> |
Carsten Otte | 5fb76f9 | 2007-10-29 16:08:51 +0100 | [diff] [blame] | 38 | #include <linux/module.h> |
Zhang Xiantao | 0de1034 | 2007-11-20 16:25:04 +0800 | [diff] [blame] | 39 | #include <linux/mman.h> |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 40 | #include <linux/highmem.h> |
Joerg Roedel | 19de40a | 2008-12-03 14:43:34 +0100 | [diff] [blame] | 41 | #include <linux/iommu.h> |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 42 | #include <linux/intel-iommu.h> |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 43 | #include <linux/cpufreq.h> |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 44 | #include <linux/user-return-notifier.h> |
Marcelo Tosatti | a983fb2 | 2009-12-23 14:35:23 -0200 | [diff] [blame] | 45 | #include <linux/srcu.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 46 | #include <linux/slab.h> |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 47 | #include <linux/perf_event.h> |
Lai Jiangshan | 7bee342 | 2010-06-02 17:06:03 +0800 | [diff] [blame] | 48 | #include <linux/uaccess.h> |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 49 | #include <linux/hash.h> |
Joerg Roedel | a1b60c1 | 2011-09-06 18:46:34 +0200 | [diff] [blame] | 50 | #include <linux/pci.h> |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 51 | #include <linux/timekeeper_internal.h> |
| 52 | #include <linux/pvclock_gtod.h> |
Avi Kivity | aec51dc | 2009-07-01 16:01:02 +0300 | [diff] [blame] | 53 | #include <trace/events/kvm.h> |
Xiao Guangrong | 2ed152a | 2010-03-10 19:00:43 +0800 | [diff] [blame] | 54 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 55 | #define CREATE_TRACE_POINTS |
| 56 | #include "trace.h" |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 57 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 58 | #include <asm/debugreg.h> |
Zhang Xiantao | d825ed0 | 2007-11-14 20:08:51 +0800 | [diff] [blame] | 59 | #include <asm/msr.h> |
Avi Kivity | a5f6130 | 2008-02-20 17:57:21 +0200 | [diff] [blame] | 60 | #include <asm/desc.h> |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 61 | #include <asm/mce.h> |
Ingo Molnar | f89e32e | 2015-04-22 10:58:10 +0200 | [diff] [blame] | 62 | #include <linux/kernel_stat.h> |
Ingo Molnar | 78f7f1e | 2015-04-24 02:54:44 +0200 | [diff] [blame] | 63 | #include <asm/fpu/internal.h> /* Ugh! */ |
Zachary Amsden | 1d5f066 | 2010-08-19 22:07:30 -1000 | [diff] [blame] | 64 | #include <asm/pvclock.h> |
Avi Kivity | 217fc9c | 2010-08-26 13:38:03 +0300 | [diff] [blame] | 65 | #include <asm/div64.h> |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 66 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 67 | #define MAX_IO_MSRS 256 |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 68 | #define KVM_MAX_MCE_BANKS 32 |
Huang Ying | 5854dbc | 2010-10-08 16:24:14 +0800 | [diff] [blame] | 69 | #define KVM_MCE_CAP_SUPPORTED (MCG_CTL_P | MCG_SER_P) |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 70 | |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 71 | #define emul_to_vcpu(ctxt) \ |
| 72 | container_of(ctxt, struct kvm_vcpu, arch.emulate_ctxt) |
| 73 | |
Joerg Roedel | 50a37eb | 2008-01-31 14:57:38 +0100 | [diff] [blame] | 74 | /* EFER defaults: |
| 75 | * - enable syscall per default because its emulated by KVM |
| 76 | * - enable LME and LMA per default on 64 bit KVM |
| 77 | */ |
| 78 | #ifdef CONFIG_X86_64 |
Lai Jiangshan | 1260edbe | 2011-02-21 11:51:35 +0800 | [diff] [blame] | 79 | static |
| 80 | u64 __read_mostly efer_reserved_bits = ~((u64)(EFER_SCE | EFER_LME | EFER_LMA)); |
Joerg Roedel | 50a37eb | 2008-01-31 14:57:38 +0100 | [diff] [blame] | 81 | #else |
Lai Jiangshan | 1260edbe | 2011-02-21 11:51:35 +0800 | [diff] [blame] | 82 | static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE); |
Joerg Roedel | 50a37eb | 2008-01-31 14:57:38 +0100 | [diff] [blame] | 83 | #endif |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 84 | |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 85 | #define VM_STAT(x) offsetof(struct kvm, stat.x), KVM_STAT_VM |
| 86 | #define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU |
Hollis Blanchard | 417bc30 | 2007-10-31 17:24:23 -0500 | [diff] [blame] | 87 | |
Gleb Natapov | cb142eb | 2009-08-09 15:17:40 +0300 | [diff] [blame] | 88 | static void update_cr8_intercept(struct kvm_vcpu *vcpu); |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 89 | static void process_nmi(struct kvm_vcpu *vcpu); |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 90 | static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags); |
Avi Kivity | 674eea0 | 2008-02-11 18:37:23 +0200 | [diff] [blame] | 91 | |
Zhang Xiantao | 97896d0 | 2007-11-14 20:09:30 +0800 | [diff] [blame] | 92 | struct kvm_x86_ops *kvm_x86_ops; |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 93 | EXPORT_SYMBOL_GPL(kvm_x86_ops); |
Zhang Xiantao | 97896d0 | 2007-11-14 20:09:30 +0800 | [diff] [blame] | 94 | |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 95 | static bool ignore_msrs = 0; |
| 96 | module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR); |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 97 | |
Marcelo Tosatti | 9ed96e8 | 2014-01-06 12:00:02 -0200 | [diff] [blame] | 98 | unsigned int min_timer_period_us = 500; |
| 99 | module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR); |
| 100 | |
Marcelo Tosatti | 630994b | 2015-05-12 22:42:04 -0300 | [diff] [blame] | 101 | static bool __read_mostly kvmclock_periodic_sync = true; |
| 102 | module_param(kvmclock_periodic_sync, bool, S_IRUGO); |
| 103 | |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 104 | bool kvm_has_tsc_control; |
| 105 | EXPORT_SYMBOL_GPL(kvm_has_tsc_control); |
| 106 | u32 kvm_max_guest_tsc_khz; |
| 107 | EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz); |
| 108 | |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 109 | /* tsc tolerance in parts per million - default to 1/2 of the NTP threshold */ |
| 110 | static u32 tsc_tolerance_ppm = 250; |
| 111 | module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR); |
| 112 | |
Marcelo Tosatti | d0659d9 | 2014-12-16 09:08:15 -0500 | [diff] [blame] | 113 | /* lapic timer advance (tscdeadline mode only) in nanoseconds */ |
| 114 | unsigned int lapic_timer_advance_ns = 0; |
| 115 | module_param(lapic_timer_advance_ns, uint, S_IRUGO | S_IWUSR); |
| 116 | |
Marcelo Tosatti | 16a9602 | 2014-05-14 12:43:24 -0300 | [diff] [blame] | 117 | static bool backwards_tsc_observed = false; |
| 118 | |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 119 | #define KVM_NR_SHARED_MSRS 16 |
| 120 | |
| 121 | struct kvm_shared_msrs_global { |
| 122 | int nr; |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 123 | u32 msrs[KVM_NR_SHARED_MSRS]; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 124 | }; |
| 125 | |
| 126 | struct kvm_shared_msrs { |
| 127 | struct user_return_notifier urn; |
| 128 | bool registered; |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 129 | struct kvm_shared_msr_values { |
| 130 | u64 host; |
| 131 | u64 curr; |
| 132 | } values[KVM_NR_SHARED_MSRS]; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 133 | }; |
| 134 | |
| 135 | static struct kvm_shared_msrs_global __read_mostly shared_msrs_global; |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 136 | static struct kvm_shared_msrs __percpu *shared_msrs; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 137 | |
Hollis Blanchard | 417bc30 | 2007-10-31 17:24:23 -0500 | [diff] [blame] | 138 | struct kvm_stats_debugfs_item debugfs_entries[] = { |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 139 | { "pf_fixed", VCPU_STAT(pf_fixed) }, |
| 140 | { "pf_guest", VCPU_STAT(pf_guest) }, |
| 141 | { "tlb_flush", VCPU_STAT(tlb_flush) }, |
| 142 | { "invlpg", VCPU_STAT(invlpg) }, |
| 143 | { "exits", VCPU_STAT(exits) }, |
| 144 | { "io_exits", VCPU_STAT(io_exits) }, |
| 145 | { "mmio_exits", VCPU_STAT(mmio_exits) }, |
| 146 | { "signal_exits", VCPU_STAT(signal_exits) }, |
| 147 | { "irq_window", VCPU_STAT(irq_window_exits) }, |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 148 | { "nmi_window", VCPU_STAT(nmi_window_exits) }, |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 149 | { "halt_exits", VCPU_STAT(halt_exits) }, |
Paolo Bonzini | f781951 | 2015-02-04 18:20:58 +0100 | [diff] [blame] | 150 | { "halt_successful_poll", VCPU_STAT(halt_successful_poll) }, |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 151 | { "halt_wakeup", VCPU_STAT(halt_wakeup) }, |
Amit Shah | f11c3a8 | 2008-02-21 01:00:30 +0530 | [diff] [blame] | 152 | { "hypercalls", VCPU_STAT(hypercalls) }, |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 153 | { "request_irq", VCPU_STAT(request_irq_exits) }, |
| 154 | { "irq_exits", VCPU_STAT(irq_exits) }, |
| 155 | { "host_state_reload", VCPU_STAT(host_state_reload) }, |
| 156 | { "efer_reload", VCPU_STAT(efer_reload) }, |
| 157 | { "fpu_reload", VCPU_STAT(fpu_reload) }, |
| 158 | { "insn_emulation", VCPU_STAT(insn_emulation) }, |
| 159 | { "insn_emulation_fail", VCPU_STAT(insn_emulation_fail) }, |
Avi Kivity | fa89a81 | 2008-09-01 15:57:51 +0300 | [diff] [blame] | 160 | { "irq_injections", VCPU_STAT(irq_injections) }, |
Jan Kiszka | c4abb7c | 2008-09-26 09:30:55 +0200 | [diff] [blame] | 161 | { "nmi_injections", VCPU_STAT(nmi_injections) }, |
Avi Kivity | 4cee576 | 2007-11-18 16:37:07 +0200 | [diff] [blame] | 162 | { "mmu_shadow_zapped", VM_STAT(mmu_shadow_zapped) }, |
| 163 | { "mmu_pte_write", VM_STAT(mmu_pte_write) }, |
| 164 | { "mmu_pte_updated", VM_STAT(mmu_pte_updated) }, |
| 165 | { "mmu_pde_zapped", VM_STAT(mmu_pde_zapped) }, |
| 166 | { "mmu_flooded", VM_STAT(mmu_flooded) }, |
| 167 | { "mmu_recycled", VM_STAT(mmu_recycled) }, |
Avi Kivity | dfc5aa0 | 2007-12-18 19:47:18 +0200 | [diff] [blame] | 168 | { "mmu_cache_miss", VM_STAT(mmu_cache_miss) }, |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 169 | { "mmu_unsync", VM_STAT(mmu_unsync) }, |
Avi Kivity | 0f74a24 | 2007-11-20 23:01:14 +0200 | [diff] [blame] | 170 | { "remote_tlb_flush", VM_STAT(remote_tlb_flush) }, |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 171 | { "largepages", VM_STAT(lpages) }, |
Hollis Blanchard | 417bc30 | 2007-10-31 17:24:23 -0500 | [diff] [blame] | 172 | { NULL } |
| 173 | }; |
| 174 | |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 175 | u64 __read_mostly host_xcr0; |
| 176 | |
Jan Kiszka | b6785de | 2012-09-20 07:43:17 +0200 | [diff] [blame] | 177 | static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt); |
Avi Kivity | d6aa100 | 2011-04-20 15:47:13 +0300 | [diff] [blame] | 178 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 179 | static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu) |
| 180 | { |
| 181 | int i; |
| 182 | for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU); i++) |
| 183 | vcpu->arch.apf.gfns[i] = ~0; |
| 184 | } |
| 185 | |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 186 | static void kvm_on_user_return(struct user_return_notifier *urn) |
| 187 | { |
| 188 | unsigned slot; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 189 | struct kvm_shared_msrs *locals |
| 190 | = container_of(urn, struct kvm_shared_msrs, urn); |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 191 | struct kvm_shared_msr_values *values; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 192 | |
| 193 | for (slot = 0; slot < shared_msrs_global.nr; ++slot) { |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 194 | values = &locals->values[slot]; |
| 195 | if (values->host != values->curr) { |
| 196 | wrmsrl(shared_msrs_global.msrs[slot], values->host); |
| 197 | values->curr = values->host; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 198 | } |
| 199 | } |
| 200 | locals->registered = false; |
| 201 | user_return_notifier_unregister(urn); |
| 202 | } |
| 203 | |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 204 | static void shared_msr_update(unsigned slot, u32 msr) |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 205 | { |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 206 | u64 value; |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 207 | unsigned int cpu = smp_processor_id(); |
| 208 | struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu); |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 209 | |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 210 | /* only read, and nobody should modify it at this time, |
| 211 | * so don't need lock */ |
| 212 | if (slot >= shared_msrs_global.nr) { |
| 213 | printk(KERN_ERR "kvm: invalid MSR slot!"); |
| 214 | return; |
| 215 | } |
| 216 | rdmsrl_safe(msr, &value); |
| 217 | smsr->values[slot].host = value; |
| 218 | smsr->values[slot].curr = value; |
| 219 | } |
| 220 | |
| 221 | void kvm_define_shared_msr(unsigned slot, u32 msr) |
| 222 | { |
Nadav Amit | 0123be4 | 2014-07-24 15:06:56 +0300 | [diff] [blame] | 223 | BUG_ON(slot >= KVM_NR_SHARED_MSRS); |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 224 | if (slot >= shared_msrs_global.nr) |
| 225 | shared_msrs_global.nr = slot + 1; |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 226 | shared_msrs_global.msrs[slot] = msr; |
| 227 | /* we need ensured the shared_msr_global have been updated */ |
| 228 | smp_wmb(); |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 229 | } |
| 230 | EXPORT_SYMBOL_GPL(kvm_define_shared_msr); |
| 231 | |
| 232 | static void kvm_shared_msr_cpu_online(void) |
| 233 | { |
| 234 | unsigned i; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 235 | |
| 236 | for (i = 0; i < shared_msrs_global.nr; ++i) |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 237 | shared_msr_update(i, shared_msrs_global.msrs[i]); |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 238 | } |
| 239 | |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 240 | int kvm_set_shared_msr(unsigned slot, u64 value, u64 mask) |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 241 | { |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 242 | unsigned int cpu = smp_processor_id(); |
| 243 | struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu); |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 244 | int err; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 245 | |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 246 | if (((value ^ smsr->values[slot].curr) & mask) == 0) |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 247 | return 0; |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 248 | smsr->values[slot].curr = value; |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 249 | err = wrmsrl_safe(shared_msrs_global.msrs[slot], value); |
| 250 | if (err) |
| 251 | return 1; |
| 252 | |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 253 | if (!smsr->registered) { |
| 254 | smsr->urn.on_user_return = kvm_on_user_return; |
| 255 | user_return_notifier_register(&smsr->urn); |
| 256 | smsr->registered = true; |
| 257 | } |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 258 | return 0; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 259 | } |
| 260 | EXPORT_SYMBOL_GPL(kvm_set_shared_msr); |
| 261 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 262 | static void drop_user_return_notifiers(void) |
Avi Kivity | 3548bab | 2009-11-28 14:18:47 +0200 | [diff] [blame] | 263 | { |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 264 | unsigned int cpu = smp_processor_id(); |
| 265 | struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu); |
Avi Kivity | 3548bab | 2009-11-28 14:18:47 +0200 | [diff] [blame] | 266 | |
| 267 | if (smsr->registered) |
| 268 | kvm_on_user_return(&smsr->urn); |
| 269 | } |
| 270 | |
Carsten Otte | 6866b83 | 2007-10-29 16:09:10 +0100 | [diff] [blame] | 271 | u64 kvm_get_apic_base(struct kvm_vcpu *vcpu) |
| 272 | { |
Gleb Natapov | 8a5a87d | 2012-08-05 15:58:26 +0300 | [diff] [blame] | 273 | return vcpu->arch.apic_base; |
Carsten Otte | 6866b83 | 2007-10-29 16:09:10 +0100 | [diff] [blame] | 274 | } |
| 275 | EXPORT_SYMBOL_GPL(kvm_get_apic_base); |
| 276 | |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 277 | int kvm_set_apic_base(struct kvm_vcpu *vcpu, struct msr_data *msr_info) |
Carsten Otte | 6866b83 | 2007-10-29 16:09:10 +0100 | [diff] [blame] | 278 | { |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 279 | u64 old_state = vcpu->arch.apic_base & |
| 280 | (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE); |
| 281 | u64 new_state = msr_info->data & |
| 282 | (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE); |
| 283 | u64 reserved_bits = ((~0ULL) << cpuid_maxphyaddr(vcpu)) | |
| 284 | 0x2ff | (guest_cpuid_has_x2apic(vcpu) ? 0 : X2APIC_ENABLE); |
| 285 | |
| 286 | if (!msr_info->host_initiated && |
| 287 | ((msr_info->data & reserved_bits) != 0 || |
| 288 | new_state == X2APIC_ENABLE || |
| 289 | (new_state == MSR_IA32_APICBASE_ENABLE && |
| 290 | old_state == (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE)) || |
| 291 | (new_state == (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE) && |
| 292 | old_state == 0))) |
| 293 | return 1; |
| 294 | |
| 295 | kvm_lapic_set_base(vcpu, msr_info->data); |
| 296 | return 0; |
Carsten Otte | 6866b83 | 2007-10-29 16:09:10 +0100 | [diff] [blame] | 297 | } |
| 298 | EXPORT_SYMBOL_GPL(kvm_set_apic_base); |
| 299 | |
Andi Kleen | 2605fc2 | 2014-05-02 00:44:37 +0200 | [diff] [blame] | 300 | asmlinkage __visible void kvm_spurious_fault(void) |
Geoff Levand | e3ba45b | 2013-04-05 19:20:30 +0000 | [diff] [blame] | 301 | { |
| 302 | /* Fault while not rebooting. We want the trace. */ |
| 303 | BUG(); |
| 304 | } |
| 305 | EXPORT_SYMBOL_GPL(kvm_spurious_fault); |
| 306 | |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 307 | #define EXCPT_BENIGN 0 |
| 308 | #define EXCPT_CONTRIBUTORY 1 |
| 309 | #define EXCPT_PF 2 |
| 310 | |
| 311 | static int exception_class(int vector) |
| 312 | { |
| 313 | switch (vector) { |
| 314 | case PF_VECTOR: |
| 315 | return EXCPT_PF; |
| 316 | case DE_VECTOR: |
| 317 | case TS_VECTOR: |
| 318 | case NP_VECTOR: |
| 319 | case SS_VECTOR: |
| 320 | case GP_VECTOR: |
| 321 | return EXCPT_CONTRIBUTORY; |
| 322 | default: |
| 323 | break; |
| 324 | } |
| 325 | return EXCPT_BENIGN; |
| 326 | } |
| 327 | |
Nadav Amit | d6e8c85 | 2014-07-24 14:51:24 +0300 | [diff] [blame] | 328 | #define EXCPT_FAULT 0 |
| 329 | #define EXCPT_TRAP 1 |
| 330 | #define EXCPT_ABORT 2 |
| 331 | #define EXCPT_INTERRUPT 3 |
| 332 | |
| 333 | static int exception_type(int vector) |
| 334 | { |
| 335 | unsigned int mask; |
| 336 | |
| 337 | if (WARN_ON(vector > 31 || vector == NMI_VECTOR)) |
| 338 | return EXCPT_INTERRUPT; |
| 339 | |
| 340 | mask = 1 << vector; |
| 341 | |
| 342 | /* #DB is trap, as instruction watchpoints are handled elsewhere */ |
| 343 | if (mask & ((1 << DB_VECTOR) | (1 << BP_VECTOR) | (1 << OF_VECTOR))) |
| 344 | return EXCPT_TRAP; |
| 345 | |
| 346 | if (mask & ((1 << DF_VECTOR) | (1 << MC_VECTOR))) |
| 347 | return EXCPT_ABORT; |
| 348 | |
| 349 | /* Reserved exceptions will result in fault */ |
| 350 | return EXCPT_FAULT; |
| 351 | } |
| 352 | |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 353 | static void kvm_multiple_exception(struct kvm_vcpu *vcpu, |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 354 | unsigned nr, bool has_error, u32 error_code, |
| 355 | bool reinject) |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 356 | { |
| 357 | u32 prev_nr; |
| 358 | int class1, class2; |
| 359 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 360 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 361 | |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 362 | if (!vcpu->arch.exception.pending) { |
| 363 | queue: |
Nadav Amit | 3ffb246 | 2014-11-02 11:54:42 +0200 | [diff] [blame] | 364 | if (has_error && !is_protmode(vcpu)) |
| 365 | has_error = false; |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 366 | vcpu->arch.exception.pending = true; |
| 367 | vcpu->arch.exception.has_error_code = has_error; |
| 368 | vcpu->arch.exception.nr = nr; |
| 369 | vcpu->arch.exception.error_code = error_code; |
Joerg Roedel | 3f0fd29 | 2010-05-05 16:04:41 +0200 | [diff] [blame] | 370 | vcpu->arch.exception.reinject = reinject; |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 371 | return; |
| 372 | } |
| 373 | |
| 374 | /* to check exception */ |
| 375 | prev_nr = vcpu->arch.exception.nr; |
| 376 | if (prev_nr == DF_VECTOR) { |
| 377 | /* triple fault -> shutdown */ |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 378 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 379 | return; |
| 380 | } |
| 381 | class1 = exception_class(prev_nr); |
| 382 | class2 = exception_class(nr); |
| 383 | if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY) |
| 384 | || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) { |
| 385 | /* generate double fault per SDM Table 5-5 */ |
| 386 | vcpu->arch.exception.pending = true; |
| 387 | vcpu->arch.exception.has_error_code = true; |
| 388 | vcpu->arch.exception.nr = DF_VECTOR; |
| 389 | vcpu->arch.exception.error_code = 0; |
| 390 | } else |
| 391 | /* replace previous exception with a new one in a hope |
| 392 | that instruction re-execution will regenerate lost |
| 393 | exception */ |
| 394 | goto queue; |
| 395 | } |
| 396 | |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 397 | void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr) |
| 398 | { |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 399 | kvm_multiple_exception(vcpu, nr, false, 0, false); |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 400 | } |
| 401 | EXPORT_SYMBOL_GPL(kvm_queue_exception); |
| 402 | |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 403 | void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr) |
| 404 | { |
| 405 | kvm_multiple_exception(vcpu, nr, false, 0, true); |
| 406 | } |
| 407 | EXPORT_SYMBOL_GPL(kvm_requeue_exception); |
| 408 | |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 409 | void kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err) |
Avi Kivity | c3c91fe | 2007-11-25 14:04:58 +0200 | [diff] [blame] | 410 | { |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 411 | if (err) |
| 412 | kvm_inject_gp(vcpu, 0); |
| 413 | else |
| 414 | kvm_x86_ops->skip_emulated_instruction(vcpu); |
| 415 | } |
| 416 | EXPORT_SYMBOL_GPL(kvm_complete_insn_gp); |
Joerg Roedel | 8df25a3 | 2010-09-10 17:30:46 +0200 | [diff] [blame] | 417 | |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 418 | void kvm_inject_page_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault) |
Avi Kivity | c3c91fe | 2007-11-25 14:04:58 +0200 | [diff] [blame] | 419 | { |
Avi Kivity | c3c91fe | 2007-11-25 14:04:58 +0200 | [diff] [blame] | 420 | ++vcpu->stat.pf_guest; |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 421 | vcpu->arch.cr2 = fault->address; |
| 422 | kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code); |
Avi Kivity | c3c91fe | 2007-11-25 14:04:58 +0200 | [diff] [blame] | 423 | } |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 424 | EXPORT_SYMBOL_GPL(kvm_inject_page_fault); |
Avi Kivity | c3c91fe | 2007-11-25 14:04:58 +0200 | [diff] [blame] | 425 | |
Paolo Bonzini | ef54bcf | 2014-09-04 19:46:15 +0200 | [diff] [blame] | 426 | static bool kvm_propagate_fault(struct kvm_vcpu *vcpu, struct x86_exception *fault) |
Joerg Roedel | d4f8cf6 | 2010-09-10 17:30:55 +0200 | [diff] [blame] | 427 | { |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 428 | if (mmu_is_nested(vcpu) && !fault->nested_page_fault) |
| 429 | vcpu->arch.nested_mmu.inject_page_fault(vcpu, fault); |
Joerg Roedel | d4f8cf6 | 2010-09-10 17:30:55 +0200 | [diff] [blame] | 430 | else |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 431 | vcpu->arch.mmu.inject_page_fault(vcpu, fault); |
Paolo Bonzini | ef54bcf | 2014-09-04 19:46:15 +0200 | [diff] [blame] | 432 | |
| 433 | return fault->nested_page_fault; |
Joerg Roedel | d4f8cf6 | 2010-09-10 17:30:55 +0200 | [diff] [blame] | 434 | } |
| 435 | |
Sheng Yang | 3419ffc | 2008-05-15 09:52:48 +0800 | [diff] [blame] | 436 | void kvm_inject_nmi(struct kvm_vcpu *vcpu) |
| 437 | { |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 438 | atomic_inc(&vcpu->arch.nmi_queued); |
| 439 | kvm_make_request(KVM_REQ_NMI, vcpu); |
Sheng Yang | 3419ffc | 2008-05-15 09:52:48 +0800 | [diff] [blame] | 440 | } |
| 441 | EXPORT_SYMBOL_GPL(kvm_inject_nmi); |
| 442 | |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 443 | void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code) |
| 444 | { |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 445 | kvm_multiple_exception(vcpu, nr, true, error_code, false); |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 446 | } |
| 447 | EXPORT_SYMBOL_GPL(kvm_queue_exception_e); |
| 448 | |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 449 | void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code) |
| 450 | { |
| 451 | kvm_multiple_exception(vcpu, nr, true, error_code, true); |
| 452 | } |
| 453 | EXPORT_SYMBOL_GPL(kvm_requeue_exception_e); |
| 454 | |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 455 | /* |
Avi Kivity | 0a79b00 | 2009-09-01 12:03:25 +0300 | [diff] [blame] | 456 | * Checks if cpl <= required_cpl; if true, return true. Otherwise queue |
| 457 | * a #GP and return false. |
| 458 | */ |
| 459 | bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl) |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 460 | { |
Avi Kivity | 0a79b00 | 2009-09-01 12:03:25 +0300 | [diff] [blame] | 461 | if (kvm_x86_ops->get_cpl(vcpu) <= required_cpl) |
| 462 | return true; |
| 463 | kvm_queue_exception_e(vcpu, GP_VECTOR, 0); |
| 464 | return false; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 465 | } |
Avi Kivity | 0a79b00 | 2009-09-01 12:03:25 +0300 | [diff] [blame] | 466 | EXPORT_SYMBOL_GPL(kvm_require_cpl); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 467 | |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 468 | bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr) |
| 469 | { |
| 470 | if ((dr != 4 && dr != 5) || !kvm_read_cr4_bits(vcpu, X86_CR4_DE)) |
| 471 | return true; |
| 472 | |
| 473 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 474 | return false; |
| 475 | } |
| 476 | EXPORT_SYMBOL_GPL(kvm_require_dr); |
| 477 | |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 478 | /* |
Joerg Roedel | ec92fe4 | 2010-09-10 17:30:51 +0200 | [diff] [blame] | 479 | * This function will be used to read from the physical memory of the currently |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 480 | * running guest. The difference to kvm_vcpu_read_guest_page is that this function |
Joerg Roedel | ec92fe4 | 2010-09-10 17:30:51 +0200 | [diff] [blame] | 481 | * can read from guest physical or from the guest's guest physical memory. |
| 482 | */ |
| 483 | int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, |
| 484 | gfn_t ngfn, void *data, int offset, int len, |
| 485 | u32 access) |
| 486 | { |
Paolo Bonzini | 54987b7 | 2014-09-02 13:23:06 +0200 | [diff] [blame] | 487 | struct x86_exception exception; |
Joerg Roedel | ec92fe4 | 2010-09-10 17:30:51 +0200 | [diff] [blame] | 488 | gfn_t real_gfn; |
| 489 | gpa_t ngpa; |
| 490 | |
| 491 | ngpa = gfn_to_gpa(ngfn); |
Paolo Bonzini | 54987b7 | 2014-09-02 13:23:06 +0200 | [diff] [blame] | 492 | real_gfn = mmu->translate_gpa(vcpu, ngpa, access, &exception); |
Joerg Roedel | ec92fe4 | 2010-09-10 17:30:51 +0200 | [diff] [blame] | 493 | if (real_gfn == UNMAPPED_GVA) |
| 494 | return -EFAULT; |
| 495 | |
| 496 | real_gfn = gpa_to_gfn(real_gfn); |
| 497 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 498 | return kvm_vcpu_read_guest_page(vcpu, real_gfn, data, offset, len); |
Joerg Roedel | ec92fe4 | 2010-09-10 17:30:51 +0200 | [diff] [blame] | 499 | } |
| 500 | EXPORT_SYMBOL_GPL(kvm_read_guest_page_mmu); |
| 501 | |
Fengguang Wu | 69b0049 | 2015-01-19 22:33:39 +0800 | [diff] [blame] | 502 | static int kvm_read_nested_guest_page(struct kvm_vcpu *vcpu, gfn_t gfn, |
Joerg Roedel | 3d06b8b | 2010-09-10 17:30:53 +0200 | [diff] [blame] | 503 | void *data, int offset, int len, u32 access) |
| 504 | { |
| 505 | return kvm_read_guest_page_mmu(vcpu, vcpu->arch.walk_mmu, gfn, |
| 506 | data, offset, len, access); |
| 507 | } |
| 508 | |
Joerg Roedel | ec92fe4 | 2010-09-10 17:30:51 +0200 | [diff] [blame] | 509 | /* |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 510 | * Load the pae pdptrs. Return true is they are all valid. |
| 511 | */ |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 512 | int load_pdptrs(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, unsigned long cr3) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 513 | { |
| 514 | gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT; |
| 515 | unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2; |
| 516 | int i; |
| 517 | int ret; |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 518 | u64 pdpte[ARRAY_SIZE(mmu->pdptrs)]; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 519 | |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 520 | ret = kvm_read_guest_page_mmu(vcpu, mmu, pdpt_gfn, pdpte, |
| 521 | offset * sizeof(u64), sizeof(pdpte), |
| 522 | PFERR_USER_MASK|PFERR_WRITE_MASK); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 523 | if (ret < 0) { |
| 524 | ret = 0; |
| 525 | goto out; |
| 526 | } |
| 527 | for (i = 0; i < ARRAY_SIZE(pdpte); ++i) { |
Avi Kivity | 43a3795 | 2009-06-10 14:12:05 +0300 | [diff] [blame] | 528 | if (is_present_gpte(pdpte[i]) && |
Dong, Eddie | 20c466b | 2009-03-31 23:03:45 +0800 | [diff] [blame] | 529 | (pdpte[i] & vcpu->arch.mmu.rsvd_bits_mask[0][2])) { |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 530 | ret = 0; |
| 531 | goto out; |
| 532 | } |
| 533 | } |
| 534 | ret = 1; |
| 535 | |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 536 | memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs)); |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 537 | __set_bit(VCPU_EXREG_PDPTR, |
| 538 | (unsigned long *)&vcpu->arch.regs_avail); |
| 539 | __set_bit(VCPU_EXREG_PDPTR, |
| 540 | (unsigned long *)&vcpu->arch.regs_dirty); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 541 | out: |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 542 | |
| 543 | return ret; |
| 544 | } |
Joerg Roedel | cc4b687 | 2008-02-07 13:47:43 +0100 | [diff] [blame] | 545 | EXPORT_SYMBOL_GPL(load_pdptrs); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 546 | |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 547 | static bool pdptrs_changed(struct kvm_vcpu *vcpu) |
| 548 | { |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 549 | u64 pdpte[ARRAY_SIZE(vcpu->arch.walk_mmu->pdptrs)]; |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 550 | bool changed = true; |
Joerg Roedel | 3d06b8b | 2010-09-10 17:30:53 +0200 | [diff] [blame] | 551 | int offset; |
| 552 | gfn_t gfn; |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 553 | int r; |
| 554 | |
| 555 | if (is_long_mode(vcpu) || !is_pae(vcpu)) |
| 556 | return false; |
| 557 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 558 | if (!test_bit(VCPU_EXREG_PDPTR, |
| 559 | (unsigned long *)&vcpu->arch.regs_avail)) |
| 560 | return true; |
| 561 | |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 562 | gfn = (kvm_read_cr3(vcpu) & ~31u) >> PAGE_SHIFT; |
| 563 | offset = (kvm_read_cr3(vcpu) & ~31u) & (PAGE_SIZE - 1); |
Joerg Roedel | 3d06b8b | 2010-09-10 17:30:53 +0200 | [diff] [blame] | 564 | r = kvm_read_nested_guest_page(vcpu, gfn, pdpte, offset, sizeof(pdpte), |
| 565 | PFERR_USER_MASK | PFERR_WRITE_MASK); |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 566 | if (r < 0) |
| 567 | goto out; |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 568 | changed = memcmp(pdpte, vcpu->arch.walk_mmu->pdptrs, sizeof(pdpte)) != 0; |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 569 | out: |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 570 | |
| 571 | return changed; |
| 572 | } |
| 573 | |
Avi Kivity | 49a9b07 | 2010-06-10 17:02:14 +0300 | [diff] [blame] | 574 | int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 575 | { |
Sheng Yang | aad8270 | 2010-05-12 16:40:42 +0800 | [diff] [blame] | 576 | unsigned long old_cr0 = kvm_read_cr0(vcpu); |
Xiao Guangrong | d81135a | 2015-05-13 14:42:28 +0800 | [diff] [blame] | 577 | unsigned long update_bits = X86_CR0_PG | X86_CR0_WP; |
Sheng Yang | aad8270 | 2010-05-12 16:40:42 +0800 | [diff] [blame] | 578 | |
Avi Kivity | f9a48e6 | 2010-01-06 19:10:22 +0200 | [diff] [blame] | 579 | cr0 |= X86_CR0_ET; |
| 580 | |
Gleb Natapov | ab34482 | 2010-01-21 15:28:46 +0200 | [diff] [blame] | 581 | #ifdef CONFIG_X86_64 |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 582 | if (cr0 & 0xffffffff00000000UL) |
| 583 | return 1; |
Gleb Natapov | ab34482 | 2010-01-21 15:28:46 +0200 | [diff] [blame] | 584 | #endif |
| 585 | |
| 586 | cr0 &= ~CR0_RESERVED_BITS; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 587 | |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 588 | if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD)) |
| 589 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 590 | |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 591 | if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE)) |
| 592 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 593 | |
| 594 | if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) { |
| 595 | #ifdef CONFIG_X86_64 |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 596 | if ((vcpu->arch.efer & EFER_LME)) { |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 597 | int cs_db, cs_l; |
| 598 | |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 599 | if (!is_pae(vcpu)) |
| 600 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 601 | kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l); |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 602 | if (cs_l) |
| 603 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 604 | } else |
| 605 | #endif |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 606 | if (is_pae(vcpu) && !load_pdptrs(vcpu, vcpu->arch.walk_mmu, |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 607 | kvm_read_cr3(vcpu))) |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 608 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 609 | } |
| 610 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 611 | if (!(cr0 & X86_CR0_PG) && kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE)) |
| 612 | return 1; |
| 613 | |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 614 | kvm_x86_ops->set_cr0(vcpu, cr0); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 615 | |
Lai Jiangshan | d170c41 | 2011-02-21 11:21:30 +0800 | [diff] [blame] | 616 | if ((cr0 ^ old_cr0) & X86_CR0_PG) { |
Xiao Guangrong | e5f3f02 | 2010-11-12 14:47:01 +0800 | [diff] [blame] | 617 | kvm_clear_async_pf_completion_queue(vcpu); |
Lai Jiangshan | d170c41 | 2011-02-21 11:21:30 +0800 | [diff] [blame] | 618 | kvm_async_pf_hash_reset(vcpu); |
| 619 | } |
Xiao Guangrong | e5f3f02 | 2010-11-12 14:47:01 +0800 | [diff] [blame] | 620 | |
Sheng Yang | aad8270 | 2010-05-12 16:40:42 +0800 | [diff] [blame] | 621 | if ((cr0 ^ old_cr0) & update_bits) |
| 622 | kvm_mmu_reset_context(vcpu); |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 623 | |
| 624 | if ((cr0 ^ old_cr0) & X86_CR0_CD) |
| 625 | kvm_zap_gfn_range(vcpu->kvm, 0, ~0ULL); |
| 626 | |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 627 | return 0; |
| 628 | } |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 629 | EXPORT_SYMBOL_GPL(kvm_set_cr0); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 630 | |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 631 | void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 632 | { |
Avi Kivity | 49a9b07 | 2010-06-10 17:02:14 +0300 | [diff] [blame] | 633 | (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f)); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 634 | } |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 635 | EXPORT_SYMBOL_GPL(kvm_lmsw); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 636 | |
Marcelo Tosatti | 42bdf99 | 2013-04-15 23:30:13 -0300 | [diff] [blame] | 637 | static void kvm_load_guest_xcr0(struct kvm_vcpu *vcpu) |
| 638 | { |
| 639 | if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE) && |
| 640 | !vcpu->guest_xcr0_loaded) { |
| 641 | /* kvm_set_xcr() also depends on this */ |
| 642 | xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0); |
| 643 | vcpu->guest_xcr0_loaded = 1; |
| 644 | } |
| 645 | } |
| 646 | |
| 647 | static void kvm_put_guest_xcr0(struct kvm_vcpu *vcpu) |
| 648 | { |
| 649 | if (vcpu->guest_xcr0_loaded) { |
| 650 | if (vcpu->arch.xcr0 != host_xcr0) |
| 651 | xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0); |
| 652 | vcpu->guest_xcr0_loaded = 0; |
| 653 | } |
| 654 | } |
| 655 | |
Fengguang Wu | 69b0049 | 2015-01-19 22:33:39 +0800 | [diff] [blame] | 656 | static int __kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr) |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 657 | { |
Liu, Jinsong | 56c103e | 2014-02-21 17:39:02 +0000 | [diff] [blame] | 658 | u64 xcr0 = xcr; |
| 659 | u64 old_xcr0 = vcpu->arch.xcr0; |
Paolo Bonzini | 46c34cb | 2013-10-17 16:50:46 +0200 | [diff] [blame] | 660 | u64 valid_bits; |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 661 | |
| 662 | /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */ |
| 663 | if (index != XCR_XFEATURE_ENABLED_MASK) |
| 664 | return 1; |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 665 | if (!(xcr0 & XSTATE_FP)) |
| 666 | return 1; |
| 667 | if ((xcr0 & XSTATE_YMM) && !(xcr0 & XSTATE_SSE)) |
| 668 | return 1; |
Paolo Bonzini | 46c34cb | 2013-10-17 16:50:46 +0200 | [diff] [blame] | 669 | |
| 670 | /* |
| 671 | * Do not allow the guest to set bits that we do not support |
| 672 | * saving. However, xcr0 bit 0 is always set, even if the |
| 673 | * emulated CPU does not support XSAVE (see fx_init). |
| 674 | */ |
| 675 | valid_bits = vcpu->arch.guest_supported_xcr0 | XSTATE_FP; |
| 676 | if (xcr0 & ~valid_bits) |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 677 | return 1; |
Paolo Bonzini | 46c34cb | 2013-10-17 16:50:46 +0200 | [diff] [blame] | 678 | |
Liu, Jinsong | 390bd52 | 2014-02-24 10:58:09 +0000 | [diff] [blame] | 679 | if ((!(xcr0 & XSTATE_BNDREGS)) != (!(xcr0 & XSTATE_BNDCSR))) |
| 680 | return 1; |
| 681 | |
Chao Peng | 612263b | 2014-10-22 17:35:24 +0800 | [diff] [blame] | 682 | if (xcr0 & XSTATE_AVX512) { |
| 683 | if (!(xcr0 & XSTATE_YMM)) |
| 684 | return 1; |
| 685 | if ((xcr0 & XSTATE_AVX512) != XSTATE_AVX512) |
| 686 | return 1; |
| 687 | } |
Marcelo Tosatti | 42bdf99 | 2013-04-15 23:30:13 -0300 | [diff] [blame] | 688 | kvm_put_guest_xcr0(vcpu); |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 689 | vcpu->arch.xcr0 = xcr0; |
Liu, Jinsong | 56c103e | 2014-02-21 17:39:02 +0000 | [diff] [blame] | 690 | |
| 691 | if ((xcr0 ^ old_xcr0) & XSTATE_EXTEND_MASK) |
| 692 | kvm_update_cpuid(vcpu); |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 693 | return 0; |
| 694 | } |
| 695 | |
| 696 | int kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr) |
| 697 | { |
Zhanghaoyu (A) | 764bcbc | 2013-06-14 07:36:13 +0000 | [diff] [blame] | 698 | if (kvm_x86_ops->get_cpl(vcpu) != 0 || |
| 699 | __kvm_set_xcr(vcpu, index, xcr)) { |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 700 | kvm_inject_gp(vcpu, 0); |
| 701 | return 1; |
| 702 | } |
| 703 | return 0; |
| 704 | } |
| 705 | EXPORT_SYMBOL_GPL(kvm_set_xcr); |
| 706 | |
Avi Kivity | a83b29c | 2010-06-10 17:02:15 +0300 | [diff] [blame] | 707 | int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 708 | { |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 709 | unsigned long old_cr4 = kvm_read_cr4(vcpu); |
Xiao Guangrong | 0be0226 | 2015-05-11 22:55:21 +0800 | [diff] [blame] | 710 | unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE | |
| 711 | X86_CR4_SMEP | X86_CR4_SMAP; |
| 712 | |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 713 | if (cr4 & CR4_RESERVED_BITS) |
| 714 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 715 | |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 716 | if (!guest_cpuid_has_xsave(vcpu) && (cr4 & X86_CR4_OSXSAVE)) |
| 717 | return 1; |
| 718 | |
Yang, Wei Y | c68b734 | 2011-06-03 11:13:42 +0800 | [diff] [blame] | 719 | if (!guest_cpuid_has_smep(vcpu) && (cr4 & X86_CR4_SMEP)) |
| 720 | return 1; |
| 721 | |
Feng Wu | 97ec8c0 | 2014-04-01 17:46:34 +0800 | [diff] [blame] | 722 | if (!guest_cpuid_has_smap(vcpu) && (cr4 & X86_CR4_SMAP)) |
| 723 | return 1; |
| 724 | |
H. Peter Anvin | afcbf13 | 2013-04-27 16:37:47 -0700 | [diff] [blame] | 725 | if (!guest_cpuid_has_fsgsbase(vcpu) && (cr4 & X86_CR4_FSGSBASE)) |
Yang, Wei | 74dc2b4 | 2011-06-14 20:10:18 +0800 | [diff] [blame] | 726 | return 1; |
| 727 | |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 728 | if (is_long_mode(vcpu)) { |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 729 | if (!(cr4 & X86_CR4_PAE)) |
| 730 | return 1; |
Avi Kivity | a2edf57 | 2009-05-24 22:19:00 +0300 | [diff] [blame] | 731 | } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE) |
| 732 | && ((cr4 ^ old_cr4) & pdptr_bits) |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 733 | && !load_pdptrs(vcpu, vcpu->arch.walk_mmu, |
| 734 | kvm_read_cr3(vcpu))) |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 735 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 736 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 737 | if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) { |
| 738 | if (!guest_cpuid_has_pcid(vcpu)) |
| 739 | return 1; |
| 740 | |
| 741 | /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */ |
| 742 | if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu)) |
| 743 | return 1; |
| 744 | } |
| 745 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 746 | if (kvm_x86_ops->set_cr4(vcpu, cr4)) |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 747 | return 1; |
| 748 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 749 | if (((cr4 ^ old_cr4) & pdptr_bits) || |
| 750 | (!(cr4 & X86_CR4_PCIDE) && (old_cr4 & X86_CR4_PCIDE))) |
Sheng Yang | aad8270 | 2010-05-12 16:40:42 +0800 | [diff] [blame] | 751 | kvm_mmu_reset_context(vcpu); |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 752 | |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 753 | if ((cr4 ^ old_cr4) & X86_CR4_OSXSAVE) |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 754 | kvm_update_cpuid(vcpu); |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 755 | |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 756 | return 0; |
| 757 | } |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 758 | EXPORT_SYMBOL_GPL(kvm_set_cr4); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 759 | |
Avi Kivity | 2390218 | 2010-06-10 17:02:16 +0300 | [diff] [blame] | 760 | int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 761 | { |
Paolo Bonzini | ac14623 | 2014-11-10 13:53:25 +0100 | [diff] [blame] | 762 | #ifdef CONFIG_X86_64 |
Nadav Amit | 9d88fca | 2014-11-02 11:54:52 +0200 | [diff] [blame] | 763 | cr3 &= ~CR3_PCID_INVD; |
Paolo Bonzini | ac14623 | 2014-11-10 13:53:25 +0100 | [diff] [blame] | 764 | #endif |
Nadav Amit | 9d88fca | 2014-11-02 11:54:52 +0200 | [diff] [blame] | 765 | |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 766 | if (cr3 == kvm_read_cr3(vcpu) && !pdptrs_changed(vcpu)) { |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 767 | kvm_mmu_sync_roots(vcpu); |
Liang Chen | 77c3913 | 2014-09-18 12:38:37 -0400 | [diff] [blame] | 768 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 769 | return 0; |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 770 | } |
| 771 | |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 772 | if (is_long_mode(vcpu)) { |
Jan Kiszka | d9f89b8 | 2014-05-10 09:24:34 +0200 | [diff] [blame] | 773 | if (cr3 & CR3_L_MODE_RESERVED_BITS) |
| 774 | return 1; |
| 775 | } else if (is_pae(vcpu) && is_paging(vcpu) && |
| 776 | !load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3)) |
Nadav Amit | 346874c | 2014-04-18 03:35:09 +0300 | [diff] [blame] | 777 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 778 | |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 779 | vcpu->arch.cr3 = cr3; |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 780 | __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail); |
Paolo Bonzini | d8d173d | 2013-10-02 16:56:11 +0200 | [diff] [blame] | 781 | kvm_mmu_new_cr3(vcpu); |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 782 | return 0; |
| 783 | } |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 784 | EXPORT_SYMBOL_GPL(kvm_set_cr3); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 785 | |
Andre Przywara | eea1cff | 2010-12-21 11:12:00 +0100 | [diff] [blame] | 786 | int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 787 | { |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 788 | if (cr8 & CR8_RESERVED_BITS) |
| 789 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 790 | if (irqchip_in_kernel(vcpu->kvm)) |
| 791 | kvm_lapic_set_tpr(vcpu, cr8); |
| 792 | else |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 793 | vcpu->arch.cr8 = cr8; |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 794 | return 0; |
| 795 | } |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 796 | EXPORT_SYMBOL_GPL(kvm_set_cr8); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 797 | |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 798 | unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 799 | { |
| 800 | if (irqchip_in_kernel(vcpu->kvm)) |
| 801 | return kvm_lapic_get_cr8(vcpu); |
| 802 | else |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 803 | return vcpu->arch.cr8; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 804 | } |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 805 | EXPORT_SYMBOL_GPL(kvm_get_cr8); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 806 | |
Nadav Amit | ae561ed | 2015-04-02 03:10:37 +0300 | [diff] [blame] | 807 | static void kvm_update_dr0123(struct kvm_vcpu *vcpu) |
| 808 | { |
| 809 | int i; |
| 810 | |
| 811 | if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) { |
| 812 | for (i = 0; i < KVM_NR_DB_REGS; i++) |
| 813 | vcpu->arch.eff_db[i] = vcpu->arch.db[i]; |
| 814 | vcpu->arch.switch_db_regs |= KVM_DEBUGREG_RELOAD; |
| 815 | } |
| 816 | } |
| 817 | |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 818 | static void kvm_update_dr6(struct kvm_vcpu *vcpu) |
| 819 | { |
| 820 | if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) |
| 821 | kvm_x86_ops->set_dr6(vcpu, vcpu->arch.dr6); |
| 822 | } |
| 823 | |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 824 | static void kvm_update_dr7(struct kvm_vcpu *vcpu) |
| 825 | { |
| 826 | unsigned long dr7; |
| 827 | |
| 828 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) |
| 829 | dr7 = vcpu->arch.guest_debug_dr7; |
| 830 | else |
| 831 | dr7 = vcpu->arch.dr7; |
| 832 | kvm_x86_ops->set_dr7(vcpu, dr7); |
Paolo Bonzini | 360b948 | 2014-02-21 09:55:56 +0100 | [diff] [blame] | 833 | vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED; |
| 834 | if (dr7 & DR7_BP_EN_MASK) |
| 835 | vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED; |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 836 | } |
| 837 | |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 838 | static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu) |
| 839 | { |
| 840 | u64 fixed = DR6_FIXED_1; |
| 841 | |
| 842 | if (!guest_cpuid_has_rtm(vcpu)) |
| 843 | fixed |= DR6_RTM; |
| 844 | return fixed; |
| 845 | } |
| 846 | |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 847 | static int __kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val) |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 848 | { |
| 849 | switch (dr) { |
| 850 | case 0 ... 3: |
| 851 | vcpu->arch.db[dr] = val; |
| 852 | if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) |
| 853 | vcpu->arch.eff_db[dr] = val; |
| 854 | break; |
| 855 | case 4: |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 856 | /* fall through */ |
| 857 | case 6: |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 858 | if (val & 0xffffffff00000000ULL) |
| 859 | return -1; /* #GP */ |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 860 | vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu); |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 861 | kvm_update_dr6(vcpu); |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 862 | break; |
| 863 | case 5: |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 864 | /* fall through */ |
| 865 | default: /* 7 */ |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 866 | if (val & 0xffffffff00000000ULL) |
| 867 | return -1; /* #GP */ |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 868 | vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1; |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 869 | kvm_update_dr7(vcpu); |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 870 | break; |
| 871 | } |
| 872 | |
| 873 | return 0; |
| 874 | } |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 875 | |
| 876 | int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val) |
| 877 | { |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 878 | if (__kvm_set_dr(vcpu, dr, val)) { |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 879 | kvm_inject_gp(vcpu, 0); |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 880 | return 1; |
| 881 | } |
| 882 | return 0; |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 883 | } |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 884 | EXPORT_SYMBOL_GPL(kvm_set_dr); |
| 885 | |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 886 | int kvm_get_dr(struct kvm_vcpu *vcpu, int dr, unsigned long *val) |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 887 | { |
| 888 | switch (dr) { |
| 889 | case 0 ... 3: |
| 890 | *val = vcpu->arch.db[dr]; |
| 891 | break; |
| 892 | case 4: |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 893 | /* fall through */ |
| 894 | case 6: |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 895 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) |
| 896 | *val = vcpu->arch.dr6; |
| 897 | else |
| 898 | *val = kvm_x86_ops->get_dr6(vcpu); |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 899 | break; |
| 900 | case 5: |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 901 | /* fall through */ |
| 902 | default: /* 7 */ |
| 903 | *val = vcpu->arch.dr7; |
| 904 | break; |
| 905 | } |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 906 | return 0; |
| 907 | } |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 908 | EXPORT_SYMBOL_GPL(kvm_get_dr); |
| 909 | |
Avi Kivity | 022cd0e | 2011-11-10 14:57:23 +0200 | [diff] [blame] | 910 | bool kvm_rdpmc(struct kvm_vcpu *vcpu) |
| 911 | { |
| 912 | u32 ecx = kvm_register_read(vcpu, VCPU_REGS_RCX); |
| 913 | u64 data; |
| 914 | int err; |
| 915 | |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 916 | err = kvm_pmu_rdpmc(vcpu, ecx, &data); |
Avi Kivity | 022cd0e | 2011-11-10 14:57:23 +0200 | [diff] [blame] | 917 | if (err) |
| 918 | return err; |
| 919 | kvm_register_write(vcpu, VCPU_REGS_RAX, (u32)data); |
| 920 | kvm_register_write(vcpu, VCPU_REGS_RDX, data >> 32); |
| 921 | return err; |
| 922 | } |
| 923 | EXPORT_SYMBOL_GPL(kvm_rdpmc); |
| 924 | |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 925 | /* |
| 926 | * List of msr numbers which we expose to userspace through KVM_GET_MSRS |
| 927 | * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST. |
| 928 | * |
| 929 | * This list is modified at module load time to reflect the |
Glauber Costa | e3267cb | 2009-10-06 13:24:50 -0400 | [diff] [blame] | 930 | * capabilities of the host cpu. This capabilities test skips MSRs that are |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 931 | * kvm-specific. Those are put in emulated_msrs; filtering of emulated_msrs |
| 932 | * may depend on host virtualization features rather than host cpu features. |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 933 | */ |
Glauber Costa | e3267cb | 2009-10-06 13:24:50 -0400 | [diff] [blame] | 934 | |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 935 | static u32 msrs_to_save[] = { |
| 936 | MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP, |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 937 | MSR_STAR, |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 938 | #ifdef CONFIG_X86_64 |
| 939 | MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR, |
| 940 | #endif |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 941 | MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA, |
Liu, Jinsong | 0dd376e | 2014-02-24 10:56:53 +0000 | [diff] [blame] | 942 | MSR_IA32_FEATURE_CONTROL, MSR_IA32_BNDCFGS |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 943 | }; |
| 944 | |
| 945 | static unsigned num_msrs_to_save; |
| 946 | |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 947 | static u32 emulated_msrs[] = { |
| 948 | MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK, |
| 949 | MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW, |
| 950 | HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL, |
| 951 | HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC, |
| 952 | HV_X64_MSR_APIC_ASSIST_PAGE, MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME, |
| 953 | MSR_KVM_PV_EOI_EN, |
| 954 | |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 955 | MSR_IA32_TSC_ADJUST, |
Liu, Jinsong | a3e06bb | 2011-09-22 16:55:52 +0800 | [diff] [blame] | 956 | MSR_IA32_TSCDEADLINE, |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 957 | MSR_IA32_MISC_ENABLE, |
Avi Kivity | 908e75f | 2010-07-07 14:09:38 +0300 | [diff] [blame] | 958 | MSR_IA32_MCG_STATUS, |
| 959 | MSR_IA32_MCG_CTL, |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 960 | MSR_IA32_SMBASE, |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 961 | }; |
| 962 | |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 963 | static unsigned num_emulated_msrs; |
| 964 | |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 965 | bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer) |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 966 | { |
Roedel, Joerg | b69e8ca | 2010-05-06 11:38:43 +0200 | [diff] [blame] | 967 | if (efer & efer_reserved_bits) |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 968 | return false; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 969 | |
Alexander Graf | 1b2fd70 | 2009-02-02 16:23:51 +0100 | [diff] [blame] | 970 | if (efer & EFER_FFXSR) { |
| 971 | struct kvm_cpuid_entry2 *feat; |
| 972 | |
| 973 | feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0); |
Roedel, Joerg | b69e8ca | 2010-05-06 11:38:43 +0200 | [diff] [blame] | 974 | if (!feat || !(feat->edx & bit(X86_FEATURE_FXSR_OPT))) |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 975 | return false; |
Alexander Graf | 1b2fd70 | 2009-02-02 16:23:51 +0100 | [diff] [blame] | 976 | } |
| 977 | |
Alexander Graf | d801747 | 2008-11-25 20:17:11 +0100 | [diff] [blame] | 978 | if (efer & EFER_SVME) { |
| 979 | struct kvm_cpuid_entry2 *feat; |
| 980 | |
| 981 | feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0); |
Roedel, Joerg | b69e8ca | 2010-05-06 11:38:43 +0200 | [diff] [blame] | 982 | if (!feat || !(feat->ecx & bit(X86_FEATURE_SVM))) |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 983 | return false; |
Alexander Graf | d801747 | 2008-11-25 20:17:11 +0100 | [diff] [blame] | 984 | } |
| 985 | |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 986 | return true; |
| 987 | } |
| 988 | EXPORT_SYMBOL_GPL(kvm_valid_efer); |
| 989 | |
| 990 | static int set_efer(struct kvm_vcpu *vcpu, u64 efer) |
| 991 | { |
| 992 | u64 old_efer = vcpu->arch.efer; |
| 993 | |
| 994 | if (!kvm_valid_efer(vcpu, efer)) |
| 995 | return 1; |
| 996 | |
| 997 | if (is_paging(vcpu) |
| 998 | && (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME)) |
| 999 | return 1; |
| 1000 | |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1001 | efer &= ~EFER_LMA; |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 1002 | efer |= vcpu->arch.efer & EFER_LMA; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1003 | |
Sheng Yang | a3d204e | 2010-05-12 16:40:40 +0800 | [diff] [blame] | 1004 | kvm_x86_ops->set_efer(vcpu, efer); |
| 1005 | |
Sheng Yang | aad8270 | 2010-05-12 16:40:42 +0800 | [diff] [blame] | 1006 | /* Update reserved bits */ |
| 1007 | if ((efer ^ old_efer) & EFER_NX) |
| 1008 | kvm_mmu_reset_context(vcpu); |
| 1009 | |
Roedel, Joerg | b69e8ca | 2010-05-06 11:38:43 +0200 | [diff] [blame] | 1010 | return 0; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1011 | } |
| 1012 | |
Joerg Roedel | f2b4b7d | 2008-01-31 14:57:37 +0100 | [diff] [blame] | 1013 | void kvm_enable_efer_bits(u64 mask) |
| 1014 | { |
| 1015 | efer_reserved_bits &= ~mask; |
| 1016 | } |
| 1017 | EXPORT_SYMBOL_GPL(kvm_enable_efer_bits); |
| 1018 | |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1019 | /* |
| 1020 | * Writes msr value into into the appropriate "register". |
| 1021 | * Returns 0 on success, non-0 otherwise. |
| 1022 | * Assumes vcpu_load() was already called. |
| 1023 | */ |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 1024 | int kvm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr) |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1025 | { |
Nadav Amit | 854e8bb | 2014-09-16 03:24:05 +0300 | [diff] [blame] | 1026 | switch (msr->index) { |
| 1027 | case MSR_FS_BASE: |
| 1028 | case MSR_GS_BASE: |
| 1029 | case MSR_KERNEL_GS_BASE: |
| 1030 | case MSR_CSTAR: |
| 1031 | case MSR_LSTAR: |
| 1032 | if (is_noncanonical_address(msr->data)) |
| 1033 | return 1; |
| 1034 | break; |
| 1035 | case MSR_IA32_SYSENTER_EIP: |
| 1036 | case MSR_IA32_SYSENTER_ESP: |
| 1037 | /* |
| 1038 | * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if |
| 1039 | * non-canonical address is written on Intel but not on |
| 1040 | * AMD (which ignores the top 32-bits, because it does |
| 1041 | * not implement 64-bit SYSENTER). |
| 1042 | * |
| 1043 | * 64-bit code should hence be able to write a non-canonical |
| 1044 | * value on AMD. Making the address canonical ensures that |
| 1045 | * vmentry does not fail on Intel after writing a non-canonical |
| 1046 | * value, and that something deterministic happens if the guest |
| 1047 | * invokes 64-bit SYSENTER. |
| 1048 | */ |
| 1049 | msr->data = get_canonical(msr->data); |
| 1050 | } |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 1051 | return kvm_x86_ops->set_msr(vcpu, msr); |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1052 | } |
Nadav Amit | 854e8bb | 2014-09-16 03:24:05 +0300 | [diff] [blame] | 1053 | EXPORT_SYMBOL_GPL(kvm_set_msr); |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1054 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 1055 | /* |
| 1056 | * Adapt set_msr() to msr_io()'s calling convention |
| 1057 | */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 1058 | static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data) |
| 1059 | { |
| 1060 | struct msr_data msr; |
| 1061 | int r; |
| 1062 | |
| 1063 | msr.index = index; |
| 1064 | msr.host_initiated = true; |
| 1065 | r = kvm_get_msr(vcpu, &msr); |
| 1066 | if (r) |
| 1067 | return r; |
| 1068 | |
| 1069 | *data = msr.data; |
| 1070 | return 0; |
| 1071 | } |
| 1072 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 1073 | static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data) |
| 1074 | { |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 1075 | struct msr_data msr; |
| 1076 | |
| 1077 | msr.data = *data; |
| 1078 | msr.index = index; |
| 1079 | msr.host_initiated = true; |
| 1080 | return kvm_set_msr(vcpu, &msr); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 1081 | } |
| 1082 | |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1083 | #ifdef CONFIG_X86_64 |
| 1084 | struct pvclock_gtod_data { |
| 1085 | seqcount_t seq; |
| 1086 | |
| 1087 | struct { /* extract of a clocksource struct */ |
| 1088 | int vclock_mode; |
| 1089 | cycle_t cycle_last; |
| 1090 | cycle_t mask; |
| 1091 | u32 mult; |
| 1092 | u32 shift; |
| 1093 | } clock; |
| 1094 | |
Thomas Gleixner | cbcf2dd | 2014-07-16 21:04:54 +0000 | [diff] [blame] | 1095 | u64 boot_ns; |
| 1096 | u64 nsec_base; |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1097 | }; |
| 1098 | |
| 1099 | static struct pvclock_gtod_data pvclock_gtod_data; |
| 1100 | |
| 1101 | static void update_pvclock_gtod(struct timekeeper *tk) |
| 1102 | { |
| 1103 | struct pvclock_gtod_data *vdata = &pvclock_gtod_data; |
Thomas Gleixner | cbcf2dd | 2014-07-16 21:04:54 +0000 | [diff] [blame] | 1104 | u64 boot_ns; |
| 1105 | |
Peter Zijlstra | 876e788 | 2015-03-19 10:09:06 +0100 | [diff] [blame] | 1106 | boot_ns = ktime_to_ns(ktime_add(tk->tkr_mono.base, tk->offs_boot)); |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1107 | |
| 1108 | write_seqcount_begin(&vdata->seq); |
| 1109 | |
| 1110 | /* copy pvclock gtod data */ |
Peter Zijlstra | 876e788 | 2015-03-19 10:09:06 +0100 | [diff] [blame] | 1111 | vdata->clock.vclock_mode = tk->tkr_mono.clock->archdata.vclock_mode; |
| 1112 | vdata->clock.cycle_last = tk->tkr_mono.cycle_last; |
| 1113 | vdata->clock.mask = tk->tkr_mono.mask; |
| 1114 | vdata->clock.mult = tk->tkr_mono.mult; |
| 1115 | vdata->clock.shift = tk->tkr_mono.shift; |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1116 | |
Thomas Gleixner | cbcf2dd | 2014-07-16 21:04:54 +0000 | [diff] [blame] | 1117 | vdata->boot_ns = boot_ns; |
Peter Zijlstra | 876e788 | 2015-03-19 10:09:06 +0100 | [diff] [blame] | 1118 | vdata->nsec_base = tk->tkr_mono.xtime_nsec; |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1119 | |
| 1120 | write_seqcount_end(&vdata->seq); |
| 1121 | } |
| 1122 | #endif |
| 1123 | |
Nicholas Krause | bab5bb3 | 2015-01-01 22:05:18 -0500 | [diff] [blame] | 1124 | void kvm_set_pending_timer(struct kvm_vcpu *vcpu) |
| 1125 | { |
| 1126 | /* |
| 1127 | * Note: KVM_REQ_PENDING_TIMER is implicitly checked in |
| 1128 | * vcpu_enter_guest. This function is only called from |
| 1129 | * the physical CPU that is running vcpu. |
| 1130 | */ |
| 1131 | kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu); |
| 1132 | } |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1133 | |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1134 | static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock) |
| 1135 | { |
Avi Kivity | 9ed3c44 | 2010-05-04 15:00:37 +0300 | [diff] [blame] | 1136 | int version; |
| 1137 | int r; |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1138 | struct pvclock_wall_clock wc; |
Jason Wang | 923de3c | 2010-01-27 19:13:49 +0800 | [diff] [blame] | 1139 | struct timespec boot; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1140 | |
| 1141 | if (!wall_clock) |
| 1142 | return; |
| 1143 | |
Avi Kivity | 9ed3c44 | 2010-05-04 15:00:37 +0300 | [diff] [blame] | 1144 | r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version)); |
| 1145 | if (r) |
| 1146 | return; |
| 1147 | |
| 1148 | if (version & 1) |
| 1149 | ++version; /* first time write, random junk */ |
| 1150 | |
| 1151 | ++version; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1152 | |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1153 | kvm_write_guest(kvm, wall_clock, &version, sizeof(version)); |
| 1154 | |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1155 | /* |
| 1156 | * The guest calculates current wall clock time by adding |
Zachary Amsden | 34c238a | 2010-09-18 14:38:14 -1000 | [diff] [blame] | 1157 | * system time (updated by kvm_guest_time_update below) to the |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1158 | * wall clock specified here. guest system time equals host |
| 1159 | * system time for us, thus we must fill in host boot time here. |
| 1160 | */ |
Jason Wang | 923de3c | 2010-01-27 19:13:49 +0800 | [diff] [blame] | 1161 | getboottime(&boot); |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1162 | |
Bruce Rogers | 4b64866 | 2012-07-20 10:44:24 -0600 | [diff] [blame] | 1163 | if (kvm->arch.kvmclock_offset) { |
| 1164 | struct timespec ts = ns_to_timespec(kvm->arch.kvmclock_offset); |
| 1165 | boot = timespec_sub(boot, ts); |
| 1166 | } |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1167 | wc.sec = boot.tv_sec; |
| 1168 | wc.nsec = boot.tv_nsec; |
| 1169 | wc.version = version; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1170 | |
| 1171 | kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc)); |
| 1172 | |
| 1173 | version++; |
| 1174 | kvm_write_guest(kvm, wall_clock, &version, sizeof(version)); |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1175 | } |
| 1176 | |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1177 | static uint32_t div_frac(uint32_t dividend, uint32_t divisor) |
| 1178 | { |
| 1179 | uint32_t quotient, remainder; |
| 1180 | |
| 1181 | /* Don't try to replace with do_div(), this one calculates |
| 1182 | * "(dividend << 32) / divisor" */ |
| 1183 | __asm__ ( "divl %4" |
| 1184 | : "=a" (quotient), "=d" (remainder) |
| 1185 | : "0" (0), "1" (dividend), "r" (divisor) ); |
| 1186 | return quotient; |
| 1187 | } |
| 1188 | |
Zachary Amsden | 5f4e3f8 | 2010-09-18 14:38:13 -1000 | [diff] [blame] | 1189 | static void kvm_get_time_scale(uint32_t scaled_khz, uint32_t base_khz, |
| 1190 | s8 *pshift, u32 *pmultiplier) |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1191 | { |
Zachary Amsden | 5f4e3f8 | 2010-09-18 14:38:13 -1000 | [diff] [blame] | 1192 | uint64_t scaled64; |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1193 | int32_t shift = 0; |
| 1194 | uint64_t tps64; |
| 1195 | uint32_t tps32; |
| 1196 | |
Zachary Amsden | 5f4e3f8 | 2010-09-18 14:38:13 -1000 | [diff] [blame] | 1197 | tps64 = base_khz * 1000LL; |
| 1198 | scaled64 = scaled_khz * 1000LL; |
Jan Kiszka | 5093362 | 2010-09-26 13:00:53 +0200 | [diff] [blame] | 1199 | while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) { |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1200 | tps64 >>= 1; |
| 1201 | shift--; |
| 1202 | } |
| 1203 | |
| 1204 | tps32 = (uint32_t)tps64; |
Jan Kiszka | 5093362 | 2010-09-26 13:00:53 +0200 | [diff] [blame] | 1205 | while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) { |
| 1206 | if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000) |
Zachary Amsden | 5f4e3f8 | 2010-09-18 14:38:13 -1000 | [diff] [blame] | 1207 | scaled64 >>= 1; |
| 1208 | else |
| 1209 | tps32 <<= 1; |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1210 | shift++; |
| 1211 | } |
| 1212 | |
Zachary Amsden | 5f4e3f8 | 2010-09-18 14:38:13 -1000 | [diff] [blame] | 1213 | *pshift = shift; |
| 1214 | *pmultiplier = div_frac(scaled64, tps32); |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1215 | |
Zachary Amsden | 5f4e3f8 | 2010-09-18 14:38:13 -1000 | [diff] [blame] | 1216 | pr_debug("%s: base_khz %u => %u, shift %d, mul %u\n", |
| 1217 | __func__, base_khz, scaled_khz, shift, *pmultiplier); |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1218 | } |
| 1219 | |
Zachary Amsden | 759379d | 2010-08-19 22:07:25 -1000 | [diff] [blame] | 1220 | static inline u64 get_kernel_ns(void) |
| 1221 | { |
Thomas Gleixner | bb0b581 | 2014-07-16 21:04:52 +0000 | [diff] [blame] | 1222 | return ktime_get_boot_ns(); |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1223 | } |
| 1224 | |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1225 | #ifdef CONFIG_X86_64 |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1226 | static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1227 | #endif |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1228 | |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 1229 | static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz); |
Fengguang Wu | 69b0049 | 2015-01-19 22:33:39 +0800 | [diff] [blame] | 1230 | static unsigned long max_tsc_khz; |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 1231 | |
Joerg Roedel | 857e409 | 2011-03-25 09:44:50 +0100 | [diff] [blame] | 1232 | static inline u64 nsec_to_cycles(struct kvm_vcpu *vcpu, u64 nsec) |
Zachary Amsden | 759379d | 2010-08-19 22:07:25 -1000 | [diff] [blame] | 1233 | { |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1234 | return pvclock_scale_delta(nsec, vcpu->arch.virtual_tsc_mult, |
| 1235 | vcpu->arch.virtual_tsc_shift); |
Zachary Amsden | 759379d | 2010-08-19 22:07:25 -1000 | [diff] [blame] | 1236 | } |
| 1237 | |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1238 | static u32 adjust_tsc_khz(u32 khz, s32 ppm) |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 1239 | { |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1240 | u64 v = (u64)khz * (1000000 + ppm); |
| 1241 | do_div(v, 1000000); |
| 1242 | return v; |
| 1243 | } |
| 1244 | |
| 1245 | static void kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 this_tsc_khz) |
| 1246 | { |
| 1247 | u32 thresh_lo, thresh_hi; |
| 1248 | int use_scaling = 0; |
| 1249 | |
Marcelo Tosatti | 03ba32c | 2013-03-11 23:10:24 -0300 | [diff] [blame] | 1250 | /* tsc_khz can be zero if TSC calibration fails */ |
| 1251 | if (this_tsc_khz == 0) |
| 1252 | return; |
| 1253 | |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 1254 | /* Compute a scale to convert nanoseconds in TSC cycles */ |
| 1255 | kvm_get_time_scale(this_tsc_khz, NSEC_PER_SEC / 1000, |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1256 | &vcpu->arch.virtual_tsc_shift, |
| 1257 | &vcpu->arch.virtual_tsc_mult); |
| 1258 | vcpu->arch.virtual_tsc_khz = this_tsc_khz; |
| 1259 | |
| 1260 | /* |
| 1261 | * Compute the variation in TSC rate which is acceptable |
| 1262 | * within the range of tolerance and decide if the |
| 1263 | * rate being applied is within that bounds of the hardware |
| 1264 | * rate. If so, no scaling or compensation need be done. |
| 1265 | */ |
| 1266 | thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm); |
| 1267 | thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm); |
| 1268 | if (this_tsc_khz < thresh_lo || this_tsc_khz > thresh_hi) { |
| 1269 | pr_debug("kvm: requested TSC rate %u falls outside tolerance [%u,%u]\n", this_tsc_khz, thresh_lo, thresh_hi); |
| 1270 | use_scaling = 1; |
| 1271 | } |
| 1272 | kvm_x86_ops->set_tsc_khz(vcpu, this_tsc_khz, use_scaling); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 1273 | } |
| 1274 | |
| 1275 | static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns) |
| 1276 | { |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1277 | u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec, |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1278 | vcpu->arch.virtual_tsc_mult, |
| 1279 | vcpu->arch.virtual_tsc_shift); |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1280 | tsc += vcpu->arch.this_tsc_write; |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 1281 | return tsc; |
| 1282 | } |
| 1283 | |
Fengguang Wu | 69b0049 | 2015-01-19 22:33:39 +0800 | [diff] [blame] | 1284 | static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1285 | { |
| 1286 | #ifdef CONFIG_X86_64 |
| 1287 | bool vcpus_matched; |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1288 | struct kvm_arch *ka = &vcpu->kvm->arch; |
| 1289 | struct pvclock_gtod_data *gtod = &pvclock_gtod_data; |
| 1290 | |
| 1291 | vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 == |
| 1292 | atomic_read(&vcpu->kvm->online_vcpus)); |
| 1293 | |
Marcelo Tosatti | 7f18792 | 2014-11-04 21:30:44 -0200 | [diff] [blame] | 1294 | /* |
| 1295 | * Once the masterclock is enabled, always perform request in |
| 1296 | * order to update it. |
| 1297 | * |
| 1298 | * In order to enable masterclock, the host clocksource must be TSC |
| 1299 | * and the vcpus need to have matched TSCs. When that happens, |
| 1300 | * perform request to enable masterclock. |
| 1301 | */ |
| 1302 | if (ka->use_master_clock || |
| 1303 | (gtod->clock.vclock_mode == VCLOCK_TSC && vcpus_matched)) |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1304 | kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu); |
| 1305 | |
| 1306 | trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc, |
| 1307 | atomic_read(&vcpu->kvm->online_vcpus), |
| 1308 | ka->use_master_clock, gtod->clock.vclock_mode); |
| 1309 | #endif |
| 1310 | } |
| 1311 | |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 1312 | static void update_ia32_tsc_adjust_msr(struct kvm_vcpu *vcpu, s64 offset) |
| 1313 | { |
| 1314 | u64 curr_offset = kvm_x86_ops->read_tsc_offset(vcpu); |
| 1315 | vcpu->arch.ia32_tsc_adjust_msr += offset - curr_offset; |
| 1316 | } |
| 1317 | |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 1318 | void kvm_write_tsc(struct kvm_vcpu *vcpu, struct msr_data *msr) |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 1319 | { |
| 1320 | struct kvm *kvm = vcpu->kvm; |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 1321 | u64 offset, ns, elapsed; |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 1322 | unsigned long flags; |
Marcelo Tosatti | 02626b6 | 2012-03-08 18:46:57 -0300 | [diff] [blame] | 1323 | s64 usdiff; |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1324 | bool matched; |
Tomasz Grabiec | 0d3da0d | 2014-06-24 09:42:43 +0200 | [diff] [blame] | 1325 | bool already_matched; |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 1326 | u64 data = msr->data; |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 1327 | |
Jan Kiszka | 038f8c1 | 2011-02-04 10:49:11 +0100 | [diff] [blame] | 1328 | raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags); |
Joerg Roedel | 857e409 | 2011-03-25 09:44:50 +0100 | [diff] [blame] | 1329 | offset = kvm_x86_ops->compute_tsc_offset(vcpu, data); |
Zachary Amsden | 759379d | 2010-08-19 22:07:25 -1000 | [diff] [blame] | 1330 | ns = get_kernel_ns(); |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 1331 | elapsed = ns - kvm->arch.last_tsc_nsec; |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 1332 | |
Marcelo Tosatti | 03ba32c | 2013-03-11 23:10:24 -0300 | [diff] [blame] | 1333 | if (vcpu->arch.virtual_tsc_khz) { |
Marcelo Tosatti | 8915aa27 | 2013-06-11 23:31:12 -0300 | [diff] [blame] | 1334 | int faulted = 0; |
| 1335 | |
Marcelo Tosatti | 03ba32c | 2013-03-11 23:10:24 -0300 | [diff] [blame] | 1336 | /* n.b - signed multiplication and division required */ |
| 1337 | usdiff = data - kvm->arch.last_tsc_write; |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 1338 | #ifdef CONFIG_X86_64 |
Marcelo Tosatti | 03ba32c | 2013-03-11 23:10:24 -0300 | [diff] [blame] | 1339 | usdiff = (usdiff * 1000) / vcpu->arch.virtual_tsc_khz; |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 1340 | #else |
Marcelo Tosatti | 03ba32c | 2013-03-11 23:10:24 -0300 | [diff] [blame] | 1341 | /* do_div() only does unsigned */ |
Marcelo Tosatti | 8915aa27 | 2013-06-11 23:31:12 -0300 | [diff] [blame] | 1342 | asm("1: idivl %[divisor]\n" |
| 1343 | "2: xor %%edx, %%edx\n" |
| 1344 | " movl $0, %[faulted]\n" |
| 1345 | "3:\n" |
| 1346 | ".section .fixup,\"ax\"\n" |
| 1347 | "4: movl $1, %[faulted]\n" |
| 1348 | " jmp 3b\n" |
| 1349 | ".previous\n" |
| 1350 | |
| 1351 | _ASM_EXTABLE(1b, 4b) |
| 1352 | |
| 1353 | : "=A"(usdiff), [faulted] "=r" (faulted) |
| 1354 | : "A"(usdiff * 1000), [divisor] "rm"(vcpu->arch.virtual_tsc_khz)); |
| 1355 | |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 1356 | #endif |
Marcelo Tosatti | 03ba32c | 2013-03-11 23:10:24 -0300 | [diff] [blame] | 1357 | do_div(elapsed, 1000); |
| 1358 | usdiff -= elapsed; |
| 1359 | if (usdiff < 0) |
| 1360 | usdiff = -usdiff; |
Marcelo Tosatti | 8915aa27 | 2013-06-11 23:31:12 -0300 | [diff] [blame] | 1361 | |
| 1362 | /* idivl overflow => difference is larger than USEC_PER_SEC */ |
| 1363 | if (faulted) |
| 1364 | usdiff = USEC_PER_SEC; |
Marcelo Tosatti | 03ba32c | 2013-03-11 23:10:24 -0300 | [diff] [blame] | 1365 | } else |
| 1366 | usdiff = USEC_PER_SEC; /* disable TSC match window below */ |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 1367 | |
| 1368 | /* |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 1369 | * Special case: TSC write with a small delta (1 second) of virtual |
| 1370 | * cycle time against real time is interpreted as an attempt to |
| 1371 | * synchronize the CPU. |
| 1372 | * |
| 1373 | * For a reliable TSC, we can match TSC offsets, and for an unstable |
| 1374 | * TSC, we add elapsed time in this computation. We could let the |
| 1375 | * compensation code attempt to catch up if we fall behind, but |
| 1376 | * it's better to try to match offsets from the beginning. |
| 1377 | */ |
Marcelo Tosatti | 02626b6 | 2012-03-08 18:46:57 -0300 | [diff] [blame] | 1378 | if (usdiff < USEC_PER_SEC && |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 1379 | vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) { |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 1380 | if (!check_tsc_unstable()) { |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1381 | offset = kvm->arch.cur_tsc_offset; |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 1382 | pr_debug("kvm: matched tsc offset for %llu\n", data); |
| 1383 | } else { |
Joerg Roedel | 857e409 | 2011-03-25 09:44:50 +0100 | [diff] [blame] | 1384 | u64 delta = nsec_to_cycles(vcpu, elapsed); |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 1385 | data += delta; |
| 1386 | offset = kvm_x86_ops->compute_tsc_offset(vcpu, data); |
Zachary Amsden | 759379d | 2010-08-19 22:07:25 -1000 | [diff] [blame] | 1387 | pr_debug("kvm: adjusted tsc offset by %llu\n", delta); |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 1388 | } |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1389 | matched = true; |
Tomasz Grabiec | 0d3da0d | 2014-06-24 09:42:43 +0200 | [diff] [blame] | 1390 | already_matched = (vcpu->arch.this_tsc_generation == kvm->arch.cur_tsc_generation); |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1391 | } else { |
| 1392 | /* |
| 1393 | * We split periods of matched TSC writes into generations. |
| 1394 | * For each generation, we track the original measured |
| 1395 | * nanosecond time, offset, and write, so if TSCs are in |
| 1396 | * sync, we can match exact offset, and if not, we can match |
Guo Chao | 4a96998 | 2012-06-28 15:17:27 +0800 | [diff] [blame] | 1397 | * exact software computation in compute_guest_tsc() |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1398 | * |
| 1399 | * These values are tracked in kvm->arch.cur_xxx variables. |
| 1400 | */ |
| 1401 | kvm->arch.cur_tsc_generation++; |
| 1402 | kvm->arch.cur_tsc_nsec = ns; |
| 1403 | kvm->arch.cur_tsc_write = data; |
| 1404 | kvm->arch.cur_tsc_offset = offset; |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1405 | matched = false; |
Tomasz Grabiec | 0d3da0d | 2014-06-24 09:42:43 +0200 | [diff] [blame] | 1406 | pr_debug("kvm: new tsc generation %llu, clock %llu\n", |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1407 | kvm->arch.cur_tsc_generation, data); |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 1408 | } |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1409 | |
| 1410 | /* |
| 1411 | * We also track th most recent recorded KHZ, write and time to |
| 1412 | * allow the matching interval to be extended at each write. |
| 1413 | */ |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 1414 | kvm->arch.last_tsc_nsec = ns; |
| 1415 | kvm->arch.last_tsc_write = data; |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 1416 | kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz; |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 1417 | |
Zachary Amsden | b183aa5 | 2012-02-03 15:43:53 -0200 | [diff] [blame] | 1418 | vcpu->arch.last_guest_tsc = data; |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1419 | |
| 1420 | /* Keep track of which generation this VCPU has synchronized to */ |
| 1421 | vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation; |
| 1422 | vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec; |
| 1423 | vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write; |
| 1424 | |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 1425 | if (guest_cpuid_has_tsc_adjust(vcpu) && !msr->host_initiated) |
| 1426 | update_ia32_tsc_adjust_msr(vcpu, offset); |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1427 | kvm_x86_ops->write_tsc_offset(vcpu, offset); |
| 1428 | raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags); |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1429 | |
| 1430 | spin_lock(&kvm->arch.pvclock_gtod_sync_lock); |
Tomasz Grabiec | 0d3da0d | 2014-06-24 09:42:43 +0200 | [diff] [blame] | 1431 | if (!matched) { |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1432 | kvm->arch.nr_vcpus_matched_tsc = 0; |
Tomasz Grabiec | 0d3da0d | 2014-06-24 09:42:43 +0200 | [diff] [blame] | 1433 | } else if (!already_matched) { |
| 1434 | kvm->arch.nr_vcpus_matched_tsc++; |
| 1435 | } |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1436 | |
| 1437 | kvm_track_tsc_matching(vcpu); |
| 1438 | spin_unlock(&kvm->arch.pvclock_gtod_sync_lock); |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 1439 | } |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1440 | |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 1441 | EXPORT_SYMBOL_GPL(kvm_write_tsc); |
| 1442 | |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1443 | #ifdef CONFIG_X86_64 |
| 1444 | |
| 1445 | static cycle_t read_tsc(void) |
| 1446 | { |
| 1447 | cycle_t ret; |
| 1448 | u64 last; |
| 1449 | |
| 1450 | /* |
| 1451 | * Empirically, a fence (of type that depends on the CPU) |
| 1452 | * before rdtsc is enough to ensure that rdtsc is ordered |
| 1453 | * with respect to loads. The various CPU manuals are unclear |
| 1454 | * as to whether rdtsc can be reordered with later loads, |
| 1455 | * but no one has ever seen it happen. |
| 1456 | */ |
| 1457 | rdtsc_barrier(); |
| 1458 | ret = (cycle_t)vget_cycles(); |
| 1459 | |
| 1460 | last = pvclock_gtod_data.clock.cycle_last; |
| 1461 | |
| 1462 | if (likely(ret >= last)) |
| 1463 | return ret; |
| 1464 | |
| 1465 | /* |
| 1466 | * GCC likes to generate cmov here, but this branch is extremely |
| 1467 | * predictable (it's just a funciton of time and the likely is |
| 1468 | * very likely) and there's a data dependence, so force GCC |
| 1469 | * to generate a branch instead. I don't barrier() because |
| 1470 | * we don't actually need a barrier, and if this function |
| 1471 | * ever gets inlined it will generate worse code. |
| 1472 | */ |
| 1473 | asm volatile (""); |
| 1474 | return last; |
| 1475 | } |
| 1476 | |
| 1477 | static inline u64 vgettsc(cycle_t *cycle_now) |
| 1478 | { |
| 1479 | long v; |
| 1480 | struct pvclock_gtod_data *gtod = &pvclock_gtod_data; |
| 1481 | |
| 1482 | *cycle_now = read_tsc(); |
| 1483 | |
| 1484 | v = (*cycle_now - gtod->clock.cycle_last) & gtod->clock.mask; |
| 1485 | return v * gtod->clock.mult; |
| 1486 | } |
| 1487 | |
Thomas Gleixner | cbcf2dd | 2014-07-16 21:04:54 +0000 | [diff] [blame] | 1488 | static int do_monotonic_boot(s64 *t, cycle_t *cycle_now) |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1489 | { |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1490 | struct pvclock_gtod_data *gtod = &pvclock_gtod_data; |
Thomas Gleixner | cbcf2dd | 2014-07-16 21:04:54 +0000 | [diff] [blame] | 1491 | unsigned long seq; |
| 1492 | int mode; |
| 1493 | u64 ns; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1494 | |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1495 | do { |
| 1496 | seq = read_seqcount_begin(>od->seq); |
| 1497 | mode = gtod->clock.vclock_mode; |
Thomas Gleixner | cbcf2dd | 2014-07-16 21:04:54 +0000 | [diff] [blame] | 1498 | ns = gtod->nsec_base; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1499 | ns += vgettsc(cycle_now); |
| 1500 | ns >>= gtod->clock.shift; |
Thomas Gleixner | cbcf2dd | 2014-07-16 21:04:54 +0000 | [diff] [blame] | 1501 | ns += gtod->boot_ns; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1502 | } while (unlikely(read_seqcount_retry(>od->seq, seq))); |
Thomas Gleixner | cbcf2dd | 2014-07-16 21:04:54 +0000 | [diff] [blame] | 1503 | *t = ns; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1504 | |
| 1505 | return mode; |
| 1506 | } |
| 1507 | |
| 1508 | /* returns true if host is using tsc clocksource */ |
| 1509 | static bool kvm_get_time_and_clockread(s64 *kernel_ns, cycle_t *cycle_now) |
| 1510 | { |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1511 | /* checked again under seqlock below */ |
| 1512 | if (pvclock_gtod_data.clock.vclock_mode != VCLOCK_TSC) |
| 1513 | return false; |
| 1514 | |
Thomas Gleixner | cbcf2dd | 2014-07-16 21:04:54 +0000 | [diff] [blame] | 1515 | return do_monotonic_boot(kernel_ns, cycle_now) == VCLOCK_TSC; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1516 | } |
| 1517 | #endif |
| 1518 | |
| 1519 | /* |
| 1520 | * |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1521 | * Assuming a stable TSC across physical CPUS, and a stable TSC |
| 1522 | * across virtual CPUs, the following condition is possible. |
| 1523 | * Each numbered line represents an event visible to both |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1524 | * CPUs at the next numbered event. |
| 1525 | * |
| 1526 | * "timespecX" represents host monotonic time. "tscX" represents |
| 1527 | * RDTSC value. |
| 1528 | * |
| 1529 | * VCPU0 on CPU0 | VCPU1 on CPU1 |
| 1530 | * |
| 1531 | * 1. read timespec0,tsc0 |
| 1532 | * 2. | timespec1 = timespec0 + N |
| 1533 | * | tsc1 = tsc0 + M |
| 1534 | * 3. transition to guest | transition to guest |
| 1535 | * 4. ret0 = timespec0 + (rdtsc - tsc0) | |
| 1536 | * 5. | ret1 = timespec1 + (rdtsc - tsc1) |
| 1537 | * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M)) |
| 1538 | * |
| 1539 | * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity: |
| 1540 | * |
| 1541 | * - ret0 < ret1 |
| 1542 | * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M)) |
| 1543 | * ... |
| 1544 | * - 0 < N - M => M < N |
| 1545 | * |
| 1546 | * That is, when timespec0 != timespec1, M < N. Unfortunately that is not |
| 1547 | * always the case (the difference between two distinct xtime instances |
| 1548 | * might be smaller then the difference between corresponding TSC reads, |
| 1549 | * when updating guest vcpus pvclock areas). |
| 1550 | * |
| 1551 | * To avoid that problem, do not allow visibility of distinct |
| 1552 | * system_timestamp/tsc_timestamp values simultaneously: use a master |
| 1553 | * copy of host monotonic time values. Update that master copy |
| 1554 | * in lockstep. |
| 1555 | * |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1556 | * Rely on synchronization of host TSCs and guest TSCs for monotonicity. |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1557 | * |
| 1558 | */ |
| 1559 | |
| 1560 | static void pvclock_update_vm_gtod_copy(struct kvm *kvm) |
| 1561 | { |
| 1562 | #ifdef CONFIG_X86_64 |
| 1563 | struct kvm_arch *ka = &kvm->arch; |
| 1564 | int vclock_mode; |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1565 | bool host_tsc_clocksource, vcpus_matched; |
| 1566 | |
| 1567 | vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 == |
| 1568 | atomic_read(&kvm->online_vcpus)); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1569 | |
| 1570 | /* |
| 1571 | * If the host uses TSC clock, then passthrough TSC as stable |
| 1572 | * to the guest. |
| 1573 | */ |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1574 | host_tsc_clocksource = kvm_get_time_and_clockread( |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1575 | &ka->master_kernel_ns, |
| 1576 | &ka->master_cycle_now); |
| 1577 | |
Marcelo Tosatti | 16a9602 | 2014-05-14 12:43:24 -0300 | [diff] [blame] | 1578 | ka->use_master_clock = host_tsc_clocksource && vcpus_matched |
Marcelo Tosatti | 54750f2 | 2015-01-20 15:54:52 -0200 | [diff] [blame] | 1579 | && !backwards_tsc_observed |
| 1580 | && !ka->boot_vcpu_runs_old_kvmclock; |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1581 | |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1582 | if (ka->use_master_clock) |
| 1583 | atomic_set(&kvm_guest_has_master_clock, 1); |
| 1584 | |
| 1585 | vclock_mode = pvclock_gtod_data.clock.vclock_mode; |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1586 | trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode, |
| 1587 | vcpus_matched); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1588 | #endif |
| 1589 | } |
| 1590 | |
Marcelo Tosatti | 2e762ff | 2013-08-27 23:55:29 -0300 | [diff] [blame] | 1591 | static void kvm_gen_update_masterclock(struct kvm *kvm) |
| 1592 | { |
| 1593 | #ifdef CONFIG_X86_64 |
| 1594 | int i; |
| 1595 | struct kvm_vcpu *vcpu; |
| 1596 | struct kvm_arch *ka = &kvm->arch; |
| 1597 | |
| 1598 | spin_lock(&ka->pvclock_gtod_sync_lock); |
| 1599 | kvm_make_mclock_inprogress_request(kvm); |
| 1600 | /* no guest entries from this point */ |
| 1601 | pvclock_update_vm_gtod_copy(kvm); |
| 1602 | |
| 1603 | kvm_for_each_vcpu(i, vcpu, kvm) |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 1604 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
Marcelo Tosatti | 2e762ff | 2013-08-27 23:55:29 -0300 | [diff] [blame] | 1605 | |
| 1606 | /* guest entries allowed */ |
| 1607 | kvm_for_each_vcpu(i, vcpu, kvm) |
| 1608 | clear_bit(KVM_REQ_MCLOCK_INPROGRESS, &vcpu->requests); |
| 1609 | |
| 1610 | spin_unlock(&ka->pvclock_gtod_sync_lock); |
| 1611 | #endif |
| 1612 | } |
| 1613 | |
Zachary Amsden | 34c238a | 2010-09-18 14:38:14 -1000 | [diff] [blame] | 1614 | static int kvm_guest_time_update(struct kvm_vcpu *v) |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1615 | { |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1616 | unsigned long flags, this_tsc_khz; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1617 | struct kvm_vcpu_arch *vcpu = &v->arch; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1618 | struct kvm_arch *ka = &v->kvm->arch; |
Marcelo Tosatti | f25e656 | 2014-01-06 12:18:59 -0200 | [diff] [blame] | 1619 | s64 kernel_ns; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1620 | u64 tsc_timestamp, host_tsc; |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 1621 | struct pvclock_vcpu_time_info guest_hv_clock; |
Marcelo Tosatti | 51d59c6 | 2012-08-03 15:57:49 -0300 | [diff] [blame] | 1622 | u8 pvclock_flags; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1623 | bool use_master_clock; |
| 1624 | |
| 1625 | kernel_ns = 0; |
| 1626 | host_tsc = 0; |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1627 | |
Zachary Amsden | 1d5f066 | 2010-08-19 22:07:30 -1000 | [diff] [blame] | 1628 | /* |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1629 | * If the host uses TSC clock, then passthrough TSC as stable |
| 1630 | * to the guest. |
| 1631 | */ |
| 1632 | spin_lock(&ka->pvclock_gtod_sync_lock); |
| 1633 | use_master_clock = ka->use_master_clock; |
| 1634 | if (use_master_clock) { |
| 1635 | host_tsc = ka->master_cycle_now; |
| 1636 | kernel_ns = ka->master_kernel_ns; |
| 1637 | } |
| 1638 | spin_unlock(&ka->pvclock_gtod_sync_lock); |
Marcelo Tosatti | c09664b | 2013-03-18 13:54:32 -0300 | [diff] [blame] | 1639 | |
| 1640 | /* Keep irq disabled to prevent changes to the clock */ |
| 1641 | local_irq_save(flags); |
Christoph Lameter | 89cbc76 | 2014-08-17 12:30:40 -0500 | [diff] [blame] | 1642 | this_tsc_khz = __this_cpu_read(cpu_tsc_khz); |
Marcelo Tosatti | c09664b | 2013-03-18 13:54:32 -0300 | [diff] [blame] | 1643 | if (unlikely(this_tsc_khz == 0)) { |
| 1644 | local_irq_restore(flags); |
| 1645 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, v); |
| 1646 | return 1; |
| 1647 | } |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1648 | if (!use_master_clock) { |
| 1649 | host_tsc = native_read_tsc(); |
| 1650 | kernel_ns = get_kernel_ns(); |
| 1651 | } |
| 1652 | |
| 1653 | tsc_timestamp = kvm_x86_ops->read_l1_tsc(v, host_tsc); |
| 1654 | |
| 1655 | /* |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 1656 | * We may have to catch up the TSC to match elapsed wall clock |
| 1657 | * time for two reasons, even if kvmclock is used. |
| 1658 | * 1) CPU could have been running below the maximum TSC rate |
| 1659 | * 2) Broken TSC compensation resets the base at each VCPU |
| 1660 | * entry to avoid unknown leaps of TSC even when running |
| 1661 | * again on the same CPU. This may cause apparent elapsed |
| 1662 | * time to disappear, and the guest to stand still or run |
| 1663 | * very slowly. |
| 1664 | */ |
| 1665 | if (vcpu->tsc_catchup) { |
| 1666 | u64 tsc = compute_guest_tsc(v, kernel_ns); |
| 1667 | if (tsc > tsc_timestamp) { |
Marcelo Tosatti | f1e2b26 | 2012-02-03 15:43:55 -0200 | [diff] [blame] | 1668 | adjust_tsc_offset_guest(v, tsc - tsc_timestamp); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 1669 | tsc_timestamp = tsc; |
| 1670 | } |
| 1671 | } |
| 1672 | |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1673 | local_irq_restore(flags); |
| 1674 | |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 1675 | if (!vcpu->pv_time_enabled) |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 1676 | return 0; |
| 1677 | |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 1678 | if (unlikely(vcpu->hw_tsc_khz != this_tsc_khz)) { |
Zachary Amsden | 5f4e3f8 | 2010-09-18 14:38:13 -1000 | [diff] [blame] | 1679 | kvm_get_time_scale(NSEC_PER_SEC / 1000, this_tsc_khz, |
| 1680 | &vcpu->hv_clock.tsc_shift, |
| 1681 | &vcpu->hv_clock.tsc_to_system_mul); |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 1682 | vcpu->hw_tsc_khz = this_tsc_khz; |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 1683 | } |
| 1684 | |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1685 | /* With all the info we got, fill in the values */ |
Zachary Amsden | 1d5f066 | 2010-08-19 22:07:30 -1000 | [diff] [blame] | 1686 | vcpu->hv_clock.tsc_timestamp = tsc_timestamp; |
Zachary Amsden | 759379d | 2010-08-19 22:07:25 -1000 | [diff] [blame] | 1687 | vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset; |
Zachary Amsden | 28e4639 | 2010-09-18 14:38:12 -1000 | [diff] [blame] | 1688 | vcpu->last_guest_tsc = tsc_timestamp; |
Marcelo Tosatti | 51d59c6 | 2012-08-03 15:57:49 -0300 | [diff] [blame] | 1689 | |
Owen Hofmann | 09a0c3f | 2014-11-03 16:57:18 -0800 | [diff] [blame] | 1690 | if (unlikely(kvm_read_guest_cached(v->kvm, &vcpu->pv_time, |
| 1691 | &guest_hv_clock, sizeof(guest_hv_clock)))) |
| 1692 | return 0; |
| 1693 | |
Radim Krčmář | 5dca0d9 | 2015-03-25 12:08:14 +0100 | [diff] [blame] | 1694 | /* This VCPU is paused, but it's legal for a guest to read another |
| 1695 | * VCPU's kvmclock, so we really have to follow the specification where |
| 1696 | * it says that version is odd if data is being modified, and even after |
| 1697 | * it is consistent. |
| 1698 | * |
| 1699 | * Version field updates must be kept separate. This is because |
| 1700 | * kvm_write_guest_cached might use a "rep movs" instruction, and |
| 1701 | * writes within a string instruction are weakly ordered. So there |
| 1702 | * are three writes overall. |
| 1703 | * |
| 1704 | * As a small optimization, only write the version field in the first |
| 1705 | * and third write. The vcpu->pv_time cache is still valid, because the |
| 1706 | * version field is the first in the struct. |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1707 | */ |
Radim Krčmář | 5dca0d9 | 2015-03-25 12:08:14 +0100 | [diff] [blame] | 1708 | BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0); |
| 1709 | |
| 1710 | vcpu->hv_clock.version = guest_hv_clock.version + 1; |
| 1711 | kvm_write_guest_cached(v->kvm, &vcpu->pv_time, |
| 1712 | &vcpu->hv_clock, |
| 1713 | sizeof(vcpu->hv_clock.version)); |
| 1714 | |
| 1715 | smp_wmb(); |
Marcelo Tosatti | 78c0337 | 2012-11-27 23:28:47 -0200 | [diff] [blame] | 1716 | |
| 1717 | /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */ |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 1718 | pvclock_flags = (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED); |
Marcelo Tosatti | 78c0337 | 2012-11-27 23:28:47 -0200 | [diff] [blame] | 1719 | |
| 1720 | if (vcpu->pvclock_set_guest_stopped_request) { |
| 1721 | pvclock_flags |= PVCLOCK_GUEST_STOPPED; |
| 1722 | vcpu->pvclock_set_guest_stopped_request = false; |
| 1723 | } |
| 1724 | |
Marcelo Tosatti | b7e60c5 | 2015-05-28 20:20:41 -0300 | [diff] [blame] | 1725 | pvclock_flags |= PVCLOCK_COUNTS_FROM_ZERO; |
| 1726 | |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1727 | /* If the host uses TSC clocksource, then it is stable */ |
| 1728 | if (use_master_clock) |
| 1729 | pvclock_flags |= PVCLOCK_TSC_STABLE_BIT; |
| 1730 | |
Marcelo Tosatti | 78c0337 | 2012-11-27 23:28:47 -0200 | [diff] [blame] | 1731 | vcpu->hv_clock.flags = pvclock_flags; |
| 1732 | |
David Matlack | ce1a5e6 | 2014-11-05 11:46:42 -0800 | [diff] [blame] | 1733 | trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock); |
| 1734 | |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 1735 | kvm_write_guest_cached(v->kvm, &vcpu->pv_time, |
| 1736 | &vcpu->hv_clock, |
| 1737 | sizeof(vcpu->hv_clock)); |
Radim Krčmář | 5dca0d9 | 2015-03-25 12:08:14 +0100 | [diff] [blame] | 1738 | |
| 1739 | smp_wmb(); |
| 1740 | |
| 1741 | vcpu->hv_clock.version++; |
| 1742 | kvm_write_guest_cached(v->kvm, &vcpu->pv_time, |
| 1743 | &vcpu->hv_clock, |
| 1744 | sizeof(vcpu->hv_clock.version)); |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 1745 | return 0; |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 1746 | } |
| 1747 | |
Marcelo Tosatti | 0061d53 | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 1748 | /* |
| 1749 | * kvmclock updates which are isolated to a given vcpu, such as |
| 1750 | * vcpu->cpu migration, should not allow system_timestamp from |
| 1751 | * the rest of the vcpus to remain static. Otherwise ntp frequency |
| 1752 | * correction applies to one vcpu's system_timestamp but not |
| 1753 | * the others. |
| 1754 | * |
| 1755 | * So in those cases, request a kvmclock update for all vcpus. |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 1756 | * We need to rate-limit these requests though, as they can |
| 1757 | * considerably slow guests that have a large number of vcpus. |
| 1758 | * The time for a remote vcpu to update its kvmclock is bound |
| 1759 | * by the delay we use to rate-limit the updates. |
Marcelo Tosatti | 0061d53 | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 1760 | */ |
| 1761 | |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 1762 | #define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100) |
| 1763 | |
| 1764 | static void kvmclock_update_fn(struct work_struct *work) |
Marcelo Tosatti | 0061d53 | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 1765 | { |
| 1766 | int i; |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 1767 | struct delayed_work *dwork = to_delayed_work(work); |
| 1768 | struct kvm_arch *ka = container_of(dwork, struct kvm_arch, |
| 1769 | kvmclock_update_work); |
| 1770 | struct kvm *kvm = container_of(ka, struct kvm, arch); |
Marcelo Tosatti | 0061d53 | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 1771 | struct kvm_vcpu *vcpu; |
| 1772 | |
| 1773 | kvm_for_each_vcpu(i, vcpu, kvm) { |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 1774 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
Marcelo Tosatti | 0061d53 | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 1775 | kvm_vcpu_kick(vcpu); |
| 1776 | } |
| 1777 | } |
| 1778 | |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 1779 | static void kvm_gen_kvmclock_update(struct kvm_vcpu *v) |
| 1780 | { |
| 1781 | struct kvm *kvm = v->kvm; |
| 1782 | |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 1783 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, v); |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 1784 | schedule_delayed_work(&kvm->arch.kvmclock_update_work, |
| 1785 | KVMCLOCK_UPDATE_DELAY); |
| 1786 | } |
| 1787 | |
Andrew Jones | 332967a | 2014-02-28 12:52:55 +0100 | [diff] [blame] | 1788 | #define KVMCLOCK_SYNC_PERIOD (300 * HZ) |
| 1789 | |
| 1790 | static void kvmclock_sync_fn(struct work_struct *work) |
| 1791 | { |
| 1792 | struct delayed_work *dwork = to_delayed_work(work); |
| 1793 | struct kvm_arch *ka = container_of(dwork, struct kvm_arch, |
| 1794 | kvmclock_sync_work); |
| 1795 | struct kvm *kvm = container_of(ka, struct kvm, arch); |
| 1796 | |
Marcelo Tosatti | 630994b | 2015-05-12 22:42:04 -0300 | [diff] [blame] | 1797 | if (!kvmclock_periodic_sync) |
| 1798 | return; |
| 1799 | |
Andrew Jones | 332967a | 2014-02-28 12:52:55 +0100 | [diff] [blame] | 1800 | schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0); |
| 1801 | schedule_delayed_work(&kvm->arch.kvmclock_sync_work, |
| 1802 | KVMCLOCK_SYNC_PERIOD); |
| 1803 | } |
| 1804 | |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 1805 | static int set_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 data) |
| 1806 | { |
| 1807 | u64 mcg_cap = vcpu->arch.mcg_cap; |
| 1808 | unsigned bank_num = mcg_cap & 0xff; |
| 1809 | |
| 1810 | switch (msr) { |
| 1811 | case MSR_IA32_MCG_STATUS: |
| 1812 | vcpu->arch.mcg_status = data; |
| 1813 | break; |
| 1814 | case MSR_IA32_MCG_CTL: |
| 1815 | if (!(mcg_cap & MCG_CTL_P)) |
| 1816 | return 1; |
| 1817 | if (data != 0 && data != ~(u64)0) |
| 1818 | return -1; |
| 1819 | vcpu->arch.mcg_ctl = data; |
| 1820 | break; |
| 1821 | default: |
| 1822 | if (msr >= MSR_IA32_MC0_CTL && |
Chen Yucong | 81760dc | 2014-09-23 10:44:35 +0800 | [diff] [blame] | 1823 | msr < MSR_IA32_MCx_CTL(bank_num)) { |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 1824 | u32 offset = msr - MSR_IA32_MC0_CTL; |
Andre Przywara | 114be42 | 2010-03-24 17:46:42 +0100 | [diff] [blame] | 1825 | /* only 0 or all 1s can be written to IA32_MCi_CTL |
| 1826 | * some Linux kernels though clear bit 10 in bank 4 to |
| 1827 | * workaround a BIOS/GART TBL issue on AMD K8s, ignore |
| 1828 | * this to avoid an uncatched #GP in the guest |
| 1829 | */ |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 1830 | if ((offset & 0x3) == 0 && |
Andre Przywara | 114be42 | 2010-03-24 17:46:42 +0100 | [diff] [blame] | 1831 | data != 0 && (data | (1 << 10)) != ~(u64)0) |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 1832 | return -1; |
| 1833 | vcpu->arch.mce_banks[offset] = data; |
| 1834 | break; |
| 1835 | } |
| 1836 | return 1; |
| 1837 | } |
| 1838 | return 0; |
| 1839 | } |
| 1840 | |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 1841 | static int xen_hvm_config(struct kvm_vcpu *vcpu, u64 data) |
| 1842 | { |
| 1843 | struct kvm *kvm = vcpu->kvm; |
| 1844 | int lm = is_long_mode(vcpu); |
| 1845 | u8 *blob_addr = lm ? (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_64 |
| 1846 | : (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_32; |
| 1847 | u8 blob_size = lm ? kvm->arch.xen_hvm_config.blob_size_64 |
| 1848 | : kvm->arch.xen_hvm_config.blob_size_32; |
| 1849 | u32 page_num = data & ~PAGE_MASK; |
| 1850 | u64 page_addr = data & PAGE_MASK; |
| 1851 | u8 *page; |
| 1852 | int r; |
| 1853 | |
| 1854 | r = -E2BIG; |
| 1855 | if (page_num >= blob_size) |
| 1856 | goto out; |
| 1857 | r = -ENOMEM; |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 1858 | page = memdup_user(blob_addr + (page_num * PAGE_SIZE), PAGE_SIZE); |
| 1859 | if (IS_ERR(page)) { |
| 1860 | r = PTR_ERR(page); |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 1861 | goto out; |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 1862 | } |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 1863 | if (kvm_vcpu_write_guest(vcpu, page_addr, page, PAGE_SIZE)) |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 1864 | goto out_free; |
| 1865 | r = 0; |
| 1866 | out_free: |
| 1867 | kfree(page); |
| 1868 | out: |
| 1869 | return r; |
| 1870 | } |
| 1871 | |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 1872 | static bool kvm_hv_hypercall_enabled(struct kvm *kvm) |
| 1873 | { |
| 1874 | return kvm->arch.hv_hypercall & HV_X64_MSR_HYPERCALL_ENABLE; |
| 1875 | } |
| 1876 | |
| 1877 | static bool kvm_hv_msr_partition_wide(u32 msr) |
| 1878 | { |
| 1879 | bool r = false; |
| 1880 | switch (msr) { |
| 1881 | case HV_X64_MSR_GUEST_OS_ID: |
| 1882 | case HV_X64_MSR_HYPERCALL: |
Vadim Rozenfeld | e984097 | 2014-01-16 20:18:37 +1100 | [diff] [blame] | 1883 | case HV_X64_MSR_REFERENCE_TSC: |
| 1884 | case HV_X64_MSR_TIME_REF_COUNT: |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 1885 | r = true; |
| 1886 | break; |
| 1887 | } |
| 1888 | |
| 1889 | return r; |
| 1890 | } |
| 1891 | |
| 1892 | static int set_msr_hyperv_pw(struct kvm_vcpu *vcpu, u32 msr, u64 data) |
| 1893 | { |
| 1894 | struct kvm *kvm = vcpu->kvm; |
| 1895 | |
| 1896 | switch (msr) { |
| 1897 | case HV_X64_MSR_GUEST_OS_ID: |
| 1898 | kvm->arch.hv_guest_os_id = data; |
| 1899 | /* setting guest os id to zero disables hypercall page */ |
| 1900 | if (!kvm->arch.hv_guest_os_id) |
| 1901 | kvm->arch.hv_hypercall &= ~HV_X64_MSR_HYPERCALL_ENABLE; |
| 1902 | break; |
| 1903 | case HV_X64_MSR_HYPERCALL: { |
| 1904 | u64 gfn; |
| 1905 | unsigned long addr; |
| 1906 | u8 instructions[4]; |
| 1907 | |
| 1908 | /* if guest os id is not set hypercall should remain disabled */ |
| 1909 | if (!kvm->arch.hv_guest_os_id) |
| 1910 | break; |
| 1911 | if (!(data & HV_X64_MSR_HYPERCALL_ENABLE)) { |
| 1912 | kvm->arch.hv_hypercall = data; |
| 1913 | break; |
| 1914 | } |
| 1915 | gfn = data >> HV_X64_MSR_HYPERCALL_PAGE_ADDRESS_SHIFT; |
| 1916 | addr = gfn_to_hva(kvm, gfn); |
| 1917 | if (kvm_is_error_hva(addr)) |
| 1918 | return 1; |
| 1919 | kvm_x86_ops->patch_hypercall(vcpu, instructions); |
| 1920 | ((unsigned char *)instructions)[3] = 0xc3; /* ret */ |
Xiao Guangrong | 8b0cedf | 2011-05-15 23:22:04 +0800 | [diff] [blame] | 1921 | if (__copy_to_user((void __user *)addr, instructions, 4)) |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 1922 | return 1; |
| 1923 | kvm->arch.hv_hypercall = data; |
Vadim Rozenfeld | b94b64c | 2014-01-23 18:12:52 +1100 | [diff] [blame] | 1924 | mark_page_dirty(kvm, gfn); |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 1925 | break; |
| 1926 | } |
Vadim Rozenfeld | e984097 | 2014-01-16 20:18:37 +1100 | [diff] [blame] | 1927 | case HV_X64_MSR_REFERENCE_TSC: { |
| 1928 | u64 gfn; |
| 1929 | HV_REFERENCE_TSC_PAGE tsc_ref; |
| 1930 | memset(&tsc_ref, 0, sizeof(tsc_ref)); |
| 1931 | kvm->arch.hv_tsc_page = data; |
| 1932 | if (!(data & HV_X64_MSR_TSC_REFERENCE_ENABLE)) |
| 1933 | break; |
| 1934 | gfn = data >> HV_X64_MSR_TSC_REFERENCE_ADDRESS_SHIFT; |
Xiaoming Gao | e1fa108d | 2014-06-19 19:14:57 +0800 | [diff] [blame] | 1935 | if (kvm_write_guest(kvm, gfn << HV_X64_MSR_TSC_REFERENCE_ADDRESS_SHIFT, |
Vadim Rozenfeld | e984097 | 2014-01-16 20:18:37 +1100 | [diff] [blame] | 1936 | &tsc_ref, sizeof(tsc_ref))) |
| 1937 | return 1; |
| 1938 | mark_page_dirty(kvm, gfn); |
| 1939 | break; |
| 1940 | } |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 1941 | default: |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 1942 | vcpu_unimpl(vcpu, "HYPER-V unimplemented wrmsr: 0x%x " |
| 1943 | "data 0x%llx\n", msr, data); |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 1944 | return 1; |
| 1945 | } |
| 1946 | return 0; |
| 1947 | } |
| 1948 | |
| 1949 | static int set_msr_hyperv(struct kvm_vcpu *vcpu, u32 msr, u64 data) |
| 1950 | { |
Gleb Natapov | 10388a0 | 2010-01-17 15:51:23 +0200 | [diff] [blame] | 1951 | switch (msr) { |
| 1952 | case HV_X64_MSR_APIC_ASSIST_PAGE: { |
Vadim Rozenfeld | b3af1e8 | 2014-01-23 18:12:53 +1100 | [diff] [blame] | 1953 | u64 gfn; |
Gleb Natapov | 10388a0 | 2010-01-17 15:51:23 +0200 | [diff] [blame] | 1954 | unsigned long addr; |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 1955 | |
Gleb Natapov | 10388a0 | 2010-01-17 15:51:23 +0200 | [diff] [blame] | 1956 | if (!(data & HV_X64_MSR_APIC_ASSIST_PAGE_ENABLE)) { |
| 1957 | vcpu->arch.hv_vapic = data; |
Michael S. Tsirkin | b63cf42 | 2014-05-07 16:29:48 +0300 | [diff] [blame] | 1958 | if (kvm_lapic_enable_pv_eoi(vcpu, 0)) |
| 1959 | return 1; |
Gleb Natapov | 10388a0 | 2010-01-17 15:51:23 +0200 | [diff] [blame] | 1960 | break; |
| 1961 | } |
Vadim Rozenfeld | b3af1e8 | 2014-01-23 18:12:53 +1100 | [diff] [blame] | 1962 | gfn = data >> HV_X64_MSR_APIC_ASSIST_PAGE_ADDRESS_SHIFT; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 1963 | addr = kvm_vcpu_gfn_to_hva(vcpu, gfn); |
Gleb Natapov | 10388a0 | 2010-01-17 15:51:23 +0200 | [diff] [blame] | 1964 | if (kvm_is_error_hva(addr)) |
| 1965 | return 1; |
Xiao Guangrong | 8b0cedf | 2011-05-15 23:22:04 +0800 | [diff] [blame] | 1966 | if (__clear_user((void __user *)addr, PAGE_SIZE)) |
Gleb Natapov | 10388a0 | 2010-01-17 15:51:23 +0200 | [diff] [blame] | 1967 | return 1; |
| 1968 | vcpu->arch.hv_vapic = data; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 1969 | kvm_vcpu_mark_page_dirty(vcpu, gfn); |
Michael S. Tsirkin | b63cf42 | 2014-05-07 16:29:48 +0300 | [diff] [blame] | 1970 | if (kvm_lapic_enable_pv_eoi(vcpu, gfn_to_gpa(gfn) | KVM_MSR_ENABLED)) |
| 1971 | return 1; |
Gleb Natapov | 10388a0 | 2010-01-17 15:51:23 +0200 | [diff] [blame] | 1972 | break; |
| 1973 | } |
| 1974 | case HV_X64_MSR_EOI: |
| 1975 | return kvm_hv_vapic_msr_write(vcpu, APIC_EOI, data); |
| 1976 | case HV_X64_MSR_ICR: |
| 1977 | return kvm_hv_vapic_msr_write(vcpu, APIC_ICR, data); |
| 1978 | case HV_X64_MSR_TPR: |
| 1979 | return kvm_hv_vapic_msr_write(vcpu, APIC_TASKPRI, data); |
| 1980 | default: |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 1981 | vcpu_unimpl(vcpu, "HYPER-V unimplemented wrmsr: 0x%x " |
| 1982 | "data 0x%llx\n", msr, data); |
Gleb Natapov | 10388a0 | 2010-01-17 15:51:23 +0200 | [diff] [blame] | 1983 | return 1; |
| 1984 | } |
| 1985 | |
| 1986 | return 0; |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 1987 | } |
| 1988 | |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 1989 | static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data) |
| 1990 | { |
| 1991 | gpa_t gpa = data & ~0x3f; |
| 1992 | |
Guo Chao | 4a96998 | 2012-06-28 15:17:27 +0800 | [diff] [blame] | 1993 | /* Bits 2:5 are reserved, Should be zero */ |
Gleb Natapov | 6adba52 | 2010-10-14 11:22:55 +0200 | [diff] [blame] | 1994 | if (data & 0x3c) |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 1995 | return 1; |
| 1996 | |
| 1997 | vcpu->arch.apf.msr_val = data; |
| 1998 | |
| 1999 | if (!(data & KVM_ASYNC_PF_ENABLED)) { |
| 2000 | kvm_clear_async_pf_completion_queue(vcpu); |
| 2001 | kvm_async_pf_hash_reset(vcpu); |
| 2002 | return 0; |
| 2003 | } |
| 2004 | |
Andrew Honig | 8f96452 | 2013-03-29 09:35:21 -0700 | [diff] [blame] | 2005 | if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa, |
| 2006 | sizeof(u32))) |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 2007 | return 1; |
| 2008 | |
Gleb Natapov | 6adba52 | 2010-10-14 11:22:55 +0200 | [diff] [blame] | 2009 | vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS); |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 2010 | kvm_async_pf_wakeup_all(vcpu); |
| 2011 | return 0; |
| 2012 | } |
| 2013 | |
Glauber Costa | 12f9a48 | 2011-02-01 14:16:40 -0500 | [diff] [blame] | 2014 | static void kvmclock_reset(struct kvm_vcpu *vcpu) |
| 2015 | { |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 2016 | vcpu->arch.pv_time_enabled = false; |
Glauber Costa | 12f9a48 | 2011-02-01 14:16:40 -0500 | [diff] [blame] | 2017 | } |
| 2018 | |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2019 | static void accumulate_steal_time(struct kvm_vcpu *vcpu) |
| 2020 | { |
| 2021 | u64 delta; |
| 2022 | |
| 2023 | if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED)) |
| 2024 | return; |
| 2025 | |
| 2026 | delta = current->sched_info.run_delay - vcpu->arch.st.last_steal; |
| 2027 | vcpu->arch.st.last_steal = current->sched_info.run_delay; |
| 2028 | vcpu->arch.st.accum_steal = delta; |
| 2029 | } |
| 2030 | |
| 2031 | static void record_steal_time(struct kvm_vcpu *vcpu) |
| 2032 | { |
| 2033 | if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED)) |
| 2034 | return; |
| 2035 | |
| 2036 | if (unlikely(kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.st.stime, |
| 2037 | &vcpu->arch.st.steal, sizeof(struct kvm_steal_time)))) |
| 2038 | return; |
| 2039 | |
| 2040 | vcpu->arch.st.steal.steal += vcpu->arch.st.accum_steal; |
| 2041 | vcpu->arch.st.steal.version += 2; |
| 2042 | vcpu->arch.st.accum_steal = 0; |
| 2043 | |
| 2044 | kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.st.stime, |
| 2045 | &vcpu->arch.st.steal, sizeof(struct kvm_steal_time)); |
| 2046 | } |
| 2047 | |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2048 | int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info) |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2049 | { |
Gleb Natapov | 5753785 | 2012-01-15 14:17:22 +0200 | [diff] [blame] | 2050 | bool pr = false; |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2051 | u32 msr = msr_info->index; |
| 2052 | u64 data = msr_info->data; |
Gleb Natapov | 5753785 | 2012-01-15 14:17:22 +0200 | [diff] [blame] | 2053 | |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2054 | switch (msr) { |
Borislav Petkov | 2e32b71 | 2013-02-19 19:33:13 +0100 | [diff] [blame] | 2055 | case MSR_AMD64_NB_CFG: |
| 2056 | case MSR_IA32_UCODE_REV: |
| 2057 | case MSR_IA32_UCODE_WRITE: |
| 2058 | case MSR_VM_HSAVE_PA: |
| 2059 | case MSR_AMD64_PATCH_LOADER: |
| 2060 | case MSR_AMD64_BU_CFG2: |
| 2061 | break; |
| 2062 | |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2063 | case MSR_EFER: |
Roedel, Joerg | b69e8ca | 2010-05-06 11:38:43 +0200 | [diff] [blame] | 2064 | return set_efer(vcpu, data); |
Andre Przywara | 8f1589d | 2009-06-24 12:44:33 +0200 | [diff] [blame] | 2065 | case MSR_K7_HWCR: |
| 2066 | data &= ~(u64)0x40; /* ignore flush filter disable */ |
Joerg Roedel | 8249402 | 2010-02-24 18:59:16 +0100 | [diff] [blame] | 2067 | data &= ~(u64)0x100; /* ignore ignne emulation enable */ |
Nicolae Mogoreanu | a223c31 | 2012-02-21 13:44:21 -0800 | [diff] [blame] | 2068 | data &= ~(u64)0x8; /* ignore TLB cache disable */ |
Matthias Lange | 22d48b2d | 2014-06-26 13:50:15 +0200 | [diff] [blame] | 2069 | data &= ~(u64)0x40000; /* ignore Mc status write enable */ |
Andre Przywara | 8f1589d | 2009-06-24 12:44:33 +0200 | [diff] [blame] | 2070 | if (data != 0) { |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2071 | vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n", |
| 2072 | data); |
Andre Przywara | 8f1589d | 2009-06-24 12:44:33 +0200 | [diff] [blame] | 2073 | return 1; |
| 2074 | } |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2075 | break; |
Andre Przywara | f7c6d14 | 2009-07-02 15:04:14 +0200 | [diff] [blame] | 2076 | case MSR_FAM10H_MMIO_CONF_BASE: |
| 2077 | if (data != 0) { |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2078 | vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: " |
| 2079 | "0x%llx\n", data); |
Andre Przywara | f7c6d14 | 2009-07-02 15:04:14 +0200 | [diff] [blame] | 2080 | return 1; |
| 2081 | } |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2082 | break; |
Alexander Graf | b5e2fec | 2008-07-22 08:00:45 +0200 | [diff] [blame] | 2083 | case MSR_IA32_DEBUGCTLMSR: |
| 2084 | if (!data) { |
| 2085 | /* We support the non-activated case already */ |
| 2086 | break; |
| 2087 | } else if (data & ~(DEBUGCTLMSR_LBR | DEBUGCTLMSR_BTF)) { |
| 2088 | /* Values other than LBR and BTF are vendor-specific, |
| 2089 | thus reserved and should throw a #GP */ |
| 2090 | return 1; |
| 2091 | } |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2092 | vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTLMSR 0x%llx, nop\n", |
| 2093 | __func__, data); |
Alexander Graf | b5e2fec | 2008-07-22 08:00:45 +0200 | [diff] [blame] | 2094 | break; |
Avi Kivity | 9ba075a | 2008-05-26 20:06:35 +0300 | [diff] [blame] | 2095 | case 0x200 ... 0x2ff: |
Xiao Guangrong | ff53604 | 2015-06-15 16:55:22 +0800 | [diff] [blame] | 2096 | return kvm_mtrr_set_msr(vcpu, msr, data); |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2097 | case MSR_IA32_APICBASE: |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 2098 | return kvm_set_apic_base(vcpu, msr_info); |
Gleb Natapov | 0105d1a | 2009-07-05 17:39:36 +0300 | [diff] [blame] | 2099 | case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff: |
| 2100 | return kvm_x2apic_msr_write(vcpu, msr, data); |
Liu, Jinsong | a3e06bb | 2011-09-22 16:55:52 +0800 | [diff] [blame] | 2101 | case MSR_IA32_TSCDEADLINE: |
| 2102 | kvm_set_lapic_tscdeadline_msr(vcpu, data); |
| 2103 | break; |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 2104 | case MSR_IA32_TSC_ADJUST: |
| 2105 | if (guest_cpuid_has_tsc_adjust(vcpu)) { |
| 2106 | if (!msr_info->host_initiated) { |
Chris J Arges | d913b90 | 2014-11-12 21:00:39 -0600 | [diff] [blame] | 2107 | s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr; |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 2108 | kvm_x86_ops->adjust_tsc_offset(vcpu, adj, true); |
| 2109 | } |
| 2110 | vcpu->arch.ia32_tsc_adjust_msr = data; |
| 2111 | } |
| 2112 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2113 | case MSR_IA32_MISC_ENABLE: |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 2114 | vcpu->arch.ia32_misc_enable_msr = data; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2115 | break; |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 2116 | case MSR_IA32_SMBASE: |
| 2117 | if (!msr_info->host_initiated) |
| 2118 | return 1; |
| 2119 | vcpu->arch.smbase = data; |
| 2120 | break; |
Glauber Costa | 11c6bff | 2010-05-11 12:17:41 -0400 | [diff] [blame] | 2121 | case MSR_KVM_WALL_CLOCK_NEW: |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2122 | case MSR_KVM_WALL_CLOCK: |
| 2123 | vcpu->kvm->arch.wall_clock = data; |
| 2124 | kvm_write_wall_clock(vcpu->kvm, data); |
| 2125 | break; |
Glauber Costa | 11c6bff | 2010-05-11 12:17:41 -0400 | [diff] [blame] | 2126 | case MSR_KVM_SYSTEM_TIME_NEW: |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2127 | case MSR_KVM_SYSTEM_TIME: { |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 2128 | u64 gpa_offset; |
Marcelo Tosatti | 54750f2 | 2015-01-20 15:54:52 -0200 | [diff] [blame] | 2129 | struct kvm_arch *ka = &vcpu->kvm->arch; |
| 2130 | |
Glauber Costa | 12f9a48 | 2011-02-01 14:16:40 -0500 | [diff] [blame] | 2131 | kvmclock_reset(vcpu); |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2132 | |
Marcelo Tosatti | 54750f2 | 2015-01-20 15:54:52 -0200 | [diff] [blame] | 2133 | if (vcpu->vcpu_id == 0 && !msr_info->host_initiated) { |
| 2134 | bool tmp = (msr == MSR_KVM_SYSTEM_TIME); |
| 2135 | |
| 2136 | if (ka->boot_vcpu_runs_old_kvmclock != tmp) |
| 2137 | set_bit(KVM_REQ_MASTERCLOCK_UPDATE, |
| 2138 | &vcpu->requests); |
| 2139 | |
| 2140 | ka->boot_vcpu_runs_old_kvmclock = tmp; |
Marcelo Tosatti | b7e60c5 | 2015-05-28 20:20:41 -0300 | [diff] [blame] | 2141 | |
| 2142 | ka->kvmclock_offset = -get_kernel_ns(); |
Marcelo Tosatti | 54750f2 | 2015-01-20 15:54:52 -0200 | [diff] [blame] | 2143 | } |
| 2144 | |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2145 | vcpu->arch.time = data; |
Marcelo Tosatti | 0061d53 | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 2146 | kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu); |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2147 | |
| 2148 | /* we verify if the enable bit is set... */ |
| 2149 | if (!(data & 1)) |
| 2150 | break; |
| 2151 | |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 2152 | gpa_offset = data & ~(PAGE_MASK | 1); |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2153 | |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 2154 | if (kvm_gfn_to_hva_cache_init(vcpu->kvm, |
Andrew Honig | 8f96452 | 2013-03-29 09:35:21 -0700 | [diff] [blame] | 2155 | &vcpu->arch.pv_time, data & ~1ULL, |
| 2156 | sizeof(struct pvclock_vcpu_time_info))) |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 2157 | vcpu->arch.pv_time_enabled = false; |
| 2158 | else |
| 2159 | vcpu->arch.pv_time_enabled = true; |
Xiao Guangrong | 32cad84 | 2012-08-03 15:42:52 +0800 | [diff] [blame] | 2160 | |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2161 | break; |
| 2162 | } |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 2163 | case MSR_KVM_ASYNC_PF_EN: |
| 2164 | if (kvm_pv_enable_async_pf(vcpu, data)) |
| 2165 | return 1; |
| 2166 | break; |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2167 | case MSR_KVM_STEAL_TIME: |
| 2168 | |
| 2169 | if (unlikely(!sched_info_on())) |
| 2170 | return 1; |
| 2171 | |
| 2172 | if (data & KVM_STEAL_RESERVED_MASK) |
| 2173 | return 1; |
| 2174 | |
| 2175 | if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.st.stime, |
Andrew Honig | 8f96452 | 2013-03-29 09:35:21 -0700 | [diff] [blame] | 2176 | data & KVM_STEAL_VALID_BITS, |
| 2177 | sizeof(struct kvm_steal_time))) |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2178 | return 1; |
| 2179 | |
| 2180 | vcpu->arch.st.msr_val = data; |
| 2181 | |
| 2182 | if (!(data & KVM_MSR_ENABLED)) |
| 2183 | break; |
| 2184 | |
| 2185 | vcpu->arch.st.last_steal = current->sched_info.run_delay; |
| 2186 | |
| 2187 | preempt_disable(); |
| 2188 | accumulate_steal_time(vcpu); |
| 2189 | preempt_enable(); |
| 2190 | |
| 2191 | kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu); |
| 2192 | |
| 2193 | break; |
Michael S. Tsirkin | ae7a2a3 | 2012-06-24 19:25:07 +0300 | [diff] [blame] | 2194 | case MSR_KVM_PV_EOI_EN: |
| 2195 | if (kvm_lapic_enable_pv_eoi(vcpu, data)) |
| 2196 | return 1; |
| 2197 | break; |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2198 | |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2199 | case MSR_IA32_MCG_CTL: |
| 2200 | case MSR_IA32_MCG_STATUS: |
Chen Yucong | 81760dc | 2014-09-23 10:44:35 +0800 | [diff] [blame] | 2201 | case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1: |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2202 | return set_msr_mce(vcpu, msr, data); |
Andre Przywara | 71db602 | 2009-06-12 22:01:29 +0200 | [diff] [blame] | 2203 | |
Wei Huang | 6912ac3 | 2015-06-12 01:34:56 -0400 | [diff] [blame] | 2204 | case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3: |
| 2205 | case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1: |
| 2206 | pr = true; /* fall through */ |
| 2207 | case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3: |
| 2208 | case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1: |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 2209 | if (kvm_pmu_is_valid_msr(vcpu, msr)) |
Paolo Bonzini | afd80d8 | 2013-03-28 17:18:35 +0100 | [diff] [blame] | 2210 | return kvm_pmu_set_msr(vcpu, msr_info); |
Gleb Natapov | 5753785 | 2012-01-15 14:17:22 +0200 | [diff] [blame] | 2211 | |
| 2212 | if (pr || data != 0) |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2213 | vcpu_unimpl(vcpu, "disabled perfctr wrmsr: " |
| 2214 | "0x%x data 0x%llx\n", msr, data); |
Gleb Natapov | 5753785 | 2012-01-15 14:17:22 +0200 | [diff] [blame] | 2215 | break; |
Jes Sorensen | 84e0cef | 2010-09-01 11:42:04 +0200 | [diff] [blame] | 2216 | case MSR_K7_CLK_CTL: |
| 2217 | /* |
| 2218 | * Ignore all writes to this no longer documented MSR. |
| 2219 | * Writes are only relevant for old K7 processors, |
| 2220 | * all pre-dating SVM, but a recommended workaround from |
Guo Chao | 4a96998 | 2012-06-28 15:17:27 +0800 | [diff] [blame] | 2221 | * AMD for these chips. It is possible to specify the |
Jes Sorensen | 84e0cef | 2010-09-01 11:42:04 +0200 | [diff] [blame] | 2222 | * affected processor models on the command line, hence |
| 2223 | * the need to ignore the workaround. |
| 2224 | */ |
| 2225 | break; |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 2226 | case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15: |
| 2227 | if (kvm_hv_msr_partition_wide(msr)) { |
| 2228 | int r; |
| 2229 | mutex_lock(&vcpu->kvm->lock); |
| 2230 | r = set_msr_hyperv_pw(vcpu, msr, data); |
| 2231 | mutex_unlock(&vcpu->kvm->lock); |
| 2232 | return r; |
| 2233 | } else |
| 2234 | return set_msr_hyperv(vcpu, msr, data); |
| 2235 | break; |
john cooper | 91c9c3e | 2011-01-21 00:21:00 -0500 | [diff] [blame] | 2236 | case MSR_IA32_BBL_CR_CTL3: |
| 2237 | /* Drop writes to this legacy MSR -- see rdmsr |
| 2238 | * counterpart for further detail. |
| 2239 | */ |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2240 | vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data %llx\n", msr, data); |
john cooper | 91c9c3e | 2011-01-21 00:21:00 -0500 | [diff] [blame] | 2241 | break; |
Boris Ostrovsky | 2b036c6 | 2012-01-09 14:00:35 -0500 | [diff] [blame] | 2242 | case MSR_AMD64_OSVW_ID_LENGTH: |
| 2243 | if (!guest_cpuid_has_osvw(vcpu)) |
| 2244 | return 1; |
| 2245 | vcpu->arch.osvw.length = data; |
| 2246 | break; |
| 2247 | case MSR_AMD64_OSVW_STATUS: |
| 2248 | if (!guest_cpuid_has_osvw(vcpu)) |
| 2249 | return 1; |
| 2250 | vcpu->arch.osvw.status = data; |
| 2251 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2252 | default: |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 2253 | if (msr && (msr == vcpu->kvm->arch.xen_hvm_config.msr)) |
| 2254 | return xen_hvm_config(vcpu, data); |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 2255 | if (kvm_pmu_is_valid_msr(vcpu, msr)) |
Paolo Bonzini | afd80d8 | 2013-03-28 17:18:35 +0100 | [diff] [blame] | 2256 | return kvm_pmu_set_msr(vcpu, msr_info); |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 2257 | if (!ignore_msrs) { |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2258 | vcpu_unimpl(vcpu, "unhandled wrmsr: 0x%x data %llx\n", |
| 2259 | msr, data); |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 2260 | return 1; |
| 2261 | } else { |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2262 | vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data %llx\n", |
| 2263 | msr, data); |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 2264 | break; |
| 2265 | } |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2266 | } |
| 2267 | return 0; |
| 2268 | } |
| 2269 | EXPORT_SYMBOL_GPL(kvm_set_msr_common); |
| 2270 | |
| 2271 | |
| 2272 | /* |
| 2273 | * Reads an msr value (of 'msr_index') into 'pdata'. |
| 2274 | * Returns 0 on success, non-0 otherwise. |
| 2275 | * Assumes vcpu_load() was already called. |
| 2276 | */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2277 | int kvm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr) |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2278 | { |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2279 | return kvm_x86_ops->get_msr(vcpu, msr); |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2280 | } |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 2281 | EXPORT_SYMBOL_GPL(kvm_get_msr); |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2282 | |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2283 | static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata) |
| 2284 | { |
| 2285 | u64 data; |
| 2286 | u64 mcg_cap = vcpu->arch.mcg_cap; |
| 2287 | unsigned bank_num = mcg_cap & 0xff; |
| 2288 | |
| 2289 | switch (msr) { |
| 2290 | case MSR_IA32_P5_MC_ADDR: |
| 2291 | case MSR_IA32_P5_MC_TYPE: |
| 2292 | data = 0; |
| 2293 | break; |
| 2294 | case MSR_IA32_MCG_CAP: |
| 2295 | data = vcpu->arch.mcg_cap; |
| 2296 | break; |
| 2297 | case MSR_IA32_MCG_CTL: |
| 2298 | if (!(mcg_cap & MCG_CTL_P)) |
| 2299 | return 1; |
| 2300 | data = vcpu->arch.mcg_ctl; |
| 2301 | break; |
| 2302 | case MSR_IA32_MCG_STATUS: |
| 2303 | data = vcpu->arch.mcg_status; |
| 2304 | break; |
| 2305 | default: |
| 2306 | if (msr >= MSR_IA32_MC0_CTL && |
Chen Yucong | 81760dc | 2014-09-23 10:44:35 +0800 | [diff] [blame] | 2307 | msr < MSR_IA32_MCx_CTL(bank_num)) { |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2308 | u32 offset = msr - MSR_IA32_MC0_CTL; |
| 2309 | data = vcpu->arch.mce_banks[offset]; |
| 2310 | break; |
| 2311 | } |
| 2312 | return 1; |
| 2313 | } |
| 2314 | *pdata = data; |
| 2315 | return 0; |
| 2316 | } |
| 2317 | |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 2318 | static int get_msr_hyperv_pw(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata) |
| 2319 | { |
| 2320 | u64 data = 0; |
| 2321 | struct kvm *kvm = vcpu->kvm; |
| 2322 | |
| 2323 | switch (msr) { |
| 2324 | case HV_X64_MSR_GUEST_OS_ID: |
| 2325 | data = kvm->arch.hv_guest_os_id; |
| 2326 | break; |
| 2327 | case HV_X64_MSR_HYPERCALL: |
| 2328 | data = kvm->arch.hv_hypercall; |
| 2329 | break; |
Vadim Rozenfeld | e984097 | 2014-01-16 20:18:37 +1100 | [diff] [blame] | 2330 | case HV_X64_MSR_TIME_REF_COUNT: { |
| 2331 | data = |
| 2332 | div_u64(get_kernel_ns() + kvm->arch.kvmclock_offset, 100); |
| 2333 | break; |
| 2334 | } |
| 2335 | case HV_X64_MSR_REFERENCE_TSC: |
| 2336 | data = kvm->arch.hv_tsc_page; |
| 2337 | break; |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 2338 | default: |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2339 | vcpu_unimpl(vcpu, "Hyper-V unhandled rdmsr: 0x%x\n", msr); |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 2340 | return 1; |
| 2341 | } |
| 2342 | |
| 2343 | *pdata = data; |
| 2344 | return 0; |
| 2345 | } |
| 2346 | |
| 2347 | static int get_msr_hyperv(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata) |
| 2348 | { |
| 2349 | u64 data = 0; |
| 2350 | |
| 2351 | switch (msr) { |
| 2352 | case HV_X64_MSR_VP_INDEX: { |
| 2353 | int r; |
| 2354 | struct kvm_vcpu *v; |
Takuya Yoshikawa | 684851a | 2014-02-27 15:08:31 +0900 | [diff] [blame] | 2355 | kvm_for_each_vcpu(r, v, vcpu->kvm) { |
| 2356 | if (v == vcpu) { |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 2357 | data = r; |
Takuya Yoshikawa | 684851a | 2014-02-27 15:08:31 +0900 | [diff] [blame] | 2358 | break; |
| 2359 | } |
| 2360 | } |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 2361 | break; |
| 2362 | } |
Gleb Natapov | 10388a0 | 2010-01-17 15:51:23 +0200 | [diff] [blame] | 2363 | case HV_X64_MSR_EOI: |
| 2364 | return kvm_hv_vapic_msr_read(vcpu, APIC_EOI, pdata); |
| 2365 | case HV_X64_MSR_ICR: |
| 2366 | return kvm_hv_vapic_msr_read(vcpu, APIC_ICR, pdata); |
| 2367 | case HV_X64_MSR_TPR: |
| 2368 | return kvm_hv_vapic_msr_read(vcpu, APIC_TASKPRI, pdata); |
Mike Waychison | 14fa67e | 2011-07-21 15:38:10 -0700 | [diff] [blame] | 2369 | case HV_X64_MSR_APIC_ASSIST_PAGE: |
Mike Waychison | d1613ad | 2011-07-23 00:31:45 -0700 | [diff] [blame] | 2370 | data = vcpu->arch.hv_vapic; |
| 2371 | break; |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 2372 | default: |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2373 | vcpu_unimpl(vcpu, "Hyper-V unhandled rdmsr: 0x%x\n", msr); |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 2374 | return 1; |
| 2375 | } |
| 2376 | *pdata = data; |
| 2377 | return 0; |
| 2378 | } |
| 2379 | |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2380 | int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info) |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2381 | { |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2382 | switch (msr_info->index) { |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2383 | case MSR_IA32_PLATFORM_ID: |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2384 | case MSR_IA32_EBL_CR_POWERON: |
Alexander Graf | b5e2fec | 2008-07-22 08:00:45 +0200 | [diff] [blame] | 2385 | case MSR_IA32_DEBUGCTLMSR: |
| 2386 | case MSR_IA32_LASTBRANCHFROMIP: |
| 2387 | case MSR_IA32_LASTBRANCHTOIP: |
| 2388 | case MSR_IA32_LASTINTFROMIP: |
| 2389 | case MSR_IA32_LASTINTTOIP: |
Jaswinder Singh Rajput | 60af2ec | 2009-05-14 11:00:10 +0530 | [diff] [blame] | 2390 | case MSR_K8_SYSCFG: |
| 2391 | case MSR_K7_HWCR: |
Avi Kivity | 61a6bd6 | 2008-12-29 17:32:28 +0200 | [diff] [blame] | 2392 | case MSR_VM_HSAVE_PA: |
Andre Przywara | 1fdbd48 | 2009-06-24 12:44:34 +0200 | [diff] [blame] | 2393 | case MSR_K8_INT_PENDING_MSG: |
Andre Przywara | c323c0e | 2009-06-24 15:37:05 +0200 | [diff] [blame] | 2394 | case MSR_AMD64_NB_CFG: |
Andre Przywara | f7c6d14 | 2009-07-02 15:04:14 +0200 | [diff] [blame] | 2395 | case MSR_FAM10H_MMIO_CONF_BASE: |
Borislav Petkov | 2e32b71 | 2013-02-19 19:33:13 +0100 | [diff] [blame] | 2396 | case MSR_AMD64_BU_CFG2: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2397 | msr_info->data = 0; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2398 | break; |
Wei Huang | 6912ac3 | 2015-06-12 01:34:56 -0400 | [diff] [blame] | 2399 | case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3: |
| 2400 | case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3: |
| 2401 | case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1: |
| 2402 | case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1: |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 2403 | if (kvm_pmu_is_valid_msr(vcpu, msr_info->index)) |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2404 | return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data); |
| 2405 | msr_info->data = 0; |
Gleb Natapov | 5753785 | 2012-01-15 14:17:22 +0200 | [diff] [blame] | 2406 | break; |
Marcelo Tosatti | 742bc67 | 2011-07-29 19:44:21 -0300 | [diff] [blame] | 2407 | case MSR_IA32_UCODE_REV: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2408 | msr_info->data = 0x100000000ULL; |
Marcelo Tosatti | 742bc67 | 2011-07-29 19:44:21 -0300 | [diff] [blame] | 2409 | break; |
Avi Kivity | 9ba075a | 2008-05-26 20:06:35 +0300 | [diff] [blame] | 2410 | case MSR_MTRRcap: |
Avi Kivity | 9ba075a | 2008-05-26 20:06:35 +0300 | [diff] [blame] | 2411 | case 0x200 ... 0x2ff: |
Xiao Guangrong | ff53604 | 2015-06-15 16:55:22 +0800 | [diff] [blame] | 2412 | return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data); |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2413 | case 0xcd: /* fsb frequency */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2414 | msr_info->data = 3; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2415 | break; |
Jes Sorensen | 7b91409 | 2010-09-09 12:06:46 +0200 | [diff] [blame] | 2416 | /* |
| 2417 | * MSR_EBC_FREQUENCY_ID |
| 2418 | * Conservative value valid for even the basic CPU models. |
| 2419 | * Models 0,1: 000 in bits 23:21 indicating a bus speed of |
| 2420 | * 100MHz, model 2 000 in bits 18:16 indicating 100MHz, |
| 2421 | * and 266MHz for model 3, or 4. Set Core Clock |
| 2422 | * Frequency to System Bus Frequency Ratio to 1 (bits |
| 2423 | * 31:24) even though these are only valid for CPU |
| 2424 | * models > 2, however guests may end up dividing or |
| 2425 | * multiplying by zero otherwise. |
| 2426 | */ |
| 2427 | case MSR_EBC_FREQUENCY_ID: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2428 | msr_info->data = 1 << 24; |
Jes Sorensen | 7b91409 | 2010-09-09 12:06:46 +0200 | [diff] [blame] | 2429 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2430 | case MSR_IA32_APICBASE: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2431 | msr_info->data = kvm_get_apic_base(vcpu); |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2432 | break; |
Gleb Natapov | 0105d1a | 2009-07-05 17:39:36 +0300 | [diff] [blame] | 2433 | case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2434 | return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data); |
Gleb Natapov | 0105d1a | 2009-07-05 17:39:36 +0300 | [diff] [blame] | 2435 | break; |
Liu, Jinsong | a3e06bb | 2011-09-22 16:55:52 +0800 | [diff] [blame] | 2436 | case MSR_IA32_TSCDEADLINE: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2437 | msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu); |
Liu, Jinsong | a3e06bb | 2011-09-22 16:55:52 +0800 | [diff] [blame] | 2438 | break; |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 2439 | case MSR_IA32_TSC_ADJUST: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2440 | msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr; |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 2441 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2442 | case MSR_IA32_MISC_ENABLE: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2443 | msr_info->data = vcpu->arch.ia32_misc_enable_msr; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2444 | break; |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 2445 | case MSR_IA32_SMBASE: |
| 2446 | if (!msr_info->host_initiated) |
| 2447 | return 1; |
| 2448 | msr_info->data = vcpu->arch.smbase; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2449 | break; |
Alexander Graf | 847f0ad | 2008-02-21 12:11:01 +0100 | [diff] [blame] | 2450 | case MSR_IA32_PERF_STATUS: |
| 2451 | /* TSC increment by tick */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2452 | msr_info->data = 1000ULL; |
Alexander Graf | 847f0ad | 2008-02-21 12:11:01 +0100 | [diff] [blame] | 2453 | /* CPU multiplier */ |
Nicolas Iooss | b0996ae | 2015-06-29 18:39:23 +0800 | [diff] [blame] | 2454 | msr_info->data |= (((uint64_t)4ULL) << 40); |
Alexander Graf | 847f0ad | 2008-02-21 12:11:01 +0100 | [diff] [blame] | 2455 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2456 | case MSR_EFER: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2457 | msr_info->data = vcpu->arch.efer; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2458 | break; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2459 | case MSR_KVM_WALL_CLOCK: |
Glauber Costa | 11c6bff | 2010-05-11 12:17:41 -0400 | [diff] [blame] | 2460 | case MSR_KVM_WALL_CLOCK_NEW: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2461 | msr_info->data = vcpu->kvm->arch.wall_clock; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2462 | break; |
| 2463 | case MSR_KVM_SYSTEM_TIME: |
Glauber Costa | 11c6bff | 2010-05-11 12:17:41 -0400 | [diff] [blame] | 2464 | case MSR_KVM_SYSTEM_TIME_NEW: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2465 | msr_info->data = vcpu->arch.time; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2466 | break; |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 2467 | case MSR_KVM_ASYNC_PF_EN: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2468 | msr_info->data = vcpu->arch.apf.msr_val; |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 2469 | break; |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2470 | case MSR_KVM_STEAL_TIME: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2471 | msr_info->data = vcpu->arch.st.msr_val; |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2472 | break; |
Michael S. Tsirkin | 1d92128 | 2012-08-26 18:00:29 +0300 | [diff] [blame] | 2473 | case MSR_KVM_PV_EOI_EN: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2474 | msr_info->data = vcpu->arch.pv_eoi.msr_val; |
Michael S. Tsirkin | 1d92128 | 2012-08-26 18:00:29 +0300 | [diff] [blame] | 2475 | break; |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2476 | case MSR_IA32_P5_MC_ADDR: |
| 2477 | case MSR_IA32_P5_MC_TYPE: |
| 2478 | case MSR_IA32_MCG_CAP: |
| 2479 | case MSR_IA32_MCG_CTL: |
| 2480 | case MSR_IA32_MCG_STATUS: |
Chen Yucong | 81760dc | 2014-09-23 10:44:35 +0800 | [diff] [blame] | 2481 | case MSR_IA32_MC0_CTL ... MSR_IA32_MCx_CTL(KVM_MAX_MCE_BANKS) - 1: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2482 | return get_msr_mce(vcpu, msr_info->index, &msr_info->data); |
Jes Sorensen | 84e0cef | 2010-09-01 11:42:04 +0200 | [diff] [blame] | 2483 | case MSR_K7_CLK_CTL: |
| 2484 | /* |
| 2485 | * Provide expected ramp-up count for K7. All other |
| 2486 | * are set to zero, indicating minimum divisors for |
| 2487 | * every field. |
| 2488 | * |
| 2489 | * This prevents guest kernels on AMD host with CPU |
| 2490 | * type 6, model 8 and higher from exploding due to |
| 2491 | * the rdmsr failing. |
| 2492 | */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2493 | msr_info->data = 0x20000000; |
Jes Sorensen | 84e0cef | 2010-09-01 11:42:04 +0200 | [diff] [blame] | 2494 | break; |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 2495 | case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2496 | if (kvm_hv_msr_partition_wide(msr_info->index)) { |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 2497 | int r; |
| 2498 | mutex_lock(&vcpu->kvm->lock); |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2499 | r = get_msr_hyperv_pw(vcpu, msr_info->index, &msr_info->data); |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 2500 | mutex_unlock(&vcpu->kvm->lock); |
| 2501 | return r; |
| 2502 | } else |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2503 | return get_msr_hyperv(vcpu, msr_info->index, &msr_info->data); |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 2504 | break; |
john cooper | 91c9c3e | 2011-01-21 00:21:00 -0500 | [diff] [blame] | 2505 | case MSR_IA32_BBL_CR_CTL3: |
| 2506 | /* This legacy MSR exists but isn't fully documented in current |
| 2507 | * silicon. It is however accessed by winxp in very narrow |
| 2508 | * scenarios where it sets bit #19, itself documented as |
| 2509 | * a "reserved" bit. Best effort attempt to source coherent |
| 2510 | * read data here should the balance of the register be |
| 2511 | * interpreted by the guest: |
| 2512 | * |
| 2513 | * L2 cache control register 3: 64GB range, 256KB size, |
| 2514 | * enabled, latency 0x1, configured |
| 2515 | */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2516 | msr_info->data = 0xbe702111; |
john cooper | 91c9c3e | 2011-01-21 00:21:00 -0500 | [diff] [blame] | 2517 | break; |
Boris Ostrovsky | 2b036c6 | 2012-01-09 14:00:35 -0500 | [diff] [blame] | 2518 | case MSR_AMD64_OSVW_ID_LENGTH: |
| 2519 | if (!guest_cpuid_has_osvw(vcpu)) |
| 2520 | return 1; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2521 | msr_info->data = vcpu->arch.osvw.length; |
Boris Ostrovsky | 2b036c6 | 2012-01-09 14:00:35 -0500 | [diff] [blame] | 2522 | break; |
| 2523 | case MSR_AMD64_OSVW_STATUS: |
| 2524 | if (!guest_cpuid_has_osvw(vcpu)) |
| 2525 | return 1; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2526 | msr_info->data = vcpu->arch.osvw.status; |
Boris Ostrovsky | 2b036c6 | 2012-01-09 14:00:35 -0500 | [diff] [blame] | 2527 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2528 | default: |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 2529 | if (kvm_pmu_is_valid_msr(vcpu, msr_info->index)) |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2530 | return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data); |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 2531 | if (!ignore_msrs) { |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2532 | vcpu_unimpl(vcpu, "unhandled rdmsr: 0x%x\n", msr_info->index); |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 2533 | return 1; |
| 2534 | } else { |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2535 | vcpu_unimpl(vcpu, "ignored rdmsr: 0x%x\n", msr_info->index); |
| 2536 | msr_info->data = 0; |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 2537 | } |
| 2538 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2539 | } |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2540 | return 0; |
| 2541 | } |
| 2542 | EXPORT_SYMBOL_GPL(kvm_get_msr_common); |
| 2543 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2544 | /* |
| 2545 | * Read or write a bunch of msrs. All parameters are kernel addresses. |
| 2546 | * |
| 2547 | * @return number of msrs set successfully. |
| 2548 | */ |
| 2549 | static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs, |
| 2550 | struct kvm_msr_entry *entries, |
| 2551 | int (*do_msr)(struct kvm_vcpu *vcpu, |
| 2552 | unsigned index, u64 *data)) |
| 2553 | { |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 2554 | int i, idx; |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2555 | |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 2556 | idx = srcu_read_lock(&vcpu->kvm->srcu); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2557 | for (i = 0; i < msrs->nmsrs; ++i) |
| 2558 | if (do_msr(vcpu, entries[i].index, &entries[i].data)) |
| 2559 | break; |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 2560 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2561 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2562 | return i; |
| 2563 | } |
| 2564 | |
| 2565 | /* |
| 2566 | * Read or write a bunch of msrs. Parameters are user addresses. |
| 2567 | * |
| 2568 | * @return number of msrs set successfully. |
| 2569 | */ |
| 2570 | static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs, |
| 2571 | int (*do_msr)(struct kvm_vcpu *vcpu, |
| 2572 | unsigned index, u64 *data), |
| 2573 | int writeback) |
| 2574 | { |
| 2575 | struct kvm_msrs msrs; |
| 2576 | struct kvm_msr_entry *entries; |
| 2577 | int r, n; |
| 2578 | unsigned size; |
| 2579 | |
| 2580 | r = -EFAULT; |
| 2581 | if (copy_from_user(&msrs, user_msrs, sizeof msrs)) |
| 2582 | goto out; |
| 2583 | |
| 2584 | r = -E2BIG; |
| 2585 | if (msrs.nmsrs >= MAX_IO_MSRS) |
| 2586 | goto out; |
| 2587 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2588 | size = sizeof(struct kvm_msr_entry) * msrs.nmsrs; |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 2589 | entries = memdup_user(user_msrs->entries, size); |
| 2590 | if (IS_ERR(entries)) { |
| 2591 | r = PTR_ERR(entries); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2592 | goto out; |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 2593 | } |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2594 | |
| 2595 | r = n = __msr_io(vcpu, &msrs, entries, do_msr); |
| 2596 | if (r < 0) |
| 2597 | goto out_free; |
| 2598 | |
| 2599 | r = -EFAULT; |
| 2600 | if (writeback && copy_to_user(user_msrs->entries, entries, size)) |
| 2601 | goto out_free; |
| 2602 | |
| 2603 | r = n; |
| 2604 | |
| 2605 | out_free: |
Avi Kivity | 7a73c02 | 2010-07-22 23:24:52 +0300 | [diff] [blame] | 2606 | kfree(entries); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2607 | out: |
| 2608 | return r; |
| 2609 | } |
| 2610 | |
Alexander Graf | 784aa3d | 2014-07-14 18:27:35 +0200 | [diff] [blame] | 2611 | int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext) |
Zhang Xiantao | 018d00d | 2007-11-15 23:07:47 +0800 | [diff] [blame] | 2612 | { |
| 2613 | int r; |
| 2614 | |
| 2615 | switch (ext) { |
| 2616 | case KVM_CAP_IRQCHIP: |
| 2617 | case KVM_CAP_HLT: |
| 2618 | case KVM_CAP_MMU_SHADOW_CACHE_CONTROL: |
Zhang Xiantao | 018d00d | 2007-11-15 23:07:47 +0800 | [diff] [blame] | 2619 | case KVM_CAP_SET_TSS_ADDR: |
Dan Kenigsberg | 0771671 | 2007-11-21 17:10:04 +0200 | [diff] [blame] | 2620 | case KVM_CAP_EXT_CPUID: |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 2621 | case KVM_CAP_EXT_EMUL_CPUID: |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 2622 | case KVM_CAP_CLOCKSOURCE: |
Sheng Yang | 7837699 | 2008-01-28 05:10:22 +0800 | [diff] [blame] | 2623 | case KVM_CAP_PIT: |
Marcelo Tosatti | a28e4f5 | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 2624 | case KVM_CAP_NOP_IO_DELAY: |
Marcelo Tosatti | 62d9f0d | 2008-04-11 13:24:45 -0300 | [diff] [blame] | 2625 | case KVM_CAP_MP_STATE: |
Avi Kivity | ed84862 | 2008-07-29 11:30:57 +0300 | [diff] [blame] | 2626 | case KVM_CAP_SYNC_MMU: |
Lai Jiangshan | a355c85 | 2010-12-14 17:57:47 +0800 | [diff] [blame] | 2627 | case KVM_CAP_USER_NMI: |
Marcelo Tosatti | 52d939a | 2008-12-30 15:55:06 -0200 | [diff] [blame] | 2628 | case KVM_CAP_REINJECT_CONTROL: |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 2629 | case KVM_CAP_IRQ_INJECT_STATUS: |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 2630 | case KVM_CAP_IOEVENTFD: |
Michael S. Tsirkin | f848a5a | 2014-03-31 21:50:38 +0300 | [diff] [blame] | 2631 | case KVM_CAP_IOEVENTFD_NO_LENGTH: |
Jan Kiszka | c5ff41c | 2009-05-14 22:42:53 +0200 | [diff] [blame] | 2632 | case KVM_CAP_PIT2: |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 2633 | case KVM_CAP_PIT_STATE2: |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 2634 | case KVM_CAP_SET_IDENTITY_MAP_ADDR: |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 2635 | case KVM_CAP_XEN_HVM: |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 2636 | case KVM_CAP_ADJUST_CLOCK: |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2637 | case KVM_CAP_VCPU_EVENTS: |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 2638 | case KVM_CAP_HYPERV: |
Gleb Natapov | 10388a0 | 2010-01-17 15:51:23 +0200 | [diff] [blame] | 2639 | case KVM_CAP_HYPERV_VAPIC: |
Gleb Natapov | c25bc16 | 2010-01-17 15:51:24 +0200 | [diff] [blame] | 2640 | case KVM_CAP_HYPERV_SPIN: |
Zhai, Edwin | ab9f4ec | 2010-01-29 14:38:44 +0800 | [diff] [blame] | 2641 | case KVM_CAP_PCI_SEGMENT: |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 2642 | case KVM_CAP_DEBUGREGS: |
Jan Kiszka | d2be165 | 2010-02-23 17:47:57 +0100 | [diff] [blame] | 2643 | case KVM_CAP_X86_ROBUST_SINGLESTEP: |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 2644 | case KVM_CAP_XSAVE: |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 2645 | case KVM_CAP_ASYNC_PF: |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 2646 | case KVM_CAP_GET_TSC_KHZ: |
Eric B Munson | 1c0b28c | 2012-03-10 14:37:27 -0500 | [diff] [blame] | 2647 | case KVM_CAP_KVMCLOCK_CTRL: |
Xiao Guangrong | 4d8b81a | 2012-08-21 11:02:51 +0800 | [diff] [blame] | 2648 | case KVM_CAP_READONLY_MEM: |
Paolo Bonzini | 5f66b62 | 2014-01-29 18:10:45 +0100 | [diff] [blame] | 2649 | case KVM_CAP_HYPERV_TIME: |
Gabriel L. Somlo | 100943c | 2014-02-27 23:06:17 -0500 | [diff] [blame] | 2650 | case KVM_CAP_IOAPIC_POLARITY_IGNORED: |
Radim Krčmář | defcf51 | 2015-01-08 15:59:30 +0100 | [diff] [blame] | 2651 | case KVM_CAP_TSC_DEADLINE_TIMER: |
Nadav Amit | 90de4a1 | 2015-04-13 01:53:41 +0300 | [diff] [blame] | 2652 | case KVM_CAP_ENABLE_CAP_VM: |
| 2653 | case KVM_CAP_DISABLE_QUIRKS: |
Alex Williamson | 2a5bab1 | 2013-04-16 13:49:18 -0600 | [diff] [blame] | 2654 | #ifdef CONFIG_KVM_DEVICE_ASSIGNMENT |
| 2655 | case KVM_CAP_ASSIGN_DEV_IRQ: |
| 2656 | case KVM_CAP_PCI_2_3: |
| 2657 | #endif |
Zhang Xiantao | 018d00d | 2007-11-15 23:07:47 +0800 | [diff] [blame] | 2658 | r = 1; |
| 2659 | break; |
Paolo Bonzini | 6d396b5 | 2015-04-01 14:25:33 +0200 | [diff] [blame] | 2660 | case KVM_CAP_X86_SMM: |
| 2661 | /* SMBASE is usually relocated above 1M on modern chipsets, |
| 2662 | * and SMM handlers might indeed rely on 4G segment limits, |
| 2663 | * so do not report SMM to be available if real mode is |
| 2664 | * emulated via vm86 mode. Still, do not go to great lengths |
| 2665 | * to avoid userspace's usage of the feature, because it is a |
| 2666 | * fringe case that is not enabled except via specific settings |
| 2667 | * of the module parameters. |
| 2668 | */ |
| 2669 | r = kvm_x86_ops->cpu_has_high_real_mode_segbase(); |
| 2670 | break; |
Laurent Vivier | 542472b | 2008-05-30 16:05:55 +0200 | [diff] [blame] | 2671 | case KVM_CAP_COALESCED_MMIO: |
| 2672 | r = KVM_COALESCED_MMIO_PAGE_OFFSET; |
| 2673 | break; |
Avi Kivity | 774ead3 | 2007-12-26 13:57:04 +0200 | [diff] [blame] | 2674 | case KVM_CAP_VAPIC: |
| 2675 | r = !kvm_x86_ops->cpu_has_accelerated_tpr(); |
| 2676 | break; |
Avi Kivity | f725230 | 2008-02-20 11:53:16 +0200 | [diff] [blame] | 2677 | case KVM_CAP_NR_VCPUS: |
Sasha Levin | 8c3ba33 | 2011-07-18 17:17:15 +0300 | [diff] [blame] | 2678 | r = KVM_SOFT_MAX_VCPUS; |
| 2679 | break; |
| 2680 | case KVM_CAP_MAX_VCPUS: |
Avi Kivity | f725230 | 2008-02-20 11:53:16 +0200 | [diff] [blame] | 2681 | r = KVM_MAX_VCPUS; |
| 2682 | break; |
Avi Kivity | a988b91 | 2008-02-20 11:59:20 +0200 | [diff] [blame] | 2683 | case KVM_CAP_NR_MEMSLOTS: |
Alex Williamson | bbacc0c | 2012-12-10 10:33:09 -0700 | [diff] [blame] | 2684 | r = KVM_USER_MEM_SLOTS; |
Avi Kivity | a988b91 | 2008-02-20 11:59:20 +0200 | [diff] [blame] | 2685 | break; |
Marcelo Tosatti | a68a6a7 | 2009-10-01 19:28:39 -0300 | [diff] [blame] | 2686 | case KVM_CAP_PV_MMU: /* obsolete */ |
| 2687 | r = 0; |
Marcelo Tosatti | 2f333bc | 2008-02-22 12:21:37 -0500 | [diff] [blame] | 2688 | break; |
Alex Williamson | 4cee4b7 | 2013-04-29 10:54:08 -0600 | [diff] [blame] | 2689 | #ifdef CONFIG_KVM_DEVICE_ASSIGNMENT |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 2690 | case KVM_CAP_IOMMU: |
Joerg Roedel | a1b60c1 | 2011-09-06 18:46:34 +0200 | [diff] [blame] | 2691 | r = iommu_present(&pci_bus_type); |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 2692 | break; |
Alex Williamson | 4cee4b7 | 2013-04-29 10:54:08 -0600 | [diff] [blame] | 2693 | #endif |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2694 | case KVM_CAP_MCE: |
| 2695 | r = KVM_MAX_MCE_BANKS; |
| 2696 | break; |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 2697 | case KVM_CAP_XCRS: |
| 2698 | r = cpu_has_xsave; |
| 2699 | break; |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 2700 | case KVM_CAP_TSC_CONTROL: |
| 2701 | r = kvm_has_tsc_control; |
| 2702 | break; |
Zhang Xiantao | 018d00d | 2007-11-15 23:07:47 +0800 | [diff] [blame] | 2703 | default: |
| 2704 | r = 0; |
| 2705 | break; |
| 2706 | } |
| 2707 | return r; |
| 2708 | |
| 2709 | } |
| 2710 | |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 2711 | long kvm_arch_dev_ioctl(struct file *filp, |
| 2712 | unsigned int ioctl, unsigned long arg) |
| 2713 | { |
| 2714 | void __user *argp = (void __user *)arg; |
| 2715 | long r; |
| 2716 | |
| 2717 | switch (ioctl) { |
| 2718 | case KVM_GET_MSR_INDEX_LIST: { |
| 2719 | struct kvm_msr_list __user *user_msr_list = argp; |
| 2720 | struct kvm_msr_list msr_list; |
| 2721 | unsigned n; |
| 2722 | |
| 2723 | r = -EFAULT; |
| 2724 | if (copy_from_user(&msr_list, user_msr_list, sizeof msr_list)) |
| 2725 | goto out; |
| 2726 | n = msr_list.nmsrs; |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 2727 | msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs; |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 2728 | if (copy_to_user(user_msr_list, &msr_list, sizeof msr_list)) |
| 2729 | goto out; |
| 2730 | r = -E2BIG; |
Jan Kiszka | e125e7b | 2009-07-02 21:45:47 +0200 | [diff] [blame] | 2731 | if (n < msr_list.nmsrs) |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 2732 | goto out; |
| 2733 | r = -EFAULT; |
| 2734 | if (copy_to_user(user_msr_list->indices, &msrs_to_save, |
| 2735 | num_msrs_to_save * sizeof(u32))) |
| 2736 | goto out; |
Jan Kiszka | e125e7b | 2009-07-02 21:45:47 +0200 | [diff] [blame] | 2737 | if (copy_to_user(user_msr_list->indices + num_msrs_to_save, |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 2738 | &emulated_msrs, |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 2739 | num_emulated_msrs * sizeof(u32))) |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 2740 | goto out; |
| 2741 | r = 0; |
| 2742 | break; |
| 2743 | } |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 2744 | case KVM_GET_SUPPORTED_CPUID: |
| 2745 | case KVM_GET_EMULATED_CPUID: { |
Avi Kivity | 674eea0 | 2008-02-11 18:37:23 +0200 | [diff] [blame] | 2746 | struct kvm_cpuid2 __user *cpuid_arg = argp; |
| 2747 | struct kvm_cpuid2 cpuid; |
| 2748 | |
| 2749 | r = -EFAULT; |
| 2750 | if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid)) |
| 2751 | goto out; |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 2752 | |
| 2753 | r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries, |
| 2754 | ioctl); |
Avi Kivity | 674eea0 | 2008-02-11 18:37:23 +0200 | [diff] [blame] | 2755 | if (r) |
| 2756 | goto out; |
| 2757 | |
| 2758 | r = -EFAULT; |
| 2759 | if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid)) |
| 2760 | goto out; |
| 2761 | r = 0; |
| 2762 | break; |
| 2763 | } |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2764 | case KVM_X86_GET_MCE_CAP_SUPPORTED: { |
| 2765 | u64 mce_cap; |
| 2766 | |
| 2767 | mce_cap = KVM_MCE_CAP_SUPPORTED; |
| 2768 | r = -EFAULT; |
| 2769 | if (copy_to_user(argp, &mce_cap, sizeof mce_cap)) |
| 2770 | goto out; |
| 2771 | r = 0; |
| 2772 | break; |
| 2773 | } |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 2774 | default: |
| 2775 | r = -EINVAL; |
| 2776 | } |
| 2777 | out: |
| 2778 | return r; |
| 2779 | } |
| 2780 | |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 2781 | static void wbinvd_ipi(void *garbage) |
| 2782 | { |
| 2783 | wbinvd(); |
| 2784 | } |
| 2785 | |
| 2786 | static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu) |
| 2787 | { |
Alex Williamson | e0f0bbc | 2013-10-30 11:02:30 -0600 | [diff] [blame] | 2788 | return kvm_arch_has_noncoherent_dma(vcpu->kvm); |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 2789 | } |
| 2790 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2791 | void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu) |
| 2792 | { |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 2793 | /* Address WBINVD may be executed by guest */ |
| 2794 | if (need_emulate_wbinvd(vcpu)) { |
| 2795 | if (kvm_x86_ops->has_wbinvd_exit()) |
| 2796 | cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask); |
| 2797 | else if (vcpu->cpu != -1 && vcpu->cpu != cpu) |
| 2798 | smp_call_function_single(vcpu->cpu, |
| 2799 | wbinvd_ipi, NULL, 1); |
| 2800 | } |
| 2801 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2802 | kvm_x86_ops->vcpu_load(vcpu, cpu); |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 2803 | |
| 2804 | /* Apply any externally detected TSC adjustments (due to suspend) */ |
| 2805 | if (unlikely(vcpu->arch.tsc_offset_adjustment)) { |
| 2806 | adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment); |
| 2807 | vcpu->arch.tsc_offset_adjustment = 0; |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 2808 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 2809 | } |
| 2810 | |
Zachary Amsden | 48434c20 | 2010-08-19 22:07:24 -1000 | [diff] [blame] | 2811 | if (unlikely(vcpu->cpu != cpu) || check_tsc_unstable()) { |
Zachary Amsden | 6f526ec | 2012-02-03 15:43:54 -0200 | [diff] [blame] | 2812 | s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 : |
| 2813 | native_read_tsc() - vcpu->arch.last_host_tsc; |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 2814 | if (tsc_delta < 0) |
| 2815 | mark_tsc_unstable("KVM discovered backwards TSC"); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 2816 | if (check_tsc_unstable()) { |
Zachary Amsden | b183aa5 | 2012-02-03 15:43:53 -0200 | [diff] [blame] | 2817 | u64 offset = kvm_x86_ops->compute_tsc_offset(vcpu, |
| 2818 | vcpu->arch.last_guest_tsc); |
| 2819 | kvm_x86_ops->write_tsc_offset(vcpu, offset); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 2820 | vcpu->arch.tsc_catchup = 1; |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 2821 | } |
Marcelo Tosatti | d98d07c | 2012-11-27 23:29:04 -0200 | [diff] [blame] | 2822 | /* |
| 2823 | * On a host with synchronized TSC, there is no need to update |
| 2824 | * kvmclock on vcpu->cpu migration |
| 2825 | */ |
| 2826 | if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1) |
Marcelo Tosatti | 0061d53 | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 2827 | kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 2828 | if (vcpu->cpu != cpu) |
| 2829 | kvm_migrate_timers(vcpu); |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 2830 | vcpu->cpu = cpu; |
Zachary Amsden | 6b7d7e7 | 2009-10-09 16:26:08 -1000 | [diff] [blame] | 2831 | } |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2832 | |
| 2833 | accumulate_steal_time(vcpu); |
| 2834 | kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2835 | } |
| 2836 | |
| 2837 | void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu) |
| 2838 | { |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 2839 | kvm_x86_ops->vcpu_put(vcpu); |
Avi Kivity | 1c11e71 | 2010-05-03 16:05:44 +0300 | [diff] [blame] | 2840 | kvm_put_guest_fpu(vcpu); |
Zachary Amsden | 6f526ec | 2012-02-03 15:43:54 -0200 | [diff] [blame] | 2841 | vcpu->arch.last_host_tsc = native_read_tsc(); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2842 | } |
| 2843 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2844 | static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu, |
| 2845 | struct kvm_lapic_state *s) |
| 2846 | { |
Yang Zhang | 5a71785 | 2013-04-11 19:25:16 +0800 | [diff] [blame] | 2847 | kvm_x86_ops->sync_pir_to_irr(vcpu); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 2848 | memcpy(s->regs, vcpu->arch.apic->regs, sizeof *s); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2849 | |
| 2850 | return 0; |
| 2851 | } |
| 2852 | |
| 2853 | static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu, |
| 2854 | struct kvm_lapic_state *s) |
| 2855 | { |
Gleb Natapov | 64eb062 | 2012-08-08 15:24:36 +0300 | [diff] [blame] | 2856 | kvm_apic_post_state_restore(vcpu, s); |
Gleb Natapov | cb142eb | 2009-08-09 15:17:40 +0300 | [diff] [blame] | 2857 | update_cr8_intercept(vcpu); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2858 | |
| 2859 | return 0; |
| 2860 | } |
| 2861 | |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 2862 | static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, |
| 2863 | struct kvm_interrupt *irq) |
| 2864 | { |
Chen Gang | 02cdb50 | 2013-02-27 11:33:25 +0800 | [diff] [blame] | 2865 | if (irq->irq >= KVM_NR_INTERRUPTS) |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 2866 | return -EINVAL; |
| 2867 | if (irqchip_in_kernel(vcpu->kvm)) |
| 2868 | return -ENXIO; |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 2869 | |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 2870 | kvm_queue_interrupt(vcpu, irq->irq, false); |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 2871 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 2872 | |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 2873 | return 0; |
| 2874 | } |
| 2875 | |
Jan Kiszka | c4abb7c | 2008-09-26 09:30:55 +0200 | [diff] [blame] | 2876 | static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu) |
| 2877 | { |
Jan Kiszka | c4abb7c | 2008-09-26 09:30:55 +0200 | [diff] [blame] | 2878 | kvm_inject_nmi(vcpu); |
Jan Kiszka | c4abb7c | 2008-09-26 09:30:55 +0200 | [diff] [blame] | 2879 | |
| 2880 | return 0; |
| 2881 | } |
| 2882 | |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 2883 | static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu) |
| 2884 | { |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 2885 | kvm_make_request(KVM_REQ_SMI, vcpu); |
| 2886 | |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 2887 | return 0; |
| 2888 | } |
| 2889 | |
Avi Kivity | b209749f | 2007-10-22 16:50:39 +0200 | [diff] [blame] | 2890 | static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu, |
| 2891 | struct kvm_tpr_access_ctl *tac) |
| 2892 | { |
| 2893 | if (tac->flags) |
| 2894 | return -EINVAL; |
| 2895 | vcpu->arch.tpr_access_reporting = !!tac->enabled; |
| 2896 | return 0; |
| 2897 | } |
| 2898 | |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2899 | static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu, |
| 2900 | u64 mcg_cap) |
| 2901 | { |
| 2902 | int r; |
| 2903 | unsigned bank_num = mcg_cap & 0xff, bank; |
| 2904 | |
| 2905 | r = -EINVAL; |
Jan Kiszka | a9e38c3e | 2009-10-23 09:37:00 +0200 | [diff] [blame] | 2906 | if (!bank_num || bank_num >= KVM_MAX_MCE_BANKS) |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2907 | goto out; |
| 2908 | if (mcg_cap & ~(KVM_MCE_CAP_SUPPORTED | 0xff | 0xff0000)) |
| 2909 | goto out; |
| 2910 | r = 0; |
| 2911 | vcpu->arch.mcg_cap = mcg_cap; |
| 2912 | /* Init IA32_MCG_CTL to all 1s */ |
| 2913 | if (mcg_cap & MCG_CTL_P) |
| 2914 | vcpu->arch.mcg_ctl = ~(u64)0; |
| 2915 | /* Init IA32_MCi_CTL to all 1s */ |
| 2916 | for (bank = 0; bank < bank_num; bank++) |
| 2917 | vcpu->arch.mce_banks[bank*4] = ~(u64)0; |
| 2918 | out: |
| 2919 | return r; |
| 2920 | } |
| 2921 | |
| 2922 | static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu, |
| 2923 | struct kvm_x86_mce *mce) |
| 2924 | { |
| 2925 | u64 mcg_cap = vcpu->arch.mcg_cap; |
| 2926 | unsigned bank_num = mcg_cap & 0xff; |
| 2927 | u64 *banks = vcpu->arch.mce_banks; |
| 2928 | |
| 2929 | if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL)) |
| 2930 | return -EINVAL; |
| 2931 | /* |
| 2932 | * if IA32_MCG_CTL is not all 1s, the uncorrected error |
| 2933 | * reporting is disabled |
| 2934 | */ |
| 2935 | if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) && |
| 2936 | vcpu->arch.mcg_ctl != ~(u64)0) |
| 2937 | return 0; |
| 2938 | banks += 4 * mce->bank; |
| 2939 | /* |
| 2940 | * if IA32_MCi_CTL is not all 1s, the uncorrected error |
| 2941 | * reporting is disabled for the bank |
| 2942 | */ |
| 2943 | if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0) |
| 2944 | return 0; |
| 2945 | if (mce->status & MCI_STATUS_UC) { |
| 2946 | if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) || |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 2947 | !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) { |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 2948 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2949 | return 0; |
| 2950 | } |
| 2951 | if (banks[1] & MCI_STATUS_VAL) |
| 2952 | mce->status |= MCI_STATUS_OVER; |
| 2953 | banks[2] = mce->addr; |
| 2954 | banks[3] = mce->misc; |
| 2955 | vcpu->arch.mcg_status = mce->mcg_status; |
| 2956 | banks[1] = mce->status; |
| 2957 | kvm_queue_exception(vcpu, MC_VECTOR); |
| 2958 | } else if (!(banks[1] & MCI_STATUS_VAL) |
| 2959 | || !(banks[1] & MCI_STATUS_UC)) { |
| 2960 | if (banks[1] & MCI_STATUS_VAL) |
| 2961 | mce->status |= MCI_STATUS_OVER; |
| 2962 | banks[2] = mce->addr; |
| 2963 | banks[3] = mce->misc; |
| 2964 | banks[1] = mce->status; |
| 2965 | } else |
| 2966 | banks[1] |= MCI_STATUS_OVER; |
| 2967 | return 0; |
| 2968 | } |
| 2969 | |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2970 | static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu, |
| 2971 | struct kvm_vcpu_events *events) |
| 2972 | { |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 2973 | process_nmi(vcpu); |
Jan Kiszka | 03b82a3 | 2010-02-15 10:45:41 +0100 | [diff] [blame] | 2974 | events->exception.injected = |
| 2975 | vcpu->arch.exception.pending && |
| 2976 | !kvm_exception_is_soft(vcpu->arch.exception.nr); |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2977 | events->exception.nr = vcpu->arch.exception.nr; |
| 2978 | events->exception.has_error_code = vcpu->arch.exception.has_error_code; |
Vasiliy Kulikov | 97e69aa | 2010-10-30 22:54:47 +0400 | [diff] [blame] | 2979 | events->exception.pad = 0; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2980 | events->exception.error_code = vcpu->arch.exception.error_code; |
| 2981 | |
Jan Kiszka | 03b82a3 | 2010-02-15 10:45:41 +0100 | [diff] [blame] | 2982 | events->interrupt.injected = |
| 2983 | vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2984 | events->interrupt.nr = vcpu->arch.interrupt.nr; |
Jan Kiszka | 03b82a3 | 2010-02-15 10:45:41 +0100 | [diff] [blame] | 2985 | events->interrupt.soft = 0; |
Paolo Bonzini | 37ccdcb | 2014-05-20 14:29:47 +0200 | [diff] [blame] | 2986 | events->interrupt.shadow = kvm_x86_ops->get_interrupt_shadow(vcpu); |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2987 | |
| 2988 | events->nmi.injected = vcpu->arch.nmi_injected; |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 2989 | events->nmi.pending = vcpu->arch.nmi_pending != 0; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2990 | events->nmi.masked = kvm_x86_ops->get_nmi_mask(vcpu); |
Vasiliy Kulikov | 97e69aa | 2010-10-30 22:54:47 +0400 | [diff] [blame] | 2991 | events->nmi.pad = 0; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2992 | |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 2993 | events->sipi_vector = 0; /* never valid when reporting to user space */ |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2994 | |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 2995 | events->smi.smm = is_smm(vcpu); |
| 2996 | events->smi.pending = vcpu->arch.smi_pending; |
| 2997 | events->smi.smm_inside_nmi = |
| 2998 | !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK); |
| 2999 | events->smi.latched_init = kvm_lapic_latched_init(vcpu); |
| 3000 | |
Jan Kiszka | dab4b91 | 2009-12-06 18:24:15 +0100 | [diff] [blame] | 3001 | events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 3002 | | KVM_VCPUEVENT_VALID_SHADOW |
| 3003 | | KVM_VCPUEVENT_VALID_SMM); |
Vasiliy Kulikov | 97e69aa | 2010-10-30 22:54:47 +0400 | [diff] [blame] | 3004 | memset(&events->reserved, 0, sizeof(events->reserved)); |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3005 | } |
| 3006 | |
| 3007 | static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu, |
| 3008 | struct kvm_vcpu_events *events) |
| 3009 | { |
Jan Kiszka | dab4b91 | 2009-12-06 18:24:15 +0100 | [diff] [blame] | 3010 | if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 3011 | | KVM_VCPUEVENT_VALID_SIPI_VECTOR |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 3012 | | KVM_VCPUEVENT_VALID_SHADOW |
| 3013 | | KVM_VCPUEVENT_VALID_SMM)) |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3014 | return -EINVAL; |
| 3015 | |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 3016 | process_nmi(vcpu); |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3017 | vcpu->arch.exception.pending = events->exception.injected; |
| 3018 | vcpu->arch.exception.nr = events->exception.nr; |
| 3019 | vcpu->arch.exception.has_error_code = events->exception.has_error_code; |
| 3020 | vcpu->arch.exception.error_code = events->exception.error_code; |
| 3021 | |
| 3022 | vcpu->arch.interrupt.pending = events->interrupt.injected; |
| 3023 | vcpu->arch.interrupt.nr = events->interrupt.nr; |
| 3024 | vcpu->arch.interrupt.soft = events->interrupt.soft; |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 3025 | if (events->flags & KVM_VCPUEVENT_VALID_SHADOW) |
| 3026 | kvm_x86_ops->set_interrupt_shadow(vcpu, |
| 3027 | events->interrupt.shadow); |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3028 | |
| 3029 | vcpu->arch.nmi_injected = events->nmi.injected; |
Jan Kiszka | dab4b91 | 2009-12-06 18:24:15 +0100 | [diff] [blame] | 3030 | if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING) |
| 3031 | vcpu->arch.nmi_pending = events->nmi.pending; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3032 | kvm_x86_ops->set_nmi_mask(vcpu, events->nmi.masked); |
| 3033 | |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 3034 | if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR && |
| 3035 | kvm_vcpu_has_lapic(vcpu)) |
| 3036 | vcpu->arch.apic->sipi_vector = events->sipi_vector; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3037 | |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 3038 | if (events->flags & KVM_VCPUEVENT_VALID_SMM) { |
| 3039 | if (events->smi.smm) |
| 3040 | vcpu->arch.hflags |= HF_SMM_MASK; |
| 3041 | else |
| 3042 | vcpu->arch.hflags &= ~HF_SMM_MASK; |
| 3043 | vcpu->arch.smi_pending = events->smi.pending; |
| 3044 | if (events->smi.smm_inside_nmi) |
| 3045 | vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK; |
| 3046 | else |
| 3047 | vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK; |
| 3048 | if (kvm_vcpu_has_lapic(vcpu)) { |
| 3049 | if (events->smi.latched_init) |
| 3050 | set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events); |
| 3051 | else |
| 3052 | clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events); |
| 3053 | } |
| 3054 | } |
| 3055 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 3056 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 3057 | |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3058 | return 0; |
| 3059 | } |
| 3060 | |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3061 | static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu, |
| 3062 | struct kvm_debugregs *dbgregs) |
| 3063 | { |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 3064 | unsigned long val; |
| 3065 | |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3066 | memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db)); |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 3067 | kvm_get_dr(vcpu, 6, &val); |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 3068 | dbgregs->dr6 = val; |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3069 | dbgregs->dr7 = vcpu->arch.dr7; |
| 3070 | dbgregs->flags = 0; |
Vasiliy Kulikov | 97e69aa | 2010-10-30 22:54:47 +0400 | [diff] [blame] | 3071 | memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved)); |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3072 | } |
| 3073 | |
| 3074 | static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu, |
| 3075 | struct kvm_debugregs *dbgregs) |
| 3076 | { |
| 3077 | if (dbgregs->flags) |
| 3078 | return -EINVAL; |
| 3079 | |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3080 | memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db)); |
Nadav Amit | ae561ed | 2015-04-02 03:10:37 +0300 | [diff] [blame] | 3081 | kvm_update_dr0123(vcpu); |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3082 | vcpu->arch.dr6 = dbgregs->dr6; |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 3083 | kvm_update_dr6(vcpu); |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3084 | vcpu->arch.dr7 = dbgregs->dr7; |
Jan Kiszka | 9926c9f | 2014-01-04 18:47:15 +0100 | [diff] [blame] | 3085 | kvm_update_dr7(vcpu); |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3086 | |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3087 | return 0; |
| 3088 | } |
| 3089 | |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 3090 | #define XSTATE_COMPACTION_ENABLED (1ULL << 63) |
| 3091 | |
| 3092 | static void fill_xsave(u8 *dest, struct kvm_vcpu *vcpu) |
| 3093 | { |
Ingo Molnar | c47ada3 | 2015-04-30 17:15:32 +0200 | [diff] [blame] | 3094 | struct xregs_state *xsave = &vcpu->arch.guest_fpu.state.xsave; |
Ingo Molnar | 400e4b2 | 2015-04-24 10:19:47 +0200 | [diff] [blame] | 3095 | u64 xstate_bv = xsave->header.xfeatures; |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 3096 | u64 valid; |
| 3097 | |
| 3098 | /* |
| 3099 | * Copy legacy XSAVE area, to avoid complications with CPUID |
| 3100 | * leaves 0 and 1 in the loop below. |
| 3101 | */ |
| 3102 | memcpy(dest, xsave, XSAVE_HDR_OFFSET); |
| 3103 | |
| 3104 | /* Set XSTATE_BV */ |
| 3105 | *(u64 *)(dest + XSAVE_HDR_OFFSET) = xstate_bv; |
| 3106 | |
| 3107 | /* |
| 3108 | * Copy each region from the possibly compacted offset to the |
| 3109 | * non-compacted offset. |
| 3110 | */ |
| 3111 | valid = xstate_bv & ~XSTATE_FPSSE; |
| 3112 | while (valid) { |
| 3113 | u64 feature = valid & -valid; |
| 3114 | int index = fls64(feature) - 1; |
| 3115 | void *src = get_xsave_addr(xsave, feature); |
| 3116 | |
| 3117 | if (src) { |
| 3118 | u32 size, offset, ecx, edx; |
| 3119 | cpuid_count(XSTATE_CPUID, index, |
| 3120 | &size, &offset, &ecx, &edx); |
| 3121 | memcpy(dest + offset, src, size); |
| 3122 | } |
| 3123 | |
| 3124 | valid -= feature; |
| 3125 | } |
| 3126 | } |
| 3127 | |
| 3128 | static void load_xsave(struct kvm_vcpu *vcpu, u8 *src) |
| 3129 | { |
Ingo Molnar | c47ada3 | 2015-04-30 17:15:32 +0200 | [diff] [blame] | 3130 | struct xregs_state *xsave = &vcpu->arch.guest_fpu.state.xsave; |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 3131 | u64 xstate_bv = *(u64 *)(src + XSAVE_HDR_OFFSET); |
| 3132 | u64 valid; |
| 3133 | |
| 3134 | /* |
| 3135 | * Copy legacy XSAVE area, to avoid complications with CPUID |
| 3136 | * leaves 0 and 1 in the loop below. |
| 3137 | */ |
| 3138 | memcpy(xsave, src, XSAVE_HDR_OFFSET); |
| 3139 | |
| 3140 | /* Set XSTATE_BV and possibly XCOMP_BV. */ |
Ingo Molnar | 400e4b2 | 2015-04-24 10:19:47 +0200 | [diff] [blame] | 3141 | xsave->header.xfeatures = xstate_bv; |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 3142 | if (cpu_has_xsaves) |
Ingo Molnar | 3a54450 | 2015-04-24 10:14:36 +0200 | [diff] [blame] | 3143 | xsave->header.xcomp_bv = host_xcr0 | XSTATE_COMPACTION_ENABLED; |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 3144 | |
| 3145 | /* |
| 3146 | * Copy each region from the non-compacted offset to the |
| 3147 | * possibly compacted offset. |
| 3148 | */ |
| 3149 | valid = xstate_bv & ~XSTATE_FPSSE; |
| 3150 | while (valid) { |
| 3151 | u64 feature = valid & -valid; |
| 3152 | int index = fls64(feature) - 1; |
| 3153 | void *dest = get_xsave_addr(xsave, feature); |
| 3154 | |
| 3155 | if (dest) { |
| 3156 | u32 size, offset, ecx, edx; |
| 3157 | cpuid_count(XSTATE_CPUID, index, |
| 3158 | &size, &offset, &ecx, &edx); |
| 3159 | memcpy(dest, src + offset, size); |
| 3160 | } else |
| 3161 | WARN_ON_ONCE(1); |
| 3162 | |
| 3163 | valid -= feature; |
| 3164 | } |
| 3165 | } |
| 3166 | |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3167 | static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu, |
| 3168 | struct kvm_xsave *guest_xsave) |
| 3169 | { |
Paolo Bonzini | 4344ee9 | 2013-10-02 16:06:16 +0200 | [diff] [blame] | 3170 | if (cpu_has_xsave) { |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 3171 | memset(guest_xsave, 0, sizeof(struct kvm_xsave)); |
| 3172 | fill_xsave((u8 *) guest_xsave->region, vcpu); |
Paolo Bonzini | 4344ee9 | 2013-10-02 16:06:16 +0200 | [diff] [blame] | 3173 | } else { |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3174 | memcpy(guest_xsave->region, |
Ingo Molnar | 7366ed7 | 2015-04-27 04:19:39 +0200 | [diff] [blame] | 3175 | &vcpu->arch.guest_fpu.state.fxsave, |
Ingo Molnar | c47ada3 | 2015-04-30 17:15:32 +0200 | [diff] [blame] | 3176 | sizeof(struct fxregs_state)); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3177 | *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)] = |
| 3178 | XSTATE_FPSSE; |
| 3179 | } |
| 3180 | } |
| 3181 | |
| 3182 | static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu, |
| 3183 | struct kvm_xsave *guest_xsave) |
| 3184 | { |
| 3185 | u64 xstate_bv = |
| 3186 | *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)]; |
| 3187 | |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 3188 | if (cpu_has_xsave) { |
| 3189 | /* |
| 3190 | * Here we allow setting states that are not present in |
| 3191 | * CPUID leaf 0xD, index 0, EDX:EAX. This is for compatibility |
| 3192 | * with old userspace. |
| 3193 | */ |
Paolo Bonzini | 4ff4173 | 2014-02-24 12:15:16 +0100 | [diff] [blame] | 3194 | if (xstate_bv & ~kvm_supported_xcr0()) |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 3195 | return -EINVAL; |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 3196 | load_xsave(vcpu, (u8 *)guest_xsave->region); |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 3197 | } else { |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3198 | if (xstate_bv & ~XSTATE_FPSSE) |
| 3199 | return -EINVAL; |
Ingo Molnar | 7366ed7 | 2015-04-27 04:19:39 +0200 | [diff] [blame] | 3200 | memcpy(&vcpu->arch.guest_fpu.state.fxsave, |
Ingo Molnar | c47ada3 | 2015-04-30 17:15:32 +0200 | [diff] [blame] | 3201 | guest_xsave->region, sizeof(struct fxregs_state)); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3202 | } |
| 3203 | return 0; |
| 3204 | } |
| 3205 | |
| 3206 | static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu, |
| 3207 | struct kvm_xcrs *guest_xcrs) |
| 3208 | { |
| 3209 | if (!cpu_has_xsave) { |
| 3210 | guest_xcrs->nr_xcrs = 0; |
| 3211 | return; |
| 3212 | } |
| 3213 | |
| 3214 | guest_xcrs->nr_xcrs = 1; |
| 3215 | guest_xcrs->flags = 0; |
| 3216 | guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK; |
| 3217 | guest_xcrs->xcrs[0].value = vcpu->arch.xcr0; |
| 3218 | } |
| 3219 | |
| 3220 | static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu, |
| 3221 | struct kvm_xcrs *guest_xcrs) |
| 3222 | { |
| 3223 | int i, r = 0; |
| 3224 | |
| 3225 | if (!cpu_has_xsave) |
| 3226 | return -EINVAL; |
| 3227 | |
| 3228 | if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags) |
| 3229 | return -EINVAL; |
| 3230 | |
| 3231 | for (i = 0; i < guest_xcrs->nr_xcrs; i++) |
| 3232 | /* Only support XCR0 currently */ |
Paolo Bonzini | c67a04c | 2013-10-17 16:50:47 +0200 | [diff] [blame] | 3233 | if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) { |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3234 | r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK, |
Paolo Bonzini | c67a04c | 2013-10-17 16:50:47 +0200 | [diff] [blame] | 3235 | guest_xcrs->xcrs[i].value); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3236 | break; |
| 3237 | } |
| 3238 | if (r) |
| 3239 | r = -EINVAL; |
| 3240 | return r; |
| 3241 | } |
| 3242 | |
Eric B Munson | 1c0b28c | 2012-03-10 14:37:27 -0500 | [diff] [blame] | 3243 | /* |
| 3244 | * kvm_set_guest_paused() indicates to the guest kernel that it has been |
| 3245 | * stopped by the hypervisor. This function will be called from the host only. |
| 3246 | * EINVAL is returned when the host attempts to set the flag for a guest that |
| 3247 | * does not support pv clocks. |
| 3248 | */ |
| 3249 | static int kvm_set_guest_paused(struct kvm_vcpu *vcpu) |
| 3250 | { |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 3251 | if (!vcpu->arch.pv_time_enabled) |
Eric B Munson | 1c0b28c | 2012-03-10 14:37:27 -0500 | [diff] [blame] | 3252 | return -EINVAL; |
Marcelo Tosatti | 51d59c6 | 2012-08-03 15:57:49 -0300 | [diff] [blame] | 3253 | vcpu->arch.pvclock_set_guest_stopped_request = true; |
Eric B Munson | 1c0b28c | 2012-03-10 14:37:27 -0500 | [diff] [blame] | 3254 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
| 3255 | return 0; |
| 3256 | } |
| 3257 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3258 | long kvm_arch_vcpu_ioctl(struct file *filp, |
| 3259 | unsigned int ioctl, unsigned long arg) |
| 3260 | { |
| 3261 | struct kvm_vcpu *vcpu = filp->private_data; |
| 3262 | void __user *argp = (void __user *)arg; |
| 3263 | int r; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3264 | union { |
| 3265 | struct kvm_lapic_state *lapic; |
| 3266 | struct kvm_xsave *xsave; |
| 3267 | struct kvm_xcrs *xcrs; |
| 3268 | void *buffer; |
| 3269 | } u; |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3270 | |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3271 | u.buffer = NULL; |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3272 | switch (ioctl) { |
| 3273 | case KVM_GET_LAPIC: { |
Marcelo Tosatti | 2204ae3 | 2009-10-29 13:44:16 -0200 | [diff] [blame] | 3274 | r = -EINVAL; |
| 3275 | if (!vcpu->arch.apic) |
| 3276 | goto out; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3277 | u.lapic = kzalloc(sizeof(struct kvm_lapic_state), GFP_KERNEL); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3278 | |
Dave Hansen | b772ff3 | 2008-08-11 10:01:47 -0700 | [diff] [blame] | 3279 | r = -ENOMEM; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3280 | if (!u.lapic) |
Dave Hansen | b772ff3 | 2008-08-11 10:01:47 -0700 | [diff] [blame] | 3281 | goto out; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3282 | r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3283 | if (r) |
| 3284 | goto out; |
| 3285 | r = -EFAULT; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3286 | if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state))) |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3287 | goto out; |
| 3288 | r = 0; |
| 3289 | break; |
| 3290 | } |
| 3291 | case KVM_SET_LAPIC: { |
Marcelo Tosatti | 2204ae3 | 2009-10-29 13:44:16 -0200 | [diff] [blame] | 3292 | r = -EINVAL; |
| 3293 | if (!vcpu->arch.apic) |
| 3294 | goto out; |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 3295 | u.lapic = memdup_user(argp, sizeof(*u.lapic)); |
Guo Chao | 1859541 | 2012-11-02 18:33:21 +0800 | [diff] [blame] | 3296 | if (IS_ERR(u.lapic)) |
| 3297 | return PTR_ERR(u.lapic); |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 3298 | |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3299 | r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3300 | break; |
| 3301 | } |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 3302 | case KVM_INTERRUPT: { |
| 3303 | struct kvm_interrupt irq; |
| 3304 | |
| 3305 | r = -EFAULT; |
| 3306 | if (copy_from_user(&irq, argp, sizeof irq)) |
| 3307 | goto out; |
| 3308 | r = kvm_vcpu_ioctl_interrupt(vcpu, &irq); |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 3309 | break; |
| 3310 | } |
Jan Kiszka | c4abb7c | 2008-09-26 09:30:55 +0200 | [diff] [blame] | 3311 | case KVM_NMI: { |
| 3312 | r = kvm_vcpu_ioctl_nmi(vcpu); |
Jan Kiszka | c4abb7c | 2008-09-26 09:30:55 +0200 | [diff] [blame] | 3313 | break; |
| 3314 | } |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 3315 | case KVM_SMI: { |
| 3316 | r = kvm_vcpu_ioctl_smi(vcpu); |
| 3317 | break; |
| 3318 | } |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3319 | case KVM_SET_CPUID: { |
| 3320 | struct kvm_cpuid __user *cpuid_arg = argp; |
| 3321 | struct kvm_cpuid cpuid; |
| 3322 | |
| 3323 | r = -EFAULT; |
| 3324 | if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid)) |
| 3325 | goto out; |
| 3326 | r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3327 | break; |
| 3328 | } |
Dan Kenigsberg | 0771671 | 2007-11-21 17:10:04 +0200 | [diff] [blame] | 3329 | case KVM_SET_CPUID2: { |
| 3330 | struct kvm_cpuid2 __user *cpuid_arg = argp; |
| 3331 | struct kvm_cpuid2 cpuid; |
| 3332 | |
| 3333 | r = -EFAULT; |
| 3334 | if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid)) |
| 3335 | goto out; |
| 3336 | r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid, |
Amit Shah | 1935547 | 2009-01-14 16:56:00 +0000 | [diff] [blame] | 3337 | cpuid_arg->entries); |
Dan Kenigsberg | 0771671 | 2007-11-21 17:10:04 +0200 | [diff] [blame] | 3338 | break; |
| 3339 | } |
| 3340 | case KVM_GET_CPUID2: { |
| 3341 | struct kvm_cpuid2 __user *cpuid_arg = argp; |
| 3342 | struct kvm_cpuid2 cpuid; |
| 3343 | |
| 3344 | r = -EFAULT; |
| 3345 | if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid)) |
| 3346 | goto out; |
| 3347 | r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid, |
Amit Shah | 1935547 | 2009-01-14 16:56:00 +0000 | [diff] [blame] | 3348 | cpuid_arg->entries); |
Dan Kenigsberg | 0771671 | 2007-11-21 17:10:04 +0200 | [diff] [blame] | 3349 | if (r) |
| 3350 | goto out; |
| 3351 | r = -EFAULT; |
| 3352 | if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid)) |
| 3353 | goto out; |
| 3354 | r = 0; |
| 3355 | break; |
| 3356 | } |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3357 | case KVM_GET_MSRS: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3358 | r = msr_io(vcpu, argp, do_get_msr, 1); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3359 | break; |
| 3360 | case KVM_SET_MSRS: |
| 3361 | r = msr_io(vcpu, argp, do_set_msr, 0); |
| 3362 | break; |
Avi Kivity | b209749f | 2007-10-22 16:50:39 +0200 | [diff] [blame] | 3363 | case KVM_TPR_ACCESS_REPORTING: { |
| 3364 | struct kvm_tpr_access_ctl tac; |
| 3365 | |
| 3366 | r = -EFAULT; |
| 3367 | if (copy_from_user(&tac, argp, sizeof tac)) |
| 3368 | goto out; |
| 3369 | r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac); |
| 3370 | if (r) |
| 3371 | goto out; |
| 3372 | r = -EFAULT; |
| 3373 | if (copy_to_user(argp, &tac, sizeof tac)) |
| 3374 | goto out; |
| 3375 | r = 0; |
| 3376 | break; |
| 3377 | }; |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 3378 | case KVM_SET_VAPIC_ADDR: { |
| 3379 | struct kvm_vapic_addr va; |
| 3380 | |
| 3381 | r = -EINVAL; |
| 3382 | if (!irqchip_in_kernel(vcpu->kvm)) |
| 3383 | goto out; |
| 3384 | r = -EFAULT; |
| 3385 | if (copy_from_user(&va, argp, sizeof va)) |
| 3386 | goto out; |
Andy Honig | fda4e2e8 | 2013-11-20 10:23:22 -0800 | [diff] [blame] | 3387 | r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr); |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 3388 | break; |
| 3389 | } |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 3390 | case KVM_X86_SETUP_MCE: { |
| 3391 | u64 mcg_cap; |
| 3392 | |
| 3393 | r = -EFAULT; |
| 3394 | if (copy_from_user(&mcg_cap, argp, sizeof mcg_cap)) |
| 3395 | goto out; |
| 3396 | r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap); |
| 3397 | break; |
| 3398 | } |
| 3399 | case KVM_X86_SET_MCE: { |
| 3400 | struct kvm_x86_mce mce; |
| 3401 | |
| 3402 | r = -EFAULT; |
| 3403 | if (copy_from_user(&mce, argp, sizeof mce)) |
| 3404 | goto out; |
| 3405 | r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce); |
| 3406 | break; |
| 3407 | } |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3408 | case KVM_GET_VCPU_EVENTS: { |
| 3409 | struct kvm_vcpu_events events; |
| 3410 | |
| 3411 | kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events); |
| 3412 | |
| 3413 | r = -EFAULT; |
| 3414 | if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events))) |
| 3415 | break; |
| 3416 | r = 0; |
| 3417 | break; |
| 3418 | } |
| 3419 | case KVM_SET_VCPU_EVENTS: { |
| 3420 | struct kvm_vcpu_events events; |
| 3421 | |
| 3422 | r = -EFAULT; |
| 3423 | if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events))) |
| 3424 | break; |
| 3425 | |
| 3426 | r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events); |
| 3427 | break; |
| 3428 | } |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3429 | case KVM_GET_DEBUGREGS: { |
| 3430 | struct kvm_debugregs dbgregs; |
| 3431 | |
| 3432 | kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs); |
| 3433 | |
| 3434 | r = -EFAULT; |
| 3435 | if (copy_to_user(argp, &dbgregs, |
| 3436 | sizeof(struct kvm_debugregs))) |
| 3437 | break; |
| 3438 | r = 0; |
| 3439 | break; |
| 3440 | } |
| 3441 | case KVM_SET_DEBUGREGS: { |
| 3442 | struct kvm_debugregs dbgregs; |
| 3443 | |
| 3444 | r = -EFAULT; |
| 3445 | if (copy_from_user(&dbgregs, argp, |
| 3446 | sizeof(struct kvm_debugregs))) |
| 3447 | break; |
| 3448 | |
| 3449 | r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs); |
| 3450 | break; |
| 3451 | } |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3452 | case KVM_GET_XSAVE: { |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3453 | u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3454 | r = -ENOMEM; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3455 | if (!u.xsave) |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3456 | break; |
| 3457 | |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3458 | kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3459 | |
| 3460 | r = -EFAULT; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3461 | if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave))) |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3462 | break; |
| 3463 | r = 0; |
| 3464 | break; |
| 3465 | } |
| 3466 | case KVM_SET_XSAVE: { |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 3467 | u.xsave = memdup_user(argp, sizeof(*u.xsave)); |
Guo Chao | 1859541 | 2012-11-02 18:33:21 +0800 | [diff] [blame] | 3468 | if (IS_ERR(u.xsave)) |
| 3469 | return PTR_ERR(u.xsave); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3470 | |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3471 | r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3472 | break; |
| 3473 | } |
| 3474 | case KVM_GET_XCRS: { |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3475 | u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3476 | r = -ENOMEM; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3477 | if (!u.xcrs) |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3478 | break; |
| 3479 | |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3480 | kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3481 | |
| 3482 | r = -EFAULT; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3483 | if (copy_to_user(argp, u.xcrs, |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3484 | sizeof(struct kvm_xcrs))) |
| 3485 | break; |
| 3486 | r = 0; |
| 3487 | break; |
| 3488 | } |
| 3489 | case KVM_SET_XCRS: { |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 3490 | u.xcrs = memdup_user(argp, sizeof(*u.xcrs)); |
Guo Chao | 1859541 | 2012-11-02 18:33:21 +0800 | [diff] [blame] | 3491 | if (IS_ERR(u.xcrs)) |
| 3492 | return PTR_ERR(u.xcrs); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3493 | |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3494 | r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3495 | break; |
| 3496 | } |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 3497 | case KVM_SET_TSC_KHZ: { |
| 3498 | u32 user_tsc_khz; |
| 3499 | |
| 3500 | r = -EINVAL; |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 3501 | user_tsc_khz = (u32)arg; |
| 3502 | |
| 3503 | if (user_tsc_khz >= kvm_max_guest_tsc_khz) |
| 3504 | goto out; |
| 3505 | |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 3506 | if (user_tsc_khz == 0) |
| 3507 | user_tsc_khz = tsc_khz; |
| 3508 | |
| 3509 | kvm_set_tsc_khz(vcpu, user_tsc_khz); |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 3510 | |
| 3511 | r = 0; |
| 3512 | goto out; |
| 3513 | } |
| 3514 | case KVM_GET_TSC_KHZ: { |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 3515 | r = vcpu->arch.virtual_tsc_khz; |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 3516 | goto out; |
| 3517 | } |
Eric B Munson | 1c0b28c | 2012-03-10 14:37:27 -0500 | [diff] [blame] | 3518 | case KVM_KVMCLOCK_CTRL: { |
| 3519 | r = kvm_set_guest_paused(vcpu); |
| 3520 | goto out; |
| 3521 | } |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3522 | default: |
| 3523 | r = -EINVAL; |
| 3524 | } |
| 3525 | out: |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3526 | kfree(u.buffer); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3527 | return r; |
| 3528 | } |
| 3529 | |
Carsten Otte | 5b1c149 | 2012-01-04 10:25:23 +0100 | [diff] [blame] | 3530 | int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf) |
| 3531 | { |
| 3532 | return VM_FAULT_SIGBUS; |
| 3533 | } |
| 3534 | |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3535 | static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr) |
| 3536 | { |
| 3537 | int ret; |
| 3538 | |
| 3539 | if (addr > (unsigned int)(-3 * PAGE_SIZE)) |
Guo Chao | 951179c | 2012-11-02 18:33:22 +0800 | [diff] [blame] | 3540 | return -EINVAL; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3541 | ret = kvm_x86_ops->set_tss_addr(kvm, addr); |
| 3542 | return ret; |
| 3543 | } |
| 3544 | |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 3545 | static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm, |
| 3546 | u64 ident_addr) |
| 3547 | { |
| 3548 | kvm->arch.ept_identity_map_addr = ident_addr; |
| 3549 | return 0; |
| 3550 | } |
| 3551 | |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3552 | static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm, |
| 3553 | u32 kvm_nr_mmu_pages) |
| 3554 | { |
| 3555 | if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES) |
| 3556 | return -EINVAL; |
| 3557 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 3558 | mutex_lock(&kvm->slots_lock); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3559 | |
| 3560 | kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages); |
Zhang Xiantao | f05e70a | 2007-12-14 10:01:48 +0800 | [diff] [blame] | 3561 | kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3562 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 3563 | mutex_unlock(&kvm->slots_lock); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3564 | return 0; |
| 3565 | } |
| 3566 | |
| 3567 | static int kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm) |
| 3568 | { |
Dave Hansen | 39de71e | 2010-08-19 18:11:14 -0700 | [diff] [blame] | 3569 | return kvm->arch.n_max_mmu_pages; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3570 | } |
| 3571 | |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3572 | static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip) |
| 3573 | { |
| 3574 | int r; |
| 3575 | |
| 3576 | r = 0; |
| 3577 | switch (chip->chip_id) { |
| 3578 | case KVM_IRQCHIP_PIC_MASTER: |
| 3579 | memcpy(&chip->chip.pic, |
| 3580 | &pic_irqchip(kvm)->pics[0], |
| 3581 | sizeof(struct kvm_pic_state)); |
| 3582 | break; |
| 3583 | case KVM_IRQCHIP_PIC_SLAVE: |
| 3584 | memcpy(&chip->chip.pic, |
| 3585 | &pic_irqchip(kvm)->pics[1], |
| 3586 | sizeof(struct kvm_pic_state)); |
| 3587 | break; |
| 3588 | case KVM_IRQCHIP_IOAPIC: |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 3589 | r = kvm_get_ioapic(kvm, &chip->chip.ioapic); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3590 | break; |
| 3591 | default: |
| 3592 | r = -EINVAL; |
| 3593 | break; |
| 3594 | } |
| 3595 | return r; |
| 3596 | } |
| 3597 | |
| 3598 | static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip) |
| 3599 | { |
| 3600 | int r; |
| 3601 | |
| 3602 | r = 0; |
| 3603 | switch (chip->chip_id) { |
| 3604 | case KVM_IRQCHIP_PIC_MASTER: |
Avi Kivity | f4f5105 | 2010-09-19 18:44:07 +0200 | [diff] [blame] | 3605 | spin_lock(&pic_irqchip(kvm)->lock); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3606 | memcpy(&pic_irqchip(kvm)->pics[0], |
| 3607 | &chip->chip.pic, |
| 3608 | sizeof(struct kvm_pic_state)); |
Avi Kivity | f4f5105 | 2010-09-19 18:44:07 +0200 | [diff] [blame] | 3609 | spin_unlock(&pic_irqchip(kvm)->lock); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3610 | break; |
| 3611 | case KVM_IRQCHIP_PIC_SLAVE: |
Avi Kivity | f4f5105 | 2010-09-19 18:44:07 +0200 | [diff] [blame] | 3612 | spin_lock(&pic_irqchip(kvm)->lock); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3613 | memcpy(&pic_irqchip(kvm)->pics[1], |
| 3614 | &chip->chip.pic, |
| 3615 | sizeof(struct kvm_pic_state)); |
Avi Kivity | f4f5105 | 2010-09-19 18:44:07 +0200 | [diff] [blame] | 3616 | spin_unlock(&pic_irqchip(kvm)->lock); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3617 | break; |
| 3618 | case KVM_IRQCHIP_IOAPIC: |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 3619 | r = kvm_set_ioapic(kvm, &chip->chip.ioapic); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3620 | break; |
| 3621 | default: |
| 3622 | r = -EINVAL; |
| 3623 | break; |
| 3624 | } |
| 3625 | kvm_pic_update_irq(pic_irqchip(kvm)); |
| 3626 | return r; |
| 3627 | } |
| 3628 | |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3629 | static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps) |
| 3630 | { |
| 3631 | int r = 0; |
| 3632 | |
Marcelo Tosatti | 894a9c5 | 2009-06-23 15:05:14 -0300 | [diff] [blame] | 3633 | mutex_lock(&kvm->arch.vpit->pit_state.lock); |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3634 | memcpy(ps, &kvm->arch.vpit->pit_state, sizeof(struct kvm_pit_state)); |
Marcelo Tosatti | 894a9c5 | 2009-06-23 15:05:14 -0300 | [diff] [blame] | 3635 | mutex_unlock(&kvm->arch.vpit->pit_state.lock); |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3636 | return r; |
| 3637 | } |
| 3638 | |
| 3639 | static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps) |
| 3640 | { |
| 3641 | int r = 0; |
| 3642 | |
Marcelo Tosatti | 894a9c5 | 2009-06-23 15:05:14 -0300 | [diff] [blame] | 3643 | mutex_lock(&kvm->arch.vpit->pit_state.lock); |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3644 | memcpy(&kvm->arch.vpit->pit_state, ps, sizeof(struct kvm_pit_state)); |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 3645 | kvm_pit_load_count(kvm, 0, ps->channels[0].count, 0); |
| 3646 | mutex_unlock(&kvm->arch.vpit->pit_state.lock); |
| 3647 | return r; |
| 3648 | } |
| 3649 | |
| 3650 | static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps) |
| 3651 | { |
| 3652 | int r = 0; |
| 3653 | |
| 3654 | mutex_lock(&kvm->arch.vpit->pit_state.lock); |
| 3655 | memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels, |
| 3656 | sizeof(ps->channels)); |
| 3657 | ps->flags = kvm->arch.vpit->pit_state.flags; |
| 3658 | mutex_unlock(&kvm->arch.vpit->pit_state.lock); |
Vasiliy Kulikov | 97e69aa | 2010-10-30 22:54:47 +0400 | [diff] [blame] | 3659 | memset(&ps->reserved, 0, sizeof(ps->reserved)); |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 3660 | return r; |
| 3661 | } |
| 3662 | |
| 3663 | static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps) |
| 3664 | { |
| 3665 | int r = 0, start = 0; |
| 3666 | u32 prev_legacy, cur_legacy; |
| 3667 | mutex_lock(&kvm->arch.vpit->pit_state.lock); |
| 3668 | prev_legacy = kvm->arch.vpit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY; |
| 3669 | cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY; |
| 3670 | if (!prev_legacy && cur_legacy) |
| 3671 | start = 1; |
| 3672 | memcpy(&kvm->arch.vpit->pit_state.channels, &ps->channels, |
| 3673 | sizeof(kvm->arch.vpit->pit_state.channels)); |
| 3674 | kvm->arch.vpit->pit_state.flags = ps->flags; |
| 3675 | kvm_pit_load_count(kvm, 0, kvm->arch.vpit->pit_state.channels[0].count, start); |
Marcelo Tosatti | 894a9c5 | 2009-06-23 15:05:14 -0300 | [diff] [blame] | 3676 | mutex_unlock(&kvm->arch.vpit->pit_state.lock); |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3677 | return r; |
| 3678 | } |
| 3679 | |
Marcelo Tosatti | 52d939a | 2008-12-30 15:55:06 -0200 | [diff] [blame] | 3680 | static int kvm_vm_ioctl_reinject(struct kvm *kvm, |
| 3681 | struct kvm_reinject_control *control) |
| 3682 | { |
| 3683 | if (!kvm->arch.vpit) |
| 3684 | return -ENXIO; |
Marcelo Tosatti | 894a9c5 | 2009-06-23 15:05:14 -0300 | [diff] [blame] | 3685 | mutex_lock(&kvm->arch.vpit->pit_state.lock); |
Avi Kivity | 26ef192 | 2012-07-26 18:01:53 +0300 | [diff] [blame] | 3686 | kvm->arch.vpit->pit_state.reinject = control->pit_reinject; |
Marcelo Tosatti | 894a9c5 | 2009-06-23 15:05:14 -0300 | [diff] [blame] | 3687 | mutex_unlock(&kvm->arch.vpit->pit_state.lock); |
Marcelo Tosatti | 52d939a | 2008-12-30 15:55:06 -0200 | [diff] [blame] | 3688 | return 0; |
| 3689 | } |
| 3690 | |
Takuya Yoshikawa | 95d4c16 | 2011-11-14 18:24:50 +0900 | [diff] [blame] | 3691 | /** |
Takuya Yoshikawa | 60c3461 | 2012-03-03 14:21:48 +0900 | [diff] [blame] | 3692 | * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot |
| 3693 | * @kvm: kvm instance |
| 3694 | * @log: slot id and address to which we copy the log |
Takuya Yoshikawa | 95d4c16 | 2011-11-14 18:24:50 +0900 | [diff] [blame] | 3695 | * |
Paolo Bonzini | e108ff2 | 2015-01-15 15:58:54 -0800 | [diff] [blame] | 3696 | * Steps 1-4 below provide general overview of dirty page logging. See |
| 3697 | * kvm_get_dirty_log_protect() function description for additional details. |
| 3698 | * |
| 3699 | * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we |
| 3700 | * always flush the TLB (step 4) even if previous step failed and the dirty |
| 3701 | * bitmap may be corrupt. Regardless of previous outcome the KVM logging API |
| 3702 | * does not preclude user space subsequent dirty log read. Flushing TLB ensures |
| 3703 | * writes will be marked dirty for next log read. |
Takuya Yoshikawa | 95d4c16 | 2011-11-14 18:24:50 +0900 | [diff] [blame] | 3704 | * |
Takuya Yoshikawa | 60c3461 | 2012-03-03 14:21:48 +0900 | [diff] [blame] | 3705 | * 1. Take a snapshot of the bit and clear it if needed. |
| 3706 | * 2. Write protect the corresponding page. |
Paolo Bonzini | e108ff2 | 2015-01-15 15:58:54 -0800 | [diff] [blame] | 3707 | * 3. Copy the snapshot to the userspace. |
| 3708 | * 4. Flush TLB's if needed. |
Takuya Yoshikawa | 95d4c16 | 2011-11-14 18:24:50 +0900 | [diff] [blame] | 3709 | */ |
Takuya Yoshikawa | 60c3461 | 2012-03-03 14:21:48 +0900 | [diff] [blame] | 3710 | int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log) |
Zhang Xiantao | 5bb064d | 2007-11-18 20:29:43 +0800 | [diff] [blame] | 3711 | { |
Takuya Yoshikawa | 60c3461 | 2012-03-03 14:21:48 +0900 | [diff] [blame] | 3712 | bool is_dirty = false; |
Paolo Bonzini | e108ff2 | 2015-01-15 15:58:54 -0800 | [diff] [blame] | 3713 | int r; |
Zhang Xiantao | 5bb064d | 2007-11-18 20:29:43 +0800 | [diff] [blame] | 3714 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 3715 | mutex_lock(&kvm->slots_lock); |
Zhang Xiantao | 5bb064d | 2007-11-18 20:29:43 +0800 | [diff] [blame] | 3716 | |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 3717 | /* |
| 3718 | * Flush potentially hardware-cached dirty pages to dirty_bitmap. |
| 3719 | */ |
| 3720 | if (kvm_x86_ops->flush_log_dirty) |
| 3721 | kvm_x86_ops->flush_log_dirty(kvm); |
| 3722 | |
Paolo Bonzini | e108ff2 | 2015-01-15 15:58:54 -0800 | [diff] [blame] | 3723 | r = kvm_get_dirty_log_protect(kvm, log, &is_dirty); |
Xiao Guangrong | 198c74f | 2014-04-17 17:06:16 +0800 | [diff] [blame] | 3724 | |
| 3725 | /* |
| 3726 | * All the TLBs can be flushed out of mmu lock, see the comments in |
| 3727 | * kvm_mmu_slot_remove_write_access(). |
| 3728 | */ |
Paolo Bonzini | e108ff2 | 2015-01-15 15:58:54 -0800 | [diff] [blame] | 3729 | lockdep_assert_held(&kvm->slots_lock); |
Xiao Guangrong | 198c74f | 2014-04-17 17:06:16 +0800 | [diff] [blame] | 3730 | if (is_dirty) |
| 3731 | kvm_flush_remote_tlbs(kvm); |
| 3732 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 3733 | mutex_unlock(&kvm->slots_lock); |
Zhang Xiantao | 5bb064d | 2007-11-18 20:29:43 +0800 | [diff] [blame] | 3734 | return r; |
| 3735 | } |
| 3736 | |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 3737 | int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event, |
| 3738 | bool line_status) |
Christoffer Dall | 23d43cf | 2012-07-24 08:51:20 -0400 | [diff] [blame] | 3739 | { |
| 3740 | if (!irqchip_in_kernel(kvm)) |
| 3741 | return -ENXIO; |
| 3742 | |
| 3743 | irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID, |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 3744 | irq_event->irq, irq_event->level, |
| 3745 | line_status); |
Christoffer Dall | 23d43cf | 2012-07-24 08:51:20 -0400 | [diff] [blame] | 3746 | return 0; |
| 3747 | } |
| 3748 | |
Nadav Amit | 90de4a1 | 2015-04-13 01:53:41 +0300 | [diff] [blame] | 3749 | static int kvm_vm_ioctl_enable_cap(struct kvm *kvm, |
| 3750 | struct kvm_enable_cap *cap) |
| 3751 | { |
| 3752 | int r; |
| 3753 | |
| 3754 | if (cap->flags) |
| 3755 | return -EINVAL; |
| 3756 | |
| 3757 | switch (cap->cap) { |
| 3758 | case KVM_CAP_DISABLE_QUIRKS: |
| 3759 | kvm->arch.disabled_quirks = cap->args[0]; |
| 3760 | r = 0; |
| 3761 | break; |
| 3762 | default: |
| 3763 | r = -EINVAL; |
| 3764 | break; |
| 3765 | } |
| 3766 | return r; |
| 3767 | } |
| 3768 | |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3769 | long kvm_arch_vm_ioctl(struct file *filp, |
| 3770 | unsigned int ioctl, unsigned long arg) |
| 3771 | { |
| 3772 | struct kvm *kvm = filp->private_data; |
| 3773 | void __user *argp = (void __user *)arg; |
Avi Kivity | 367e131 | 2009-08-26 14:57:07 +0300 | [diff] [blame] | 3774 | int r = -ENOTTY; |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 3775 | /* |
| 3776 | * This union makes it completely explicit to gcc-3.x |
| 3777 | * that these two variables' stack usage should be |
| 3778 | * combined, not added together. |
| 3779 | */ |
| 3780 | union { |
| 3781 | struct kvm_pit_state ps; |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 3782 | struct kvm_pit_state2 ps2; |
Jan Kiszka | c5ff41c | 2009-05-14 22:42:53 +0200 | [diff] [blame] | 3783 | struct kvm_pit_config pit_config; |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 3784 | } u; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3785 | |
| 3786 | switch (ioctl) { |
| 3787 | case KVM_SET_TSS_ADDR: |
| 3788 | r = kvm_vm_ioctl_set_tss_addr(kvm, arg); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3789 | break; |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 3790 | case KVM_SET_IDENTITY_MAP_ADDR: { |
| 3791 | u64 ident_addr; |
| 3792 | |
| 3793 | r = -EFAULT; |
| 3794 | if (copy_from_user(&ident_addr, argp, sizeof ident_addr)) |
| 3795 | goto out; |
| 3796 | r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr); |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 3797 | break; |
| 3798 | } |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3799 | case KVM_SET_NR_MMU_PAGES: |
| 3800 | r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3801 | break; |
| 3802 | case KVM_GET_NR_MMU_PAGES: |
| 3803 | r = kvm_vm_ioctl_get_nr_mmu_pages(kvm); |
| 3804 | break; |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 3805 | case KVM_CREATE_IRQCHIP: { |
| 3806 | struct kvm_pic *vpic; |
| 3807 | |
| 3808 | mutex_lock(&kvm->lock); |
| 3809 | r = -EEXIST; |
| 3810 | if (kvm->arch.vpic) |
| 3811 | goto create_irqchip_unlock; |
Avi Kivity | 3e51570 | 2012-03-05 14:23:29 +0200 | [diff] [blame] | 3812 | r = -EINVAL; |
| 3813 | if (atomic_read(&kvm->online_vcpus)) |
| 3814 | goto create_irqchip_unlock; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3815 | r = -ENOMEM; |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 3816 | vpic = kvm_create_pic(kvm); |
| 3817 | if (vpic) { |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3818 | r = kvm_ioapic_init(kvm); |
| 3819 | if (r) { |
Takuya Yoshikawa | 175504c | 2010-12-16 01:41:37 +0900 | [diff] [blame] | 3820 | mutex_lock(&kvm->slots_lock); |
Wei Yongjun | 72bb2fc | 2010-02-09 10:33:03 +0800 | [diff] [blame] | 3821 | kvm_io_bus_unregister_dev(kvm, KVM_PIO_BUS, |
Sasha Levin | 743eeb0 | 2011-07-27 16:00:48 +0300 | [diff] [blame] | 3822 | &vpic->dev_master); |
| 3823 | kvm_io_bus_unregister_dev(kvm, KVM_PIO_BUS, |
| 3824 | &vpic->dev_slave); |
| 3825 | kvm_io_bus_unregister_dev(kvm, KVM_PIO_BUS, |
| 3826 | &vpic->dev_eclr); |
Takuya Yoshikawa | 175504c | 2010-12-16 01:41:37 +0900 | [diff] [blame] | 3827 | mutex_unlock(&kvm->slots_lock); |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 3828 | kfree(vpic); |
| 3829 | goto create_irqchip_unlock; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3830 | } |
| 3831 | } else |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 3832 | goto create_irqchip_unlock; |
| 3833 | smp_wmb(); |
| 3834 | kvm->arch.vpic = vpic; |
| 3835 | smp_wmb(); |
Avi Kivity | 399ec80 | 2008-11-19 13:58:46 +0200 | [diff] [blame] | 3836 | r = kvm_setup_default_irq_routing(kvm); |
| 3837 | if (r) { |
Takuya Yoshikawa | 175504c | 2010-12-16 01:41:37 +0900 | [diff] [blame] | 3838 | mutex_lock(&kvm->slots_lock); |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 3839 | mutex_lock(&kvm->irq_lock); |
Wei Yongjun | 72bb2fc | 2010-02-09 10:33:03 +0800 | [diff] [blame] | 3840 | kvm_ioapic_destroy(kvm); |
| 3841 | kvm_destroy_pic(kvm); |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 3842 | mutex_unlock(&kvm->irq_lock); |
Takuya Yoshikawa | 175504c | 2010-12-16 01:41:37 +0900 | [diff] [blame] | 3843 | mutex_unlock(&kvm->slots_lock); |
Avi Kivity | 399ec80 | 2008-11-19 13:58:46 +0200 | [diff] [blame] | 3844 | } |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 3845 | create_irqchip_unlock: |
| 3846 | mutex_unlock(&kvm->lock); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3847 | break; |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 3848 | } |
Sheng Yang | 7837699 | 2008-01-28 05:10:22 +0800 | [diff] [blame] | 3849 | case KVM_CREATE_PIT: |
Jan Kiszka | c5ff41c | 2009-05-14 22:42:53 +0200 | [diff] [blame] | 3850 | u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY; |
| 3851 | goto create_pit; |
| 3852 | case KVM_CREATE_PIT2: |
| 3853 | r = -EFAULT; |
| 3854 | if (copy_from_user(&u.pit_config, argp, |
| 3855 | sizeof(struct kvm_pit_config))) |
| 3856 | goto out; |
| 3857 | create_pit: |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 3858 | mutex_lock(&kvm->slots_lock); |
Avi Kivity | 269e05e | 2009-01-05 15:21:42 +0200 | [diff] [blame] | 3859 | r = -EEXIST; |
| 3860 | if (kvm->arch.vpit) |
| 3861 | goto create_pit_unlock; |
Sheng Yang | 7837699 | 2008-01-28 05:10:22 +0800 | [diff] [blame] | 3862 | r = -ENOMEM; |
Jan Kiszka | c5ff41c | 2009-05-14 22:42:53 +0200 | [diff] [blame] | 3863 | kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags); |
Sheng Yang | 7837699 | 2008-01-28 05:10:22 +0800 | [diff] [blame] | 3864 | if (kvm->arch.vpit) |
| 3865 | r = 0; |
Avi Kivity | 269e05e | 2009-01-05 15:21:42 +0200 | [diff] [blame] | 3866 | create_pit_unlock: |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 3867 | mutex_unlock(&kvm->slots_lock); |
Sheng Yang | 7837699 | 2008-01-28 05:10:22 +0800 | [diff] [blame] | 3868 | break; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3869 | case KVM_GET_IRQCHIP: { |
| 3870 | /* 0: PIC master, 1: PIC slave, 2: IOAPIC */ |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 3871 | struct kvm_irqchip *chip; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3872 | |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 3873 | chip = memdup_user(argp, sizeof(*chip)); |
| 3874 | if (IS_ERR(chip)) { |
| 3875 | r = PTR_ERR(chip); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3876 | goto out; |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 3877 | } |
| 3878 | |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3879 | r = -ENXIO; |
| 3880 | if (!irqchip_in_kernel(kvm)) |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 3881 | goto get_irqchip_out; |
| 3882 | r = kvm_vm_ioctl_get_irqchip(kvm, chip); |
| 3883 | if (r) |
| 3884 | goto get_irqchip_out; |
| 3885 | r = -EFAULT; |
| 3886 | if (copy_to_user(argp, chip, sizeof *chip)) |
| 3887 | goto get_irqchip_out; |
| 3888 | r = 0; |
| 3889 | get_irqchip_out: |
| 3890 | kfree(chip); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3891 | break; |
| 3892 | } |
| 3893 | case KVM_SET_IRQCHIP: { |
| 3894 | /* 0: PIC master, 1: PIC slave, 2: IOAPIC */ |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 3895 | struct kvm_irqchip *chip; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3896 | |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 3897 | chip = memdup_user(argp, sizeof(*chip)); |
| 3898 | if (IS_ERR(chip)) { |
| 3899 | r = PTR_ERR(chip); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3900 | goto out; |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 3901 | } |
| 3902 | |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3903 | r = -ENXIO; |
| 3904 | if (!irqchip_in_kernel(kvm)) |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 3905 | goto set_irqchip_out; |
| 3906 | r = kvm_vm_ioctl_set_irqchip(kvm, chip); |
| 3907 | if (r) |
| 3908 | goto set_irqchip_out; |
| 3909 | r = 0; |
| 3910 | set_irqchip_out: |
| 3911 | kfree(chip); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3912 | break; |
| 3913 | } |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3914 | case KVM_GET_PIT: { |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3915 | r = -EFAULT; |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 3916 | if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state))) |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3917 | goto out; |
| 3918 | r = -ENXIO; |
| 3919 | if (!kvm->arch.vpit) |
| 3920 | goto out; |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 3921 | r = kvm_vm_ioctl_get_pit(kvm, &u.ps); |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3922 | if (r) |
| 3923 | goto out; |
| 3924 | r = -EFAULT; |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 3925 | if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state))) |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3926 | goto out; |
| 3927 | r = 0; |
| 3928 | break; |
| 3929 | } |
| 3930 | case KVM_SET_PIT: { |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3931 | r = -EFAULT; |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 3932 | if (copy_from_user(&u.ps, argp, sizeof u.ps)) |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3933 | goto out; |
| 3934 | r = -ENXIO; |
| 3935 | if (!kvm->arch.vpit) |
| 3936 | goto out; |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 3937 | r = kvm_vm_ioctl_set_pit(kvm, &u.ps); |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3938 | break; |
| 3939 | } |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 3940 | case KVM_GET_PIT2: { |
| 3941 | r = -ENXIO; |
| 3942 | if (!kvm->arch.vpit) |
| 3943 | goto out; |
| 3944 | r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2); |
| 3945 | if (r) |
| 3946 | goto out; |
| 3947 | r = -EFAULT; |
| 3948 | if (copy_to_user(argp, &u.ps2, sizeof(u.ps2))) |
| 3949 | goto out; |
| 3950 | r = 0; |
| 3951 | break; |
| 3952 | } |
| 3953 | case KVM_SET_PIT2: { |
| 3954 | r = -EFAULT; |
| 3955 | if (copy_from_user(&u.ps2, argp, sizeof(u.ps2))) |
| 3956 | goto out; |
| 3957 | r = -ENXIO; |
| 3958 | if (!kvm->arch.vpit) |
| 3959 | goto out; |
| 3960 | r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2); |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 3961 | break; |
| 3962 | } |
Marcelo Tosatti | 52d939a | 2008-12-30 15:55:06 -0200 | [diff] [blame] | 3963 | case KVM_REINJECT_CONTROL: { |
| 3964 | struct kvm_reinject_control control; |
| 3965 | r = -EFAULT; |
| 3966 | if (copy_from_user(&control, argp, sizeof(control))) |
| 3967 | goto out; |
| 3968 | r = kvm_vm_ioctl_reinject(kvm, &control); |
Marcelo Tosatti | 52d939a | 2008-12-30 15:55:06 -0200 | [diff] [blame] | 3969 | break; |
| 3970 | } |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 3971 | case KVM_XEN_HVM_CONFIG: { |
| 3972 | r = -EFAULT; |
| 3973 | if (copy_from_user(&kvm->arch.xen_hvm_config, argp, |
| 3974 | sizeof(struct kvm_xen_hvm_config))) |
| 3975 | goto out; |
| 3976 | r = -EINVAL; |
| 3977 | if (kvm->arch.xen_hvm_config.flags) |
| 3978 | goto out; |
| 3979 | r = 0; |
| 3980 | break; |
| 3981 | } |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 3982 | case KVM_SET_CLOCK: { |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 3983 | struct kvm_clock_data user_ns; |
| 3984 | u64 now_ns; |
| 3985 | s64 delta; |
| 3986 | |
| 3987 | r = -EFAULT; |
| 3988 | if (copy_from_user(&user_ns, argp, sizeof(user_ns))) |
| 3989 | goto out; |
| 3990 | |
| 3991 | r = -EINVAL; |
| 3992 | if (user_ns.flags) |
| 3993 | goto out; |
| 3994 | |
| 3995 | r = 0; |
Avi Kivity | 395c6b0 | 2010-10-04 12:55:49 +0200 | [diff] [blame] | 3996 | local_irq_disable(); |
Zachary Amsden | 759379d | 2010-08-19 22:07:25 -1000 | [diff] [blame] | 3997 | now_ns = get_kernel_ns(); |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 3998 | delta = user_ns.clock - now_ns; |
Avi Kivity | 395c6b0 | 2010-10-04 12:55:49 +0200 | [diff] [blame] | 3999 | local_irq_enable(); |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 4000 | kvm->arch.kvmclock_offset = delta; |
Marcelo Tosatti | 2e762ff | 2013-08-27 23:55:29 -0300 | [diff] [blame] | 4001 | kvm_gen_update_masterclock(kvm); |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 4002 | break; |
| 4003 | } |
| 4004 | case KVM_GET_CLOCK: { |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 4005 | struct kvm_clock_data user_ns; |
| 4006 | u64 now_ns; |
| 4007 | |
Avi Kivity | 395c6b0 | 2010-10-04 12:55:49 +0200 | [diff] [blame] | 4008 | local_irq_disable(); |
Zachary Amsden | 759379d | 2010-08-19 22:07:25 -1000 | [diff] [blame] | 4009 | now_ns = get_kernel_ns(); |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 4010 | user_ns.clock = kvm->arch.kvmclock_offset + now_ns; |
Avi Kivity | 395c6b0 | 2010-10-04 12:55:49 +0200 | [diff] [blame] | 4011 | local_irq_enable(); |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 4012 | user_ns.flags = 0; |
Vasiliy Kulikov | 97e69aa | 2010-10-30 22:54:47 +0400 | [diff] [blame] | 4013 | memset(&user_ns.pad, 0, sizeof(user_ns.pad)); |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 4014 | |
| 4015 | r = -EFAULT; |
| 4016 | if (copy_to_user(argp, &user_ns, sizeof(user_ns))) |
| 4017 | goto out; |
| 4018 | r = 0; |
| 4019 | break; |
| 4020 | } |
Nadav Amit | 90de4a1 | 2015-04-13 01:53:41 +0300 | [diff] [blame] | 4021 | case KVM_ENABLE_CAP: { |
| 4022 | struct kvm_enable_cap cap; |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 4023 | |
Nadav Amit | 90de4a1 | 2015-04-13 01:53:41 +0300 | [diff] [blame] | 4024 | r = -EFAULT; |
| 4025 | if (copy_from_user(&cap, argp, sizeof(cap))) |
| 4026 | goto out; |
| 4027 | r = kvm_vm_ioctl_enable_cap(kvm, &cap); |
| 4028 | break; |
| 4029 | } |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4030 | default: |
Radim Krčmář | c274e03 | 2014-11-21 22:21:50 +0100 | [diff] [blame] | 4031 | r = kvm_vm_ioctl_assigned_device(kvm, ioctl, arg); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4032 | } |
| 4033 | out: |
| 4034 | return r; |
| 4035 | } |
| 4036 | |
Zhang Xiantao | a16b043 | 2007-11-16 14:38:21 +0800 | [diff] [blame] | 4037 | static void kvm_init_msr_list(void) |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 4038 | { |
| 4039 | u32 dummy[2]; |
| 4040 | unsigned i, j; |
| 4041 | |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 4042 | for (i = j = 0; i < ARRAY_SIZE(msrs_to_save); i++) { |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 4043 | if (rdmsr_safe(msrs_to_save[i], &dummy[0], &dummy[1]) < 0) |
| 4044 | continue; |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 4045 | |
| 4046 | /* |
| 4047 | * Even MSRs that are valid in the host may not be exposed |
| 4048 | * to the guests in some cases. We could work around this |
| 4049 | * in VMX with the generic MSR save/load machinery, but it |
| 4050 | * is not really worthwhile since it will really only |
| 4051 | * happen with nested virtualization. |
| 4052 | */ |
| 4053 | switch (msrs_to_save[i]) { |
| 4054 | case MSR_IA32_BNDCFGS: |
| 4055 | if (!kvm_x86_ops->mpx_supported()) |
| 4056 | continue; |
| 4057 | break; |
| 4058 | default: |
| 4059 | break; |
| 4060 | } |
| 4061 | |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 4062 | if (j < i) |
| 4063 | msrs_to_save[j] = msrs_to_save[i]; |
| 4064 | j++; |
| 4065 | } |
| 4066 | num_msrs_to_save = j; |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 4067 | |
| 4068 | for (i = j = 0; i < ARRAY_SIZE(emulated_msrs); i++) { |
| 4069 | switch (emulated_msrs[i]) { |
Paolo Bonzini | 6d396b5 | 2015-04-01 14:25:33 +0200 | [diff] [blame] | 4070 | case MSR_IA32_SMBASE: |
| 4071 | if (!kvm_x86_ops->cpu_has_high_real_mode_segbase()) |
| 4072 | continue; |
| 4073 | break; |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 4074 | default: |
| 4075 | break; |
| 4076 | } |
| 4077 | |
| 4078 | if (j < i) |
| 4079 | emulated_msrs[j] = emulated_msrs[i]; |
| 4080 | j++; |
| 4081 | } |
| 4082 | num_emulated_msrs = j; |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 4083 | } |
| 4084 | |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 4085 | static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len, |
| 4086 | const void *v) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4087 | { |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 4088 | int handled = 0; |
| 4089 | int n; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4090 | |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 4091 | do { |
| 4092 | n = min(len, 8); |
| 4093 | if (!(vcpu->arch.apic && |
Nikolay Nikolaev | e32edf4 | 2015-03-26 14:39:28 +0000 | [diff] [blame] | 4094 | !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v)) |
| 4095 | && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v)) |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 4096 | break; |
| 4097 | handled += n; |
| 4098 | addr += n; |
| 4099 | len -= n; |
| 4100 | v += n; |
| 4101 | } while (len); |
| 4102 | |
| 4103 | return handled; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4104 | } |
| 4105 | |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 4106 | static int vcpu_mmio_read(struct kvm_vcpu *vcpu, gpa_t addr, int len, void *v) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4107 | { |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 4108 | int handled = 0; |
| 4109 | int n; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4110 | |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 4111 | do { |
| 4112 | n = min(len, 8); |
| 4113 | if (!(vcpu->arch.apic && |
Nikolay Nikolaev | e32edf4 | 2015-03-26 14:39:28 +0000 | [diff] [blame] | 4114 | !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev, |
| 4115 | addr, n, v)) |
| 4116 | && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v)) |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 4117 | break; |
| 4118 | trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, *(u64 *)v); |
| 4119 | handled += n; |
| 4120 | addr += n; |
| 4121 | len -= n; |
| 4122 | v += n; |
| 4123 | } while (len); |
| 4124 | |
| 4125 | return handled; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4126 | } |
| 4127 | |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4128 | static void kvm_set_segment(struct kvm_vcpu *vcpu, |
| 4129 | struct kvm_segment *var, int seg) |
| 4130 | { |
| 4131 | kvm_x86_ops->set_segment(vcpu, var, seg); |
| 4132 | } |
| 4133 | |
| 4134 | void kvm_get_segment(struct kvm_vcpu *vcpu, |
| 4135 | struct kvm_segment *var, int seg) |
| 4136 | { |
| 4137 | kvm_x86_ops->get_segment(vcpu, var, seg); |
| 4138 | } |
| 4139 | |
Paolo Bonzini | 54987b7 | 2014-09-02 13:23:06 +0200 | [diff] [blame] | 4140 | gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access, |
| 4141 | struct x86_exception *exception) |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4142 | { |
| 4143 | gpa_t t_gpa; |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4144 | |
| 4145 | BUG_ON(!mmu_is_nested(vcpu)); |
| 4146 | |
| 4147 | /* NPT walks are always user-walks */ |
| 4148 | access |= PFERR_USER_MASK; |
Paolo Bonzini | 54987b7 | 2014-09-02 13:23:06 +0200 | [diff] [blame] | 4149 | t_gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gpa, access, exception); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4150 | |
| 4151 | return t_gpa; |
| 4152 | } |
| 4153 | |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4154 | gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva, |
| 4155 | struct x86_exception *exception) |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4156 | { |
| 4157 | u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0; |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4158 | return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4159 | } |
| 4160 | |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4161 | gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva, |
| 4162 | struct x86_exception *exception) |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4163 | { |
| 4164 | u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0; |
| 4165 | access |= PFERR_FETCH_MASK; |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4166 | return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4167 | } |
| 4168 | |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4169 | gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva, |
| 4170 | struct x86_exception *exception) |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4171 | { |
| 4172 | u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0; |
| 4173 | access |= PFERR_WRITE_MASK; |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4174 | return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4175 | } |
| 4176 | |
| 4177 | /* uses this to access any guest's mapped memory without checking CPL */ |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4178 | gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva, |
| 4179 | struct x86_exception *exception) |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4180 | { |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4181 | return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4182 | } |
| 4183 | |
| 4184 | static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes, |
| 4185 | struct kvm_vcpu *vcpu, u32 access, |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 4186 | struct x86_exception *exception) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4187 | { |
| 4188 | void *data = val; |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4189 | int r = X86EMUL_CONTINUE; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4190 | |
| 4191 | while (bytes) { |
Joerg Roedel | 14dfe85 | 2010-09-10 17:30:49 +0200 | [diff] [blame] | 4192 | gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access, |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4193 | exception); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4194 | unsigned offset = addr & (PAGE_SIZE-1); |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 4195 | unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4196 | int ret; |
| 4197 | |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 4198 | if (gpa == UNMAPPED_GVA) |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4199 | return X86EMUL_PROPAGATE_FAULT; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 4200 | ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data, |
| 4201 | offset, toread); |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4202 | if (ret < 0) { |
Gleb Natapov | c3cd7ff | 2010-04-28 19:15:35 +0300 | [diff] [blame] | 4203 | r = X86EMUL_IO_NEEDED; |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4204 | goto out; |
| 4205 | } |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4206 | |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 4207 | bytes -= toread; |
| 4208 | data += toread; |
| 4209 | addr += toread; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4210 | } |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4211 | out: |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4212 | return r; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4213 | } |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 4214 | |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4215 | /* used for instruction fetching */ |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4216 | static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt, |
| 4217 | gva_t addr, void *val, unsigned int bytes, |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 4218 | struct x86_exception *exception) |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4219 | { |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4220 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4221 | u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0; |
Paolo Bonzini | 44583cb | 2014-05-13 14:02:13 +0200 | [diff] [blame] | 4222 | unsigned offset; |
| 4223 | int ret; |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4224 | |
Paolo Bonzini | 44583cb | 2014-05-13 14:02:13 +0200 | [diff] [blame] | 4225 | /* Inline kvm_read_guest_virt_helper for speed. */ |
| 4226 | gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access|PFERR_FETCH_MASK, |
| 4227 | exception); |
| 4228 | if (unlikely(gpa == UNMAPPED_GVA)) |
| 4229 | return X86EMUL_PROPAGATE_FAULT; |
| 4230 | |
| 4231 | offset = addr & (PAGE_SIZE-1); |
| 4232 | if (WARN_ON(offset + bytes > PAGE_SIZE)) |
| 4233 | bytes = (unsigned)PAGE_SIZE - offset; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 4234 | ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val, |
| 4235 | offset, bytes); |
Paolo Bonzini | 44583cb | 2014-05-13 14:02:13 +0200 | [diff] [blame] | 4236 | if (unlikely(ret < 0)) |
| 4237 | return X86EMUL_IO_NEEDED; |
| 4238 | |
| 4239 | return X86EMUL_CONTINUE; |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4240 | } |
| 4241 | |
Nadav Har'El | 064aea7 | 2011-05-25 23:04:56 +0300 | [diff] [blame] | 4242 | int kvm_read_guest_virt(struct x86_emulate_ctxt *ctxt, |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4243 | gva_t addr, void *val, unsigned int bytes, |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 4244 | struct x86_exception *exception) |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4245 | { |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4246 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4247 | u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0; |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4248 | |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4249 | return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access, |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 4250 | exception); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4251 | } |
Nadav Har'El | 064aea7 | 2011-05-25 23:04:56 +0300 | [diff] [blame] | 4252 | EXPORT_SYMBOL_GPL(kvm_read_guest_virt); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4253 | |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4254 | static int kvm_read_guest_virt_system(struct x86_emulate_ctxt *ctxt, |
| 4255 | gva_t addr, void *val, unsigned int bytes, |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 4256 | struct x86_exception *exception) |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4257 | { |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4258 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 4259 | return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, 0, exception); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4260 | } |
| 4261 | |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 4262 | int kvm_write_guest_virt_system(struct x86_emulate_ctxt *ctxt, |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4263 | gva_t addr, void *val, |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4264 | unsigned int bytes, |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 4265 | struct x86_exception *exception) |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 4266 | { |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4267 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 4268 | void *data = val; |
| 4269 | int r = X86EMUL_CONTINUE; |
| 4270 | |
| 4271 | while (bytes) { |
Joerg Roedel | 14dfe85 | 2010-09-10 17:30:49 +0200 | [diff] [blame] | 4272 | gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, |
| 4273 | PFERR_WRITE_MASK, |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4274 | exception); |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 4275 | unsigned offset = addr & (PAGE_SIZE-1); |
| 4276 | unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset); |
| 4277 | int ret; |
| 4278 | |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 4279 | if (gpa == UNMAPPED_GVA) |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4280 | return X86EMUL_PROPAGATE_FAULT; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 4281 | ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite); |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 4282 | if (ret < 0) { |
Gleb Natapov | c3cd7ff | 2010-04-28 19:15:35 +0300 | [diff] [blame] | 4283 | r = X86EMUL_IO_NEEDED; |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 4284 | goto out; |
| 4285 | } |
| 4286 | |
| 4287 | bytes -= towrite; |
| 4288 | data += towrite; |
| 4289 | addr += towrite; |
| 4290 | } |
| 4291 | out: |
| 4292 | return r; |
| 4293 | } |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 4294 | EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system); |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 4295 | |
Xiao Guangrong | af7cc7d | 2011-07-12 03:22:46 +0800 | [diff] [blame] | 4296 | static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva, |
| 4297 | gpa_t *gpa, struct x86_exception *exception, |
| 4298 | bool write) |
| 4299 | { |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4300 | u32 access = ((kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0) |
| 4301 | | (write ? PFERR_WRITE_MASK : 0); |
Xiao Guangrong | af7cc7d | 2011-07-12 03:22:46 +0800 | [diff] [blame] | 4302 | |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4303 | if (vcpu_match_mmio_gva(vcpu, gva) |
Feng Wu | 97ec8c0 | 2014-04-01 17:46:34 +0800 | [diff] [blame] | 4304 | && !permission_fault(vcpu, vcpu->arch.walk_mmu, |
| 4305 | vcpu->arch.access, access)) { |
Xiao Guangrong | bebb106 | 2011-07-12 03:23:20 +0800 | [diff] [blame] | 4306 | *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT | |
| 4307 | (gva & (PAGE_SIZE - 1)); |
Xiao Guangrong | 4f02264 | 2011-07-12 03:34:24 +0800 | [diff] [blame] | 4308 | trace_vcpu_match_mmio(gva, *gpa, write, false); |
Xiao Guangrong | bebb106 | 2011-07-12 03:23:20 +0800 | [diff] [blame] | 4309 | return 1; |
| 4310 | } |
| 4311 | |
Xiao Guangrong | af7cc7d | 2011-07-12 03:22:46 +0800 | [diff] [blame] | 4312 | *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception); |
| 4313 | |
| 4314 | if (*gpa == UNMAPPED_GVA) |
| 4315 | return -1; |
| 4316 | |
| 4317 | /* For APIC access vmexit */ |
| 4318 | if ((*gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE) |
| 4319 | return 1; |
| 4320 | |
Xiao Guangrong | 4f02264 | 2011-07-12 03:34:24 +0800 | [diff] [blame] | 4321 | if (vcpu_match_mmio_gpa(vcpu, *gpa)) { |
| 4322 | trace_vcpu_match_mmio(gva, *gpa, write, true); |
Xiao Guangrong | bebb106 | 2011-07-12 03:23:20 +0800 | [diff] [blame] | 4323 | return 1; |
Xiao Guangrong | 4f02264 | 2011-07-12 03:34:24 +0800 | [diff] [blame] | 4324 | } |
Xiao Guangrong | bebb106 | 2011-07-12 03:23:20 +0800 | [diff] [blame] | 4325 | |
Xiao Guangrong | af7cc7d | 2011-07-12 03:22:46 +0800 | [diff] [blame] | 4326 | return 0; |
| 4327 | } |
| 4328 | |
Marcelo Tosatti | 3200f40 | 2008-03-29 20:17:59 -0300 | [diff] [blame] | 4329 | int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa, |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 4330 | const void *val, int bytes) |
Avi Kivity | 9f81128 | 2008-03-02 14:06:05 +0200 | [diff] [blame] | 4331 | { |
| 4332 | int ret; |
| 4333 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 4334 | ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes); |
Avi Kivity | 9f81128 | 2008-03-02 14:06:05 +0200 | [diff] [blame] | 4335 | if (ret < 0) |
| 4336 | return 0; |
Xiao Guangrong | f57f2ef | 2011-09-22 16:56:39 +0800 | [diff] [blame] | 4337 | kvm_mmu_pte_write(vcpu, gpa, val, bytes); |
Avi Kivity | 9f81128 | 2008-03-02 14:06:05 +0200 | [diff] [blame] | 4338 | return 1; |
| 4339 | } |
| 4340 | |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 4341 | struct read_write_emulator_ops { |
| 4342 | int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val, |
| 4343 | int bytes); |
| 4344 | int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 4345 | void *val, int bytes); |
| 4346 | int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 4347 | int bytes, void *val); |
| 4348 | int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 4349 | void *val, int bytes); |
| 4350 | bool write; |
| 4351 | }; |
| 4352 | |
| 4353 | static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes) |
| 4354 | { |
| 4355 | if (vcpu->mmio_read_completed) { |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 4356 | trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes, |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 4357 | vcpu->mmio_fragments[0].gpa, *(u64 *)val); |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 4358 | vcpu->mmio_read_completed = 0; |
| 4359 | return 1; |
| 4360 | } |
| 4361 | |
| 4362 | return 0; |
| 4363 | } |
| 4364 | |
| 4365 | static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 4366 | void *val, int bytes) |
| 4367 | { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 4368 | return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes); |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 4369 | } |
| 4370 | |
| 4371 | static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 4372 | void *val, int bytes) |
| 4373 | { |
| 4374 | return emulator_write_phys(vcpu, gpa, val, bytes); |
| 4375 | } |
| 4376 | |
| 4377 | static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val) |
| 4378 | { |
| 4379 | trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, *(u64 *)val); |
| 4380 | return vcpu_mmio_write(vcpu, gpa, bytes, val); |
| 4381 | } |
| 4382 | |
| 4383 | static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 4384 | void *val, int bytes) |
| 4385 | { |
| 4386 | trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, 0); |
| 4387 | return X86EMUL_IO_NEEDED; |
| 4388 | } |
| 4389 | |
| 4390 | static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 4391 | void *val, int bytes) |
| 4392 | { |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 4393 | struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0]; |
| 4394 | |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 4395 | memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len)); |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 4396 | return X86EMUL_CONTINUE; |
| 4397 | } |
| 4398 | |
Mathias Krause | 0fbe9b0 | 2012-08-30 01:30:17 +0200 | [diff] [blame] | 4399 | static const struct read_write_emulator_ops read_emultor = { |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 4400 | .read_write_prepare = read_prepare, |
| 4401 | .read_write_emulate = read_emulate, |
| 4402 | .read_write_mmio = vcpu_mmio_read, |
| 4403 | .read_write_exit_mmio = read_exit_mmio, |
| 4404 | }; |
| 4405 | |
Mathias Krause | 0fbe9b0 | 2012-08-30 01:30:17 +0200 | [diff] [blame] | 4406 | static const struct read_write_emulator_ops write_emultor = { |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 4407 | .read_write_emulate = write_emulate, |
| 4408 | .read_write_mmio = write_mmio, |
| 4409 | .read_write_exit_mmio = write_exit_mmio, |
| 4410 | .write = true, |
| 4411 | }; |
| 4412 | |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 4413 | static int emulator_read_write_onepage(unsigned long addr, void *val, |
| 4414 | unsigned int bytes, |
| 4415 | struct x86_exception *exception, |
| 4416 | struct kvm_vcpu *vcpu, |
Mathias Krause | 0fbe9b0 | 2012-08-30 01:30:17 +0200 | [diff] [blame] | 4417 | const struct read_write_emulator_ops *ops) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4418 | { |
Xiao Guangrong | af7cc7d | 2011-07-12 03:22:46 +0800 | [diff] [blame] | 4419 | gpa_t gpa; |
| 4420 | int handled, ret; |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 4421 | bool write = ops->write; |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 4422 | struct kvm_mmio_fragment *frag; |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 4423 | |
| 4424 | ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4425 | |
Xiao Guangrong | af7cc7d | 2011-07-12 03:22:46 +0800 | [diff] [blame] | 4426 | if (ret < 0) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4427 | return X86EMUL_PROPAGATE_FAULT; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4428 | |
| 4429 | /* For APIC access vmexit */ |
Xiao Guangrong | af7cc7d | 2011-07-12 03:22:46 +0800 | [diff] [blame] | 4430 | if (ret) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4431 | goto mmio; |
| 4432 | |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 4433 | if (ops->read_write_emulate(vcpu, gpa, val, bytes)) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4434 | return X86EMUL_CONTINUE; |
| 4435 | |
| 4436 | mmio: |
| 4437 | /* |
| 4438 | * Is this MMIO handled locally? |
| 4439 | */ |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 4440 | handled = ops->read_write_mmio(vcpu, gpa, bytes, val); |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 4441 | if (handled == bytes) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4442 | return X86EMUL_CONTINUE; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4443 | |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 4444 | gpa += handled; |
| 4445 | bytes -= handled; |
| 4446 | val += handled; |
| 4447 | |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 4448 | WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS); |
| 4449 | frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++]; |
| 4450 | frag->gpa = gpa; |
| 4451 | frag->data = val; |
| 4452 | frag->len = bytes; |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 4453 | return X86EMUL_CONTINUE; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4454 | } |
| 4455 | |
Xiubo Li | 52eb5a6 | 2015-03-13 17:39:45 +0800 | [diff] [blame] | 4456 | static int emulator_read_write(struct x86_emulate_ctxt *ctxt, |
| 4457 | unsigned long addr, |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 4458 | void *val, unsigned int bytes, |
| 4459 | struct x86_exception *exception, |
Mathias Krause | 0fbe9b0 | 2012-08-30 01:30:17 +0200 | [diff] [blame] | 4460 | const struct read_write_emulator_ops *ops) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4461 | { |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4462 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 4463 | gpa_t gpa; |
| 4464 | int rc; |
| 4465 | |
| 4466 | if (ops->read_write_prepare && |
| 4467 | ops->read_write_prepare(vcpu, val, bytes)) |
| 4468 | return X86EMUL_CONTINUE; |
| 4469 | |
| 4470 | vcpu->mmio_nr_fragments = 0; |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4471 | |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4472 | /* Crossing a page boundary? */ |
| 4473 | if (((addr + bytes - 1) ^ addr) & PAGE_MASK) { |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 4474 | int now; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4475 | |
| 4476 | now = -addr & ~PAGE_MASK; |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 4477 | rc = emulator_read_write_onepage(addr, val, now, exception, |
| 4478 | vcpu, ops); |
| 4479 | |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4480 | if (rc != X86EMUL_CONTINUE) |
| 4481 | return rc; |
| 4482 | addr += now; |
Nadav Amit | bac15531 | 2015-01-26 09:32:26 +0200 | [diff] [blame] | 4483 | if (ctxt->mode != X86EMUL_MODE_PROT64) |
| 4484 | addr = (u32)addr; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4485 | val += now; |
| 4486 | bytes -= now; |
| 4487 | } |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 4488 | |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 4489 | rc = emulator_read_write_onepage(addr, val, bytes, exception, |
| 4490 | vcpu, ops); |
| 4491 | if (rc != X86EMUL_CONTINUE) |
| 4492 | return rc; |
| 4493 | |
| 4494 | if (!vcpu->mmio_nr_fragments) |
| 4495 | return rc; |
| 4496 | |
| 4497 | gpa = vcpu->mmio_fragments[0].gpa; |
| 4498 | |
| 4499 | vcpu->mmio_needed = 1; |
| 4500 | vcpu->mmio_cur_fragment = 0; |
| 4501 | |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 4502 | vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len); |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 4503 | vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write; |
| 4504 | vcpu->run->exit_reason = KVM_EXIT_MMIO; |
| 4505 | vcpu->run->mmio.phys_addr = gpa; |
| 4506 | |
| 4507 | return ops->read_write_exit_mmio(vcpu, gpa, val, bytes); |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 4508 | } |
| 4509 | |
| 4510 | static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt, |
| 4511 | unsigned long addr, |
| 4512 | void *val, |
| 4513 | unsigned int bytes, |
| 4514 | struct x86_exception *exception) |
| 4515 | { |
| 4516 | return emulator_read_write(ctxt, addr, val, bytes, |
| 4517 | exception, &read_emultor); |
| 4518 | } |
| 4519 | |
Xiubo Li | 52eb5a6 | 2015-03-13 17:39:45 +0800 | [diff] [blame] | 4520 | static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt, |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 4521 | unsigned long addr, |
| 4522 | const void *val, |
| 4523 | unsigned int bytes, |
| 4524 | struct x86_exception *exception) |
| 4525 | { |
| 4526 | return emulator_read_write(ctxt, addr, (void *)val, bytes, |
| 4527 | exception, &write_emultor); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4528 | } |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4529 | |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 4530 | #define CMPXCHG_TYPE(t, ptr, old, new) \ |
| 4531 | (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old)) |
| 4532 | |
| 4533 | #ifdef CONFIG_X86_64 |
| 4534 | # define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new) |
| 4535 | #else |
| 4536 | # define CMPXCHG64(ptr, old, new) \ |
Jan Kiszka | 9749a6c | 2010-03-20 10:14:13 +0100 | [diff] [blame] | 4537 | (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old)) |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 4538 | #endif |
| 4539 | |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4540 | static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt, |
| 4541 | unsigned long addr, |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4542 | const void *old, |
| 4543 | const void *new, |
| 4544 | unsigned int bytes, |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4545 | struct x86_exception *exception) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4546 | { |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4547 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 4548 | gpa_t gpa; |
| 4549 | struct page *page; |
| 4550 | char *kaddr; |
| 4551 | bool exchanged; |
| 4552 | |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 4553 | /* guests cmpxchg8b have to be emulated atomically */ |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 4554 | if (bytes > 8 || (bytes & (bytes - 1))) |
| 4555 | goto emul_write; |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 4556 | |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 4557 | gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL); |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4558 | |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 4559 | if (gpa == UNMAPPED_GVA || |
| 4560 | (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE) |
| 4561 | goto emul_write; |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 4562 | |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 4563 | if (((gpa + bytes - 1) & PAGE_MASK) != (gpa & PAGE_MASK)) |
| 4564 | goto emul_write; |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 4565 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 4566 | page = kvm_vcpu_gfn_to_page(vcpu, gpa >> PAGE_SHIFT); |
Xiao Guangrong | 32cad84 | 2012-08-03 15:42:52 +0800 | [diff] [blame] | 4567 | if (is_error_page(page)) |
Wei Yongjun | c19b8bd6 | 2010-07-15 08:51:58 +0800 | [diff] [blame] | 4568 | goto emul_write; |
Izik Eidus | 72dc67a | 2008-02-10 18:04:15 +0200 | [diff] [blame] | 4569 | |
Cong Wang | 8fd75e1 | 2011-11-25 23:14:17 +0800 | [diff] [blame] | 4570 | kaddr = kmap_atomic(page); |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 4571 | kaddr += offset_in_page(gpa); |
| 4572 | switch (bytes) { |
| 4573 | case 1: |
| 4574 | exchanged = CMPXCHG_TYPE(u8, kaddr, old, new); |
| 4575 | break; |
| 4576 | case 2: |
| 4577 | exchanged = CMPXCHG_TYPE(u16, kaddr, old, new); |
| 4578 | break; |
| 4579 | case 4: |
| 4580 | exchanged = CMPXCHG_TYPE(u32, kaddr, old, new); |
| 4581 | break; |
| 4582 | case 8: |
| 4583 | exchanged = CMPXCHG64(kaddr, old, new); |
| 4584 | break; |
| 4585 | default: |
| 4586 | BUG(); |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 4587 | } |
Cong Wang | 8fd75e1 | 2011-11-25 23:14:17 +0800 | [diff] [blame] | 4588 | kunmap_atomic(kaddr); |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 4589 | kvm_release_page_dirty(page); |
| 4590 | |
| 4591 | if (!exchanged) |
| 4592 | return X86EMUL_CMPXCHG_FAILED; |
| 4593 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 4594 | kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT); |
Xiao Guangrong | f57f2ef | 2011-09-22 16:56:39 +0800 | [diff] [blame] | 4595 | kvm_mmu_pte_write(vcpu, gpa, new, bytes); |
Gleb Natapov | 8f6abd0 | 2010-04-13 10:21:56 +0300 | [diff] [blame] | 4596 | |
| 4597 | return X86EMUL_CONTINUE; |
Avi Kivity | 4a5f48f | 2010-03-15 13:59:55 +0200 | [diff] [blame] | 4598 | |
Marcelo Tosatti | 3200f40 | 2008-03-29 20:17:59 -0300 | [diff] [blame] | 4599 | emul_write: |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 4600 | printk_once(KERN_WARNING "kvm: emulating exchange as write\n"); |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 4601 | |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4602 | return emulator_write_emulated(ctxt, addr, new, bytes, exception); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4603 | } |
| 4604 | |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4605 | static int kernel_pio(struct kvm_vcpu *vcpu, void *pd) |
| 4606 | { |
| 4607 | /* TODO: String I/O for in kernel device */ |
| 4608 | int r; |
| 4609 | |
| 4610 | if (vcpu->arch.pio.in) |
Nikolay Nikolaev | e32edf4 | 2015-03-26 14:39:28 +0000 | [diff] [blame] | 4611 | r = kvm_io_bus_read(vcpu, KVM_PIO_BUS, vcpu->arch.pio.port, |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4612 | vcpu->arch.pio.size, pd); |
| 4613 | else |
Nikolay Nikolaev | e32edf4 | 2015-03-26 14:39:28 +0000 | [diff] [blame] | 4614 | r = kvm_io_bus_write(vcpu, KVM_PIO_BUS, |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4615 | vcpu->arch.pio.port, vcpu->arch.pio.size, |
| 4616 | pd); |
| 4617 | return r; |
| 4618 | } |
| 4619 | |
Xiao Guangrong | 6f6fbe9 | 2011-09-22 16:55:10 +0800 | [diff] [blame] | 4620 | static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size, |
| 4621 | unsigned short port, void *val, |
| 4622 | unsigned int count, bool in) |
| 4623 | { |
Xiao Guangrong | 6f6fbe9 | 2011-09-22 16:55:10 +0800 | [diff] [blame] | 4624 | vcpu->arch.pio.port = port; |
| 4625 | vcpu->arch.pio.in = in; |
| 4626 | vcpu->arch.pio.count = count; |
| 4627 | vcpu->arch.pio.size = size; |
| 4628 | |
| 4629 | if (!kernel_pio(vcpu, vcpu->arch.pio_data)) { |
| 4630 | vcpu->arch.pio.count = 0; |
| 4631 | return 1; |
| 4632 | } |
| 4633 | |
| 4634 | vcpu->run->exit_reason = KVM_EXIT_IO; |
| 4635 | vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT; |
| 4636 | vcpu->run->io.size = size; |
| 4637 | vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE; |
| 4638 | vcpu->run->io.count = count; |
| 4639 | vcpu->run->io.port = port; |
| 4640 | |
| 4641 | return 0; |
| 4642 | } |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4643 | |
Avi Kivity | ca1d4a9 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4644 | static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt, |
| 4645 | int size, unsigned short port, void *val, |
| 4646 | unsigned int count) |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4647 | { |
Avi Kivity | ca1d4a9 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4648 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Xiao Guangrong | 6f6fbe9 | 2011-09-22 16:55:10 +0800 | [diff] [blame] | 4649 | int ret; |
Avi Kivity | ca1d4a9 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4650 | |
Gleb Natapov | 7972995 | 2010-03-18 15:20:24 +0200 | [diff] [blame] | 4651 | if (vcpu->arch.pio.count) |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4652 | goto data_avail; |
| 4653 | |
Xiao Guangrong | 6f6fbe9 | 2011-09-22 16:55:10 +0800 | [diff] [blame] | 4654 | ret = emulator_pio_in_out(vcpu, size, port, val, count, true); |
| 4655 | if (ret) { |
| 4656 | data_avail: |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4657 | memcpy(val, vcpu->arch.pio_data, size * count); |
Ulrich Obergfell | 1171903 | 2014-05-02 17:57:47 +0200 | [diff] [blame] | 4658 | trace_kvm_pio(KVM_PIO_IN, port, size, count, vcpu->arch.pio_data); |
Gleb Natapov | 7972995 | 2010-03-18 15:20:24 +0200 | [diff] [blame] | 4659 | vcpu->arch.pio.count = 0; |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4660 | return 1; |
| 4661 | } |
| 4662 | |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4663 | return 0; |
| 4664 | } |
| 4665 | |
Avi Kivity | ca1d4a9 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4666 | static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt, |
| 4667 | int size, unsigned short port, |
| 4668 | const void *val, unsigned int count) |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4669 | { |
Avi Kivity | ca1d4a9 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4670 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
| 4671 | |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4672 | memcpy(vcpu->arch.pio_data, val, size * count); |
Ulrich Obergfell | 1171903 | 2014-05-02 17:57:47 +0200 | [diff] [blame] | 4673 | trace_kvm_pio(KVM_PIO_OUT, port, size, count, vcpu->arch.pio_data); |
Xiao Guangrong | 6f6fbe9 | 2011-09-22 16:55:10 +0800 | [diff] [blame] | 4674 | return emulator_pio_in_out(vcpu, size, port, (void *)val, count, false); |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4675 | } |
| 4676 | |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4677 | static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg) |
| 4678 | { |
| 4679 | return kvm_x86_ops->get_segment_base(vcpu, seg); |
| 4680 | } |
| 4681 | |
Avi Kivity | 3cb16fe | 2011-04-20 15:38:44 +0300 | [diff] [blame] | 4682 | static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4683 | { |
Avi Kivity | 3cb16fe | 2011-04-20 15:38:44 +0300 | [diff] [blame] | 4684 | kvm_mmu_invlpg(emul_to_vcpu(ctxt), address); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4685 | } |
| 4686 | |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 4687 | int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu) |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 4688 | { |
| 4689 | if (!need_emulate_wbinvd(vcpu)) |
| 4690 | return X86EMUL_CONTINUE; |
| 4691 | |
| 4692 | if (kvm_x86_ops->has_wbinvd_exit()) { |
Jan Kiszka | 2eec734 | 2010-11-01 14:01:29 +0100 | [diff] [blame] | 4693 | int cpu = get_cpu(); |
| 4694 | |
| 4695 | cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask); |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 4696 | smp_call_function_many(vcpu->arch.wbinvd_dirty_mask, |
| 4697 | wbinvd_ipi, NULL, 1); |
Jan Kiszka | 2eec734 | 2010-11-01 14:01:29 +0100 | [diff] [blame] | 4698 | put_cpu(); |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 4699 | cpumask_clear(vcpu->arch.wbinvd_dirty_mask); |
Jan Kiszka | 2eec734 | 2010-11-01 14:01:29 +0100 | [diff] [blame] | 4700 | } else |
| 4701 | wbinvd(); |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 4702 | return X86EMUL_CONTINUE; |
| 4703 | } |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 4704 | |
| 4705 | int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu) |
| 4706 | { |
| 4707 | kvm_x86_ops->skip_emulated_instruction(vcpu); |
| 4708 | return kvm_emulate_wbinvd_noskip(vcpu); |
| 4709 | } |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 4710 | EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd); |
| 4711 | |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 4712 | |
| 4713 | |
Avi Kivity | bcaf5cc | 2011-04-20 15:53:23 +0300 | [diff] [blame] | 4714 | static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt) |
| 4715 | { |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 4716 | kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt)); |
Avi Kivity | bcaf5cc | 2011-04-20 15:53:23 +0300 | [diff] [blame] | 4717 | } |
| 4718 | |
Xiubo Li | 52eb5a6 | 2015-03-13 17:39:45 +0800 | [diff] [blame] | 4719 | static int emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr, |
| 4720 | unsigned long *dest) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4721 | { |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 4722 | return kvm_get_dr(emul_to_vcpu(ctxt), dr, dest); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4723 | } |
| 4724 | |
Xiubo Li | 52eb5a6 | 2015-03-13 17:39:45 +0800 | [diff] [blame] | 4725 | static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr, |
| 4726 | unsigned long value) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4727 | { |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 4728 | |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4729 | return __kvm_set_dr(emul_to_vcpu(ctxt), dr, value); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4730 | } |
| 4731 | |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4732 | static u64 mk_cr_64(u64 curr_cr, u32 new_val) |
| 4733 | { |
| 4734 | return (curr_cr & ~((1ULL << 32) - 1)) | new_val; |
| 4735 | } |
| 4736 | |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4737 | static unsigned long emulator_get_cr(struct x86_emulate_ctxt *ctxt, int cr) |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4738 | { |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4739 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4740 | unsigned long value; |
| 4741 | |
| 4742 | switch (cr) { |
| 4743 | case 0: |
| 4744 | value = kvm_read_cr0(vcpu); |
| 4745 | break; |
| 4746 | case 2: |
| 4747 | value = vcpu->arch.cr2; |
| 4748 | break; |
| 4749 | case 3: |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 4750 | value = kvm_read_cr3(vcpu); |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4751 | break; |
| 4752 | case 4: |
| 4753 | value = kvm_read_cr4(vcpu); |
| 4754 | break; |
| 4755 | case 8: |
| 4756 | value = kvm_get_cr8(vcpu); |
| 4757 | break; |
| 4758 | default: |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 4759 | kvm_err("%s: unexpected cr %u\n", __func__, cr); |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4760 | return 0; |
| 4761 | } |
| 4762 | |
| 4763 | return value; |
| 4764 | } |
| 4765 | |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4766 | static int emulator_set_cr(struct x86_emulate_ctxt *ctxt, int cr, ulong val) |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4767 | { |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4768 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 4769 | int res = 0; |
| 4770 | |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4771 | switch (cr) { |
| 4772 | case 0: |
Avi Kivity | 49a9b07 | 2010-06-10 17:02:14 +0300 | [diff] [blame] | 4773 | res = kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val)); |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4774 | break; |
| 4775 | case 2: |
| 4776 | vcpu->arch.cr2 = val; |
| 4777 | break; |
| 4778 | case 3: |
Avi Kivity | 2390218 | 2010-06-10 17:02:16 +0300 | [diff] [blame] | 4779 | res = kvm_set_cr3(vcpu, val); |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4780 | break; |
| 4781 | case 4: |
Avi Kivity | a83b29c | 2010-06-10 17:02:15 +0300 | [diff] [blame] | 4782 | res = kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val)); |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4783 | break; |
| 4784 | case 8: |
Andre Przywara | eea1cff | 2010-12-21 11:12:00 +0100 | [diff] [blame] | 4785 | res = kvm_set_cr8(vcpu, val); |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4786 | break; |
| 4787 | default: |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 4788 | kvm_err("%s: unexpected cr %u\n", __func__, cr); |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 4789 | res = -1; |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4790 | } |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 4791 | |
| 4792 | return res; |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4793 | } |
| 4794 | |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4795 | static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt) |
Gleb Natapov | 9c53724 | 2010-03-18 15:20:05 +0200 | [diff] [blame] | 4796 | { |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4797 | return kvm_x86_ops->get_cpl(emul_to_vcpu(ctxt)); |
Gleb Natapov | 9c53724 | 2010-03-18 15:20:05 +0200 | [diff] [blame] | 4798 | } |
| 4799 | |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4800 | static void emulator_get_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt) |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4801 | { |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4802 | kvm_x86_ops->get_gdt(emul_to_vcpu(ctxt), dt); |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4803 | } |
| 4804 | |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4805 | static void emulator_get_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt) |
Mohammed Gamal | 160ce1f | 2010-08-04 05:44:24 +0300 | [diff] [blame] | 4806 | { |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4807 | kvm_x86_ops->get_idt(emul_to_vcpu(ctxt), dt); |
Mohammed Gamal | 160ce1f | 2010-08-04 05:44:24 +0300 | [diff] [blame] | 4808 | } |
| 4809 | |
Avi Kivity | 1ac9d0c | 2011-04-20 15:12:00 +0300 | [diff] [blame] | 4810 | static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt) |
| 4811 | { |
| 4812 | kvm_x86_ops->set_gdt(emul_to_vcpu(ctxt), dt); |
| 4813 | } |
| 4814 | |
| 4815 | static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt) |
| 4816 | { |
| 4817 | kvm_x86_ops->set_idt(emul_to_vcpu(ctxt), dt); |
| 4818 | } |
| 4819 | |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4820 | static unsigned long emulator_get_cached_segment_base( |
| 4821 | struct x86_emulate_ctxt *ctxt, int seg) |
Gleb Natapov | 5951c44 | 2010-04-28 19:15:29 +0300 | [diff] [blame] | 4822 | { |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4823 | return get_segment_base(emul_to_vcpu(ctxt), seg); |
Gleb Natapov | 5951c44 | 2010-04-28 19:15:29 +0300 | [diff] [blame] | 4824 | } |
| 4825 | |
Avi Kivity | 1aa3661 | 2011-04-27 13:20:30 +0300 | [diff] [blame] | 4826 | static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector, |
| 4827 | struct desc_struct *desc, u32 *base3, |
| 4828 | int seg) |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4829 | { |
| 4830 | struct kvm_segment var; |
| 4831 | |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4832 | kvm_get_segment(emul_to_vcpu(ctxt), &var, seg); |
Avi Kivity | 1aa3661 | 2011-04-27 13:20:30 +0300 | [diff] [blame] | 4833 | *selector = var.selector; |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4834 | |
Gleb Natapov | 378a8b0 | 2013-01-21 15:36:48 +0200 | [diff] [blame] | 4835 | if (var.unusable) { |
| 4836 | memset(desc, 0, sizeof(*desc)); |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4837 | return false; |
Gleb Natapov | 378a8b0 | 2013-01-21 15:36:48 +0200 | [diff] [blame] | 4838 | } |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4839 | |
| 4840 | if (var.g) |
| 4841 | var.limit >>= 12; |
| 4842 | set_desc_limit(desc, var.limit); |
| 4843 | set_desc_base(desc, (unsigned long)var.base); |
Gleb Natapov | 5601d05 | 2011-03-07 14:55:06 +0200 | [diff] [blame] | 4844 | #ifdef CONFIG_X86_64 |
| 4845 | if (base3) |
| 4846 | *base3 = var.base >> 32; |
| 4847 | #endif |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4848 | desc->type = var.type; |
| 4849 | desc->s = var.s; |
| 4850 | desc->dpl = var.dpl; |
| 4851 | desc->p = var.present; |
| 4852 | desc->avl = var.avl; |
| 4853 | desc->l = var.l; |
| 4854 | desc->d = var.db; |
| 4855 | desc->g = var.g; |
| 4856 | |
| 4857 | return true; |
| 4858 | } |
| 4859 | |
Avi Kivity | 1aa3661 | 2011-04-27 13:20:30 +0300 | [diff] [blame] | 4860 | static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector, |
| 4861 | struct desc_struct *desc, u32 base3, |
| 4862 | int seg) |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4863 | { |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4864 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4865 | struct kvm_segment var; |
| 4866 | |
Avi Kivity | 1aa3661 | 2011-04-27 13:20:30 +0300 | [diff] [blame] | 4867 | var.selector = selector; |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4868 | var.base = get_desc_base(desc); |
Gleb Natapov | 5601d05 | 2011-03-07 14:55:06 +0200 | [diff] [blame] | 4869 | #ifdef CONFIG_X86_64 |
| 4870 | var.base |= ((u64)base3) << 32; |
| 4871 | #endif |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4872 | var.limit = get_desc_limit(desc); |
| 4873 | if (desc->g) |
| 4874 | var.limit = (var.limit << 12) | 0xfff; |
| 4875 | var.type = desc->type; |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4876 | var.dpl = desc->dpl; |
| 4877 | var.db = desc->d; |
| 4878 | var.s = desc->s; |
| 4879 | var.l = desc->l; |
| 4880 | var.g = desc->g; |
| 4881 | var.avl = desc->avl; |
| 4882 | var.present = desc->p; |
| 4883 | var.unusable = !var.present; |
| 4884 | var.padding = 0; |
| 4885 | |
| 4886 | kvm_set_segment(vcpu, &var, seg); |
| 4887 | return; |
| 4888 | } |
| 4889 | |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4890 | static int emulator_get_msr(struct x86_emulate_ctxt *ctxt, |
| 4891 | u32 msr_index, u64 *pdata) |
| 4892 | { |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 4893 | struct msr_data msr; |
| 4894 | int r; |
| 4895 | |
| 4896 | msr.index = msr_index; |
| 4897 | msr.host_initiated = false; |
| 4898 | r = kvm_get_msr(emul_to_vcpu(ctxt), &msr); |
| 4899 | if (r) |
| 4900 | return r; |
| 4901 | |
| 4902 | *pdata = msr.data; |
| 4903 | return 0; |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4904 | } |
| 4905 | |
| 4906 | static int emulator_set_msr(struct x86_emulate_ctxt *ctxt, |
| 4907 | u32 msr_index, u64 data) |
| 4908 | { |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 4909 | struct msr_data msr; |
| 4910 | |
| 4911 | msr.data = data; |
| 4912 | msr.index = msr_index; |
| 4913 | msr.host_initiated = false; |
| 4914 | return kvm_set_msr(emul_to_vcpu(ctxt), &msr); |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4915 | } |
| 4916 | |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 4917 | static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt) |
| 4918 | { |
| 4919 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
| 4920 | |
| 4921 | return vcpu->arch.smbase; |
| 4922 | } |
| 4923 | |
| 4924 | static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase) |
| 4925 | { |
| 4926 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
| 4927 | |
| 4928 | vcpu->arch.smbase = smbase; |
| 4929 | } |
| 4930 | |
Nadav Amit | 67f4d42 | 2014-06-02 18:34:09 +0300 | [diff] [blame] | 4931 | static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt, |
| 4932 | u32 pmc) |
| 4933 | { |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 4934 | return kvm_pmu_is_valid_msr_idx(emul_to_vcpu(ctxt), pmc); |
Nadav Amit | 67f4d42 | 2014-06-02 18:34:09 +0300 | [diff] [blame] | 4935 | } |
| 4936 | |
Avi Kivity | 222d21a | 2011-11-10 14:57:30 +0200 | [diff] [blame] | 4937 | static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt, |
| 4938 | u32 pmc, u64 *pdata) |
| 4939 | { |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 4940 | return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata); |
Avi Kivity | 222d21a | 2011-11-10 14:57:30 +0200 | [diff] [blame] | 4941 | } |
| 4942 | |
Avi Kivity | 6c3287f | 2011-04-20 15:43:05 +0300 | [diff] [blame] | 4943 | static void emulator_halt(struct x86_emulate_ctxt *ctxt) |
| 4944 | { |
| 4945 | emul_to_vcpu(ctxt)->arch.halt_request = 1; |
| 4946 | } |
| 4947 | |
Avi Kivity | 5037f6f | 2011-03-28 16:53:59 +0200 | [diff] [blame] | 4948 | static void emulator_get_fpu(struct x86_emulate_ctxt *ctxt) |
| 4949 | { |
| 4950 | preempt_disable(); |
Avi Kivity | 5197b80 | 2011-04-20 15:55:40 +0300 | [diff] [blame] | 4951 | kvm_load_guest_fpu(emul_to_vcpu(ctxt)); |
Avi Kivity | 5037f6f | 2011-03-28 16:53:59 +0200 | [diff] [blame] | 4952 | /* |
| 4953 | * CR0.TS may reference the host fpu state, not the guest fpu state, |
| 4954 | * so it may be clear at this point. |
| 4955 | */ |
| 4956 | clts(); |
| 4957 | } |
| 4958 | |
| 4959 | static void emulator_put_fpu(struct x86_emulate_ctxt *ctxt) |
| 4960 | { |
| 4961 | preempt_enable(); |
| 4962 | } |
| 4963 | |
Avi Kivity | 2953538 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4964 | static int emulator_intercept(struct x86_emulate_ctxt *ctxt, |
Joerg Roedel | 8a76d7f | 2011-04-04 12:39:27 +0200 | [diff] [blame] | 4965 | struct x86_instruction_info *info, |
Avi Kivity | c4f035c | 2011-04-04 12:39:22 +0200 | [diff] [blame] | 4966 | enum x86_intercept_stage stage) |
| 4967 | { |
Avi Kivity | 2953538 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4968 | return kvm_x86_ops->check_intercept(emul_to_vcpu(ctxt), info, stage); |
Avi Kivity | c4f035c | 2011-04-04 12:39:22 +0200 | [diff] [blame] | 4969 | } |
| 4970 | |
Avi Kivity | 0017f93 | 2012-06-07 14:10:16 +0300 | [diff] [blame] | 4971 | static void emulator_get_cpuid(struct x86_emulate_ctxt *ctxt, |
Stephan Bärwolf | bdb42f5 | 2012-01-12 16:43:03 +0100 | [diff] [blame] | 4972 | u32 *eax, u32 *ebx, u32 *ecx, u32 *edx) |
| 4973 | { |
Avi Kivity | 0017f93 | 2012-06-07 14:10:16 +0300 | [diff] [blame] | 4974 | kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx); |
Stephan Bärwolf | bdb42f5 | 2012-01-12 16:43:03 +0100 | [diff] [blame] | 4975 | } |
| 4976 | |
Avi Kivity | dd856ef | 2012-08-27 23:46:17 +0300 | [diff] [blame] | 4977 | static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg) |
| 4978 | { |
| 4979 | return kvm_register_read(emul_to_vcpu(ctxt), reg); |
| 4980 | } |
| 4981 | |
| 4982 | static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val) |
| 4983 | { |
| 4984 | kvm_register_write(emul_to_vcpu(ctxt), reg, val); |
| 4985 | } |
| 4986 | |
Nadav Amit | 801806d | 2015-01-26 09:32:23 +0200 | [diff] [blame] | 4987 | static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked) |
| 4988 | { |
| 4989 | kvm_x86_ops->set_nmi_mask(emul_to_vcpu(ctxt), masked); |
| 4990 | } |
| 4991 | |
Mathias Krause | 0225fb5 | 2012-08-30 01:30:16 +0200 | [diff] [blame] | 4992 | static const struct x86_emulate_ops emulate_ops = { |
Avi Kivity | dd856ef | 2012-08-27 23:46:17 +0300 | [diff] [blame] | 4993 | .read_gpr = emulator_read_gpr, |
| 4994 | .write_gpr = emulator_write_gpr, |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4995 | .read_std = kvm_read_guest_virt_system, |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4996 | .write_std = kvm_write_guest_virt_system, |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4997 | .fetch = kvm_fetch_guest_virt, |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4998 | .read_emulated = emulator_read_emulated, |
| 4999 | .write_emulated = emulator_write_emulated, |
| 5000 | .cmpxchg_emulated = emulator_cmpxchg_emulated, |
Avi Kivity | 3cb16fe | 2011-04-20 15:38:44 +0300 | [diff] [blame] | 5001 | .invlpg = emulator_invlpg, |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5002 | .pio_in_emulated = emulator_pio_in_emulated, |
| 5003 | .pio_out_emulated = emulator_pio_out_emulated, |
Avi Kivity | 1aa3661 | 2011-04-27 13:20:30 +0300 | [diff] [blame] | 5004 | .get_segment = emulator_get_segment, |
| 5005 | .set_segment = emulator_set_segment, |
Gleb Natapov | 5951c44 | 2010-04-28 19:15:29 +0300 | [diff] [blame] | 5006 | .get_cached_segment_base = emulator_get_cached_segment_base, |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 5007 | .get_gdt = emulator_get_gdt, |
Mohammed Gamal | 160ce1f | 2010-08-04 05:44:24 +0300 | [diff] [blame] | 5008 | .get_idt = emulator_get_idt, |
Avi Kivity | 1ac9d0c | 2011-04-20 15:12:00 +0300 | [diff] [blame] | 5009 | .set_gdt = emulator_set_gdt, |
| 5010 | .set_idt = emulator_set_idt, |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 5011 | .get_cr = emulator_get_cr, |
| 5012 | .set_cr = emulator_set_cr, |
Gleb Natapov | 9c53724 | 2010-03-18 15:20:05 +0200 | [diff] [blame] | 5013 | .cpl = emulator_get_cpl, |
Gleb Natapov | 35aa537 | 2010-04-28 19:15:27 +0300 | [diff] [blame] | 5014 | .get_dr = emulator_get_dr, |
| 5015 | .set_dr = emulator_set_dr, |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 5016 | .get_smbase = emulator_get_smbase, |
| 5017 | .set_smbase = emulator_set_smbase, |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 5018 | .set_msr = emulator_set_msr, |
| 5019 | .get_msr = emulator_get_msr, |
Nadav Amit | 67f4d42 | 2014-06-02 18:34:09 +0300 | [diff] [blame] | 5020 | .check_pmc = emulator_check_pmc, |
Avi Kivity | 222d21a | 2011-11-10 14:57:30 +0200 | [diff] [blame] | 5021 | .read_pmc = emulator_read_pmc, |
Avi Kivity | 6c3287f | 2011-04-20 15:43:05 +0300 | [diff] [blame] | 5022 | .halt = emulator_halt, |
Avi Kivity | bcaf5cc | 2011-04-20 15:53:23 +0300 | [diff] [blame] | 5023 | .wbinvd = emulator_wbinvd, |
Avi Kivity | d6aa100 | 2011-04-20 15:47:13 +0300 | [diff] [blame] | 5024 | .fix_hypercall = emulator_fix_hypercall, |
Avi Kivity | 5037f6f | 2011-03-28 16:53:59 +0200 | [diff] [blame] | 5025 | .get_fpu = emulator_get_fpu, |
| 5026 | .put_fpu = emulator_put_fpu, |
Avi Kivity | c4f035c | 2011-04-04 12:39:22 +0200 | [diff] [blame] | 5027 | .intercept = emulator_intercept, |
Stephan Bärwolf | bdb42f5 | 2012-01-12 16:43:03 +0100 | [diff] [blame] | 5028 | .get_cpuid = emulator_get_cpuid, |
Nadav Amit | 801806d | 2015-01-26 09:32:23 +0200 | [diff] [blame] | 5029 | .set_nmi_mask = emulator_set_nmi_mask, |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5030 | }; |
| 5031 | |
Gleb Natapov | 95cb229 | 2010-04-28 19:15:43 +0300 | [diff] [blame] | 5032 | static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask) |
| 5033 | { |
Paolo Bonzini | 37ccdcb | 2014-05-20 14:29:47 +0200 | [diff] [blame] | 5034 | u32 int_shadow = kvm_x86_ops->get_interrupt_shadow(vcpu); |
Gleb Natapov | 95cb229 | 2010-04-28 19:15:43 +0300 | [diff] [blame] | 5035 | /* |
| 5036 | * an sti; sti; sequence only disable interrupts for the first |
| 5037 | * instruction. So, if the last instruction, be it emulated or |
| 5038 | * not, left the system with the INT_STI flag enabled, it |
| 5039 | * means that the last instruction is an sti. We should not |
| 5040 | * leave the flag on in this case. The same goes for mov ss |
| 5041 | */ |
Paolo Bonzini | 37ccdcb | 2014-05-20 14:29:47 +0200 | [diff] [blame] | 5042 | if (int_shadow & mask) |
| 5043 | mask = 0; |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 5044 | if (unlikely(int_shadow || mask)) { |
Gleb Natapov | 95cb229 | 2010-04-28 19:15:43 +0300 | [diff] [blame] | 5045 | kvm_x86_ops->set_interrupt_shadow(vcpu, mask); |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 5046 | if (!mask) |
| 5047 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 5048 | } |
Gleb Natapov | 95cb229 | 2010-04-28 19:15:43 +0300 | [diff] [blame] | 5049 | } |
| 5050 | |
Paolo Bonzini | ef54bcf | 2014-09-04 19:46:15 +0200 | [diff] [blame] | 5051 | static bool inject_emulated_exception(struct kvm_vcpu *vcpu) |
Gleb Natapov | 54b8486 | 2010-04-28 19:15:44 +0300 | [diff] [blame] | 5052 | { |
| 5053 | struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt; |
Avi Kivity | da9cb57 | 2010-11-22 17:53:21 +0200 | [diff] [blame] | 5054 | if (ctxt->exception.vector == PF_VECTOR) |
Paolo Bonzini | ef54bcf | 2014-09-04 19:46:15 +0200 | [diff] [blame] | 5055 | return kvm_propagate_fault(vcpu, &ctxt->exception); |
| 5056 | |
| 5057 | if (ctxt->exception.error_code_valid) |
Avi Kivity | da9cb57 | 2010-11-22 17:53:21 +0200 | [diff] [blame] | 5058 | kvm_queue_exception_e(vcpu, ctxt->exception.vector, |
| 5059 | ctxt->exception.error_code); |
Gleb Natapov | 54b8486 | 2010-04-28 19:15:44 +0300 | [diff] [blame] | 5060 | else |
Avi Kivity | da9cb57 | 2010-11-22 17:53:21 +0200 | [diff] [blame] | 5061 | kvm_queue_exception(vcpu, ctxt->exception.vector); |
Paolo Bonzini | ef54bcf | 2014-09-04 19:46:15 +0200 | [diff] [blame] | 5062 | return false; |
Gleb Natapov | 54b8486 | 2010-04-28 19:15:44 +0300 | [diff] [blame] | 5063 | } |
| 5064 | |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 5065 | static void init_emulate_ctxt(struct kvm_vcpu *vcpu) |
| 5066 | { |
Takuya Yoshikawa | adf5223 | 2011-05-25 11:06:16 +0900 | [diff] [blame] | 5067 | struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt; |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 5068 | int cs_db, cs_l; |
| 5069 | |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 5070 | kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l); |
| 5071 | |
Takuya Yoshikawa | adf5223 | 2011-05-25 11:06:16 +0900 | [diff] [blame] | 5072 | ctxt->eflags = kvm_get_rflags(vcpu); |
| 5073 | ctxt->eip = kvm_rip_read(vcpu); |
| 5074 | ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL : |
| 5075 | (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 : |
Nadav Amit | 42bf549 | 2014-04-18 07:11:34 +0300 | [diff] [blame] | 5076 | (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 : |
Takuya Yoshikawa | adf5223 | 2011-05-25 11:06:16 +0900 | [diff] [blame] | 5077 | cs_db ? X86EMUL_MODE_PROT32 : |
| 5078 | X86EMUL_MODE_PROT16; |
Paolo Bonzini | a584539 | 2015-04-01 18:18:53 +0200 | [diff] [blame] | 5079 | BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK); |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 5080 | BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK); |
| 5081 | BUILD_BUG_ON(HF_SMM_INSIDE_NMI_MASK != X86EMUL_SMM_INSIDE_NMI_MASK); |
Paolo Bonzini | a584539 | 2015-04-01 18:18:53 +0200 | [diff] [blame] | 5082 | ctxt->emul_flags = vcpu->arch.hflags; |
Takuya Yoshikawa | adf5223 | 2011-05-25 11:06:16 +0900 | [diff] [blame] | 5083 | |
Avi Kivity | dd856ef | 2012-08-27 23:46:17 +0300 | [diff] [blame] | 5084 | init_decode_cache(ctxt); |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5085 | vcpu->arch.emulate_regs_need_sync_from_vcpu = false; |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 5086 | } |
| 5087 | |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 5088 | int kvm_inject_realmode_interrupt(struct kvm_vcpu *vcpu, int irq, int inc_eip) |
Mohammed Gamal | 6399565 | 2010-09-19 14:34:06 +0200 | [diff] [blame] | 5089 | { |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5090 | struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt; |
Mohammed Gamal | 6399565 | 2010-09-19 14:34:06 +0200 | [diff] [blame] | 5091 | int ret; |
| 5092 | |
| 5093 | init_emulate_ctxt(vcpu); |
| 5094 | |
Avi Kivity | 9dac77f | 2011-06-01 15:34:25 +0300 | [diff] [blame] | 5095 | ctxt->op_bytes = 2; |
| 5096 | ctxt->ad_bytes = 2; |
| 5097 | ctxt->_eip = ctxt->eip + inc_eip; |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5098 | ret = emulate_int_real(ctxt, irq); |
Mohammed Gamal | 6399565 | 2010-09-19 14:34:06 +0200 | [diff] [blame] | 5099 | |
| 5100 | if (ret != X86EMUL_CONTINUE) |
| 5101 | return EMULATE_FAIL; |
| 5102 | |
Avi Kivity | 9dac77f | 2011-06-01 15:34:25 +0300 | [diff] [blame] | 5103 | ctxt->eip = ctxt->_eip; |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5104 | kvm_rip_write(vcpu, ctxt->eip); |
| 5105 | kvm_set_rflags(vcpu, ctxt->eflags); |
Mohammed Gamal | 6399565 | 2010-09-19 14:34:06 +0200 | [diff] [blame] | 5106 | |
| 5107 | if (irq == NMI_VECTOR) |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 5108 | vcpu->arch.nmi_pending = 0; |
Mohammed Gamal | 6399565 | 2010-09-19 14:34:06 +0200 | [diff] [blame] | 5109 | else |
| 5110 | vcpu->arch.interrupt.pending = false; |
| 5111 | |
| 5112 | return EMULATE_DONE; |
| 5113 | } |
| 5114 | EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt); |
| 5115 | |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 5116 | static int handle_emulation_failure(struct kvm_vcpu *vcpu) |
| 5117 | { |
Joerg Roedel | fc3a915 | 2010-11-29 17:51:49 +0100 | [diff] [blame] | 5118 | int r = EMULATE_DONE; |
| 5119 | |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 5120 | ++vcpu->stat.insn_emulation_fail; |
| 5121 | trace_kvm_emulate_insn_failed(vcpu); |
Nadav Amit | a2b9e6c | 2014-09-17 02:50:50 +0300 | [diff] [blame] | 5122 | if (!is_guest_mode(vcpu) && kvm_x86_ops->get_cpl(vcpu) == 0) { |
Joerg Roedel | fc3a915 | 2010-11-29 17:51:49 +0100 | [diff] [blame] | 5123 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 5124 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 5125 | vcpu->run->internal.ndata = 0; |
| 5126 | r = EMULATE_FAIL; |
| 5127 | } |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 5128 | kvm_queue_exception(vcpu, UD_VECTOR); |
Joerg Roedel | fc3a915 | 2010-11-29 17:51:49 +0100 | [diff] [blame] | 5129 | |
| 5130 | return r; |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 5131 | } |
| 5132 | |
Xiao Guangrong | 93c05d3 | 2013-01-13 23:49:07 +0800 | [diff] [blame] | 5133 | static bool reexecute_instruction(struct kvm_vcpu *vcpu, gva_t cr2, |
Gleb Natapov | 991eebf | 2013-04-11 12:10:51 +0300 | [diff] [blame] | 5134 | bool write_fault_to_shadow_pgtable, |
| 5135 | int emulation_type) |
Gleb Natapov | a6f177e | 2010-07-08 12:41:12 +0300 | [diff] [blame] | 5136 | { |
Xiao Guangrong | 95b3cf6 | 2013-01-13 23:46:52 +0800 | [diff] [blame] | 5137 | gpa_t gpa = cr2; |
Xiao Guangrong | 8e3d9d0 | 2012-08-21 10:57:42 +0800 | [diff] [blame] | 5138 | pfn_t pfn; |
Gleb Natapov | a6f177e | 2010-07-08 12:41:12 +0300 | [diff] [blame] | 5139 | |
Gleb Natapov | 991eebf | 2013-04-11 12:10:51 +0300 | [diff] [blame] | 5140 | if (emulation_type & EMULTYPE_NO_REEXECUTE) |
| 5141 | return false; |
| 5142 | |
Xiao Guangrong | 95b3cf6 | 2013-01-13 23:46:52 +0800 | [diff] [blame] | 5143 | if (!vcpu->arch.mmu.direct_map) { |
| 5144 | /* |
| 5145 | * Write permission should be allowed since only |
| 5146 | * write access need to be emulated. |
| 5147 | */ |
| 5148 | gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL); |
Gleb Natapov | 68be080 | 2010-07-14 19:05:45 +0300 | [diff] [blame] | 5149 | |
Xiao Guangrong | 95b3cf6 | 2013-01-13 23:46:52 +0800 | [diff] [blame] | 5150 | /* |
| 5151 | * If the mapping is invalid in guest, let cpu retry |
| 5152 | * it to generate fault. |
| 5153 | */ |
| 5154 | if (gpa == UNMAPPED_GVA) |
| 5155 | return true; |
| 5156 | } |
Gleb Natapov | a6f177e | 2010-07-08 12:41:12 +0300 | [diff] [blame] | 5157 | |
Xiao Guangrong | 8e3d9d0 | 2012-08-21 10:57:42 +0800 | [diff] [blame] | 5158 | /* |
| 5159 | * Do not retry the unhandleable instruction if it faults on the |
| 5160 | * readonly host memory, otherwise it will goto a infinite loop: |
| 5161 | * retry instruction -> write #PF -> emulation fail -> retry |
| 5162 | * instruction -> ... |
| 5163 | */ |
| 5164 | pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa)); |
Xiao Guangrong | 95b3cf6 | 2013-01-13 23:46:52 +0800 | [diff] [blame] | 5165 | |
| 5166 | /* |
| 5167 | * If the instruction failed on the error pfn, it can not be fixed, |
| 5168 | * report the error to userspace. |
| 5169 | */ |
| 5170 | if (is_error_noslot_pfn(pfn)) |
| 5171 | return false; |
| 5172 | |
| 5173 | kvm_release_pfn_clean(pfn); |
| 5174 | |
| 5175 | /* The instructions are well-emulated on direct mmu. */ |
| 5176 | if (vcpu->arch.mmu.direct_map) { |
| 5177 | unsigned int indirect_shadow_pages; |
| 5178 | |
| 5179 | spin_lock(&vcpu->kvm->mmu_lock); |
| 5180 | indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages; |
| 5181 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 5182 | |
| 5183 | if (indirect_shadow_pages) |
| 5184 | kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa)); |
| 5185 | |
Gleb Natapov | a6f177e | 2010-07-08 12:41:12 +0300 | [diff] [blame] | 5186 | return true; |
Xiao Guangrong | 8e3d9d0 | 2012-08-21 10:57:42 +0800 | [diff] [blame] | 5187 | } |
Gleb Natapov | a6f177e | 2010-07-08 12:41:12 +0300 | [diff] [blame] | 5188 | |
Xiao Guangrong | 95b3cf6 | 2013-01-13 23:46:52 +0800 | [diff] [blame] | 5189 | /* |
| 5190 | * if emulation was due to access to shadowed page table |
| 5191 | * and it failed try to unshadow page and re-enter the |
| 5192 | * guest to let CPU execute the instruction. |
| 5193 | */ |
| 5194 | kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa)); |
Xiao Guangrong | 93c05d3 | 2013-01-13 23:49:07 +0800 | [diff] [blame] | 5195 | |
| 5196 | /* |
| 5197 | * If the access faults on its page table, it can not |
| 5198 | * be fixed by unprotecting shadow page and it should |
| 5199 | * be reported to userspace. |
| 5200 | */ |
| 5201 | return !write_fault_to_shadow_pgtable; |
Gleb Natapov | a6f177e | 2010-07-08 12:41:12 +0300 | [diff] [blame] | 5202 | } |
| 5203 | |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 5204 | static bool retry_instruction(struct x86_emulate_ctxt *ctxt, |
| 5205 | unsigned long cr2, int emulation_type) |
| 5206 | { |
| 5207 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
| 5208 | unsigned long last_retry_eip, last_retry_addr, gpa = cr2; |
| 5209 | |
| 5210 | last_retry_eip = vcpu->arch.last_retry_eip; |
| 5211 | last_retry_addr = vcpu->arch.last_retry_addr; |
| 5212 | |
| 5213 | /* |
| 5214 | * If the emulation is caused by #PF and it is non-page_table |
| 5215 | * writing instruction, it means the VM-EXIT is caused by shadow |
| 5216 | * page protected, we can zap the shadow page and retry this |
| 5217 | * instruction directly. |
| 5218 | * |
| 5219 | * Note: if the guest uses a non-page-table modifying instruction |
| 5220 | * on the PDE that points to the instruction, then we will unmap |
| 5221 | * the instruction and go to an infinite loop. So, we cache the |
| 5222 | * last retried eip and the last fault address, if we meet the eip |
| 5223 | * and the address again, we can break out of the potential infinite |
| 5224 | * loop. |
| 5225 | */ |
| 5226 | vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0; |
| 5227 | |
| 5228 | if (!(emulation_type & EMULTYPE_RETRY)) |
| 5229 | return false; |
| 5230 | |
| 5231 | if (x86_page_table_writing_insn(ctxt)) |
| 5232 | return false; |
| 5233 | |
| 5234 | if (ctxt->eip == last_retry_eip && last_retry_addr == cr2) |
| 5235 | return false; |
| 5236 | |
| 5237 | vcpu->arch.last_retry_eip = ctxt->eip; |
| 5238 | vcpu->arch.last_retry_addr = cr2; |
| 5239 | |
| 5240 | if (!vcpu->arch.mmu.direct_map) |
| 5241 | gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL); |
| 5242 | |
Xiao Guangrong | 2236802 | 2013-01-13 23:44:12 +0800 | [diff] [blame] | 5243 | kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa)); |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 5244 | |
| 5245 | return true; |
| 5246 | } |
| 5247 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 5248 | static int complete_emulated_mmio(struct kvm_vcpu *vcpu); |
| 5249 | static int complete_emulated_pio(struct kvm_vcpu *vcpu); |
| 5250 | |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 5251 | static void kvm_smm_changed(struct kvm_vcpu *vcpu) |
Paolo Bonzini | a584539 | 2015-04-01 18:18:53 +0200 | [diff] [blame] | 5252 | { |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 5253 | if (!(vcpu->arch.hflags & HF_SMM_MASK)) { |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 5254 | /* This is a good place to trace that we are exiting SMM. */ |
| 5255 | trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, false); |
| 5256 | |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 5257 | if (unlikely(vcpu->arch.smi_pending)) { |
| 5258 | kvm_make_request(KVM_REQ_SMI, vcpu); |
| 5259 | vcpu->arch.smi_pending = 0; |
Paolo Bonzini | cd7764f | 2015-06-04 10:41:21 +0200 | [diff] [blame] | 5260 | } else { |
| 5261 | /* Process a latched INIT, if any. */ |
| 5262 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 5263 | } |
| 5264 | } |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 5265 | |
| 5266 | kvm_mmu_reset_context(vcpu); |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 5267 | } |
| 5268 | |
| 5269 | static void kvm_set_hflags(struct kvm_vcpu *vcpu, unsigned emul_flags) |
| 5270 | { |
| 5271 | unsigned changed = vcpu->arch.hflags ^ emul_flags; |
| 5272 | |
Paolo Bonzini | a584539 | 2015-04-01 18:18:53 +0200 | [diff] [blame] | 5273 | vcpu->arch.hflags = emul_flags; |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 5274 | |
| 5275 | if (changed & HF_SMM_MASK) |
| 5276 | kvm_smm_changed(vcpu); |
Paolo Bonzini | a584539 | 2015-04-01 18:18:53 +0200 | [diff] [blame] | 5277 | } |
| 5278 | |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 5279 | static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7, |
| 5280 | unsigned long *db) |
| 5281 | { |
| 5282 | u32 dr6 = 0; |
| 5283 | int i; |
| 5284 | u32 enable, rwlen; |
| 5285 | |
| 5286 | enable = dr7; |
| 5287 | rwlen = dr7 >> 16; |
| 5288 | for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4) |
| 5289 | if ((enable & 3) && (rwlen & 15) == type && db[i] == addr) |
| 5290 | dr6 |= (1 << i); |
| 5291 | return dr6; |
| 5292 | } |
| 5293 | |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 5294 | static void kvm_vcpu_check_singlestep(struct kvm_vcpu *vcpu, unsigned long rflags, int *r) |
Paolo Bonzini | 663f4c6 | 2013-06-25 18:32:07 +0200 | [diff] [blame] | 5295 | { |
| 5296 | struct kvm_run *kvm_run = vcpu->run; |
| 5297 | |
| 5298 | /* |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 5299 | * rflags is the old, "raw" value of the flags. The new value has |
| 5300 | * not been saved yet. |
Paolo Bonzini | 663f4c6 | 2013-06-25 18:32:07 +0200 | [diff] [blame] | 5301 | * |
| 5302 | * This is correct even for TF set by the guest, because "the |
| 5303 | * processor will not generate this exception after the instruction |
| 5304 | * that sets the TF flag". |
| 5305 | */ |
Paolo Bonzini | 663f4c6 | 2013-06-25 18:32:07 +0200 | [diff] [blame] | 5306 | if (unlikely(rflags & X86_EFLAGS_TF)) { |
| 5307 | if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) { |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 5308 | kvm_run->debug.arch.dr6 = DR6_BS | DR6_FIXED_1 | |
| 5309 | DR6_RTM; |
Paolo Bonzini | 663f4c6 | 2013-06-25 18:32:07 +0200 | [diff] [blame] | 5310 | kvm_run->debug.arch.pc = vcpu->arch.singlestep_rip; |
| 5311 | kvm_run->debug.arch.exception = DB_VECTOR; |
| 5312 | kvm_run->exit_reason = KVM_EXIT_DEBUG; |
| 5313 | *r = EMULATE_USER_EXIT; |
| 5314 | } else { |
| 5315 | vcpu->arch.emulate_ctxt.eflags &= ~X86_EFLAGS_TF; |
| 5316 | /* |
| 5317 | * "Certain debug exceptions may clear bit 0-3. The |
| 5318 | * remaining contents of the DR6 register are never |
| 5319 | * cleared by the processor". |
| 5320 | */ |
| 5321 | vcpu->arch.dr6 &= ~15; |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 5322 | vcpu->arch.dr6 |= DR6_BS | DR6_RTM; |
Paolo Bonzini | 663f4c6 | 2013-06-25 18:32:07 +0200 | [diff] [blame] | 5323 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 5324 | } |
| 5325 | } |
| 5326 | } |
| 5327 | |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 5328 | static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r) |
| 5329 | { |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 5330 | if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) && |
| 5331 | (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) { |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 5332 | struct kvm_run *kvm_run = vcpu->run; |
| 5333 | unsigned long eip = kvm_get_linear_rip(vcpu); |
| 5334 | u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0, |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 5335 | vcpu->arch.guest_debug_dr7, |
| 5336 | vcpu->arch.eff_db); |
| 5337 | |
| 5338 | if (dr6 != 0) { |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 5339 | kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1 | DR6_RTM; |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 5340 | kvm_run->debug.arch.pc = eip; |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 5341 | kvm_run->debug.arch.exception = DB_VECTOR; |
| 5342 | kvm_run->exit_reason = KVM_EXIT_DEBUG; |
| 5343 | *r = EMULATE_USER_EXIT; |
| 5344 | return true; |
| 5345 | } |
| 5346 | } |
| 5347 | |
Nadav Amit | 4161a56 | 2014-07-17 01:19:31 +0300 | [diff] [blame] | 5348 | if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) && |
| 5349 | !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) { |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 5350 | unsigned long eip = kvm_get_linear_rip(vcpu); |
| 5351 | u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0, |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 5352 | vcpu->arch.dr7, |
| 5353 | vcpu->arch.db); |
| 5354 | |
| 5355 | if (dr6 != 0) { |
| 5356 | vcpu->arch.dr6 &= ~15; |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 5357 | vcpu->arch.dr6 |= dr6 | DR6_RTM; |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 5358 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 5359 | *r = EMULATE_DONE; |
| 5360 | return true; |
| 5361 | } |
| 5362 | } |
| 5363 | |
| 5364 | return false; |
| 5365 | } |
| 5366 | |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5367 | int x86_emulate_instruction(struct kvm_vcpu *vcpu, |
| 5368 | unsigned long cr2, |
Andre Przywara | dc25e89 | 2010-12-21 11:12:07 +0100 | [diff] [blame] | 5369 | int emulation_type, |
| 5370 | void *insn, |
| 5371 | int insn_len) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5372 | { |
Gleb Natapov | 95cb229 | 2010-04-28 19:15:43 +0300 | [diff] [blame] | 5373 | int r; |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5374 | struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt; |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5375 | bool writeback = true; |
Xiao Guangrong | 93c05d3 | 2013-01-13 23:49:07 +0800 | [diff] [blame] | 5376 | bool write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5377 | |
Xiao Guangrong | 93c05d3 | 2013-01-13 23:49:07 +0800 | [diff] [blame] | 5378 | /* |
| 5379 | * Clear write_fault_to_shadow_pgtable here to ensure it is |
| 5380 | * never reused. |
| 5381 | */ |
| 5382 | vcpu->arch.write_fault_to_shadow_pgtable = false; |
Avi Kivity | 26eef70 | 2008-07-03 14:59:22 +0300 | [diff] [blame] | 5383 | kvm_clear_exception_queue(vcpu); |
Gleb Natapov | 8d7d8102 | 2011-04-12 12:36:21 +0300 | [diff] [blame] | 5384 | |
Sheng Yang | 571008d | 2008-01-02 14:49:22 +0800 | [diff] [blame] | 5385 | if (!(emulation_type & EMULTYPE_NO_DECODE)) { |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 5386 | init_emulate_ctxt(vcpu); |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 5387 | |
| 5388 | /* |
| 5389 | * We will reenter on the same instruction since |
| 5390 | * we do not set complete_userspace_io. This does not |
| 5391 | * handle watchpoints yet, those would be handled in |
| 5392 | * the emulate_ops. |
| 5393 | */ |
| 5394 | if (kvm_vcpu_check_breakpoint(vcpu, &r)) |
| 5395 | return r; |
| 5396 | |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5397 | ctxt->interruptibility = 0; |
| 5398 | ctxt->have_exception = false; |
Paolo Bonzini | e0ad0b4 | 2014-08-20 10:08:23 +0200 | [diff] [blame] | 5399 | ctxt->exception.vector = -1; |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5400 | ctxt->perm_ok = false; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5401 | |
Borislav Petkov | b51e974 | 2013-09-22 16:44:52 +0200 | [diff] [blame] | 5402 | ctxt->ud = emulation_type & EMULTYPE_TRAP_UD; |
Avi Kivity | 4005996 | 2011-02-01 16:32:04 +0200 | [diff] [blame] | 5403 | |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5404 | r = x86_decode_insn(ctxt, insn, insn_len); |
Joerg Roedel | d47f00a | 2010-09-10 17:30:56 +0200 | [diff] [blame] | 5405 | |
Avi Kivity | e46479f | 2010-04-11 13:05:16 +0300 | [diff] [blame] | 5406 | trace_kvm_emulate_insn_start(vcpu); |
Avi Kivity | f2b5756 | 2007-11-18 15:17:51 +0200 | [diff] [blame] | 5407 | ++vcpu->stat.insn_emulation; |
Takuya Yoshikawa | 1d2887e | 2011-07-30 18:03:34 +0900 | [diff] [blame] | 5408 | if (r != EMULATION_OK) { |
Avi Kivity | 4005996 | 2011-02-01 16:32:04 +0200 | [diff] [blame] | 5409 | if (emulation_type & EMULTYPE_TRAP_UD) |
| 5410 | return EMULATE_FAIL; |
Gleb Natapov | 991eebf | 2013-04-11 12:10:51 +0300 | [diff] [blame] | 5411 | if (reexecute_instruction(vcpu, cr2, write_fault_to_spt, |
| 5412 | emulation_type)) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5413 | return EMULATE_DONE; |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 5414 | if (emulation_type & EMULTYPE_SKIP) |
| 5415 | return EMULATE_FAIL; |
| 5416 | return handle_emulation_failure(vcpu); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5417 | } |
| 5418 | } |
| 5419 | |
Gleb Natapov | ba8afb6 | 2009-04-12 13:36:57 +0300 | [diff] [blame] | 5420 | if (emulation_type & EMULTYPE_SKIP) { |
Avi Kivity | 9dac77f | 2011-06-01 15:34:25 +0300 | [diff] [blame] | 5421 | kvm_rip_write(vcpu, ctxt->_eip); |
Nadav Amit | bb663c7 | 2014-07-21 14:37:26 +0300 | [diff] [blame] | 5422 | if (ctxt->eflags & X86_EFLAGS_RF) |
| 5423 | kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF); |
Gleb Natapov | ba8afb6 | 2009-04-12 13:36:57 +0300 | [diff] [blame] | 5424 | return EMULATE_DONE; |
| 5425 | } |
| 5426 | |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 5427 | if (retry_instruction(ctxt, cr2, emulation_type)) |
| 5428 | return EMULATE_DONE; |
| 5429 | |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5430 | /* this is needed for vmware backdoor interface to work since it |
Gleb Natapov | 4d2179e | 2010-04-28 19:15:42 +0300 | [diff] [blame] | 5431 | changes registers values during IO operation */ |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5432 | if (vcpu->arch.emulate_regs_need_sync_from_vcpu) { |
| 5433 | vcpu->arch.emulate_regs_need_sync_from_vcpu = false; |
Avi Kivity | dd856ef | 2012-08-27 23:46:17 +0300 | [diff] [blame] | 5434 | emulator_invalidate_register_cache(ctxt); |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5435 | } |
Gleb Natapov | 4d2179e | 2010-04-28 19:15:42 +0300 | [diff] [blame] | 5436 | |
Gleb Natapov | 5cd2191 | 2010-03-18 15:20:26 +0200 | [diff] [blame] | 5437 | restart: |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5438 | r = x86_emulate_insn(ctxt); |
Gleb Natapov | c3cd7ff | 2010-04-28 19:15:35 +0300 | [diff] [blame] | 5439 | |
Joerg Roedel | 775fde8 | 2011-04-04 12:39:24 +0200 | [diff] [blame] | 5440 | if (r == EMULATION_INTERCEPTED) |
| 5441 | return EMULATE_DONE; |
| 5442 | |
Gleb Natapov | d2ddd1c | 2010-08-25 12:47:43 +0300 | [diff] [blame] | 5443 | if (r == EMULATION_FAILED) { |
Gleb Natapov | 991eebf | 2013-04-11 12:10:51 +0300 | [diff] [blame] | 5444 | if (reexecute_instruction(vcpu, cr2, write_fault_to_spt, |
| 5445 | emulation_type)) |
Gleb Natapov | c3cd7ff | 2010-04-28 19:15:35 +0300 | [diff] [blame] | 5446 | return EMULATE_DONE; |
| 5447 | |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 5448 | return handle_emulation_failure(vcpu); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5449 | } |
| 5450 | |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5451 | if (ctxt->have_exception) { |
Gleb Natapov | d2ddd1c | 2010-08-25 12:47:43 +0300 | [diff] [blame] | 5452 | r = EMULATE_DONE; |
Paolo Bonzini | ef54bcf | 2014-09-04 19:46:15 +0200 | [diff] [blame] | 5453 | if (inject_emulated_exception(vcpu)) |
| 5454 | return r; |
Gleb Natapov | d2ddd1c | 2010-08-25 12:47:43 +0300 | [diff] [blame] | 5455 | } else if (vcpu->arch.pio.count) { |
Paolo Bonzini | 0912c97 | 2013-08-27 15:41:43 +0200 | [diff] [blame] | 5456 | if (!vcpu->arch.pio.in) { |
| 5457 | /* FIXME: return into emulator if single-stepping. */ |
Gleb Natapov | e85d28f | 2010-07-29 15:11:52 +0300 | [diff] [blame] | 5458 | vcpu->arch.pio.count = 0; |
Paolo Bonzini | 0912c97 | 2013-08-27 15:41:43 +0200 | [diff] [blame] | 5459 | } else { |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5460 | writeback = false; |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 5461 | vcpu->arch.complete_userspace_io = complete_emulated_pio; |
| 5462 | } |
Paolo Bonzini | ac0a48c | 2013-06-25 18:24:41 +0200 | [diff] [blame] | 5463 | r = EMULATE_USER_EXIT; |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5464 | } else if (vcpu->mmio_needed) { |
| 5465 | if (!vcpu->mmio_is_write) |
| 5466 | writeback = false; |
Paolo Bonzini | ac0a48c | 2013-06-25 18:24:41 +0200 | [diff] [blame] | 5467 | r = EMULATE_USER_EXIT; |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 5468 | vcpu->arch.complete_userspace_io = complete_emulated_mmio; |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5469 | } else if (r == EMULATION_RESTART) |
Gleb Natapov | e85d28f | 2010-07-29 15:11:52 +0300 | [diff] [blame] | 5470 | goto restart; |
Gleb Natapov | d2ddd1c | 2010-08-25 12:47:43 +0300 | [diff] [blame] | 5471 | else |
| 5472 | r = EMULATE_DONE; |
Gleb Natapov | e85d28f | 2010-07-29 15:11:52 +0300 | [diff] [blame] | 5473 | |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5474 | if (writeback) { |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 5475 | unsigned long rflags = kvm_x86_ops->get_rflags(vcpu); |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5476 | toggle_interruptibility(vcpu, ctxt->interruptibility); |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5477 | vcpu->arch.emulate_regs_need_sync_to_vcpu = false; |
Paolo Bonzini | a584539 | 2015-04-01 18:18:53 +0200 | [diff] [blame] | 5478 | if (vcpu->arch.hflags != ctxt->emul_flags) |
| 5479 | kvm_set_hflags(vcpu, ctxt->emul_flags); |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5480 | kvm_rip_write(vcpu, ctxt->eip); |
Paolo Bonzini | 663f4c6 | 2013-06-25 18:32:07 +0200 | [diff] [blame] | 5481 | if (r == EMULATE_DONE) |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 5482 | kvm_vcpu_check_singlestep(vcpu, rflags, &r); |
Nadav Amit | 38827db | 2014-11-02 11:54:53 +0200 | [diff] [blame] | 5483 | if (!ctxt->have_exception || |
| 5484 | exception_type(ctxt->exception.vector) == EXCPT_TRAP) |
| 5485 | __kvm_set_rflags(vcpu, ctxt->eflags); |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 5486 | |
| 5487 | /* |
| 5488 | * For STI, interrupts are shadowed; so KVM_REQ_EVENT will |
| 5489 | * do nothing, and it will be requested again as soon as |
| 5490 | * the shadow expires. But we still need to check here, |
| 5491 | * because POPF has no interrupt shadow. |
| 5492 | */ |
| 5493 | if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF)) |
| 5494 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5495 | } else |
| 5496 | vcpu->arch.emulate_regs_need_sync_to_vcpu = true; |
Gleb Natapov | 3457e41 | 2010-04-28 19:15:38 +0300 | [diff] [blame] | 5497 | |
Gleb Natapov | e85d28f | 2010-07-29 15:11:52 +0300 | [diff] [blame] | 5498 | return r; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5499 | } |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5500 | EXPORT_SYMBOL_GPL(x86_emulate_instruction); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5501 | |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5502 | int kvm_fast_pio_out(struct kvm_vcpu *vcpu, int size, unsigned short port) |
Carsten Otte | de7d789 | 2007-10-30 18:44:25 +0100 | [diff] [blame] | 5503 | { |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5504 | unsigned long val = kvm_register_read(vcpu, VCPU_REGS_RAX); |
Avi Kivity | ca1d4a9 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 5505 | int ret = emulator_pio_out_emulated(&vcpu->arch.emulate_ctxt, |
| 5506 | size, port, &val, 1); |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5507 | /* do not return to emulator after return from userspace */ |
Gleb Natapov | 7972995 | 2010-03-18 15:20:24 +0200 | [diff] [blame] | 5508 | vcpu->arch.pio.count = 0; |
Izik Eidus | 0f34607 | 2008-12-29 01:42:20 +0200 | [diff] [blame] | 5509 | return ret; |
Carsten Otte | de7d789 | 2007-10-30 18:44:25 +0100 | [diff] [blame] | 5510 | } |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5511 | EXPORT_SYMBOL_GPL(kvm_fast_pio_out); |
Carsten Otte | de7d789 | 2007-10-30 18:44:25 +0100 | [diff] [blame] | 5512 | |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 5513 | static void tsc_bad(void *info) |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5514 | { |
Tejun Heo | 0a3aee0 | 2010-12-18 16:28:55 +0100 | [diff] [blame] | 5515 | __this_cpu_write(cpu_tsc_khz, 0); |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 5516 | } |
| 5517 | |
| 5518 | static void tsc_khz_changed(void *data) |
| 5519 | { |
| 5520 | struct cpufreq_freqs *freq = data; |
| 5521 | unsigned long khz = 0; |
| 5522 | |
| 5523 | if (data) |
| 5524 | khz = freq->new; |
| 5525 | else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) |
| 5526 | khz = cpufreq_quick_get(raw_smp_processor_id()); |
| 5527 | if (!khz) |
| 5528 | khz = tsc_khz; |
Tejun Heo | 0a3aee0 | 2010-12-18 16:28:55 +0100 | [diff] [blame] | 5529 | __this_cpu_write(cpu_tsc_khz, khz); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5530 | } |
| 5531 | |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5532 | static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val, |
| 5533 | void *data) |
| 5534 | { |
| 5535 | struct cpufreq_freqs *freq = data; |
| 5536 | struct kvm *kvm; |
| 5537 | struct kvm_vcpu *vcpu; |
| 5538 | int i, send_ipi = 0; |
| 5539 | |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 5540 | /* |
| 5541 | * We allow guests to temporarily run on slowing clocks, |
| 5542 | * provided we notify them after, or to run on accelerating |
| 5543 | * clocks, provided we notify them before. Thus time never |
| 5544 | * goes backwards. |
| 5545 | * |
| 5546 | * However, we have a problem. We can't atomically update |
| 5547 | * the frequency of a given CPU from this function; it is |
| 5548 | * merely a notifier, which can be called from any CPU. |
| 5549 | * Changing the TSC frequency at arbitrary points in time |
| 5550 | * requires a recomputation of local variables related to |
| 5551 | * the TSC for each VCPU. We must flag these local variables |
| 5552 | * to be updated and be sure the update takes place with the |
| 5553 | * new frequency before any guests proceed. |
| 5554 | * |
| 5555 | * Unfortunately, the combination of hotplug CPU and frequency |
| 5556 | * change creates an intractable locking scenario; the order |
| 5557 | * of when these callouts happen is undefined with respect to |
| 5558 | * CPU hotplug, and they can race with each other. As such, |
| 5559 | * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is |
| 5560 | * undefined; you can actually have a CPU frequency change take |
| 5561 | * place in between the computation of X and the setting of the |
| 5562 | * variable. To protect against this problem, all updates of |
| 5563 | * the per_cpu tsc_khz variable are done in an interrupt |
| 5564 | * protected IPI, and all callers wishing to update the value |
| 5565 | * must wait for a synchronous IPI to complete (which is trivial |
| 5566 | * if the caller is on the CPU already). This establishes the |
| 5567 | * necessary total order on variable updates. |
| 5568 | * |
| 5569 | * Note that because a guest time update may take place |
| 5570 | * anytime after the setting of the VCPU's request bit, the |
| 5571 | * correct TSC value must be set before the request. However, |
| 5572 | * to ensure the update actually makes it to any guest which |
| 5573 | * starts running in hardware virtualization between the set |
| 5574 | * and the acquisition of the spinlock, we must also ping the |
| 5575 | * CPU after setting the request bit. |
| 5576 | * |
| 5577 | */ |
| 5578 | |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5579 | if (val == CPUFREQ_PRECHANGE && freq->old > freq->new) |
| 5580 | return 0; |
| 5581 | if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new) |
| 5582 | return 0; |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 5583 | |
| 5584 | smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5585 | |
Paolo Bonzini | 2f303b7 | 2013-09-25 13:53:07 +0200 | [diff] [blame] | 5586 | spin_lock(&kvm_lock); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5587 | list_for_each_entry(kvm, &vm_list, vm_list) { |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 5588 | kvm_for_each_vcpu(i, vcpu, kvm) { |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5589 | if (vcpu->cpu != freq->cpu) |
| 5590 | continue; |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 5591 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5592 | if (vcpu->cpu != smp_processor_id()) |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 5593 | send_ipi = 1; |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5594 | } |
| 5595 | } |
Paolo Bonzini | 2f303b7 | 2013-09-25 13:53:07 +0200 | [diff] [blame] | 5596 | spin_unlock(&kvm_lock); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5597 | |
| 5598 | if (freq->old < freq->new && send_ipi) { |
| 5599 | /* |
| 5600 | * We upscale the frequency. Must make the guest |
| 5601 | * doesn't see old kvmclock values while running with |
| 5602 | * the new frequency, otherwise we risk the guest sees |
| 5603 | * time go backwards. |
| 5604 | * |
| 5605 | * In case we update the frequency for another cpu |
| 5606 | * (which might be in guest context) send an interrupt |
| 5607 | * to kick the cpu out of guest context. Next time |
| 5608 | * guest context is entered kvmclock will be updated, |
| 5609 | * so the guest will not see stale values. |
| 5610 | */ |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 5611 | smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5612 | } |
| 5613 | return 0; |
| 5614 | } |
| 5615 | |
| 5616 | static struct notifier_block kvmclock_cpufreq_notifier_block = { |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 5617 | .notifier_call = kvmclock_cpufreq_notifier |
| 5618 | }; |
| 5619 | |
| 5620 | static int kvmclock_cpu_notifier(struct notifier_block *nfb, |
| 5621 | unsigned long action, void *hcpu) |
| 5622 | { |
| 5623 | unsigned int cpu = (unsigned long)hcpu; |
| 5624 | |
| 5625 | switch (action) { |
| 5626 | case CPU_ONLINE: |
| 5627 | case CPU_DOWN_FAILED: |
| 5628 | smp_call_function_single(cpu, tsc_khz_changed, NULL, 1); |
| 5629 | break; |
| 5630 | case CPU_DOWN_PREPARE: |
| 5631 | smp_call_function_single(cpu, tsc_bad, NULL, 1); |
| 5632 | break; |
| 5633 | } |
| 5634 | return NOTIFY_OK; |
| 5635 | } |
| 5636 | |
| 5637 | static struct notifier_block kvmclock_cpu_notifier_block = { |
| 5638 | .notifier_call = kvmclock_cpu_notifier, |
| 5639 | .priority = -INT_MAX |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5640 | }; |
| 5641 | |
Zachary Amsden | b820cc0 | 2009-09-29 11:38:34 -1000 | [diff] [blame] | 5642 | static void kvm_timer_init(void) |
| 5643 | { |
| 5644 | int cpu; |
| 5645 | |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 5646 | max_tsc_khz = tsc_khz; |
Srivatsa S. Bhat | 460dd42 | 2014-03-11 02:09:01 +0530 | [diff] [blame] | 5647 | |
| 5648 | cpu_notifier_register_begin(); |
Zachary Amsden | b820cc0 | 2009-09-29 11:38:34 -1000 | [diff] [blame] | 5649 | if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) { |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 5650 | #ifdef CONFIG_CPU_FREQ |
| 5651 | struct cpufreq_policy policy; |
| 5652 | memset(&policy, 0, sizeof(policy)); |
Avi Kivity | 3e26f23 | 2010-12-16 12:16:34 +0200 | [diff] [blame] | 5653 | cpu = get_cpu(); |
| 5654 | cpufreq_get_policy(&policy, cpu); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 5655 | if (policy.cpuinfo.max_freq) |
| 5656 | max_tsc_khz = policy.cpuinfo.max_freq; |
Avi Kivity | 3e26f23 | 2010-12-16 12:16:34 +0200 | [diff] [blame] | 5657 | put_cpu(); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 5658 | #endif |
Zachary Amsden | b820cc0 | 2009-09-29 11:38:34 -1000 | [diff] [blame] | 5659 | cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block, |
| 5660 | CPUFREQ_TRANSITION_NOTIFIER); |
| 5661 | } |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 5662 | pr_debug("kvm: max_tsc_khz = %ld\n", max_tsc_khz); |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 5663 | for_each_online_cpu(cpu) |
| 5664 | smp_call_function_single(cpu, tsc_khz_changed, NULL, 1); |
Srivatsa S. Bhat | 460dd42 | 2014-03-11 02:09:01 +0530 | [diff] [blame] | 5665 | |
| 5666 | __register_hotcpu_notifier(&kvmclock_cpu_notifier_block); |
| 5667 | cpu_notifier_register_done(); |
| 5668 | |
Zachary Amsden | b820cc0 | 2009-09-29 11:38:34 -1000 | [diff] [blame] | 5669 | } |
| 5670 | |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 5671 | static DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu); |
| 5672 | |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 5673 | int kvm_is_in_guest(void) |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 5674 | { |
Alex,Shi | 086c985 | 2011-10-20 15:34:01 +0800 | [diff] [blame] | 5675 | return __this_cpu_read(current_vcpu) != NULL; |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 5676 | } |
| 5677 | |
| 5678 | static int kvm_is_user_mode(void) |
| 5679 | { |
| 5680 | int user_mode = 3; |
Zhang, Yanmin | dcf46b9 | 2010-04-20 10:13:58 +0800 | [diff] [blame] | 5681 | |
Alex,Shi | 086c985 | 2011-10-20 15:34:01 +0800 | [diff] [blame] | 5682 | if (__this_cpu_read(current_vcpu)) |
| 5683 | user_mode = kvm_x86_ops->get_cpl(__this_cpu_read(current_vcpu)); |
Zhang, Yanmin | dcf46b9 | 2010-04-20 10:13:58 +0800 | [diff] [blame] | 5684 | |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 5685 | return user_mode != 0; |
| 5686 | } |
| 5687 | |
| 5688 | static unsigned long kvm_get_guest_ip(void) |
| 5689 | { |
| 5690 | unsigned long ip = 0; |
Zhang, Yanmin | dcf46b9 | 2010-04-20 10:13:58 +0800 | [diff] [blame] | 5691 | |
Alex,Shi | 086c985 | 2011-10-20 15:34:01 +0800 | [diff] [blame] | 5692 | if (__this_cpu_read(current_vcpu)) |
| 5693 | ip = kvm_rip_read(__this_cpu_read(current_vcpu)); |
Zhang, Yanmin | dcf46b9 | 2010-04-20 10:13:58 +0800 | [diff] [blame] | 5694 | |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 5695 | return ip; |
| 5696 | } |
| 5697 | |
| 5698 | static struct perf_guest_info_callbacks kvm_guest_cbs = { |
| 5699 | .is_in_guest = kvm_is_in_guest, |
| 5700 | .is_user_mode = kvm_is_user_mode, |
| 5701 | .get_guest_ip = kvm_get_guest_ip, |
| 5702 | }; |
| 5703 | |
| 5704 | void kvm_before_handle_nmi(struct kvm_vcpu *vcpu) |
| 5705 | { |
Alex,Shi | 086c985 | 2011-10-20 15:34:01 +0800 | [diff] [blame] | 5706 | __this_cpu_write(current_vcpu, vcpu); |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 5707 | } |
| 5708 | EXPORT_SYMBOL_GPL(kvm_before_handle_nmi); |
| 5709 | |
| 5710 | void kvm_after_handle_nmi(struct kvm_vcpu *vcpu) |
| 5711 | { |
Alex,Shi | 086c985 | 2011-10-20 15:34:01 +0800 | [diff] [blame] | 5712 | __this_cpu_write(current_vcpu, NULL); |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 5713 | } |
| 5714 | EXPORT_SYMBOL_GPL(kvm_after_handle_nmi); |
| 5715 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5716 | static void kvm_set_mmio_spte_mask(void) |
| 5717 | { |
| 5718 | u64 mask; |
| 5719 | int maxphyaddr = boot_cpu_data.x86_phys_bits; |
| 5720 | |
| 5721 | /* |
| 5722 | * Set the reserved bits and the present bit of an paging-structure |
| 5723 | * entry to generate page fault with PFER.RSV = 1. |
| 5724 | */ |
Xiao Guangrong | 885032b | 2013-06-07 16:51:23 +0800 | [diff] [blame] | 5725 | /* Mask the reserved physical address bits. */ |
Tiejun Chen | d143148 | 2014-09-01 18:44:04 +0800 | [diff] [blame] | 5726 | mask = rsvd_bits(maxphyaddr, 51); |
Xiao Guangrong | 885032b | 2013-06-07 16:51:23 +0800 | [diff] [blame] | 5727 | |
| 5728 | /* Bit 62 is always reserved for 32bit host. */ |
| 5729 | mask |= 0x3ull << 62; |
| 5730 | |
| 5731 | /* Set the present bit. */ |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5732 | mask |= 1ull; |
| 5733 | |
| 5734 | #ifdef CONFIG_X86_64 |
| 5735 | /* |
| 5736 | * If reserved bit is not supported, clear the present bit to disable |
| 5737 | * mmio page fault. |
| 5738 | */ |
| 5739 | if (maxphyaddr == 52) |
| 5740 | mask &= ~1ull; |
| 5741 | #endif |
| 5742 | |
| 5743 | kvm_mmu_set_mmio_spte_mask(mask); |
| 5744 | } |
| 5745 | |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 5746 | #ifdef CONFIG_X86_64 |
| 5747 | static void pvclock_gtod_update_fn(struct work_struct *work) |
| 5748 | { |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 5749 | struct kvm *kvm; |
| 5750 | |
| 5751 | struct kvm_vcpu *vcpu; |
| 5752 | int i; |
| 5753 | |
Paolo Bonzini | 2f303b7 | 2013-09-25 13:53:07 +0200 | [diff] [blame] | 5754 | spin_lock(&kvm_lock); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 5755 | list_for_each_entry(kvm, &vm_list, vm_list) |
| 5756 | kvm_for_each_vcpu(i, vcpu, kvm) |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 5757 | kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 5758 | atomic_set(&kvm_guest_has_master_clock, 0); |
Paolo Bonzini | 2f303b7 | 2013-09-25 13:53:07 +0200 | [diff] [blame] | 5759 | spin_unlock(&kvm_lock); |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 5760 | } |
| 5761 | |
| 5762 | static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn); |
| 5763 | |
| 5764 | /* |
| 5765 | * Notification about pvclock gtod data update. |
| 5766 | */ |
| 5767 | static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused, |
| 5768 | void *priv) |
| 5769 | { |
| 5770 | struct pvclock_gtod_data *gtod = &pvclock_gtod_data; |
| 5771 | struct timekeeper *tk = priv; |
| 5772 | |
| 5773 | update_pvclock_gtod(tk); |
| 5774 | |
| 5775 | /* disable master clock if host does not trust, or does not |
| 5776 | * use, TSC clocksource |
| 5777 | */ |
| 5778 | if (gtod->clock.vclock_mode != VCLOCK_TSC && |
| 5779 | atomic_read(&kvm_guest_has_master_clock) != 0) |
| 5780 | queue_work(system_long_wq, &pvclock_gtod_work); |
| 5781 | |
| 5782 | return 0; |
| 5783 | } |
| 5784 | |
| 5785 | static struct notifier_block pvclock_gtod_notifier = { |
| 5786 | .notifier_call = pvclock_gtod_notify, |
| 5787 | }; |
| 5788 | #endif |
| 5789 | |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5790 | int kvm_arch_init(void *opaque) |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 5791 | { |
Zachary Amsden | b820cc0 | 2009-09-29 11:38:34 -1000 | [diff] [blame] | 5792 | int r; |
Mathias Krause | 6b61edf | 2013-06-26 20:36:23 +0200 | [diff] [blame] | 5793 | struct kvm_x86_ops *ops = opaque; |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5794 | |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5795 | if (kvm_x86_ops) { |
| 5796 | printk(KERN_ERR "kvm: already loaded the other module\n"); |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 5797 | r = -EEXIST; |
| 5798 | goto out; |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5799 | } |
| 5800 | |
| 5801 | if (!ops->cpu_has_kvm_support()) { |
| 5802 | printk(KERN_ERR "kvm: no hardware support\n"); |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 5803 | r = -EOPNOTSUPP; |
| 5804 | goto out; |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5805 | } |
| 5806 | if (ops->disabled_by_bios()) { |
| 5807 | printk(KERN_ERR "kvm: disabled by bios\n"); |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 5808 | r = -EOPNOTSUPP; |
| 5809 | goto out; |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5810 | } |
| 5811 | |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 5812 | r = -ENOMEM; |
| 5813 | shared_msrs = alloc_percpu(struct kvm_shared_msrs); |
| 5814 | if (!shared_msrs) { |
| 5815 | printk(KERN_ERR "kvm: failed to allocate percpu kvm_shared_msrs\n"); |
| 5816 | goto out; |
| 5817 | } |
| 5818 | |
Avi Kivity | 97db56c | 2008-01-13 13:23:56 +0200 | [diff] [blame] | 5819 | r = kvm_mmu_module_init(); |
| 5820 | if (r) |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 5821 | goto out_free_percpu; |
Avi Kivity | 97db56c | 2008-01-13 13:23:56 +0200 | [diff] [blame] | 5822 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5823 | kvm_set_mmio_spte_mask(); |
Avi Kivity | 97db56c | 2008-01-13 13:23:56 +0200 | [diff] [blame] | 5824 | |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5825 | kvm_x86_ops = ops; |
Paolo Bonzini | 920c837 | 2014-03-26 15:54:00 +0100 | [diff] [blame] | 5826 | |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 5827 | kvm_mmu_set_mask_ptes(PT_USER_MASK, PT_ACCESSED_MASK, |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 5828 | PT_DIRTY_MASK, PT64_NX_MASK, 0); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5829 | |
Zachary Amsden | b820cc0 | 2009-09-29 11:38:34 -1000 | [diff] [blame] | 5830 | kvm_timer_init(); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5831 | |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 5832 | perf_register_guest_info_callbacks(&kvm_guest_cbs); |
| 5833 | |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 5834 | if (cpu_has_xsave) |
| 5835 | host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK); |
| 5836 | |
Gleb Natapov | c5cc421 | 2012-08-05 15:58:30 +0300 | [diff] [blame] | 5837 | kvm_lapic_init(); |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 5838 | #ifdef CONFIG_X86_64 |
| 5839 | pvclock_gtod_register_notifier(&pvclock_gtod_notifier); |
| 5840 | #endif |
| 5841 | |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5842 | return 0; |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 5843 | |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 5844 | out_free_percpu: |
| 5845 | free_percpu(shared_msrs); |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 5846 | out: |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 5847 | return r; |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 5848 | } |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 5849 | |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5850 | void kvm_arch_exit(void) |
| 5851 | { |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 5852 | perf_unregister_guest_info_callbacks(&kvm_guest_cbs); |
| 5853 | |
Jan Kiszka | 888d256 | 2009-04-17 19:24:58 +0200 | [diff] [blame] | 5854 | if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) |
| 5855 | cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block, |
| 5856 | CPUFREQ_TRANSITION_NOTIFIER); |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 5857 | unregister_hotcpu_notifier(&kvmclock_cpu_notifier_block); |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 5858 | #ifdef CONFIG_X86_64 |
| 5859 | pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier); |
| 5860 | #endif |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5861 | kvm_x86_ops = NULL; |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 5862 | kvm_mmu_module_exit(); |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 5863 | free_percpu(shared_msrs); |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 5864 | } |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5865 | |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 5866 | int kvm_vcpu_halt(struct kvm_vcpu *vcpu) |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 5867 | { |
| 5868 | ++vcpu->stat.halt_exits; |
| 5869 | if (irqchip_in_kernel(vcpu->kvm)) { |
Avi Kivity | a453529 | 2008-04-13 17:54:35 +0300 | [diff] [blame] | 5870 | vcpu->arch.mp_state = KVM_MP_STATE_HALTED; |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 5871 | return 1; |
| 5872 | } else { |
| 5873 | vcpu->run->exit_reason = KVM_EXIT_HLT; |
| 5874 | return 0; |
| 5875 | } |
| 5876 | } |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 5877 | EXPORT_SYMBOL_GPL(kvm_vcpu_halt); |
| 5878 | |
| 5879 | int kvm_emulate_halt(struct kvm_vcpu *vcpu) |
| 5880 | { |
| 5881 | kvm_x86_ops->skip_emulated_instruction(vcpu); |
| 5882 | return kvm_vcpu_halt(vcpu); |
| 5883 | } |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 5884 | EXPORT_SYMBOL_GPL(kvm_emulate_halt); |
| 5885 | |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 5886 | int kvm_hv_hypercall(struct kvm_vcpu *vcpu) |
| 5887 | { |
| 5888 | u64 param, ingpa, outgpa, ret; |
| 5889 | uint16_t code, rep_idx, rep_cnt, res = HV_STATUS_SUCCESS, rep_done = 0; |
| 5890 | bool fast, longmode; |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 5891 | |
| 5892 | /* |
| 5893 | * hypercall generates UD from non zero cpl and real mode |
| 5894 | * per HYPER-V spec |
| 5895 | */ |
Avi Kivity | 3eeb328 | 2010-01-21 15:31:48 +0200 | [diff] [blame] | 5896 | if (kvm_x86_ops->get_cpl(vcpu) != 0 || !is_protmode(vcpu)) { |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 5897 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 5898 | return 0; |
| 5899 | } |
| 5900 | |
Nadav Amit | a449c7a | 2014-06-18 17:19:24 +0300 | [diff] [blame] | 5901 | longmode = is_64_bit_mode(vcpu); |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 5902 | |
| 5903 | if (!longmode) { |
Gleb Natapov | ccd4693 | 2010-01-19 15:06:38 +0200 | [diff] [blame] | 5904 | param = ((u64)kvm_register_read(vcpu, VCPU_REGS_RDX) << 32) | |
| 5905 | (kvm_register_read(vcpu, VCPU_REGS_RAX) & 0xffffffff); |
| 5906 | ingpa = ((u64)kvm_register_read(vcpu, VCPU_REGS_RBX) << 32) | |
| 5907 | (kvm_register_read(vcpu, VCPU_REGS_RCX) & 0xffffffff); |
| 5908 | outgpa = ((u64)kvm_register_read(vcpu, VCPU_REGS_RDI) << 32) | |
| 5909 | (kvm_register_read(vcpu, VCPU_REGS_RSI) & 0xffffffff); |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 5910 | } |
| 5911 | #ifdef CONFIG_X86_64 |
| 5912 | else { |
| 5913 | param = kvm_register_read(vcpu, VCPU_REGS_RCX); |
| 5914 | ingpa = kvm_register_read(vcpu, VCPU_REGS_RDX); |
| 5915 | outgpa = kvm_register_read(vcpu, VCPU_REGS_R8); |
| 5916 | } |
| 5917 | #endif |
| 5918 | |
| 5919 | code = param & 0xffff; |
| 5920 | fast = (param >> 16) & 0x1; |
| 5921 | rep_cnt = (param >> 32) & 0xfff; |
| 5922 | rep_idx = (param >> 48) & 0xfff; |
| 5923 | |
| 5924 | trace_kvm_hv_hypercall(code, fast, rep_cnt, rep_idx, ingpa, outgpa); |
| 5925 | |
Gleb Natapov | c25bc16 | 2010-01-17 15:51:24 +0200 | [diff] [blame] | 5926 | switch (code) { |
| 5927 | case HV_X64_HV_NOTIFY_LONG_SPIN_WAIT: |
| 5928 | kvm_vcpu_on_spin(vcpu); |
| 5929 | break; |
| 5930 | default: |
| 5931 | res = HV_STATUS_INVALID_HYPERCALL_CODE; |
| 5932 | break; |
| 5933 | } |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 5934 | |
| 5935 | ret = res | (((u64)rep_done & 0xfff) << 32); |
| 5936 | if (longmode) { |
| 5937 | kvm_register_write(vcpu, VCPU_REGS_RAX, ret); |
| 5938 | } else { |
| 5939 | kvm_register_write(vcpu, VCPU_REGS_RDX, ret >> 32); |
| 5940 | kvm_register_write(vcpu, VCPU_REGS_RAX, ret & 0xffffffff); |
| 5941 | } |
| 5942 | |
| 5943 | return 1; |
| 5944 | } |
| 5945 | |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 5946 | /* |
| 5947 | * kvm_pv_kick_cpu_op: Kick a vcpu. |
| 5948 | * |
| 5949 | * @apicid - apicid of vcpu to be kicked. |
| 5950 | */ |
| 5951 | static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid) |
| 5952 | { |
Raghavendra K T | 24d2166 | 2013-08-26 14:18:35 +0530 | [diff] [blame] | 5953 | struct kvm_lapic_irq lapic_irq; |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 5954 | |
Raghavendra K T | 24d2166 | 2013-08-26 14:18:35 +0530 | [diff] [blame] | 5955 | lapic_irq.shorthand = 0; |
| 5956 | lapic_irq.dest_mode = 0; |
| 5957 | lapic_irq.dest_id = apicid; |
James Sullivan | 93bbf0b | 2015-03-18 19:26:03 -0600 | [diff] [blame] | 5958 | lapic_irq.msi_redir_hint = false; |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 5959 | |
Raghavendra K T | 24d2166 | 2013-08-26 14:18:35 +0530 | [diff] [blame] | 5960 | lapic_irq.delivery_mode = APIC_DM_REMRD; |
Xiubo Li | 795a149 | 2015-03-13 17:39:44 +0800 | [diff] [blame] | 5961 | kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL); |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 5962 | } |
| 5963 | |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 5964 | int kvm_emulate_hypercall(struct kvm_vcpu *vcpu) |
| 5965 | { |
| 5966 | unsigned long nr, a0, a1, a2, a3, ret; |
Nadav Amit | a449c7a | 2014-06-18 17:19:24 +0300 | [diff] [blame] | 5967 | int op_64_bit, r = 1; |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 5968 | |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 5969 | kvm_x86_ops->skip_emulated_instruction(vcpu); |
| 5970 | |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 5971 | if (kvm_hv_hypercall_enabled(vcpu->kvm)) |
| 5972 | return kvm_hv_hypercall(vcpu); |
| 5973 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 5974 | nr = kvm_register_read(vcpu, VCPU_REGS_RAX); |
| 5975 | a0 = kvm_register_read(vcpu, VCPU_REGS_RBX); |
| 5976 | a1 = kvm_register_read(vcpu, VCPU_REGS_RCX); |
| 5977 | a2 = kvm_register_read(vcpu, VCPU_REGS_RDX); |
| 5978 | a3 = kvm_register_read(vcpu, VCPU_REGS_RSI); |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 5979 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5980 | trace_kvm_hypercall(nr, a0, a1, a2, a3); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 5981 | |
Nadav Amit | a449c7a | 2014-06-18 17:19:24 +0300 | [diff] [blame] | 5982 | op_64_bit = is_64_bit_mode(vcpu); |
| 5983 | if (!op_64_bit) { |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 5984 | nr &= 0xFFFFFFFF; |
| 5985 | a0 &= 0xFFFFFFFF; |
| 5986 | a1 &= 0xFFFFFFFF; |
| 5987 | a2 &= 0xFFFFFFFF; |
| 5988 | a3 &= 0xFFFFFFFF; |
| 5989 | } |
| 5990 | |
Jan Kiszka | 07708c4 | 2009-08-03 18:43:28 +0200 | [diff] [blame] | 5991 | if (kvm_x86_ops->get_cpl(vcpu) != 0) { |
| 5992 | ret = -KVM_EPERM; |
| 5993 | goto out; |
| 5994 | } |
| 5995 | |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 5996 | switch (nr) { |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 5997 | case KVM_HC_VAPIC_POLL_IRQ: |
| 5998 | ret = 0; |
| 5999 | break; |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 6000 | case KVM_HC_KICK_CPU: |
| 6001 | kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1); |
| 6002 | ret = 0; |
| 6003 | break; |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 6004 | default: |
| 6005 | ret = -KVM_ENOSYS; |
| 6006 | break; |
| 6007 | } |
Jan Kiszka | 07708c4 | 2009-08-03 18:43:28 +0200 | [diff] [blame] | 6008 | out: |
Nadav Amit | a449c7a | 2014-06-18 17:19:24 +0300 | [diff] [blame] | 6009 | if (!op_64_bit) |
| 6010 | ret = (u32)ret; |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 6011 | kvm_register_write(vcpu, VCPU_REGS_RAX, ret); |
Amit Shah | f11c3a8 | 2008-02-21 01:00:30 +0530 | [diff] [blame] | 6012 | ++vcpu->stat.hypercalls; |
Marcelo Tosatti | 2f333bc | 2008-02-22 12:21:37 -0500 | [diff] [blame] | 6013 | return r; |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 6014 | } |
| 6015 | EXPORT_SYMBOL_GPL(kvm_emulate_hypercall); |
| 6016 | |
Jan Kiszka | b6785de | 2012-09-20 07:43:17 +0200 | [diff] [blame] | 6017 | static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt) |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 6018 | { |
Avi Kivity | d6aa100 | 2011-04-20 15:47:13 +0300 | [diff] [blame] | 6019 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 6020 | char instruction[3]; |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 6021 | unsigned long rip = kvm_rip_read(vcpu); |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 6022 | |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 6023 | kvm_x86_ops->patch_hypercall(vcpu, instruction); |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 6024 | |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 6025 | return emulator_write_emulated(ctxt, rip, instruction, 3, NULL); |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 6026 | } |
| 6027 | |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 6028 | /* |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6029 | * Check if userspace requested an interrupt window, and that the |
| 6030 | * interrupt window is open. |
| 6031 | * |
| 6032 | * No need to exit to userspace if we already have an interrupt queued. |
| 6033 | */ |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6034 | static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6035 | { |
Gleb Natapov | 8061823 | 2009-04-21 17:44:56 +0300 | [diff] [blame] | 6036 | return (!irqchip_in_kernel(vcpu->kvm) && !kvm_cpu_has_interrupt(vcpu) && |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6037 | vcpu->run->request_interrupt_window && |
Gleb Natapov | 5df5664 | 2009-04-21 17:44:59 +0300 | [diff] [blame] | 6038 | kvm_arch_interrupt_allowed(vcpu)); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6039 | } |
| 6040 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6041 | static void post_kvm_run_save(struct kvm_vcpu *vcpu) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6042 | { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6043 | struct kvm_run *kvm_run = vcpu->run; |
| 6044 | |
Jan Kiszka | 91586a3 | 2009-10-05 13:07:21 +0200 | [diff] [blame] | 6045 | kvm_run->if_flag = (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0; |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 6046 | kvm_run->flags = is_smm(vcpu) ? KVM_RUN_X86_SMM : 0; |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 6047 | kvm_run->cr8 = kvm_get_cr8(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6048 | kvm_run->apic_base = kvm_get_apic_base(vcpu); |
Jan Kiszka | 4531220 | 2008-12-11 16:54:54 +0100 | [diff] [blame] | 6049 | if (irqchip_in_kernel(vcpu->kvm)) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6050 | kvm_run->ready_for_interrupt_injection = 1; |
Jan Kiszka | 4531220 | 2008-12-11 16:54:54 +0100 | [diff] [blame] | 6051 | else |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6052 | kvm_run->ready_for_interrupt_injection = |
Gleb Natapov | fa9726b | 2009-05-11 13:35:47 +0300 | [diff] [blame] | 6053 | kvm_arch_interrupt_allowed(vcpu) && |
| 6054 | !kvm_cpu_has_interrupt(vcpu) && |
| 6055 | !kvm_event_needs_reinjection(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6056 | } |
| 6057 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6058 | static void update_cr8_intercept(struct kvm_vcpu *vcpu) |
| 6059 | { |
| 6060 | int max_irr, tpr; |
| 6061 | |
| 6062 | if (!kvm_x86_ops->update_cr8_intercept) |
| 6063 | return; |
| 6064 | |
Avi Kivity | 88c808f | 2009-08-17 22:49:40 +0300 | [diff] [blame] | 6065 | if (!vcpu->arch.apic) |
| 6066 | return; |
| 6067 | |
Gleb Natapov | 8db3baa | 2009-05-11 13:35:54 +0300 | [diff] [blame] | 6068 | if (!vcpu->arch.apic->vapic_addr) |
| 6069 | max_irr = kvm_lapic_find_highest_irr(vcpu); |
| 6070 | else |
| 6071 | max_irr = -1; |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6072 | |
| 6073 | if (max_irr != -1) |
| 6074 | max_irr >>= 4; |
| 6075 | |
| 6076 | tpr = kvm_lapic_get_cr8(vcpu); |
| 6077 | |
| 6078 | kvm_x86_ops->update_cr8_intercept(vcpu, tpr, max_irr); |
| 6079 | } |
| 6080 | |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 6081 | static int inject_pending_event(struct kvm_vcpu *vcpu, bool req_int_win) |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6082 | { |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 6083 | int r; |
| 6084 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6085 | /* try to reinject previous events if any */ |
Gleb Natapov | b59bb7b | 2009-07-09 15:33:51 +0300 | [diff] [blame] | 6086 | if (vcpu->arch.exception.pending) { |
Avi Kivity | 5c1c85d | 2010-03-11 13:01:59 +0200 | [diff] [blame] | 6087 | trace_kvm_inj_exception(vcpu->arch.exception.nr, |
| 6088 | vcpu->arch.exception.has_error_code, |
| 6089 | vcpu->arch.exception.error_code); |
Nadav Amit | d6e8c85 | 2014-07-24 14:51:24 +0300 | [diff] [blame] | 6090 | |
| 6091 | if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT) |
| 6092 | __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) | |
| 6093 | X86_EFLAGS_RF); |
| 6094 | |
Nadav Amit | 6bdf066 | 2014-09-30 20:49:14 +0300 | [diff] [blame] | 6095 | if (vcpu->arch.exception.nr == DB_VECTOR && |
| 6096 | (vcpu->arch.dr7 & DR7_GD)) { |
| 6097 | vcpu->arch.dr7 &= ~DR7_GD; |
| 6098 | kvm_update_dr7(vcpu); |
| 6099 | } |
| 6100 | |
Gleb Natapov | b59bb7b | 2009-07-09 15:33:51 +0300 | [diff] [blame] | 6101 | kvm_x86_ops->queue_exception(vcpu, vcpu->arch.exception.nr, |
| 6102 | vcpu->arch.exception.has_error_code, |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 6103 | vcpu->arch.exception.error_code, |
| 6104 | vcpu->arch.exception.reinject); |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 6105 | return 0; |
Gleb Natapov | b59bb7b | 2009-07-09 15:33:51 +0300 | [diff] [blame] | 6106 | } |
| 6107 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6108 | if (vcpu->arch.nmi_injected) { |
| 6109 | kvm_x86_ops->set_nmi(vcpu); |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 6110 | return 0; |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6111 | } |
| 6112 | |
| 6113 | if (vcpu->arch.interrupt.pending) { |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 6114 | kvm_x86_ops->set_irq(vcpu); |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 6115 | return 0; |
| 6116 | } |
| 6117 | |
| 6118 | if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events) { |
| 6119 | r = kvm_x86_ops->check_nested_events(vcpu, req_int_win); |
| 6120 | if (r != 0) |
| 6121 | return r; |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6122 | } |
| 6123 | |
| 6124 | /* try to inject new event if pending */ |
| 6125 | if (vcpu->arch.nmi_pending) { |
| 6126 | if (kvm_x86_ops->nmi_allowed(vcpu)) { |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 6127 | --vcpu->arch.nmi_pending; |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6128 | vcpu->arch.nmi_injected = true; |
| 6129 | kvm_x86_ops->set_nmi(vcpu); |
| 6130 | } |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 6131 | } else if (kvm_cpu_has_injectable_intr(vcpu)) { |
Bandan Das | 9242b5b | 2014-07-08 00:30:23 -0400 | [diff] [blame] | 6132 | /* |
| 6133 | * Because interrupts can be injected asynchronously, we are |
| 6134 | * calling check_nested_events again here to avoid a race condition. |
| 6135 | * See https://lkml.org/lkml/2014/7/2/60 for discussion about this |
| 6136 | * proposal and current concerns. Perhaps we should be setting |
| 6137 | * KVM_REQ_EVENT only on certain events and not unconditionally? |
| 6138 | */ |
| 6139 | if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events) { |
| 6140 | r = kvm_x86_ops->check_nested_events(vcpu, req_int_win); |
| 6141 | if (r != 0) |
| 6142 | return r; |
| 6143 | } |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6144 | if (kvm_x86_ops->interrupt_allowed(vcpu)) { |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 6145 | kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu), |
| 6146 | false); |
| 6147 | kvm_x86_ops->set_irq(vcpu); |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6148 | } |
| 6149 | } |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 6150 | return 0; |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6151 | } |
| 6152 | |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 6153 | static void process_nmi(struct kvm_vcpu *vcpu) |
| 6154 | { |
| 6155 | unsigned limit = 2; |
| 6156 | |
| 6157 | /* |
| 6158 | * x86 is limited to one NMI running, and one NMI pending after it. |
| 6159 | * If an NMI is already in progress, limit further NMIs to just one. |
| 6160 | * Otherwise, allow two (and we'll inject the first one immediately). |
| 6161 | */ |
| 6162 | if (kvm_x86_ops->get_nmi_mask(vcpu) || vcpu->arch.nmi_injected) |
| 6163 | limit = 1; |
| 6164 | |
| 6165 | vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0); |
| 6166 | vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit); |
| 6167 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 6168 | } |
| 6169 | |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6170 | #define put_smstate(type, buf, offset, val) \ |
| 6171 | *(type *)((buf) + (offset) - 0x7e00) = val |
| 6172 | |
| 6173 | static u32 process_smi_get_segment_flags(struct kvm_segment *seg) |
| 6174 | { |
| 6175 | u32 flags = 0; |
| 6176 | flags |= seg->g << 23; |
| 6177 | flags |= seg->db << 22; |
| 6178 | flags |= seg->l << 21; |
| 6179 | flags |= seg->avl << 20; |
| 6180 | flags |= seg->present << 15; |
| 6181 | flags |= seg->dpl << 13; |
| 6182 | flags |= seg->s << 12; |
| 6183 | flags |= seg->type << 8; |
| 6184 | return flags; |
| 6185 | } |
| 6186 | |
| 6187 | static void process_smi_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n) |
| 6188 | { |
| 6189 | struct kvm_segment seg; |
| 6190 | int offset; |
| 6191 | |
| 6192 | kvm_get_segment(vcpu, &seg, n); |
| 6193 | put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector); |
| 6194 | |
| 6195 | if (n < 3) |
| 6196 | offset = 0x7f84 + n * 12; |
| 6197 | else |
| 6198 | offset = 0x7f2c + (n - 3) * 12; |
| 6199 | |
| 6200 | put_smstate(u32, buf, offset + 8, seg.base); |
| 6201 | put_smstate(u32, buf, offset + 4, seg.limit); |
| 6202 | put_smstate(u32, buf, offset, process_smi_get_segment_flags(&seg)); |
| 6203 | } |
| 6204 | |
| 6205 | static void process_smi_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n) |
| 6206 | { |
| 6207 | struct kvm_segment seg; |
| 6208 | int offset; |
| 6209 | u16 flags; |
| 6210 | |
| 6211 | kvm_get_segment(vcpu, &seg, n); |
| 6212 | offset = 0x7e00 + n * 16; |
| 6213 | |
| 6214 | flags = process_smi_get_segment_flags(&seg) >> 8; |
| 6215 | put_smstate(u16, buf, offset, seg.selector); |
| 6216 | put_smstate(u16, buf, offset + 2, flags); |
| 6217 | put_smstate(u32, buf, offset + 4, seg.limit); |
| 6218 | put_smstate(u64, buf, offset + 8, seg.base); |
| 6219 | } |
| 6220 | |
| 6221 | static void process_smi_save_state_32(struct kvm_vcpu *vcpu, char *buf) |
| 6222 | { |
| 6223 | struct desc_ptr dt; |
| 6224 | struct kvm_segment seg; |
| 6225 | unsigned long val; |
| 6226 | int i; |
| 6227 | |
| 6228 | put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu)); |
| 6229 | put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu)); |
| 6230 | put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu)); |
| 6231 | put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu)); |
| 6232 | |
| 6233 | for (i = 0; i < 8; i++) |
| 6234 | put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read(vcpu, i)); |
| 6235 | |
| 6236 | kvm_get_dr(vcpu, 6, &val); |
| 6237 | put_smstate(u32, buf, 0x7fcc, (u32)val); |
| 6238 | kvm_get_dr(vcpu, 7, &val); |
| 6239 | put_smstate(u32, buf, 0x7fc8, (u32)val); |
| 6240 | |
| 6241 | kvm_get_segment(vcpu, &seg, VCPU_SREG_TR); |
| 6242 | put_smstate(u32, buf, 0x7fc4, seg.selector); |
| 6243 | put_smstate(u32, buf, 0x7f64, seg.base); |
| 6244 | put_smstate(u32, buf, 0x7f60, seg.limit); |
| 6245 | put_smstate(u32, buf, 0x7f5c, process_smi_get_segment_flags(&seg)); |
| 6246 | |
| 6247 | kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR); |
| 6248 | put_smstate(u32, buf, 0x7fc0, seg.selector); |
| 6249 | put_smstate(u32, buf, 0x7f80, seg.base); |
| 6250 | put_smstate(u32, buf, 0x7f7c, seg.limit); |
| 6251 | put_smstate(u32, buf, 0x7f78, process_smi_get_segment_flags(&seg)); |
| 6252 | |
| 6253 | kvm_x86_ops->get_gdt(vcpu, &dt); |
| 6254 | put_smstate(u32, buf, 0x7f74, dt.address); |
| 6255 | put_smstate(u32, buf, 0x7f70, dt.size); |
| 6256 | |
| 6257 | kvm_x86_ops->get_idt(vcpu, &dt); |
| 6258 | put_smstate(u32, buf, 0x7f58, dt.address); |
| 6259 | put_smstate(u32, buf, 0x7f54, dt.size); |
| 6260 | |
| 6261 | for (i = 0; i < 6; i++) |
| 6262 | process_smi_save_seg_32(vcpu, buf, i); |
| 6263 | |
| 6264 | put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu)); |
| 6265 | |
| 6266 | /* revision id */ |
| 6267 | put_smstate(u32, buf, 0x7efc, 0x00020000); |
| 6268 | put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase); |
| 6269 | } |
| 6270 | |
| 6271 | static void process_smi_save_state_64(struct kvm_vcpu *vcpu, char *buf) |
| 6272 | { |
| 6273 | #ifdef CONFIG_X86_64 |
| 6274 | struct desc_ptr dt; |
| 6275 | struct kvm_segment seg; |
| 6276 | unsigned long val; |
| 6277 | int i; |
| 6278 | |
| 6279 | for (i = 0; i < 16; i++) |
| 6280 | put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read(vcpu, i)); |
| 6281 | |
| 6282 | put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu)); |
| 6283 | put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu)); |
| 6284 | |
| 6285 | kvm_get_dr(vcpu, 6, &val); |
| 6286 | put_smstate(u64, buf, 0x7f68, val); |
| 6287 | kvm_get_dr(vcpu, 7, &val); |
| 6288 | put_smstate(u64, buf, 0x7f60, val); |
| 6289 | |
| 6290 | put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu)); |
| 6291 | put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu)); |
| 6292 | put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu)); |
| 6293 | |
| 6294 | put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase); |
| 6295 | |
| 6296 | /* revision id */ |
| 6297 | put_smstate(u32, buf, 0x7efc, 0x00020064); |
| 6298 | |
| 6299 | put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer); |
| 6300 | |
| 6301 | kvm_get_segment(vcpu, &seg, VCPU_SREG_TR); |
| 6302 | put_smstate(u16, buf, 0x7e90, seg.selector); |
| 6303 | put_smstate(u16, buf, 0x7e92, process_smi_get_segment_flags(&seg) >> 8); |
| 6304 | put_smstate(u32, buf, 0x7e94, seg.limit); |
| 6305 | put_smstate(u64, buf, 0x7e98, seg.base); |
| 6306 | |
| 6307 | kvm_x86_ops->get_idt(vcpu, &dt); |
| 6308 | put_smstate(u32, buf, 0x7e84, dt.size); |
| 6309 | put_smstate(u64, buf, 0x7e88, dt.address); |
| 6310 | |
| 6311 | kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR); |
| 6312 | put_smstate(u16, buf, 0x7e70, seg.selector); |
| 6313 | put_smstate(u16, buf, 0x7e72, process_smi_get_segment_flags(&seg) >> 8); |
| 6314 | put_smstate(u32, buf, 0x7e74, seg.limit); |
| 6315 | put_smstate(u64, buf, 0x7e78, seg.base); |
| 6316 | |
| 6317 | kvm_x86_ops->get_gdt(vcpu, &dt); |
| 6318 | put_smstate(u32, buf, 0x7e64, dt.size); |
| 6319 | put_smstate(u64, buf, 0x7e68, dt.address); |
| 6320 | |
| 6321 | for (i = 0; i < 6; i++) |
| 6322 | process_smi_save_seg_64(vcpu, buf, i); |
| 6323 | #else |
| 6324 | WARN_ON_ONCE(1); |
| 6325 | #endif |
| 6326 | } |
| 6327 | |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 6328 | static void process_smi(struct kvm_vcpu *vcpu) |
| 6329 | { |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6330 | struct kvm_segment cs, ds; |
| 6331 | char buf[512]; |
| 6332 | u32 cr0; |
| 6333 | |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 6334 | if (is_smm(vcpu)) { |
| 6335 | vcpu->arch.smi_pending = true; |
| 6336 | return; |
| 6337 | } |
| 6338 | |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6339 | trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, true); |
| 6340 | vcpu->arch.hflags |= HF_SMM_MASK; |
| 6341 | memset(buf, 0, 512); |
| 6342 | if (guest_cpuid_has_longmode(vcpu)) |
| 6343 | process_smi_save_state_64(vcpu, buf); |
| 6344 | else |
| 6345 | process_smi_save_state_32(vcpu, buf); |
| 6346 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 6347 | kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf)); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6348 | |
| 6349 | if (kvm_x86_ops->get_nmi_mask(vcpu)) |
| 6350 | vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK; |
| 6351 | else |
| 6352 | kvm_x86_ops->set_nmi_mask(vcpu, true); |
| 6353 | |
| 6354 | kvm_set_rflags(vcpu, X86_EFLAGS_FIXED); |
| 6355 | kvm_rip_write(vcpu, 0x8000); |
| 6356 | |
| 6357 | cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG); |
| 6358 | kvm_x86_ops->set_cr0(vcpu, cr0); |
| 6359 | vcpu->arch.cr0 = cr0; |
| 6360 | |
| 6361 | kvm_x86_ops->set_cr4(vcpu, 0); |
| 6362 | |
| 6363 | __kvm_set_dr(vcpu, 7, DR7_FIXED_1); |
| 6364 | |
| 6365 | cs.selector = (vcpu->arch.smbase >> 4) & 0xffff; |
| 6366 | cs.base = vcpu->arch.smbase; |
| 6367 | |
| 6368 | ds.selector = 0; |
| 6369 | ds.base = 0; |
| 6370 | |
| 6371 | cs.limit = ds.limit = 0xffffffff; |
| 6372 | cs.type = ds.type = 0x3; |
| 6373 | cs.dpl = ds.dpl = 0; |
| 6374 | cs.db = ds.db = 0; |
| 6375 | cs.s = ds.s = 1; |
| 6376 | cs.l = ds.l = 0; |
| 6377 | cs.g = ds.g = 1; |
| 6378 | cs.avl = ds.avl = 0; |
| 6379 | cs.present = ds.present = 1; |
| 6380 | cs.unusable = ds.unusable = 0; |
| 6381 | cs.padding = ds.padding = 0; |
| 6382 | |
| 6383 | kvm_set_segment(vcpu, &cs, VCPU_SREG_CS); |
| 6384 | kvm_set_segment(vcpu, &ds, VCPU_SREG_DS); |
| 6385 | kvm_set_segment(vcpu, &ds, VCPU_SREG_ES); |
| 6386 | kvm_set_segment(vcpu, &ds, VCPU_SREG_FS); |
| 6387 | kvm_set_segment(vcpu, &ds, VCPU_SREG_GS); |
| 6388 | kvm_set_segment(vcpu, &ds, VCPU_SREG_SS); |
| 6389 | |
| 6390 | if (guest_cpuid_has_longmode(vcpu)) |
| 6391 | kvm_x86_ops->set_efer(vcpu, 0); |
| 6392 | |
| 6393 | kvm_update_cpuid(vcpu); |
| 6394 | kvm_mmu_reset_context(vcpu); |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 6395 | } |
| 6396 | |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame] | 6397 | static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu) |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 6398 | { |
| 6399 | u64 eoi_exit_bitmap[4]; |
Yang Zhang | cf9e65b | 2013-04-11 19:25:14 +0800 | [diff] [blame] | 6400 | u32 tmr[8]; |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 6401 | |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame] | 6402 | if (!kvm_apic_hw_enabled(vcpu->arch.apic)) |
| 6403 | return; |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 6404 | |
| 6405 | memset(eoi_exit_bitmap, 0, 32); |
Yang Zhang | cf9e65b | 2013-04-11 19:25:14 +0800 | [diff] [blame] | 6406 | memset(tmr, 0, 32); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 6407 | |
Yang Zhang | cf9e65b | 2013-04-11 19:25:14 +0800 | [diff] [blame] | 6408 | kvm_ioapic_scan_entry(vcpu, eoi_exit_bitmap, tmr); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 6409 | kvm_x86_ops->load_eoi_exitmap(vcpu, eoi_exit_bitmap); |
Yang Zhang | cf9e65b | 2013-04-11 19:25:14 +0800 | [diff] [blame] | 6410 | kvm_apic_update_tmr(vcpu, tmr); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 6411 | } |
| 6412 | |
Radim Krčmář | a70656b | 2014-09-18 12:38:36 -0400 | [diff] [blame] | 6413 | static void kvm_vcpu_flush_tlb(struct kvm_vcpu *vcpu) |
| 6414 | { |
| 6415 | ++vcpu->stat.tlb_flush; |
| 6416 | kvm_x86_ops->tlb_flush(vcpu); |
| 6417 | } |
| 6418 | |
Tang Chen | 4256f43 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 6419 | void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu) |
| 6420 | { |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 6421 | struct page *page = NULL; |
| 6422 | |
Paolo Bonzini | f439ed2 | 2014-10-02 13:53:24 +0200 | [diff] [blame] | 6423 | if (!irqchip_in_kernel(vcpu->kvm)) |
| 6424 | return; |
| 6425 | |
Tang Chen | 4256f43 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 6426 | if (!kvm_x86_ops->set_apic_access_page_addr) |
| 6427 | return; |
| 6428 | |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 6429 | page = gfn_to_page(vcpu->kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT); |
Andrea Arcangeli | e8fd5e9 | 2015-05-08 14:32:56 +0200 | [diff] [blame] | 6430 | if (is_error_page(page)) |
| 6431 | return; |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 6432 | kvm_x86_ops->set_apic_access_page_addr(vcpu, page_to_phys(page)); |
| 6433 | |
| 6434 | /* |
| 6435 | * Do not pin apic access page in memory, the MMU notifier |
| 6436 | * will call us again if it is migrated or swapped out. |
| 6437 | */ |
| 6438 | put_page(page); |
Tang Chen | 4256f43 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 6439 | } |
| 6440 | EXPORT_SYMBOL_GPL(kvm_vcpu_reload_apic_access_page); |
| 6441 | |
Tang Chen | fe71557 | 2014-09-24 15:57:57 +0800 | [diff] [blame] | 6442 | void kvm_arch_mmu_notifier_invalidate_page(struct kvm *kvm, |
| 6443 | unsigned long address) |
| 6444 | { |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 6445 | /* |
| 6446 | * The physical address of apic access page is stored in the VMCS. |
| 6447 | * Update it when it becomes invalid. |
| 6448 | */ |
| 6449 | if (address == gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT)) |
| 6450 | kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD); |
Tang Chen | fe71557 | 2014-09-24 15:57:57 +0800 | [diff] [blame] | 6451 | } |
| 6452 | |
Takuya Yoshikawa | 9357d93 | 2013-12-13 15:08:38 +0900 | [diff] [blame] | 6453 | /* |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 6454 | * Returns 1 to let vcpu_run() continue the guest execution loop without |
Takuya Yoshikawa | 9357d93 | 2013-12-13 15:08:38 +0900 | [diff] [blame] | 6455 | * exiting to the userspace. Otherwise, the value will be returned to the |
| 6456 | * userspace. |
| 6457 | */ |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6458 | static int vcpu_enter_guest(struct kvm_vcpu *vcpu) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6459 | { |
| 6460 | int r; |
Gleb Natapov | 6a8b1d1 | 2009-05-11 13:35:51 +0300 | [diff] [blame] | 6461 | bool req_int_win = !irqchip_in_kernel(vcpu->kvm) && |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6462 | vcpu->run->request_interrupt_window; |
Jan Kiszka | 730dca4 | 2013-04-28 10:50:52 +0200 | [diff] [blame] | 6463 | bool req_immediate_exit = false; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6464 | |
Avi Kivity | 3e00750 | 2010-06-23 14:26:18 +0300 | [diff] [blame] | 6465 | if (vcpu->requests) { |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 6466 | if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu)) |
Marcelo Tosatti | 2e53d63 | 2008-02-20 14:47:24 -0500 | [diff] [blame] | 6467 | kvm_mmu_unload(vcpu); |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 6468 | if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu)) |
Marcelo Tosatti | 2f59971 | 2008-05-27 12:10:20 -0300 | [diff] [blame] | 6469 | __kvm_migrate_timers(vcpu); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 6470 | if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu)) |
| 6471 | kvm_gen_update_masterclock(vcpu->kvm); |
Marcelo Tosatti | 0061d53 | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 6472 | if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu)) |
| 6473 | kvm_gen_kvmclock_update(vcpu); |
Zachary Amsden | 34c238a | 2010-09-18 14:38:14 -1000 | [diff] [blame] | 6474 | if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) { |
| 6475 | r = kvm_guest_time_update(vcpu); |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 6476 | if (unlikely(r)) |
| 6477 | goto out; |
| 6478 | } |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 6479 | if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu)) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 6480 | kvm_mmu_sync_roots(vcpu); |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 6481 | if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu)) |
Radim Krčmář | a70656b | 2014-09-18 12:38:36 -0400 | [diff] [blame] | 6482 | kvm_vcpu_flush_tlb(vcpu); |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 6483 | if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6484 | vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS; |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 6485 | r = 0; |
| 6486 | goto out; |
| 6487 | } |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 6488 | if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6489 | vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN; |
Joerg Roedel | 71c4dfa | 2008-02-26 16:49:16 +0100 | [diff] [blame] | 6490 | r = 0; |
| 6491 | goto out; |
| 6492 | } |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 6493 | if (kvm_check_request(KVM_REQ_DEACTIVATE_FPU, vcpu)) { |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 6494 | vcpu->fpu_active = 0; |
| 6495 | kvm_x86_ops->fpu_deactivate(vcpu); |
| 6496 | } |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 6497 | if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) { |
| 6498 | /* Page is swapped out. Do synthetic halt */ |
| 6499 | vcpu->arch.apf.halted = true; |
| 6500 | r = 1; |
| 6501 | goto out; |
| 6502 | } |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 6503 | if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu)) |
| 6504 | record_steal_time(vcpu); |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 6505 | if (kvm_check_request(KVM_REQ_SMI, vcpu)) |
| 6506 | process_smi(vcpu); |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 6507 | if (kvm_check_request(KVM_REQ_NMI, vcpu)) |
| 6508 | process_nmi(vcpu); |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 6509 | if (kvm_check_request(KVM_REQ_PMU, vcpu)) |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 6510 | kvm_pmu_handle_event(vcpu); |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 6511 | if (kvm_check_request(KVM_REQ_PMI, vcpu)) |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 6512 | kvm_pmu_deliver_pmi(vcpu); |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame] | 6513 | if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu)) |
| 6514 | vcpu_scan_ioapic(vcpu); |
Tang Chen | 4256f43 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 6515 | if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu)) |
| 6516 | kvm_vcpu_reload_apic_access_page(vcpu); |
Avi Kivity | 2f52d58 | 2008-01-16 12:49:30 +0200 | [diff] [blame] | 6517 | } |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 6518 | |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 6519 | if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win) { |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 6520 | kvm_apic_accept_events(vcpu); |
| 6521 | if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) { |
| 6522 | r = 1; |
| 6523 | goto out; |
| 6524 | } |
| 6525 | |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 6526 | if (inject_pending_event(vcpu, req_int_win) != 0) |
| 6527 | req_immediate_exit = true; |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 6528 | /* enable NMI/IRQ window open exits if needed */ |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 6529 | else if (vcpu->arch.nmi_pending) |
Jan Kiszka | c9a7953 | 2014-03-07 20:03:15 +0100 | [diff] [blame] | 6530 | kvm_x86_ops->enable_nmi_window(vcpu); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 6531 | else if (kvm_cpu_has_injectable_intr(vcpu) || req_int_win) |
Jan Kiszka | c9a7953 | 2014-03-07 20:03:15 +0100 | [diff] [blame] | 6532 | kvm_x86_ops->enable_irq_window(vcpu); |
Gleb Natapov | 6a8b1d1 | 2009-05-11 13:35:51 +0300 | [diff] [blame] | 6533 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 6534 | if (kvm_lapic_enabled(vcpu)) { |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 6535 | /* |
| 6536 | * Update architecture specific hints for APIC |
| 6537 | * virtual interrupt delivery. |
| 6538 | */ |
| 6539 | if (kvm_x86_ops->hwapic_irr_update) |
| 6540 | kvm_x86_ops->hwapic_irr_update(vcpu, |
| 6541 | kvm_lapic_find_highest_irr(vcpu)); |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 6542 | update_cr8_intercept(vcpu); |
| 6543 | kvm_lapic_sync_to_vapic(vcpu); |
| 6544 | } |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6545 | } |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 6546 | |
Avi Kivity | d8368af | 2012-05-14 18:07:56 +0300 | [diff] [blame] | 6547 | r = kvm_mmu_reload(vcpu); |
| 6548 | if (unlikely(r)) { |
Michael S. Tsirkin | d905c06 | 2012-06-24 19:25:00 +0300 | [diff] [blame] | 6549 | goto cancel_injection; |
Avi Kivity | d8368af | 2012-05-14 18:07:56 +0300 | [diff] [blame] | 6550 | } |
| 6551 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 6552 | preempt_disable(); |
| 6553 | |
| 6554 | kvm_x86_ops->prepare_guest_switch(vcpu); |
| 6555 | if (vcpu->fpu_active) |
| 6556 | kvm_load_guest_fpu(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6557 | kvm_load_guest_xcr0(vcpu); |
| 6558 | |
Xiao Guangrong | 6b7e2d0 | 2011-01-12 15:40:31 +0800 | [diff] [blame] | 6559 | vcpu->mode = IN_GUEST_MODE; |
| 6560 | |
Michael S. Tsirkin | 01b7191 | 2013-11-04 22:36:25 +0200 | [diff] [blame] | 6561 | srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx); |
| 6562 | |
Xiao Guangrong | 6b7e2d0 | 2011-01-12 15:40:31 +0800 | [diff] [blame] | 6563 | /* We should set ->mode before check ->requests, |
| 6564 | * see the comment in make_all_cpus_request. |
| 6565 | */ |
Michael S. Tsirkin | 01b7191 | 2013-11-04 22:36:25 +0200 | [diff] [blame] | 6566 | smp_mb__after_srcu_read_unlock(); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6567 | |
| 6568 | local_irq_disable(); |
| 6569 | |
Xiao Guangrong | 6b7e2d0 | 2011-01-12 15:40:31 +0800 | [diff] [blame] | 6570 | if (vcpu->mode == EXITING_GUEST_MODE || vcpu->requests |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6571 | || need_resched() || signal_pending(current)) { |
Xiao Guangrong | 6b7e2d0 | 2011-01-12 15:40:31 +0800 | [diff] [blame] | 6572 | vcpu->mode = OUTSIDE_GUEST_MODE; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6573 | smp_wmb(); |
| 6574 | local_irq_enable(); |
| 6575 | preempt_enable(); |
Michael S. Tsirkin | 01b7191 | 2013-11-04 22:36:25 +0200 | [diff] [blame] | 6576 | vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6577 | r = 1; |
Michael S. Tsirkin | d905c06 | 2012-06-24 19:25:00 +0300 | [diff] [blame] | 6578 | goto cancel_injection; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6579 | } |
| 6580 | |
Nadav Har'El | d6185f2 | 2011-09-22 13:52:56 +0300 | [diff] [blame] | 6581 | if (req_immediate_exit) |
| 6582 | smp_send_reschedule(vcpu->cpu); |
| 6583 | |
Christian Borntraeger | ccf73aaf | 2015-04-30 13:43:31 +0200 | [diff] [blame] | 6584 | __kvm_guest_enter(); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6585 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6586 | if (unlikely(vcpu->arch.switch_db_regs)) { |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6587 | set_debugreg(0, 7); |
| 6588 | set_debugreg(vcpu->arch.eff_db[0], 0); |
| 6589 | set_debugreg(vcpu->arch.eff_db[1], 1); |
| 6590 | set_debugreg(vcpu->arch.eff_db[2], 2); |
| 6591 | set_debugreg(vcpu->arch.eff_db[3], 3); |
Paolo Bonzini | c77fb5f | 2014-02-21 10:17:24 +0100 | [diff] [blame] | 6592 | set_debugreg(vcpu->arch.dr6, 6); |
Nadav Amit | ae561ed | 2015-04-02 03:10:37 +0300 | [diff] [blame] | 6593 | vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6594 | } |
| 6595 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 6596 | trace_kvm_entry(vcpu->vcpu_id); |
Marcelo Tosatti | d0659d9 | 2014-12-16 09:08:15 -0500 | [diff] [blame] | 6597 | wait_lapic_expire(vcpu); |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6598 | kvm_x86_ops->run(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6599 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 6600 | /* |
Paolo Bonzini | c77fb5f | 2014-02-21 10:17:24 +0100 | [diff] [blame] | 6601 | * Do this here before restoring debug registers on the host. And |
| 6602 | * since we do this before handling the vmexit, a DR access vmexit |
| 6603 | * can (a) read the correct value of the debug registers, (b) set |
| 6604 | * KVM_DEBUGREG_WONT_EXIT again. |
| 6605 | */ |
| 6606 | if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) { |
| 6607 | int i; |
| 6608 | |
| 6609 | WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP); |
| 6610 | kvm_x86_ops->sync_dirty_debug_regs(vcpu); |
| 6611 | for (i = 0; i < KVM_NR_DB_REGS; i++) |
| 6612 | vcpu->arch.eff_db[i] = vcpu->arch.db[i]; |
| 6613 | } |
| 6614 | |
| 6615 | /* |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 6616 | * If the guest has used debug registers, at least dr7 |
| 6617 | * will be disabled while returning to the host. |
| 6618 | * If we don't have active breakpoints in the host, we don't |
| 6619 | * care about the messed up debug address registers. But if |
| 6620 | * we have some of them active, restore the old state. |
| 6621 | */ |
Frederic Weisbecker | 59d8eb5 | 2009-11-10 11:03:12 +0100 | [diff] [blame] | 6622 | if (hw_breakpoint_active()) |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 6623 | hw_breakpoint_restore(); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6624 | |
Marcelo Tosatti | 886b470 | 2012-11-27 23:28:58 -0200 | [diff] [blame] | 6625 | vcpu->arch.last_guest_tsc = kvm_x86_ops->read_l1_tsc(vcpu, |
| 6626 | native_read_tsc()); |
Zachary Amsden | 1d5f066 | 2010-08-19 22:07:30 -1000 | [diff] [blame] | 6627 | |
Xiao Guangrong | 6b7e2d0 | 2011-01-12 15:40:31 +0800 | [diff] [blame] | 6628 | vcpu->mode = OUTSIDE_GUEST_MODE; |
Avi Kivity | d94e1dc | 2010-05-03 16:54:48 +0300 | [diff] [blame] | 6629 | smp_wmb(); |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 6630 | |
| 6631 | /* Interrupt is enabled by handle_external_intr() */ |
| 6632 | kvm_x86_ops->handle_external_intr(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6633 | |
| 6634 | ++vcpu->stat.exits; |
| 6635 | |
| 6636 | /* |
| 6637 | * We must have an instruction between local_irq_enable() and |
| 6638 | * kvm_guest_exit(), so the timer interrupt isn't delayed by |
| 6639 | * the interrupt shadow. The stat.exits increment will do nicely. |
| 6640 | * But we need to prevent reordering, hence this barrier(): |
| 6641 | */ |
| 6642 | barrier(); |
| 6643 | |
| 6644 | kvm_guest_exit(); |
| 6645 | |
| 6646 | preempt_enable(); |
| 6647 | |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 6648 | vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu); |
Marcelo Tosatti | 3200f40 | 2008-03-29 20:17:59 -0300 | [diff] [blame] | 6649 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6650 | /* |
| 6651 | * Profile KVM exit RIPs: |
| 6652 | */ |
| 6653 | if (unlikely(prof_on == KVM_PROFILING)) { |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 6654 | unsigned long rip = kvm_rip_read(vcpu); |
| 6655 | profile_hit(KVM_PROFILING, (void *)rip); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6656 | } |
| 6657 | |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 6658 | if (unlikely(vcpu->arch.tsc_always_catchup)) |
| 6659 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 6660 | |
Michael S. Tsirkin | 5cfb1d5 | 2012-06-24 19:24:54 +0300 | [diff] [blame] | 6661 | if (vcpu->arch.apic_attention) |
| 6662 | kvm_lapic_sync_from_vapic(vcpu); |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 6663 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6664 | r = kvm_x86_ops->handle_exit(vcpu); |
Michael S. Tsirkin | d905c06 | 2012-06-24 19:25:00 +0300 | [diff] [blame] | 6665 | return r; |
| 6666 | |
| 6667 | cancel_injection: |
| 6668 | kvm_x86_ops->cancel_injection(vcpu); |
Michael S. Tsirkin | ae7a2a3 | 2012-06-24 19:25:07 +0300 | [diff] [blame] | 6669 | if (unlikely(vcpu->arch.apic_attention)) |
| 6670 | kvm_lapic_sync_from_vapic(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6671 | out: |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 6672 | return r; |
| 6673 | } |
| 6674 | |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 6675 | static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu) |
| 6676 | { |
Paolo Bonzini | 9c8fd1b | 2015-02-06 12:58:42 +0100 | [diff] [blame] | 6677 | if (!kvm_arch_vcpu_runnable(vcpu)) { |
| 6678 | srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx); |
| 6679 | kvm_vcpu_block(vcpu); |
| 6680 | vcpu->srcu_idx = srcu_read_lock(&kvm->srcu); |
| 6681 | if (!kvm_check_request(KVM_REQ_UNHALT, vcpu)) |
| 6682 | return 1; |
| 6683 | } |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 6684 | |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 6685 | kvm_apic_accept_events(vcpu); |
| 6686 | switch(vcpu->arch.mp_state) { |
| 6687 | case KVM_MP_STATE_HALTED: |
| 6688 | vcpu->arch.pv.pv_unhalted = false; |
| 6689 | vcpu->arch.mp_state = |
| 6690 | KVM_MP_STATE_RUNNABLE; |
| 6691 | case KVM_MP_STATE_RUNNABLE: |
| 6692 | vcpu->arch.apf.halted = false; |
| 6693 | break; |
| 6694 | case KVM_MP_STATE_INIT_RECEIVED: |
| 6695 | break; |
| 6696 | default: |
| 6697 | return -EINTR; |
| 6698 | break; |
| 6699 | } |
| 6700 | return 1; |
| 6701 | } |
| 6702 | |
| 6703 | static int vcpu_run(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 6704 | { |
| 6705 | int r; |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 6706 | struct kvm *kvm = vcpu->kvm; |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 6707 | |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 6708 | vcpu->srcu_idx = srcu_read_lock(&kvm->srcu); |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 6709 | |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 6710 | for (;;) { |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 6711 | if (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE && |
| 6712 | !vcpu->arch.apf.halted) |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6713 | r = vcpu_enter_guest(vcpu); |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 6714 | else |
| 6715 | r = vcpu_block(kvm, vcpu); |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 6716 | if (r <= 0) |
| 6717 | break; |
| 6718 | |
| 6719 | clear_bit(KVM_REQ_PENDING_TIMER, &vcpu->requests); |
| 6720 | if (kvm_cpu_has_pending_timer(vcpu)) |
| 6721 | kvm_inject_pending_timer_irqs(vcpu); |
| 6722 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6723 | if (dm_request_for_irq_injection(vcpu)) { |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 6724 | r = -EINTR; |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6725 | vcpu->run->exit_reason = KVM_EXIT_INTR; |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 6726 | ++vcpu->stat.request_irq_exits; |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 6727 | break; |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 6728 | } |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 6729 | |
| 6730 | kvm_check_async_pf_completion(vcpu); |
| 6731 | |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 6732 | if (signal_pending(current)) { |
| 6733 | r = -EINTR; |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6734 | vcpu->run->exit_reason = KVM_EXIT_INTR; |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 6735 | ++vcpu->stat.signal_exits; |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 6736 | break; |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 6737 | } |
| 6738 | if (need_resched()) { |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 6739 | srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx); |
Takuya Yoshikawa | c08ac06 | 2013-12-13 15:07:21 +0900 | [diff] [blame] | 6740 | cond_resched(); |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 6741 | vcpu->srcu_idx = srcu_read_lock(&kvm->srcu); |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 6742 | } |
| 6743 | } |
| 6744 | |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 6745 | srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6746 | |
| 6747 | return r; |
| 6748 | } |
| 6749 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6750 | static inline int complete_emulated_io(struct kvm_vcpu *vcpu) |
| 6751 | { |
| 6752 | int r; |
| 6753 | vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu); |
| 6754 | r = emulate_instruction(vcpu, EMULTYPE_NO_DECODE); |
| 6755 | srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx); |
| 6756 | if (r != EMULATE_DONE) |
| 6757 | return 0; |
| 6758 | return 1; |
| 6759 | } |
| 6760 | |
| 6761 | static int complete_emulated_pio(struct kvm_vcpu *vcpu) |
| 6762 | { |
| 6763 | BUG_ON(!vcpu->arch.pio.count); |
| 6764 | |
| 6765 | return complete_emulated_io(vcpu); |
| 6766 | } |
| 6767 | |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 6768 | /* |
| 6769 | * Implements the following, as a state machine: |
| 6770 | * |
| 6771 | * read: |
| 6772 | * for each fragment |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 6773 | * for each mmio piece in the fragment |
| 6774 | * write gpa, len |
| 6775 | * exit |
| 6776 | * copy data |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 6777 | * execute insn |
| 6778 | * |
| 6779 | * write: |
| 6780 | * for each fragment |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 6781 | * for each mmio piece in the fragment |
| 6782 | * write gpa, len |
| 6783 | * copy data |
| 6784 | * exit |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 6785 | */ |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6786 | static int complete_emulated_mmio(struct kvm_vcpu *vcpu) |
Avi Kivity | 5287f19 | 2010-01-19 14:20:10 +0200 | [diff] [blame] | 6787 | { |
| 6788 | struct kvm_run *run = vcpu->run; |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 6789 | struct kvm_mmio_fragment *frag; |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 6790 | unsigned len; |
Avi Kivity | 5287f19 | 2010-01-19 14:20:10 +0200 | [diff] [blame] | 6791 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6792 | BUG_ON(!vcpu->mmio_needed); |
Avi Kivity | 5287f19 | 2010-01-19 14:20:10 +0200 | [diff] [blame] | 6793 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6794 | /* Complete previous fragment */ |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 6795 | frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment]; |
| 6796 | len = min(8u, frag->len); |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6797 | if (!vcpu->mmio_is_write) |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 6798 | memcpy(frag->data, run->mmio.data, len); |
| 6799 | |
| 6800 | if (frag->len <= 8) { |
| 6801 | /* Switch to the next fragment. */ |
| 6802 | frag++; |
| 6803 | vcpu->mmio_cur_fragment++; |
| 6804 | } else { |
| 6805 | /* Go forward to the next mmio piece. */ |
| 6806 | frag->data += len; |
| 6807 | frag->gpa += len; |
| 6808 | frag->len -= len; |
| 6809 | } |
| 6810 | |
Andrew Honig | a08d3b3 | 2014-02-27 19:35:14 +0100 | [diff] [blame] | 6811 | if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) { |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6812 | vcpu->mmio_needed = 0; |
Paolo Bonzini | 0912c97 | 2013-08-27 15:41:43 +0200 | [diff] [blame] | 6813 | |
| 6814 | /* FIXME: return into emulator if single-stepping. */ |
Avi Kivity | cef4dea | 2010-01-20 12:01:20 +0200 | [diff] [blame] | 6815 | if (vcpu->mmio_is_write) |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6816 | return 1; |
| 6817 | vcpu->mmio_read_completed = 1; |
| 6818 | return complete_emulated_io(vcpu); |
Avi Kivity | 5287f19 | 2010-01-19 14:20:10 +0200 | [diff] [blame] | 6819 | } |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 6820 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6821 | run->exit_reason = KVM_EXIT_MMIO; |
| 6822 | run->mmio.phys_addr = frag->gpa; |
| 6823 | if (vcpu->mmio_is_write) |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 6824 | memcpy(run->mmio.data, frag->data, min(8u, frag->len)); |
| 6825 | run->mmio.len = min(8u, frag->len); |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6826 | run->mmio.is_write = vcpu->mmio_is_write; |
| 6827 | vcpu->arch.complete_userspace_io = complete_emulated_mmio; |
| 6828 | return 0; |
Avi Kivity | 5287f19 | 2010-01-19 14:20:10 +0200 | [diff] [blame] | 6829 | } |
| 6830 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6831 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6832 | int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run) |
| 6833 | { |
Ingo Molnar | c5bedc6 | 2015-04-23 12:49:20 +0200 | [diff] [blame] | 6834 | struct fpu *fpu = ¤t->thread.fpu; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6835 | int r; |
| 6836 | sigset_t sigsaved; |
| 6837 | |
Ingo Molnar | c4d72e2 | 2015-04-27 07:18:17 +0200 | [diff] [blame] | 6838 | fpu__activate_curr(fpu); |
Avi Kivity | e5c3014 | 2011-01-11 12:15:54 +0200 | [diff] [blame] | 6839 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6840 | if (vcpu->sigset_active) |
| 6841 | sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved); |
| 6842 | |
Avi Kivity | ac9f6dc | 2008-07-06 15:48:31 +0300 | [diff] [blame] | 6843 | if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) { |
| 6844 | kvm_vcpu_block(vcpu); |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 6845 | kvm_apic_accept_events(vcpu); |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 6846 | clear_bit(KVM_REQ_UNHALT, &vcpu->requests); |
Avi Kivity | ac9f6dc | 2008-07-06 15:48:31 +0300 | [diff] [blame] | 6847 | r = -EAGAIN; |
| 6848 | goto out; |
| 6849 | } |
| 6850 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6851 | /* re-sync apic's tpr */ |
Andre Przywara | eea1cff | 2010-12-21 11:12:00 +0100 | [diff] [blame] | 6852 | if (!irqchip_in_kernel(vcpu->kvm)) { |
| 6853 | if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) { |
| 6854 | r = -EINVAL; |
| 6855 | goto out; |
| 6856 | } |
| 6857 | } |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6858 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6859 | if (unlikely(vcpu->arch.complete_userspace_io)) { |
| 6860 | int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io; |
| 6861 | vcpu->arch.complete_userspace_io = NULL; |
| 6862 | r = cui(vcpu); |
| 6863 | if (r <= 0) |
| 6864 | goto out; |
| 6865 | } else |
| 6866 | WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed); |
Avi Kivity | 5287f19 | 2010-01-19 14:20:10 +0200 | [diff] [blame] | 6867 | |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 6868 | r = vcpu_run(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6869 | |
| 6870 | out: |
Marcelo Tosatti | f1d86e4 | 2010-05-03 23:04:27 -0300 | [diff] [blame] | 6871 | post_kvm_run_save(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6872 | if (vcpu->sigset_active) |
| 6873 | sigprocmask(SIG_SETMASK, &sigsaved, NULL); |
| 6874 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6875 | return r; |
| 6876 | } |
| 6877 | |
| 6878 | int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs) |
| 6879 | { |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 6880 | if (vcpu->arch.emulate_regs_need_sync_to_vcpu) { |
| 6881 | /* |
| 6882 | * We are here if userspace calls get_regs() in the middle of |
| 6883 | * instruction emulation. Registers state needs to be copied |
Guo Chao | 4a96998 | 2012-06-28 15:17:27 +0800 | [diff] [blame] | 6884 | * back from emulation context to vcpu. Userspace shouldn't do |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 6885 | * that usually, but some bad designed PV devices (vmware |
| 6886 | * backdoor interface) need this to work |
| 6887 | */ |
Avi Kivity | dd856ef | 2012-08-27 23:46:17 +0300 | [diff] [blame] | 6888 | emulator_writeback_register_cache(&vcpu->arch.emulate_ctxt); |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 6889 | vcpu->arch.emulate_regs_need_sync_to_vcpu = false; |
| 6890 | } |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 6891 | regs->rax = kvm_register_read(vcpu, VCPU_REGS_RAX); |
| 6892 | regs->rbx = kvm_register_read(vcpu, VCPU_REGS_RBX); |
| 6893 | regs->rcx = kvm_register_read(vcpu, VCPU_REGS_RCX); |
| 6894 | regs->rdx = kvm_register_read(vcpu, VCPU_REGS_RDX); |
| 6895 | regs->rsi = kvm_register_read(vcpu, VCPU_REGS_RSI); |
| 6896 | regs->rdi = kvm_register_read(vcpu, VCPU_REGS_RDI); |
| 6897 | regs->rsp = kvm_register_read(vcpu, VCPU_REGS_RSP); |
| 6898 | regs->rbp = kvm_register_read(vcpu, VCPU_REGS_RBP); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6899 | #ifdef CONFIG_X86_64 |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 6900 | regs->r8 = kvm_register_read(vcpu, VCPU_REGS_R8); |
| 6901 | regs->r9 = kvm_register_read(vcpu, VCPU_REGS_R9); |
| 6902 | regs->r10 = kvm_register_read(vcpu, VCPU_REGS_R10); |
| 6903 | regs->r11 = kvm_register_read(vcpu, VCPU_REGS_R11); |
| 6904 | regs->r12 = kvm_register_read(vcpu, VCPU_REGS_R12); |
| 6905 | regs->r13 = kvm_register_read(vcpu, VCPU_REGS_R13); |
| 6906 | regs->r14 = kvm_register_read(vcpu, VCPU_REGS_R14); |
| 6907 | regs->r15 = kvm_register_read(vcpu, VCPU_REGS_R15); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6908 | #endif |
| 6909 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 6910 | regs->rip = kvm_rip_read(vcpu); |
Jan Kiszka | 91586a3 | 2009-10-05 13:07:21 +0200 | [diff] [blame] | 6911 | regs->rflags = kvm_get_rflags(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6912 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6913 | return 0; |
| 6914 | } |
| 6915 | |
| 6916 | int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs) |
| 6917 | { |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 6918 | vcpu->arch.emulate_regs_need_sync_from_vcpu = true; |
| 6919 | vcpu->arch.emulate_regs_need_sync_to_vcpu = false; |
| 6920 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 6921 | kvm_register_write(vcpu, VCPU_REGS_RAX, regs->rax); |
| 6922 | kvm_register_write(vcpu, VCPU_REGS_RBX, regs->rbx); |
| 6923 | kvm_register_write(vcpu, VCPU_REGS_RCX, regs->rcx); |
| 6924 | kvm_register_write(vcpu, VCPU_REGS_RDX, regs->rdx); |
| 6925 | kvm_register_write(vcpu, VCPU_REGS_RSI, regs->rsi); |
| 6926 | kvm_register_write(vcpu, VCPU_REGS_RDI, regs->rdi); |
| 6927 | kvm_register_write(vcpu, VCPU_REGS_RSP, regs->rsp); |
| 6928 | kvm_register_write(vcpu, VCPU_REGS_RBP, regs->rbp); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6929 | #ifdef CONFIG_X86_64 |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 6930 | kvm_register_write(vcpu, VCPU_REGS_R8, regs->r8); |
| 6931 | kvm_register_write(vcpu, VCPU_REGS_R9, regs->r9); |
| 6932 | kvm_register_write(vcpu, VCPU_REGS_R10, regs->r10); |
| 6933 | kvm_register_write(vcpu, VCPU_REGS_R11, regs->r11); |
| 6934 | kvm_register_write(vcpu, VCPU_REGS_R12, regs->r12); |
| 6935 | kvm_register_write(vcpu, VCPU_REGS_R13, regs->r13); |
| 6936 | kvm_register_write(vcpu, VCPU_REGS_R14, regs->r14); |
| 6937 | kvm_register_write(vcpu, VCPU_REGS_R15, regs->r15); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6938 | #endif |
| 6939 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 6940 | kvm_rip_write(vcpu, regs->rip); |
Jan Kiszka | 91586a3 | 2009-10-05 13:07:21 +0200 | [diff] [blame] | 6941 | kvm_set_rflags(vcpu, regs->rflags); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6942 | |
Jan Kiszka | b4f14ab | 2008-04-30 17:59:04 +0200 | [diff] [blame] | 6943 | vcpu->arch.exception.pending = false; |
| 6944 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 6945 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 6946 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6947 | return 0; |
| 6948 | } |
| 6949 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6950 | void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l) |
| 6951 | { |
| 6952 | struct kvm_segment cs; |
| 6953 | |
Guillaume Thouvenin | 3e6e0aa | 2008-05-27 10:18:46 +0200 | [diff] [blame] | 6954 | kvm_get_segment(vcpu, &cs, VCPU_SREG_CS); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6955 | *db = cs.db; |
| 6956 | *l = cs.l; |
| 6957 | } |
| 6958 | EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits); |
| 6959 | |
| 6960 | int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu, |
| 6961 | struct kvm_sregs *sregs) |
| 6962 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 6963 | struct desc_ptr dt; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6964 | |
Guillaume Thouvenin | 3e6e0aa | 2008-05-27 10:18:46 +0200 | [diff] [blame] | 6965 | kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS); |
| 6966 | kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS); |
| 6967 | kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES); |
| 6968 | kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS); |
| 6969 | kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS); |
| 6970 | kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6971 | |
Guillaume Thouvenin | 3e6e0aa | 2008-05-27 10:18:46 +0200 | [diff] [blame] | 6972 | kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR); |
| 6973 | kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6974 | |
| 6975 | kvm_x86_ops->get_idt(vcpu, &dt); |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 6976 | sregs->idt.limit = dt.size; |
| 6977 | sregs->idt.base = dt.address; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6978 | kvm_x86_ops->get_gdt(vcpu, &dt); |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 6979 | sregs->gdt.limit = dt.size; |
| 6980 | sregs->gdt.base = dt.address; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6981 | |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 6982 | sregs->cr0 = kvm_read_cr0(vcpu); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 6983 | sregs->cr2 = vcpu->arch.cr2; |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 6984 | sregs->cr3 = kvm_read_cr3(vcpu); |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 6985 | sregs->cr4 = kvm_read_cr4(vcpu); |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 6986 | sregs->cr8 = kvm_get_cr8(vcpu); |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 6987 | sregs->efer = vcpu->arch.efer; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6988 | sregs->apic_base = kvm_get_apic_base(vcpu); |
| 6989 | |
Gleb Natapov | 923c61b | 2009-05-11 13:35:48 +0300 | [diff] [blame] | 6990 | memset(sregs->interrupt_bitmap, 0, sizeof sregs->interrupt_bitmap); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6991 | |
Gleb Natapov | 36752c9 | 2009-05-11 13:35:53 +0300 | [diff] [blame] | 6992 | if (vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft) |
Gleb Natapov | 14d0bc1 | 2009-04-21 17:45:11 +0300 | [diff] [blame] | 6993 | set_bit(vcpu->arch.interrupt.nr, |
| 6994 | (unsigned long *)sregs->interrupt_bitmap); |
Gleb Natapov | 16d7a19 | 2009-04-21 17:45:10 +0300 | [diff] [blame] | 6995 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6996 | return 0; |
| 6997 | } |
| 6998 | |
Marcelo Tosatti | 62d9f0d | 2008-04-11 13:24:45 -0300 | [diff] [blame] | 6999 | int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu, |
| 7000 | struct kvm_mp_state *mp_state) |
| 7001 | { |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 7002 | kvm_apic_accept_events(vcpu); |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 7003 | if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED && |
| 7004 | vcpu->arch.pv.pv_unhalted) |
| 7005 | mp_state->mp_state = KVM_MP_STATE_RUNNABLE; |
| 7006 | else |
| 7007 | mp_state->mp_state = vcpu->arch.mp_state; |
| 7008 | |
Marcelo Tosatti | 62d9f0d | 2008-04-11 13:24:45 -0300 | [diff] [blame] | 7009 | return 0; |
| 7010 | } |
| 7011 | |
| 7012 | int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu, |
| 7013 | struct kvm_mp_state *mp_state) |
| 7014 | { |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 7015 | if (!kvm_vcpu_has_lapic(vcpu) && |
| 7016 | mp_state->mp_state != KVM_MP_STATE_RUNNABLE) |
| 7017 | return -EINVAL; |
| 7018 | |
| 7019 | if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) { |
| 7020 | vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED; |
| 7021 | set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events); |
| 7022 | } else |
| 7023 | vcpu->arch.mp_state = mp_state->mp_state; |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 7024 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Marcelo Tosatti | 62d9f0d | 2008-04-11 13:24:45 -0300 | [diff] [blame] | 7025 | return 0; |
| 7026 | } |
| 7027 | |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 7028 | int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index, |
| 7029 | int reason, bool has_error_code, u32 error_code) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7030 | { |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 7031 | struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt; |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 7032 | int ret; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7033 | |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 7034 | init_emulate_ctxt(vcpu); |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 7035 | |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 7036 | ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason, |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 7037 | has_error_code, error_code); |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 7038 | |
Gleb Natapov | c697518 | 2010-02-18 12:15:01 +0200 | [diff] [blame] | 7039 | if (ret) |
Gleb Natapov | 19d0443 | 2010-04-15 12:29:50 +0300 | [diff] [blame] | 7040 | return EMULATE_FAIL; |
Gleb Natapov | c697518 | 2010-02-18 12:15:01 +0200 | [diff] [blame] | 7041 | |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 7042 | kvm_rip_write(vcpu, ctxt->eip); |
| 7043 | kvm_set_rflags(vcpu, ctxt->eflags); |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 7044 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Gleb Natapov | 19d0443 | 2010-04-15 12:29:50 +0300 | [diff] [blame] | 7045 | return EMULATE_DONE; |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 7046 | } |
| 7047 | EXPORT_SYMBOL_GPL(kvm_task_switch); |
| 7048 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7049 | int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu, |
| 7050 | struct kvm_sregs *sregs) |
| 7051 | { |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 7052 | struct msr_data apic_base_msr; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7053 | int mmu_reset_needed = 0; |
Xiao Guangrong | 63f42e0 | 2011-01-12 15:39:18 +0800 | [diff] [blame] | 7054 | int pending_vec, max_bits, idx; |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 7055 | struct desc_ptr dt; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7056 | |
Petr Matousek | 6d1068b | 2012-11-06 19:24:07 +0100 | [diff] [blame] | 7057 | if (!guest_cpuid_has_xsave(vcpu) && (sregs->cr4 & X86_CR4_OSXSAVE)) |
| 7058 | return -EINVAL; |
| 7059 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 7060 | dt.size = sregs->idt.limit; |
| 7061 | dt.address = sregs->idt.base; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7062 | kvm_x86_ops->set_idt(vcpu, &dt); |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 7063 | dt.size = sregs->gdt.limit; |
| 7064 | dt.address = sregs->gdt.base; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7065 | kvm_x86_ops->set_gdt(vcpu, &dt); |
| 7066 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 7067 | vcpu->arch.cr2 = sregs->cr2; |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 7068 | mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3; |
Jan Kiszka | dc7e795 | 2009-07-01 20:52:03 +0200 | [diff] [blame] | 7069 | vcpu->arch.cr3 = sregs->cr3; |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 7070 | __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7071 | |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 7072 | kvm_set_cr8(vcpu, sregs->cr8); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7073 | |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 7074 | mmu_reset_needed |= vcpu->arch.efer != sregs->efer; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7075 | kvm_x86_ops->set_efer(vcpu, sregs->efer); |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 7076 | apic_base_msr.data = sregs->apic_base; |
| 7077 | apic_base_msr.host_initiated = true; |
| 7078 | kvm_set_apic_base(vcpu, &apic_base_msr); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7079 | |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 7080 | mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7081 | kvm_x86_ops->set_cr0(vcpu, sregs->cr0); |
Paul Knowles | d730616 | 2008-02-06 11:02:35 +0000 | [diff] [blame] | 7082 | vcpu->arch.cr0 = sregs->cr0; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7083 | |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 7084 | mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7085 | kvm_x86_ops->set_cr4(vcpu, sregs->cr4); |
Sheng Yang | 3ea3aa8 | 2010-12-08 10:49:43 +0800 | [diff] [blame] | 7086 | if (sregs->cr4 & X86_CR4_OSXSAVE) |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 7087 | kvm_update_cpuid(vcpu); |
Xiao Guangrong | 63f42e0 | 2011-01-12 15:39:18 +0800 | [diff] [blame] | 7088 | |
| 7089 | idx = srcu_read_lock(&vcpu->kvm->srcu); |
Marcelo Tosatti | 7c93be4 | 2009-10-26 16:48:33 -0200 | [diff] [blame] | 7090 | if (!is_long_mode(vcpu) && is_pae(vcpu)) { |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 7091 | load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu)); |
Marcelo Tosatti | 7c93be4 | 2009-10-26 16:48:33 -0200 | [diff] [blame] | 7092 | mmu_reset_needed = 1; |
| 7093 | } |
Xiao Guangrong | 63f42e0 | 2011-01-12 15:39:18 +0800 | [diff] [blame] | 7094 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7095 | |
| 7096 | if (mmu_reset_needed) |
| 7097 | kvm_mmu_reset_context(vcpu); |
| 7098 | |
Michael S. Tsirkin | a50abc3 | 2012-09-05 20:00:52 +0300 | [diff] [blame] | 7099 | max_bits = KVM_NR_INTERRUPTS; |
Gleb Natapov | 923c61b | 2009-05-11 13:35:48 +0300 | [diff] [blame] | 7100 | pending_vec = find_first_bit( |
| 7101 | (const unsigned long *)sregs->interrupt_bitmap, max_bits); |
| 7102 | if (pending_vec < max_bits) { |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 7103 | kvm_queue_interrupt(vcpu, pending_vec, false); |
Gleb Natapov | 923c61b | 2009-05-11 13:35:48 +0300 | [diff] [blame] | 7104 | pr_debug("Set back pending irq %d\n", pending_vec); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7105 | } |
| 7106 | |
Guillaume Thouvenin | 3e6e0aa | 2008-05-27 10:18:46 +0200 | [diff] [blame] | 7107 | kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS); |
| 7108 | kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS); |
| 7109 | kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES); |
| 7110 | kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS); |
| 7111 | kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS); |
| 7112 | kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7113 | |
Guillaume Thouvenin | 3e6e0aa | 2008-05-27 10:18:46 +0200 | [diff] [blame] | 7114 | kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR); |
| 7115 | kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7116 | |
Mikhail Ershov | 5f0269f | 2009-08-03 14:58:25 +0300 | [diff] [blame] | 7117 | update_cr8_intercept(vcpu); |
| 7118 | |
Marcelo Tosatti | 9c3e4aa | 2008-09-10 16:40:55 -0300 | [diff] [blame] | 7119 | /* Older userspace won't unhalt the vcpu on reset. */ |
Gleb Natapov | c5af89b | 2009-06-09 15:56:26 +0300 | [diff] [blame] | 7120 | if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 && |
Marcelo Tosatti | 9c3e4aa | 2008-09-10 16:40:55 -0300 | [diff] [blame] | 7121 | sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 && |
Avi Kivity | 3eeb328 | 2010-01-21 15:31:48 +0200 | [diff] [blame] | 7122 | !is_protmode(vcpu)) |
Marcelo Tosatti | 9c3e4aa | 2008-09-10 16:40:55 -0300 | [diff] [blame] | 7123 | vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE; |
| 7124 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 7125 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 7126 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7127 | return 0; |
| 7128 | } |
| 7129 | |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 7130 | int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu, |
| 7131 | struct kvm_guest_debug *dbg) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7132 | { |
Jan Kiszka | 355be0b | 2009-10-03 00:31:21 +0200 | [diff] [blame] | 7133 | unsigned long rflags; |
Jan Kiszka | ae675ef | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 7134 | int i, r; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7135 | |
Jan Kiszka | 4f926bf2 | 2009-10-30 12:46:59 +0100 | [diff] [blame] | 7136 | if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) { |
| 7137 | r = -EBUSY; |
| 7138 | if (vcpu->arch.exception.pending) |
Avi Kivity | 2122ff5 | 2010-05-13 11:25:04 +0300 | [diff] [blame] | 7139 | goto out; |
Jan Kiszka | 4f926bf2 | 2009-10-30 12:46:59 +0100 | [diff] [blame] | 7140 | if (dbg->control & KVM_GUESTDBG_INJECT_DB) |
| 7141 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 7142 | else |
| 7143 | kvm_queue_exception(vcpu, BP_VECTOR); |
| 7144 | } |
| 7145 | |
Jan Kiszka | 91586a3 | 2009-10-05 13:07:21 +0200 | [diff] [blame] | 7146 | /* |
| 7147 | * Read rflags as long as potentially injected trace flags are still |
| 7148 | * filtered out. |
| 7149 | */ |
| 7150 | rflags = kvm_get_rflags(vcpu); |
Jan Kiszka | 355be0b | 2009-10-03 00:31:21 +0200 | [diff] [blame] | 7151 | |
| 7152 | vcpu->guest_debug = dbg->control; |
| 7153 | if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE)) |
| 7154 | vcpu->guest_debug = 0; |
| 7155 | |
| 7156 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) { |
Jan Kiszka | ae675ef | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 7157 | for (i = 0; i < KVM_NR_DB_REGS; ++i) |
| 7158 | vcpu->arch.eff_db[i] = dbg->arch.debugreg[i]; |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 7159 | vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7]; |
Jan Kiszka | ae675ef | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 7160 | } else { |
| 7161 | for (i = 0; i < KVM_NR_DB_REGS; i++) |
| 7162 | vcpu->arch.eff_db[i] = vcpu->arch.db[i]; |
Jan Kiszka | ae675ef | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 7163 | } |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 7164 | kvm_update_dr7(vcpu); |
Jan Kiszka | ae675ef | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 7165 | |
Jan Kiszka | f92653e | 2010-02-23 17:47:55 +0100 | [diff] [blame] | 7166 | if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) |
| 7167 | vcpu->arch.singlestep_rip = kvm_rip_read(vcpu) + |
| 7168 | get_segment_base(vcpu, VCPU_SREG_CS); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7169 | |
Jan Kiszka | 91586a3 | 2009-10-05 13:07:21 +0200 | [diff] [blame] | 7170 | /* |
| 7171 | * Trigger an rflags update that will inject or remove the trace |
| 7172 | * flags. |
| 7173 | */ |
| 7174 | kvm_set_rflags(vcpu, rflags); |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 7175 | |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 7176 | kvm_x86_ops->update_db_bp_intercept(vcpu); |
Jan Kiszka | 355be0b | 2009-10-03 00:31:21 +0200 | [diff] [blame] | 7177 | |
Jan Kiszka | 4f926bf2 | 2009-10-30 12:46:59 +0100 | [diff] [blame] | 7178 | r = 0; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7179 | |
Avi Kivity | 2122ff5 | 2010-05-13 11:25:04 +0300 | [diff] [blame] | 7180 | out: |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7181 | |
| 7182 | return r; |
| 7183 | } |
| 7184 | |
| 7185 | /* |
Zhang Xiantao | 8b00679 | 2007-11-16 13:05:55 +0800 | [diff] [blame] | 7186 | * Translate a guest virtual address to a guest physical address. |
| 7187 | */ |
| 7188 | int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu, |
| 7189 | struct kvm_translation *tr) |
| 7190 | { |
| 7191 | unsigned long vaddr = tr->linear_address; |
| 7192 | gpa_t gpa; |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 7193 | int idx; |
Zhang Xiantao | 8b00679 | 2007-11-16 13:05:55 +0800 | [diff] [blame] | 7194 | |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 7195 | idx = srcu_read_lock(&vcpu->kvm->srcu); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 7196 | gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL); |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 7197 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
Zhang Xiantao | 8b00679 | 2007-11-16 13:05:55 +0800 | [diff] [blame] | 7198 | tr->physical_address = gpa; |
| 7199 | tr->valid = gpa != UNMAPPED_GVA; |
| 7200 | tr->writeable = 1; |
| 7201 | tr->usermode = 0; |
Zhang Xiantao | 8b00679 | 2007-11-16 13:05:55 +0800 | [diff] [blame] | 7202 | |
| 7203 | return 0; |
| 7204 | } |
| 7205 | |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7206 | int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu) |
| 7207 | { |
Ingo Molnar | c47ada3 | 2015-04-30 17:15:32 +0200 | [diff] [blame] | 7208 | struct fxregs_state *fxsave = |
Ingo Molnar | 7366ed7 | 2015-04-27 04:19:39 +0200 | [diff] [blame] | 7209 | &vcpu->arch.guest_fpu.state.fxsave; |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7210 | |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7211 | memcpy(fpu->fpr, fxsave->st_space, 128); |
| 7212 | fpu->fcw = fxsave->cwd; |
| 7213 | fpu->fsw = fxsave->swd; |
| 7214 | fpu->ftwx = fxsave->twd; |
| 7215 | fpu->last_opcode = fxsave->fop; |
| 7216 | fpu->last_ip = fxsave->rip; |
| 7217 | fpu->last_dp = fxsave->rdp; |
| 7218 | memcpy(fpu->xmm, fxsave->xmm_space, sizeof fxsave->xmm_space); |
| 7219 | |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7220 | return 0; |
| 7221 | } |
| 7222 | |
| 7223 | int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu) |
| 7224 | { |
Ingo Molnar | c47ada3 | 2015-04-30 17:15:32 +0200 | [diff] [blame] | 7225 | struct fxregs_state *fxsave = |
Ingo Molnar | 7366ed7 | 2015-04-27 04:19:39 +0200 | [diff] [blame] | 7226 | &vcpu->arch.guest_fpu.state.fxsave; |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7227 | |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7228 | memcpy(fxsave->st_space, fpu->fpr, 128); |
| 7229 | fxsave->cwd = fpu->fcw; |
| 7230 | fxsave->swd = fpu->fsw; |
| 7231 | fxsave->twd = fpu->ftwx; |
| 7232 | fxsave->fop = fpu->last_opcode; |
| 7233 | fxsave->rip = fpu->last_ip; |
| 7234 | fxsave->rdp = fpu->last_dp; |
| 7235 | memcpy(fxsave->xmm_space, fpu->xmm, sizeof fxsave->xmm_space); |
| 7236 | |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7237 | return 0; |
| 7238 | } |
| 7239 | |
Ingo Molnar | 0ee6a51 | 2015-04-27 06:58:22 +0200 | [diff] [blame] | 7240 | static void fx_init(struct kvm_vcpu *vcpu) |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7241 | { |
Ingo Molnar | bf935b0 | 2015-04-30 10:23:42 +0200 | [diff] [blame] | 7242 | fpstate_init(&vcpu->arch.guest_fpu.state); |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 7243 | if (cpu_has_xsaves) |
Ingo Molnar | 7366ed7 | 2015-04-27 04:19:39 +0200 | [diff] [blame] | 7244 | vcpu->arch.guest_fpu.state.xsave.header.xcomp_bv = |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 7245 | host_xcr0 | XSTATE_COMPACTION_ENABLED; |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7246 | |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 7247 | /* |
| 7248 | * Ensure guest xcr0 is valid for loading |
| 7249 | */ |
| 7250 | vcpu->arch.xcr0 = XSTATE_FP; |
| 7251 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 7252 | vcpu->arch.cr0 |= X86_CR0_ET; |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7253 | } |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7254 | |
| 7255 | void kvm_load_guest_fpu(struct kvm_vcpu *vcpu) |
| 7256 | { |
Avi Kivity | 2608d7a | 2010-01-21 15:31:45 +0200 | [diff] [blame] | 7257 | if (vcpu->guest_fpu_loaded) |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7258 | return; |
| 7259 | |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 7260 | /* |
| 7261 | * Restore all possible states in the guest, |
| 7262 | * and assume host would use all available bits. |
| 7263 | * Guest xcr0 would be loaded later. |
| 7264 | */ |
| 7265 | kvm_put_guest_xcr0(vcpu); |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7266 | vcpu->guest_fpu_loaded = 1; |
Suresh Siddha | b1a74bf | 2012-09-20 11:01:49 -0700 | [diff] [blame] | 7267 | __kernel_fpu_begin(); |
Ingo Molnar | 003e2e8 | 2015-05-25 11:59:35 +0200 | [diff] [blame] | 7268 | __copy_kernel_to_fpregs(&vcpu->arch.guest_fpu.state); |
Avi Kivity | 0c04851 | 2010-01-21 15:31:52 +0200 | [diff] [blame] | 7269 | trace_kvm_fpu(1); |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7270 | } |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7271 | |
| 7272 | void kvm_put_guest_fpu(struct kvm_vcpu *vcpu) |
| 7273 | { |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 7274 | kvm_put_guest_xcr0(vcpu); |
| 7275 | |
Rik van Riel | 653f52c | 2015-04-23 11:52:37 -0400 | [diff] [blame] | 7276 | if (!vcpu->guest_fpu_loaded) { |
| 7277 | vcpu->fpu_counter = 0; |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7278 | return; |
Rik van Riel | 653f52c | 2015-04-23 11:52:37 -0400 | [diff] [blame] | 7279 | } |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7280 | |
| 7281 | vcpu->guest_fpu_loaded = 0; |
Ingo Molnar | 4f83634 | 2015-04-27 02:53:16 +0200 | [diff] [blame] | 7282 | copy_fpregs_to_fpstate(&vcpu->arch.guest_fpu); |
Suresh Siddha | b1a74bf | 2012-09-20 11:01:49 -0700 | [diff] [blame] | 7283 | __kernel_fpu_end(); |
Avi Kivity | f096ed8 | 2007-11-18 13:54:33 +0200 | [diff] [blame] | 7284 | ++vcpu->stat.fpu_reload; |
Rik van Riel | 653f52c | 2015-04-23 11:52:37 -0400 | [diff] [blame] | 7285 | /* |
| 7286 | * If using eager FPU mode, or if the guest is a frequent user |
| 7287 | * of the FPU, just leave the FPU active for next time. |
| 7288 | * Every 255 times fpu_counter rolls over to 0; a guest that uses |
| 7289 | * the FPU in bursts will revert to loading it on demand. |
| 7290 | */ |
Paolo Bonzini | a9b4fb7 | 2015-05-20 11:46:12 +0200 | [diff] [blame] | 7291 | if (!vcpu->arch.eager_fpu) { |
Rik van Riel | 653f52c | 2015-04-23 11:52:37 -0400 | [diff] [blame] | 7292 | if (++vcpu->fpu_counter < 5) |
| 7293 | kvm_make_request(KVM_REQ_DEACTIVATE_FPU, vcpu); |
| 7294 | } |
Avi Kivity | 0c04851 | 2010-01-21 15:31:52 +0200 | [diff] [blame] | 7295 | trace_kvm_fpu(0); |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7296 | } |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7297 | |
| 7298 | void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu) |
| 7299 | { |
Glauber Costa | 12f9a48 | 2011-02-01 14:16:40 -0500 | [diff] [blame] | 7300 | kvmclock_reset(vcpu); |
Joerg Roedel | 7f1ea20 | 2009-02-25 16:08:31 +0100 | [diff] [blame] | 7301 | |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 7302 | free_cpumask_var(vcpu->arch.wbinvd_dirty_mask); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7303 | kvm_x86_ops->vcpu_free(vcpu); |
| 7304 | } |
| 7305 | |
| 7306 | struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, |
| 7307 | unsigned int id) |
| 7308 | { |
Liang Li | c447e76 | 2015-05-21 04:41:25 +0800 | [diff] [blame] | 7309 | struct kvm_vcpu *vcpu; |
| 7310 | |
Zachary Amsden | 6755bae | 2010-08-19 22:07:22 -1000 | [diff] [blame] | 7311 | if (check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0) |
| 7312 | printk_once(KERN_WARNING |
| 7313 | "kvm: SMP vm created on host with unstable TSC; " |
| 7314 | "guest TSC will not be reliable\n"); |
Liang Li | c447e76 | 2015-05-21 04:41:25 +0800 | [diff] [blame] | 7315 | |
| 7316 | vcpu = kvm_x86_ops->vcpu_create(kvm, id); |
| 7317 | |
| 7318 | /* |
| 7319 | * Activate fpu unconditionally in case the guest needs eager FPU. It will be |
| 7320 | * deactivated soon if it doesn't. |
| 7321 | */ |
| 7322 | kvm_x86_ops->fpu_activate(vcpu); |
| 7323 | return vcpu; |
Avi Kivity | 26e5215 | 2007-11-20 15:30:24 +0200 | [diff] [blame] | 7324 | } |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7325 | |
Avi Kivity | 26e5215 | 2007-11-20 15:30:24 +0200 | [diff] [blame] | 7326 | int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu) |
| 7327 | { |
| 7328 | int r; |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7329 | |
Xiao Guangrong | 19efffa | 2015-06-15 16:55:31 +0800 | [diff] [blame] | 7330 | kvm_vcpu_mtrr_init(vcpu); |
Michael S. Tsirkin | 9fc7744 | 2012-09-16 11:50:30 +0300 | [diff] [blame] | 7331 | r = vcpu_load(vcpu); |
| 7332 | if (r) |
| 7333 | return r; |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 7334 | kvm_vcpu_reset(vcpu, false); |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 7335 | kvm_mmu_setup(vcpu); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7336 | vcpu_put(vcpu); |
Avi Kivity | 26e5215 | 2007-11-20 15:30:24 +0200 | [diff] [blame] | 7337 | return r; |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7338 | } |
| 7339 | |
Dominik Dingel | 31928aa | 2014-12-04 15:47:07 +0100 | [diff] [blame] | 7340 | void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | 42897d8 | 2012-11-27 23:29:02 -0200 | [diff] [blame] | 7341 | { |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 7342 | struct msr_data msr; |
Andrew Jones | 332967a | 2014-02-28 12:52:55 +0100 | [diff] [blame] | 7343 | struct kvm *kvm = vcpu->kvm; |
Marcelo Tosatti | 42897d8 | 2012-11-27 23:29:02 -0200 | [diff] [blame] | 7344 | |
Dominik Dingel | 31928aa | 2014-12-04 15:47:07 +0100 | [diff] [blame] | 7345 | if (vcpu_load(vcpu)) |
| 7346 | return; |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 7347 | msr.data = 0x0; |
| 7348 | msr.index = MSR_IA32_TSC; |
| 7349 | msr.host_initiated = true; |
| 7350 | kvm_write_tsc(vcpu, &msr); |
Marcelo Tosatti | 42897d8 | 2012-11-27 23:29:02 -0200 | [diff] [blame] | 7351 | vcpu_put(vcpu); |
| 7352 | |
Marcelo Tosatti | 630994b | 2015-05-12 22:42:04 -0300 | [diff] [blame] | 7353 | if (!kvmclock_periodic_sync) |
| 7354 | return; |
| 7355 | |
Andrew Jones | 332967a | 2014-02-28 12:52:55 +0100 | [diff] [blame] | 7356 | schedule_delayed_work(&kvm->arch.kvmclock_sync_work, |
| 7357 | KVMCLOCK_SYNC_PERIOD); |
Marcelo Tosatti | 42897d8 | 2012-11-27 23:29:02 -0200 | [diff] [blame] | 7358 | } |
| 7359 | |
Hollis Blanchard | d40ccc6 | 2007-11-19 14:04:43 -0600 | [diff] [blame] | 7360 | void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu) |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7361 | { |
Michael S. Tsirkin | 9fc7744 | 2012-09-16 11:50:30 +0300 | [diff] [blame] | 7362 | int r; |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 7363 | vcpu->arch.apf.msr_val = 0; |
| 7364 | |
Michael S. Tsirkin | 9fc7744 | 2012-09-16 11:50:30 +0300 | [diff] [blame] | 7365 | r = vcpu_load(vcpu); |
| 7366 | BUG_ON(r); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7367 | kvm_mmu_unload(vcpu); |
| 7368 | vcpu_put(vcpu); |
| 7369 | |
| 7370 | kvm_x86_ops->vcpu_free(vcpu); |
| 7371 | } |
| 7372 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 7373 | void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event) |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7374 | { |
Paolo Bonzini | e69fab5 | 2015-06-04 10:44:44 +0200 | [diff] [blame] | 7375 | vcpu->arch.hflags = 0; |
| 7376 | |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 7377 | atomic_set(&vcpu->arch.nmi_queued, 0); |
| 7378 | vcpu->arch.nmi_pending = 0; |
Jan Kiszka | 448fa4a | 2008-09-26 09:30:48 +0200 | [diff] [blame] | 7379 | vcpu->arch.nmi_injected = false; |
Nadav Amit | 5f7552d | 2014-06-30 12:03:02 +0300 | [diff] [blame] | 7380 | kvm_clear_interrupt_queue(vcpu); |
| 7381 | kvm_clear_exception_queue(vcpu); |
Jan Kiszka | 448fa4a | 2008-09-26 09:30:48 +0200 | [diff] [blame] | 7382 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 7383 | memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db)); |
Nadav Amit | ae561ed | 2015-04-02 03:10:37 +0300 | [diff] [blame] | 7384 | kvm_update_dr0123(vcpu); |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 7385 | vcpu->arch.dr6 = DR6_INIT; |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 7386 | kvm_update_dr6(vcpu); |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 7387 | vcpu->arch.dr7 = DR7_FIXED_1; |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 7388 | kvm_update_dr7(vcpu); |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 7389 | |
Nadav Amit | 1119022 | 2015-04-02 03:10:38 +0300 | [diff] [blame] | 7390 | vcpu->arch.cr2 = 0; |
| 7391 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 7392 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 7393 | vcpu->arch.apf.msr_val = 0; |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 7394 | vcpu->arch.st.msr_val = 0; |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 7395 | |
Glauber Costa | 12f9a48 | 2011-02-01 14:16:40 -0500 | [diff] [blame] | 7396 | kvmclock_reset(vcpu); |
| 7397 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 7398 | kvm_clear_async_pf_completion_queue(vcpu); |
| 7399 | kvm_async_pf_hash_reset(vcpu); |
| 7400 | vcpu->arch.apf.halted = false; |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7401 | |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 7402 | if (!init_event) { |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 7403 | kvm_pmu_reset(vcpu); |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 7404 | vcpu->arch.smbase = 0x30000; |
| 7405 | } |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 7406 | |
Julian Stecklina | 66f7b72 | 2012-12-05 15:26:19 +0100 | [diff] [blame] | 7407 | memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs)); |
| 7408 | vcpu->arch.regs_avail = ~0; |
| 7409 | vcpu->arch.regs_dirty = ~0; |
| 7410 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 7411 | kvm_x86_ops->vcpu_reset(vcpu, init_event); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7412 | } |
| 7413 | |
Paolo Bonzini | 2b4a273 | 2014-11-24 14:35:24 +0100 | [diff] [blame] | 7414 | void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector) |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 7415 | { |
| 7416 | struct kvm_segment cs; |
| 7417 | |
| 7418 | kvm_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 7419 | cs.selector = vector << 8; |
| 7420 | cs.base = vector << 12; |
| 7421 | kvm_set_segment(vcpu, &cs, VCPU_SREG_CS); |
| 7422 | kvm_rip_write(vcpu, 0); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7423 | } |
| 7424 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 7425 | int kvm_arch_hardware_enable(void) |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7426 | { |
Zachary Amsden | ca84d1a | 2010-08-19 22:07:28 -1000 | [diff] [blame] | 7427 | struct kvm *kvm; |
| 7428 | struct kvm_vcpu *vcpu; |
| 7429 | int i; |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 7430 | int ret; |
| 7431 | u64 local_tsc; |
| 7432 | u64 max_tsc = 0; |
| 7433 | bool stable, backwards_tsc = false; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 7434 | |
| 7435 | kvm_shared_msr_cpu_online(); |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 7436 | ret = kvm_x86_ops->hardware_enable(); |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 7437 | if (ret != 0) |
| 7438 | return ret; |
| 7439 | |
| 7440 | local_tsc = native_read_tsc(); |
| 7441 | stable = !check_tsc_unstable(); |
| 7442 | list_for_each_entry(kvm, &vm_list, vm_list) { |
| 7443 | kvm_for_each_vcpu(i, vcpu, kvm) { |
| 7444 | if (!stable && vcpu->cpu == smp_processor_id()) |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 7445 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 7446 | if (stable && vcpu->arch.last_host_tsc > local_tsc) { |
| 7447 | backwards_tsc = true; |
| 7448 | if (vcpu->arch.last_host_tsc > max_tsc) |
| 7449 | max_tsc = vcpu->arch.last_host_tsc; |
| 7450 | } |
| 7451 | } |
| 7452 | } |
| 7453 | |
| 7454 | /* |
| 7455 | * Sometimes, even reliable TSCs go backwards. This happens on |
| 7456 | * platforms that reset TSC during suspend or hibernate actions, but |
| 7457 | * maintain synchronization. We must compensate. Fortunately, we can |
| 7458 | * detect that condition here, which happens early in CPU bringup, |
| 7459 | * before any KVM threads can be running. Unfortunately, we can't |
| 7460 | * bring the TSCs fully up to date with real time, as we aren't yet far |
| 7461 | * enough into CPU bringup that we know how much real time has actually |
| 7462 | * elapsed; our helper function, get_kernel_ns() will be using boot |
| 7463 | * variables that haven't been updated yet. |
| 7464 | * |
| 7465 | * So we simply find the maximum observed TSC above, then record the |
| 7466 | * adjustment to TSC in each VCPU. When the VCPU later gets loaded, |
| 7467 | * the adjustment will be applied. Note that we accumulate |
| 7468 | * adjustments, in case multiple suspend cycles happen before some VCPU |
| 7469 | * gets a chance to run again. In the event that no KVM threads get a |
| 7470 | * chance to run, we will miss the entire elapsed period, as we'll have |
| 7471 | * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may |
| 7472 | * loose cycle time. This isn't too big a deal, since the loss will be |
| 7473 | * uniform across all VCPUs (not to mention the scenario is extremely |
| 7474 | * unlikely). It is possible that a second hibernate recovery happens |
| 7475 | * much faster than a first, causing the observed TSC here to be |
| 7476 | * smaller; this would require additional padding adjustment, which is |
| 7477 | * why we set last_host_tsc to the local tsc observed here. |
| 7478 | * |
| 7479 | * N.B. - this code below runs only on platforms with reliable TSC, |
| 7480 | * as that is the only way backwards_tsc is set above. Also note |
| 7481 | * that this runs for ALL vcpus, which is not a bug; all VCPUs should |
| 7482 | * have the same delta_cyc adjustment applied if backwards_tsc |
| 7483 | * is detected. Note further, this adjustment is only done once, |
| 7484 | * as we reset last_host_tsc on all VCPUs to stop this from being |
| 7485 | * called multiple times (one for each physical CPU bringup). |
| 7486 | * |
Guo Chao | 4a96998 | 2012-06-28 15:17:27 +0800 | [diff] [blame] | 7487 | * Platforms with unreliable TSCs don't have to deal with this, they |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 7488 | * will be compensated by the logic in vcpu_load, which sets the TSC to |
| 7489 | * catchup mode. This will catchup all VCPUs to real time, but cannot |
| 7490 | * guarantee that they stay in perfect synchronization. |
| 7491 | */ |
| 7492 | if (backwards_tsc) { |
| 7493 | u64 delta_cyc = max_tsc - local_tsc; |
Marcelo Tosatti | 16a9602 | 2014-05-14 12:43:24 -0300 | [diff] [blame] | 7494 | backwards_tsc_observed = true; |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 7495 | list_for_each_entry(kvm, &vm_list, vm_list) { |
| 7496 | kvm_for_each_vcpu(i, vcpu, kvm) { |
| 7497 | vcpu->arch.tsc_offset_adjustment += delta_cyc; |
| 7498 | vcpu->arch.last_host_tsc = local_tsc; |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 7499 | kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu); |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 7500 | } |
| 7501 | |
| 7502 | /* |
| 7503 | * We have to disable TSC offset matching.. if you were |
| 7504 | * booting a VM while issuing an S4 host suspend.... |
| 7505 | * you may have some problem. Solving this issue is |
| 7506 | * left as an exercise to the reader. |
| 7507 | */ |
| 7508 | kvm->arch.last_tsc_nsec = 0; |
| 7509 | kvm->arch.last_tsc_write = 0; |
| 7510 | } |
| 7511 | |
| 7512 | } |
| 7513 | return 0; |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7514 | } |
| 7515 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 7516 | void kvm_arch_hardware_disable(void) |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7517 | { |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 7518 | kvm_x86_ops->hardware_disable(); |
| 7519 | drop_user_return_notifiers(); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7520 | } |
| 7521 | |
| 7522 | int kvm_arch_hardware_setup(void) |
| 7523 | { |
Nadav Amit | 9e9c3fe | 2015-04-12 21:47:15 +0300 | [diff] [blame] | 7524 | int r; |
| 7525 | |
| 7526 | r = kvm_x86_ops->hardware_setup(); |
| 7527 | if (r != 0) |
| 7528 | return r; |
| 7529 | |
| 7530 | kvm_init_msr_list(); |
| 7531 | return 0; |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7532 | } |
| 7533 | |
| 7534 | void kvm_arch_hardware_unsetup(void) |
| 7535 | { |
| 7536 | kvm_x86_ops->hardware_unsetup(); |
| 7537 | } |
| 7538 | |
| 7539 | void kvm_arch_check_processor_compat(void *rtn) |
| 7540 | { |
| 7541 | kvm_x86_ops->check_processor_compatibility(rtn); |
| 7542 | } |
| 7543 | |
Avi Kivity | 3e51570 | 2012-03-05 14:23:29 +0200 | [diff] [blame] | 7544 | bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu) |
| 7545 | { |
| 7546 | return irqchip_in_kernel(vcpu->kvm) == (vcpu->arch.apic != NULL); |
| 7547 | } |
| 7548 | |
Gleb Natapov | 54e9818 | 2012-08-05 15:58:32 +0300 | [diff] [blame] | 7549 | struct static_key kvm_no_apic_vcpu __read_mostly; |
| 7550 | |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7551 | int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu) |
| 7552 | { |
| 7553 | struct page *page; |
| 7554 | struct kvm *kvm; |
| 7555 | int r; |
| 7556 | |
| 7557 | BUG_ON(vcpu->kvm == NULL); |
| 7558 | kvm = vcpu->kvm; |
| 7559 | |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 7560 | vcpu->arch.pv.pv_unhalted = false; |
Avi Kivity | 9aabc88f | 2010-07-29 15:11:50 +0300 | [diff] [blame] | 7561 | vcpu->arch.emulate_ctxt.ops = &emulate_ops; |
Nadav Amit | 58d269d | 2015-04-02 03:10:36 +0300 | [diff] [blame] | 7562 | if (!irqchip_in_kernel(kvm) || kvm_vcpu_is_reset_bsp(vcpu)) |
Avi Kivity | a453529 | 2008-04-13 17:54:35 +0300 | [diff] [blame] | 7563 | vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE; |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7564 | else |
Avi Kivity | a453529 | 2008-04-13 17:54:35 +0300 | [diff] [blame] | 7565 | vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED; |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7566 | |
| 7567 | page = alloc_page(GFP_KERNEL | __GFP_ZERO); |
| 7568 | if (!page) { |
| 7569 | r = -ENOMEM; |
| 7570 | goto fail; |
| 7571 | } |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 7572 | vcpu->arch.pio_data = page_address(page); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7573 | |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 7574 | kvm_set_tsc_khz(vcpu, max_tsc_khz); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 7575 | |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7576 | r = kvm_mmu_create(vcpu); |
| 7577 | if (r < 0) |
| 7578 | goto fail_free_pio_data; |
| 7579 | |
| 7580 | if (irqchip_in_kernel(kvm)) { |
| 7581 | r = kvm_create_lapic(vcpu); |
| 7582 | if (r < 0) |
| 7583 | goto fail_mmu_destroy; |
Gleb Natapov | 54e9818 | 2012-08-05 15:58:32 +0300 | [diff] [blame] | 7584 | } else |
| 7585 | static_key_slow_inc(&kvm_no_apic_vcpu); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7586 | |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 7587 | vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4, |
| 7588 | GFP_KERNEL); |
| 7589 | if (!vcpu->arch.mce_banks) { |
| 7590 | r = -ENOMEM; |
Wei Yongjun | 443c39b | 2010-01-22 14:21:29 +0800 | [diff] [blame] | 7591 | goto fail_free_lapic; |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 7592 | } |
| 7593 | vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS; |
| 7594 | |
Wei Yongjun | f179735 | 2013-04-18 07:41:00 +0800 | [diff] [blame] | 7595 | if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask, GFP_KERNEL)) { |
| 7596 | r = -ENOMEM; |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 7597 | goto fail_free_mce_banks; |
Wei Yongjun | f179735 | 2013-04-18 07:41:00 +0800 | [diff] [blame] | 7598 | } |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 7599 | |
Ingo Molnar | 0ee6a51 | 2015-04-27 06:58:22 +0200 | [diff] [blame] | 7600 | fx_init(vcpu); |
Julian Stecklina | 66f7b72 | 2012-12-05 15:26:19 +0100 | [diff] [blame] | 7601 | |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 7602 | vcpu->arch.ia32_tsc_adjust_msr = 0x0; |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 7603 | vcpu->arch.pv_time_enabled = false; |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 7604 | |
| 7605 | vcpu->arch.guest_supported_xcr0 = 0; |
Paolo Bonzini | 4344ee9 | 2013-10-02 16:06:16 +0200 | [diff] [blame] | 7606 | vcpu->arch.guest_xstate_size = XSAVE_HDR_SIZE + XSAVE_HDR_OFFSET; |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 7607 | |
Eugene Korenevsky | 5a4f55c | 2015-03-29 23:56:12 +0300 | [diff] [blame] | 7608 | vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu); |
| 7609 | |
Radim Krčmář | 7454570 | 2015-04-27 15:11:25 +0200 | [diff] [blame] | 7610 | vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT; |
| 7611 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 7612 | kvm_async_pf_hash_reset(vcpu); |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 7613 | kvm_pmu_init(vcpu); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 7614 | |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7615 | return 0; |
Ingo Molnar | 0ee6a51 | 2015-04-27 06:58:22 +0200 | [diff] [blame] | 7616 | |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 7617 | fail_free_mce_banks: |
| 7618 | kfree(vcpu->arch.mce_banks); |
Wei Yongjun | 443c39b | 2010-01-22 14:21:29 +0800 | [diff] [blame] | 7619 | fail_free_lapic: |
| 7620 | kvm_free_lapic(vcpu); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7621 | fail_mmu_destroy: |
| 7622 | kvm_mmu_destroy(vcpu); |
| 7623 | fail_free_pio_data: |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 7624 | free_page((unsigned long)vcpu->arch.pio_data); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7625 | fail: |
| 7626 | return r; |
| 7627 | } |
| 7628 | |
| 7629 | void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu) |
| 7630 | { |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 7631 | int idx; |
| 7632 | |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 7633 | kvm_pmu_destroy(vcpu); |
Wei Yongjun | 36cb93f | 2010-01-22 14:18:47 +0800 | [diff] [blame] | 7634 | kfree(vcpu->arch.mce_banks); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7635 | kvm_free_lapic(vcpu); |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 7636 | idx = srcu_read_lock(&vcpu->kvm->srcu); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7637 | kvm_mmu_destroy(vcpu); |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 7638 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 7639 | free_page((unsigned long)vcpu->arch.pio_data); |
Gleb Natapov | 54e9818 | 2012-08-05 15:58:32 +0300 | [diff] [blame] | 7640 | if (!irqchip_in_kernel(vcpu->kvm)) |
| 7641 | static_key_slow_dec(&kvm_no_apic_vcpu); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7642 | } |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7643 | |
Radim Krčmář | e790d9e | 2014-08-21 18:08:05 +0200 | [diff] [blame] | 7644 | void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu) |
| 7645 | { |
Radim Krčmář | ae97a3b | 2014-08-21 18:08:06 +0200 | [diff] [blame] | 7646 | kvm_x86_ops->sched_in(vcpu, cpu); |
Radim Krčmář | e790d9e | 2014-08-21 18:08:05 +0200 | [diff] [blame] | 7647 | } |
| 7648 | |
Carsten Otte | e08b963 | 2012-01-04 10:25:20 +0100 | [diff] [blame] | 7649 | int kvm_arch_init_vm(struct kvm *kvm, unsigned long type) |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7650 | { |
Carsten Otte | e08b963 | 2012-01-04 10:25:20 +0100 | [diff] [blame] | 7651 | if (type) |
| 7652 | return -EINVAL; |
| 7653 | |
Paolo Bonzini | 6ef768f | 2014-11-20 13:45:31 +0100 | [diff] [blame] | 7654 | INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list); |
Zhang Xiantao | f05e70a | 2007-12-14 10:01:48 +0800 | [diff] [blame] | 7655 | INIT_LIST_HEAD(&kvm->arch.active_mmu_pages); |
Xiao Guangrong | 365c886 | 2013-05-31 08:36:29 +0800 | [diff] [blame] | 7656 | INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages); |
Ben-Ami Yassour | 4d5c5d0 | 2008-07-28 19:26:26 +0300 | [diff] [blame] | 7657 | INIT_LIST_HEAD(&kvm->arch.assigned_dev_head); |
Alex Williamson | e0f0bbc | 2013-10-30 11:02:30 -0600 | [diff] [blame] | 7658 | atomic_set(&kvm->arch.noncoherent_dma_count, 0); |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7659 | |
Sheng Yang | 5550af4 | 2008-10-15 20:15:06 +0800 | [diff] [blame] | 7660 | /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */ |
| 7661 | set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 7662 | /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */ |
| 7663 | set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID, |
| 7664 | &kvm->arch.irq_sources_bitmap); |
Sheng Yang | 5550af4 | 2008-10-15 20:15:06 +0800 | [diff] [blame] | 7665 | |
Jan Kiszka | 038f8c1 | 2011-02-04 10:49:11 +0100 | [diff] [blame] | 7666 | raw_spin_lock_init(&kvm->arch.tsc_write_lock); |
Gleb Natapov | 1e08ec4 | 2012-09-13 17:19:24 +0300 | [diff] [blame] | 7667 | mutex_init(&kvm->arch.apic_map_lock); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 7668 | spin_lock_init(&kvm->arch.pvclock_gtod_sync_lock); |
| 7669 | |
| 7670 | pvclock_update_vm_gtod_copy(kvm); |
Marcelo Tosatti | 53f658b3 | 2008-12-11 20:45:05 +0100 | [diff] [blame] | 7671 | |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 7672 | INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn); |
Andrew Jones | 332967a | 2014-02-28 12:52:55 +0100 | [diff] [blame] | 7673 | INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn); |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 7674 | |
Jan Kiszka | d89f5ef | 2010-11-09 17:02:49 +0100 | [diff] [blame] | 7675 | return 0; |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7676 | } |
| 7677 | |
| 7678 | static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu) |
| 7679 | { |
Michael S. Tsirkin | 9fc7744 | 2012-09-16 11:50:30 +0300 | [diff] [blame] | 7680 | int r; |
| 7681 | r = vcpu_load(vcpu); |
| 7682 | BUG_ON(r); |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7683 | kvm_mmu_unload(vcpu); |
| 7684 | vcpu_put(vcpu); |
| 7685 | } |
| 7686 | |
| 7687 | static void kvm_free_vcpus(struct kvm *kvm) |
| 7688 | { |
| 7689 | unsigned int i; |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 7690 | struct kvm_vcpu *vcpu; |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7691 | |
| 7692 | /* |
| 7693 | * Unpin any mmu pages first. |
| 7694 | */ |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 7695 | kvm_for_each_vcpu(i, vcpu, kvm) { |
| 7696 | kvm_clear_async_pf_completion_queue(vcpu); |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 7697 | kvm_unload_vcpu_mmu(vcpu); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 7698 | } |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 7699 | kvm_for_each_vcpu(i, vcpu, kvm) |
| 7700 | kvm_arch_vcpu_free(vcpu); |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7701 | |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 7702 | mutex_lock(&kvm->lock); |
| 7703 | for (i = 0; i < atomic_read(&kvm->online_vcpus); i++) |
| 7704 | kvm->vcpus[i] = NULL; |
| 7705 | |
| 7706 | atomic_set(&kvm->online_vcpus, 0); |
| 7707 | mutex_unlock(&kvm->lock); |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7708 | } |
| 7709 | |
Sheng Yang | ad8ba2c | 2009-01-06 10:03:02 +0800 | [diff] [blame] | 7710 | void kvm_arch_sync_events(struct kvm *kvm) |
| 7711 | { |
Andrew Jones | 332967a | 2014-02-28 12:52:55 +0100 | [diff] [blame] | 7712 | cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work); |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 7713 | cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work); |
Sheng Yang | ba4cef3 | 2009-01-06 10:03:03 +0800 | [diff] [blame] | 7714 | kvm_free_all_assigned_devices(kvm); |
Xiao Guangrong | aea924f | 2010-07-10 17:37:56 +0800 | [diff] [blame] | 7715 | kvm_free_pit(kvm); |
Sheng Yang | ad8ba2c | 2009-01-06 10:03:02 +0800 | [diff] [blame] | 7716 | } |
| 7717 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 7718 | int __x86_set_memory_region(struct kvm *kvm, |
| 7719 | const struct kvm_userspace_memory_region *mem) |
| 7720 | { |
| 7721 | int i, r; |
| 7722 | |
| 7723 | /* Called with kvm->slots_lock held. */ |
| 7724 | BUG_ON(mem->slot >= KVM_MEM_SLOTS_NUM); |
| 7725 | |
| 7726 | for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) { |
| 7727 | struct kvm_userspace_memory_region m = *mem; |
| 7728 | |
| 7729 | m.slot |= i << 16; |
| 7730 | r = __kvm_set_memory_region(kvm, &m); |
| 7731 | if (r < 0) |
| 7732 | return r; |
| 7733 | } |
| 7734 | |
| 7735 | return 0; |
| 7736 | } |
| 7737 | EXPORT_SYMBOL_GPL(__x86_set_memory_region); |
| 7738 | |
| 7739 | int x86_set_memory_region(struct kvm *kvm, |
| 7740 | const struct kvm_userspace_memory_region *mem) |
| 7741 | { |
| 7742 | int r; |
| 7743 | |
| 7744 | mutex_lock(&kvm->slots_lock); |
| 7745 | r = __x86_set_memory_region(kvm, mem); |
| 7746 | mutex_unlock(&kvm->slots_lock); |
| 7747 | |
| 7748 | return r; |
| 7749 | } |
| 7750 | EXPORT_SYMBOL_GPL(x86_set_memory_region); |
| 7751 | |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7752 | void kvm_arch_destroy_vm(struct kvm *kvm) |
| 7753 | { |
Andrew Honig | 27469d2 | 2013-04-18 09:38:14 -0700 | [diff] [blame] | 7754 | if (current->mm == kvm->mm) { |
| 7755 | /* |
| 7756 | * Free memory regions allocated on behalf of userspace, |
| 7757 | * unless the the memory map has changed due to process exit |
| 7758 | * or fd copying. |
| 7759 | */ |
| 7760 | struct kvm_userspace_memory_region mem; |
| 7761 | memset(&mem, 0, sizeof(mem)); |
| 7762 | mem.slot = APIC_ACCESS_PAGE_PRIVATE_MEMSLOT; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 7763 | x86_set_memory_region(kvm, &mem); |
Andrew Honig | 27469d2 | 2013-04-18 09:38:14 -0700 | [diff] [blame] | 7764 | |
| 7765 | mem.slot = IDENTITY_PAGETABLE_PRIVATE_MEMSLOT; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 7766 | x86_set_memory_region(kvm, &mem); |
Andrew Honig | 27469d2 | 2013-04-18 09:38:14 -0700 | [diff] [blame] | 7767 | |
| 7768 | mem.slot = TSS_PRIVATE_MEMSLOT; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 7769 | x86_set_memory_region(kvm, &mem); |
Andrew Honig | 27469d2 | 2013-04-18 09:38:14 -0700 | [diff] [blame] | 7770 | } |
Sheng Yang | 6eb5581 | 2008-10-31 12:37:41 +0800 | [diff] [blame] | 7771 | kvm_iommu_unmap_guest(kvm); |
Zhang Xiantao | d7deeeb0 | 2007-12-14 10:17:34 +0800 | [diff] [blame] | 7772 | kfree(kvm->arch.vpic); |
| 7773 | kfree(kvm->arch.vioapic); |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7774 | kvm_free_vcpus(kvm); |
Gleb Natapov | 1e08ec4 | 2012-09-13 17:19:24 +0300 | [diff] [blame] | 7775 | kfree(rcu_dereference_check(kvm->arch.apic_map, 1)); |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7776 | } |
Zhang Xiantao | 0de1034 | 2007-11-20 16:25:04 +0800 | [diff] [blame] | 7777 | |
Aneesh Kumar K.V | 5587027 | 2013-10-07 22:18:00 +0530 | [diff] [blame] | 7778 | void kvm_arch_free_memslot(struct kvm *kvm, struct kvm_memory_slot *free, |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7779 | struct kvm_memory_slot *dont) |
| 7780 | { |
| 7781 | int i; |
| 7782 | |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7783 | for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) { |
| 7784 | if (!dont || free->arch.rmap[i] != dont->arch.rmap[i]) { |
Thomas Huth | 548ef28 | 2015-02-24 21:29:25 +0100 | [diff] [blame] | 7785 | kvfree(free->arch.rmap[i]); |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7786 | free->arch.rmap[i] = NULL; |
Takuya Yoshikawa | 77d1130 | 2012-07-02 17:57:17 +0900 | [diff] [blame] | 7787 | } |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7788 | if (i == 0) |
| 7789 | continue; |
| 7790 | |
| 7791 | if (!dont || free->arch.lpage_info[i - 1] != |
| 7792 | dont->arch.lpage_info[i - 1]) { |
Thomas Huth | 548ef28 | 2015-02-24 21:29:25 +0100 | [diff] [blame] | 7793 | kvfree(free->arch.lpage_info[i - 1]); |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7794 | free->arch.lpage_info[i - 1] = NULL; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7795 | } |
| 7796 | } |
| 7797 | } |
| 7798 | |
Aneesh Kumar K.V | 5587027 | 2013-10-07 22:18:00 +0530 | [diff] [blame] | 7799 | int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot, |
| 7800 | unsigned long npages) |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7801 | { |
| 7802 | int i; |
| 7803 | |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7804 | for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) { |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7805 | unsigned long ugfn; |
| 7806 | int lpages; |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7807 | int level = i + 1; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7808 | |
| 7809 | lpages = gfn_to_index(slot->base_gfn + npages - 1, |
| 7810 | slot->base_gfn, level) + 1; |
| 7811 | |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7812 | slot->arch.rmap[i] = |
| 7813 | kvm_kvzalloc(lpages * sizeof(*slot->arch.rmap[i])); |
| 7814 | if (!slot->arch.rmap[i]) |
Takuya Yoshikawa | 77d1130 | 2012-07-02 17:57:17 +0900 | [diff] [blame] | 7815 | goto out_free; |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7816 | if (i == 0) |
| 7817 | continue; |
Takuya Yoshikawa | 77d1130 | 2012-07-02 17:57:17 +0900 | [diff] [blame] | 7818 | |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7819 | slot->arch.lpage_info[i - 1] = kvm_kvzalloc(lpages * |
| 7820 | sizeof(*slot->arch.lpage_info[i - 1])); |
| 7821 | if (!slot->arch.lpage_info[i - 1]) |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7822 | goto out_free; |
| 7823 | |
| 7824 | if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1)) |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7825 | slot->arch.lpage_info[i - 1][0].write_count = 1; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7826 | if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1)) |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7827 | slot->arch.lpage_info[i - 1][lpages - 1].write_count = 1; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7828 | ugfn = slot->userspace_addr >> PAGE_SHIFT; |
| 7829 | /* |
| 7830 | * If the gfn and userspace address are not aligned wrt each |
| 7831 | * other, or if explicitly asked to, disable large page |
| 7832 | * support for this slot |
| 7833 | */ |
| 7834 | if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1) || |
| 7835 | !kvm_largepages_enabled()) { |
| 7836 | unsigned long j; |
| 7837 | |
| 7838 | for (j = 0; j < lpages; ++j) |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7839 | slot->arch.lpage_info[i - 1][j].write_count = 1; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7840 | } |
| 7841 | } |
| 7842 | |
| 7843 | return 0; |
| 7844 | |
| 7845 | out_free: |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7846 | for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) { |
Thomas Huth | 548ef28 | 2015-02-24 21:29:25 +0100 | [diff] [blame] | 7847 | kvfree(slot->arch.rmap[i]); |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7848 | slot->arch.rmap[i] = NULL; |
| 7849 | if (i == 0) |
| 7850 | continue; |
| 7851 | |
Thomas Huth | 548ef28 | 2015-02-24 21:29:25 +0100 | [diff] [blame] | 7852 | kvfree(slot->arch.lpage_info[i - 1]); |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7853 | slot->arch.lpage_info[i - 1] = NULL; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7854 | } |
| 7855 | return -ENOMEM; |
| 7856 | } |
| 7857 | |
Paolo Bonzini | 15f4601 | 2015-05-17 21:26:08 +0200 | [diff] [blame] | 7858 | void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots) |
Takuya Yoshikawa | e59dbe0 | 2013-07-04 13:40:29 +0900 | [diff] [blame] | 7859 | { |
Takuya Yoshikawa | e6dff7d | 2013-07-04 13:41:26 +0900 | [diff] [blame] | 7860 | /* |
| 7861 | * memslots->generation has been incremented. |
| 7862 | * mmio generation may have reached its maximum value. |
| 7863 | */ |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 7864 | kvm_mmu_invalidate_mmio_sptes(kvm, slots); |
Takuya Yoshikawa | e59dbe0 | 2013-07-04 13:40:29 +0900 | [diff] [blame] | 7865 | } |
| 7866 | |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 7867 | int kvm_arch_prepare_memory_region(struct kvm *kvm, |
| 7868 | struct kvm_memory_slot *memslot, |
Paolo Bonzini | 09170a4 | 2015-05-18 13:59:39 +0200 | [diff] [blame] | 7869 | const struct kvm_userspace_memory_region *mem, |
Takuya Yoshikawa | 7b6195a | 2013-02-27 19:44:34 +0900 | [diff] [blame] | 7870 | enum kvm_mr_change change) |
Zhang Xiantao | 0de1034 | 2007-11-20 16:25:04 +0800 | [diff] [blame] | 7871 | { |
Takuya Yoshikawa | 7a905b1 | 2013-02-07 18:55:57 +0900 | [diff] [blame] | 7872 | /* |
| 7873 | * Only private memory slots need to be mapped here since |
| 7874 | * KVM_SET_MEMORY_REGION ioctl is no longer supported. |
Zhang Xiantao | 0de1034 | 2007-11-20 16:25:04 +0800 | [diff] [blame] | 7875 | */ |
Takuya Yoshikawa | 7b6195a | 2013-02-27 19:44:34 +0900 | [diff] [blame] | 7876 | if ((memslot->id >= KVM_USER_MEM_SLOTS) && (change == KVM_MR_CREATE)) { |
Takuya Yoshikawa | 7a905b1 | 2013-02-07 18:55:57 +0900 | [diff] [blame] | 7877 | unsigned long userspace_addr; |
Andrea Arcangeli | 604b38a | 2008-07-25 16:32:03 +0200 | [diff] [blame] | 7878 | |
Takuya Yoshikawa | 7a905b1 | 2013-02-07 18:55:57 +0900 | [diff] [blame] | 7879 | /* |
| 7880 | * MAP_SHARED to prevent internal slot pages from being moved |
| 7881 | * by fork()/COW. |
| 7882 | */ |
Takuya Yoshikawa | 7b6195a | 2013-02-27 19:44:34 +0900 | [diff] [blame] | 7883 | userspace_addr = vm_mmap(NULL, 0, memslot->npages * PAGE_SIZE, |
Takuya Yoshikawa | 7a905b1 | 2013-02-07 18:55:57 +0900 | [diff] [blame] | 7884 | PROT_READ | PROT_WRITE, |
| 7885 | MAP_SHARED | MAP_ANONYMOUS, 0); |
Zhang Xiantao | 0de1034 | 2007-11-20 16:25:04 +0800 | [diff] [blame] | 7886 | |
Takuya Yoshikawa | 7a905b1 | 2013-02-07 18:55:57 +0900 | [diff] [blame] | 7887 | if (IS_ERR((void *)userspace_addr)) |
| 7888 | return PTR_ERR((void *)userspace_addr); |
Andrea Arcangeli | 604b38a | 2008-07-25 16:32:03 +0200 | [diff] [blame] | 7889 | |
Takuya Yoshikawa | 7a905b1 | 2013-02-07 18:55:57 +0900 | [diff] [blame] | 7890 | memslot->userspace_addr = userspace_addr; |
Zhang Xiantao | 0de1034 | 2007-11-20 16:25:04 +0800 | [diff] [blame] | 7891 | } |
| 7892 | |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 7893 | return 0; |
| 7894 | } |
| 7895 | |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 7896 | static void kvm_mmu_slot_apply_flags(struct kvm *kvm, |
| 7897 | struct kvm_memory_slot *new) |
| 7898 | { |
| 7899 | /* Still write protect RO slot */ |
| 7900 | if (new->flags & KVM_MEM_READONLY) { |
| 7901 | kvm_mmu_slot_remove_write_access(kvm, new); |
| 7902 | return; |
| 7903 | } |
| 7904 | |
| 7905 | /* |
| 7906 | * Call kvm_x86_ops dirty logging hooks when they are valid. |
| 7907 | * |
| 7908 | * kvm_x86_ops->slot_disable_log_dirty is called when: |
| 7909 | * |
| 7910 | * - KVM_MR_CREATE with dirty logging is disabled |
| 7911 | * - KVM_MR_FLAGS_ONLY with dirty logging is disabled in new flag |
| 7912 | * |
| 7913 | * The reason is, in case of PML, we need to set D-bit for any slots |
| 7914 | * with dirty logging disabled in order to eliminate unnecessary GPA |
| 7915 | * logging in PML buffer (and potential PML buffer full VMEXT). This |
| 7916 | * guarantees leaving PML enabled during guest's lifetime won't have |
| 7917 | * any additonal overhead from PML when guest is running with dirty |
| 7918 | * logging disabled for memory slots. |
| 7919 | * |
| 7920 | * kvm_x86_ops->slot_enable_log_dirty is called when switching new slot |
| 7921 | * to dirty logging mode. |
| 7922 | * |
| 7923 | * If kvm_x86_ops dirty logging hooks are invalid, use write protect. |
| 7924 | * |
| 7925 | * In case of write protect: |
| 7926 | * |
| 7927 | * Write protect all pages for dirty logging. |
| 7928 | * |
| 7929 | * All the sptes including the large sptes which point to this |
| 7930 | * slot are set to readonly. We can not create any new large |
| 7931 | * spte on this slot until the end of the logging. |
| 7932 | * |
| 7933 | * See the comments in fast_page_fault(). |
| 7934 | */ |
| 7935 | if (new->flags & KVM_MEM_LOG_DIRTY_PAGES) { |
| 7936 | if (kvm_x86_ops->slot_enable_log_dirty) |
| 7937 | kvm_x86_ops->slot_enable_log_dirty(kvm, new); |
| 7938 | else |
| 7939 | kvm_mmu_slot_remove_write_access(kvm, new); |
| 7940 | } else { |
| 7941 | if (kvm_x86_ops->slot_disable_log_dirty) |
| 7942 | kvm_x86_ops->slot_disable_log_dirty(kvm, new); |
| 7943 | } |
| 7944 | } |
| 7945 | |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 7946 | void kvm_arch_commit_memory_region(struct kvm *kvm, |
Paolo Bonzini | 09170a4 | 2015-05-18 13:59:39 +0200 | [diff] [blame] | 7947 | const struct kvm_userspace_memory_region *mem, |
Takuya Yoshikawa | 8482644 | 2013-02-27 19:45:25 +0900 | [diff] [blame] | 7948 | const struct kvm_memory_slot *old, |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 7949 | const struct kvm_memory_slot *new, |
Takuya Yoshikawa | 8482644 | 2013-02-27 19:45:25 +0900 | [diff] [blame] | 7950 | enum kvm_mr_change change) |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 7951 | { |
Takuya Yoshikawa | 8482644 | 2013-02-27 19:45:25 +0900 | [diff] [blame] | 7952 | int nr_mmu_pages = 0; |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 7953 | |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 7954 | if (change == KVM_MR_DELETE && old->id >= KVM_USER_MEM_SLOTS) { |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 7955 | int ret; |
| 7956 | |
Takuya Yoshikawa | 8482644 | 2013-02-27 19:45:25 +0900 | [diff] [blame] | 7957 | ret = vm_munmap(old->userspace_addr, |
| 7958 | old->npages * PAGE_SIZE); |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 7959 | if (ret < 0) |
| 7960 | printk(KERN_WARNING |
| 7961 | "kvm_vm_ioctl_set_memory_region: " |
| 7962 | "failed to munmap memory\n"); |
| 7963 | } |
| 7964 | |
Xiao Guangrong | 48c0e4e | 2011-03-04 18:59:21 +0800 | [diff] [blame] | 7965 | if (!kvm->arch.n_requested_mmu_pages) |
| 7966 | nr_mmu_pages = kvm_mmu_calculate_mmu_pages(kvm); |
Zhang Xiantao | 0de1034 | 2007-11-20 16:25:04 +0800 | [diff] [blame] | 7967 | |
Xiao Guangrong | 48c0e4e | 2011-03-04 18:59:21 +0800 | [diff] [blame] | 7968 | if (nr_mmu_pages) |
| 7969 | kvm_mmu_change_mmu_pages(kvm, nr_mmu_pages); |
Kai Huang | 1c91cad4 | 2015-01-28 10:54:26 +0800 | [diff] [blame] | 7970 | |
Takuya Yoshikawa | c972f3b | 2013-01-08 19:43:28 +0900 | [diff] [blame] | 7971 | /* |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 7972 | * Dirty logging tracks sptes in 4k granularity, meaning that large |
| 7973 | * sptes have to be split. If live migration is successful, the guest |
| 7974 | * in the source machine will be destroyed and large sptes will be |
| 7975 | * created in the destination. However, if the guest continues to run |
| 7976 | * in the source machine (for example if live migration fails), small |
| 7977 | * sptes will remain around and cause bad performance. |
| 7978 | * |
| 7979 | * Scan sptes if dirty logging has been stopped, dropping those |
| 7980 | * which can be collapsed into a single large-page spte. Later |
| 7981 | * page faults will create the large-page sptes. |
| 7982 | */ |
| 7983 | if ((change != KVM_MR_DELETE) && |
| 7984 | (old->flags & KVM_MEM_LOG_DIRTY_PAGES) && |
| 7985 | !(new->flags & KVM_MEM_LOG_DIRTY_PAGES)) |
| 7986 | kvm_mmu_zap_collapsible_sptes(kvm, new); |
| 7987 | |
| 7988 | /* |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 7989 | * Set up write protection and/or dirty logging for the new slot. |
Xiao Guangrong | c126d94 | 2014-04-17 17:06:14 +0800 | [diff] [blame] | 7990 | * |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 7991 | * For KVM_MR_DELETE and KVM_MR_MOVE, the shadow pages of old slot have |
| 7992 | * been zapped so no dirty logging staff is needed for old slot. For |
| 7993 | * KVM_MR_FLAGS_ONLY, the old slot is essentially the same one as the |
| 7994 | * new and it's also covered when dealing with the new slot. |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 7995 | * |
| 7996 | * FIXME: const-ify all uses of struct kvm_memory_slot. |
Takuya Yoshikawa | c972f3b | 2013-01-08 19:43:28 +0900 | [diff] [blame] | 7997 | */ |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 7998 | if (change != KVM_MR_DELETE) |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 7999 | kvm_mmu_slot_apply_flags(kvm, (struct kvm_memory_slot *) new); |
Zhang Xiantao | 0de1034 | 2007-11-20 16:25:04 +0800 | [diff] [blame] | 8000 | } |
Zhang Xiantao | 1d737c8 | 2007-12-14 09:35:10 +0800 | [diff] [blame] | 8001 | |
Marcelo Tosatti | 2df72e9 | 2012-08-24 15:54:57 -0300 | [diff] [blame] | 8002 | void kvm_arch_flush_shadow_all(struct kvm *kvm) |
Marcelo Tosatti | 34d4cb8 | 2008-07-10 20:49:31 -0300 | [diff] [blame] | 8003 | { |
Xiao Guangrong | 6ca18b6 | 2013-05-31 08:36:23 +0800 | [diff] [blame] | 8004 | kvm_mmu_invalidate_zap_all_pages(kvm); |
Marcelo Tosatti | 34d4cb8 | 2008-07-10 20:49:31 -0300 | [diff] [blame] | 8005 | } |
| 8006 | |
Marcelo Tosatti | 2df72e9 | 2012-08-24 15:54:57 -0300 | [diff] [blame] | 8007 | void kvm_arch_flush_shadow_memslot(struct kvm *kvm, |
| 8008 | struct kvm_memory_slot *slot) |
| 8009 | { |
Xiao Guangrong | 6ca18b6 | 2013-05-31 08:36:23 +0800 | [diff] [blame] | 8010 | kvm_mmu_invalidate_zap_all_pages(kvm); |
Marcelo Tosatti | 2df72e9 | 2012-08-24 15:54:57 -0300 | [diff] [blame] | 8011 | } |
| 8012 | |
Zhang Xiantao | 1d737c8 | 2007-12-14 09:35:10 +0800 | [diff] [blame] | 8013 | int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu) |
| 8014 | { |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 8015 | if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events) |
| 8016 | kvm_x86_ops->check_nested_events(vcpu, false); |
| 8017 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 8018 | return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE && |
| 8019 | !vcpu->arch.apf.halted) |
| 8020 | || !list_empty_careful(&vcpu->async_pf.done) |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 8021 | || kvm_apic_has_events(vcpu) |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 8022 | || vcpu->arch.pv.pv_unhalted |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 8023 | || atomic_read(&vcpu->arch.nmi_queued) || |
Gleb Natapov | a1b3710 | 2009-07-09 15:33:52 +0300 | [diff] [blame] | 8024 | (kvm_arch_interrupt_allowed(vcpu) && |
| 8025 | kvm_cpu_has_interrupt(vcpu)); |
Zhang Xiantao | 1d737c8 | 2007-12-14 09:35:10 +0800 | [diff] [blame] | 8026 | } |
Zhang Xiantao | 5736199 | 2007-12-17 14:21:40 +0800 | [diff] [blame] | 8027 | |
Christoffer Dall | b6d3383 | 2012-03-08 16:44:24 -0500 | [diff] [blame] | 8028 | int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu) |
Zhang Xiantao | 5736199 | 2007-12-17 14:21:40 +0800 | [diff] [blame] | 8029 | { |
Christoffer Dall | b6d3383 | 2012-03-08 16:44:24 -0500 | [diff] [blame] | 8030 | return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE; |
Zhang Xiantao | 5736199 | 2007-12-17 14:21:40 +0800 | [diff] [blame] | 8031 | } |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 8032 | |
| 8033 | int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu) |
| 8034 | { |
| 8035 | return kvm_x86_ops->interrupt_allowed(vcpu); |
| 8036 | } |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 8037 | |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 8038 | unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu) |
| 8039 | { |
| 8040 | if (is_64_bit_mode(vcpu)) |
| 8041 | return kvm_rip_read(vcpu); |
| 8042 | return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) + |
| 8043 | kvm_rip_read(vcpu)); |
| 8044 | } |
| 8045 | EXPORT_SYMBOL_GPL(kvm_get_linear_rip); |
| 8046 | |
Jan Kiszka | f92653e | 2010-02-23 17:47:55 +0100 | [diff] [blame] | 8047 | bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip) |
| 8048 | { |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 8049 | return kvm_get_linear_rip(vcpu) == linear_rip; |
Jan Kiszka | f92653e | 2010-02-23 17:47:55 +0100 | [diff] [blame] | 8050 | } |
| 8051 | EXPORT_SYMBOL_GPL(kvm_is_linear_rip); |
| 8052 | |
Jan Kiszka | 94fe45d | 2009-10-18 13:24:44 +0200 | [diff] [blame] | 8053 | unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu) |
| 8054 | { |
| 8055 | unsigned long rflags; |
| 8056 | |
| 8057 | rflags = kvm_x86_ops->get_rflags(vcpu); |
| 8058 | if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) |
Jan Kiszka | c310bac | 2010-02-23 17:47:58 +0100 | [diff] [blame] | 8059 | rflags &= ~X86_EFLAGS_TF; |
Jan Kiszka | 94fe45d | 2009-10-18 13:24:44 +0200 | [diff] [blame] | 8060 | return rflags; |
| 8061 | } |
| 8062 | EXPORT_SYMBOL_GPL(kvm_get_rflags); |
| 8063 | |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 8064 | static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags) |
Jan Kiszka | 94fe45d | 2009-10-18 13:24:44 +0200 | [diff] [blame] | 8065 | { |
| 8066 | if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP && |
Jan Kiszka | f92653e | 2010-02-23 17:47:55 +0100 | [diff] [blame] | 8067 | kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip)) |
Jan Kiszka | c310bac | 2010-02-23 17:47:58 +0100 | [diff] [blame] | 8068 | rflags |= X86_EFLAGS_TF; |
Jan Kiszka | 94fe45d | 2009-10-18 13:24:44 +0200 | [diff] [blame] | 8069 | kvm_x86_ops->set_rflags(vcpu, rflags); |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 8070 | } |
| 8071 | |
| 8072 | void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags) |
| 8073 | { |
| 8074 | __kvm_set_rflags(vcpu, rflags); |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 8075 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Jan Kiszka | 94fe45d | 2009-10-18 13:24:44 +0200 | [diff] [blame] | 8076 | } |
| 8077 | EXPORT_SYMBOL_GPL(kvm_set_rflags); |
| 8078 | |
Gleb Natapov | 56028d0 | 2010-10-17 18:13:42 +0200 | [diff] [blame] | 8079 | void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work) |
| 8080 | { |
| 8081 | int r; |
| 8082 | |
Xiao Guangrong | fb67e14 | 2010-12-07 10:35:25 +0800 | [diff] [blame] | 8083 | if ((vcpu->arch.mmu.direct_map != work->arch.direct_map) || |
chai wen | f2e1066 | 2013-10-14 22:22:33 +0800 | [diff] [blame] | 8084 | work->wakeup_all) |
Gleb Natapov | 56028d0 | 2010-10-17 18:13:42 +0200 | [diff] [blame] | 8085 | return; |
| 8086 | |
| 8087 | r = kvm_mmu_reload(vcpu); |
| 8088 | if (unlikely(r)) |
| 8089 | return; |
| 8090 | |
Xiao Guangrong | fb67e14 | 2010-12-07 10:35:25 +0800 | [diff] [blame] | 8091 | if (!vcpu->arch.mmu.direct_map && |
| 8092 | work->arch.cr3 != vcpu->arch.mmu.get_cr3(vcpu)) |
| 8093 | return; |
| 8094 | |
Gleb Natapov | 56028d0 | 2010-10-17 18:13:42 +0200 | [diff] [blame] | 8095 | vcpu->arch.mmu.page_fault(vcpu, work->gva, 0, true); |
| 8096 | } |
| 8097 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 8098 | static inline u32 kvm_async_pf_hash_fn(gfn_t gfn) |
| 8099 | { |
| 8100 | return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU)); |
| 8101 | } |
| 8102 | |
| 8103 | static inline u32 kvm_async_pf_next_probe(u32 key) |
| 8104 | { |
| 8105 | return (key + 1) & (roundup_pow_of_two(ASYNC_PF_PER_VCPU) - 1); |
| 8106 | } |
| 8107 | |
| 8108 | static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn) |
| 8109 | { |
| 8110 | u32 key = kvm_async_pf_hash_fn(gfn); |
| 8111 | |
| 8112 | while (vcpu->arch.apf.gfns[key] != ~0) |
| 8113 | key = kvm_async_pf_next_probe(key); |
| 8114 | |
| 8115 | vcpu->arch.apf.gfns[key] = gfn; |
| 8116 | } |
| 8117 | |
| 8118 | static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn) |
| 8119 | { |
| 8120 | int i; |
| 8121 | u32 key = kvm_async_pf_hash_fn(gfn); |
| 8122 | |
| 8123 | for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU) && |
Xiao Guangrong | c7d28c2 | 2010-11-01 17:00:30 +0800 | [diff] [blame] | 8124 | (vcpu->arch.apf.gfns[key] != gfn && |
| 8125 | vcpu->arch.apf.gfns[key] != ~0); i++) |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 8126 | key = kvm_async_pf_next_probe(key); |
| 8127 | |
| 8128 | return key; |
| 8129 | } |
| 8130 | |
| 8131 | bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn) |
| 8132 | { |
| 8133 | return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn; |
| 8134 | } |
| 8135 | |
| 8136 | static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn) |
| 8137 | { |
| 8138 | u32 i, j, k; |
| 8139 | |
| 8140 | i = j = kvm_async_pf_gfn_slot(vcpu, gfn); |
| 8141 | while (true) { |
| 8142 | vcpu->arch.apf.gfns[i] = ~0; |
| 8143 | do { |
| 8144 | j = kvm_async_pf_next_probe(j); |
| 8145 | if (vcpu->arch.apf.gfns[j] == ~0) |
| 8146 | return; |
| 8147 | k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]); |
| 8148 | /* |
| 8149 | * k lies cyclically in ]i,j] |
| 8150 | * | i.k.j | |
| 8151 | * |....j i.k.| or |.k..j i...| |
| 8152 | */ |
| 8153 | } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j)); |
| 8154 | vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j]; |
| 8155 | i = j; |
| 8156 | } |
| 8157 | } |
| 8158 | |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 8159 | static int apf_put_user(struct kvm_vcpu *vcpu, u32 val) |
| 8160 | { |
| 8161 | |
| 8162 | return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &val, |
| 8163 | sizeof(val)); |
| 8164 | } |
| 8165 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 8166 | void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu, |
| 8167 | struct kvm_async_pf *work) |
| 8168 | { |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 8169 | struct x86_exception fault; |
| 8170 | |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 8171 | trace_kvm_async_pf_not_present(work->arch.token, work->gva); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 8172 | kvm_add_async_pf_gfn(vcpu, work->arch.gfn); |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 8173 | |
| 8174 | if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) || |
Gleb Natapov | fc5f06f | 2010-10-14 11:22:56 +0200 | [diff] [blame] | 8175 | (vcpu->arch.apf.send_user_only && |
| 8176 | kvm_x86_ops->get_cpl(vcpu) == 0)) |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 8177 | kvm_make_request(KVM_REQ_APF_HALT, vcpu); |
| 8178 | else if (!apf_put_user(vcpu, KVM_PV_REASON_PAGE_NOT_PRESENT)) { |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 8179 | fault.vector = PF_VECTOR; |
| 8180 | fault.error_code_valid = true; |
| 8181 | fault.error_code = 0; |
| 8182 | fault.nested_page_fault = false; |
| 8183 | fault.address = work->arch.token; |
| 8184 | kvm_inject_page_fault(vcpu, &fault); |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 8185 | } |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 8186 | } |
| 8187 | |
| 8188 | void kvm_arch_async_page_present(struct kvm_vcpu *vcpu, |
| 8189 | struct kvm_async_pf *work) |
| 8190 | { |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 8191 | struct x86_exception fault; |
| 8192 | |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 8193 | trace_kvm_async_pf_ready(work->arch.token, work->gva); |
chai wen | f2e1066 | 2013-10-14 22:22:33 +0800 | [diff] [blame] | 8194 | if (work->wakeup_all) |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 8195 | work->arch.token = ~0; /* broadcast wakeup */ |
| 8196 | else |
| 8197 | kvm_del_async_pf_gfn(vcpu, work->arch.gfn); |
| 8198 | |
| 8199 | if ((vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) && |
| 8200 | !apf_put_user(vcpu, KVM_PV_REASON_PAGE_READY)) { |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 8201 | fault.vector = PF_VECTOR; |
| 8202 | fault.error_code_valid = true; |
| 8203 | fault.error_code = 0; |
| 8204 | fault.nested_page_fault = false; |
| 8205 | fault.address = work->arch.token; |
| 8206 | kvm_inject_page_fault(vcpu, &fault); |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 8207 | } |
Xiao Guangrong | e6d53e3 | 2010-11-01 17:01:28 +0800 | [diff] [blame] | 8208 | vcpu->arch.apf.halted = false; |
Gleb Natapov | a4fa163 | 2012-05-03 11:36:39 +0300 | [diff] [blame] | 8209 | vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE; |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 8210 | } |
| 8211 | |
| 8212 | bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu) |
| 8213 | { |
| 8214 | if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED)) |
| 8215 | return true; |
| 8216 | else |
| 8217 | return !kvm_event_needs_reinjection(vcpu) && |
| 8218 | kvm_x86_ops->interrupt_allowed(vcpu); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 8219 | } |
| 8220 | |
Alex Williamson | e0f0bbc | 2013-10-30 11:02:30 -0600 | [diff] [blame] | 8221 | void kvm_arch_register_noncoherent_dma(struct kvm *kvm) |
| 8222 | { |
| 8223 | atomic_inc(&kvm->arch.noncoherent_dma_count); |
| 8224 | } |
| 8225 | EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma); |
| 8226 | |
| 8227 | void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm) |
| 8228 | { |
| 8229 | atomic_dec(&kvm->arch.noncoherent_dma_count); |
| 8230 | } |
| 8231 | EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma); |
| 8232 | |
| 8233 | bool kvm_arch_has_noncoherent_dma(struct kvm *kvm) |
| 8234 | { |
| 8235 | return atomic_read(&kvm->arch.noncoherent_dma_count); |
| 8236 | } |
| 8237 | EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma); |
| 8238 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 8239 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit); |
| 8240 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq); |
| 8241 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault); |
| 8242 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr); |
| 8243 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr); |
Joerg Roedel | 0ac406d | 2009-10-09 16:08:27 +0200 | [diff] [blame] | 8244 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun); |
Joerg Roedel | d8cabdd | 2009-10-09 16:08:28 +0200 | [diff] [blame] | 8245 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit); |
Joerg Roedel | 17897f3 | 2009-10-09 16:08:29 +0200 | [diff] [blame] | 8246 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject); |
Joerg Roedel | 236649d | 2009-10-09 16:08:30 +0200 | [diff] [blame] | 8247 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit); |
Joerg Roedel | ec1ff79 | 2009-10-09 16:08:31 +0200 | [diff] [blame] | 8248 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga); |
Joerg Roedel | 532a46b | 2009-10-09 16:08:32 +0200 | [diff] [blame] | 8249 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit); |
Joerg Roedel | 2e554e8 | 2010-02-24 18:59:14 +0100 | [diff] [blame] | 8250 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts); |
Yoshihiro YUNOMAE | 489223e | 2013-06-12 16:43:44 +0900 | [diff] [blame] | 8251 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset); |
Radim Krčmář | 7b46268 | 2014-08-21 18:08:09 +0200 | [diff] [blame] | 8252 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window); |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8253 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full); |