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" |
Andrey Smetanin | e83d588 | 2015-07-03 15:01:34 +0300 | [diff] [blame] | 32 | #include "hyperv.h" |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 33 | |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 34 | #include <linux/clocksource.h> |
Ben-Ami Yassour | 4d5c5d0 | 2008-07-28 19:26:26 +0300 | [diff] [blame] | 35 | #include <linux/interrupt.h> |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 36 | #include <linux/kvm.h> |
| 37 | #include <linux/fs.h> |
| 38 | #include <linux/vmalloc.h> |
Carsten Otte | 5fb76f9 | 2007-10-29 16:08:51 +0100 | [diff] [blame] | 39 | #include <linux/module.h> |
Zhang Xiantao | 0de1034 | 2007-11-20 16:25:04 +0800 | [diff] [blame] | 40 | #include <linux/mman.h> |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 41 | #include <linux/highmem.h> |
Joerg Roedel | 19de40a | 2008-12-03 14:43:34 +0100 | [diff] [blame] | 42 | #include <linux/iommu.h> |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 43 | #include <linux/intel-iommu.h> |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 44 | #include <linux/cpufreq.h> |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 45 | #include <linux/user-return-notifier.h> |
Marcelo Tosatti | a983fb2 | 2009-12-23 14:35:23 -0200 | [diff] [blame] | 46 | #include <linux/srcu.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 47 | #include <linux/slab.h> |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 48 | #include <linux/perf_event.h> |
Lai Jiangshan | 7bee342 | 2010-06-02 17:06:03 +0800 | [diff] [blame] | 49 | #include <linux/uaccess.h> |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 50 | #include <linux/hash.h> |
Joerg Roedel | a1b60c1 | 2011-09-06 18:46:34 +0200 | [diff] [blame] | 51 | #include <linux/pci.h> |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 52 | #include <linux/timekeeper_internal.h> |
| 53 | #include <linux/pvclock_gtod.h> |
Feng Wu | 8727688 | 2015-09-18 22:29:40 +0800 | [diff] [blame] | 54 | #include <linux/kvm_irqfd.h> |
| 55 | #include <linux/irqbypass.h> |
Avi Kivity | aec51dc | 2009-07-01 16:01:02 +0300 | [diff] [blame] | 56 | #include <trace/events/kvm.h> |
Xiao Guangrong | 2ed152a | 2010-03-10 19:00:43 +0800 | [diff] [blame] | 57 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 58 | #define CREATE_TRACE_POINTS |
| 59 | #include "trace.h" |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 60 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 61 | #include <asm/debugreg.h> |
Zhang Xiantao | d825ed0 | 2007-11-14 20:08:51 +0800 | [diff] [blame] | 62 | #include <asm/msr.h> |
Avi Kivity | a5f6130 | 2008-02-20 17:57:21 +0200 | [diff] [blame] | 63 | #include <asm/desc.h> |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 64 | #include <asm/mce.h> |
Ingo Molnar | f89e32e | 2015-04-22 10:58:10 +0200 | [diff] [blame] | 65 | #include <linux/kernel_stat.h> |
Ingo Molnar | 78f7f1e | 2015-04-24 02:54:44 +0200 | [diff] [blame] | 66 | #include <asm/fpu/internal.h> /* Ugh! */ |
Zachary Amsden | 1d5f066 | 2010-08-19 22:07:30 -1000 | [diff] [blame] | 67 | #include <asm/pvclock.h> |
Avi Kivity | 217fc9c | 2010-08-26 13:38:03 +0300 | [diff] [blame] | 68 | #include <asm/div64.h> |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 69 | #include <asm/irq_remapping.h> |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 70 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 71 | #define MAX_IO_MSRS 256 |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 72 | #define KVM_MAX_MCE_BANKS 32 |
Huang Ying | 5854dbc | 2010-10-08 16:24:14 +0800 | [diff] [blame] | 73 | #define KVM_MCE_CAP_SUPPORTED (MCG_CTL_P | MCG_SER_P) |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 74 | |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 75 | #define emul_to_vcpu(ctxt) \ |
| 76 | container_of(ctxt, struct kvm_vcpu, arch.emulate_ctxt) |
| 77 | |
Joerg Roedel | 50a37eb | 2008-01-31 14:57:38 +0100 | [diff] [blame] | 78 | /* EFER defaults: |
| 79 | * - enable syscall per default because its emulated by KVM |
| 80 | * - enable LME and LMA per default on 64 bit KVM |
| 81 | */ |
| 82 | #ifdef CONFIG_X86_64 |
Lai Jiangshan | 1260edbe | 2011-02-21 11:51:35 +0800 | [diff] [blame] | 83 | static |
| 84 | 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] | 85 | #else |
Lai Jiangshan | 1260edbe | 2011-02-21 11:51:35 +0800 | [diff] [blame] | 86 | static u64 __read_mostly efer_reserved_bits = ~((u64)EFER_SCE); |
Joerg Roedel | 50a37eb | 2008-01-31 14:57:38 +0100 | [diff] [blame] | 87 | #endif |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 88 | |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 89 | #define VM_STAT(x) offsetof(struct kvm, stat.x), KVM_STAT_VM |
| 90 | #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] | 91 | |
Gleb Natapov | cb142eb | 2009-08-09 15:17:40 +0300 | [diff] [blame] | 92 | static void update_cr8_intercept(struct kvm_vcpu *vcpu); |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 93 | static void process_nmi(struct kvm_vcpu *vcpu); |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 94 | static void enter_smm(struct kvm_vcpu *vcpu); |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 95 | static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags); |
Avi Kivity | 674eea0 | 2008-02-11 18:37:23 +0200 | [diff] [blame] | 96 | |
Paolo Bonzini | 893590c | 2015-11-06 11:46:24 +0100 | [diff] [blame] | 97 | struct kvm_x86_ops *kvm_x86_ops __read_mostly; |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 98 | EXPORT_SYMBOL_GPL(kvm_x86_ops); |
Zhang Xiantao | 97896d0 | 2007-11-14 20:09:30 +0800 | [diff] [blame] | 99 | |
Paolo Bonzini | 893590c | 2015-11-06 11:46:24 +0100 | [diff] [blame] | 100 | static bool __read_mostly ignore_msrs = 0; |
Rusty Russell | 476bc00 | 2012-01-13 09:32:18 +1030 | [diff] [blame] | 101 | module_param(ignore_msrs, bool, S_IRUGO | S_IWUSR); |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 102 | |
Marcelo Tosatti | 9ed96e8 | 2014-01-06 12:00:02 -0200 | [diff] [blame] | 103 | unsigned int min_timer_period_us = 500; |
| 104 | module_param(min_timer_period_us, uint, S_IRUGO | S_IWUSR); |
| 105 | |
Marcelo Tosatti | 630994b | 2015-05-12 22:42:04 -0300 | [diff] [blame] | 106 | static bool __read_mostly kvmclock_periodic_sync = true; |
| 107 | module_param(kvmclock_periodic_sync, bool, S_IRUGO); |
| 108 | |
Paolo Bonzini | 893590c | 2015-11-06 11:46:24 +0100 | [diff] [blame] | 109 | bool __read_mostly kvm_has_tsc_control; |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 110 | EXPORT_SYMBOL_GPL(kvm_has_tsc_control); |
Paolo Bonzini | 893590c | 2015-11-06 11:46:24 +0100 | [diff] [blame] | 111 | u32 __read_mostly kvm_max_guest_tsc_khz; |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 112 | EXPORT_SYMBOL_GPL(kvm_max_guest_tsc_khz); |
Haozhong Zhang | bc9b961 | 2015-10-20 15:39:01 +0800 | [diff] [blame] | 113 | u8 __read_mostly kvm_tsc_scaling_ratio_frac_bits; |
| 114 | EXPORT_SYMBOL_GPL(kvm_tsc_scaling_ratio_frac_bits); |
| 115 | u64 __read_mostly kvm_max_tsc_scaling_ratio; |
| 116 | EXPORT_SYMBOL_GPL(kvm_max_tsc_scaling_ratio); |
Haozhong Zhang | ad72188 | 2015-10-20 15:39:02 +0800 | [diff] [blame] | 117 | static u64 __read_mostly kvm_default_tsc_scaling_ratio; |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 118 | |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 119 | /* tsc tolerance in parts per million - default to 1/2 of the NTP threshold */ |
Paolo Bonzini | 893590c | 2015-11-06 11:46:24 +0100 | [diff] [blame] | 120 | static u32 __read_mostly tsc_tolerance_ppm = 250; |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 121 | module_param(tsc_tolerance_ppm, uint, S_IRUGO | S_IWUSR); |
| 122 | |
Marcelo Tosatti | d0659d9 | 2014-12-16 09:08:15 -0500 | [diff] [blame] | 123 | /* lapic timer advance (tscdeadline mode only) in nanoseconds */ |
Paolo Bonzini | 893590c | 2015-11-06 11:46:24 +0100 | [diff] [blame] | 124 | unsigned int __read_mostly lapic_timer_advance_ns = 0; |
Marcelo Tosatti | d0659d9 | 2014-12-16 09:08:15 -0500 | [diff] [blame] | 125 | module_param(lapic_timer_advance_ns, uint, S_IRUGO | S_IWUSR); |
| 126 | |
Feng Wu | 52004014 | 2016-01-25 16:53:33 +0800 | [diff] [blame] | 127 | static bool __read_mostly vector_hashing = true; |
| 128 | module_param(vector_hashing, bool, S_IRUGO); |
| 129 | |
Paolo Bonzini | 893590c | 2015-11-06 11:46:24 +0100 | [diff] [blame] | 130 | static bool __read_mostly backwards_tsc_observed = false; |
Marcelo Tosatti | 16a9602 | 2014-05-14 12:43:24 -0300 | [diff] [blame] | 131 | |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 132 | #define KVM_NR_SHARED_MSRS 16 |
| 133 | |
| 134 | struct kvm_shared_msrs_global { |
| 135 | int nr; |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 136 | u32 msrs[KVM_NR_SHARED_MSRS]; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 137 | }; |
| 138 | |
| 139 | struct kvm_shared_msrs { |
| 140 | struct user_return_notifier urn; |
| 141 | bool registered; |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 142 | struct kvm_shared_msr_values { |
| 143 | u64 host; |
| 144 | u64 curr; |
| 145 | } values[KVM_NR_SHARED_MSRS]; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 146 | }; |
| 147 | |
| 148 | static struct kvm_shared_msrs_global __read_mostly shared_msrs_global; |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 149 | static struct kvm_shared_msrs __percpu *shared_msrs; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 150 | |
Hollis Blanchard | 417bc30 | 2007-10-31 17:24:23 -0500 | [diff] [blame] | 151 | struct kvm_stats_debugfs_item debugfs_entries[] = { |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 152 | { "pf_fixed", VCPU_STAT(pf_fixed) }, |
| 153 | { "pf_guest", VCPU_STAT(pf_guest) }, |
| 154 | { "tlb_flush", VCPU_STAT(tlb_flush) }, |
| 155 | { "invlpg", VCPU_STAT(invlpg) }, |
| 156 | { "exits", VCPU_STAT(exits) }, |
| 157 | { "io_exits", VCPU_STAT(io_exits) }, |
| 158 | { "mmio_exits", VCPU_STAT(mmio_exits) }, |
| 159 | { "signal_exits", VCPU_STAT(signal_exits) }, |
| 160 | { "irq_window", VCPU_STAT(irq_window_exits) }, |
Sheng Yang | f08864b | 2008-05-15 18:23:25 +0800 | [diff] [blame] | 161 | { "nmi_window", VCPU_STAT(nmi_window_exits) }, |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 162 | { "halt_exits", VCPU_STAT(halt_exits) }, |
Paolo Bonzini | f781951 | 2015-02-04 18:20:58 +0100 | [diff] [blame] | 163 | { "halt_successful_poll", VCPU_STAT(halt_successful_poll) }, |
Paolo Bonzini | 62bea5b | 2015-09-15 18:27:57 +0200 | [diff] [blame] | 164 | { "halt_attempted_poll", VCPU_STAT(halt_attempted_poll) }, |
Christian Borntraeger | 3491caf | 2016-05-13 12:16:35 +0200 | [diff] [blame] | 165 | { "halt_poll_invalid", VCPU_STAT(halt_poll_invalid) }, |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 166 | { "halt_wakeup", VCPU_STAT(halt_wakeup) }, |
Amit Shah | f11c3a8 | 2008-02-21 01:00:30 +0530 | [diff] [blame] | 167 | { "hypercalls", VCPU_STAT(hypercalls) }, |
Avi Kivity | ba1389b | 2007-11-18 16:24:12 +0200 | [diff] [blame] | 168 | { "request_irq", VCPU_STAT(request_irq_exits) }, |
| 169 | { "irq_exits", VCPU_STAT(irq_exits) }, |
| 170 | { "host_state_reload", VCPU_STAT(host_state_reload) }, |
| 171 | { "efer_reload", VCPU_STAT(efer_reload) }, |
| 172 | { "fpu_reload", VCPU_STAT(fpu_reload) }, |
| 173 | { "insn_emulation", VCPU_STAT(insn_emulation) }, |
| 174 | { "insn_emulation_fail", VCPU_STAT(insn_emulation_fail) }, |
Avi Kivity | fa89a81 | 2008-09-01 15:57:51 +0300 | [diff] [blame] | 175 | { "irq_injections", VCPU_STAT(irq_injections) }, |
Jan Kiszka | c4abb7c | 2008-09-26 09:30:55 +0200 | [diff] [blame] | 176 | { "nmi_injections", VCPU_STAT(nmi_injections) }, |
Avi Kivity | 4cee576 | 2007-11-18 16:37:07 +0200 | [diff] [blame] | 177 | { "mmu_shadow_zapped", VM_STAT(mmu_shadow_zapped) }, |
| 178 | { "mmu_pte_write", VM_STAT(mmu_pte_write) }, |
| 179 | { "mmu_pte_updated", VM_STAT(mmu_pte_updated) }, |
| 180 | { "mmu_pde_zapped", VM_STAT(mmu_pde_zapped) }, |
| 181 | { "mmu_flooded", VM_STAT(mmu_flooded) }, |
| 182 | { "mmu_recycled", VM_STAT(mmu_recycled) }, |
Avi Kivity | dfc5aa0 | 2007-12-18 19:47:18 +0200 | [diff] [blame] | 183 | { "mmu_cache_miss", VM_STAT(mmu_cache_miss) }, |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 184 | { "mmu_unsync", VM_STAT(mmu_unsync) }, |
Avi Kivity | 0f74a24 | 2007-11-20 23:01:14 +0200 | [diff] [blame] | 185 | { "remote_tlb_flush", VM_STAT(remote_tlb_flush) }, |
Marcelo Tosatti | 05da455 | 2008-02-23 11:44:30 -0300 | [diff] [blame] | 186 | { "largepages", VM_STAT(lpages) }, |
Hollis Blanchard | 417bc30 | 2007-10-31 17:24:23 -0500 | [diff] [blame] | 187 | { NULL } |
| 188 | }; |
| 189 | |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 190 | u64 __read_mostly host_xcr0; |
| 191 | |
Jan Kiszka | b6785de | 2012-09-20 07:43:17 +0200 | [diff] [blame] | 192 | static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt); |
Avi Kivity | d6aa100 | 2011-04-20 15:47:13 +0300 | [diff] [blame] | 193 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 194 | static inline void kvm_async_pf_hash_reset(struct kvm_vcpu *vcpu) |
| 195 | { |
| 196 | int i; |
| 197 | for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU); i++) |
| 198 | vcpu->arch.apf.gfns[i] = ~0; |
| 199 | } |
| 200 | |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 201 | static void kvm_on_user_return(struct user_return_notifier *urn) |
| 202 | { |
| 203 | unsigned slot; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 204 | struct kvm_shared_msrs *locals |
| 205 | = container_of(urn, struct kvm_shared_msrs, urn); |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 206 | struct kvm_shared_msr_values *values; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 207 | |
| 208 | for (slot = 0; slot < shared_msrs_global.nr; ++slot) { |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 209 | values = &locals->values[slot]; |
| 210 | if (values->host != values->curr) { |
| 211 | wrmsrl(shared_msrs_global.msrs[slot], values->host); |
| 212 | values->curr = values->host; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 213 | } |
| 214 | } |
| 215 | locals->registered = false; |
| 216 | user_return_notifier_unregister(urn); |
| 217 | } |
| 218 | |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 219 | static void shared_msr_update(unsigned slot, u32 msr) |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 220 | { |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 221 | u64 value; |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 222 | unsigned int cpu = smp_processor_id(); |
| 223 | struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu); |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 224 | |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 225 | /* only read, and nobody should modify it at this time, |
| 226 | * so don't need lock */ |
| 227 | if (slot >= shared_msrs_global.nr) { |
| 228 | printk(KERN_ERR "kvm: invalid MSR slot!"); |
| 229 | return; |
| 230 | } |
| 231 | rdmsrl_safe(msr, &value); |
| 232 | smsr->values[slot].host = value; |
| 233 | smsr->values[slot].curr = value; |
| 234 | } |
| 235 | |
| 236 | void kvm_define_shared_msr(unsigned slot, u32 msr) |
| 237 | { |
Nadav Amit | 0123be4 | 2014-07-24 15:06:56 +0300 | [diff] [blame] | 238 | BUG_ON(slot >= KVM_NR_SHARED_MSRS); |
Paolo Bonzini | c847fe8 | 2015-07-29 11:06:34 +0200 | [diff] [blame] | 239 | shared_msrs_global.msrs[slot] = msr; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 240 | if (slot >= shared_msrs_global.nr) |
| 241 | shared_msrs_global.nr = slot + 1; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 242 | } |
| 243 | EXPORT_SYMBOL_GPL(kvm_define_shared_msr); |
| 244 | |
| 245 | static void kvm_shared_msr_cpu_online(void) |
| 246 | { |
| 247 | unsigned i; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 248 | |
| 249 | for (i = 0; i < shared_msrs_global.nr; ++i) |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 250 | shared_msr_update(i, shared_msrs_global.msrs[i]); |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 251 | } |
| 252 | |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 253 | int kvm_set_shared_msr(unsigned slot, u64 value, u64 mask) |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 254 | { |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 255 | unsigned int cpu = smp_processor_id(); |
| 256 | struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu); |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 257 | int err; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 258 | |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 259 | if (((value ^ smsr->values[slot].curr) & mask) == 0) |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 260 | return 0; |
Sheng Yang | 2bf78fa | 2009-12-18 16:48:44 +0800 | [diff] [blame] | 261 | smsr->values[slot].curr = value; |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 262 | err = wrmsrl_safe(shared_msrs_global.msrs[slot], value); |
| 263 | if (err) |
| 264 | return 1; |
| 265 | |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 266 | if (!smsr->registered) { |
| 267 | smsr->urn.on_user_return = kvm_on_user_return; |
| 268 | user_return_notifier_register(&smsr->urn); |
| 269 | smsr->registered = true; |
| 270 | } |
Andy Honig | 8b3c310 | 2014-08-27 11:16:44 -0700 | [diff] [blame] | 271 | return 0; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 272 | } |
| 273 | EXPORT_SYMBOL_GPL(kvm_set_shared_msr); |
| 274 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 275 | static void drop_user_return_notifiers(void) |
Avi Kivity | 3548bab | 2009-11-28 14:18:47 +0200 | [diff] [blame] | 276 | { |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 277 | unsigned int cpu = smp_processor_id(); |
| 278 | struct kvm_shared_msrs *smsr = per_cpu_ptr(shared_msrs, cpu); |
Avi Kivity | 3548bab | 2009-11-28 14:18:47 +0200 | [diff] [blame] | 279 | |
| 280 | if (smsr->registered) |
| 281 | kvm_on_user_return(&smsr->urn); |
| 282 | } |
| 283 | |
Carsten Otte | 6866b83 | 2007-10-29 16:09:10 +0100 | [diff] [blame] | 284 | u64 kvm_get_apic_base(struct kvm_vcpu *vcpu) |
| 285 | { |
Gleb Natapov | 8a5a87d | 2012-08-05 15:58:26 +0300 | [diff] [blame] | 286 | return vcpu->arch.apic_base; |
Carsten Otte | 6866b83 | 2007-10-29 16:09:10 +0100 | [diff] [blame] | 287 | } |
| 288 | EXPORT_SYMBOL_GPL(kvm_get_apic_base); |
| 289 | |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 290 | 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] | 291 | { |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 292 | u64 old_state = vcpu->arch.apic_base & |
| 293 | (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE); |
| 294 | u64 new_state = msr_info->data & |
| 295 | (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE); |
| 296 | u64 reserved_bits = ((~0ULL) << cpuid_maxphyaddr(vcpu)) | |
| 297 | 0x2ff | (guest_cpuid_has_x2apic(vcpu) ? 0 : X2APIC_ENABLE); |
| 298 | |
| 299 | if (!msr_info->host_initiated && |
| 300 | ((msr_info->data & reserved_bits) != 0 || |
| 301 | new_state == X2APIC_ENABLE || |
| 302 | (new_state == MSR_IA32_APICBASE_ENABLE && |
| 303 | old_state == (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE)) || |
| 304 | (new_state == (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE) && |
| 305 | old_state == 0))) |
| 306 | return 1; |
| 307 | |
| 308 | kvm_lapic_set_base(vcpu, msr_info->data); |
| 309 | return 0; |
Carsten Otte | 6866b83 | 2007-10-29 16:09:10 +0100 | [diff] [blame] | 310 | } |
| 311 | EXPORT_SYMBOL_GPL(kvm_set_apic_base); |
| 312 | |
Andi Kleen | 2605fc2 | 2014-05-02 00:44:37 +0200 | [diff] [blame] | 313 | asmlinkage __visible void kvm_spurious_fault(void) |
Geoff Levand | e3ba45b | 2013-04-05 19:20:30 +0000 | [diff] [blame] | 314 | { |
| 315 | /* Fault while not rebooting. We want the trace. */ |
| 316 | BUG(); |
| 317 | } |
| 318 | EXPORT_SYMBOL_GPL(kvm_spurious_fault); |
| 319 | |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 320 | #define EXCPT_BENIGN 0 |
| 321 | #define EXCPT_CONTRIBUTORY 1 |
| 322 | #define EXCPT_PF 2 |
| 323 | |
| 324 | static int exception_class(int vector) |
| 325 | { |
| 326 | switch (vector) { |
| 327 | case PF_VECTOR: |
| 328 | return EXCPT_PF; |
| 329 | case DE_VECTOR: |
| 330 | case TS_VECTOR: |
| 331 | case NP_VECTOR: |
| 332 | case SS_VECTOR: |
| 333 | case GP_VECTOR: |
| 334 | return EXCPT_CONTRIBUTORY; |
| 335 | default: |
| 336 | break; |
| 337 | } |
| 338 | return EXCPT_BENIGN; |
| 339 | } |
| 340 | |
Nadav Amit | d6e8c85 | 2014-07-24 14:51:24 +0300 | [diff] [blame] | 341 | #define EXCPT_FAULT 0 |
| 342 | #define EXCPT_TRAP 1 |
| 343 | #define EXCPT_ABORT 2 |
| 344 | #define EXCPT_INTERRUPT 3 |
| 345 | |
| 346 | static int exception_type(int vector) |
| 347 | { |
| 348 | unsigned int mask; |
| 349 | |
| 350 | if (WARN_ON(vector > 31 || vector == NMI_VECTOR)) |
| 351 | return EXCPT_INTERRUPT; |
| 352 | |
| 353 | mask = 1 << vector; |
| 354 | |
| 355 | /* #DB is trap, as instruction watchpoints are handled elsewhere */ |
| 356 | if (mask & ((1 << DB_VECTOR) | (1 << BP_VECTOR) | (1 << OF_VECTOR))) |
| 357 | return EXCPT_TRAP; |
| 358 | |
| 359 | if (mask & ((1 << DF_VECTOR) | (1 << MC_VECTOR))) |
| 360 | return EXCPT_ABORT; |
| 361 | |
| 362 | /* Reserved exceptions will result in fault */ |
| 363 | return EXCPT_FAULT; |
| 364 | } |
| 365 | |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 366 | static void kvm_multiple_exception(struct kvm_vcpu *vcpu, |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 367 | unsigned nr, bool has_error, u32 error_code, |
| 368 | bool reinject) |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 369 | { |
| 370 | u32 prev_nr; |
| 371 | int class1, class2; |
| 372 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 373 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 374 | |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 375 | if (!vcpu->arch.exception.pending) { |
| 376 | queue: |
Nadav Amit | 3ffb246 | 2014-11-02 11:54:42 +0200 | [diff] [blame] | 377 | if (has_error && !is_protmode(vcpu)) |
| 378 | has_error = false; |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 379 | vcpu->arch.exception.pending = true; |
| 380 | vcpu->arch.exception.has_error_code = has_error; |
| 381 | vcpu->arch.exception.nr = nr; |
| 382 | vcpu->arch.exception.error_code = error_code; |
Joerg Roedel | 3f0fd29 | 2010-05-05 16:04:41 +0200 | [diff] [blame] | 383 | vcpu->arch.exception.reinject = reinject; |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 384 | return; |
| 385 | } |
| 386 | |
| 387 | /* to check exception */ |
| 388 | prev_nr = vcpu->arch.exception.nr; |
| 389 | if (prev_nr == DF_VECTOR) { |
| 390 | /* triple fault -> shutdown */ |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 391 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Eddie Dong | 3fd28fc | 2009-11-19 17:54:07 +0200 | [diff] [blame] | 392 | return; |
| 393 | } |
| 394 | class1 = exception_class(prev_nr); |
| 395 | class2 = exception_class(nr); |
| 396 | if ((class1 == EXCPT_CONTRIBUTORY && class2 == EXCPT_CONTRIBUTORY) |
| 397 | || (class1 == EXCPT_PF && class2 != EXCPT_BENIGN)) { |
| 398 | /* generate double fault per SDM Table 5-5 */ |
| 399 | vcpu->arch.exception.pending = true; |
| 400 | vcpu->arch.exception.has_error_code = true; |
| 401 | vcpu->arch.exception.nr = DF_VECTOR; |
| 402 | vcpu->arch.exception.error_code = 0; |
| 403 | } else |
| 404 | /* replace previous exception with a new one in a hope |
| 405 | that instruction re-execution will regenerate lost |
| 406 | exception */ |
| 407 | goto queue; |
| 408 | } |
| 409 | |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 410 | void kvm_queue_exception(struct kvm_vcpu *vcpu, unsigned nr) |
| 411 | { |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 412 | kvm_multiple_exception(vcpu, nr, false, 0, false); |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 413 | } |
| 414 | EXPORT_SYMBOL_GPL(kvm_queue_exception); |
| 415 | |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 416 | void kvm_requeue_exception(struct kvm_vcpu *vcpu, unsigned nr) |
| 417 | { |
| 418 | kvm_multiple_exception(vcpu, nr, false, 0, true); |
| 419 | } |
| 420 | EXPORT_SYMBOL_GPL(kvm_requeue_exception); |
| 421 | |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 422 | void kvm_complete_insn_gp(struct kvm_vcpu *vcpu, int err) |
Avi Kivity | c3c91fe | 2007-11-25 14:04:58 +0200 | [diff] [blame] | 423 | { |
Andre Przywara | db8fcef | 2010-12-21 11:12:01 +0100 | [diff] [blame] | 424 | if (err) |
| 425 | kvm_inject_gp(vcpu, 0); |
| 426 | else |
| 427 | kvm_x86_ops->skip_emulated_instruction(vcpu); |
| 428 | } |
| 429 | EXPORT_SYMBOL_GPL(kvm_complete_insn_gp); |
Joerg Roedel | 8df25a3 | 2010-09-10 17:30:46 +0200 | [diff] [blame] | 430 | |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 431 | 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] | 432 | { |
Avi Kivity | c3c91fe | 2007-11-25 14:04:58 +0200 | [diff] [blame] | 433 | ++vcpu->stat.pf_guest; |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 434 | vcpu->arch.cr2 = fault->address; |
| 435 | kvm_queue_exception_e(vcpu, PF_VECTOR, fault->error_code); |
Avi Kivity | c3c91fe | 2007-11-25 14:04:58 +0200 | [diff] [blame] | 436 | } |
Nadav Har'El | 27d6c86 | 2011-05-25 23:06:59 +0300 | [diff] [blame] | 437 | EXPORT_SYMBOL_GPL(kvm_inject_page_fault); |
Avi Kivity | c3c91fe | 2007-11-25 14:04:58 +0200 | [diff] [blame] | 438 | |
Paolo Bonzini | ef54bcf | 2014-09-04 19:46:15 +0200 | [diff] [blame] | 439 | 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] | 440 | { |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 441 | if (mmu_is_nested(vcpu) && !fault->nested_page_fault) |
| 442 | vcpu->arch.nested_mmu.inject_page_fault(vcpu, fault); |
Joerg Roedel | d4f8cf6 | 2010-09-10 17:30:55 +0200 | [diff] [blame] | 443 | else |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 444 | vcpu->arch.mmu.inject_page_fault(vcpu, fault); |
Paolo Bonzini | ef54bcf | 2014-09-04 19:46:15 +0200 | [diff] [blame] | 445 | |
| 446 | return fault->nested_page_fault; |
Joerg Roedel | d4f8cf6 | 2010-09-10 17:30:55 +0200 | [diff] [blame] | 447 | } |
| 448 | |
Sheng Yang | 3419ffc | 2008-05-15 09:52:48 +0800 | [diff] [blame] | 449 | void kvm_inject_nmi(struct kvm_vcpu *vcpu) |
| 450 | { |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 451 | atomic_inc(&vcpu->arch.nmi_queued); |
| 452 | kvm_make_request(KVM_REQ_NMI, vcpu); |
Sheng Yang | 3419ffc | 2008-05-15 09:52:48 +0800 | [diff] [blame] | 453 | } |
| 454 | EXPORT_SYMBOL_GPL(kvm_inject_nmi); |
| 455 | |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 456 | void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code) |
| 457 | { |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 458 | kvm_multiple_exception(vcpu, nr, true, error_code, false); |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 459 | } |
| 460 | EXPORT_SYMBOL_GPL(kvm_queue_exception_e); |
| 461 | |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 462 | void kvm_requeue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code) |
| 463 | { |
| 464 | kvm_multiple_exception(vcpu, nr, true, error_code, true); |
| 465 | } |
| 466 | EXPORT_SYMBOL_GPL(kvm_requeue_exception_e); |
| 467 | |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 468 | /* |
Avi Kivity | 0a79b00 | 2009-09-01 12:03:25 +0300 | [diff] [blame] | 469 | * Checks if cpl <= required_cpl; if true, return true. Otherwise queue |
| 470 | * a #GP and return false. |
| 471 | */ |
| 472 | bool kvm_require_cpl(struct kvm_vcpu *vcpu, int required_cpl) |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 473 | { |
Avi Kivity | 0a79b00 | 2009-09-01 12:03:25 +0300 | [diff] [blame] | 474 | if (kvm_x86_ops->get_cpl(vcpu) <= required_cpl) |
| 475 | return true; |
| 476 | kvm_queue_exception_e(vcpu, GP_VECTOR, 0); |
| 477 | return false; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 478 | } |
Avi Kivity | 0a79b00 | 2009-09-01 12:03:25 +0300 | [diff] [blame] | 479 | EXPORT_SYMBOL_GPL(kvm_require_cpl); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 480 | |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 481 | bool kvm_require_dr(struct kvm_vcpu *vcpu, int dr) |
| 482 | { |
| 483 | if ((dr != 4 && dr != 5) || !kvm_read_cr4_bits(vcpu, X86_CR4_DE)) |
| 484 | return true; |
| 485 | |
| 486 | kvm_queue_exception(vcpu, UD_VECTOR); |
| 487 | return false; |
| 488 | } |
| 489 | EXPORT_SYMBOL_GPL(kvm_require_dr); |
| 490 | |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 491 | /* |
Joerg Roedel | ec92fe4 | 2010-09-10 17:30:51 +0200 | [diff] [blame] | 492 | * 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] | 493 | * 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] | 494 | * can read from guest physical or from the guest's guest physical memory. |
| 495 | */ |
| 496 | int kvm_read_guest_page_mmu(struct kvm_vcpu *vcpu, struct kvm_mmu *mmu, |
| 497 | gfn_t ngfn, void *data, int offset, int len, |
| 498 | u32 access) |
| 499 | { |
Paolo Bonzini | 54987b7 | 2014-09-02 13:23:06 +0200 | [diff] [blame] | 500 | struct x86_exception exception; |
Joerg Roedel | ec92fe4 | 2010-09-10 17:30:51 +0200 | [diff] [blame] | 501 | gfn_t real_gfn; |
| 502 | gpa_t ngpa; |
| 503 | |
| 504 | ngpa = gfn_to_gpa(ngfn); |
Paolo Bonzini | 54987b7 | 2014-09-02 13:23:06 +0200 | [diff] [blame] | 505 | real_gfn = mmu->translate_gpa(vcpu, ngpa, access, &exception); |
Joerg Roedel | ec92fe4 | 2010-09-10 17:30:51 +0200 | [diff] [blame] | 506 | if (real_gfn == UNMAPPED_GVA) |
| 507 | return -EFAULT; |
| 508 | |
| 509 | real_gfn = gpa_to_gfn(real_gfn); |
| 510 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 511 | return kvm_vcpu_read_guest_page(vcpu, real_gfn, data, offset, len); |
Joerg Roedel | ec92fe4 | 2010-09-10 17:30:51 +0200 | [diff] [blame] | 512 | } |
| 513 | EXPORT_SYMBOL_GPL(kvm_read_guest_page_mmu); |
| 514 | |
Fengguang Wu | 69b0049 | 2015-01-19 22:33:39 +0800 | [diff] [blame] | 515 | 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] | 516 | void *data, int offset, int len, u32 access) |
| 517 | { |
| 518 | return kvm_read_guest_page_mmu(vcpu, vcpu->arch.walk_mmu, gfn, |
| 519 | data, offset, len, access); |
| 520 | } |
| 521 | |
Joerg Roedel | ec92fe4 | 2010-09-10 17:30:51 +0200 | [diff] [blame] | 522 | /* |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 523 | * Load the pae pdptrs. Return true is they are all valid. |
| 524 | */ |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 525 | 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] | 526 | { |
| 527 | gfn_t pdpt_gfn = cr3 >> PAGE_SHIFT; |
| 528 | unsigned offset = ((cr3 & (PAGE_SIZE-1)) >> 5) << 2; |
| 529 | int i; |
| 530 | int ret; |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 531 | u64 pdpte[ARRAY_SIZE(mmu->pdptrs)]; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 532 | |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 533 | ret = kvm_read_guest_page_mmu(vcpu, mmu, pdpt_gfn, pdpte, |
| 534 | offset * sizeof(u64), sizeof(pdpte), |
| 535 | PFERR_USER_MASK|PFERR_WRITE_MASK); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 536 | if (ret < 0) { |
| 537 | ret = 0; |
| 538 | goto out; |
| 539 | } |
| 540 | for (i = 0; i < ARRAY_SIZE(pdpte); ++i) { |
Avi Kivity | 43a3795 | 2009-06-10 14:12:05 +0300 | [diff] [blame] | 541 | if (is_present_gpte(pdpte[i]) && |
Xiao Guangrong | a0a64f5 | 2015-08-05 12:04:21 +0800 | [diff] [blame] | 542 | (pdpte[i] & |
| 543 | vcpu->arch.mmu.guest_rsvd_check.rsvd_bits_mask[0][2])) { |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 544 | ret = 0; |
| 545 | goto out; |
| 546 | } |
| 547 | } |
| 548 | ret = 1; |
| 549 | |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 550 | memcpy(mmu->pdptrs, pdpte, sizeof(mmu->pdptrs)); |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 551 | __set_bit(VCPU_EXREG_PDPTR, |
| 552 | (unsigned long *)&vcpu->arch.regs_avail); |
| 553 | __set_bit(VCPU_EXREG_PDPTR, |
| 554 | (unsigned long *)&vcpu->arch.regs_dirty); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 555 | out: |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 556 | |
| 557 | return ret; |
| 558 | } |
Joerg Roedel | cc4b687 | 2008-02-07 13:47:43 +0100 | [diff] [blame] | 559 | EXPORT_SYMBOL_GPL(load_pdptrs); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 560 | |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 561 | static bool pdptrs_changed(struct kvm_vcpu *vcpu) |
| 562 | { |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 563 | u64 pdpte[ARRAY_SIZE(vcpu->arch.walk_mmu->pdptrs)]; |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 564 | bool changed = true; |
Joerg Roedel | 3d06b8b | 2010-09-10 17:30:53 +0200 | [diff] [blame] | 565 | int offset; |
| 566 | gfn_t gfn; |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 567 | int r; |
| 568 | |
| 569 | if (is_long_mode(vcpu) || !is_pae(vcpu)) |
| 570 | return false; |
| 571 | |
Avi Kivity | 6de4f3a | 2009-05-31 22:58:47 +0300 | [diff] [blame] | 572 | if (!test_bit(VCPU_EXREG_PDPTR, |
| 573 | (unsigned long *)&vcpu->arch.regs_avail)) |
| 574 | return true; |
| 575 | |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 576 | gfn = (kvm_read_cr3(vcpu) & ~31u) >> PAGE_SHIFT; |
| 577 | offset = (kvm_read_cr3(vcpu) & ~31u) & (PAGE_SIZE - 1); |
Joerg Roedel | 3d06b8b | 2010-09-10 17:30:53 +0200 | [diff] [blame] | 578 | r = kvm_read_nested_guest_page(vcpu, gfn, pdpte, offset, sizeof(pdpte), |
| 579 | PFERR_USER_MASK | PFERR_WRITE_MASK); |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 580 | if (r < 0) |
| 581 | goto out; |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 582 | changed = memcmp(pdpte, vcpu->arch.walk_mmu->pdptrs, sizeof(pdpte)) != 0; |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 583 | out: |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 584 | |
| 585 | return changed; |
| 586 | } |
| 587 | |
Avi Kivity | 49a9b07 | 2010-06-10 17:02:14 +0300 | [diff] [blame] | 588 | int kvm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 589 | { |
Sheng Yang | aad8270 | 2010-05-12 16:40:42 +0800 | [diff] [blame] | 590 | unsigned long old_cr0 = kvm_read_cr0(vcpu); |
Xiao Guangrong | d81135a | 2015-05-13 14:42:28 +0800 | [diff] [blame] | 591 | unsigned long update_bits = X86_CR0_PG | X86_CR0_WP; |
Sheng Yang | aad8270 | 2010-05-12 16:40:42 +0800 | [diff] [blame] | 592 | |
Avi Kivity | f9a48e6 | 2010-01-06 19:10:22 +0200 | [diff] [blame] | 593 | cr0 |= X86_CR0_ET; |
| 594 | |
Gleb Natapov | ab34482 | 2010-01-21 15:28:46 +0200 | [diff] [blame] | 595 | #ifdef CONFIG_X86_64 |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 596 | if (cr0 & 0xffffffff00000000UL) |
| 597 | return 1; |
Gleb Natapov | ab34482 | 2010-01-21 15:28:46 +0200 | [diff] [blame] | 598 | #endif |
| 599 | |
| 600 | cr0 &= ~CR0_RESERVED_BITS; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 601 | |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 602 | if ((cr0 & X86_CR0_NW) && !(cr0 & X86_CR0_CD)) |
| 603 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 604 | |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 605 | if ((cr0 & X86_CR0_PG) && !(cr0 & X86_CR0_PE)) |
| 606 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 607 | |
| 608 | if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) { |
| 609 | #ifdef CONFIG_X86_64 |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 610 | if ((vcpu->arch.efer & EFER_LME)) { |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 611 | int cs_db, cs_l; |
| 612 | |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 613 | if (!is_pae(vcpu)) |
| 614 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 615 | 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] | 616 | if (cs_l) |
| 617 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 618 | } else |
| 619 | #endif |
Joerg Roedel | ff03a07 | 2010-09-10 17:30:57 +0200 | [diff] [blame] | 620 | if (is_pae(vcpu) && !load_pdptrs(vcpu, vcpu->arch.walk_mmu, |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 621 | kvm_read_cr3(vcpu))) |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 622 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 623 | } |
| 624 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 625 | if (!(cr0 & X86_CR0_PG) && kvm_read_cr4_bits(vcpu, X86_CR4_PCIDE)) |
| 626 | return 1; |
| 627 | |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 628 | kvm_x86_ops->set_cr0(vcpu, cr0); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 629 | |
Lai Jiangshan | d170c41 | 2011-02-21 11:21:30 +0800 | [diff] [blame] | 630 | if ((cr0 ^ old_cr0) & X86_CR0_PG) { |
Xiao Guangrong | e5f3f02 | 2010-11-12 14:47:01 +0800 | [diff] [blame] | 631 | kvm_clear_async_pf_completion_queue(vcpu); |
Lai Jiangshan | d170c41 | 2011-02-21 11:21:30 +0800 | [diff] [blame] | 632 | kvm_async_pf_hash_reset(vcpu); |
| 633 | } |
Xiao Guangrong | e5f3f02 | 2010-11-12 14:47:01 +0800 | [diff] [blame] | 634 | |
Sheng Yang | aad8270 | 2010-05-12 16:40:42 +0800 | [diff] [blame] | 635 | if ((cr0 ^ old_cr0) & update_bits) |
| 636 | kvm_mmu_reset_context(vcpu); |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 637 | |
Laszlo Ersek | 879ae18 | 2015-11-04 12:54:41 +0100 | [diff] [blame] | 638 | if (((cr0 ^ old_cr0) & X86_CR0_CD) && |
| 639 | kvm_arch_has_noncoherent_dma(vcpu->kvm) && |
| 640 | !kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_CD_NW_CLEARED)) |
Xiao Guangrong | b18d543 | 2015-06-15 16:55:21 +0800 | [diff] [blame] | 641 | kvm_zap_gfn_range(vcpu->kvm, 0, ~0ULL); |
| 642 | |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 643 | return 0; |
| 644 | } |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 645 | EXPORT_SYMBOL_GPL(kvm_set_cr0); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 646 | |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 647 | void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 648 | { |
Avi Kivity | 49a9b07 | 2010-06-10 17:02:14 +0300 | [diff] [blame] | 649 | (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] | 650 | } |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 651 | EXPORT_SYMBOL_GPL(kvm_lmsw); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 652 | |
Marcelo Tosatti | 42bdf99 | 2013-04-15 23:30:13 -0300 | [diff] [blame] | 653 | static void kvm_load_guest_xcr0(struct kvm_vcpu *vcpu) |
| 654 | { |
| 655 | if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE) && |
| 656 | !vcpu->guest_xcr0_loaded) { |
| 657 | /* kvm_set_xcr() also depends on this */ |
| 658 | xsetbv(XCR_XFEATURE_ENABLED_MASK, vcpu->arch.xcr0); |
| 659 | vcpu->guest_xcr0_loaded = 1; |
| 660 | } |
| 661 | } |
| 662 | |
| 663 | static void kvm_put_guest_xcr0(struct kvm_vcpu *vcpu) |
| 664 | { |
| 665 | if (vcpu->guest_xcr0_loaded) { |
| 666 | if (vcpu->arch.xcr0 != host_xcr0) |
| 667 | xsetbv(XCR_XFEATURE_ENABLED_MASK, host_xcr0); |
| 668 | vcpu->guest_xcr0_loaded = 0; |
| 669 | } |
| 670 | } |
| 671 | |
Fengguang Wu | 69b0049 | 2015-01-19 22:33:39 +0800 | [diff] [blame] | 672 | 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] | 673 | { |
Liu, Jinsong | 56c103e | 2014-02-21 17:39:02 +0000 | [diff] [blame] | 674 | u64 xcr0 = xcr; |
| 675 | u64 old_xcr0 = vcpu->arch.xcr0; |
Paolo Bonzini | 46c34cb | 2013-10-17 16:50:46 +0200 | [diff] [blame] | 676 | u64 valid_bits; |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 677 | |
| 678 | /* Only support XCR_XFEATURE_ENABLED_MASK(xcr0) now */ |
| 679 | if (index != XCR_XFEATURE_ENABLED_MASK) |
| 680 | return 1; |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 681 | if (!(xcr0 & XFEATURE_MASK_FP)) |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 682 | return 1; |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 683 | if ((xcr0 & XFEATURE_MASK_YMM) && !(xcr0 & XFEATURE_MASK_SSE)) |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 684 | return 1; |
Paolo Bonzini | 46c34cb | 2013-10-17 16:50:46 +0200 | [diff] [blame] | 685 | |
| 686 | /* |
| 687 | * Do not allow the guest to set bits that we do not support |
| 688 | * saving. However, xcr0 bit 0 is always set, even if the |
| 689 | * emulated CPU does not support XSAVE (see fx_init). |
| 690 | */ |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 691 | valid_bits = vcpu->arch.guest_supported_xcr0 | XFEATURE_MASK_FP; |
Paolo Bonzini | 46c34cb | 2013-10-17 16:50:46 +0200 | [diff] [blame] | 692 | if (xcr0 & ~valid_bits) |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 693 | return 1; |
Paolo Bonzini | 46c34cb | 2013-10-17 16:50:46 +0200 | [diff] [blame] | 694 | |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 695 | if ((!(xcr0 & XFEATURE_MASK_BNDREGS)) != |
| 696 | (!(xcr0 & XFEATURE_MASK_BNDCSR))) |
Liu, Jinsong | 390bd52 | 2014-02-24 10:58:09 +0000 | [diff] [blame] | 697 | return 1; |
| 698 | |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 699 | if (xcr0 & XFEATURE_MASK_AVX512) { |
| 700 | if (!(xcr0 & XFEATURE_MASK_YMM)) |
Chao Peng | 612263b | 2014-10-22 17:35:24 +0800 | [diff] [blame] | 701 | return 1; |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 702 | if ((xcr0 & XFEATURE_MASK_AVX512) != XFEATURE_MASK_AVX512) |
Chao Peng | 612263b | 2014-10-22 17:35:24 +0800 | [diff] [blame] | 703 | return 1; |
| 704 | } |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 705 | vcpu->arch.xcr0 = xcr0; |
Liu, Jinsong | 56c103e | 2014-02-21 17:39:02 +0000 | [diff] [blame] | 706 | |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 707 | if ((xcr0 ^ old_xcr0) & XFEATURE_MASK_EXTEND) |
Liu, Jinsong | 56c103e | 2014-02-21 17:39:02 +0000 | [diff] [blame] | 708 | kvm_update_cpuid(vcpu); |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 709 | return 0; |
| 710 | } |
| 711 | |
| 712 | int kvm_set_xcr(struct kvm_vcpu *vcpu, u32 index, u64 xcr) |
| 713 | { |
Zhanghaoyu (A) | 764bcbc | 2013-06-14 07:36:13 +0000 | [diff] [blame] | 714 | if (kvm_x86_ops->get_cpl(vcpu) != 0 || |
| 715 | __kvm_set_xcr(vcpu, index, xcr)) { |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 716 | kvm_inject_gp(vcpu, 0); |
| 717 | return 1; |
| 718 | } |
| 719 | return 0; |
| 720 | } |
| 721 | EXPORT_SYMBOL_GPL(kvm_set_xcr); |
| 722 | |
Avi Kivity | a83b29c | 2010-06-10 17:02:15 +0300 | [diff] [blame] | 723 | int kvm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 724 | { |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 725 | unsigned long old_cr4 = kvm_read_cr4(vcpu); |
Xiao Guangrong | 0be0226 | 2015-05-11 22:55:21 +0800 | [diff] [blame] | 726 | unsigned long pdptr_bits = X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE | |
Huaitong Han | b9baba8 | 2016-03-22 16:51:21 +0800 | [diff] [blame] | 727 | X86_CR4_SMEP | X86_CR4_SMAP | X86_CR4_PKE; |
Xiao Guangrong | 0be0226 | 2015-05-11 22:55:21 +0800 | [diff] [blame] | 728 | |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 729 | if (cr4 & CR4_RESERVED_BITS) |
| 730 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 731 | |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 732 | if (!guest_cpuid_has_xsave(vcpu) && (cr4 & X86_CR4_OSXSAVE)) |
| 733 | return 1; |
| 734 | |
Yang, Wei Y | c68b734 | 2011-06-03 11:13:42 +0800 | [diff] [blame] | 735 | if (!guest_cpuid_has_smep(vcpu) && (cr4 & X86_CR4_SMEP)) |
| 736 | return 1; |
| 737 | |
Feng Wu | 97ec8c0 | 2014-04-01 17:46:34 +0800 | [diff] [blame] | 738 | if (!guest_cpuid_has_smap(vcpu) && (cr4 & X86_CR4_SMAP)) |
| 739 | return 1; |
| 740 | |
H. Peter Anvin | afcbf13 | 2013-04-27 16:37:47 -0700 | [diff] [blame] | 741 | if (!guest_cpuid_has_fsgsbase(vcpu) && (cr4 & X86_CR4_FSGSBASE)) |
Yang, Wei | 74dc2b4 | 2011-06-14 20:10:18 +0800 | [diff] [blame] | 742 | return 1; |
| 743 | |
Huaitong Han | b9baba8 | 2016-03-22 16:51:21 +0800 | [diff] [blame] | 744 | if (!guest_cpuid_has_pku(vcpu) && (cr4 & X86_CR4_PKE)) |
| 745 | return 1; |
| 746 | |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 747 | if (is_long_mode(vcpu)) { |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 748 | if (!(cr4 & X86_CR4_PAE)) |
| 749 | return 1; |
Avi Kivity | a2edf57 | 2009-05-24 22:19:00 +0300 | [diff] [blame] | 750 | } else if (is_paging(vcpu) && (cr4 & X86_CR4_PAE) |
| 751 | && ((cr4 ^ old_cr4) & pdptr_bits) |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 752 | && !load_pdptrs(vcpu, vcpu->arch.walk_mmu, |
| 753 | kvm_read_cr3(vcpu))) |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 754 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 755 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 756 | if ((cr4 & X86_CR4_PCIDE) && !(old_cr4 & X86_CR4_PCIDE)) { |
| 757 | if (!guest_cpuid_has_pcid(vcpu)) |
| 758 | return 1; |
| 759 | |
| 760 | /* PCID can not be enabled when cr3[11:0]!=000H or EFER.LMA=0 */ |
| 761 | if ((kvm_read_cr3(vcpu) & X86_CR3_PCID_MASK) || !is_long_mode(vcpu)) |
| 762 | return 1; |
| 763 | } |
| 764 | |
Nadav Har'El | 5e1746d | 2011-05-25 23:03:24 +0300 | [diff] [blame] | 765 | if (kvm_x86_ops->set_cr4(vcpu, cr4)) |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 766 | return 1; |
| 767 | |
Mao, Junjie | ad756a1 | 2012-07-02 01:18:48 +0000 | [diff] [blame] | 768 | if (((cr4 ^ old_cr4) & pdptr_bits) || |
| 769 | (!(cr4 & X86_CR4_PCIDE) && (old_cr4 & X86_CR4_PCIDE))) |
Sheng Yang | aad8270 | 2010-05-12 16:40:42 +0800 | [diff] [blame] | 770 | kvm_mmu_reset_context(vcpu); |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 771 | |
Huaitong Han | b9baba8 | 2016-03-22 16:51:21 +0800 | [diff] [blame] | 772 | if ((cr4 ^ old_cr4) & (X86_CR4_OSXSAVE | X86_CR4_PKE)) |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 773 | kvm_update_cpuid(vcpu); |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 774 | |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 775 | return 0; |
| 776 | } |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 777 | EXPORT_SYMBOL_GPL(kvm_set_cr4); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 778 | |
Avi Kivity | 2390218 | 2010-06-10 17:02:16 +0300 | [diff] [blame] | 779 | int kvm_set_cr3(struct kvm_vcpu *vcpu, unsigned long cr3) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 780 | { |
Paolo Bonzini | ac14623 | 2014-11-10 13:53:25 +0100 | [diff] [blame] | 781 | #ifdef CONFIG_X86_64 |
Nadav Amit | 9d88fca | 2014-11-02 11:54:52 +0200 | [diff] [blame] | 782 | cr3 &= ~CR3_PCID_INVD; |
Paolo Bonzini | ac14623 | 2014-11-10 13:53:25 +0100 | [diff] [blame] | 783 | #endif |
Nadav Amit | 9d88fca | 2014-11-02 11:54:52 +0200 | [diff] [blame] | 784 | |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 785 | if (cr3 == kvm_read_cr3(vcpu) && !pdptrs_changed(vcpu)) { |
Marcelo Tosatti | 0ba73cd | 2008-09-23 13:18:34 -0300 | [diff] [blame] | 786 | kvm_mmu_sync_roots(vcpu); |
Liang Chen | 77c3913 | 2014-09-18 12:38:37 -0400 | [diff] [blame] | 787 | kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu); |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 788 | return 0; |
Avi Kivity | d835dfe | 2007-11-21 02:57:59 +0200 | [diff] [blame] | 789 | } |
| 790 | |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 791 | if (is_long_mode(vcpu)) { |
Jan Kiszka | d9f89b8 | 2014-05-10 09:24:34 +0200 | [diff] [blame] | 792 | if (cr3 & CR3_L_MODE_RESERVED_BITS) |
| 793 | return 1; |
| 794 | } else if (is_pae(vcpu) && is_paging(vcpu) && |
| 795 | !load_pdptrs(vcpu, vcpu->arch.walk_mmu, cr3)) |
Nadav Amit | 346874c | 2014-04-18 03:35:09 +0300 | [diff] [blame] | 796 | return 1; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 797 | |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 798 | vcpu->arch.cr3 = cr3; |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 799 | __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail); |
Paolo Bonzini | d8d173d | 2013-10-02 16:56:11 +0200 | [diff] [blame] | 800 | kvm_mmu_new_cr3(vcpu); |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 801 | return 0; |
| 802 | } |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 803 | EXPORT_SYMBOL_GPL(kvm_set_cr3); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 804 | |
Andre Przywara | eea1cff | 2010-12-21 11:12:00 +0100 | [diff] [blame] | 805 | int kvm_set_cr8(struct kvm_vcpu *vcpu, unsigned long cr8) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 806 | { |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 807 | if (cr8 & CR8_RESERVED_BITS) |
| 808 | return 1; |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 809 | if (lapic_in_kernel(vcpu)) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 810 | kvm_lapic_set_tpr(vcpu, cr8); |
| 811 | else |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 812 | vcpu->arch.cr8 = cr8; |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 813 | return 0; |
| 814 | } |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 815 | EXPORT_SYMBOL_GPL(kvm_set_cr8); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 816 | |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 817 | unsigned long kvm_get_cr8(struct kvm_vcpu *vcpu) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 818 | { |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 819 | if (lapic_in_kernel(vcpu)) |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 820 | return kvm_lapic_get_cr8(vcpu); |
| 821 | else |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 822 | return vcpu->arch.cr8; |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 823 | } |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 824 | EXPORT_SYMBOL_GPL(kvm_get_cr8); |
Carsten Otte | a03490e | 2007-10-29 16:09:35 +0100 | [diff] [blame] | 825 | |
Nadav Amit | ae561ed | 2015-04-02 03:10:37 +0300 | [diff] [blame] | 826 | static void kvm_update_dr0123(struct kvm_vcpu *vcpu) |
| 827 | { |
| 828 | int i; |
| 829 | |
| 830 | if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) { |
| 831 | for (i = 0; i < KVM_NR_DB_REGS; i++) |
| 832 | vcpu->arch.eff_db[i] = vcpu->arch.db[i]; |
| 833 | vcpu->arch.switch_db_regs |= KVM_DEBUGREG_RELOAD; |
| 834 | } |
| 835 | } |
| 836 | |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 837 | static void kvm_update_dr6(struct kvm_vcpu *vcpu) |
| 838 | { |
| 839 | if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) |
| 840 | kvm_x86_ops->set_dr6(vcpu, vcpu->arch.dr6); |
| 841 | } |
| 842 | |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 843 | static void kvm_update_dr7(struct kvm_vcpu *vcpu) |
| 844 | { |
| 845 | unsigned long dr7; |
| 846 | |
| 847 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) |
| 848 | dr7 = vcpu->arch.guest_debug_dr7; |
| 849 | else |
| 850 | dr7 = vcpu->arch.dr7; |
| 851 | kvm_x86_ops->set_dr7(vcpu, dr7); |
Paolo Bonzini | 360b948 | 2014-02-21 09:55:56 +0100 | [diff] [blame] | 852 | vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_BP_ENABLED; |
| 853 | if (dr7 & DR7_BP_EN_MASK) |
| 854 | vcpu->arch.switch_db_regs |= KVM_DEBUGREG_BP_ENABLED; |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 855 | } |
| 856 | |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 857 | static u64 kvm_dr6_fixed(struct kvm_vcpu *vcpu) |
| 858 | { |
| 859 | u64 fixed = DR6_FIXED_1; |
| 860 | |
| 861 | if (!guest_cpuid_has_rtm(vcpu)) |
| 862 | fixed |= DR6_RTM; |
| 863 | return fixed; |
| 864 | } |
| 865 | |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 866 | 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] | 867 | { |
| 868 | switch (dr) { |
| 869 | case 0 ... 3: |
| 870 | vcpu->arch.db[dr] = val; |
| 871 | if (!(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP)) |
| 872 | vcpu->arch.eff_db[dr] = val; |
| 873 | break; |
| 874 | case 4: |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 875 | /* fall through */ |
| 876 | case 6: |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 877 | if (val & 0xffffffff00000000ULL) |
| 878 | return -1; /* #GP */ |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 879 | vcpu->arch.dr6 = (val & DR6_VOLATILE) | kvm_dr6_fixed(vcpu); |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 880 | kvm_update_dr6(vcpu); |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 881 | break; |
| 882 | case 5: |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 883 | /* fall through */ |
| 884 | default: /* 7 */ |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 885 | if (val & 0xffffffff00000000ULL) |
| 886 | return -1; /* #GP */ |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 887 | vcpu->arch.dr7 = (val & DR7_VOLATILE) | DR7_FIXED_1; |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 888 | kvm_update_dr7(vcpu); |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 889 | break; |
| 890 | } |
| 891 | |
| 892 | return 0; |
| 893 | } |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 894 | |
| 895 | int kvm_set_dr(struct kvm_vcpu *vcpu, int dr, unsigned long val) |
| 896 | { |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 897 | if (__kvm_set_dr(vcpu, dr, val)) { |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 898 | kvm_inject_gp(vcpu, 0); |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 899 | return 1; |
| 900 | } |
| 901 | return 0; |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 902 | } |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 903 | EXPORT_SYMBOL_GPL(kvm_set_dr); |
| 904 | |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 905 | 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] | 906 | { |
| 907 | switch (dr) { |
| 908 | case 0 ... 3: |
| 909 | *val = vcpu->arch.db[dr]; |
| 910 | break; |
| 911 | case 4: |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 912 | /* fall through */ |
| 913 | case 6: |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 914 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) |
| 915 | *val = vcpu->arch.dr6; |
| 916 | else |
| 917 | *val = kvm_x86_ops->get_dr6(vcpu); |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 918 | break; |
| 919 | case 5: |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 920 | /* fall through */ |
| 921 | default: /* 7 */ |
| 922 | *val = vcpu->arch.dr7; |
| 923 | break; |
| 924 | } |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 925 | return 0; |
| 926 | } |
Gleb Natapov | 020df07 | 2010-04-13 10:05:23 +0300 | [diff] [blame] | 927 | EXPORT_SYMBOL_GPL(kvm_get_dr); |
| 928 | |
Avi Kivity | 022cd0e | 2011-11-10 14:57:23 +0200 | [diff] [blame] | 929 | bool kvm_rdpmc(struct kvm_vcpu *vcpu) |
| 930 | { |
| 931 | u32 ecx = kvm_register_read(vcpu, VCPU_REGS_RCX); |
| 932 | u64 data; |
| 933 | int err; |
| 934 | |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 935 | err = kvm_pmu_rdpmc(vcpu, ecx, &data); |
Avi Kivity | 022cd0e | 2011-11-10 14:57:23 +0200 | [diff] [blame] | 936 | if (err) |
| 937 | return err; |
| 938 | kvm_register_write(vcpu, VCPU_REGS_RAX, (u32)data); |
| 939 | kvm_register_write(vcpu, VCPU_REGS_RDX, data >> 32); |
| 940 | return err; |
| 941 | } |
| 942 | EXPORT_SYMBOL_GPL(kvm_rdpmc); |
| 943 | |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 944 | /* |
| 945 | * List of msr numbers which we expose to userspace through KVM_GET_MSRS |
| 946 | * and KVM_SET_MSRS, and KVM_GET_MSR_INDEX_LIST. |
| 947 | * |
| 948 | * This list is modified at module load time to reflect the |
Glauber Costa | e3267cb | 2009-10-06 13:24:50 -0400 | [diff] [blame] | 949 | * capabilities of the host cpu. This capabilities test skips MSRs that are |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 950 | * kvm-specific. Those are put in emulated_msrs; filtering of emulated_msrs |
| 951 | * may depend on host virtualization features rather than host cpu features. |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 952 | */ |
Glauber Costa | e3267cb | 2009-10-06 13:24:50 -0400 | [diff] [blame] | 953 | |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 954 | static u32 msrs_to_save[] = { |
| 955 | MSR_IA32_SYSENTER_CS, MSR_IA32_SYSENTER_ESP, MSR_IA32_SYSENTER_EIP, |
Brian Gerst | 8c06585 | 2010-07-17 09:03:26 -0400 | [diff] [blame] | 956 | MSR_STAR, |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 957 | #ifdef CONFIG_X86_64 |
| 958 | MSR_CSTAR, MSR_KERNEL_GS_BASE, MSR_SYSCALL_MASK, MSR_LSTAR, |
| 959 | #endif |
Nadav Har'El | b3897a4 | 2013-07-08 19:12:35 +0800 | [diff] [blame] | 960 | MSR_IA32_TSC, MSR_IA32_CR_PAT, MSR_VM_HSAVE_PA, |
Paolo Bonzini | 9dbe6cf | 2015-11-12 14:49:17 +0100 | [diff] [blame] | 961 | MSR_IA32_FEATURE_CONTROL, MSR_IA32_BNDCFGS, MSR_TSC_AUX, |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 962 | }; |
| 963 | |
| 964 | static unsigned num_msrs_to_save; |
| 965 | |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 966 | static u32 emulated_msrs[] = { |
| 967 | MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK, |
| 968 | MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW, |
| 969 | HV_X64_MSR_GUEST_OS_ID, HV_X64_MSR_HYPERCALL, |
| 970 | HV_X64_MSR_TIME_REF_COUNT, HV_X64_MSR_REFERENCE_TSC, |
Andrey Smetanin | e7d9513 | 2015-07-03 15:01:37 +0300 | [diff] [blame] | 971 | HV_X64_MSR_CRASH_P0, HV_X64_MSR_CRASH_P1, HV_X64_MSR_CRASH_P2, |
| 972 | HV_X64_MSR_CRASH_P3, HV_X64_MSR_CRASH_P4, HV_X64_MSR_CRASH_CTL, |
Andrey Smetanin | e516ceb | 2015-09-16 12:29:48 +0300 | [diff] [blame] | 973 | HV_X64_MSR_RESET, |
Andrey Smetanin | 11c4b1c | 2015-09-16 12:29:49 +0300 | [diff] [blame] | 974 | HV_X64_MSR_VP_INDEX, |
Andrey Smetanin | 9eec50b | 2015-09-16 12:29:50 +0300 | [diff] [blame] | 975 | HV_X64_MSR_VP_RUNTIME, |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 976 | HV_X64_MSR_SCONTROL, |
Andrey Smetanin | 1f4b34f | 2015-11-30 19:22:21 +0300 | [diff] [blame] | 977 | HV_X64_MSR_STIMER0_CONFIG, |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 978 | HV_X64_MSR_APIC_ASSIST_PAGE, MSR_KVM_ASYNC_PF_EN, MSR_KVM_STEAL_TIME, |
| 979 | MSR_KVM_PV_EOI_EN, |
| 980 | |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 981 | MSR_IA32_TSC_ADJUST, |
Liu, Jinsong | a3e06bb | 2011-09-22 16:55:52 +0800 | [diff] [blame] | 982 | MSR_IA32_TSCDEADLINE, |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 983 | MSR_IA32_MISC_ENABLE, |
Avi Kivity | 908e75f | 2010-07-07 14:09:38 +0300 | [diff] [blame] | 984 | MSR_IA32_MCG_STATUS, |
| 985 | MSR_IA32_MCG_CTL, |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 986 | MSR_IA32_SMBASE, |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 987 | }; |
| 988 | |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 989 | static unsigned num_emulated_msrs; |
| 990 | |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 991 | bool kvm_valid_efer(struct kvm_vcpu *vcpu, u64 efer) |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 992 | { |
Roedel, Joerg | b69e8ca | 2010-05-06 11:38:43 +0200 | [diff] [blame] | 993 | if (efer & efer_reserved_bits) |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 994 | return false; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 995 | |
Alexander Graf | 1b2fd70 | 2009-02-02 16:23:51 +0100 | [diff] [blame] | 996 | if (efer & EFER_FFXSR) { |
| 997 | struct kvm_cpuid_entry2 *feat; |
| 998 | |
| 999 | feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0); |
Roedel, Joerg | b69e8ca | 2010-05-06 11:38:43 +0200 | [diff] [blame] | 1000 | if (!feat || !(feat->edx & bit(X86_FEATURE_FXSR_OPT))) |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 1001 | return false; |
Alexander Graf | 1b2fd70 | 2009-02-02 16:23:51 +0100 | [diff] [blame] | 1002 | } |
| 1003 | |
Alexander Graf | d801747 | 2008-11-25 20:17:11 +0100 | [diff] [blame] | 1004 | if (efer & EFER_SVME) { |
| 1005 | struct kvm_cpuid_entry2 *feat; |
| 1006 | |
| 1007 | feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0); |
Roedel, Joerg | b69e8ca | 2010-05-06 11:38:43 +0200 | [diff] [blame] | 1008 | if (!feat || !(feat->ecx & bit(X86_FEATURE_SVM))) |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 1009 | return false; |
Alexander Graf | d801747 | 2008-11-25 20:17:11 +0100 | [diff] [blame] | 1010 | } |
| 1011 | |
Jan Kiszka | 384bb78 | 2013-04-20 10:52:36 +0200 | [diff] [blame] | 1012 | return true; |
| 1013 | } |
| 1014 | EXPORT_SYMBOL_GPL(kvm_valid_efer); |
| 1015 | |
| 1016 | static int set_efer(struct kvm_vcpu *vcpu, u64 efer) |
| 1017 | { |
| 1018 | u64 old_efer = vcpu->arch.efer; |
| 1019 | |
| 1020 | if (!kvm_valid_efer(vcpu, efer)) |
| 1021 | return 1; |
| 1022 | |
| 1023 | if (is_paging(vcpu) |
| 1024 | && (vcpu->arch.efer & EFER_LME) != (efer & EFER_LME)) |
| 1025 | return 1; |
| 1026 | |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1027 | efer &= ~EFER_LMA; |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 1028 | efer |= vcpu->arch.efer & EFER_LMA; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1029 | |
Sheng Yang | a3d204e | 2010-05-12 16:40:40 +0800 | [diff] [blame] | 1030 | kvm_x86_ops->set_efer(vcpu, efer); |
| 1031 | |
Sheng Yang | aad8270 | 2010-05-12 16:40:42 +0800 | [diff] [blame] | 1032 | /* Update reserved bits */ |
| 1033 | if ((efer ^ old_efer) & EFER_NX) |
| 1034 | kvm_mmu_reset_context(vcpu); |
| 1035 | |
Roedel, Joerg | b69e8ca | 2010-05-06 11:38:43 +0200 | [diff] [blame] | 1036 | return 0; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1037 | } |
| 1038 | |
Joerg Roedel | f2b4b7d | 2008-01-31 14:57:37 +0100 | [diff] [blame] | 1039 | void kvm_enable_efer_bits(u64 mask) |
| 1040 | { |
| 1041 | efer_reserved_bits &= ~mask; |
| 1042 | } |
| 1043 | EXPORT_SYMBOL_GPL(kvm_enable_efer_bits); |
| 1044 | |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1045 | /* |
| 1046 | * Writes msr value into into the appropriate "register". |
| 1047 | * Returns 0 on success, non-0 otherwise. |
| 1048 | * Assumes vcpu_load() was already called. |
| 1049 | */ |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 1050 | int kvm_set_msr(struct kvm_vcpu *vcpu, struct msr_data *msr) |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1051 | { |
Nadav Amit | 854e8bb | 2014-09-16 03:24:05 +0300 | [diff] [blame] | 1052 | switch (msr->index) { |
| 1053 | case MSR_FS_BASE: |
| 1054 | case MSR_GS_BASE: |
| 1055 | case MSR_KERNEL_GS_BASE: |
| 1056 | case MSR_CSTAR: |
| 1057 | case MSR_LSTAR: |
| 1058 | if (is_noncanonical_address(msr->data)) |
| 1059 | return 1; |
| 1060 | break; |
| 1061 | case MSR_IA32_SYSENTER_EIP: |
| 1062 | case MSR_IA32_SYSENTER_ESP: |
| 1063 | /* |
| 1064 | * IA32_SYSENTER_ESP and IA32_SYSENTER_EIP cause #GP if |
| 1065 | * non-canonical address is written on Intel but not on |
| 1066 | * AMD (which ignores the top 32-bits, because it does |
| 1067 | * not implement 64-bit SYSENTER). |
| 1068 | * |
| 1069 | * 64-bit code should hence be able to write a non-canonical |
| 1070 | * value on AMD. Making the address canonical ensures that |
| 1071 | * vmentry does not fail on Intel after writing a non-canonical |
| 1072 | * value, and that something deterministic happens if the guest |
| 1073 | * invokes 64-bit SYSENTER. |
| 1074 | */ |
| 1075 | msr->data = get_canonical(msr->data); |
| 1076 | } |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 1077 | return kvm_x86_ops->set_msr(vcpu, msr); |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1078 | } |
Nadav Amit | 854e8bb | 2014-09-16 03:24:05 +0300 | [diff] [blame] | 1079 | EXPORT_SYMBOL_GPL(kvm_set_msr); |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 1080 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 1081 | /* |
| 1082 | * Adapt set_msr() to msr_io()'s calling convention |
| 1083 | */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 1084 | static int do_get_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data) |
| 1085 | { |
| 1086 | struct msr_data msr; |
| 1087 | int r; |
| 1088 | |
| 1089 | msr.index = index; |
| 1090 | msr.host_initiated = true; |
| 1091 | r = kvm_get_msr(vcpu, &msr); |
| 1092 | if (r) |
| 1093 | return r; |
| 1094 | |
| 1095 | *data = msr.data; |
| 1096 | return 0; |
| 1097 | } |
| 1098 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 1099 | static int do_set_msr(struct kvm_vcpu *vcpu, unsigned index, u64 *data) |
| 1100 | { |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 1101 | struct msr_data msr; |
| 1102 | |
| 1103 | msr.data = *data; |
| 1104 | msr.index = index; |
| 1105 | msr.host_initiated = true; |
| 1106 | return kvm_set_msr(vcpu, &msr); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 1107 | } |
| 1108 | |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1109 | #ifdef CONFIG_X86_64 |
| 1110 | struct pvclock_gtod_data { |
| 1111 | seqcount_t seq; |
| 1112 | |
| 1113 | struct { /* extract of a clocksource struct */ |
| 1114 | int vclock_mode; |
| 1115 | cycle_t cycle_last; |
| 1116 | cycle_t mask; |
| 1117 | u32 mult; |
| 1118 | u32 shift; |
| 1119 | } clock; |
| 1120 | |
Thomas Gleixner | cbcf2dd | 2014-07-16 21:04:54 +0000 | [diff] [blame] | 1121 | u64 boot_ns; |
| 1122 | u64 nsec_base; |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1123 | }; |
| 1124 | |
| 1125 | static struct pvclock_gtod_data pvclock_gtod_data; |
| 1126 | |
| 1127 | static void update_pvclock_gtod(struct timekeeper *tk) |
| 1128 | { |
| 1129 | struct pvclock_gtod_data *vdata = &pvclock_gtod_data; |
Thomas Gleixner | cbcf2dd | 2014-07-16 21:04:54 +0000 | [diff] [blame] | 1130 | u64 boot_ns; |
| 1131 | |
Peter Zijlstra | 876e788 | 2015-03-19 10:09:06 +0100 | [diff] [blame] | 1132 | 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] | 1133 | |
| 1134 | write_seqcount_begin(&vdata->seq); |
| 1135 | |
| 1136 | /* copy pvclock gtod data */ |
Peter Zijlstra | 876e788 | 2015-03-19 10:09:06 +0100 | [diff] [blame] | 1137 | vdata->clock.vclock_mode = tk->tkr_mono.clock->archdata.vclock_mode; |
| 1138 | vdata->clock.cycle_last = tk->tkr_mono.cycle_last; |
| 1139 | vdata->clock.mask = tk->tkr_mono.mask; |
| 1140 | vdata->clock.mult = tk->tkr_mono.mult; |
| 1141 | vdata->clock.shift = tk->tkr_mono.shift; |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1142 | |
Thomas Gleixner | cbcf2dd | 2014-07-16 21:04:54 +0000 | [diff] [blame] | 1143 | vdata->boot_ns = boot_ns; |
Peter Zijlstra | 876e788 | 2015-03-19 10:09:06 +0100 | [diff] [blame] | 1144 | vdata->nsec_base = tk->tkr_mono.xtime_nsec; |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1145 | |
| 1146 | write_seqcount_end(&vdata->seq); |
| 1147 | } |
| 1148 | #endif |
| 1149 | |
Nicholas Krause | bab5bb3 | 2015-01-01 22:05:18 -0500 | [diff] [blame] | 1150 | void kvm_set_pending_timer(struct kvm_vcpu *vcpu) |
| 1151 | { |
| 1152 | /* |
| 1153 | * Note: KVM_REQ_PENDING_TIMER is implicitly checked in |
| 1154 | * vcpu_enter_guest. This function is only called from |
| 1155 | * the physical CPU that is running vcpu. |
| 1156 | */ |
| 1157 | kvm_make_request(KVM_REQ_PENDING_TIMER, vcpu); |
| 1158 | } |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1159 | |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1160 | static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock) |
| 1161 | { |
Avi Kivity | 9ed3c44 | 2010-05-04 15:00:37 +0300 | [diff] [blame] | 1162 | int version; |
| 1163 | int r; |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1164 | struct pvclock_wall_clock wc; |
Jason Wang | 923de3c | 2010-01-27 19:13:49 +0800 | [diff] [blame] | 1165 | struct timespec boot; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1166 | |
| 1167 | if (!wall_clock) |
| 1168 | return; |
| 1169 | |
Avi Kivity | 9ed3c44 | 2010-05-04 15:00:37 +0300 | [diff] [blame] | 1170 | r = kvm_read_guest(kvm, wall_clock, &version, sizeof(version)); |
| 1171 | if (r) |
| 1172 | return; |
| 1173 | |
| 1174 | if (version & 1) |
| 1175 | ++version; /* first time write, random junk */ |
| 1176 | |
| 1177 | ++version; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1178 | |
Nicholas Krause | 1dab134 | 2015-12-30 13:08:46 -0500 | [diff] [blame] | 1179 | if (kvm_write_guest(kvm, wall_clock, &version, sizeof(version))) |
| 1180 | return; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1181 | |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1182 | /* |
| 1183 | * The guest calculates current wall clock time by adding |
Zachary Amsden | 34c238a | 2010-09-18 14:38:14 -1000 | [diff] [blame] | 1184 | * system time (updated by kvm_guest_time_update below) to the |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1185 | * wall clock specified here. guest system time equals host |
| 1186 | * system time for us, thus we must fill in host boot time here. |
| 1187 | */ |
Jason Wang | 923de3c | 2010-01-27 19:13:49 +0800 | [diff] [blame] | 1188 | getboottime(&boot); |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1189 | |
Bruce Rogers | 4b64866 | 2012-07-20 10:44:24 -0600 | [diff] [blame] | 1190 | if (kvm->arch.kvmclock_offset) { |
| 1191 | struct timespec ts = ns_to_timespec(kvm->arch.kvmclock_offset); |
| 1192 | boot = timespec_sub(boot, ts); |
| 1193 | } |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1194 | wc.sec = boot.tv_sec; |
| 1195 | wc.nsec = boot.tv_nsec; |
| 1196 | wc.version = version; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1197 | |
| 1198 | kvm_write_guest(kvm, wall_clock, &wc, sizeof(wc)); |
| 1199 | |
| 1200 | version++; |
| 1201 | kvm_write_guest(kvm, wall_clock, &version, sizeof(version)); |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1202 | } |
| 1203 | |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1204 | static uint32_t div_frac(uint32_t dividend, uint32_t divisor) |
| 1205 | { |
Paolo Bonzini | b51012d | 2016-01-22 11:39:22 +0100 | [diff] [blame] | 1206 | do_shl32_div32(dividend, divisor); |
| 1207 | return dividend; |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1208 | } |
| 1209 | |
Paolo Bonzini | 3ae13fa | 2016-02-08 15:11:15 +0100 | [diff] [blame] | 1210 | static void kvm_get_time_scale(uint64_t scaled_hz, uint64_t base_hz, |
Zachary Amsden | 5f4e3f8 | 2010-09-18 14:38:13 -1000 | [diff] [blame] | 1211 | s8 *pshift, u32 *pmultiplier) |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1212 | { |
Zachary Amsden | 5f4e3f8 | 2010-09-18 14:38:13 -1000 | [diff] [blame] | 1213 | uint64_t scaled64; |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1214 | int32_t shift = 0; |
| 1215 | uint64_t tps64; |
| 1216 | uint32_t tps32; |
| 1217 | |
Paolo Bonzini | 3ae13fa | 2016-02-08 15:11:15 +0100 | [diff] [blame] | 1218 | tps64 = base_hz; |
| 1219 | scaled64 = scaled_hz; |
Jan Kiszka | 5093362 | 2010-09-26 13:00:53 +0200 | [diff] [blame] | 1220 | while (tps64 > scaled64*2 || tps64 & 0xffffffff00000000ULL) { |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1221 | tps64 >>= 1; |
| 1222 | shift--; |
| 1223 | } |
| 1224 | |
| 1225 | tps32 = (uint32_t)tps64; |
Jan Kiszka | 5093362 | 2010-09-26 13:00:53 +0200 | [diff] [blame] | 1226 | while (tps32 <= scaled64 || scaled64 & 0xffffffff00000000ULL) { |
| 1227 | if (scaled64 & 0xffffffff00000000ULL || tps32 & 0x80000000) |
Zachary Amsden | 5f4e3f8 | 2010-09-18 14:38:13 -1000 | [diff] [blame] | 1228 | scaled64 >>= 1; |
| 1229 | else |
| 1230 | tps32 <<= 1; |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1231 | shift++; |
| 1232 | } |
| 1233 | |
Zachary Amsden | 5f4e3f8 | 2010-09-18 14:38:13 -1000 | [diff] [blame] | 1234 | *pshift = shift; |
| 1235 | *pmultiplier = div_frac(scaled64, tps32); |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1236 | |
Paolo Bonzini | 3ae13fa | 2016-02-08 15:11:15 +0100 | [diff] [blame] | 1237 | pr_debug("%s: base_hz %llu => %llu, shift %d, mul %u\n", |
| 1238 | __func__, base_hz, scaled_hz, shift, *pmultiplier); |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1239 | } |
| 1240 | |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1241 | #ifdef CONFIG_X86_64 |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1242 | static atomic_t kvm_guest_has_master_clock = ATOMIC_INIT(0); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1243 | #endif |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 1244 | |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 1245 | static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz); |
Fengguang Wu | 69b0049 | 2015-01-19 22:33:39 +0800 | [diff] [blame] | 1246 | static unsigned long max_tsc_khz; |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 1247 | |
Joerg Roedel | 857e409 | 2011-03-25 09:44:50 +0100 | [diff] [blame] | 1248 | static inline u64 nsec_to_cycles(struct kvm_vcpu *vcpu, u64 nsec) |
Zachary Amsden | 759379d | 2010-08-19 22:07:25 -1000 | [diff] [blame] | 1249 | { |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1250 | return pvclock_scale_delta(nsec, vcpu->arch.virtual_tsc_mult, |
| 1251 | vcpu->arch.virtual_tsc_shift); |
Zachary Amsden | 759379d | 2010-08-19 22:07:25 -1000 | [diff] [blame] | 1252 | } |
| 1253 | |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1254 | static u32 adjust_tsc_khz(u32 khz, s32 ppm) |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 1255 | { |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1256 | u64 v = (u64)khz * (1000000 + ppm); |
| 1257 | do_div(v, 1000000); |
| 1258 | return v; |
| 1259 | } |
| 1260 | |
Haozhong Zhang | 381d585 | 2015-10-20 15:39:04 +0800 | [diff] [blame] | 1261 | static int set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz, bool scale) |
| 1262 | { |
| 1263 | u64 ratio; |
| 1264 | |
| 1265 | /* Guest TSC same frequency as host TSC? */ |
| 1266 | if (!scale) { |
| 1267 | vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio; |
| 1268 | return 0; |
| 1269 | } |
| 1270 | |
| 1271 | /* TSC scaling supported? */ |
| 1272 | if (!kvm_has_tsc_control) { |
| 1273 | if (user_tsc_khz > tsc_khz) { |
| 1274 | vcpu->arch.tsc_catchup = 1; |
| 1275 | vcpu->arch.tsc_always_catchup = 1; |
| 1276 | return 0; |
| 1277 | } else { |
| 1278 | WARN(1, "user requested TSC rate below hardware speed\n"); |
| 1279 | return -1; |
| 1280 | } |
| 1281 | } |
| 1282 | |
| 1283 | /* TSC scaling required - calculate ratio */ |
| 1284 | ratio = mul_u64_u32_div(1ULL << kvm_tsc_scaling_ratio_frac_bits, |
| 1285 | user_tsc_khz, tsc_khz); |
| 1286 | |
| 1287 | if (ratio == 0 || ratio >= kvm_max_tsc_scaling_ratio) { |
| 1288 | WARN_ONCE(1, "Invalid TSC scaling ratio - virtual-tsc-khz=%u\n", |
| 1289 | user_tsc_khz); |
| 1290 | return -1; |
| 1291 | } |
| 1292 | |
| 1293 | vcpu->arch.tsc_scaling_ratio = ratio; |
| 1294 | return 0; |
| 1295 | } |
| 1296 | |
Paolo Bonzini | 4941b8c | 2016-02-08 14:51:12 +0100 | [diff] [blame] | 1297 | static int kvm_set_tsc_khz(struct kvm_vcpu *vcpu, u32 user_tsc_khz) |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1298 | { |
| 1299 | u32 thresh_lo, thresh_hi; |
| 1300 | int use_scaling = 0; |
| 1301 | |
Marcelo Tosatti | 03ba32c | 2013-03-11 23:10:24 -0300 | [diff] [blame] | 1302 | /* tsc_khz can be zero if TSC calibration fails */ |
Paolo Bonzini | 4941b8c | 2016-02-08 14:51:12 +0100 | [diff] [blame] | 1303 | if (user_tsc_khz == 0) { |
Haozhong Zhang | ad72188 | 2015-10-20 15:39:02 +0800 | [diff] [blame] | 1304 | /* set tsc_scaling_ratio to a safe value */ |
| 1305 | vcpu->arch.tsc_scaling_ratio = kvm_default_tsc_scaling_ratio; |
Haozhong Zhang | 381d585 | 2015-10-20 15:39:04 +0800 | [diff] [blame] | 1306 | return -1; |
Haozhong Zhang | ad72188 | 2015-10-20 15:39:02 +0800 | [diff] [blame] | 1307 | } |
Marcelo Tosatti | 03ba32c | 2013-03-11 23:10:24 -0300 | [diff] [blame] | 1308 | |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 1309 | /* Compute a scale to convert nanoseconds in TSC cycles */ |
Paolo Bonzini | 3ae13fa | 2016-02-08 15:11:15 +0100 | [diff] [blame] | 1310 | kvm_get_time_scale(user_tsc_khz * 1000LL, NSEC_PER_SEC, |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1311 | &vcpu->arch.virtual_tsc_shift, |
| 1312 | &vcpu->arch.virtual_tsc_mult); |
Paolo Bonzini | 4941b8c | 2016-02-08 14:51:12 +0100 | [diff] [blame] | 1313 | vcpu->arch.virtual_tsc_khz = user_tsc_khz; |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1314 | |
| 1315 | /* |
| 1316 | * Compute the variation in TSC rate which is acceptable |
| 1317 | * within the range of tolerance and decide if the |
| 1318 | * rate being applied is within that bounds of the hardware |
| 1319 | * rate. If so, no scaling or compensation need be done. |
| 1320 | */ |
| 1321 | thresh_lo = adjust_tsc_khz(tsc_khz, -tsc_tolerance_ppm); |
| 1322 | thresh_hi = adjust_tsc_khz(tsc_khz, tsc_tolerance_ppm); |
Paolo Bonzini | 4941b8c | 2016-02-08 14:51:12 +0100 | [diff] [blame] | 1323 | if (user_tsc_khz < thresh_lo || user_tsc_khz > thresh_hi) { |
| 1324 | pr_debug("kvm: requested TSC rate %u falls outside tolerance [%u,%u]\n", user_tsc_khz, thresh_lo, thresh_hi); |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1325 | use_scaling = 1; |
| 1326 | } |
Paolo Bonzini | 4941b8c | 2016-02-08 14:51:12 +0100 | [diff] [blame] | 1327 | return set_tsc_khz(vcpu, user_tsc_khz, use_scaling); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 1328 | } |
| 1329 | |
| 1330 | static u64 compute_guest_tsc(struct kvm_vcpu *vcpu, s64 kernel_ns) |
| 1331 | { |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1332 | u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec, |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 1333 | vcpu->arch.virtual_tsc_mult, |
| 1334 | vcpu->arch.virtual_tsc_shift); |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1335 | tsc += vcpu->arch.this_tsc_write; |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 1336 | return tsc; |
| 1337 | } |
| 1338 | |
Fengguang Wu | 69b0049 | 2015-01-19 22:33:39 +0800 | [diff] [blame] | 1339 | static void kvm_track_tsc_matching(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1340 | { |
| 1341 | #ifdef CONFIG_X86_64 |
| 1342 | bool vcpus_matched; |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1343 | struct kvm_arch *ka = &vcpu->kvm->arch; |
| 1344 | struct pvclock_gtod_data *gtod = &pvclock_gtod_data; |
| 1345 | |
| 1346 | vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 == |
| 1347 | atomic_read(&vcpu->kvm->online_vcpus)); |
| 1348 | |
Marcelo Tosatti | 7f18792 | 2014-11-04 21:30:44 -0200 | [diff] [blame] | 1349 | /* |
| 1350 | * Once the masterclock is enabled, always perform request in |
| 1351 | * order to update it. |
| 1352 | * |
| 1353 | * In order to enable masterclock, the host clocksource must be TSC |
| 1354 | * and the vcpus need to have matched TSCs. When that happens, |
| 1355 | * perform request to enable masterclock. |
| 1356 | */ |
| 1357 | if (ka->use_master_clock || |
| 1358 | (gtod->clock.vclock_mode == VCLOCK_TSC && vcpus_matched)) |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1359 | kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu); |
| 1360 | |
| 1361 | trace_kvm_track_tsc(vcpu->vcpu_id, ka->nr_vcpus_matched_tsc, |
| 1362 | atomic_read(&vcpu->kvm->online_vcpus), |
| 1363 | ka->use_master_clock, gtod->clock.vclock_mode); |
| 1364 | #endif |
| 1365 | } |
| 1366 | |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 1367 | static void update_ia32_tsc_adjust_msr(struct kvm_vcpu *vcpu, s64 offset) |
| 1368 | { |
| 1369 | u64 curr_offset = kvm_x86_ops->read_tsc_offset(vcpu); |
| 1370 | vcpu->arch.ia32_tsc_adjust_msr += offset - curr_offset; |
| 1371 | } |
| 1372 | |
Haozhong Zhang | 35181e8 | 2015-10-20 15:39:03 +0800 | [diff] [blame] | 1373 | /* |
| 1374 | * Multiply tsc by a fixed point number represented by ratio. |
| 1375 | * |
| 1376 | * The most significant 64-N bits (mult) of ratio represent the |
| 1377 | * integral part of the fixed point number; the remaining N bits |
| 1378 | * (frac) represent the fractional part, ie. ratio represents a fixed |
| 1379 | * point number (mult + frac * 2^(-N)). |
| 1380 | * |
| 1381 | * N equals to kvm_tsc_scaling_ratio_frac_bits. |
| 1382 | */ |
| 1383 | static inline u64 __scale_tsc(u64 ratio, u64 tsc) |
| 1384 | { |
| 1385 | return mul_u64_u64_shr(tsc, ratio, kvm_tsc_scaling_ratio_frac_bits); |
| 1386 | } |
| 1387 | |
| 1388 | u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc) |
| 1389 | { |
| 1390 | u64 _tsc = tsc; |
| 1391 | u64 ratio = vcpu->arch.tsc_scaling_ratio; |
| 1392 | |
| 1393 | if (ratio != kvm_default_tsc_scaling_ratio) |
| 1394 | _tsc = __scale_tsc(ratio, tsc); |
| 1395 | |
| 1396 | return _tsc; |
| 1397 | } |
| 1398 | EXPORT_SYMBOL_GPL(kvm_scale_tsc); |
| 1399 | |
Haozhong Zhang | 07c1419 | 2015-10-20 15:39:05 +0800 | [diff] [blame] | 1400 | static u64 kvm_compute_tsc_offset(struct kvm_vcpu *vcpu, u64 target_tsc) |
| 1401 | { |
| 1402 | u64 tsc; |
| 1403 | |
| 1404 | tsc = kvm_scale_tsc(vcpu, rdtsc()); |
| 1405 | |
| 1406 | return target_tsc - tsc; |
| 1407 | } |
| 1408 | |
Haozhong Zhang | 4ba7653 | 2015-10-20 15:39:07 +0800 | [diff] [blame] | 1409 | u64 kvm_read_l1_tsc(struct kvm_vcpu *vcpu, u64 host_tsc) |
| 1410 | { |
| 1411 | return kvm_x86_ops->read_l1_tsc(vcpu, kvm_scale_tsc(vcpu, host_tsc)); |
| 1412 | } |
| 1413 | EXPORT_SYMBOL_GPL(kvm_read_l1_tsc); |
| 1414 | |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 1415 | void kvm_write_tsc(struct kvm_vcpu *vcpu, struct msr_data *msr) |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 1416 | { |
| 1417 | struct kvm *kvm = vcpu->kvm; |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 1418 | u64 offset, ns, elapsed; |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 1419 | unsigned long flags; |
Marcelo Tosatti | 02626b6 | 2012-03-08 18:46:57 -0300 | [diff] [blame] | 1420 | s64 usdiff; |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1421 | bool matched; |
Tomasz Grabiec | 0d3da0d | 2014-06-24 09:42:43 +0200 | [diff] [blame] | 1422 | bool already_matched; |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 1423 | u64 data = msr->data; |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 1424 | |
Jan Kiszka | 038f8c1 | 2011-02-04 10:49:11 +0100 | [diff] [blame] | 1425 | raw_spin_lock_irqsave(&kvm->arch.tsc_write_lock, flags); |
Haozhong Zhang | 07c1419 | 2015-10-20 15:39:05 +0800 | [diff] [blame] | 1426 | offset = kvm_compute_tsc_offset(vcpu, data); |
Zachary Amsden | 759379d | 2010-08-19 22:07:25 -1000 | [diff] [blame] | 1427 | ns = get_kernel_ns(); |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 1428 | elapsed = ns - kvm->arch.last_tsc_nsec; |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 1429 | |
Marcelo Tosatti | 03ba32c | 2013-03-11 23:10:24 -0300 | [diff] [blame] | 1430 | if (vcpu->arch.virtual_tsc_khz) { |
Marcelo Tosatti | 8915aa27 | 2013-06-11 23:31:12 -0300 | [diff] [blame] | 1431 | int faulted = 0; |
| 1432 | |
Marcelo Tosatti | 03ba32c | 2013-03-11 23:10:24 -0300 | [diff] [blame] | 1433 | /* n.b - signed multiplication and division required */ |
| 1434 | usdiff = data - kvm->arch.last_tsc_write; |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 1435 | #ifdef CONFIG_X86_64 |
Marcelo Tosatti | 03ba32c | 2013-03-11 23:10:24 -0300 | [diff] [blame] | 1436 | usdiff = (usdiff * 1000) / vcpu->arch.virtual_tsc_khz; |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 1437 | #else |
Marcelo Tosatti | 03ba32c | 2013-03-11 23:10:24 -0300 | [diff] [blame] | 1438 | /* do_div() only does unsigned */ |
Marcelo Tosatti | 8915aa27 | 2013-06-11 23:31:12 -0300 | [diff] [blame] | 1439 | asm("1: idivl %[divisor]\n" |
| 1440 | "2: xor %%edx, %%edx\n" |
| 1441 | " movl $0, %[faulted]\n" |
| 1442 | "3:\n" |
| 1443 | ".section .fixup,\"ax\"\n" |
| 1444 | "4: movl $1, %[faulted]\n" |
| 1445 | " jmp 3b\n" |
| 1446 | ".previous\n" |
| 1447 | |
| 1448 | _ASM_EXTABLE(1b, 4b) |
| 1449 | |
| 1450 | : "=A"(usdiff), [faulted] "=r" (faulted) |
| 1451 | : "A"(usdiff * 1000), [divisor] "rm"(vcpu->arch.virtual_tsc_khz)); |
| 1452 | |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 1453 | #endif |
Marcelo Tosatti | 03ba32c | 2013-03-11 23:10:24 -0300 | [diff] [blame] | 1454 | do_div(elapsed, 1000); |
| 1455 | usdiff -= elapsed; |
| 1456 | if (usdiff < 0) |
| 1457 | usdiff = -usdiff; |
Marcelo Tosatti | 8915aa27 | 2013-06-11 23:31:12 -0300 | [diff] [blame] | 1458 | |
| 1459 | /* idivl overflow => difference is larger than USEC_PER_SEC */ |
| 1460 | if (faulted) |
| 1461 | usdiff = USEC_PER_SEC; |
Marcelo Tosatti | 03ba32c | 2013-03-11 23:10:24 -0300 | [diff] [blame] | 1462 | } else |
| 1463 | usdiff = USEC_PER_SEC; /* disable TSC match window below */ |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 1464 | |
| 1465 | /* |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 1466 | * Special case: TSC write with a small delta (1 second) of virtual |
| 1467 | * cycle time against real time is interpreted as an attempt to |
| 1468 | * synchronize the CPU. |
| 1469 | * |
| 1470 | * For a reliable TSC, we can match TSC offsets, and for an unstable |
| 1471 | * TSC, we add elapsed time in this computation. We could let the |
| 1472 | * compensation code attempt to catch up if we fall behind, but |
| 1473 | * it's better to try to match offsets from the beginning. |
| 1474 | */ |
Marcelo Tosatti | 02626b6 | 2012-03-08 18:46:57 -0300 | [diff] [blame] | 1475 | if (usdiff < USEC_PER_SEC && |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 1476 | vcpu->arch.virtual_tsc_khz == kvm->arch.last_tsc_khz) { |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 1477 | if (!check_tsc_unstable()) { |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1478 | offset = kvm->arch.cur_tsc_offset; |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 1479 | pr_debug("kvm: matched tsc offset for %llu\n", data); |
| 1480 | } else { |
Joerg Roedel | 857e409 | 2011-03-25 09:44:50 +0100 | [diff] [blame] | 1481 | u64 delta = nsec_to_cycles(vcpu, elapsed); |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 1482 | data += delta; |
Haozhong Zhang | 07c1419 | 2015-10-20 15:39:05 +0800 | [diff] [blame] | 1483 | offset = kvm_compute_tsc_offset(vcpu, data); |
Zachary Amsden | 759379d | 2010-08-19 22:07:25 -1000 | [diff] [blame] | 1484 | pr_debug("kvm: adjusted tsc offset by %llu\n", delta); |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 1485 | } |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1486 | matched = true; |
Tomasz Grabiec | 0d3da0d | 2014-06-24 09:42:43 +0200 | [diff] [blame] | 1487 | already_matched = (vcpu->arch.this_tsc_generation == kvm->arch.cur_tsc_generation); |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1488 | } else { |
| 1489 | /* |
| 1490 | * We split periods of matched TSC writes into generations. |
| 1491 | * For each generation, we track the original measured |
| 1492 | * nanosecond time, offset, and write, so if TSCs are in |
| 1493 | * sync, we can match exact offset, and if not, we can match |
Guo Chao | 4a96998 | 2012-06-28 15:17:27 +0800 | [diff] [blame] | 1494 | * exact software computation in compute_guest_tsc() |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1495 | * |
| 1496 | * These values are tracked in kvm->arch.cur_xxx variables. |
| 1497 | */ |
| 1498 | kvm->arch.cur_tsc_generation++; |
| 1499 | kvm->arch.cur_tsc_nsec = ns; |
| 1500 | kvm->arch.cur_tsc_write = data; |
| 1501 | kvm->arch.cur_tsc_offset = offset; |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1502 | matched = false; |
Tomasz Grabiec | 0d3da0d | 2014-06-24 09:42:43 +0200 | [diff] [blame] | 1503 | pr_debug("kvm: new tsc generation %llu, clock %llu\n", |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1504 | kvm->arch.cur_tsc_generation, data); |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 1505 | } |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1506 | |
| 1507 | /* |
| 1508 | * We also track th most recent recorded KHZ, write and time to |
| 1509 | * allow the matching interval to be extended at each write. |
| 1510 | */ |
Zachary Amsden | f38e098 | 2010-08-19 22:07:20 -1000 | [diff] [blame] | 1511 | kvm->arch.last_tsc_nsec = ns; |
| 1512 | kvm->arch.last_tsc_write = data; |
Zachary Amsden | 5d3cb0f6 | 2012-02-03 15:43:51 -0200 | [diff] [blame] | 1513 | kvm->arch.last_tsc_khz = vcpu->arch.virtual_tsc_khz; |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 1514 | |
Zachary Amsden | b183aa5 | 2012-02-03 15:43:53 -0200 | [diff] [blame] | 1515 | vcpu->arch.last_guest_tsc = data; |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1516 | |
| 1517 | /* Keep track of which generation this VCPU has synchronized to */ |
| 1518 | vcpu->arch.this_tsc_generation = kvm->arch.cur_tsc_generation; |
| 1519 | vcpu->arch.this_tsc_nsec = kvm->arch.cur_tsc_nsec; |
| 1520 | vcpu->arch.this_tsc_write = kvm->arch.cur_tsc_write; |
| 1521 | |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 1522 | if (guest_cpuid_has_tsc_adjust(vcpu) && !msr->host_initiated) |
| 1523 | update_ia32_tsc_adjust_msr(vcpu, offset); |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1524 | kvm_x86_ops->write_tsc_offset(vcpu, offset); |
| 1525 | raw_spin_unlock_irqrestore(&kvm->arch.tsc_write_lock, flags); |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1526 | |
| 1527 | spin_lock(&kvm->arch.pvclock_gtod_sync_lock); |
Tomasz Grabiec | 0d3da0d | 2014-06-24 09:42:43 +0200 | [diff] [blame] | 1528 | if (!matched) { |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1529 | kvm->arch.nr_vcpus_matched_tsc = 0; |
Tomasz Grabiec | 0d3da0d | 2014-06-24 09:42:43 +0200 | [diff] [blame] | 1530 | } else if (!already_matched) { |
| 1531 | kvm->arch.nr_vcpus_matched_tsc++; |
| 1532 | } |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1533 | |
| 1534 | kvm_track_tsc_matching(vcpu); |
| 1535 | spin_unlock(&kvm->arch.pvclock_gtod_sync_lock); |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 1536 | } |
Zachary Amsden | e26101b | 2012-02-03 15:43:57 -0200 | [diff] [blame] | 1537 | |
Zachary Amsden | 99e3e30 | 2010-08-19 22:07:17 -1000 | [diff] [blame] | 1538 | EXPORT_SYMBOL_GPL(kvm_write_tsc); |
| 1539 | |
Haozhong Zhang | 58ea676 | 2015-10-20 15:39:06 +0800 | [diff] [blame] | 1540 | static inline void adjust_tsc_offset_guest(struct kvm_vcpu *vcpu, |
| 1541 | s64 adjustment) |
| 1542 | { |
| 1543 | kvm_x86_ops->adjust_tsc_offset_guest(vcpu, adjustment); |
| 1544 | } |
| 1545 | |
| 1546 | static inline void adjust_tsc_offset_host(struct kvm_vcpu *vcpu, s64 adjustment) |
| 1547 | { |
| 1548 | if (vcpu->arch.tsc_scaling_ratio != kvm_default_tsc_scaling_ratio) |
| 1549 | WARN_ON(adjustment < 0); |
| 1550 | adjustment = kvm_scale_tsc(vcpu, (u64) adjustment); |
| 1551 | kvm_x86_ops->adjust_tsc_offset_guest(vcpu, adjustment); |
| 1552 | } |
| 1553 | |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1554 | #ifdef CONFIG_X86_64 |
| 1555 | |
| 1556 | static cycle_t read_tsc(void) |
| 1557 | { |
Andy Lutomirski | 03b9730 | 2015-06-25 18:44:08 +0200 | [diff] [blame] | 1558 | cycle_t ret = (cycle_t)rdtsc_ordered(); |
| 1559 | u64 last = pvclock_gtod_data.clock.cycle_last; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1560 | |
| 1561 | if (likely(ret >= last)) |
| 1562 | return ret; |
| 1563 | |
| 1564 | /* |
| 1565 | * GCC likes to generate cmov here, but this branch is extremely |
Adam Buchbinder | 6a6256f | 2016-02-23 15:34:30 -0800 | [diff] [blame] | 1566 | * predictable (it's just a function of time and the likely is |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1567 | * very likely) and there's a data dependence, so force GCC |
| 1568 | * to generate a branch instead. I don't barrier() because |
| 1569 | * we don't actually need a barrier, and if this function |
| 1570 | * ever gets inlined it will generate worse code. |
| 1571 | */ |
| 1572 | asm volatile (""); |
| 1573 | return last; |
| 1574 | } |
| 1575 | |
| 1576 | static inline u64 vgettsc(cycle_t *cycle_now) |
| 1577 | { |
| 1578 | long v; |
| 1579 | struct pvclock_gtod_data *gtod = &pvclock_gtod_data; |
| 1580 | |
| 1581 | *cycle_now = read_tsc(); |
| 1582 | |
| 1583 | v = (*cycle_now - gtod->clock.cycle_last) & gtod->clock.mask; |
| 1584 | return v * gtod->clock.mult; |
| 1585 | } |
| 1586 | |
Thomas Gleixner | cbcf2dd | 2014-07-16 21:04:54 +0000 | [diff] [blame] | 1587 | static int do_monotonic_boot(s64 *t, cycle_t *cycle_now) |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1588 | { |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1589 | struct pvclock_gtod_data *gtod = &pvclock_gtod_data; |
Thomas Gleixner | cbcf2dd | 2014-07-16 21:04:54 +0000 | [diff] [blame] | 1590 | unsigned long seq; |
| 1591 | int mode; |
| 1592 | u64 ns; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1593 | |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1594 | do { |
| 1595 | seq = read_seqcount_begin(>od->seq); |
| 1596 | mode = gtod->clock.vclock_mode; |
Thomas Gleixner | cbcf2dd | 2014-07-16 21:04:54 +0000 | [diff] [blame] | 1597 | ns = gtod->nsec_base; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1598 | ns += vgettsc(cycle_now); |
| 1599 | ns >>= gtod->clock.shift; |
Thomas Gleixner | cbcf2dd | 2014-07-16 21:04:54 +0000 | [diff] [blame] | 1600 | ns += gtod->boot_ns; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1601 | } while (unlikely(read_seqcount_retry(>od->seq, seq))); |
Thomas Gleixner | cbcf2dd | 2014-07-16 21:04:54 +0000 | [diff] [blame] | 1602 | *t = ns; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1603 | |
| 1604 | return mode; |
| 1605 | } |
| 1606 | |
| 1607 | /* returns true if host is using tsc clocksource */ |
| 1608 | static bool kvm_get_time_and_clockread(s64 *kernel_ns, cycle_t *cycle_now) |
| 1609 | { |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1610 | /* checked again under seqlock below */ |
| 1611 | if (pvclock_gtod_data.clock.vclock_mode != VCLOCK_TSC) |
| 1612 | return false; |
| 1613 | |
Thomas Gleixner | cbcf2dd | 2014-07-16 21:04:54 +0000 | [diff] [blame] | 1614 | return do_monotonic_boot(kernel_ns, cycle_now) == VCLOCK_TSC; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1615 | } |
| 1616 | #endif |
| 1617 | |
| 1618 | /* |
| 1619 | * |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1620 | * Assuming a stable TSC across physical CPUS, and a stable TSC |
| 1621 | * across virtual CPUs, the following condition is possible. |
| 1622 | * Each numbered line represents an event visible to both |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1623 | * CPUs at the next numbered event. |
| 1624 | * |
| 1625 | * "timespecX" represents host monotonic time. "tscX" represents |
| 1626 | * RDTSC value. |
| 1627 | * |
| 1628 | * VCPU0 on CPU0 | VCPU1 on CPU1 |
| 1629 | * |
| 1630 | * 1. read timespec0,tsc0 |
| 1631 | * 2. | timespec1 = timespec0 + N |
| 1632 | * | tsc1 = tsc0 + M |
| 1633 | * 3. transition to guest | transition to guest |
| 1634 | * 4. ret0 = timespec0 + (rdtsc - tsc0) | |
| 1635 | * 5. | ret1 = timespec1 + (rdtsc - tsc1) |
| 1636 | * | ret1 = timespec0 + N + (rdtsc - (tsc0 + M)) |
| 1637 | * |
| 1638 | * Since ret0 update is visible to VCPU1 at time 5, to obey monotonicity: |
| 1639 | * |
| 1640 | * - ret0 < ret1 |
| 1641 | * - timespec0 + (rdtsc - tsc0) < timespec0 + N + (rdtsc - (tsc0 + M)) |
| 1642 | * ... |
| 1643 | * - 0 < N - M => M < N |
| 1644 | * |
| 1645 | * That is, when timespec0 != timespec1, M < N. Unfortunately that is not |
| 1646 | * always the case (the difference between two distinct xtime instances |
| 1647 | * might be smaller then the difference between corresponding TSC reads, |
| 1648 | * when updating guest vcpus pvclock areas). |
| 1649 | * |
| 1650 | * To avoid that problem, do not allow visibility of distinct |
| 1651 | * system_timestamp/tsc_timestamp values simultaneously: use a master |
| 1652 | * copy of host monotonic time values. Update that master copy |
| 1653 | * in lockstep. |
| 1654 | * |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1655 | * Rely on synchronization of host TSCs and guest TSCs for monotonicity. |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1656 | * |
| 1657 | */ |
| 1658 | |
| 1659 | static void pvclock_update_vm_gtod_copy(struct kvm *kvm) |
| 1660 | { |
| 1661 | #ifdef CONFIG_X86_64 |
| 1662 | struct kvm_arch *ka = &kvm->arch; |
| 1663 | int vclock_mode; |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1664 | bool host_tsc_clocksource, vcpus_matched; |
| 1665 | |
| 1666 | vcpus_matched = (ka->nr_vcpus_matched_tsc + 1 == |
| 1667 | atomic_read(&kvm->online_vcpus)); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1668 | |
| 1669 | /* |
| 1670 | * If the host uses TSC clock, then passthrough TSC as stable |
| 1671 | * to the guest. |
| 1672 | */ |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1673 | host_tsc_clocksource = kvm_get_time_and_clockread( |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1674 | &ka->master_kernel_ns, |
| 1675 | &ka->master_cycle_now); |
| 1676 | |
Marcelo Tosatti | 16a9602 | 2014-05-14 12:43:24 -0300 | [diff] [blame] | 1677 | ka->use_master_clock = host_tsc_clocksource && vcpus_matched |
Marcelo Tosatti | 54750f2 | 2015-01-20 15:54:52 -0200 | [diff] [blame] | 1678 | && !backwards_tsc_observed |
| 1679 | && !ka->boot_vcpu_runs_old_kvmclock; |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1680 | |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1681 | if (ka->use_master_clock) |
| 1682 | atomic_set(&kvm_guest_has_master_clock, 1); |
| 1683 | |
| 1684 | vclock_mode = pvclock_gtod_data.clock.vclock_mode; |
Marcelo Tosatti | b48aa97 | 2012-11-27 23:29:03 -0200 | [diff] [blame] | 1685 | trace_kvm_update_master_clock(ka->use_master_clock, vclock_mode, |
| 1686 | vcpus_matched); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1687 | #endif |
| 1688 | } |
| 1689 | |
Paolo Bonzini | 2860c4b | 2016-01-07 15:05:10 +0100 | [diff] [blame] | 1690 | void kvm_make_mclock_inprogress_request(struct kvm *kvm) |
| 1691 | { |
| 1692 | kvm_make_all_cpus_request(kvm, KVM_REQ_MCLOCK_INPROGRESS); |
| 1693 | } |
| 1694 | |
Marcelo Tosatti | 2e762ff | 2013-08-27 23:55:29 -0300 | [diff] [blame] | 1695 | static void kvm_gen_update_masterclock(struct kvm *kvm) |
| 1696 | { |
| 1697 | #ifdef CONFIG_X86_64 |
| 1698 | int i; |
| 1699 | struct kvm_vcpu *vcpu; |
| 1700 | struct kvm_arch *ka = &kvm->arch; |
| 1701 | |
| 1702 | spin_lock(&ka->pvclock_gtod_sync_lock); |
| 1703 | kvm_make_mclock_inprogress_request(kvm); |
| 1704 | /* no guest entries from this point */ |
| 1705 | pvclock_update_vm_gtod_copy(kvm); |
| 1706 | |
| 1707 | kvm_for_each_vcpu(i, vcpu, kvm) |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 1708 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
Marcelo Tosatti | 2e762ff | 2013-08-27 23:55:29 -0300 | [diff] [blame] | 1709 | |
| 1710 | /* guest entries allowed */ |
| 1711 | kvm_for_each_vcpu(i, vcpu, kvm) |
| 1712 | clear_bit(KVM_REQ_MCLOCK_INPROGRESS, &vcpu->requests); |
| 1713 | |
| 1714 | spin_unlock(&ka->pvclock_gtod_sync_lock); |
| 1715 | #endif |
| 1716 | } |
| 1717 | |
Zachary Amsden | 34c238a | 2010-09-18 14:38:14 -1000 | [diff] [blame] | 1718 | static int kvm_guest_time_update(struct kvm_vcpu *v) |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1719 | { |
Paolo Bonzini | 78db6a5 | 2016-02-08 14:51:40 +0100 | [diff] [blame] | 1720 | unsigned long flags, tgt_tsc_khz; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1721 | struct kvm_vcpu_arch *vcpu = &v->arch; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1722 | struct kvm_arch *ka = &v->kvm->arch; |
Marcelo Tosatti | f25e656 | 2014-01-06 12:18:59 -0200 | [diff] [blame] | 1723 | s64 kernel_ns; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1724 | u64 tsc_timestamp, host_tsc; |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 1725 | struct pvclock_vcpu_time_info guest_hv_clock; |
Marcelo Tosatti | 51d59c6 | 2012-08-03 15:57:49 -0300 | [diff] [blame] | 1726 | u8 pvclock_flags; |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1727 | bool use_master_clock; |
| 1728 | |
| 1729 | kernel_ns = 0; |
| 1730 | host_tsc = 0; |
Gerd Hoffmann | 50d0a0f | 2008-06-03 16:17:31 +0200 | [diff] [blame] | 1731 | |
Zachary Amsden | 1d5f066 | 2010-08-19 22:07:30 -1000 | [diff] [blame] | 1732 | /* |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1733 | * If the host uses TSC clock, then passthrough TSC as stable |
| 1734 | * to the guest. |
| 1735 | */ |
| 1736 | spin_lock(&ka->pvclock_gtod_sync_lock); |
| 1737 | use_master_clock = ka->use_master_clock; |
| 1738 | if (use_master_clock) { |
| 1739 | host_tsc = ka->master_cycle_now; |
| 1740 | kernel_ns = ka->master_kernel_ns; |
| 1741 | } |
| 1742 | spin_unlock(&ka->pvclock_gtod_sync_lock); |
Marcelo Tosatti | c09664b | 2013-03-18 13:54:32 -0300 | [diff] [blame] | 1743 | |
| 1744 | /* Keep irq disabled to prevent changes to the clock */ |
| 1745 | local_irq_save(flags); |
Paolo Bonzini | 78db6a5 | 2016-02-08 14:51:40 +0100 | [diff] [blame] | 1746 | tgt_tsc_khz = __this_cpu_read(cpu_tsc_khz); |
| 1747 | if (unlikely(tgt_tsc_khz == 0)) { |
Marcelo Tosatti | c09664b | 2013-03-18 13:54:32 -0300 | [diff] [blame] | 1748 | local_irq_restore(flags); |
| 1749 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, v); |
| 1750 | return 1; |
| 1751 | } |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1752 | if (!use_master_clock) { |
Andy Lutomirski | 4ea1636 | 2015-06-25 18:44:07 +0200 | [diff] [blame] | 1753 | host_tsc = rdtsc(); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1754 | kernel_ns = get_kernel_ns(); |
| 1755 | } |
| 1756 | |
Haozhong Zhang | 4ba7653 | 2015-10-20 15:39:07 +0800 | [diff] [blame] | 1757 | tsc_timestamp = kvm_read_l1_tsc(v, host_tsc); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1758 | |
| 1759 | /* |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 1760 | * We may have to catch up the TSC to match elapsed wall clock |
| 1761 | * time for two reasons, even if kvmclock is used. |
| 1762 | * 1) CPU could have been running below the maximum TSC rate |
| 1763 | * 2) Broken TSC compensation resets the base at each VCPU |
| 1764 | * entry to avoid unknown leaps of TSC even when running |
| 1765 | * again on the same CPU. This may cause apparent elapsed |
| 1766 | * time to disappear, and the guest to stand still or run |
| 1767 | * very slowly. |
| 1768 | */ |
| 1769 | if (vcpu->tsc_catchup) { |
| 1770 | u64 tsc = compute_guest_tsc(v, kernel_ns); |
| 1771 | if (tsc > tsc_timestamp) { |
Marcelo Tosatti | f1e2b26 | 2012-02-03 15:43:55 -0200 | [diff] [blame] | 1772 | adjust_tsc_offset_guest(v, tsc - tsc_timestamp); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 1773 | tsc_timestamp = tsc; |
| 1774 | } |
| 1775 | } |
| 1776 | |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1777 | local_irq_restore(flags); |
| 1778 | |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 1779 | if (!vcpu->pv_time_enabled) |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 1780 | return 0; |
| 1781 | |
Paolo Bonzini | 78db6a5 | 2016-02-08 14:51:40 +0100 | [diff] [blame] | 1782 | if (kvm_has_tsc_control) |
| 1783 | tgt_tsc_khz = kvm_scale_tsc(v, tgt_tsc_khz); |
| 1784 | |
| 1785 | if (unlikely(vcpu->hw_tsc_khz != tgt_tsc_khz)) { |
Paolo Bonzini | 3ae13fa | 2016-02-08 15:11:15 +0100 | [diff] [blame] | 1786 | kvm_get_time_scale(NSEC_PER_SEC, tgt_tsc_khz * 1000LL, |
Zachary Amsden | 5f4e3f8 | 2010-09-18 14:38:13 -1000 | [diff] [blame] | 1787 | &vcpu->hv_clock.tsc_shift, |
| 1788 | &vcpu->hv_clock.tsc_to_system_mul); |
Paolo Bonzini | 78db6a5 | 2016-02-08 14:51:40 +0100 | [diff] [blame] | 1789 | vcpu->hw_tsc_khz = tgt_tsc_khz; |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 1790 | } |
| 1791 | |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1792 | /* With all the info we got, fill in the values */ |
Zachary Amsden | 1d5f066 | 2010-08-19 22:07:30 -1000 | [diff] [blame] | 1793 | vcpu->hv_clock.tsc_timestamp = tsc_timestamp; |
Zachary Amsden | 759379d | 2010-08-19 22:07:25 -1000 | [diff] [blame] | 1794 | vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset; |
Zachary Amsden | 28e4639 | 2010-09-18 14:38:12 -1000 | [diff] [blame] | 1795 | vcpu->last_guest_tsc = tsc_timestamp; |
Marcelo Tosatti | 51d59c6 | 2012-08-03 15:57:49 -0300 | [diff] [blame] | 1796 | |
Owen Hofmann | 09a0c3f | 2014-11-03 16:57:18 -0800 | [diff] [blame] | 1797 | if (unlikely(kvm_read_guest_cached(v->kvm, &vcpu->pv_time, |
| 1798 | &guest_hv_clock, sizeof(guest_hv_clock)))) |
| 1799 | return 0; |
| 1800 | |
Radim Krčmář | 5dca0d9 | 2015-03-25 12:08:14 +0100 | [diff] [blame] | 1801 | /* This VCPU is paused, but it's legal for a guest to read another |
| 1802 | * VCPU's kvmclock, so we really have to follow the specification where |
| 1803 | * it says that version is odd if data is being modified, and even after |
| 1804 | * it is consistent. |
| 1805 | * |
| 1806 | * Version field updates must be kept separate. This is because |
| 1807 | * kvm_write_guest_cached might use a "rep movs" instruction, and |
| 1808 | * writes within a string instruction are weakly ordered. So there |
| 1809 | * are three writes overall. |
| 1810 | * |
| 1811 | * As a small optimization, only write the version field in the first |
| 1812 | * and third write. The vcpu->pv_time cache is still valid, because the |
| 1813 | * version field is the first in the struct. |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 1814 | */ |
Radim Krčmář | 5dca0d9 | 2015-03-25 12:08:14 +0100 | [diff] [blame] | 1815 | BUILD_BUG_ON(offsetof(struct pvclock_vcpu_time_info, version) != 0); |
| 1816 | |
| 1817 | vcpu->hv_clock.version = guest_hv_clock.version + 1; |
| 1818 | kvm_write_guest_cached(v->kvm, &vcpu->pv_time, |
| 1819 | &vcpu->hv_clock, |
| 1820 | sizeof(vcpu->hv_clock.version)); |
| 1821 | |
| 1822 | smp_wmb(); |
Marcelo Tosatti | 78c0337 | 2012-11-27 23:28:47 -0200 | [diff] [blame] | 1823 | |
| 1824 | /* retain PVCLOCK_GUEST_STOPPED if set in guest copy */ |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 1825 | pvclock_flags = (guest_hv_clock.flags & PVCLOCK_GUEST_STOPPED); |
Marcelo Tosatti | 78c0337 | 2012-11-27 23:28:47 -0200 | [diff] [blame] | 1826 | |
| 1827 | if (vcpu->pvclock_set_guest_stopped_request) { |
| 1828 | pvclock_flags |= PVCLOCK_GUEST_STOPPED; |
| 1829 | vcpu->pvclock_set_guest_stopped_request = false; |
| 1830 | } |
| 1831 | |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 1832 | /* If the host uses TSC clocksource, then it is stable */ |
| 1833 | if (use_master_clock) |
| 1834 | pvclock_flags |= PVCLOCK_TSC_STABLE_BIT; |
| 1835 | |
Marcelo Tosatti | 78c0337 | 2012-11-27 23:28:47 -0200 | [diff] [blame] | 1836 | vcpu->hv_clock.flags = pvclock_flags; |
| 1837 | |
David Matlack | ce1a5e6 | 2014-11-05 11:46:42 -0800 | [diff] [blame] | 1838 | trace_kvm_pvclock_update(v->vcpu_id, &vcpu->hv_clock); |
| 1839 | |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 1840 | kvm_write_guest_cached(v->kvm, &vcpu->pv_time, |
| 1841 | &vcpu->hv_clock, |
| 1842 | sizeof(vcpu->hv_clock)); |
Radim Krčmář | 5dca0d9 | 2015-03-25 12:08:14 +0100 | [diff] [blame] | 1843 | |
| 1844 | smp_wmb(); |
| 1845 | |
| 1846 | vcpu->hv_clock.version++; |
| 1847 | kvm_write_guest_cached(v->kvm, &vcpu->pv_time, |
| 1848 | &vcpu->hv_clock, |
| 1849 | sizeof(vcpu->hv_clock.version)); |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 1850 | return 0; |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 1851 | } |
| 1852 | |
Marcelo Tosatti | 0061d53 | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 1853 | /* |
| 1854 | * kvmclock updates which are isolated to a given vcpu, such as |
| 1855 | * vcpu->cpu migration, should not allow system_timestamp from |
| 1856 | * the rest of the vcpus to remain static. Otherwise ntp frequency |
| 1857 | * correction applies to one vcpu's system_timestamp but not |
| 1858 | * the others. |
| 1859 | * |
| 1860 | * So in those cases, request a kvmclock update for all vcpus. |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 1861 | * We need to rate-limit these requests though, as they can |
| 1862 | * considerably slow guests that have a large number of vcpus. |
| 1863 | * The time for a remote vcpu to update its kvmclock is bound |
| 1864 | * by the delay we use to rate-limit the updates. |
Marcelo Tosatti | 0061d53 | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 1865 | */ |
| 1866 | |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 1867 | #define KVMCLOCK_UPDATE_DELAY msecs_to_jiffies(100) |
| 1868 | |
| 1869 | static void kvmclock_update_fn(struct work_struct *work) |
Marcelo Tosatti | 0061d53 | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 1870 | { |
| 1871 | int i; |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 1872 | struct delayed_work *dwork = to_delayed_work(work); |
| 1873 | struct kvm_arch *ka = container_of(dwork, struct kvm_arch, |
| 1874 | kvmclock_update_work); |
| 1875 | struct kvm *kvm = container_of(ka, struct kvm, arch); |
Marcelo Tosatti | 0061d53 | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 1876 | struct kvm_vcpu *vcpu; |
| 1877 | |
| 1878 | kvm_for_each_vcpu(i, vcpu, kvm) { |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 1879 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
Marcelo Tosatti | 0061d53 | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 1880 | kvm_vcpu_kick(vcpu); |
| 1881 | } |
| 1882 | } |
| 1883 | |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 1884 | static void kvm_gen_kvmclock_update(struct kvm_vcpu *v) |
| 1885 | { |
| 1886 | struct kvm *kvm = v->kvm; |
| 1887 | |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 1888 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, v); |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 1889 | schedule_delayed_work(&kvm->arch.kvmclock_update_work, |
| 1890 | KVMCLOCK_UPDATE_DELAY); |
| 1891 | } |
| 1892 | |
Andrew Jones | 332967a | 2014-02-28 12:52:55 +0100 | [diff] [blame] | 1893 | #define KVMCLOCK_SYNC_PERIOD (300 * HZ) |
| 1894 | |
| 1895 | static void kvmclock_sync_fn(struct work_struct *work) |
| 1896 | { |
| 1897 | struct delayed_work *dwork = to_delayed_work(work); |
| 1898 | struct kvm_arch *ka = container_of(dwork, struct kvm_arch, |
| 1899 | kvmclock_sync_work); |
| 1900 | struct kvm *kvm = container_of(ka, struct kvm, arch); |
| 1901 | |
Marcelo Tosatti | 630994b | 2015-05-12 22:42:04 -0300 | [diff] [blame] | 1902 | if (!kvmclock_periodic_sync) |
| 1903 | return; |
| 1904 | |
Andrew Jones | 332967a | 2014-02-28 12:52:55 +0100 | [diff] [blame] | 1905 | schedule_delayed_work(&kvm->arch.kvmclock_update_work, 0); |
| 1906 | schedule_delayed_work(&kvm->arch.kvmclock_sync_work, |
| 1907 | KVMCLOCK_SYNC_PERIOD); |
| 1908 | } |
| 1909 | |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 1910 | static int set_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 data) |
| 1911 | { |
| 1912 | u64 mcg_cap = vcpu->arch.mcg_cap; |
| 1913 | unsigned bank_num = mcg_cap & 0xff; |
| 1914 | |
| 1915 | switch (msr) { |
| 1916 | case MSR_IA32_MCG_STATUS: |
| 1917 | vcpu->arch.mcg_status = data; |
| 1918 | break; |
| 1919 | case MSR_IA32_MCG_CTL: |
| 1920 | if (!(mcg_cap & MCG_CTL_P)) |
| 1921 | return 1; |
| 1922 | if (data != 0 && data != ~(u64)0) |
| 1923 | return -1; |
| 1924 | vcpu->arch.mcg_ctl = data; |
| 1925 | break; |
| 1926 | default: |
| 1927 | if (msr >= MSR_IA32_MC0_CTL && |
Chen Yucong | 81760dc | 2014-09-23 10:44:35 +0800 | [diff] [blame] | 1928 | msr < MSR_IA32_MCx_CTL(bank_num)) { |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 1929 | u32 offset = msr - MSR_IA32_MC0_CTL; |
Andre Przywara | 114be42 | 2010-03-24 17:46:42 +0100 | [diff] [blame] | 1930 | /* only 0 or all 1s can be written to IA32_MCi_CTL |
| 1931 | * some Linux kernels though clear bit 10 in bank 4 to |
| 1932 | * workaround a BIOS/GART TBL issue on AMD K8s, ignore |
| 1933 | * this to avoid an uncatched #GP in the guest |
| 1934 | */ |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 1935 | if ((offset & 0x3) == 0 && |
Andre Przywara | 114be42 | 2010-03-24 17:46:42 +0100 | [diff] [blame] | 1936 | data != 0 && (data | (1 << 10)) != ~(u64)0) |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 1937 | return -1; |
| 1938 | vcpu->arch.mce_banks[offset] = data; |
| 1939 | break; |
| 1940 | } |
| 1941 | return 1; |
| 1942 | } |
| 1943 | return 0; |
| 1944 | } |
| 1945 | |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 1946 | static int xen_hvm_config(struct kvm_vcpu *vcpu, u64 data) |
| 1947 | { |
| 1948 | struct kvm *kvm = vcpu->kvm; |
| 1949 | int lm = is_long_mode(vcpu); |
| 1950 | u8 *blob_addr = lm ? (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_64 |
| 1951 | : (u8 *)(long)kvm->arch.xen_hvm_config.blob_addr_32; |
| 1952 | u8 blob_size = lm ? kvm->arch.xen_hvm_config.blob_size_64 |
| 1953 | : kvm->arch.xen_hvm_config.blob_size_32; |
| 1954 | u32 page_num = data & ~PAGE_MASK; |
| 1955 | u64 page_addr = data & PAGE_MASK; |
| 1956 | u8 *page; |
| 1957 | int r; |
| 1958 | |
| 1959 | r = -E2BIG; |
| 1960 | if (page_num >= blob_size) |
| 1961 | goto out; |
| 1962 | r = -ENOMEM; |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 1963 | page = memdup_user(blob_addr + (page_num * PAGE_SIZE), PAGE_SIZE); |
| 1964 | if (IS_ERR(page)) { |
| 1965 | r = PTR_ERR(page); |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 1966 | goto out; |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 1967 | } |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 1968 | if (kvm_vcpu_write_guest(vcpu, page_addr, page, PAGE_SIZE)) |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 1969 | goto out_free; |
| 1970 | r = 0; |
| 1971 | out_free: |
| 1972 | kfree(page); |
| 1973 | out: |
| 1974 | return r; |
| 1975 | } |
| 1976 | |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 1977 | static int kvm_pv_enable_async_pf(struct kvm_vcpu *vcpu, u64 data) |
| 1978 | { |
| 1979 | gpa_t gpa = data & ~0x3f; |
| 1980 | |
Guo Chao | 4a96998 | 2012-06-28 15:17:27 +0800 | [diff] [blame] | 1981 | /* Bits 2:5 are reserved, Should be zero */ |
Gleb Natapov | 6adba52 | 2010-10-14 11:22:55 +0200 | [diff] [blame] | 1982 | if (data & 0x3c) |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 1983 | return 1; |
| 1984 | |
| 1985 | vcpu->arch.apf.msr_val = data; |
| 1986 | |
| 1987 | if (!(data & KVM_ASYNC_PF_ENABLED)) { |
| 1988 | kvm_clear_async_pf_completion_queue(vcpu); |
| 1989 | kvm_async_pf_hash_reset(vcpu); |
| 1990 | return 0; |
| 1991 | } |
| 1992 | |
Andrew Honig | 8f96452 | 2013-03-29 09:35:21 -0700 | [diff] [blame] | 1993 | if (kvm_gfn_to_hva_cache_init(vcpu->kvm, &vcpu->arch.apf.data, gpa, |
| 1994 | sizeof(u32))) |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 1995 | return 1; |
| 1996 | |
Gleb Natapov | 6adba52 | 2010-10-14 11:22:55 +0200 | [diff] [blame] | 1997 | vcpu->arch.apf.send_user_only = !(data & KVM_ASYNC_PF_SEND_ALWAYS); |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 1998 | kvm_async_pf_wakeup_all(vcpu); |
| 1999 | return 0; |
| 2000 | } |
| 2001 | |
Glauber Costa | 12f9a48 | 2011-02-01 14:16:40 -0500 | [diff] [blame] | 2002 | static void kvmclock_reset(struct kvm_vcpu *vcpu) |
| 2003 | { |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 2004 | vcpu->arch.pv_time_enabled = false; |
Glauber Costa | 12f9a48 | 2011-02-01 14:16:40 -0500 | [diff] [blame] | 2005 | } |
| 2006 | |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2007 | static void record_steal_time(struct kvm_vcpu *vcpu) |
| 2008 | { |
| 2009 | if (!(vcpu->arch.st.msr_val & KVM_MSR_ENABLED)) |
| 2010 | return; |
| 2011 | |
| 2012 | if (unlikely(kvm_read_guest_cached(vcpu->kvm, &vcpu->arch.st.stime, |
| 2013 | &vcpu->arch.st.steal, sizeof(struct kvm_steal_time)))) |
| 2014 | return; |
| 2015 | |
Wanpeng Li | 35f3fae1 | 2016-05-03 11:43:10 +0800 | [diff] [blame] | 2016 | if (vcpu->arch.st.steal.version & 1) |
| 2017 | vcpu->arch.st.steal.version += 1; /* first time write, random junk */ |
| 2018 | |
| 2019 | vcpu->arch.st.steal.version += 1; |
| 2020 | |
| 2021 | kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.st.stime, |
| 2022 | &vcpu->arch.st.steal, sizeof(struct kvm_steal_time)); |
| 2023 | |
| 2024 | smp_wmb(); |
| 2025 | |
Liang Chen | c54cdf1 | 2016-03-16 19:33:16 +0800 | [diff] [blame] | 2026 | vcpu->arch.st.steal.steal += current->sched_info.run_delay - |
| 2027 | vcpu->arch.st.last_steal; |
| 2028 | vcpu->arch.st.last_steal = current->sched_info.run_delay; |
Wanpeng Li | 35f3fae1 | 2016-05-03 11:43:10 +0800 | [diff] [blame] | 2029 | |
| 2030 | kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.st.stime, |
| 2031 | &vcpu->arch.st.steal, sizeof(struct kvm_steal_time)); |
| 2032 | |
| 2033 | smp_wmb(); |
| 2034 | |
| 2035 | vcpu->arch.st.steal.version += 1; |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2036 | |
| 2037 | kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.st.stime, |
| 2038 | &vcpu->arch.st.steal, sizeof(struct kvm_steal_time)); |
| 2039 | } |
| 2040 | |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2041 | 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] | 2042 | { |
Gleb Natapov | 5753785 | 2012-01-15 14:17:22 +0200 | [diff] [blame] | 2043 | bool pr = false; |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 2044 | u32 msr = msr_info->index; |
| 2045 | u64 data = msr_info->data; |
Gleb Natapov | 5753785 | 2012-01-15 14:17:22 +0200 | [diff] [blame] | 2046 | |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2047 | switch (msr) { |
Borislav Petkov | 2e32b71 | 2013-02-19 19:33:13 +0100 | [diff] [blame] | 2048 | case MSR_AMD64_NB_CFG: |
| 2049 | case MSR_IA32_UCODE_REV: |
| 2050 | case MSR_IA32_UCODE_WRITE: |
| 2051 | case MSR_VM_HSAVE_PA: |
| 2052 | case MSR_AMD64_PATCH_LOADER: |
| 2053 | case MSR_AMD64_BU_CFG2: |
| 2054 | break; |
| 2055 | |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2056 | case MSR_EFER: |
Roedel, Joerg | b69e8ca | 2010-05-06 11:38:43 +0200 | [diff] [blame] | 2057 | return set_efer(vcpu, data); |
Andre Przywara | 8f1589d | 2009-06-24 12:44:33 +0200 | [diff] [blame] | 2058 | case MSR_K7_HWCR: |
| 2059 | data &= ~(u64)0x40; /* ignore flush filter disable */ |
Joerg Roedel | 8249402 | 2010-02-24 18:59:16 +0100 | [diff] [blame] | 2060 | data &= ~(u64)0x100; /* ignore ignne emulation enable */ |
Nicolae Mogoreanu | a223c31 | 2012-02-21 13:44:21 -0800 | [diff] [blame] | 2061 | data &= ~(u64)0x8; /* ignore TLB cache disable */ |
Matthias Lange | 22d48b2d | 2014-06-26 13:50:15 +0200 | [diff] [blame] | 2062 | data &= ~(u64)0x40000; /* ignore Mc status write enable */ |
Andre Przywara | 8f1589d | 2009-06-24 12:44:33 +0200 | [diff] [blame] | 2063 | if (data != 0) { |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2064 | vcpu_unimpl(vcpu, "unimplemented HWCR wrmsr: 0x%llx\n", |
| 2065 | data); |
Andre Przywara | 8f1589d | 2009-06-24 12:44:33 +0200 | [diff] [blame] | 2066 | return 1; |
| 2067 | } |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2068 | break; |
Andre Przywara | f7c6d14 | 2009-07-02 15:04:14 +0200 | [diff] [blame] | 2069 | case MSR_FAM10H_MMIO_CONF_BASE: |
| 2070 | if (data != 0) { |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2071 | vcpu_unimpl(vcpu, "unimplemented MMIO_CONF_BASE wrmsr: " |
| 2072 | "0x%llx\n", data); |
Andre Przywara | f7c6d14 | 2009-07-02 15:04:14 +0200 | [diff] [blame] | 2073 | return 1; |
| 2074 | } |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2075 | break; |
Alexander Graf | b5e2fec | 2008-07-22 08:00:45 +0200 | [diff] [blame] | 2076 | case MSR_IA32_DEBUGCTLMSR: |
| 2077 | if (!data) { |
| 2078 | /* We support the non-activated case already */ |
| 2079 | break; |
| 2080 | } else if (data & ~(DEBUGCTLMSR_LBR | DEBUGCTLMSR_BTF)) { |
| 2081 | /* Values other than LBR and BTF are vendor-specific, |
| 2082 | thus reserved and should throw a #GP */ |
| 2083 | return 1; |
| 2084 | } |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2085 | vcpu_unimpl(vcpu, "%s: MSR_IA32_DEBUGCTLMSR 0x%llx, nop\n", |
| 2086 | __func__, data); |
Alexander Graf | b5e2fec | 2008-07-22 08:00:45 +0200 | [diff] [blame] | 2087 | break; |
Avi Kivity | 9ba075a | 2008-05-26 20:06:35 +0300 | [diff] [blame] | 2088 | case 0x200 ... 0x2ff: |
Xiao Guangrong | ff53604 | 2015-06-15 16:55:22 +0800 | [diff] [blame] | 2089 | return kvm_mtrr_set_msr(vcpu, msr, data); |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2090 | case MSR_IA32_APICBASE: |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 2091 | return kvm_set_apic_base(vcpu, msr_info); |
Gleb Natapov | 0105d1a | 2009-07-05 17:39:36 +0300 | [diff] [blame] | 2092 | case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff: |
| 2093 | return kvm_x2apic_msr_write(vcpu, msr, data); |
Liu, Jinsong | a3e06bb | 2011-09-22 16:55:52 +0800 | [diff] [blame] | 2094 | case MSR_IA32_TSCDEADLINE: |
| 2095 | kvm_set_lapic_tscdeadline_msr(vcpu, data); |
| 2096 | break; |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 2097 | case MSR_IA32_TSC_ADJUST: |
| 2098 | if (guest_cpuid_has_tsc_adjust(vcpu)) { |
| 2099 | if (!msr_info->host_initiated) { |
Chris J Arges | d913b90 | 2014-11-12 21:00:39 -0600 | [diff] [blame] | 2100 | s64 adj = data - vcpu->arch.ia32_tsc_adjust_msr; |
Haozhong Zhang | d7add05 | 2015-08-07 11:24:32 +0800 | [diff] [blame] | 2101 | adjust_tsc_offset_guest(vcpu, adj); |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 2102 | } |
| 2103 | vcpu->arch.ia32_tsc_adjust_msr = data; |
| 2104 | } |
| 2105 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2106 | case MSR_IA32_MISC_ENABLE: |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 2107 | vcpu->arch.ia32_misc_enable_msr = data; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2108 | break; |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 2109 | case MSR_IA32_SMBASE: |
| 2110 | if (!msr_info->host_initiated) |
| 2111 | return 1; |
| 2112 | vcpu->arch.smbase = data; |
| 2113 | break; |
Glauber Costa | 11c6bff | 2010-05-11 12:17:41 -0400 | [diff] [blame] | 2114 | case MSR_KVM_WALL_CLOCK_NEW: |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2115 | case MSR_KVM_WALL_CLOCK: |
| 2116 | vcpu->kvm->arch.wall_clock = data; |
| 2117 | kvm_write_wall_clock(vcpu->kvm, data); |
| 2118 | break; |
Glauber Costa | 11c6bff | 2010-05-11 12:17:41 -0400 | [diff] [blame] | 2119 | case MSR_KVM_SYSTEM_TIME_NEW: |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2120 | case MSR_KVM_SYSTEM_TIME: { |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 2121 | u64 gpa_offset; |
Marcelo Tosatti | 54750f2 | 2015-01-20 15:54:52 -0200 | [diff] [blame] | 2122 | struct kvm_arch *ka = &vcpu->kvm->arch; |
| 2123 | |
Glauber Costa | 12f9a48 | 2011-02-01 14:16:40 -0500 | [diff] [blame] | 2124 | kvmclock_reset(vcpu); |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2125 | |
Marcelo Tosatti | 54750f2 | 2015-01-20 15:54:52 -0200 | [diff] [blame] | 2126 | if (vcpu->vcpu_id == 0 && !msr_info->host_initiated) { |
| 2127 | bool tmp = (msr == MSR_KVM_SYSTEM_TIME); |
| 2128 | |
| 2129 | if (ka->boot_vcpu_runs_old_kvmclock != tmp) |
| 2130 | set_bit(KVM_REQ_MASTERCLOCK_UPDATE, |
| 2131 | &vcpu->requests); |
| 2132 | |
| 2133 | ka->boot_vcpu_runs_old_kvmclock = tmp; |
| 2134 | } |
| 2135 | |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2136 | vcpu->arch.time = data; |
Marcelo Tosatti | 0061d53 | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 2137 | kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu); |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2138 | |
| 2139 | /* we verify if the enable bit is set... */ |
| 2140 | if (!(data & 1)) |
| 2141 | break; |
| 2142 | |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 2143 | gpa_offset = data & ~(PAGE_MASK | 1); |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2144 | |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 2145 | if (kvm_gfn_to_hva_cache_init(vcpu->kvm, |
Andrew Honig | 8f96452 | 2013-03-29 09:35:21 -0700 | [diff] [blame] | 2146 | &vcpu->arch.pv_time, data & ~1ULL, |
| 2147 | sizeof(struct pvclock_vcpu_time_info))) |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 2148 | vcpu->arch.pv_time_enabled = false; |
| 2149 | else |
| 2150 | vcpu->arch.pv_time_enabled = true; |
Xiao Guangrong | 32cad84 | 2012-08-03 15:42:52 +0800 | [diff] [blame] | 2151 | |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2152 | break; |
| 2153 | } |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 2154 | case MSR_KVM_ASYNC_PF_EN: |
| 2155 | if (kvm_pv_enable_async_pf(vcpu, data)) |
| 2156 | return 1; |
| 2157 | break; |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2158 | case MSR_KVM_STEAL_TIME: |
| 2159 | |
| 2160 | if (unlikely(!sched_info_on())) |
| 2161 | return 1; |
| 2162 | |
| 2163 | if (data & KVM_STEAL_RESERVED_MASK) |
| 2164 | return 1; |
| 2165 | |
| 2166 | 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] | 2167 | data & KVM_STEAL_VALID_BITS, |
| 2168 | sizeof(struct kvm_steal_time))) |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2169 | return 1; |
| 2170 | |
| 2171 | vcpu->arch.st.msr_val = data; |
| 2172 | |
| 2173 | if (!(data & KVM_MSR_ENABLED)) |
| 2174 | break; |
| 2175 | |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2176 | kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu); |
| 2177 | |
| 2178 | break; |
Michael S. Tsirkin | ae7a2a3 | 2012-06-24 19:25:07 +0300 | [diff] [blame] | 2179 | case MSR_KVM_PV_EOI_EN: |
| 2180 | if (kvm_lapic_enable_pv_eoi(vcpu, data)) |
| 2181 | return 1; |
| 2182 | break; |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2183 | |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2184 | case MSR_IA32_MCG_CTL: |
| 2185 | case MSR_IA32_MCG_STATUS: |
Chen Yucong | 81760dc | 2014-09-23 10:44:35 +0800 | [diff] [blame] | 2186 | 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] | 2187 | return set_msr_mce(vcpu, msr, data); |
Andre Przywara | 71db602 | 2009-06-12 22:01:29 +0200 | [diff] [blame] | 2188 | |
Wei Huang | 6912ac3 | 2015-06-12 01:34:56 -0400 | [diff] [blame] | 2189 | case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3: |
| 2190 | case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1: |
| 2191 | pr = true; /* fall through */ |
| 2192 | case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3: |
| 2193 | case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1: |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 2194 | if (kvm_pmu_is_valid_msr(vcpu, msr)) |
Paolo Bonzini | afd80d8 | 2013-03-28 17:18:35 +0100 | [diff] [blame] | 2195 | return kvm_pmu_set_msr(vcpu, msr_info); |
Gleb Natapov | 5753785 | 2012-01-15 14:17:22 +0200 | [diff] [blame] | 2196 | |
| 2197 | if (pr || data != 0) |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2198 | vcpu_unimpl(vcpu, "disabled perfctr wrmsr: " |
| 2199 | "0x%x data 0x%llx\n", msr, data); |
Gleb Natapov | 5753785 | 2012-01-15 14:17:22 +0200 | [diff] [blame] | 2200 | break; |
Jes Sorensen | 84e0cef | 2010-09-01 11:42:04 +0200 | [diff] [blame] | 2201 | case MSR_K7_CLK_CTL: |
| 2202 | /* |
| 2203 | * Ignore all writes to this no longer documented MSR. |
| 2204 | * Writes are only relevant for old K7 processors, |
| 2205 | * all pre-dating SVM, but a recommended workaround from |
Guo Chao | 4a96998 | 2012-06-28 15:17:27 +0800 | [diff] [blame] | 2206 | * AMD for these chips. It is possible to specify the |
Jes Sorensen | 84e0cef | 2010-09-01 11:42:04 +0200 | [diff] [blame] | 2207 | * affected processor models on the command line, hence |
| 2208 | * the need to ignore the workaround. |
| 2209 | */ |
| 2210 | break; |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 2211 | case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15: |
Andrey Smetanin | e7d9513 | 2015-07-03 15:01:37 +0300 | [diff] [blame] | 2212 | case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4: |
| 2213 | case HV_X64_MSR_CRASH_CTL: |
Andrey Smetanin | 1f4b34f | 2015-11-30 19:22:21 +0300 | [diff] [blame] | 2214 | case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT: |
Andrey Smetanin | e7d9513 | 2015-07-03 15:01:37 +0300 | [diff] [blame] | 2215 | return kvm_hv_set_msr_common(vcpu, msr, data, |
| 2216 | msr_info->host_initiated); |
john cooper | 91c9c3e | 2011-01-21 00:21:00 -0500 | [diff] [blame] | 2217 | case MSR_IA32_BBL_CR_CTL3: |
| 2218 | /* Drop writes to this legacy MSR -- see rdmsr |
| 2219 | * counterpart for further detail. |
| 2220 | */ |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2221 | vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data %llx\n", msr, data); |
john cooper | 91c9c3e | 2011-01-21 00:21:00 -0500 | [diff] [blame] | 2222 | break; |
Boris Ostrovsky | 2b036c6 | 2012-01-09 14:00:35 -0500 | [diff] [blame] | 2223 | case MSR_AMD64_OSVW_ID_LENGTH: |
| 2224 | if (!guest_cpuid_has_osvw(vcpu)) |
| 2225 | return 1; |
| 2226 | vcpu->arch.osvw.length = data; |
| 2227 | break; |
| 2228 | case MSR_AMD64_OSVW_STATUS: |
| 2229 | if (!guest_cpuid_has_osvw(vcpu)) |
| 2230 | return 1; |
| 2231 | vcpu->arch.osvw.status = data; |
| 2232 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2233 | default: |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 2234 | if (msr && (msr == vcpu->kvm->arch.xen_hvm_config.msr)) |
| 2235 | return xen_hvm_config(vcpu, data); |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 2236 | if (kvm_pmu_is_valid_msr(vcpu, msr)) |
Paolo Bonzini | afd80d8 | 2013-03-28 17:18:35 +0100 | [diff] [blame] | 2237 | return kvm_pmu_set_msr(vcpu, msr_info); |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 2238 | if (!ignore_msrs) { |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2239 | vcpu_unimpl(vcpu, "unhandled wrmsr: 0x%x data %llx\n", |
| 2240 | msr, data); |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 2241 | return 1; |
| 2242 | } else { |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 2243 | vcpu_unimpl(vcpu, "ignored wrmsr: 0x%x data %llx\n", |
| 2244 | msr, data); |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 2245 | break; |
| 2246 | } |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2247 | } |
| 2248 | return 0; |
| 2249 | } |
| 2250 | EXPORT_SYMBOL_GPL(kvm_set_msr_common); |
| 2251 | |
| 2252 | |
| 2253 | /* |
| 2254 | * Reads an msr value (of 'msr_index') into 'pdata'. |
| 2255 | * Returns 0 on success, non-0 otherwise. |
| 2256 | * Assumes vcpu_load() was already called. |
| 2257 | */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2258 | int kvm_get_msr(struct kvm_vcpu *vcpu, struct msr_data *msr) |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2259 | { |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2260 | return kvm_x86_ops->get_msr(vcpu, msr); |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2261 | } |
Wincy Van | ff651cb | 2014-12-11 08:52:58 +0300 | [diff] [blame] | 2262 | EXPORT_SYMBOL_GPL(kvm_get_msr); |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2263 | |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2264 | static int get_msr_mce(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata) |
| 2265 | { |
| 2266 | u64 data; |
| 2267 | u64 mcg_cap = vcpu->arch.mcg_cap; |
| 2268 | unsigned bank_num = mcg_cap & 0xff; |
| 2269 | |
| 2270 | switch (msr) { |
| 2271 | case MSR_IA32_P5_MC_ADDR: |
| 2272 | case MSR_IA32_P5_MC_TYPE: |
| 2273 | data = 0; |
| 2274 | break; |
| 2275 | case MSR_IA32_MCG_CAP: |
| 2276 | data = vcpu->arch.mcg_cap; |
| 2277 | break; |
| 2278 | case MSR_IA32_MCG_CTL: |
| 2279 | if (!(mcg_cap & MCG_CTL_P)) |
| 2280 | return 1; |
| 2281 | data = vcpu->arch.mcg_ctl; |
| 2282 | break; |
| 2283 | case MSR_IA32_MCG_STATUS: |
| 2284 | data = vcpu->arch.mcg_status; |
| 2285 | break; |
| 2286 | default: |
| 2287 | if (msr >= MSR_IA32_MC0_CTL && |
Chen Yucong | 81760dc | 2014-09-23 10:44:35 +0800 | [diff] [blame] | 2288 | msr < MSR_IA32_MCx_CTL(bank_num)) { |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2289 | u32 offset = msr - MSR_IA32_MC0_CTL; |
| 2290 | data = vcpu->arch.mce_banks[offset]; |
| 2291 | break; |
| 2292 | } |
| 2293 | return 1; |
| 2294 | } |
| 2295 | *pdata = data; |
| 2296 | return 0; |
| 2297 | } |
| 2298 | |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2299 | 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] | 2300 | { |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2301 | switch (msr_info->index) { |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2302 | case MSR_IA32_PLATFORM_ID: |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2303 | case MSR_IA32_EBL_CR_POWERON: |
Alexander Graf | b5e2fec | 2008-07-22 08:00:45 +0200 | [diff] [blame] | 2304 | case MSR_IA32_DEBUGCTLMSR: |
| 2305 | case MSR_IA32_LASTBRANCHFROMIP: |
| 2306 | case MSR_IA32_LASTBRANCHTOIP: |
| 2307 | case MSR_IA32_LASTINTFROMIP: |
| 2308 | case MSR_IA32_LASTINTTOIP: |
Jaswinder Singh Rajput | 60af2ec | 2009-05-14 11:00:10 +0530 | [diff] [blame] | 2309 | case MSR_K8_SYSCFG: |
Paolo Bonzini | 3afb112 | 2015-09-18 17:33:04 +0200 | [diff] [blame] | 2310 | case MSR_K8_TSEG_ADDR: |
| 2311 | case MSR_K8_TSEG_MASK: |
Jaswinder Singh Rajput | 60af2ec | 2009-05-14 11:00:10 +0530 | [diff] [blame] | 2312 | case MSR_K7_HWCR: |
Avi Kivity | 61a6bd6 | 2008-12-29 17:32:28 +0200 | [diff] [blame] | 2313 | case MSR_VM_HSAVE_PA: |
Andre Przywara | 1fdbd48 | 2009-06-24 12:44:34 +0200 | [diff] [blame] | 2314 | case MSR_K8_INT_PENDING_MSG: |
Andre Przywara | c323c0e | 2009-06-24 15:37:05 +0200 | [diff] [blame] | 2315 | case MSR_AMD64_NB_CFG: |
Andre Przywara | f7c6d14 | 2009-07-02 15:04:14 +0200 | [diff] [blame] | 2316 | case MSR_FAM10H_MMIO_CONF_BASE: |
Borislav Petkov | 2e32b71 | 2013-02-19 19:33:13 +0100 | [diff] [blame] | 2317 | case MSR_AMD64_BU_CFG2: |
Dmitry Bilunov | 0c2df2a | 2016-05-31 17:38:24 +0300 | [diff] [blame] | 2318 | case MSR_IA32_PERF_CTL: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2319 | msr_info->data = 0; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2320 | break; |
Wei Huang | 6912ac3 | 2015-06-12 01:34:56 -0400 | [diff] [blame] | 2321 | case MSR_K7_EVNTSEL0 ... MSR_K7_EVNTSEL3: |
| 2322 | case MSR_K7_PERFCTR0 ... MSR_K7_PERFCTR3: |
| 2323 | case MSR_P6_PERFCTR0 ... MSR_P6_PERFCTR1: |
| 2324 | case MSR_P6_EVNTSEL0 ... MSR_P6_EVNTSEL1: |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 2325 | if (kvm_pmu_is_valid_msr(vcpu, msr_info->index)) |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2326 | return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data); |
| 2327 | msr_info->data = 0; |
Gleb Natapov | 5753785 | 2012-01-15 14:17:22 +0200 | [diff] [blame] | 2328 | break; |
Marcelo Tosatti | 742bc67 | 2011-07-29 19:44:21 -0300 | [diff] [blame] | 2329 | case MSR_IA32_UCODE_REV: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2330 | msr_info->data = 0x100000000ULL; |
Marcelo Tosatti | 742bc67 | 2011-07-29 19:44:21 -0300 | [diff] [blame] | 2331 | break; |
Avi Kivity | 9ba075a | 2008-05-26 20:06:35 +0300 | [diff] [blame] | 2332 | case MSR_MTRRcap: |
Avi Kivity | 9ba075a | 2008-05-26 20:06:35 +0300 | [diff] [blame] | 2333 | case 0x200 ... 0x2ff: |
Xiao Guangrong | ff53604 | 2015-06-15 16:55:22 +0800 | [diff] [blame] | 2334 | return kvm_mtrr_get_msr(vcpu, msr_info->index, &msr_info->data); |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2335 | case 0xcd: /* fsb frequency */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2336 | msr_info->data = 3; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2337 | break; |
Jes Sorensen | 7b91409 | 2010-09-09 12:06:46 +0200 | [diff] [blame] | 2338 | /* |
| 2339 | * MSR_EBC_FREQUENCY_ID |
| 2340 | * Conservative value valid for even the basic CPU models. |
| 2341 | * Models 0,1: 000 in bits 23:21 indicating a bus speed of |
| 2342 | * 100MHz, model 2 000 in bits 18:16 indicating 100MHz, |
| 2343 | * and 266MHz for model 3, or 4. Set Core Clock |
| 2344 | * Frequency to System Bus Frequency Ratio to 1 (bits |
| 2345 | * 31:24) even though these are only valid for CPU |
| 2346 | * models > 2, however guests may end up dividing or |
| 2347 | * multiplying by zero otherwise. |
| 2348 | */ |
| 2349 | case MSR_EBC_FREQUENCY_ID: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2350 | msr_info->data = 1 << 24; |
Jes Sorensen | 7b91409 | 2010-09-09 12:06:46 +0200 | [diff] [blame] | 2351 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2352 | case MSR_IA32_APICBASE: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2353 | msr_info->data = kvm_get_apic_base(vcpu); |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2354 | break; |
Gleb Natapov | 0105d1a | 2009-07-05 17:39:36 +0300 | [diff] [blame] | 2355 | case APIC_BASE_MSR ... APIC_BASE_MSR + 0x3ff: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2356 | return kvm_x2apic_msr_read(vcpu, msr_info->index, &msr_info->data); |
Gleb Natapov | 0105d1a | 2009-07-05 17:39:36 +0300 | [diff] [blame] | 2357 | break; |
Liu, Jinsong | a3e06bb | 2011-09-22 16:55:52 +0800 | [diff] [blame] | 2358 | case MSR_IA32_TSCDEADLINE: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2359 | msr_info->data = kvm_get_lapic_tscdeadline_msr(vcpu); |
Liu, Jinsong | a3e06bb | 2011-09-22 16:55:52 +0800 | [diff] [blame] | 2360 | break; |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 2361 | case MSR_IA32_TSC_ADJUST: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2362 | msr_info->data = (u64)vcpu->arch.ia32_tsc_adjust_msr; |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 2363 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2364 | case MSR_IA32_MISC_ENABLE: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2365 | msr_info->data = vcpu->arch.ia32_misc_enable_msr; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2366 | break; |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 2367 | case MSR_IA32_SMBASE: |
| 2368 | if (!msr_info->host_initiated) |
| 2369 | return 1; |
| 2370 | msr_info->data = vcpu->arch.smbase; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2371 | break; |
Alexander Graf | 847f0ad | 2008-02-21 12:11:01 +0100 | [diff] [blame] | 2372 | case MSR_IA32_PERF_STATUS: |
| 2373 | /* TSC increment by tick */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2374 | msr_info->data = 1000ULL; |
Alexander Graf | 847f0ad | 2008-02-21 12:11:01 +0100 | [diff] [blame] | 2375 | /* CPU multiplier */ |
Nicolas Iooss | b0996ae | 2015-06-29 18:39:23 +0800 | [diff] [blame] | 2376 | msr_info->data |= (((uint64_t)4ULL) << 40); |
Alexander Graf | 847f0ad | 2008-02-21 12:11:01 +0100 | [diff] [blame] | 2377 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2378 | case MSR_EFER: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2379 | msr_info->data = vcpu->arch.efer; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2380 | break; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2381 | case MSR_KVM_WALL_CLOCK: |
Glauber Costa | 11c6bff | 2010-05-11 12:17:41 -0400 | [diff] [blame] | 2382 | case MSR_KVM_WALL_CLOCK_NEW: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2383 | msr_info->data = vcpu->kvm->arch.wall_clock; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2384 | break; |
| 2385 | case MSR_KVM_SYSTEM_TIME: |
Glauber Costa | 11c6bff | 2010-05-11 12:17:41 -0400 | [diff] [blame] | 2386 | case MSR_KVM_SYSTEM_TIME_NEW: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2387 | msr_info->data = vcpu->arch.time; |
Glauber de Oliveira Costa | 1806852 | 2008-02-15 17:52:47 -0200 | [diff] [blame] | 2388 | break; |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 2389 | case MSR_KVM_ASYNC_PF_EN: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2390 | msr_info->data = vcpu->arch.apf.msr_val; |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 2391 | break; |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2392 | case MSR_KVM_STEAL_TIME: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2393 | msr_info->data = vcpu->arch.st.msr_val; |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2394 | break; |
Michael S. Tsirkin | 1d92128 | 2012-08-26 18:00:29 +0300 | [diff] [blame] | 2395 | case MSR_KVM_PV_EOI_EN: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2396 | msr_info->data = vcpu->arch.pv_eoi.msr_val; |
Michael S. Tsirkin | 1d92128 | 2012-08-26 18:00:29 +0300 | [diff] [blame] | 2397 | break; |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2398 | case MSR_IA32_P5_MC_ADDR: |
| 2399 | case MSR_IA32_P5_MC_TYPE: |
| 2400 | case MSR_IA32_MCG_CAP: |
| 2401 | case MSR_IA32_MCG_CTL: |
| 2402 | case MSR_IA32_MCG_STATUS: |
Chen Yucong | 81760dc | 2014-09-23 10:44:35 +0800 | [diff] [blame] | 2403 | 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] | 2404 | return get_msr_mce(vcpu, msr_info->index, &msr_info->data); |
Jes Sorensen | 84e0cef | 2010-09-01 11:42:04 +0200 | [diff] [blame] | 2405 | case MSR_K7_CLK_CTL: |
| 2406 | /* |
| 2407 | * Provide expected ramp-up count for K7. All other |
| 2408 | * are set to zero, indicating minimum divisors for |
| 2409 | * every field. |
| 2410 | * |
| 2411 | * This prevents guest kernels on AMD host with CPU |
| 2412 | * type 6, model 8 and higher from exploding due to |
| 2413 | * the rdmsr failing. |
| 2414 | */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2415 | msr_info->data = 0x20000000; |
Jes Sorensen | 84e0cef | 2010-09-01 11:42:04 +0200 | [diff] [blame] | 2416 | break; |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 2417 | case HV_X64_MSR_GUEST_OS_ID ... HV_X64_MSR_SINT15: |
Andrey Smetanin | e7d9513 | 2015-07-03 15:01:37 +0300 | [diff] [blame] | 2418 | case HV_X64_MSR_CRASH_P0 ... HV_X64_MSR_CRASH_P4: |
| 2419 | case HV_X64_MSR_CRASH_CTL: |
Andrey Smetanin | 1f4b34f | 2015-11-30 19:22:21 +0300 | [diff] [blame] | 2420 | case HV_X64_MSR_STIMER0_CONFIG ... HV_X64_MSR_STIMER3_COUNT: |
Andrey Smetanin | e83d588 | 2015-07-03 15:01:34 +0300 | [diff] [blame] | 2421 | return kvm_hv_get_msr_common(vcpu, |
| 2422 | msr_info->index, &msr_info->data); |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 2423 | break; |
john cooper | 91c9c3e | 2011-01-21 00:21:00 -0500 | [diff] [blame] | 2424 | case MSR_IA32_BBL_CR_CTL3: |
| 2425 | /* This legacy MSR exists but isn't fully documented in current |
| 2426 | * silicon. It is however accessed by winxp in very narrow |
| 2427 | * scenarios where it sets bit #19, itself documented as |
| 2428 | * a "reserved" bit. Best effort attempt to source coherent |
| 2429 | * read data here should the balance of the register be |
| 2430 | * interpreted by the guest: |
| 2431 | * |
| 2432 | * L2 cache control register 3: 64GB range, 256KB size, |
| 2433 | * enabled, latency 0x1, configured |
| 2434 | */ |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2435 | msr_info->data = 0xbe702111; |
john cooper | 91c9c3e | 2011-01-21 00:21:00 -0500 | [diff] [blame] | 2436 | break; |
Boris Ostrovsky | 2b036c6 | 2012-01-09 14:00:35 -0500 | [diff] [blame] | 2437 | case MSR_AMD64_OSVW_ID_LENGTH: |
| 2438 | if (!guest_cpuid_has_osvw(vcpu)) |
| 2439 | return 1; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2440 | msr_info->data = vcpu->arch.osvw.length; |
Boris Ostrovsky | 2b036c6 | 2012-01-09 14:00:35 -0500 | [diff] [blame] | 2441 | break; |
| 2442 | case MSR_AMD64_OSVW_STATUS: |
| 2443 | if (!guest_cpuid_has_osvw(vcpu)) |
| 2444 | return 1; |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2445 | msr_info->data = vcpu->arch.osvw.status; |
Boris Ostrovsky | 2b036c6 | 2012-01-09 14:00:35 -0500 | [diff] [blame] | 2446 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2447 | default: |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 2448 | if (kvm_pmu_is_valid_msr(vcpu, msr_info->index)) |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2449 | return kvm_pmu_get_msr(vcpu, msr_info->index, &msr_info->data); |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 2450 | if (!ignore_msrs) { |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2451 | vcpu_unimpl(vcpu, "unhandled rdmsr: 0x%x\n", msr_info->index); |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 2452 | return 1; |
| 2453 | } else { |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 2454 | vcpu_unimpl(vcpu, "ignored rdmsr: 0x%x\n", msr_info->index); |
| 2455 | msr_info->data = 0; |
Andre Przywara | ed85c06 | 2009-06-25 12:36:49 +0200 | [diff] [blame] | 2456 | } |
| 2457 | break; |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2458 | } |
Carsten Otte | 15c4a64 | 2007-10-30 18:44:17 +0100 | [diff] [blame] | 2459 | return 0; |
| 2460 | } |
| 2461 | EXPORT_SYMBOL_GPL(kvm_get_msr_common); |
| 2462 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2463 | /* |
| 2464 | * Read or write a bunch of msrs. All parameters are kernel addresses. |
| 2465 | * |
| 2466 | * @return number of msrs set successfully. |
| 2467 | */ |
| 2468 | static int __msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs *msrs, |
| 2469 | struct kvm_msr_entry *entries, |
| 2470 | int (*do_msr)(struct kvm_vcpu *vcpu, |
| 2471 | unsigned index, u64 *data)) |
| 2472 | { |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 2473 | int i, idx; |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2474 | |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 2475 | idx = srcu_read_lock(&vcpu->kvm->srcu); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2476 | for (i = 0; i < msrs->nmsrs; ++i) |
| 2477 | if (do_msr(vcpu, entries[i].index, &entries[i].data)) |
| 2478 | break; |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 2479 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2480 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2481 | return i; |
| 2482 | } |
| 2483 | |
| 2484 | /* |
| 2485 | * Read or write a bunch of msrs. Parameters are user addresses. |
| 2486 | * |
| 2487 | * @return number of msrs set successfully. |
| 2488 | */ |
| 2489 | static int msr_io(struct kvm_vcpu *vcpu, struct kvm_msrs __user *user_msrs, |
| 2490 | int (*do_msr)(struct kvm_vcpu *vcpu, |
| 2491 | unsigned index, u64 *data), |
| 2492 | int writeback) |
| 2493 | { |
| 2494 | struct kvm_msrs msrs; |
| 2495 | struct kvm_msr_entry *entries; |
| 2496 | int r, n; |
| 2497 | unsigned size; |
| 2498 | |
| 2499 | r = -EFAULT; |
| 2500 | if (copy_from_user(&msrs, user_msrs, sizeof msrs)) |
| 2501 | goto out; |
| 2502 | |
| 2503 | r = -E2BIG; |
| 2504 | if (msrs.nmsrs >= MAX_IO_MSRS) |
| 2505 | goto out; |
| 2506 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2507 | size = sizeof(struct kvm_msr_entry) * msrs.nmsrs; |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 2508 | entries = memdup_user(user_msrs->entries, size); |
| 2509 | if (IS_ERR(entries)) { |
| 2510 | r = PTR_ERR(entries); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2511 | goto out; |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 2512 | } |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2513 | |
| 2514 | r = n = __msr_io(vcpu, &msrs, entries, do_msr); |
| 2515 | if (r < 0) |
| 2516 | goto out_free; |
| 2517 | |
| 2518 | r = -EFAULT; |
| 2519 | if (writeback && copy_to_user(user_msrs->entries, entries, size)) |
| 2520 | goto out_free; |
| 2521 | |
| 2522 | r = n; |
| 2523 | |
| 2524 | out_free: |
Avi Kivity | 7a73c02 | 2010-07-22 23:24:52 +0300 | [diff] [blame] | 2525 | kfree(entries); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2526 | out: |
| 2527 | return r; |
| 2528 | } |
| 2529 | |
Alexander Graf | 784aa3d | 2014-07-14 18:27:35 +0200 | [diff] [blame] | 2530 | int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext) |
Zhang Xiantao | 018d00d | 2007-11-15 23:07:47 +0800 | [diff] [blame] | 2531 | { |
| 2532 | int r; |
| 2533 | |
| 2534 | switch (ext) { |
| 2535 | case KVM_CAP_IRQCHIP: |
| 2536 | case KVM_CAP_HLT: |
| 2537 | case KVM_CAP_MMU_SHADOW_CACHE_CONTROL: |
Zhang Xiantao | 018d00d | 2007-11-15 23:07:47 +0800 | [diff] [blame] | 2538 | case KVM_CAP_SET_TSS_ADDR: |
Dan Kenigsberg | 0771671 | 2007-11-21 17:10:04 +0200 | [diff] [blame] | 2539 | case KVM_CAP_EXT_CPUID: |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 2540 | case KVM_CAP_EXT_EMUL_CPUID: |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 2541 | case KVM_CAP_CLOCKSOURCE: |
Sheng Yang | 7837699 | 2008-01-28 05:10:22 +0800 | [diff] [blame] | 2542 | case KVM_CAP_PIT: |
Marcelo Tosatti | a28e4f5 | 2008-02-22 12:21:36 -0500 | [diff] [blame] | 2543 | case KVM_CAP_NOP_IO_DELAY: |
Marcelo Tosatti | 62d9f0d | 2008-04-11 13:24:45 -0300 | [diff] [blame] | 2544 | case KVM_CAP_MP_STATE: |
Avi Kivity | ed84862 | 2008-07-29 11:30:57 +0300 | [diff] [blame] | 2545 | case KVM_CAP_SYNC_MMU: |
Lai Jiangshan | a355c85 | 2010-12-14 17:57:47 +0800 | [diff] [blame] | 2546 | case KVM_CAP_USER_NMI: |
Marcelo Tosatti | 52d939a | 2008-12-30 15:55:06 -0200 | [diff] [blame] | 2547 | case KVM_CAP_REINJECT_CONTROL: |
Gleb Natapov | 4925663 | 2009-02-04 17:28:14 +0200 | [diff] [blame] | 2548 | case KVM_CAP_IRQ_INJECT_STATUS: |
Gregory Haskins | d34e6b1 | 2009-07-07 17:08:49 -0400 | [diff] [blame] | 2549 | case KVM_CAP_IOEVENTFD: |
Michael S. Tsirkin | f848a5a | 2014-03-31 21:50:38 +0300 | [diff] [blame] | 2550 | case KVM_CAP_IOEVENTFD_NO_LENGTH: |
Jan Kiszka | c5ff41c | 2009-05-14 22:42:53 +0200 | [diff] [blame] | 2551 | case KVM_CAP_PIT2: |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 2552 | case KVM_CAP_PIT_STATE2: |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 2553 | case KVM_CAP_SET_IDENTITY_MAP_ADDR: |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 2554 | case KVM_CAP_XEN_HVM: |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 2555 | case KVM_CAP_ADJUST_CLOCK: |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2556 | case KVM_CAP_VCPU_EVENTS: |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 2557 | case KVM_CAP_HYPERV: |
Gleb Natapov | 10388a0 | 2010-01-17 15:51:23 +0200 | [diff] [blame] | 2558 | case KVM_CAP_HYPERV_VAPIC: |
Gleb Natapov | c25bc16 | 2010-01-17 15:51:24 +0200 | [diff] [blame] | 2559 | case KVM_CAP_HYPERV_SPIN: |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 2560 | case KVM_CAP_HYPERV_SYNIC: |
Zhai, Edwin | ab9f4ec | 2010-01-29 14:38:44 +0800 | [diff] [blame] | 2561 | case KVM_CAP_PCI_SEGMENT: |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 2562 | case KVM_CAP_DEBUGREGS: |
Jan Kiszka | d2be165 | 2010-02-23 17:47:57 +0100 | [diff] [blame] | 2563 | case KVM_CAP_X86_ROBUST_SINGLESTEP: |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 2564 | case KVM_CAP_XSAVE: |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 2565 | case KVM_CAP_ASYNC_PF: |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 2566 | case KVM_CAP_GET_TSC_KHZ: |
Eric B Munson | 1c0b28c | 2012-03-10 14:37:27 -0500 | [diff] [blame] | 2567 | case KVM_CAP_KVMCLOCK_CTRL: |
Xiao Guangrong | 4d8b81a | 2012-08-21 11:02:51 +0800 | [diff] [blame] | 2568 | case KVM_CAP_READONLY_MEM: |
Paolo Bonzini | 5f66b62 | 2014-01-29 18:10:45 +0100 | [diff] [blame] | 2569 | case KVM_CAP_HYPERV_TIME: |
Gabriel L. Somlo | 100943c | 2014-02-27 23:06:17 -0500 | [diff] [blame] | 2570 | case KVM_CAP_IOAPIC_POLARITY_IGNORED: |
Radim Krčmář | defcf51 | 2015-01-08 15:59:30 +0100 | [diff] [blame] | 2571 | case KVM_CAP_TSC_DEADLINE_TIMER: |
Nadav Amit | 90de4a1 | 2015-04-13 01:53:41 +0300 | [diff] [blame] | 2572 | case KVM_CAP_ENABLE_CAP_VM: |
| 2573 | case KVM_CAP_DISABLE_QUIRKS: |
Paolo Bonzini | d71ba78 | 2015-07-29 11:56:48 +0200 | [diff] [blame] | 2574 | case KVM_CAP_SET_BOOT_CPU_ID: |
Steve Rutherford | 49df639 | 2015-07-29 23:21:40 -0700 | [diff] [blame] | 2575 | case KVM_CAP_SPLIT_IRQCHIP: |
Alex Williamson | 2a5bab1 | 2013-04-16 13:49:18 -0600 | [diff] [blame] | 2576 | #ifdef CONFIG_KVM_DEVICE_ASSIGNMENT |
| 2577 | case KVM_CAP_ASSIGN_DEV_IRQ: |
| 2578 | case KVM_CAP_PCI_2_3: |
| 2579 | #endif |
Zhang Xiantao | 018d00d | 2007-11-15 23:07:47 +0800 | [diff] [blame] | 2580 | r = 1; |
| 2581 | break; |
Paolo Bonzini | 6d396b5 | 2015-04-01 14:25:33 +0200 | [diff] [blame] | 2582 | case KVM_CAP_X86_SMM: |
| 2583 | /* SMBASE is usually relocated above 1M on modern chipsets, |
| 2584 | * and SMM handlers might indeed rely on 4G segment limits, |
| 2585 | * so do not report SMM to be available if real mode is |
| 2586 | * emulated via vm86 mode. Still, do not go to great lengths |
| 2587 | * to avoid userspace's usage of the feature, because it is a |
| 2588 | * fringe case that is not enabled except via specific settings |
| 2589 | * of the module parameters. |
| 2590 | */ |
| 2591 | r = kvm_x86_ops->cpu_has_high_real_mode_segbase(); |
| 2592 | break; |
Laurent Vivier | 542472b | 2008-05-30 16:05:55 +0200 | [diff] [blame] | 2593 | case KVM_CAP_COALESCED_MMIO: |
| 2594 | r = KVM_COALESCED_MMIO_PAGE_OFFSET; |
| 2595 | break; |
Avi Kivity | 774ead3 | 2007-12-26 13:57:04 +0200 | [diff] [blame] | 2596 | case KVM_CAP_VAPIC: |
| 2597 | r = !kvm_x86_ops->cpu_has_accelerated_tpr(); |
| 2598 | break; |
Avi Kivity | f725230 | 2008-02-20 11:53:16 +0200 | [diff] [blame] | 2599 | case KVM_CAP_NR_VCPUS: |
Sasha Levin | 8c3ba33 | 2011-07-18 17:17:15 +0300 | [diff] [blame] | 2600 | r = KVM_SOFT_MAX_VCPUS; |
| 2601 | break; |
| 2602 | case KVM_CAP_MAX_VCPUS: |
Avi Kivity | f725230 | 2008-02-20 11:53:16 +0200 | [diff] [blame] | 2603 | r = KVM_MAX_VCPUS; |
| 2604 | break; |
Avi Kivity | a988b91 | 2008-02-20 11:59:20 +0200 | [diff] [blame] | 2605 | case KVM_CAP_NR_MEMSLOTS: |
Alex Williamson | bbacc0c | 2012-12-10 10:33:09 -0700 | [diff] [blame] | 2606 | r = KVM_USER_MEM_SLOTS; |
Avi Kivity | a988b91 | 2008-02-20 11:59:20 +0200 | [diff] [blame] | 2607 | break; |
Marcelo Tosatti | a68a6a7 | 2009-10-01 19:28:39 -0300 | [diff] [blame] | 2608 | case KVM_CAP_PV_MMU: /* obsolete */ |
| 2609 | r = 0; |
Marcelo Tosatti | 2f333bc | 2008-02-22 12:21:37 -0500 | [diff] [blame] | 2610 | break; |
Alex Williamson | 4cee4b7 | 2013-04-29 10:54:08 -0600 | [diff] [blame] | 2611 | #ifdef CONFIG_KVM_DEVICE_ASSIGNMENT |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 2612 | case KVM_CAP_IOMMU: |
Joerg Roedel | a1b60c1 | 2011-09-06 18:46:34 +0200 | [diff] [blame] | 2613 | r = iommu_present(&pci_bus_type); |
Ben-Ami Yassour | 62c476c | 2008-09-14 03:48:28 +0300 | [diff] [blame] | 2614 | break; |
Alex Williamson | 4cee4b7 | 2013-04-29 10:54:08 -0600 | [diff] [blame] | 2615 | #endif |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2616 | case KVM_CAP_MCE: |
| 2617 | r = KVM_MAX_MCE_BANKS; |
| 2618 | break; |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 2619 | case KVM_CAP_XCRS: |
Borislav Petkov | d366bf7 | 2016-04-04 22:25:02 +0200 | [diff] [blame] | 2620 | r = boot_cpu_has(X86_FEATURE_XSAVE); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 2621 | break; |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 2622 | case KVM_CAP_TSC_CONTROL: |
| 2623 | r = kvm_has_tsc_control; |
| 2624 | break; |
Zhang Xiantao | 018d00d | 2007-11-15 23:07:47 +0800 | [diff] [blame] | 2625 | default: |
| 2626 | r = 0; |
| 2627 | break; |
| 2628 | } |
| 2629 | return r; |
| 2630 | |
| 2631 | } |
| 2632 | |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 2633 | long kvm_arch_dev_ioctl(struct file *filp, |
| 2634 | unsigned int ioctl, unsigned long arg) |
| 2635 | { |
| 2636 | void __user *argp = (void __user *)arg; |
| 2637 | long r; |
| 2638 | |
| 2639 | switch (ioctl) { |
| 2640 | case KVM_GET_MSR_INDEX_LIST: { |
| 2641 | struct kvm_msr_list __user *user_msr_list = argp; |
| 2642 | struct kvm_msr_list msr_list; |
| 2643 | unsigned n; |
| 2644 | |
| 2645 | r = -EFAULT; |
| 2646 | if (copy_from_user(&msr_list, user_msr_list, sizeof msr_list)) |
| 2647 | goto out; |
| 2648 | n = msr_list.nmsrs; |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 2649 | msr_list.nmsrs = num_msrs_to_save + num_emulated_msrs; |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 2650 | if (copy_to_user(user_msr_list, &msr_list, sizeof msr_list)) |
| 2651 | goto out; |
| 2652 | r = -E2BIG; |
Jan Kiszka | e125e7b | 2009-07-02 21:45:47 +0200 | [diff] [blame] | 2653 | if (n < msr_list.nmsrs) |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 2654 | goto out; |
| 2655 | r = -EFAULT; |
| 2656 | if (copy_to_user(user_msr_list->indices, &msrs_to_save, |
| 2657 | num_msrs_to_save * sizeof(u32))) |
| 2658 | goto out; |
Jan Kiszka | e125e7b | 2009-07-02 21:45:47 +0200 | [diff] [blame] | 2659 | if (copy_to_user(user_msr_list->indices + num_msrs_to_save, |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 2660 | &emulated_msrs, |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 2661 | num_emulated_msrs * sizeof(u32))) |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 2662 | goto out; |
| 2663 | r = 0; |
| 2664 | break; |
| 2665 | } |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 2666 | case KVM_GET_SUPPORTED_CPUID: |
| 2667 | case KVM_GET_EMULATED_CPUID: { |
Avi Kivity | 674eea0 | 2008-02-11 18:37:23 +0200 | [diff] [blame] | 2668 | struct kvm_cpuid2 __user *cpuid_arg = argp; |
| 2669 | struct kvm_cpuid2 cpuid; |
| 2670 | |
| 2671 | r = -EFAULT; |
| 2672 | if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid)) |
| 2673 | goto out; |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 2674 | |
| 2675 | r = kvm_dev_ioctl_get_cpuid(&cpuid, cpuid_arg->entries, |
| 2676 | ioctl); |
Avi Kivity | 674eea0 | 2008-02-11 18:37:23 +0200 | [diff] [blame] | 2677 | if (r) |
| 2678 | goto out; |
| 2679 | |
| 2680 | r = -EFAULT; |
| 2681 | if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid)) |
| 2682 | goto out; |
| 2683 | r = 0; |
| 2684 | break; |
| 2685 | } |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2686 | case KVM_X86_GET_MCE_CAP_SUPPORTED: { |
| 2687 | u64 mce_cap; |
| 2688 | |
| 2689 | mce_cap = KVM_MCE_CAP_SUPPORTED; |
| 2690 | r = -EFAULT; |
| 2691 | if (copy_to_user(argp, &mce_cap, sizeof mce_cap)) |
| 2692 | goto out; |
| 2693 | r = 0; |
| 2694 | break; |
| 2695 | } |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 2696 | default: |
| 2697 | r = -EINVAL; |
| 2698 | } |
| 2699 | out: |
| 2700 | return r; |
| 2701 | } |
| 2702 | |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 2703 | static void wbinvd_ipi(void *garbage) |
| 2704 | { |
| 2705 | wbinvd(); |
| 2706 | } |
| 2707 | |
| 2708 | static bool need_emulate_wbinvd(struct kvm_vcpu *vcpu) |
| 2709 | { |
Alex Williamson | e0f0bbc | 2013-10-30 11:02:30 -0600 | [diff] [blame] | 2710 | return kvm_arch_has_noncoherent_dma(vcpu->kvm); |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 2711 | } |
| 2712 | |
Paolo Bonzini | 2860c4b | 2016-01-07 15:05:10 +0100 | [diff] [blame] | 2713 | static inline void kvm_migrate_timers(struct kvm_vcpu *vcpu) |
| 2714 | { |
| 2715 | set_bit(KVM_REQ_MIGRATE_TIMER, &vcpu->requests); |
| 2716 | } |
| 2717 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2718 | void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu) |
| 2719 | { |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 2720 | /* Address WBINVD may be executed by guest */ |
| 2721 | if (need_emulate_wbinvd(vcpu)) { |
| 2722 | if (kvm_x86_ops->has_wbinvd_exit()) |
| 2723 | cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask); |
| 2724 | else if (vcpu->cpu != -1 && vcpu->cpu != cpu) |
| 2725 | smp_call_function_single(vcpu->cpu, |
| 2726 | wbinvd_ipi, NULL, 1); |
| 2727 | } |
| 2728 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2729 | kvm_x86_ops->vcpu_load(vcpu, cpu); |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 2730 | |
| 2731 | /* Apply any externally detected TSC adjustments (due to suspend) */ |
| 2732 | if (unlikely(vcpu->arch.tsc_offset_adjustment)) { |
| 2733 | adjust_tsc_offset_host(vcpu, vcpu->arch.tsc_offset_adjustment); |
| 2734 | vcpu->arch.tsc_offset_adjustment = 0; |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 2735 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 2736 | } |
| 2737 | |
Zachary Amsden | 48434c20 | 2010-08-19 22:07:24 -1000 | [diff] [blame] | 2738 | if (unlikely(vcpu->cpu != cpu) || check_tsc_unstable()) { |
Zachary Amsden | 6f526ec | 2012-02-03 15:43:54 -0200 | [diff] [blame] | 2739 | s64 tsc_delta = !vcpu->arch.last_host_tsc ? 0 : |
Andy Lutomirski | 4ea1636 | 2015-06-25 18:44:07 +0200 | [diff] [blame] | 2740 | rdtsc() - vcpu->arch.last_host_tsc; |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 2741 | if (tsc_delta < 0) |
| 2742 | mark_tsc_unstable("KVM discovered backwards TSC"); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 2743 | if (check_tsc_unstable()) { |
Haozhong Zhang | 07c1419 | 2015-10-20 15:39:05 +0800 | [diff] [blame] | 2744 | u64 offset = kvm_compute_tsc_offset(vcpu, |
Zachary Amsden | b183aa5 | 2012-02-03 15:43:53 -0200 | [diff] [blame] | 2745 | vcpu->arch.last_guest_tsc); |
| 2746 | kvm_x86_ops->write_tsc_offset(vcpu, offset); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 2747 | vcpu->arch.tsc_catchup = 1; |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 2748 | } |
Marcelo Tosatti | d98d07c | 2012-11-27 23:29:04 -0200 | [diff] [blame] | 2749 | /* |
| 2750 | * On a host with synchronized TSC, there is no need to update |
| 2751 | * kvmclock on vcpu->cpu migration |
| 2752 | */ |
| 2753 | if (!vcpu->kvm->arch.use_master_clock || vcpu->cpu == -1) |
Marcelo Tosatti | 0061d53 | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 2754 | kvm_make_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 2755 | if (vcpu->cpu != cpu) |
| 2756 | kvm_migrate_timers(vcpu); |
Zachary Amsden | e48672f | 2010-08-19 22:07:23 -1000 | [diff] [blame] | 2757 | vcpu->cpu = cpu; |
Zachary Amsden | 6b7d7e7 | 2009-10-09 16:26:08 -1000 | [diff] [blame] | 2758 | } |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2759 | |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 2760 | kvm_make_request(KVM_REQ_STEAL_UPDATE, vcpu); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2761 | } |
| 2762 | |
| 2763 | void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu) |
| 2764 | { |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 2765 | kvm_x86_ops->vcpu_put(vcpu); |
Avi Kivity | 1c11e71 | 2010-05-03 16:05:44 +0300 | [diff] [blame] | 2766 | kvm_put_guest_fpu(vcpu); |
Andy Lutomirski | 4ea1636 | 2015-06-25 18:44:07 +0200 | [diff] [blame] | 2767 | vcpu->arch.last_host_tsc = rdtsc(); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2768 | } |
| 2769 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2770 | static int kvm_vcpu_ioctl_get_lapic(struct kvm_vcpu *vcpu, |
| 2771 | struct kvm_lapic_state *s) |
| 2772 | { |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 2773 | if (vcpu->arch.apicv_active) |
| 2774 | kvm_x86_ops->sync_pir_to_irr(vcpu); |
| 2775 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 2776 | memcpy(s->regs, vcpu->arch.apic->regs, sizeof *s); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2777 | |
| 2778 | return 0; |
| 2779 | } |
| 2780 | |
| 2781 | static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu, |
| 2782 | struct kvm_lapic_state *s) |
| 2783 | { |
Gleb Natapov | 64eb062 | 2012-08-08 15:24:36 +0300 | [diff] [blame] | 2784 | kvm_apic_post_state_restore(vcpu, s); |
Gleb Natapov | cb142eb | 2009-08-09 15:17:40 +0300 | [diff] [blame] | 2785 | update_cr8_intercept(vcpu); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 2786 | |
| 2787 | return 0; |
| 2788 | } |
| 2789 | |
Matt Gingell | 127a457 | 2015-11-17 17:32:05 +0100 | [diff] [blame] | 2790 | static int kvm_cpu_accept_dm_intr(struct kvm_vcpu *vcpu) |
| 2791 | { |
| 2792 | return (!lapic_in_kernel(vcpu) || |
| 2793 | kvm_apic_accept_pic_intr(vcpu)); |
| 2794 | } |
| 2795 | |
Matt Gingell | 782d422 | 2015-11-16 15:26:00 -0800 | [diff] [blame] | 2796 | /* |
| 2797 | * if userspace requested an interrupt window, check that the |
| 2798 | * interrupt window is open. |
| 2799 | * |
| 2800 | * No need to exit to userspace if we already have an interrupt queued. |
| 2801 | */ |
| 2802 | static int kvm_vcpu_ready_for_interrupt_injection(struct kvm_vcpu *vcpu) |
| 2803 | { |
| 2804 | return kvm_arch_interrupt_allowed(vcpu) && |
| 2805 | !kvm_cpu_has_interrupt(vcpu) && |
| 2806 | !kvm_event_needs_reinjection(vcpu) && |
| 2807 | kvm_cpu_accept_dm_intr(vcpu); |
| 2808 | } |
| 2809 | |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 2810 | static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu, |
| 2811 | struct kvm_interrupt *irq) |
| 2812 | { |
Chen Gang | 02cdb50 | 2013-02-27 11:33:25 +0800 | [diff] [blame] | 2813 | if (irq->irq >= KVM_NR_INTERRUPTS) |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 2814 | return -EINVAL; |
Steve Rutherford | 1c1a9ce | 2015-07-30 11:27:16 +0200 | [diff] [blame] | 2815 | |
| 2816 | if (!irqchip_in_kernel(vcpu->kvm)) { |
| 2817 | kvm_queue_interrupt(vcpu, irq->irq, false); |
| 2818 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 2819 | return 0; |
| 2820 | } |
| 2821 | |
| 2822 | /* |
| 2823 | * With in-kernel LAPIC, we only use this to inject EXTINT, so |
| 2824 | * fail for in-kernel 8259. |
| 2825 | */ |
| 2826 | if (pic_in_kernel(vcpu->kvm)) |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 2827 | return -ENXIO; |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 2828 | |
Steve Rutherford | 1c1a9ce | 2015-07-30 11:27:16 +0200 | [diff] [blame] | 2829 | if (vcpu->arch.pending_external_vector != -1) |
| 2830 | return -EEXIST; |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 2831 | |
Steve Rutherford | 1c1a9ce | 2015-07-30 11:27:16 +0200 | [diff] [blame] | 2832 | vcpu->arch.pending_external_vector = irq->irq; |
Matt Gingell | 934bf65 | 2015-11-16 15:26:05 -0800 | [diff] [blame] | 2833 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 2834 | return 0; |
| 2835 | } |
| 2836 | |
Jan Kiszka | c4abb7c | 2008-09-26 09:30:55 +0200 | [diff] [blame] | 2837 | static int kvm_vcpu_ioctl_nmi(struct kvm_vcpu *vcpu) |
| 2838 | { |
Jan Kiszka | c4abb7c | 2008-09-26 09:30:55 +0200 | [diff] [blame] | 2839 | kvm_inject_nmi(vcpu); |
Jan Kiszka | c4abb7c | 2008-09-26 09:30:55 +0200 | [diff] [blame] | 2840 | |
| 2841 | return 0; |
| 2842 | } |
| 2843 | |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 2844 | static int kvm_vcpu_ioctl_smi(struct kvm_vcpu *vcpu) |
| 2845 | { |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 2846 | kvm_make_request(KVM_REQ_SMI, vcpu); |
| 2847 | |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 2848 | return 0; |
| 2849 | } |
| 2850 | |
Avi Kivity | b209749f | 2007-10-22 16:50:39 +0200 | [diff] [blame] | 2851 | static int vcpu_ioctl_tpr_access_reporting(struct kvm_vcpu *vcpu, |
| 2852 | struct kvm_tpr_access_ctl *tac) |
| 2853 | { |
| 2854 | if (tac->flags) |
| 2855 | return -EINVAL; |
| 2856 | vcpu->arch.tpr_access_reporting = !!tac->enabled; |
| 2857 | return 0; |
| 2858 | } |
| 2859 | |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2860 | static int kvm_vcpu_ioctl_x86_setup_mce(struct kvm_vcpu *vcpu, |
| 2861 | u64 mcg_cap) |
| 2862 | { |
| 2863 | int r; |
| 2864 | unsigned bank_num = mcg_cap & 0xff, bank; |
| 2865 | |
| 2866 | r = -EINVAL; |
Jan Kiszka | a9e38c3e | 2009-10-23 09:37:00 +0200 | [diff] [blame] | 2867 | if (!bank_num || bank_num >= KVM_MAX_MCE_BANKS) |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2868 | goto out; |
| 2869 | if (mcg_cap & ~(KVM_MCE_CAP_SUPPORTED | 0xff | 0xff0000)) |
| 2870 | goto out; |
| 2871 | r = 0; |
| 2872 | vcpu->arch.mcg_cap = mcg_cap; |
| 2873 | /* Init IA32_MCG_CTL to all 1s */ |
| 2874 | if (mcg_cap & MCG_CTL_P) |
| 2875 | vcpu->arch.mcg_ctl = ~(u64)0; |
| 2876 | /* Init IA32_MCi_CTL to all 1s */ |
| 2877 | for (bank = 0; bank < bank_num; bank++) |
| 2878 | vcpu->arch.mce_banks[bank*4] = ~(u64)0; |
| 2879 | out: |
| 2880 | return r; |
| 2881 | } |
| 2882 | |
| 2883 | static int kvm_vcpu_ioctl_x86_set_mce(struct kvm_vcpu *vcpu, |
| 2884 | struct kvm_x86_mce *mce) |
| 2885 | { |
| 2886 | u64 mcg_cap = vcpu->arch.mcg_cap; |
| 2887 | unsigned bank_num = mcg_cap & 0xff; |
| 2888 | u64 *banks = vcpu->arch.mce_banks; |
| 2889 | |
| 2890 | if (mce->bank >= bank_num || !(mce->status & MCI_STATUS_VAL)) |
| 2891 | return -EINVAL; |
| 2892 | /* |
| 2893 | * if IA32_MCG_CTL is not all 1s, the uncorrected error |
| 2894 | * reporting is disabled |
| 2895 | */ |
| 2896 | if ((mce->status & MCI_STATUS_UC) && (mcg_cap & MCG_CTL_P) && |
| 2897 | vcpu->arch.mcg_ctl != ~(u64)0) |
| 2898 | return 0; |
| 2899 | banks += 4 * mce->bank; |
| 2900 | /* |
| 2901 | * if IA32_MCi_CTL is not all 1s, the uncorrected error |
| 2902 | * reporting is disabled for the bank |
| 2903 | */ |
| 2904 | if ((mce->status & MCI_STATUS_UC) && banks[0] != ~(u64)0) |
| 2905 | return 0; |
| 2906 | if (mce->status & MCI_STATUS_UC) { |
| 2907 | if ((vcpu->arch.mcg_status & MCG_STATUS_MCIP) || |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 2908 | !kvm_read_cr4_bits(vcpu, X86_CR4_MCE)) { |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 2909 | kvm_make_request(KVM_REQ_TRIPLE_FAULT, vcpu); |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 2910 | return 0; |
| 2911 | } |
| 2912 | if (banks[1] & MCI_STATUS_VAL) |
| 2913 | mce->status |= MCI_STATUS_OVER; |
| 2914 | banks[2] = mce->addr; |
| 2915 | banks[3] = mce->misc; |
| 2916 | vcpu->arch.mcg_status = mce->mcg_status; |
| 2917 | banks[1] = mce->status; |
| 2918 | kvm_queue_exception(vcpu, MC_VECTOR); |
| 2919 | } else if (!(banks[1] & MCI_STATUS_VAL) |
| 2920 | || !(banks[1] & MCI_STATUS_UC)) { |
| 2921 | if (banks[1] & MCI_STATUS_VAL) |
| 2922 | mce->status |= MCI_STATUS_OVER; |
| 2923 | banks[2] = mce->addr; |
| 2924 | banks[3] = mce->misc; |
| 2925 | banks[1] = mce->status; |
| 2926 | } else |
| 2927 | banks[1] |= MCI_STATUS_OVER; |
| 2928 | return 0; |
| 2929 | } |
| 2930 | |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2931 | static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu, |
| 2932 | struct kvm_vcpu_events *events) |
| 2933 | { |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 2934 | process_nmi(vcpu); |
Jan Kiszka | 03b82a3 | 2010-02-15 10:45:41 +0100 | [diff] [blame] | 2935 | events->exception.injected = |
| 2936 | vcpu->arch.exception.pending && |
| 2937 | !kvm_exception_is_soft(vcpu->arch.exception.nr); |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2938 | events->exception.nr = vcpu->arch.exception.nr; |
| 2939 | events->exception.has_error_code = vcpu->arch.exception.has_error_code; |
Vasiliy Kulikov | 97e69aa | 2010-10-30 22:54:47 +0400 | [diff] [blame] | 2940 | events->exception.pad = 0; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2941 | events->exception.error_code = vcpu->arch.exception.error_code; |
| 2942 | |
Jan Kiszka | 03b82a3 | 2010-02-15 10:45:41 +0100 | [diff] [blame] | 2943 | events->interrupt.injected = |
| 2944 | vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2945 | events->interrupt.nr = vcpu->arch.interrupt.nr; |
Jan Kiszka | 03b82a3 | 2010-02-15 10:45:41 +0100 | [diff] [blame] | 2946 | events->interrupt.soft = 0; |
Paolo Bonzini | 37ccdcb | 2014-05-20 14:29:47 +0200 | [diff] [blame] | 2947 | events->interrupt.shadow = kvm_x86_ops->get_interrupt_shadow(vcpu); |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2948 | |
| 2949 | events->nmi.injected = vcpu->arch.nmi_injected; |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 2950 | events->nmi.pending = vcpu->arch.nmi_pending != 0; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2951 | events->nmi.masked = kvm_x86_ops->get_nmi_mask(vcpu); |
Vasiliy Kulikov | 97e69aa | 2010-10-30 22:54:47 +0400 | [diff] [blame] | 2952 | events->nmi.pad = 0; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2953 | |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 2954 | events->sipi_vector = 0; /* never valid when reporting to user space */ |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2955 | |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 2956 | events->smi.smm = is_smm(vcpu); |
| 2957 | events->smi.pending = vcpu->arch.smi_pending; |
| 2958 | events->smi.smm_inside_nmi = |
| 2959 | !!(vcpu->arch.hflags & HF_SMM_INSIDE_NMI_MASK); |
| 2960 | events->smi.latched_init = kvm_lapic_latched_init(vcpu); |
| 2961 | |
Jan Kiszka | dab4b91 | 2009-12-06 18:24:15 +0100 | [diff] [blame] | 2962 | events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 2963 | | KVM_VCPUEVENT_VALID_SHADOW |
| 2964 | | KVM_VCPUEVENT_VALID_SMM); |
Vasiliy Kulikov | 97e69aa | 2010-10-30 22:54:47 +0400 | [diff] [blame] | 2965 | memset(&events->reserved, 0, sizeof(events->reserved)); |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2966 | } |
| 2967 | |
| 2968 | static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu, |
| 2969 | struct kvm_vcpu_events *events) |
| 2970 | { |
Jan Kiszka | dab4b91 | 2009-12-06 18:24:15 +0100 | [diff] [blame] | 2971 | if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2972 | | KVM_VCPUEVENT_VALID_SIPI_VECTOR |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 2973 | | KVM_VCPUEVENT_VALID_SHADOW |
| 2974 | | KVM_VCPUEVENT_VALID_SMM)) |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2975 | return -EINVAL; |
| 2976 | |
Paolo Bonzini | 78e546c | 2016-06-01 14:09:20 +0200 | [diff] [blame] | 2977 | if (events->exception.injected && |
| 2978 | (events->exception.nr > 31 || events->exception.nr == NMI_VECTOR)) |
| 2979 | return -EINVAL; |
| 2980 | |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 2981 | process_nmi(vcpu); |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2982 | vcpu->arch.exception.pending = events->exception.injected; |
| 2983 | vcpu->arch.exception.nr = events->exception.nr; |
| 2984 | vcpu->arch.exception.has_error_code = events->exception.has_error_code; |
| 2985 | vcpu->arch.exception.error_code = events->exception.error_code; |
| 2986 | |
| 2987 | vcpu->arch.interrupt.pending = events->interrupt.injected; |
| 2988 | vcpu->arch.interrupt.nr = events->interrupt.nr; |
| 2989 | vcpu->arch.interrupt.soft = events->interrupt.soft; |
Jan Kiszka | 48005f6 | 2010-02-19 19:38:07 +0100 | [diff] [blame] | 2990 | if (events->flags & KVM_VCPUEVENT_VALID_SHADOW) |
| 2991 | kvm_x86_ops->set_interrupt_shadow(vcpu, |
| 2992 | events->interrupt.shadow); |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2993 | |
| 2994 | vcpu->arch.nmi_injected = events->nmi.injected; |
Jan Kiszka | dab4b91 | 2009-12-06 18:24:15 +0100 | [diff] [blame] | 2995 | if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING) |
| 2996 | vcpu->arch.nmi_pending = events->nmi.pending; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 2997 | kvm_x86_ops->set_nmi_mask(vcpu, events->nmi.masked); |
| 2998 | |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 2999 | if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR && |
Paolo Bonzini | bce87cc | 2016-01-08 13:48:51 +0100 | [diff] [blame] | 3000 | lapic_in_kernel(vcpu)) |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 3001 | vcpu->arch.apic->sipi_vector = events->sipi_vector; |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3002 | |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 3003 | if (events->flags & KVM_VCPUEVENT_VALID_SMM) { |
| 3004 | if (events->smi.smm) |
| 3005 | vcpu->arch.hflags |= HF_SMM_MASK; |
| 3006 | else |
| 3007 | vcpu->arch.hflags &= ~HF_SMM_MASK; |
| 3008 | vcpu->arch.smi_pending = events->smi.pending; |
| 3009 | if (events->smi.smm_inside_nmi) |
| 3010 | vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK; |
| 3011 | else |
| 3012 | vcpu->arch.hflags &= ~HF_SMM_INSIDE_NMI_MASK; |
Paolo Bonzini | bce87cc | 2016-01-08 13:48:51 +0100 | [diff] [blame] | 3013 | if (lapic_in_kernel(vcpu)) { |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 3014 | if (events->smi.latched_init) |
| 3015 | set_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events); |
| 3016 | else |
| 3017 | clear_bit(KVM_APIC_INIT, &vcpu->arch.apic->pending_events); |
| 3018 | } |
| 3019 | } |
| 3020 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 3021 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 3022 | |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3023 | return 0; |
| 3024 | } |
| 3025 | |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3026 | static void kvm_vcpu_ioctl_x86_get_debugregs(struct kvm_vcpu *vcpu, |
| 3027 | struct kvm_debugregs *dbgregs) |
| 3028 | { |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 3029 | unsigned long val; |
| 3030 | |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3031 | memcpy(dbgregs->db, vcpu->arch.db, sizeof(vcpu->arch.db)); |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 3032 | kvm_get_dr(vcpu, 6, &val); |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 3033 | dbgregs->dr6 = val; |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3034 | dbgregs->dr7 = vcpu->arch.dr7; |
| 3035 | dbgregs->flags = 0; |
Vasiliy Kulikov | 97e69aa | 2010-10-30 22:54:47 +0400 | [diff] [blame] | 3036 | memset(&dbgregs->reserved, 0, sizeof(dbgregs->reserved)); |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3037 | } |
| 3038 | |
| 3039 | static int kvm_vcpu_ioctl_x86_set_debugregs(struct kvm_vcpu *vcpu, |
| 3040 | struct kvm_debugregs *dbgregs) |
| 3041 | { |
| 3042 | if (dbgregs->flags) |
| 3043 | return -EINVAL; |
| 3044 | |
Paolo Bonzini | d14bdb5 | 2016-06-01 14:09:23 +0200 | [diff] [blame] | 3045 | if (dbgregs->dr6 & ~0xffffffffull) |
| 3046 | return -EINVAL; |
| 3047 | if (dbgregs->dr7 & ~0xffffffffull) |
| 3048 | return -EINVAL; |
| 3049 | |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3050 | memcpy(vcpu->arch.db, dbgregs->db, sizeof(vcpu->arch.db)); |
Nadav Amit | ae561ed | 2015-04-02 03:10:37 +0300 | [diff] [blame] | 3051 | kvm_update_dr0123(vcpu); |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3052 | vcpu->arch.dr6 = dbgregs->dr6; |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 3053 | kvm_update_dr6(vcpu); |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3054 | vcpu->arch.dr7 = dbgregs->dr7; |
Jan Kiszka | 9926c9f | 2014-01-04 18:47:15 +0100 | [diff] [blame] | 3055 | kvm_update_dr7(vcpu); |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3056 | |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3057 | return 0; |
| 3058 | } |
| 3059 | |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 3060 | #define XSTATE_COMPACTION_ENABLED (1ULL << 63) |
| 3061 | |
| 3062 | static void fill_xsave(u8 *dest, struct kvm_vcpu *vcpu) |
| 3063 | { |
Ingo Molnar | c47ada3 | 2015-04-30 17:15:32 +0200 | [diff] [blame] | 3064 | struct xregs_state *xsave = &vcpu->arch.guest_fpu.state.xsave; |
Ingo Molnar | 400e4b2 | 2015-04-24 10:19:47 +0200 | [diff] [blame] | 3065 | u64 xstate_bv = xsave->header.xfeatures; |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 3066 | u64 valid; |
| 3067 | |
| 3068 | /* |
| 3069 | * Copy legacy XSAVE area, to avoid complications with CPUID |
| 3070 | * leaves 0 and 1 in the loop below. |
| 3071 | */ |
| 3072 | memcpy(dest, xsave, XSAVE_HDR_OFFSET); |
| 3073 | |
| 3074 | /* Set XSTATE_BV */ |
| 3075 | *(u64 *)(dest + XSAVE_HDR_OFFSET) = xstate_bv; |
| 3076 | |
| 3077 | /* |
| 3078 | * Copy each region from the possibly compacted offset to the |
| 3079 | * non-compacted offset. |
| 3080 | */ |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 3081 | valid = xstate_bv & ~XFEATURE_MASK_FPSSE; |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 3082 | while (valid) { |
| 3083 | u64 feature = valid & -valid; |
| 3084 | int index = fls64(feature) - 1; |
| 3085 | void *src = get_xsave_addr(xsave, feature); |
| 3086 | |
| 3087 | if (src) { |
| 3088 | u32 size, offset, ecx, edx; |
| 3089 | cpuid_count(XSTATE_CPUID, index, |
| 3090 | &size, &offset, &ecx, &edx); |
| 3091 | memcpy(dest + offset, src, size); |
| 3092 | } |
| 3093 | |
| 3094 | valid -= feature; |
| 3095 | } |
| 3096 | } |
| 3097 | |
| 3098 | static void load_xsave(struct kvm_vcpu *vcpu, u8 *src) |
| 3099 | { |
Ingo Molnar | c47ada3 | 2015-04-30 17:15:32 +0200 | [diff] [blame] | 3100 | struct xregs_state *xsave = &vcpu->arch.guest_fpu.state.xsave; |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 3101 | u64 xstate_bv = *(u64 *)(src + XSAVE_HDR_OFFSET); |
| 3102 | u64 valid; |
| 3103 | |
| 3104 | /* |
| 3105 | * Copy legacy XSAVE area, to avoid complications with CPUID |
| 3106 | * leaves 0 and 1 in the loop below. |
| 3107 | */ |
| 3108 | memcpy(xsave, src, XSAVE_HDR_OFFSET); |
| 3109 | |
| 3110 | /* Set XSTATE_BV and possibly XCOMP_BV. */ |
Ingo Molnar | 400e4b2 | 2015-04-24 10:19:47 +0200 | [diff] [blame] | 3111 | xsave->header.xfeatures = xstate_bv; |
Borislav Petkov | 782511b | 2016-04-04 22:25:03 +0200 | [diff] [blame] | 3112 | if (boot_cpu_has(X86_FEATURE_XSAVES)) |
Ingo Molnar | 3a54450 | 2015-04-24 10:14:36 +0200 | [diff] [blame] | 3113 | xsave->header.xcomp_bv = host_xcr0 | XSTATE_COMPACTION_ENABLED; |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 3114 | |
| 3115 | /* |
| 3116 | * Copy each region from the non-compacted offset to the |
| 3117 | * possibly compacted offset. |
| 3118 | */ |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 3119 | valid = xstate_bv & ~XFEATURE_MASK_FPSSE; |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 3120 | while (valid) { |
| 3121 | u64 feature = valid & -valid; |
| 3122 | int index = fls64(feature) - 1; |
| 3123 | void *dest = get_xsave_addr(xsave, feature); |
| 3124 | |
| 3125 | if (dest) { |
| 3126 | u32 size, offset, ecx, edx; |
| 3127 | cpuid_count(XSTATE_CPUID, index, |
| 3128 | &size, &offset, &ecx, &edx); |
| 3129 | memcpy(dest, src + offset, size); |
Wanpeng Li | ee4100d | 2015-07-09 15:44:52 +0800 | [diff] [blame] | 3130 | } |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 3131 | |
| 3132 | valid -= feature; |
| 3133 | } |
| 3134 | } |
| 3135 | |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3136 | static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu, |
| 3137 | struct kvm_xsave *guest_xsave) |
| 3138 | { |
Borislav Petkov | d366bf7 | 2016-04-04 22:25:02 +0200 | [diff] [blame] | 3139 | if (boot_cpu_has(X86_FEATURE_XSAVE)) { |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 3140 | memset(guest_xsave, 0, sizeof(struct kvm_xsave)); |
| 3141 | fill_xsave((u8 *) guest_xsave->region, vcpu); |
Paolo Bonzini | 4344ee9 | 2013-10-02 16:06:16 +0200 | [diff] [blame] | 3142 | } else { |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3143 | memcpy(guest_xsave->region, |
Ingo Molnar | 7366ed7 | 2015-04-27 04:19:39 +0200 | [diff] [blame] | 3144 | &vcpu->arch.guest_fpu.state.fxsave, |
Ingo Molnar | c47ada3 | 2015-04-30 17:15:32 +0200 | [diff] [blame] | 3145 | sizeof(struct fxregs_state)); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3146 | *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)] = |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 3147 | XFEATURE_MASK_FPSSE; |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3148 | } |
| 3149 | } |
| 3150 | |
| 3151 | static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu, |
| 3152 | struct kvm_xsave *guest_xsave) |
| 3153 | { |
| 3154 | u64 xstate_bv = |
| 3155 | *(u64 *)&guest_xsave->region[XSAVE_HDR_OFFSET / sizeof(u32)]; |
| 3156 | |
Borislav Petkov | d366bf7 | 2016-04-04 22:25:02 +0200 | [diff] [blame] | 3157 | if (boot_cpu_has(X86_FEATURE_XSAVE)) { |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 3158 | /* |
| 3159 | * Here we allow setting states that are not present in |
| 3160 | * CPUID leaf 0xD, index 0, EDX:EAX. This is for compatibility |
| 3161 | * with old userspace. |
| 3162 | */ |
Paolo Bonzini | 4ff4173 | 2014-02-24 12:15:16 +0100 | [diff] [blame] | 3163 | if (xstate_bv & ~kvm_supported_xcr0()) |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 3164 | return -EINVAL; |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 3165 | load_xsave(vcpu, (u8 *)guest_xsave->region); |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 3166 | } else { |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 3167 | if (xstate_bv & ~XFEATURE_MASK_FPSSE) |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3168 | return -EINVAL; |
Ingo Molnar | 7366ed7 | 2015-04-27 04:19:39 +0200 | [diff] [blame] | 3169 | memcpy(&vcpu->arch.guest_fpu.state.fxsave, |
Ingo Molnar | c47ada3 | 2015-04-30 17:15:32 +0200 | [diff] [blame] | 3170 | guest_xsave->region, sizeof(struct fxregs_state)); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3171 | } |
| 3172 | return 0; |
| 3173 | } |
| 3174 | |
| 3175 | static void kvm_vcpu_ioctl_x86_get_xcrs(struct kvm_vcpu *vcpu, |
| 3176 | struct kvm_xcrs *guest_xcrs) |
| 3177 | { |
Borislav Petkov | d366bf7 | 2016-04-04 22:25:02 +0200 | [diff] [blame] | 3178 | if (!boot_cpu_has(X86_FEATURE_XSAVE)) { |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3179 | guest_xcrs->nr_xcrs = 0; |
| 3180 | return; |
| 3181 | } |
| 3182 | |
| 3183 | guest_xcrs->nr_xcrs = 1; |
| 3184 | guest_xcrs->flags = 0; |
| 3185 | guest_xcrs->xcrs[0].xcr = XCR_XFEATURE_ENABLED_MASK; |
| 3186 | guest_xcrs->xcrs[0].value = vcpu->arch.xcr0; |
| 3187 | } |
| 3188 | |
| 3189 | static int kvm_vcpu_ioctl_x86_set_xcrs(struct kvm_vcpu *vcpu, |
| 3190 | struct kvm_xcrs *guest_xcrs) |
| 3191 | { |
| 3192 | int i, r = 0; |
| 3193 | |
Borislav Petkov | d366bf7 | 2016-04-04 22:25:02 +0200 | [diff] [blame] | 3194 | if (!boot_cpu_has(X86_FEATURE_XSAVE)) |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3195 | return -EINVAL; |
| 3196 | |
| 3197 | if (guest_xcrs->nr_xcrs > KVM_MAX_XCRS || guest_xcrs->flags) |
| 3198 | return -EINVAL; |
| 3199 | |
| 3200 | for (i = 0; i < guest_xcrs->nr_xcrs; i++) |
| 3201 | /* Only support XCR0 currently */ |
Paolo Bonzini | c67a04c | 2013-10-17 16:50:47 +0200 | [diff] [blame] | 3202 | if (guest_xcrs->xcrs[i].xcr == XCR_XFEATURE_ENABLED_MASK) { |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3203 | r = __kvm_set_xcr(vcpu, XCR_XFEATURE_ENABLED_MASK, |
Paolo Bonzini | c67a04c | 2013-10-17 16:50:47 +0200 | [diff] [blame] | 3204 | guest_xcrs->xcrs[i].value); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3205 | break; |
| 3206 | } |
| 3207 | if (r) |
| 3208 | r = -EINVAL; |
| 3209 | return r; |
| 3210 | } |
| 3211 | |
Eric B Munson | 1c0b28c | 2012-03-10 14:37:27 -0500 | [diff] [blame] | 3212 | /* |
| 3213 | * kvm_set_guest_paused() indicates to the guest kernel that it has been |
| 3214 | * stopped by the hypervisor. This function will be called from the host only. |
| 3215 | * EINVAL is returned when the host attempts to set the flag for a guest that |
| 3216 | * does not support pv clocks. |
| 3217 | */ |
| 3218 | static int kvm_set_guest_paused(struct kvm_vcpu *vcpu) |
| 3219 | { |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 3220 | if (!vcpu->arch.pv_time_enabled) |
Eric B Munson | 1c0b28c | 2012-03-10 14:37:27 -0500 | [diff] [blame] | 3221 | return -EINVAL; |
Marcelo Tosatti | 51d59c6 | 2012-08-03 15:57:49 -0300 | [diff] [blame] | 3222 | vcpu->arch.pvclock_set_guest_stopped_request = true; |
Eric B Munson | 1c0b28c | 2012-03-10 14:37:27 -0500 | [diff] [blame] | 3223 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
| 3224 | return 0; |
| 3225 | } |
| 3226 | |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 3227 | static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu, |
| 3228 | struct kvm_enable_cap *cap) |
| 3229 | { |
| 3230 | if (cap->flags) |
| 3231 | return -EINVAL; |
| 3232 | |
| 3233 | switch (cap->cap) { |
| 3234 | case KVM_CAP_HYPERV_SYNIC: |
| 3235 | return kvm_hv_activate_synic(vcpu); |
| 3236 | default: |
| 3237 | return -EINVAL; |
| 3238 | } |
| 3239 | } |
| 3240 | |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3241 | long kvm_arch_vcpu_ioctl(struct file *filp, |
| 3242 | unsigned int ioctl, unsigned long arg) |
| 3243 | { |
| 3244 | struct kvm_vcpu *vcpu = filp->private_data; |
| 3245 | void __user *argp = (void __user *)arg; |
| 3246 | int r; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3247 | union { |
| 3248 | struct kvm_lapic_state *lapic; |
| 3249 | struct kvm_xsave *xsave; |
| 3250 | struct kvm_xcrs *xcrs; |
| 3251 | void *buffer; |
| 3252 | } u; |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3253 | |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3254 | u.buffer = NULL; |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3255 | switch (ioctl) { |
| 3256 | case KVM_GET_LAPIC: { |
Marcelo Tosatti | 2204ae3 | 2009-10-29 13:44:16 -0200 | [diff] [blame] | 3257 | r = -EINVAL; |
Paolo Bonzini | bce87cc | 2016-01-08 13:48:51 +0100 | [diff] [blame] | 3258 | if (!lapic_in_kernel(vcpu)) |
Marcelo Tosatti | 2204ae3 | 2009-10-29 13:44:16 -0200 | [diff] [blame] | 3259 | goto out; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3260 | u.lapic = kzalloc(sizeof(struct kvm_lapic_state), GFP_KERNEL); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3261 | |
Dave Hansen | b772ff3 | 2008-08-11 10:01:47 -0700 | [diff] [blame] | 3262 | r = -ENOMEM; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3263 | if (!u.lapic) |
Dave Hansen | b772ff3 | 2008-08-11 10:01:47 -0700 | [diff] [blame] | 3264 | goto out; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3265 | r = kvm_vcpu_ioctl_get_lapic(vcpu, u.lapic); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3266 | if (r) |
| 3267 | goto out; |
| 3268 | r = -EFAULT; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3269 | if (copy_to_user(argp, u.lapic, sizeof(struct kvm_lapic_state))) |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3270 | goto out; |
| 3271 | r = 0; |
| 3272 | break; |
| 3273 | } |
| 3274 | case KVM_SET_LAPIC: { |
Marcelo Tosatti | 2204ae3 | 2009-10-29 13:44:16 -0200 | [diff] [blame] | 3275 | r = -EINVAL; |
Paolo Bonzini | bce87cc | 2016-01-08 13:48:51 +0100 | [diff] [blame] | 3276 | if (!lapic_in_kernel(vcpu)) |
Marcelo Tosatti | 2204ae3 | 2009-10-29 13:44:16 -0200 | [diff] [blame] | 3277 | goto out; |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 3278 | u.lapic = memdup_user(argp, sizeof(*u.lapic)); |
Guo Chao | 1859541 | 2012-11-02 18:33:21 +0800 | [diff] [blame] | 3279 | if (IS_ERR(u.lapic)) |
| 3280 | return PTR_ERR(u.lapic); |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 3281 | |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3282 | r = kvm_vcpu_ioctl_set_lapic(vcpu, u.lapic); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3283 | break; |
| 3284 | } |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 3285 | case KVM_INTERRUPT: { |
| 3286 | struct kvm_interrupt irq; |
| 3287 | |
| 3288 | r = -EFAULT; |
| 3289 | if (copy_from_user(&irq, argp, sizeof irq)) |
| 3290 | goto out; |
| 3291 | r = kvm_vcpu_ioctl_interrupt(vcpu, &irq); |
Zhang Xiantao | f77bc6a | 2007-11-21 04:36:41 +0800 | [diff] [blame] | 3292 | break; |
| 3293 | } |
Jan Kiszka | c4abb7c | 2008-09-26 09:30:55 +0200 | [diff] [blame] | 3294 | case KVM_NMI: { |
| 3295 | r = kvm_vcpu_ioctl_nmi(vcpu); |
Jan Kiszka | c4abb7c | 2008-09-26 09:30:55 +0200 | [diff] [blame] | 3296 | break; |
| 3297 | } |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 3298 | case KVM_SMI: { |
| 3299 | r = kvm_vcpu_ioctl_smi(vcpu); |
| 3300 | break; |
| 3301 | } |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3302 | case KVM_SET_CPUID: { |
| 3303 | struct kvm_cpuid __user *cpuid_arg = argp; |
| 3304 | struct kvm_cpuid cpuid; |
| 3305 | |
| 3306 | r = -EFAULT; |
| 3307 | if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid)) |
| 3308 | goto out; |
| 3309 | r = kvm_vcpu_ioctl_set_cpuid(vcpu, &cpuid, cpuid_arg->entries); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3310 | break; |
| 3311 | } |
Dan Kenigsberg | 0771671 | 2007-11-21 17:10:04 +0200 | [diff] [blame] | 3312 | case KVM_SET_CPUID2: { |
| 3313 | struct kvm_cpuid2 __user *cpuid_arg = argp; |
| 3314 | struct kvm_cpuid2 cpuid; |
| 3315 | |
| 3316 | r = -EFAULT; |
| 3317 | if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid)) |
| 3318 | goto out; |
| 3319 | r = kvm_vcpu_ioctl_set_cpuid2(vcpu, &cpuid, |
Amit Shah | 1935547 | 2009-01-14 16:56:00 +0000 | [diff] [blame] | 3320 | cpuid_arg->entries); |
Dan Kenigsberg | 0771671 | 2007-11-21 17:10:04 +0200 | [diff] [blame] | 3321 | break; |
| 3322 | } |
| 3323 | case KVM_GET_CPUID2: { |
| 3324 | struct kvm_cpuid2 __user *cpuid_arg = argp; |
| 3325 | struct kvm_cpuid2 cpuid; |
| 3326 | |
| 3327 | r = -EFAULT; |
| 3328 | if (copy_from_user(&cpuid, cpuid_arg, sizeof cpuid)) |
| 3329 | goto out; |
| 3330 | r = kvm_vcpu_ioctl_get_cpuid2(vcpu, &cpuid, |
Amit Shah | 1935547 | 2009-01-14 16:56:00 +0000 | [diff] [blame] | 3331 | cpuid_arg->entries); |
Dan Kenigsberg | 0771671 | 2007-11-21 17:10:04 +0200 | [diff] [blame] | 3332 | if (r) |
| 3333 | goto out; |
| 3334 | r = -EFAULT; |
| 3335 | if (copy_to_user(cpuid_arg, &cpuid, sizeof cpuid)) |
| 3336 | goto out; |
| 3337 | r = 0; |
| 3338 | break; |
| 3339 | } |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3340 | case KVM_GET_MSRS: |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 3341 | r = msr_io(vcpu, argp, do_get_msr, 1); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3342 | break; |
| 3343 | case KVM_SET_MSRS: |
| 3344 | r = msr_io(vcpu, argp, do_set_msr, 0); |
| 3345 | break; |
Avi Kivity | b209749f | 2007-10-22 16:50:39 +0200 | [diff] [blame] | 3346 | case KVM_TPR_ACCESS_REPORTING: { |
| 3347 | struct kvm_tpr_access_ctl tac; |
| 3348 | |
| 3349 | r = -EFAULT; |
| 3350 | if (copy_from_user(&tac, argp, sizeof tac)) |
| 3351 | goto out; |
| 3352 | r = vcpu_ioctl_tpr_access_reporting(vcpu, &tac); |
| 3353 | if (r) |
| 3354 | goto out; |
| 3355 | r = -EFAULT; |
| 3356 | if (copy_to_user(argp, &tac, sizeof tac)) |
| 3357 | goto out; |
| 3358 | r = 0; |
| 3359 | break; |
| 3360 | }; |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 3361 | case KVM_SET_VAPIC_ADDR: { |
| 3362 | struct kvm_vapic_addr va; |
| 3363 | |
| 3364 | r = -EINVAL; |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 3365 | if (!lapic_in_kernel(vcpu)) |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 3366 | goto out; |
| 3367 | r = -EFAULT; |
| 3368 | if (copy_from_user(&va, argp, sizeof va)) |
| 3369 | goto out; |
Andy Honig | fda4e2e | 2013-11-20 10:23:22 -0800 | [diff] [blame] | 3370 | r = kvm_lapic_set_vapic_addr(vcpu, va.vapic_addr); |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 3371 | break; |
| 3372 | } |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 3373 | case KVM_X86_SETUP_MCE: { |
| 3374 | u64 mcg_cap; |
| 3375 | |
| 3376 | r = -EFAULT; |
| 3377 | if (copy_from_user(&mcg_cap, argp, sizeof mcg_cap)) |
| 3378 | goto out; |
| 3379 | r = kvm_vcpu_ioctl_x86_setup_mce(vcpu, mcg_cap); |
| 3380 | break; |
| 3381 | } |
| 3382 | case KVM_X86_SET_MCE: { |
| 3383 | struct kvm_x86_mce mce; |
| 3384 | |
| 3385 | r = -EFAULT; |
| 3386 | if (copy_from_user(&mce, argp, sizeof mce)) |
| 3387 | goto out; |
| 3388 | r = kvm_vcpu_ioctl_x86_set_mce(vcpu, &mce); |
| 3389 | break; |
| 3390 | } |
Jan Kiszka | 3cfc309 | 2009-11-12 01:04:25 +0100 | [diff] [blame] | 3391 | case KVM_GET_VCPU_EVENTS: { |
| 3392 | struct kvm_vcpu_events events; |
| 3393 | |
| 3394 | kvm_vcpu_ioctl_x86_get_vcpu_events(vcpu, &events); |
| 3395 | |
| 3396 | r = -EFAULT; |
| 3397 | if (copy_to_user(argp, &events, sizeof(struct kvm_vcpu_events))) |
| 3398 | break; |
| 3399 | r = 0; |
| 3400 | break; |
| 3401 | } |
| 3402 | case KVM_SET_VCPU_EVENTS: { |
| 3403 | struct kvm_vcpu_events events; |
| 3404 | |
| 3405 | r = -EFAULT; |
| 3406 | if (copy_from_user(&events, argp, sizeof(struct kvm_vcpu_events))) |
| 3407 | break; |
| 3408 | |
| 3409 | r = kvm_vcpu_ioctl_x86_set_vcpu_events(vcpu, &events); |
| 3410 | break; |
| 3411 | } |
Jan Kiszka | a1efbe7 | 2010-02-15 10:45:43 +0100 | [diff] [blame] | 3412 | case KVM_GET_DEBUGREGS: { |
| 3413 | struct kvm_debugregs dbgregs; |
| 3414 | |
| 3415 | kvm_vcpu_ioctl_x86_get_debugregs(vcpu, &dbgregs); |
| 3416 | |
| 3417 | r = -EFAULT; |
| 3418 | if (copy_to_user(argp, &dbgregs, |
| 3419 | sizeof(struct kvm_debugregs))) |
| 3420 | break; |
| 3421 | r = 0; |
| 3422 | break; |
| 3423 | } |
| 3424 | case KVM_SET_DEBUGREGS: { |
| 3425 | struct kvm_debugregs dbgregs; |
| 3426 | |
| 3427 | r = -EFAULT; |
| 3428 | if (copy_from_user(&dbgregs, argp, |
| 3429 | sizeof(struct kvm_debugregs))) |
| 3430 | break; |
| 3431 | |
| 3432 | r = kvm_vcpu_ioctl_x86_set_debugregs(vcpu, &dbgregs); |
| 3433 | break; |
| 3434 | } |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3435 | case KVM_GET_XSAVE: { |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3436 | u.xsave = kzalloc(sizeof(struct kvm_xsave), GFP_KERNEL); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3437 | r = -ENOMEM; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3438 | if (!u.xsave) |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3439 | break; |
| 3440 | |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3441 | kvm_vcpu_ioctl_x86_get_xsave(vcpu, u.xsave); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3442 | |
| 3443 | r = -EFAULT; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3444 | if (copy_to_user(argp, u.xsave, sizeof(struct kvm_xsave))) |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3445 | break; |
| 3446 | r = 0; |
| 3447 | break; |
| 3448 | } |
| 3449 | case KVM_SET_XSAVE: { |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 3450 | u.xsave = memdup_user(argp, sizeof(*u.xsave)); |
Guo Chao | 1859541 | 2012-11-02 18:33:21 +0800 | [diff] [blame] | 3451 | if (IS_ERR(u.xsave)) |
| 3452 | return PTR_ERR(u.xsave); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3453 | |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3454 | r = kvm_vcpu_ioctl_x86_set_xsave(vcpu, u.xsave); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3455 | break; |
| 3456 | } |
| 3457 | case KVM_GET_XCRS: { |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3458 | u.xcrs = kzalloc(sizeof(struct kvm_xcrs), GFP_KERNEL); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3459 | r = -ENOMEM; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3460 | if (!u.xcrs) |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3461 | break; |
| 3462 | |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3463 | kvm_vcpu_ioctl_x86_get_xcrs(vcpu, u.xcrs); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3464 | |
| 3465 | r = -EFAULT; |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3466 | if (copy_to_user(argp, u.xcrs, |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3467 | sizeof(struct kvm_xcrs))) |
| 3468 | break; |
| 3469 | r = 0; |
| 3470 | break; |
| 3471 | } |
| 3472 | case KVM_SET_XCRS: { |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 3473 | u.xcrs = memdup_user(argp, sizeof(*u.xcrs)); |
Guo Chao | 1859541 | 2012-11-02 18:33:21 +0800 | [diff] [blame] | 3474 | if (IS_ERR(u.xcrs)) |
| 3475 | return PTR_ERR(u.xcrs); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3476 | |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3477 | r = kvm_vcpu_ioctl_x86_set_xcrs(vcpu, u.xcrs); |
Sheng Yang | 2d5b5a6 | 2010-06-13 17:29:39 +0800 | [diff] [blame] | 3478 | break; |
| 3479 | } |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 3480 | case KVM_SET_TSC_KHZ: { |
| 3481 | u32 user_tsc_khz; |
| 3482 | |
| 3483 | r = -EINVAL; |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 3484 | user_tsc_khz = (u32)arg; |
| 3485 | |
| 3486 | if (user_tsc_khz >= kvm_max_guest_tsc_khz) |
| 3487 | goto out; |
| 3488 | |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 3489 | if (user_tsc_khz == 0) |
| 3490 | user_tsc_khz = tsc_khz; |
| 3491 | |
Haozhong Zhang | 381d585 | 2015-10-20 15:39:04 +0800 | [diff] [blame] | 3492 | if (!kvm_set_tsc_khz(vcpu, user_tsc_khz)) |
| 3493 | r = 0; |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 3494 | |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 3495 | goto out; |
| 3496 | } |
| 3497 | case KVM_GET_TSC_KHZ: { |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 3498 | r = vcpu->arch.virtual_tsc_khz; |
Joerg Roedel | 92a1f12 | 2011-03-25 09:44:51 +0100 | [diff] [blame] | 3499 | goto out; |
| 3500 | } |
Eric B Munson | 1c0b28c | 2012-03-10 14:37:27 -0500 | [diff] [blame] | 3501 | case KVM_KVMCLOCK_CTRL: { |
| 3502 | r = kvm_set_guest_paused(vcpu); |
| 3503 | goto out; |
| 3504 | } |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 3505 | case KVM_ENABLE_CAP: { |
| 3506 | struct kvm_enable_cap cap; |
| 3507 | |
| 3508 | r = -EFAULT; |
| 3509 | if (copy_from_user(&cap, argp, sizeof(cap))) |
| 3510 | goto out; |
| 3511 | r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap); |
| 3512 | break; |
| 3513 | } |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3514 | default: |
| 3515 | r = -EINVAL; |
| 3516 | } |
| 3517 | out: |
Avi Kivity | d1ac91d | 2010-06-20 15:54:43 +0300 | [diff] [blame] | 3518 | kfree(u.buffer); |
Carsten Otte | 313a3dc | 2007-10-11 19:16:52 +0200 | [diff] [blame] | 3519 | return r; |
| 3520 | } |
| 3521 | |
Carsten Otte | 5b1c149 | 2012-01-04 10:25:23 +0100 | [diff] [blame] | 3522 | int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf) |
| 3523 | { |
| 3524 | return VM_FAULT_SIGBUS; |
| 3525 | } |
| 3526 | |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3527 | static int kvm_vm_ioctl_set_tss_addr(struct kvm *kvm, unsigned long addr) |
| 3528 | { |
| 3529 | int ret; |
| 3530 | |
| 3531 | if (addr > (unsigned int)(-3 * PAGE_SIZE)) |
Guo Chao | 951179c | 2012-11-02 18:33:22 +0800 | [diff] [blame] | 3532 | return -EINVAL; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3533 | ret = kvm_x86_ops->set_tss_addr(kvm, addr); |
| 3534 | return ret; |
| 3535 | } |
| 3536 | |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 3537 | static int kvm_vm_ioctl_set_identity_map_addr(struct kvm *kvm, |
| 3538 | u64 ident_addr) |
| 3539 | { |
| 3540 | kvm->arch.ept_identity_map_addr = ident_addr; |
| 3541 | return 0; |
| 3542 | } |
| 3543 | |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3544 | static int kvm_vm_ioctl_set_nr_mmu_pages(struct kvm *kvm, |
| 3545 | u32 kvm_nr_mmu_pages) |
| 3546 | { |
| 3547 | if (kvm_nr_mmu_pages < KVM_MIN_ALLOC_MMU_PAGES) |
| 3548 | return -EINVAL; |
| 3549 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 3550 | mutex_lock(&kvm->slots_lock); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3551 | |
| 3552 | kvm_mmu_change_mmu_pages(kvm, kvm_nr_mmu_pages); |
Zhang Xiantao | f05e70a | 2007-12-14 10:01:48 +0800 | [diff] [blame] | 3553 | kvm->arch.n_requested_mmu_pages = kvm_nr_mmu_pages; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3554 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 3555 | mutex_unlock(&kvm->slots_lock); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3556 | return 0; |
| 3557 | } |
| 3558 | |
| 3559 | static int kvm_vm_ioctl_get_nr_mmu_pages(struct kvm *kvm) |
| 3560 | { |
Dave Hansen | 39de71e | 2010-08-19 18:11:14 -0700 | [diff] [blame] | 3561 | return kvm->arch.n_max_mmu_pages; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3562 | } |
| 3563 | |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3564 | static int kvm_vm_ioctl_get_irqchip(struct kvm *kvm, struct kvm_irqchip *chip) |
| 3565 | { |
| 3566 | int r; |
| 3567 | |
| 3568 | r = 0; |
| 3569 | switch (chip->chip_id) { |
| 3570 | case KVM_IRQCHIP_PIC_MASTER: |
| 3571 | memcpy(&chip->chip.pic, |
| 3572 | &pic_irqchip(kvm)->pics[0], |
| 3573 | sizeof(struct kvm_pic_state)); |
| 3574 | break; |
| 3575 | case KVM_IRQCHIP_PIC_SLAVE: |
| 3576 | memcpy(&chip->chip.pic, |
| 3577 | &pic_irqchip(kvm)->pics[1], |
| 3578 | sizeof(struct kvm_pic_state)); |
| 3579 | break; |
| 3580 | case KVM_IRQCHIP_IOAPIC: |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 3581 | r = kvm_get_ioapic(kvm, &chip->chip.ioapic); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3582 | break; |
| 3583 | default: |
| 3584 | r = -EINVAL; |
| 3585 | break; |
| 3586 | } |
| 3587 | return r; |
| 3588 | } |
| 3589 | |
| 3590 | static int kvm_vm_ioctl_set_irqchip(struct kvm *kvm, struct kvm_irqchip *chip) |
| 3591 | { |
| 3592 | int r; |
| 3593 | |
| 3594 | r = 0; |
| 3595 | switch (chip->chip_id) { |
| 3596 | case KVM_IRQCHIP_PIC_MASTER: |
Avi Kivity | f4f5105 | 2010-09-19 18:44:07 +0200 | [diff] [blame] | 3597 | spin_lock(&pic_irqchip(kvm)->lock); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3598 | memcpy(&pic_irqchip(kvm)->pics[0], |
| 3599 | &chip->chip.pic, |
| 3600 | sizeof(struct kvm_pic_state)); |
Avi Kivity | f4f5105 | 2010-09-19 18:44:07 +0200 | [diff] [blame] | 3601 | spin_unlock(&pic_irqchip(kvm)->lock); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3602 | break; |
| 3603 | case KVM_IRQCHIP_PIC_SLAVE: |
Avi Kivity | f4f5105 | 2010-09-19 18:44:07 +0200 | [diff] [blame] | 3604 | spin_lock(&pic_irqchip(kvm)->lock); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3605 | memcpy(&pic_irqchip(kvm)->pics[1], |
| 3606 | &chip->chip.pic, |
| 3607 | sizeof(struct kvm_pic_state)); |
Avi Kivity | f4f5105 | 2010-09-19 18:44:07 +0200 | [diff] [blame] | 3608 | spin_unlock(&pic_irqchip(kvm)->lock); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3609 | break; |
| 3610 | case KVM_IRQCHIP_IOAPIC: |
Gleb Natapov | eba0226 | 2009-08-24 11:54:25 +0300 | [diff] [blame] | 3611 | r = kvm_set_ioapic(kvm, &chip->chip.ioapic); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3612 | break; |
| 3613 | default: |
| 3614 | r = -EINVAL; |
| 3615 | break; |
| 3616 | } |
| 3617 | kvm_pic_update_irq(pic_irqchip(kvm)); |
| 3618 | return r; |
| 3619 | } |
| 3620 | |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3621 | static int kvm_vm_ioctl_get_pit(struct kvm *kvm, struct kvm_pit_state *ps) |
| 3622 | { |
Radim Krčmář | 34f3941 | 2016-03-02 22:56:50 +0100 | [diff] [blame] | 3623 | struct kvm_kpit_state *kps = &kvm->arch.vpit->pit_state; |
| 3624 | |
| 3625 | BUILD_BUG_ON(sizeof(*ps) != sizeof(kps->channels)); |
| 3626 | |
| 3627 | mutex_lock(&kps->lock); |
| 3628 | memcpy(ps, &kps->channels, sizeof(*ps)); |
| 3629 | mutex_unlock(&kps->lock); |
Saurabh Sengar | 2da29bc | 2015-10-30 12:56:11 +0530 | [diff] [blame] | 3630 | return 0; |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3631 | } |
| 3632 | |
| 3633 | static int kvm_vm_ioctl_set_pit(struct kvm *kvm, struct kvm_pit_state *ps) |
| 3634 | { |
Andrew Honig | 0185604 | 2015-11-18 14:50:23 -0800 | [diff] [blame] | 3635 | int i; |
Radim Krčmář | 09edea7 | 2016-03-02 22:56:43 +0100 | [diff] [blame] | 3636 | struct kvm_pit *pit = kvm->arch.vpit; |
| 3637 | |
| 3638 | mutex_lock(&pit->pit_state.lock); |
Radim Krčmář | 34f3941 | 2016-03-02 22:56:50 +0100 | [diff] [blame] | 3639 | memcpy(&pit->pit_state.channels, ps, sizeof(*ps)); |
Andrew Honig | 0185604 | 2015-11-18 14:50:23 -0800 | [diff] [blame] | 3640 | for (i = 0; i < 3; i++) |
Radim Krčmář | 09edea7 | 2016-03-02 22:56:43 +0100 | [diff] [blame] | 3641 | kvm_pit_load_count(pit, i, ps->channels[i].count, 0); |
| 3642 | mutex_unlock(&pit->pit_state.lock); |
Saurabh Sengar | 2da29bc | 2015-10-30 12:56:11 +0530 | [diff] [blame] | 3643 | return 0; |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 3644 | } |
| 3645 | |
| 3646 | static int kvm_vm_ioctl_get_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps) |
| 3647 | { |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 3648 | mutex_lock(&kvm->arch.vpit->pit_state.lock); |
| 3649 | memcpy(ps->channels, &kvm->arch.vpit->pit_state.channels, |
| 3650 | sizeof(ps->channels)); |
| 3651 | ps->flags = kvm->arch.vpit->pit_state.flags; |
| 3652 | mutex_unlock(&kvm->arch.vpit->pit_state.lock); |
Vasiliy Kulikov | 97e69aa | 2010-10-30 22:54:47 +0400 | [diff] [blame] | 3653 | memset(&ps->reserved, 0, sizeof(ps->reserved)); |
Saurabh Sengar | 2da29bc | 2015-10-30 12:56:11 +0530 | [diff] [blame] | 3654 | return 0; |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 3655 | } |
| 3656 | |
| 3657 | static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps) |
| 3658 | { |
Saurabh Sengar | 2da29bc | 2015-10-30 12:56:11 +0530 | [diff] [blame] | 3659 | int start = 0; |
Andrew Honig | 0185604 | 2015-11-18 14:50:23 -0800 | [diff] [blame] | 3660 | int i; |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 3661 | u32 prev_legacy, cur_legacy; |
Radim Krčmář | 09edea7 | 2016-03-02 22:56:43 +0100 | [diff] [blame] | 3662 | struct kvm_pit *pit = kvm->arch.vpit; |
| 3663 | |
| 3664 | mutex_lock(&pit->pit_state.lock); |
| 3665 | prev_legacy = pit->pit_state.flags & KVM_PIT_FLAGS_HPET_LEGACY; |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 3666 | cur_legacy = ps->flags & KVM_PIT_FLAGS_HPET_LEGACY; |
| 3667 | if (!prev_legacy && cur_legacy) |
| 3668 | start = 1; |
Radim Krčmář | 09edea7 | 2016-03-02 22:56:43 +0100 | [diff] [blame] | 3669 | memcpy(&pit->pit_state.channels, &ps->channels, |
| 3670 | sizeof(pit->pit_state.channels)); |
| 3671 | pit->pit_state.flags = ps->flags; |
Andrew Honig | 0185604 | 2015-11-18 14:50:23 -0800 | [diff] [blame] | 3672 | for (i = 0; i < 3; i++) |
Radim Krčmář | 09edea7 | 2016-03-02 22:56:43 +0100 | [diff] [blame] | 3673 | kvm_pit_load_count(pit, i, pit->pit_state.channels[i].count, |
Paolo Bonzini | e5e57e7 | 2016-01-07 13:50:38 +0100 | [diff] [blame] | 3674 | start && i == 0); |
Radim Krčmář | 09edea7 | 2016-03-02 22:56:43 +0100 | [diff] [blame] | 3675 | mutex_unlock(&pit->pit_state.lock); |
Saurabh Sengar | 2da29bc | 2015-10-30 12:56:11 +0530 | [diff] [blame] | 3676 | return 0; |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3677 | } |
| 3678 | |
Marcelo Tosatti | 52d939a | 2008-12-30 15:55:06 -0200 | [diff] [blame] | 3679 | static int kvm_vm_ioctl_reinject(struct kvm *kvm, |
| 3680 | struct kvm_reinject_control *control) |
| 3681 | { |
Radim Krčmář | 71474e2 | 2016-03-02 22:56:45 +0100 | [diff] [blame] | 3682 | struct kvm_pit *pit = kvm->arch.vpit; |
| 3683 | |
| 3684 | if (!pit) |
Marcelo Tosatti | 52d939a | 2008-12-30 15:55:06 -0200 | [diff] [blame] | 3685 | return -ENXIO; |
Radim Krčmář | b39c90b | 2016-03-02 22:56:44 +0100 | [diff] [blame] | 3686 | |
Radim Krčmář | 71474e2 | 2016-03-02 22:56:45 +0100 | [diff] [blame] | 3687 | /* pit->pit_state.lock was overloaded to prevent userspace from getting |
| 3688 | * an inconsistent state after running multiple KVM_REINJECT_CONTROL |
| 3689 | * ioctls in parallel. Use a separate lock if that ioctl isn't rare. |
| 3690 | */ |
| 3691 | mutex_lock(&pit->pit_state.lock); |
| 3692 | kvm_pit_set_reinject(pit, control->pit_reinject); |
| 3693 | mutex_unlock(&pit->pit_state.lock); |
Radim Krčmář | b39c90b | 2016-03-02 22:56:44 +0100 | [diff] [blame] | 3694 | |
Marcelo Tosatti | 52d939a | 2008-12-30 15:55:06 -0200 | [diff] [blame] | 3695 | return 0; |
| 3696 | } |
| 3697 | |
Takuya Yoshikawa | 95d4c16 | 2011-11-14 18:24:50 +0900 | [diff] [blame] | 3698 | /** |
Takuya Yoshikawa | 60c3461 | 2012-03-03 14:21:48 +0900 | [diff] [blame] | 3699 | * kvm_vm_ioctl_get_dirty_log - get and clear the log of dirty pages in a slot |
| 3700 | * @kvm: kvm instance |
| 3701 | * @log: slot id and address to which we copy the log |
Takuya Yoshikawa | 95d4c16 | 2011-11-14 18:24:50 +0900 | [diff] [blame] | 3702 | * |
Paolo Bonzini | e108ff2 | 2015-01-15 15:58:54 -0800 | [diff] [blame] | 3703 | * Steps 1-4 below provide general overview of dirty page logging. See |
| 3704 | * kvm_get_dirty_log_protect() function description for additional details. |
| 3705 | * |
| 3706 | * We call kvm_get_dirty_log_protect() to handle steps 1-3, upon return we |
| 3707 | * always flush the TLB (step 4) even if previous step failed and the dirty |
| 3708 | * bitmap may be corrupt. Regardless of previous outcome the KVM logging API |
| 3709 | * does not preclude user space subsequent dirty log read. Flushing TLB ensures |
| 3710 | * writes will be marked dirty for next log read. |
Takuya Yoshikawa | 95d4c16 | 2011-11-14 18:24:50 +0900 | [diff] [blame] | 3711 | * |
Takuya Yoshikawa | 60c3461 | 2012-03-03 14:21:48 +0900 | [diff] [blame] | 3712 | * 1. Take a snapshot of the bit and clear it if needed. |
| 3713 | * 2. Write protect the corresponding page. |
Paolo Bonzini | e108ff2 | 2015-01-15 15:58:54 -0800 | [diff] [blame] | 3714 | * 3. Copy the snapshot to the userspace. |
| 3715 | * 4. Flush TLB's if needed. |
Takuya Yoshikawa | 95d4c16 | 2011-11-14 18:24:50 +0900 | [diff] [blame] | 3716 | */ |
Takuya Yoshikawa | 60c3461 | 2012-03-03 14:21:48 +0900 | [diff] [blame] | 3717 | 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] | 3718 | { |
Takuya Yoshikawa | 60c3461 | 2012-03-03 14:21:48 +0900 | [diff] [blame] | 3719 | bool is_dirty = false; |
Paolo Bonzini | e108ff2 | 2015-01-15 15:58:54 -0800 | [diff] [blame] | 3720 | int r; |
Zhang Xiantao | 5bb064d | 2007-11-18 20:29:43 +0800 | [diff] [blame] | 3721 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 3722 | mutex_lock(&kvm->slots_lock); |
Zhang Xiantao | 5bb064d | 2007-11-18 20:29:43 +0800 | [diff] [blame] | 3723 | |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 3724 | /* |
| 3725 | * Flush potentially hardware-cached dirty pages to dirty_bitmap. |
| 3726 | */ |
| 3727 | if (kvm_x86_ops->flush_log_dirty) |
| 3728 | kvm_x86_ops->flush_log_dirty(kvm); |
| 3729 | |
Paolo Bonzini | e108ff2 | 2015-01-15 15:58:54 -0800 | [diff] [blame] | 3730 | r = kvm_get_dirty_log_protect(kvm, log, &is_dirty); |
Xiao Guangrong | 198c74f | 2014-04-17 17:06:16 +0800 | [diff] [blame] | 3731 | |
| 3732 | /* |
| 3733 | * All the TLBs can be flushed out of mmu lock, see the comments in |
| 3734 | * kvm_mmu_slot_remove_write_access(). |
| 3735 | */ |
Paolo Bonzini | e108ff2 | 2015-01-15 15:58:54 -0800 | [diff] [blame] | 3736 | lockdep_assert_held(&kvm->slots_lock); |
Xiao Guangrong | 198c74f | 2014-04-17 17:06:16 +0800 | [diff] [blame] | 3737 | if (is_dirty) |
| 3738 | kvm_flush_remote_tlbs(kvm); |
| 3739 | |
Marcelo Tosatti | 79fac95 | 2009-12-23 14:35:26 -0200 | [diff] [blame] | 3740 | mutex_unlock(&kvm->slots_lock); |
Zhang Xiantao | 5bb064d | 2007-11-18 20:29:43 +0800 | [diff] [blame] | 3741 | return r; |
| 3742 | } |
| 3743 | |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 3744 | int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_event, |
| 3745 | bool line_status) |
Christoffer Dall | 23d43cf | 2012-07-24 08:51:20 -0400 | [diff] [blame] | 3746 | { |
| 3747 | if (!irqchip_in_kernel(kvm)) |
| 3748 | return -ENXIO; |
| 3749 | |
| 3750 | irq_event->status = kvm_set_irq(kvm, KVM_USERSPACE_IRQ_SOURCE_ID, |
Yang Zhang | aa2fbe6 | 2013-04-11 19:21:40 +0800 | [diff] [blame] | 3751 | irq_event->irq, irq_event->level, |
| 3752 | line_status); |
Christoffer Dall | 23d43cf | 2012-07-24 08:51:20 -0400 | [diff] [blame] | 3753 | return 0; |
| 3754 | } |
| 3755 | |
Nadav Amit | 90de4a1 | 2015-04-13 01:53:41 +0300 | [diff] [blame] | 3756 | static int kvm_vm_ioctl_enable_cap(struct kvm *kvm, |
| 3757 | struct kvm_enable_cap *cap) |
| 3758 | { |
| 3759 | int r; |
| 3760 | |
| 3761 | if (cap->flags) |
| 3762 | return -EINVAL; |
| 3763 | |
| 3764 | switch (cap->cap) { |
| 3765 | case KVM_CAP_DISABLE_QUIRKS: |
| 3766 | kvm->arch.disabled_quirks = cap->args[0]; |
| 3767 | r = 0; |
| 3768 | break; |
Steve Rutherford | 49df639 | 2015-07-29 23:21:40 -0700 | [diff] [blame] | 3769 | case KVM_CAP_SPLIT_IRQCHIP: { |
| 3770 | mutex_lock(&kvm->lock); |
Steve Rutherford | b053b2a | 2015-07-29 23:32:35 -0700 | [diff] [blame] | 3771 | r = -EINVAL; |
| 3772 | if (cap->args[0] > MAX_NR_RESERVED_IOAPIC_PINS) |
| 3773 | goto split_irqchip_unlock; |
Steve Rutherford | 49df639 | 2015-07-29 23:21:40 -0700 | [diff] [blame] | 3774 | r = -EEXIST; |
| 3775 | if (irqchip_in_kernel(kvm)) |
| 3776 | goto split_irqchip_unlock; |
| 3777 | if (atomic_read(&kvm->online_vcpus)) |
| 3778 | goto split_irqchip_unlock; |
| 3779 | r = kvm_setup_empty_irq_routing(kvm); |
| 3780 | if (r) |
| 3781 | goto split_irqchip_unlock; |
| 3782 | /* Pairs with irqchip_in_kernel. */ |
| 3783 | smp_wmb(); |
| 3784 | kvm->arch.irqchip_split = true; |
Steve Rutherford | b053b2a | 2015-07-29 23:32:35 -0700 | [diff] [blame] | 3785 | kvm->arch.nr_reserved_ioapic_pins = cap->args[0]; |
Steve Rutherford | 49df639 | 2015-07-29 23:21:40 -0700 | [diff] [blame] | 3786 | r = 0; |
| 3787 | split_irqchip_unlock: |
| 3788 | mutex_unlock(&kvm->lock); |
| 3789 | break; |
| 3790 | } |
Nadav Amit | 90de4a1 | 2015-04-13 01:53:41 +0300 | [diff] [blame] | 3791 | default: |
| 3792 | r = -EINVAL; |
| 3793 | break; |
| 3794 | } |
| 3795 | return r; |
| 3796 | } |
| 3797 | |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3798 | long kvm_arch_vm_ioctl(struct file *filp, |
| 3799 | unsigned int ioctl, unsigned long arg) |
| 3800 | { |
| 3801 | struct kvm *kvm = filp->private_data; |
| 3802 | void __user *argp = (void __user *)arg; |
Avi Kivity | 367e131 | 2009-08-26 14:57:07 +0300 | [diff] [blame] | 3803 | int r = -ENOTTY; |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 3804 | /* |
| 3805 | * This union makes it completely explicit to gcc-3.x |
| 3806 | * that these two variables' stack usage should be |
| 3807 | * combined, not added together. |
| 3808 | */ |
| 3809 | union { |
| 3810 | struct kvm_pit_state ps; |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 3811 | struct kvm_pit_state2 ps2; |
Jan Kiszka | c5ff41c | 2009-05-14 22:42:53 +0200 | [diff] [blame] | 3812 | struct kvm_pit_config pit_config; |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 3813 | } u; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3814 | |
| 3815 | switch (ioctl) { |
| 3816 | case KVM_SET_TSS_ADDR: |
| 3817 | r = kvm_vm_ioctl_set_tss_addr(kvm, arg); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3818 | break; |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 3819 | case KVM_SET_IDENTITY_MAP_ADDR: { |
| 3820 | u64 ident_addr; |
| 3821 | |
| 3822 | r = -EFAULT; |
| 3823 | if (copy_from_user(&ident_addr, argp, sizeof ident_addr)) |
| 3824 | goto out; |
| 3825 | r = kvm_vm_ioctl_set_identity_map_addr(kvm, ident_addr); |
Sheng Yang | b927a3c | 2009-07-21 10:42:48 +0800 | [diff] [blame] | 3826 | break; |
| 3827 | } |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3828 | case KVM_SET_NR_MMU_PAGES: |
| 3829 | r = kvm_vm_ioctl_set_nr_mmu_pages(kvm, arg); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3830 | break; |
| 3831 | case KVM_GET_NR_MMU_PAGES: |
| 3832 | r = kvm_vm_ioctl_get_nr_mmu_pages(kvm); |
| 3833 | break; |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 3834 | case KVM_CREATE_IRQCHIP: { |
| 3835 | struct kvm_pic *vpic; |
| 3836 | |
| 3837 | mutex_lock(&kvm->lock); |
| 3838 | r = -EEXIST; |
| 3839 | if (kvm->arch.vpic) |
| 3840 | goto create_irqchip_unlock; |
Avi Kivity | 3e51570 | 2012-03-05 14:23:29 +0200 | [diff] [blame] | 3841 | r = -EINVAL; |
| 3842 | if (atomic_read(&kvm->online_vcpus)) |
| 3843 | goto create_irqchip_unlock; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3844 | r = -ENOMEM; |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 3845 | vpic = kvm_create_pic(kvm); |
| 3846 | if (vpic) { |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3847 | r = kvm_ioapic_init(kvm); |
| 3848 | if (r) { |
Takuya Yoshikawa | 175504c | 2010-12-16 01:41:37 +0900 | [diff] [blame] | 3849 | mutex_lock(&kvm->slots_lock); |
Paolo Bonzini | 71ba994 | 2015-07-29 12:31:15 +0200 | [diff] [blame] | 3850 | kvm_destroy_pic(vpic); |
Takuya Yoshikawa | 175504c | 2010-12-16 01:41:37 +0900 | [diff] [blame] | 3851 | mutex_unlock(&kvm->slots_lock); |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 3852 | goto create_irqchip_unlock; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3853 | } |
| 3854 | } else |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 3855 | goto create_irqchip_unlock; |
Avi Kivity | 399ec80 | 2008-11-19 13:58:46 +0200 | [diff] [blame] | 3856 | r = kvm_setup_default_irq_routing(kvm); |
| 3857 | if (r) { |
Takuya Yoshikawa | 175504c | 2010-12-16 01:41:37 +0900 | [diff] [blame] | 3858 | mutex_lock(&kvm->slots_lock); |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 3859 | mutex_lock(&kvm->irq_lock); |
Wei Yongjun | 72bb2fc | 2010-02-09 10:33:03 +0800 | [diff] [blame] | 3860 | kvm_ioapic_destroy(kvm); |
Paolo Bonzini | 71ba994 | 2015-07-29 12:31:15 +0200 | [diff] [blame] | 3861 | kvm_destroy_pic(vpic); |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 3862 | mutex_unlock(&kvm->irq_lock); |
Takuya Yoshikawa | 175504c | 2010-12-16 01:41:37 +0900 | [diff] [blame] | 3863 | mutex_unlock(&kvm->slots_lock); |
Paolo Bonzini | 71ba994 | 2015-07-29 12:31:15 +0200 | [diff] [blame] | 3864 | goto create_irqchip_unlock; |
Avi Kivity | 399ec80 | 2008-11-19 13:58:46 +0200 | [diff] [blame] | 3865 | } |
Paolo Bonzini | 71ba994 | 2015-07-29 12:31:15 +0200 | [diff] [blame] | 3866 | /* Write kvm->irq_routing before kvm->arch.vpic. */ |
| 3867 | smp_wmb(); |
| 3868 | kvm->arch.vpic = vpic; |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 3869 | create_irqchip_unlock: |
| 3870 | mutex_unlock(&kvm->lock); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3871 | break; |
Marcelo Tosatti | 3ddea12 | 2009-10-29 13:44:15 -0200 | [diff] [blame] | 3872 | } |
Sheng Yang | 7837699 | 2008-01-28 05:10:22 +0800 | [diff] [blame] | 3873 | case KVM_CREATE_PIT: |
Jan Kiszka | c5ff41c | 2009-05-14 22:42:53 +0200 | [diff] [blame] | 3874 | u.pit_config.flags = KVM_PIT_SPEAKER_DUMMY; |
| 3875 | goto create_pit; |
| 3876 | case KVM_CREATE_PIT2: |
| 3877 | r = -EFAULT; |
| 3878 | if (copy_from_user(&u.pit_config, argp, |
| 3879 | sizeof(struct kvm_pit_config))) |
| 3880 | goto out; |
| 3881 | create_pit: |
Paolo Bonzini | 250715a | 2016-06-01 14:09:24 +0200 | [diff] [blame^] | 3882 | mutex_lock(&kvm->lock); |
Avi Kivity | 269e05e | 2009-01-05 15:21:42 +0200 | [diff] [blame] | 3883 | r = -EEXIST; |
| 3884 | if (kvm->arch.vpit) |
| 3885 | goto create_pit_unlock; |
Sheng Yang | 7837699 | 2008-01-28 05:10:22 +0800 | [diff] [blame] | 3886 | r = -ENOMEM; |
Jan Kiszka | c5ff41c | 2009-05-14 22:42:53 +0200 | [diff] [blame] | 3887 | kvm->arch.vpit = kvm_create_pit(kvm, u.pit_config.flags); |
Sheng Yang | 7837699 | 2008-01-28 05:10:22 +0800 | [diff] [blame] | 3888 | if (kvm->arch.vpit) |
| 3889 | r = 0; |
Avi Kivity | 269e05e | 2009-01-05 15:21:42 +0200 | [diff] [blame] | 3890 | create_pit_unlock: |
Paolo Bonzini | 250715a | 2016-06-01 14:09:24 +0200 | [diff] [blame^] | 3891 | mutex_unlock(&kvm->lock); |
Sheng Yang | 7837699 | 2008-01-28 05:10:22 +0800 | [diff] [blame] | 3892 | break; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3893 | case KVM_GET_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; |
Steve Rutherford | 49df639 | 2015-07-29 23:21:40 -0700 | [diff] [blame] | 3904 | if (!irqchip_in_kernel(kvm) || irqchip_split(kvm)) |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 3905 | goto get_irqchip_out; |
| 3906 | r = kvm_vm_ioctl_get_irqchip(kvm, chip); |
| 3907 | if (r) |
| 3908 | goto get_irqchip_out; |
| 3909 | r = -EFAULT; |
| 3910 | if (copy_to_user(argp, chip, sizeof *chip)) |
| 3911 | goto get_irqchip_out; |
| 3912 | r = 0; |
| 3913 | get_irqchip_out: |
| 3914 | kfree(chip); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3915 | break; |
| 3916 | } |
| 3917 | case KVM_SET_IRQCHIP: { |
| 3918 | /* 0: PIC master, 1: PIC slave, 2: IOAPIC */ |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 3919 | struct kvm_irqchip *chip; |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3920 | |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 3921 | chip = memdup_user(argp, sizeof(*chip)); |
| 3922 | if (IS_ERR(chip)) { |
| 3923 | r = PTR_ERR(chip); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3924 | goto out; |
Sasha Levin | ff5c2c0 | 2011-12-04 19:36:29 +0200 | [diff] [blame] | 3925 | } |
| 3926 | |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3927 | r = -ENXIO; |
Steve Rutherford | 49df639 | 2015-07-29 23:21:40 -0700 | [diff] [blame] | 3928 | if (!irqchip_in_kernel(kvm) || irqchip_split(kvm)) |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 3929 | goto set_irqchip_out; |
| 3930 | r = kvm_vm_ioctl_set_irqchip(kvm, chip); |
| 3931 | if (r) |
| 3932 | goto set_irqchip_out; |
| 3933 | r = 0; |
| 3934 | set_irqchip_out: |
| 3935 | kfree(chip); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 3936 | break; |
| 3937 | } |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3938 | case KVM_GET_PIT: { |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3939 | r = -EFAULT; |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 3940 | if (copy_from_user(&u.ps, argp, sizeof(struct kvm_pit_state))) |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3941 | goto out; |
| 3942 | r = -ENXIO; |
| 3943 | if (!kvm->arch.vpit) |
| 3944 | goto out; |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 3945 | r = kvm_vm_ioctl_get_pit(kvm, &u.ps); |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3946 | if (r) |
| 3947 | goto out; |
| 3948 | r = -EFAULT; |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 3949 | if (copy_to_user(argp, &u.ps, sizeof(struct kvm_pit_state))) |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3950 | goto out; |
| 3951 | r = 0; |
| 3952 | break; |
| 3953 | } |
| 3954 | case KVM_SET_PIT: { |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3955 | r = -EFAULT; |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 3956 | if (copy_from_user(&u.ps, argp, sizeof u.ps)) |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3957 | goto out; |
| 3958 | r = -ENXIO; |
| 3959 | if (!kvm->arch.vpit) |
| 3960 | goto out; |
Dave Hansen | f0d6627 | 2008-08-11 10:01:45 -0700 | [diff] [blame] | 3961 | r = kvm_vm_ioctl_set_pit(kvm, &u.ps); |
Sheng Yang | e0f63cb | 2008-03-04 00:50:59 +0800 | [diff] [blame] | 3962 | break; |
| 3963 | } |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 3964 | case KVM_GET_PIT2: { |
| 3965 | r = -ENXIO; |
| 3966 | if (!kvm->arch.vpit) |
| 3967 | goto out; |
| 3968 | r = kvm_vm_ioctl_get_pit2(kvm, &u.ps2); |
| 3969 | if (r) |
| 3970 | goto out; |
| 3971 | r = -EFAULT; |
| 3972 | if (copy_to_user(argp, &u.ps2, sizeof(u.ps2))) |
| 3973 | goto out; |
| 3974 | r = 0; |
| 3975 | break; |
| 3976 | } |
| 3977 | case KVM_SET_PIT2: { |
| 3978 | r = -EFAULT; |
| 3979 | if (copy_from_user(&u.ps2, argp, sizeof(u.ps2))) |
| 3980 | goto out; |
| 3981 | r = -ENXIO; |
| 3982 | if (!kvm->arch.vpit) |
| 3983 | goto out; |
| 3984 | r = kvm_vm_ioctl_set_pit2(kvm, &u.ps2); |
Beth Kon | e9f4275 | 2009-07-07 11:50:38 -0400 | [diff] [blame] | 3985 | break; |
| 3986 | } |
Marcelo Tosatti | 52d939a | 2008-12-30 15:55:06 -0200 | [diff] [blame] | 3987 | case KVM_REINJECT_CONTROL: { |
| 3988 | struct kvm_reinject_control control; |
| 3989 | r = -EFAULT; |
| 3990 | if (copy_from_user(&control, argp, sizeof(control))) |
| 3991 | goto out; |
| 3992 | r = kvm_vm_ioctl_reinject(kvm, &control); |
Marcelo Tosatti | 52d939a | 2008-12-30 15:55:06 -0200 | [diff] [blame] | 3993 | break; |
| 3994 | } |
Paolo Bonzini | d71ba78 | 2015-07-29 11:56:48 +0200 | [diff] [blame] | 3995 | case KVM_SET_BOOT_CPU_ID: |
| 3996 | r = 0; |
| 3997 | mutex_lock(&kvm->lock); |
| 3998 | if (atomic_read(&kvm->online_vcpus) != 0) |
| 3999 | r = -EBUSY; |
| 4000 | else |
| 4001 | kvm->arch.bsp_vcpu_id = arg; |
| 4002 | mutex_unlock(&kvm->lock); |
| 4003 | break; |
Ed Swierk | ffde22a | 2009-10-15 15:21:43 -0700 | [diff] [blame] | 4004 | case KVM_XEN_HVM_CONFIG: { |
| 4005 | r = -EFAULT; |
| 4006 | if (copy_from_user(&kvm->arch.xen_hvm_config, argp, |
| 4007 | sizeof(struct kvm_xen_hvm_config))) |
| 4008 | goto out; |
| 4009 | r = -EINVAL; |
| 4010 | if (kvm->arch.xen_hvm_config.flags) |
| 4011 | goto out; |
| 4012 | r = 0; |
| 4013 | break; |
| 4014 | } |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 4015 | case KVM_SET_CLOCK: { |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 4016 | struct kvm_clock_data user_ns; |
| 4017 | u64 now_ns; |
| 4018 | s64 delta; |
| 4019 | |
| 4020 | r = -EFAULT; |
| 4021 | if (copy_from_user(&user_ns, argp, sizeof(user_ns))) |
| 4022 | goto out; |
| 4023 | |
| 4024 | r = -EINVAL; |
| 4025 | if (user_ns.flags) |
| 4026 | goto out; |
| 4027 | |
| 4028 | r = 0; |
Avi Kivity | 395c6b0 | 2010-10-04 12:55:49 +0200 | [diff] [blame] | 4029 | local_irq_disable(); |
Zachary Amsden | 759379d | 2010-08-19 22:07:25 -1000 | [diff] [blame] | 4030 | now_ns = get_kernel_ns(); |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 4031 | delta = user_ns.clock - now_ns; |
Avi Kivity | 395c6b0 | 2010-10-04 12:55:49 +0200 | [diff] [blame] | 4032 | local_irq_enable(); |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 4033 | kvm->arch.kvmclock_offset = delta; |
Marcelo Tosatti | 2e762ff | 2013-08-27 23:55:29 -0300 | [diff] [blame] | 4034 | kvm_gen_update_masterclock(kvm); |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 4035 | break; |
| 4036 | } |
| 4037 | case KVM_GET_CLOCK: { |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 4038 | struct kvm_clock_data user_ns; |
| 4039 | u64 now_ns; |
| 4040 | |
Avi Kivity | 395c6b0 | 2010-10-04 12:55:49 +0200 | [diff] [blame] | 4041 | local_irq_disable(); |
Zachary Amsden | 759379d | 2010-08-19 22:07:25 -1000 | [diff] [blame] | 4042 | now_ns = get_kernel_ns(); |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 4043 | user_ns.clock = kvm->arch.kvmclock_offset + now_ns; |
Avi Kivity | 395c6b0 | 2010-10-04 12:55:49 +0200 | [diff] [blame] | 4044 | local_irq_enable(); |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 4045 | user_ns.flags = 0; |
Vasiliy Kulikov | 97e69aa | 2010-10-30 22:54:47 +0400 | [diff] [blame] | 4046 | memset(&user_ns.pad, 0, sizeof(user_ns.pad)); |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 4047 | |
| 4048 | r = -EFAULT; |
| 4049 | if (copy_to_user(argp, &user_ns, sizeof(user_ns))) |
| 4050 | goto out; |
| 4051 | r = 0; |
| 4052 | break; |
| 4053 | } |
Nadav Amit | 90de4a1 | 2015-04-13 01:53:41 +0300 | [diff] [blame] | 4054 | case KVM_ENABLE_CAP: { |
| 4055 | struct kvm_enable_cap cap; |
Glauber Costa | afbcf7a | 2009-10-16 15:28:36 -0400 | [diff] [blame] | 4056 | |
Nadav Amit | 90de4a1 | 2015-04-13 01:53:41 +0300 | [diff] [blame] | 4057 | r = -EFAULT; |
| 4058 | if (copy_from_user(&cap, argp, sizeof(cap))) |
| 4059 | goto out; |
| 4060 | r = kvm_vm_ioctl_enable_cap(kvm, &cap); |
| 4061 | break; |
| 4062 | } |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4063 | default: |
Radim Krčmář | c274e03 | 2014-11-21 22:21:50 +0100 | [diff] [blame] | 4064 | r = kvm_vm_ioctl_assigned_device(kvm, ioctl, arg); |
Carsten Otte | 1fe779f | 2007-10-29 16:08:35 +0100 | [diff] [blame] | 4065 | } |
| 4066 | out: |
| 4067 | return r; |
| 4068 | } |
| 4069 | |
Zhang Xiantao | a16b043 | 2007-11-16 14:38:21 +0800 | [diff] [blame] | 4070 | static void kvm_init_msr_list(void) |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 4071 | { |
| 4072 | u32 dummy[2]; |
| 4073 | unsigned i, j; |
| 4074 | |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 4075 | for (i = j = 0; i < ARRAY_SIZE(msrs_to_save); i++) { |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 4076 | if (rdmsr_safe(msrs_to_save[i], &dummy[0], &dummy[1]) < 0) |
| 4077 | continue; |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 4078 | |
| 4079 | /* |
| 4080 | * Even MSRs that are valid in the host may not be exposed |
Paolo Bonzini | 9dbe6cf | 2015-11-12 14:49:17 +0100 | [diff] [blame] | 4081 | * to the guests in some cases. |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 4082 | */ |
| 4083 | switch (msrs_to_save[i]) { |
| 4084 | case MSR_IA32_BNDCFGS: |
| 4085 | if (!kvm_x86_ops->mpx_supported()) |
| 4086 | continue; |
| 4087 | break; |
Paolo Bonzini | 9dbe6cf | 2015-11-12 14:49:17 +0100 | [diff] [blame] | 4088 | case MSR_TSC_AUX: |
| 4089 | if (!kvm_x86_ops->rdtscp_supported()) |
| 4090 | continue; |
| 4091 | break; |
Paolo Bonzini | 93c4adc | 2014-03-05 23:19:52 +0100 | [diff] [blame] | 4092 | default: |
| 4093 | break; |
| 4094 | } |
| 4095 | |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 4096 | if (j < i) |
| 4097 | msrs_to_save[j] = msrs_to_save[i]; |
| 4098 | j++; |
| 4099 | } |
| 4100 | num_msrs_to_save = j; |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 4101 | |
| 4102 | for (i = j = 0; i < ARRAY_SIZE(emulated_msrs); i++) { |
| 4103 | switch (emulated_msrs[i]) { |
Paolo Bonzini | 6d396b5 | 2015-04-01 14:25:33 +0200 | [diff] [blame] | 4104 | case MSR_IA32_SMBASE: |
| 4105 | if (!kvm_x86_ops->cpu_has_high_real_mode_segbase()) |
| 4106 | continue; |
| 4107 | break; |
Paolo Bonzini | 62ef68b | 2015-05-05 12:08:55 +0200 | [diff] [blame] | 4108 | default: |
| 4109 | break; |
| 4110 | } |
| 4111 | |
| 4112 | if (j < i) |
| 4113 | emulated_msrs[j] = emulated_msrs[i]; |
| 4114 | j++; |
| 4115 | } |
| 4116 | num_emulated_msrs = j; |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 4117 | } |
| 4118 | |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 4119 | static int vcpu_mmio_write(struct kvm_vcpu *vcpu, gpa_t addr, int len, |
| 4120 | const void *v) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4121 | { |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 4122 | int handled = 0; |
| 4123 | int n; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4124 | |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 4125 | do { |
| 4126 | n = min(len, 8); |
Paolo Bonzini | bce87cc | 2016-01-08 13:48:51 +0100 | [diff] [blame] | 4127 | if (!(lapic_in_kernel(vcpu) && |
Nikolay Nikolaev | e32edf4 | 2015-03-26 14:39:28 +0000 | [diff] [blame] | 4128 | !kvm_iodevice_write(vcpu, &vcpu->arch.apic->dev, addr, n, v)) |
| 4129 | && kvm_io_bus_write(vcpu, KVM_MMIO_BUS, addr, n, v)) |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 4130 | break; |
| 4131 | handled += n; |
| 4132 | addr += n; |
| 4133 | len -= n; |
| 4134 | v += n; |
| 4135 | } while (len); |
| 4136 | |
| 4137 | return handled; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4138 | } |
| 4139 | |
Michael S. Tsirkin | bda9020 | 2009-06-29 22:24:32 +0300 | [diff] [blame] | 4140 | 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] | 4141 | { |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 4142 | int handled = 0; |
| 4143 | int n; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4144 | |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 4145 | do { |
| 4146 | n = min(len, 8); |
Paolo Bonzini | bce87cc | 2016-01-08 13:48:51 +0100 | [diff] [blame] | 4147 | if (!(lapic_in_kernel(vcpu) && |
Nikolay Nikolaev | e32edf4 | 2015-03-26 14:39:28 +0000 | [diff] [blame] | 4148 | !kvm_iodevice_read(vcpu, &vcpu->arch.apic->dev, |
| 4149 | addr, n, v)) |
| 4150 | && kvm_io_bus_read(vcpu, KVM_MMIO_BUS, addr, n, v)) |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 4151 | break; |
| 4152 | trace_kvm_mmio(KVM_TRACE_MMIO_READ, n, addr, *(u64 *)v); |
| 4153 | handled += n; |
| 4154 | addr += n; |
| 4155 | len -= n; |
| 4156 | v += n; |
| 4157 | } while (len); |
| 4158 | |
| 4159 | return handled; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4160 | } |
| 4161 | |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4162 | static void kvm_set_segment(struct kvm_vcpu *vcpu, |
| 4163 | struct kvm_segment *var, int seg) |
| 4164 | { |
| 4165 | kvm_x86_ops->set_segment(vcpu, var, seg); |
| 4166 | } |
| 4167 | |
| 4168 | void kvm_get_segment(struct kvm_vcpu *vcpu, |
| 4169 | struct kvm_segment *var, int seg) |
| 4170 | { |
| 4171 | kvm_x86_ops->get_segment(vcpu, var, seg); |
| 4172 | } |
| 4173 | |
Paolo Bonzini | 54987b7 | 2014-09-02 13:23:06 +0200 | [diff] [blame] | 4174 | gpa_t translate_nested_gpa(struct kvm_vcpu *vcpu, gpa_t gpa, u32 access, |
| 4175 | struct x86_exception *exception) |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4176 | { |
| 4177 | gpa_t t_gpa; |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4178 | |
| 4179 | BUG_ON(!mmu_is_nested(vcpu)); |
| 4180 | |
| 4181 | /* NPT walks are always user-walks */ |
| 4182 | access |= PFERR_USER_MASK; |
Paolo Bonzini | 54987b7 | 2014-09-02 13:23:06 +0200 | [diff] [blame] | 4183 | t_gpa = vcpu->arch.mmu.gva_to_gpa(vcpu, gpa, access, exception); |
Joerg Roedel | 02f59dc | 2010-09-10 17:30:54 +0200 | [diff] [blame] | 4184 | |
| 4185 | return t_gpa; |
| 4186 | } |
| 4187 | |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4188 | gpa_t kvm_mmu_gva_to_gpa_read(struct kvm_vcpu *vcpu, gva_t gva, |
| 4189 | struct x86_exception *exception) |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4190 | { |
| 4191 | 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] | 4192 | return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4193 | } |
| 4194 | |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4195 | gpa_t kvm_mmu_gva_to_gpa_fetch(struct kvm_vcpu *vcpu, gva_t gva, |
| 4196 | struct x86_exception *exception) |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4197 | { |
| 4198 | u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0; |
| 4199 | access |= PFERR_FETCH_MASK; |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4200 | return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4201 | } |
| 4202 | |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4203 | gpa_t kvm_mmu_gva_to_gpa_write(struct kvm_vcpu *vcpu, gva_t gva, |
| 4204 | struct x86_exception *exception) |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4205 | { |
| 4206 | u32 access = (kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0; |
| 4207 | access |= PFERR_WRITE_MASK; |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4208 | return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4209 | } |
| 4210 | |
| 4211 | /* uses this to access any guest's mapped memory without checking CPL */ |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4212 | gpa_t kvm_mmu_gva_to_gpa_system(struct kvm_vcpu *vcpu, gva_t gva, |
| 4213 | struct x86_exception *exception) |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4214 | { |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4215 | return vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, 0, exception); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4216 | } |
| 4217 | |
| 4218 | static int kvm_read_guest_virt_helper(gva_t addr, void *val, unsigned int bytes, |
| 4219 | struct kvm_vcpu *vcpu, u32 access, |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 4220 | struct x86_exception *exception) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4221 | { |
| 4222 | void *data = val; |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4223 | int r = X86EMUL_CONTINUE; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4224 | |
| 4225 | while (bytes) { |
Joerg Roedel | 14dfe85 | 2010-09-10 17:30:49 +0200 | [diff] [blame] | 4226 | 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] | 4227 | exception); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4228 | unsigned offset = addr & (PAGE_SIZE-1); |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 4229 | unsigned toread = min(bytes, (unsigned)PAGE_SIZE - offset); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4230 | int ret; |
| 4231 | |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 4232 | if (gpa == UNMAPPED_GVA) |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4233 | return X86EMUL_PROPAGATE_FAULT; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 4234 | ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, data, |
| 4235 | offset, toread); |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4236 | if (ret < 0) { |
Gleb Natapov | c3cd7ff | 2010-04-28 19:15:35 +0300 | [diff] [blame] | 4237 | r = X86EMUL_IO_NEEDED; |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4238 | goto out; |
| 4239 | } |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4240 | |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 4241 | bytes -= toread; |
| 4242 | data += toread; |
| 4243 | addr += toread; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4244 | } |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4245 | out: |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4246 | return r; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4247 | } |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 4248 | |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4249 | /* used for instruction fetching */ |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4250 | static int kvm_fetch_guest_virt(struct x86_emulate_ctxt *ctxt, |
| 4251 | gva_t addr, void *val, unsigned int bytes, |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 4252 | struct x86_exception *exception) |
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 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4255 | 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] | 4256 | unsigned offset; |
| 4257 | int ret; |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4258 | |
Paolo Bonzini | 44583cb | 2014-05-13 14:02:13 +0200 | [diff] [blame] | 4259 | /* Inline kvm_read_guest_virt_helper for speed. */ |
| 4260 | gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, access|PFERR_FETCH_MASK, |
| 4261 | exception); |
| 4262 | if (unlikely(gpa == UNMAPPED_GVA)) |
| 4263 | return X86EMUL_PROPAGATE_FAULT; |
| 4264 | |
| 4265 | offset = addr & (PAGE_SIZE-1); |
| 4266 | if (WARN_ON(offset + bytes > PAGE_SIZE)) |
| 4267 | bytes = (unsigned)PAGE_SIZE - offset; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 4268 | ret = kvm_vcpu_read_guest_page(vcpu, gpa >> PAGE_SHIFT, val, |
| 4269 | offset, bytes); |
Paolo Bonzini | 44583cb | 2014-05-13 14:02:13 +0200 | [diff] [blame] | 4270 | if (unlikely(ret < 0)) |
| 4271 | return X86EMUL_IO_NEEDED; |
| 4272 | |
| 4273 | return X86EMUL_CONTINUE; |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4274 | } |
| 4275 | |
Nadav Har'El | 064aea7 | 2011-05-25 23:04:56 +0300 | [diff] [blame] | 4276 | int kvm_read_guest_virt(struct x86_emulate_ctxt *ctxt, |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4277 | gva_t addr, void *val, unsigned int bytes, |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 4278 | struct x86_exception *exception) |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4279 | { |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4280 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4281 | 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] | 4282 | |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4283 | return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, access, |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 4284 | exception); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4285 | } |
Nadav Har'El | 064aea7 | 2011-05-25 23:04:56 +0300 | [diff] [blame] | 4286 | EXPORT_SYMBOL_GPL(kvm_read_guest_virt); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4287 | |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4288 | static int kvm_read_guest_virt_system(struct x86_emulate_ctxt *ctxt, |
| 4289 | gva_t addr, void *val, unsigned int bytes, |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 4290 | struct x86_exception *exception) |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4291 | { |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4292 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 4293 | return kvm_read_guest_virt_helper(addr, val, bytes, vcpu, 0, exception); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 4294 | } |
| 4295 | |
Radim Krčmář | 7a036a6 | 2015-10-30 16:36:24 +0100 | [diff] [blame] | 4296 | static int kvm_read_guest_phys_system(struct x86_emulate_ctxt *ctxt, |
| 4297 | unsigned long addr, void *val, unsigned int bytes) |
| 4298 | { |
| 4299 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
| 4300 | int r = kvm_vcpu_read_guest(vcpu, addr, val, bytes); |
| 4301 | |
| 4302 | return r < 0 ? X86EMUL_IO_NEEDED : X86EMUL_CONTINUE; |
| 4303 | } |
| 4304 | |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 4305 | int kvm_write_guest_virt_system(struct x86_emulate_ctxt *ctxt, |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4306 | gva_t addr, void *val, |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4307 | unsigned int bytes, |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 4308 | struct x86_exception *exception) |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 4309 | { |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4310 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 4311 | void *data = val; |
| 4312 | int r = X86EMUL_CONTINUE; |
| 4313 | |
| 4314 | while (bytes) { |
Joerg Roedel | 14dfe85 | 2010-09-10 17:30:49 +0200 | [diff] [blame] | 4315 | gpa_t gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, addr, |
| 4316 | PFERR_WRITE_MASK, |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4317 | exception); |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 4318 | unsigned offset = addr & (PAGE_SIZE-1); |
| 4319 | unsigned towrite = min(bytes, (unsigned)PAGE_SIZE - offset); |
| 4320 | int ret; |
| 4321 | |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 4322 | if (gpa == UNMAPPED_GVA) |
Avi Kivity | ab9ae31 | 2010-11-22 17:53:26 +0200 | [diff] [blame] | 4323 | return X86EMUL_PROPAGATE_FAULT; |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 4324 | ret = kvm_vcpu_write_guest(vcpu, gpa, data, towrite); |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 4325 | if (ret < 0) { |
Gleb Natapov | c3cd7ff | 2010-04-28 19:15:35 +0300 | [diff] [blame] | 4326 | r = X86EMUL_IO_NEEDED; |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 4327 | goto out; |
| 4328 | } |
| 4329 | |
| 4330 | bytes -= towrite; |
| 4331 | data += towrite; |
| 4332 | addr += towrite; |
| 4333 | } |
| 4334 | out: |
| 4335 | return r; |
| 4336 | } |
Nadav Har'El | 6a4d755 | 2011-05-25 23:08:00 +0300 | [diff] [blame] | 4337 | EXPORT_SYMBOL_GPL(kvm_write_guest_virt_system); |
Izik Eidus | 77c2002 | 2008-12-29 01:42:19 +0200 | [diff] [blame] | 4338 | |
Xiao Guangrong | af7cc7d | 2011-07-12 03:22:46 +0800 | [diff] [blame] | 4339 | static int vcpu_mmio_gva_to_gpa(struct kvm_vcpu *vcpu, unsigned long gva, |
| 4340 | gpa_t *gpa, struct x86_exception *exception, |
| 4341 | bool write) |
| 4342 | { |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4343 | u32 access = ((kvm_x86_ops->get_cpl(vcpu) == 3) ? PFERR_USER_MASK : 0) |
| 4344 | | (write ? PFERR_WRITE_MASK : 0); |
Xiao Guangrong | af7cc7d | 2011-07-12 03:22:46 +0800 | [diff] [blame] | 4345 | |
Huaitong Han | be94f6b | 2016-03-22 16:51:20 +0800 | [diff] [blame] | 4346 | /* |
| 4347 | * currently PKRU is only applied to ept enabled guest so |
| 4348 | * there is no pkey in EPT page table for L1 guest or EPT |
| 4349 | * shadow page table for L2 guest. |
| 4350 | */ |
Avi Kivity | 97d64b7 | 2012-09-12 14:52:00 +0300 | [diff] [blame] | 4351 | if (vcpu_match_mmio_gva(vcpu, gva) |
Feng Wu | 97ec8c0 | 2014-04-01 17:46:34 +0800 | [diff] [blame] | 4352 | && !permission_fault(vcpu, vcpu->arch.walk_mmu, |
Huaitong Han | be94f6b | 2016-03-22 16:51:20 +0800 | [diff] [blame] | 4353 | vcpu->arch.access, 0, access)) { |
Xiao Guangrong | bebb106 | 2011-07-12 03:23:20 +0800 | [diff] [blame] | 4354 | *gpa = vcpu->arch.mmio_gfn << PAGE_SHIFT | |
| 4355 | (gva & (PAGE_SIZE - 1)); |
Xiao Guangrong | 4f02264 | 2011-07-12 03:34:24 +0800 | [diff] [blame] | 4356 | trace_vcpu_match_mmio(gva, *gpa, write, false); |
Xiao Guangrong | bebb106 | 2011-07-12 03:23:20 +0800 | [diff] [blame] | 4357 | return 1; |
| 4358 | } |
| 4359 | |
Xiao Guangrong | af7cc7d | 2011-07-12 03:22:46 +0800 | [diff] [blame] | 4360 | *gpa = vcpu->arch.walk_mmu->gva_to_gpa(vcpu, gva, access, exception); |
| 4361 | |
| 4362 | if (*gpa == UNMAPPED_GVA) |
| 4363 | return -1; |
| 4364 | |
| 4365 | /* For APIC access vmexit */ |
| 4366 | if ((*gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE) |
| 4367 | return 1; |
| 4368 | |
Xiao Guangrong | 4f02264 | 2011-07-12 03:34:24 +0800 | [diff] [blame] | 4369 | if (vcpu_match_mmio_gpa(vcpu, *gpa)) { |
| 4370 | trace_vcpu_match_mmio(gva, *gpa, write, true); |
Xiao Guangrong | bebb106 | 2011-07-12 03:23:20 +0800 | [diff] [blame] | 4371 | return 1; |
Xiao Guangrong | 4f02264 | 2011-07-12 03:34:24 +0800 | [diff] [blame] | 4372 | } |
Xiao Guangrong | bebb106 | 2011-07-12 03:23:20 +0800 | [diff] [blame] | 4373 | |
Xiao Guangrong | af7cc7d | 2011-07-12 03:22:46 +0800 | [diff] [blame] | 4374 | return 0; |
| 4375 | } |
| 4376 | |
Marcelo Tosatti | 3200f40 | 2008-03-29 20:17:59 -0300 | [diff] [blame] | 4377 | int emulator_write_phys(struct kvm_vcpu *vcpu, gpa_t gpa, |
Avi Kivity | bcc55cb | 2010-11-22 17:53:22 +0200 | [diff] [blame] | 4378 | const void *val, int bytes) |
Avi Kivity | 9f81128 | 2008-03-02 14:06:05 +0200 | [diff] [blame] | 4379 | { |
| 4380 | int ret; |
| 4381 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 4382 | ret = kvm_vcpu_write_guest(vcpu, gpa, val, bytes); |
Avi Kivity | 9f81128 | 2008-03-02 14:06:05 +0200 | [diff] [blame] | 4383 | if (ret < 0) |
| 4384 | return 0; |
Xiao Guangrong | 0eb05bf | 2016-02-24 17:51:13 +0800 | [diff] [blame] | 4385 | kvm_page_track_write(vcpu, gpa, val, bytes); |
Avi Kivity | 9f81128 | 2008-03-02 14:06:05 +0200 | [diff] [blame] | 4386 | return 1; |
| 4387 | } |
| 4388 | |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 4389 | struct read_write_emulator_ops { |
| 4390 | int (*read_write_prepare)(struct kvm_vcpu *vcpu, void *val, |
| 4391 | int bytes); |
| 4392 | int (*read_write_emulate)(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 4393 | void *val, int bytes); |
| 4394 | int (*read_write_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 4395 | int bytes, void *val); |
| 4396 | int (*read_write_exit_mmio)(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 4397 | void *val, int bytes); |
| 4398 | bool write; |
| 4399 | }; |
| 4400 | |
| 4401 | static int read_prepare(struct kvm_vcpu *vcpu, void *val, int bytes) |
| 4402 | { |
| 4403 | if (vcpu->mmio_read_completed) { |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 4404 | trace_kvm_mmio(KVM_TRACE_MMIO_READ, bytes, |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 4405 | vcpu->mmio_fragments[0].gpa, *(u64 *)val); |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 4406 | vcpu->mmio_read_completed = 0; |
| 4407 | return 1; |
| 4408 | } |
| 4409 | |
| 4410 | return 0; |
| 4411 | } |
| 4412 | |
| 4413 | static int read_emulate(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 4414 | void *val, int bytes) |
| 4415 | { |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 4416 | return !kvm_vcpu_read_guest(vcpu, gpa, val, bytes); |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 4417 | } |
| 4418 | |
| 4419 | static int write_emulate(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 4420 | void *val, int bytes) |
| 4421 | { |
| 4422 | return emulator_write_phys(vcpu, gpa, val, bytes); |
| 4423 | } |
| 4424 | |
| 4425 | static int write_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, int bytes, void *val) |
| 4426 | { |
| 4427 | trace_kvm_mmio(KVM_TRACE_MMIO_WRITE, bytes, gpa, *(u64 *)val); |
| 4428 | return vcpu_mmio_write(vcpu, gpa, bytes, val); |
| 4429 | } |
| 4430 | |
| 4431 | static int read_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 4432 | void *val, int bytes) |
| 4433 | { |
| 4434 | trace_kvm_mmio(KVM_TRACE_MMIO_READ_UNSATISFIED, bytes, gpa, 0); |
| 4435 | return X86EMUL_IO_NEEDED; |
| 4436 | } |
| 4437 | |
| 4438 | static int write_exit_mmio(struct kvm_vcpu *vcpu, gpa_t gpa, |
| 4439 | void *val, int bytes) |
| 4440 | { |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 4441 | struct kvm_mmio_fragment *frag = &vcpu->mmio_fragments[0]; |
| 4442 | |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 4443 | memcpy(vcpu->run->mmio.data, frag->data, min(8u, frag->len)); |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 4444 | return X86EMUL_CONTINUE; |
| 4445 | } |
| 4446 | |
Mathias Krause | 0fbe9b0 | 2012-08-30 01:30:17 +0200 | [diff] [blame] | 4447 | static const struct read_write_emulator_ops read_emultor = { |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 4448 | .read_write_prepare = read_prepare, |
| 4449 | .read_write_emulate = read_emulate, |
| 4450 | .read_write_mmio = vcpu_mmio_read, |
| 4451 | .read_write_exit_mmio = read_exit_mmio, |
| 4452 | }; |
| 4453 | |
Mathias Krause | 0fbe9b0 | 2012-08-30 01:30:17 +0200 | [diff] [blame] | 4454 | static const struct read_write_emulator_ops write_emultor = { |
Xiao Guangrong | 77d197b | 2011-07-13 14:31:50 +0800 | [diff] [blame] | 4455 | .read_write_emulate = write_emulate, |
| 4456 | .read_write_mmio = write_mmio, |
| 4457 | .read_write_exit_mmio = write_exit_mmio, |
| 4458 | .write = true, |
| 4459 | }; |
| 4460 | |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 4461 | static int emulator_read_write_onepage(unsigned long addr, void *val, |
| 4462 | unsigned int bytes, |
| 4463 | struct x86_exception *exception, |
| 4464 | struct kvm_vcpu *vcpu, |
Mathias Krause | 0fbe9b0 | 2012-08-30 01:30:17 +0200 | [diff] [blame] | 4465 | const struct read_write_emulator_ops *ops) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4466 | { |
Xiao Guangrong | af7cc7d | 2011-07-12 03:22:46 +0800 | [diff] [blame] | 4467 | gpa_t gpa; |
| 4468 | int handled, ret; |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 4469 | bool write = ops->write; |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 4470 | struct kvm_mmio_fragment *frag; |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 4471 | |
| 4472 | ret = vcpu_mmio_gva_to_gpa(vcpu, addr, &gpa, exception, write); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4473 | |
Xiao Guangrong | af7cc7d | 2011-07-12 03:22:46 +0800 | [diff] [blame] | 4474 | if (ret < 0) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4475 | return X86EMUL_PROPAGATE_FAULT; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4476 | |
| 4477 | /* For APIC access vmexit */ |
Xiao Guangrong | af7cc7d | 2011-07-12 03:22:46 +0800 | [diff] [blame] | 4478 | if (ret) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4479 | goto mmio; |
| 4480 | |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 4481 | if (ops->read_write_emulate(vcpu, gpa, val, bytes)) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4482 | return X86EMUL_CONTINUE; |
| 4483 | |
| 4484 | mmio: |
| 4485 | /* |
| 4486 | * Is this MMIO handled locally? |
| 4487 | */ |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 4488 | handled = ops->read_write_mmio(vcpu, gpa, bytes, val); |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 4489 | if (handled == bytes) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4490 | return X86EMUL_CONTINUE; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4491 | |
Avi Kivity | 70252a1 | 2010-01-19 12:51:22 +0200 | [diff] [blame] | 4492 | gpa += handled; |
| 4493 | bytes -= handled; |
| 4494 | val += handled; |
| 4495 | |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 4496 | WARN_ON(vcpu->mmio_nr_fragments >= KVM_MAX_MMIO_FRAGMENTS); |
| 4497 | frag = &vcpu->mmio_fragments[vcpu->mmio_nr_fragments++]; |
| 4498 | frag->gpa = gpa; |
| 4499 | frag->data = val; |
| 4500 | frag->len = bytes; |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 4501 | return X86EMUL_CONTINUE; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4502 | } |
| 4503 | |
Xiubo Li | 52eb5a6 | 2015-03-13 17:39:45 +0800 | [diff] [blame] | 4504 | static int emulator_read_write(struct x86_emulate_ctxt *ctxt, |
| 4505 | unsigned long addr, |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 4506 | void *val, unsigned int bytes, |
| 4507 | struct x86_exception *exception, |
Mathias Krause | 0fbe9b0 | 2012-08-30 01:30:17 +0200 | [diff] [blame] | 4508 | const struct read_write_emulator_ops *ops) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4509 | { |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4510 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 4511 | gpa_t gpa; |
| 4512 | int rc; |
| 4513 | |
| 4514 | if (ops->read_write_prepare && |
| 4515 | ops->read_write_prepare(vcpu, val, bytes)) |
| 4516 | return X86EMUL_CONTINUE; |
| 4517 | |
| 4518 | vcpu->mmio_nr_fragments = 0; |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4519 | |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4520 | /* Crossing a page boundary? */ |
| 4521 | if (((addr + bytes - 1) ^ addr) & PAGE_MASK) { |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 4522 | int now; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4523 | |
| 4524 | now = -addr & ~PAGE_MASK; |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 4525 | rc = emulator_read_write_onepage(addr, val, now, exception, |
| 4526 | vcpu, ops); |
| 4527 | |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4528 | if (rc != X86EMUL_CONTINUE) |
| 4529 | return rc; |
| 4530 | addr += now; |
Nadav Amit | bac15531 | 2015-01-26 09:32:26 +0200 | [diff] [blame] | 4531 | if (ctxt->mode != X86EMUL_MODE_PROT64) |
| 4532 | addr = (u32)addr; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4533 | val += now; |
| 4534 | bytes -= now; |
| 4535 | } |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 4536 | |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 4537 | rc = emulator_read_write_onepage(addr, val, bytes, exception, |
| 4538 | vcpu, ops); |
| 4539 | if (rc != X86EMUL_CONTINUE) |
| 4540 | return rc; |
| 4541 | |
| 4542 | if (!vcpu->mmio_nr_fragments) |
| 4543 | return rc; |
| 4544 | |
| 4545 | gpa = vcpu->mmio_fragments[0].gpa; |
| 4546 | |
| 4547 | vcpu->mmio_needed = 1; |
| 4548 | vcpu->mmio_cur_fragment = 0; |
| 4549 | |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 4550 | vcpu->run->mmio.len = min(8u, vcpu->mmio_fragments[0].len); |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 4551 | vcpu->run->mmio.is_write = vcpu->mmio_is_write = ops->write; |
| 4552 | vcpu->run->exit_reason = KVM_EXIT_MMIO; |
| 4553 | vcpu->run->mmio.phys_addr = gpa; |
| 4554 | |
| 4555 | return ops->read_write_exit_mmio(vcpu, gpa, val, bytes); |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 4556 | } |
| 4557 | |
| 4558 | static int emulator_read_emulated(struct x86_emulate_ctxt *ctxt, |
| 4559 | unsigned long addr, |
| 4560 | void *val, |
| 4561 | unsigned int bytes, |
| 4562 | struct x86_exception *exception) |
| 4563 | { |
| 4564 | return emulator_read_write(ctxt, addr, val, bytes, |
| 4565 | exception, &read_emultor); |
| 4566 | } |
| 4567 | |
Xiubo Li | 52eb5a6 | 2015-03-13 17:39:45 +0800 | [diff] [blame] | 4568 | static int emulator_write_emulated(struct x86_emulate_ctxt *ctxt, |
Xiao Guangrong | 22388a3 | 2011-07-13 14:32:31 +0800 | [diff] [blame] | 4569 | unsigned long addr, |
| 4570 | const void *val, |
| 4571 | unsigned int bytes, |
| 4572 | struct x86_exception *exception) |
| 4573 | { |
| 4574 | return emulator_read_write(ctxt, addr, (void *)val, bytes, |
| 4575 | exception, &write_emultor); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4576 | } |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4577 | |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 4578 | #define CMPXCHG_TYPE(t, ptr, old, new) \ |
| 4579 | (cmpxchg((t *)(ptr), *(t *)(old), *(t *)(new)) == *(t *)(old)) |
| 4580 | |
| 4581 | #ifdef CONFIG_X86_64 |
| 4582 | # define CMPXCHG64(ptr, old, new) CMPXCHG_TYPE(u64, ptr, old, new) |
| 4583 | #else |
| 4584 | # define CMPXCHG64(ptr, old, new) \ |
Jan Kiszka | 9749a6c | 2010-03-20 10:14:13 +0100 | [diff] [blame] | 4585 | (cmpxchg64((u64 *)(ptr), *(u64 *)(old), *(u64 *)(new)) == *(u64 *)(old)) |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 4586 | #endif |
| 4587 | |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4588 | static int emulator_cmpxchg_emulated(struct x86_emulate_ctxt *ctxt, |
| 4589 | unsigned long addr, |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4590 | const void *old, |
| 4591 | const void *new, |
| 4592 | unsigned int bytes, |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4593 | struct x86_exception *exception) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4594 | { |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4595 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 4596 | gpa_t gpa; |
| 4597 | struct page *page; |
| 4598 | char *kaddr; |
| 4599 | bool exchanged; |
| 4600 | |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 4601 | /* guests cmpxchg8b have to be emulated atomically */ |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 4602 | if (bytes > 8 || (bytes & (bytes - 1))) |
| 4603 | goto emul_write; |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 4604 | |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 4605 | gpa = kvm_mmu_gva_to_gpa_write(vcpu, addr, NULL); |
Marcelo Tosatti | 10589a4 | 2007-12-20 19:18:22 -0500 | [diff] [blame] | 4606 | |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 4607 | if (gpa == UNMAPPED_GVA || |
| 4608 | (gpa & PAGE_MASK) == APIC_DEFAULT_PHYS_BASE) |
| 4609 | goto emul_write; |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 4610 | |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 4611 | if (((gpa + bytes - 1) & PAGE_MASK) != (gpa & PAGE_MASK)) |
| 4612 | goto emul_write; |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 4613 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 4614 | page = kvm_vcpu_gfn_to_page(vcpu, gpa >> PAGE_SHIFT); |
Xiao Guangrong | 32cad84 | 2012-08-03 15:42:52 +0800 | [diff] [blame] | 4615 | if (is_error_page(page)) |
Wei Yongjun | c19b8bd | 2010-07-15 08:51:58 +0800 | [diff] [blame] | 4616 | goto emul_write; |
Izik Eidus | 72dc67a | 2008-02-10 18:04:15 +0200 | [diff] [blame] | 4617 | |
Cong Wang | 8fd75e1 | 2011-11-25 23:14:17 +0800 | [diff] [blame] | 4618 | kaddr = kmap_atomic(page); |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 4619 | kaddr += offset_in_page(gpa); |
| 4620 | switch (bytes) { |
| 4621 | case 1: |
| 4622 | exchanged = CMPXCHG_TYPE(u8, kaddr, old, new); |
| 4623 | break; |
| 4624 | case 2: |
| 4625 | exchanged = CMPXCHG_TYPE(u16, kaddr, old, new); |
| 4626 | break; |
| 4627 | case 4: |
| 4628 | exchanged = CMPXCHG_TYPE(u32, kaddr, old, new); |
| 4629 | break; |
| 4630 | case 8: |
| 4631 | exchanged = CMPXCHG64(kaddr, old, new); |
| 4632 | break; |
| 4633 | default: |
| 4634 | BUG(); |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 4635 | } |
Cong Wang | 8fd75e1 | 2011-11-25 23:14:17 +0800 | [diff] [blame] | 4636 | kunmap_atomic(kaddr); |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 4637 | kvm_release_page_dirty(page); |
| 4638 | |
| 4639 | if (!exchanged) |
| 4640 | return X86EMUL_CMPXCHG_FAILED; |
| 4641 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 4642 | kvm_vcpu_mark_page_dirty(vcpu, gpa >> PAGE_SHIFT); |
Xiao Guangrong | 0eb05bf | 2016-02-24 17:51:13 +0800 | [diff] [blame] | 4643 | kvm_page_track_write(vcpu, gpa, new, bytes); |
Gleb Natapov | 8f6abd0 | 2010-04-13 10:21:56 +0300 | [diff] [blame] | 4644 | |
| 4645 | return X86EMUL_CONTINUE; |
Avi Kivity | 4a5f48f | 2010-03-15 13:59:55 +0200 | [diff] [blame] | 4646 | |
Marcelo Tosatti | 3200f40 | 2008-03-29 20:17:59 -0300 | [diff] [blame] | 4647 | emul_write: |
Avi Kivity | daea3e7 | 2010-03-15 13:59:54 +0200 | [diff] [blame] | 4648 | printk_once(KERN_WARNING "kvm: emulating exchange as write\n"); |
Marcelo Tosatti | 2bacc55 | 2007-12-12 10:46:12 -0500 | [diff] [blame] | 4649 | |
Avi Kivity | 0f65dd7 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4650 | return emulator_write_emulated(ctxt, addr, new, bytes, exception); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4651 | } |
| 4652 | |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4653 | static int kernel_pio(struct kvm_vcpu *vcpu, void *pd) |
| 4654 | { |
| 4655 | /* TODO: String I/O for in kernel device */ |
| 4656 | int r; |
| 4657 | |
| 4658 | if (vcpu->arch.pio.in) |
Nikolay Nikolaev | e32edf4 | 2015-03-26 14:39:28 +0000 | [diff] [blame] | 4659 | 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] | 4660 | vcpu->arch.pio.size, pd); |
| 4661 | else |
Nikolay Nikolaev | e32edf4 | 2015-03-26 14:39:28 +0000 | [diff] [blame] | 4662 | r = kvm_io_bus_write(vcpu, KVM_PIO_BUS, |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4663 | vcpu->arch.pio.port, vcpu->arch.pio.size, |
| 4664 | pd); |
| 4665 | return r; |
| 4666 | } |
| 4667 | |
Xiao Guangrong | 6f6fbe9 | 2011-09-22 16:55:10 +0800 | [diff] [blame] | 4668 | static int emulator_pio_in_out(struct kvm_vcpu *vcpu, int size, |
| 4669 | unsigned short port, void *val, |
| 4670 | unsigned int count, bool in) |
| 4671 | { |
Xiao Guangrong | 6f6fbe9 | 2011-09-22 16:55:10 +0800 | [diff] [blame] | 4672 | vcpu->arch.pio.port = port; |
| 4673 | vcpu->arch.pio.in = in; |
| 4674 | vcpu->arch.pio.count = count; |
| 4675 | vcpu->arch.pio.size = size; |
| 4676 | |
| 4677 | if (!kernel_pio(vcpu, vcpu->arch.pio_data)) { |
| 4678 | vcpu->arch.pio.count = 0; |
| 4679 | return 1; |
| 4680 | } |
| 4681 | |
| 4682 | vcpu->run->exit_reason = KVM_EXIT_IO; |
| 4683 | vcpu->run->io.direction = in ? KVM_EXIT_IO_IN : KVM_EXIT_IO_OUT; |
| 4684 | vcpu->run->io.size = size; |
| 4685 | vcpu->run->io.data_offset = KVM_PIO_PAGE_OFFSET * PAGE_SIZE; |
| 4686 | vcpu->run->io.count = count; |
| 4687 | vcpu->run->io.port = port; |
| 4688 | |
| 4689 | return 0; |
| 4690 | } |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4691 | |
Avi Kivity | ca1d4a9 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4692 | static int emulator_pio_in_emulated(struct x86_emulate_ctxt *ctxt, |
| 4693 | int size, unsigned short port, void *val, |
| 4694 | unsigned int count) |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4695 | { |
Avi Kivity | ca1d4a9 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4696 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Xiao Guangrong | 6f6fbe9 | 2011-09-22 16:55:10 +0800 | [diff] [blame] | 4697 | int ret; |
Avi Kivity | ca1d4a9 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4698 | |
Gleb Natapov | 7972995 | 2010-03-18 15:20:24 +0200 | [diff] [blame] | 4699 | if (vcpu->arch.pio.count) |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4700 | goto data_avail; |
| 4701 | |
Xiao Guangrong | 6f6fbe9 | 2011-09-22 16:55:10 +0800 | [diff] [blame] | 4702 | ret = emulator_pio_in_out(vcpu, size, port, val, count, true); |
| 4703 | if (ret) { |
| 4704 | data_avail: |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4705 | memcpy(val, vcpu->arch.pio_data, size * count); |
Ulrich Obergfell | 1171903 | 2014-05-02 17:57:47 +0200 | [diff] [blame] | 4706 | 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] | 4707 | vcpu->arch.pio.count = 0; |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4708 | return 1; |
| 4709 | } |
| 4710 | |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4711 | return 0; |
| 4712 | } |
| 4713 | |
Avi Kivity | ca1d4a9 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4714 | static int emulator_pio_out_emulated(struct x86_emulate_ctxt *ctxt, |
| 4715 | int size, unsigned short port, |
| 4716 | const void *val, unsigned int count) |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4717 | { |
Avi Kivity | ca1d4a9 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4718 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
| 4719 | |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4720 | memcpy(vcpu->arch.pio_data, val, size * count); |
Ulrich Obergfell | 1171903 | 2014-05-02 17:57:47 +0200 | [diff] [blame] | 4721 | 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] | 4722 | return emulator_pio_in_out(vcpu, size, port, (void *)val, count, false); |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 4723 | } |
| 4724 | |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4725 | static unsigned long get_segment_base(struct kvm_vcpu *vcpu, int seg) |
| 4726 | { |
| 4727 | return kvm_x86_ops->get_segment_base(vcpu, seg); |
| 4728 | } |
| 4729 | |
Avi Kivity | 3cb16fe | 2011-04-20 15:38:44 +0300 | [diff] [blame] | 4730 | static void emulator_invlpg(struct x86_emulate_ctxt *ctxt, ulong address) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4731 | { |
Avi Kivity | 3cb16fe | 2011-04-20 15:38:44 +0300 | [diff] [blame] | 4732 | kvm_mmu_invlpg(emul_to_vcpu(ctxt), address); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4733 | } |
| 4734 | |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 4735 | int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu) |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 4736 | { |
| 4737 | if (!need_emulate_wbinvd(vcpu)) |
| 4738 | return X86EMUL_CONTINUE; |
| 4739 | |
| 4740 | if (kvm_x86_ops->has_wbinvd_exit()) { |
Jan Kiszka | 2eec734 | 2010-11-01 14:01:29 +0100 | [diff] [blame] | 4741 | int cpu = get_cpu(); |
| 4742 | |
| 4743 | cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask); |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 4744 | smp_call_function_many(vcpu->arch.wbinvd_dirty_mask, |
| 4745 | wbinvd_ipi, NULL, 1); |
Jan Kiszka | 2eec734 | 2010-11-01 14:01:29 +0100 | [diff] [blame] | 4746 | put_cpu(); |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 4747 | cpumask_clear(vcpu->arch.wbinvd_dirty_mask); |
Jan Kiszka | 2eec734 | 2010-11-01 14:01:29 +0100 | [diff] [blame] | 4748 | } else |
| 4749 | wbinvd(); |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 4750 | return X86EMUL_CONTINUE; |
| 4751 | } |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 4752 | |
| 4753 | int kvm_emulate_wbinvd(struct kvm_vcpu *vcpu) |
| 4754 | { |
| 4755 | kvm_x86_ops->skip_emulated_instruction(vcpu); |
| 4756 | return kvm_emulate_wbinvd_noskip(vcpu); |
| 4757 | } |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 4758 | EXPORT_SYMBOL_GPL(kvm_emulate_wbinvd); |
| 4759 | |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 4760 | |
| 4761 | |
Avi Kivity | bcaf5cc | 2011-04-20 15:53:23 +0300 | [diff] [blame] | 4762 | static void emulator_wbinvd(struct x86_emulate_ctxt *ctxt) |
| 4763 | { |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 4764 | kvm_emulate_wbinvd_noskip(emul_to_vcpu(ctxt)); |
Avi Kivity | bcaf5cc | 2011-04-20 15:53:23 +0300 | [diff] [blame] | 4765 | } |
| 4766 | |
Xiubo Li | 52eb5a6 | 2015-03-13 17:39:45 +0800 | [diff] [blame] | 4767 | static int emulator_get_dr(struct x86_emulate_ctxt *ctxt, int dr, |
| 4768 | unsigned long *dest) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4769 | { |
Nadav Amit | 16f8a6f | 2014-10-03 01:10:05 +0300 | [diff] [blame] | 4770 | return kvm_get_dr(emul_to_vcpu(ctxt), dr, dest); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4771 | } |
| 4772 | |
Xiubo Li | 52eb5a6 | 2015-03-13 17:39:45 +0800 | [diff] [blame] | 4773 | static int emulator_set_dr(struct x86_emulate_ctxt *ctxt, int dr, |
| 4774 | unsigned long value) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4775 | { |
Gleb Natapov | 338dbc9 | 2010-04-28 19:15:32 +0300 | [diff] [blame] | 4776 | |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4777 | return __kvm_set_dr(emul_to_vcpu(ctxt), dr, value); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 4778 | } |
| 4779 | |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4780 | static u64 mk_cr_64(u64 curr_cr, u32 new_val) |
| 4781 | { |
| 4782 | return (curr_cr & ~((1ULL << 32) - 1)) | new_val; |
| 4783 | } |
| 4784 | |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4785 | 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] | 4786 | { |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4787 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4788 | unsigned long value; |
| 4789 | |
| 4790 | switch (cr) { |
| 4791 | case 0: |
| 4792 | value = kvm_read_cr0(vcpu); |
| 4793 | break; |
| 4794 | case 2: |
| 4795 | value = vcpu->arch.cr2; |
| 4796 | break; |
| 4797 | case 3: |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 4798 | value = kvm_read_cr3(vcpu); |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4799 | break; |
| 4800 | case 4: |
| 4801 | value = kvm_read_cr4(vcpu); |
| 4802 | break; |
| 4803 | case 8: |
| 4804 | value = kvm_get_cr8(vcpu); |
| 4805 | break; |
| 4806 | default: |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 4807 | kvm_err("%s: unexpected cr %u\n", __func__, cr); |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4808 | return 0; |
| 4809 | } |
| 4810 | |
| 4811 | return value; |
| 4812 | } |
| 4813 | |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4814 | 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] | 4815 | { |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4816 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 4817 | int res = 0; |
| 4818 | |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4819 | switch (cr) { |
| 4820 | case 0: |
Avi Kivity | 49a9b07 | 2010-06-10 17:02:14 +0300 | [diff] [blame] | 4821 | 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] | 4822 | break; |
| 4823 | case 2: |
| 4824 | vcpu->arch.cr2 = val; |
| 4825 | break; |
| 4826 | case 3: |
Avi Kivity | 2390218 | 2010-06-10 17:02:16 +0300 | [diff] [blame] | 4827 | res = kvm_set_cr3(vcpu, val); |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4828 | break; |
| 4829 | case 4: |
Avi Kivity | a83b29c | 2010-06-10 17:02:15 +0300 | [diff] [blame] | 4830 | 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] | 4831 | break; |
| 4832 | case 8: |
Andre Przywara | eea1cff | 2010-12-21 11:12:00 +0100 | [diff] [blame] | 4833 | res = kvm_set_cr8(vcpu, val); |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4834 | break; |
| 4835 | default: |
Christoffer Dall | a737f25 | 2012-06-03 21:17:48 +0300 | [diff] [blame] | 4836 | kvm_err("%s: unexpected cr %u\n", __func__, cr); |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 4837 | res = -1; |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4838 | } |
Gleb Natapov | 0f12244 | 2010-04-28 19:15:31 +0300 | [diff] [blame] | 4839 | |
| 4840 | return res; |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 4841 | } |
| 4842 | |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4843 | static int emulator_get_cpl(struct x86_emulate_ctxt *ctxt) |
Gleb Natapov | 9c53724 | 2010-03-18 15:20:05 +0200 | [diff] [blame] | 4844 | { |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4845 | return kvm_x86_ops->get_cpl(emul_to_vcpu(ctxt)); |
Gleb Natapov | 9c53724 | 2010-03-18 15:20:05 +0200 | [diff] [blame] | 4846 | } |
| 4847 | |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4848 | 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] | 4849 | { |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4850 | kvm_x86_ops->get_gdt(emul_to_vcpu(ctxt), dt); |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4851 | } |
| 4852 | |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4853 | 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] | 4854 | { |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4855 | kvm_x86_ops->get_idt(emul_to_vcpu(ctxt), dt); |
Mohammed Gamal | 160ce1f | 2010-08-04 05:44:24 +0300 | [diff] [blame] | 4856 | } |
| 4857 | |
Avi Kivity | 1ac9d0c | 2011-04-20 15:12:00 +0300 | [diff] [blame] | 4858 | static void emulator_set_gdt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt) |
| 4859 | { |
| 4860 | kvm_x86_ops->set_gdt(emul_to_vcpu(ctxt), dt); |
| 4861 | } |
| 4862 | |
| 4863 | static void emulator_set_idt(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt) |
| 4864 | { |
| 4865 | kvm_x86_ops->set_idt(emul_to_vcpu(ctxt), dt); |
| 4866 | } |
| 4867 | |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4868 | static unsigned long emulator_get_cached_segment_base( |
| 4869 | struct x86_emulate_ctxt *ctxt, int seg) |
Gleb Natapov | 5951c44 | 2010-04-28 19:15:29 +0300 | [diff] [blame] | 4870 | { |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4871 | return get_segment_base(emul_to_vcpu(ctxt), seg); |
Gleb Natapov | 5951c44 | 2010-04-28 19:15:29 +0300 | [diff] [blame] | 4872 | } |
| 4873 | |
Avi Kivity | 1aa3661 | 2011-04-27 13:20:30 +0300 | [diff] [blame] | 4874 | static bool emulator_get_segment(struct x86_emulate_ctxt *ctxt, u16 *selector, |
| 4875 | struct desc_struct *desc, u32 *base3, |
| 4876 | int seg) |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4877 | { |
| 4878 | struct kvm_segment var; |
| 4879 | |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4880 | kvm_get_segment(emul_to_vcpu(ctxt), &var, seg); |
Avi Kivity | 1aa3661 | 2011-04-27 13:20:30 +0300 | [diff] [blame] | 4881 | *selector = var.selector; |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4882 | |
Gleb Natapov | 378a8b0 | 2013-01-21 15:36:48 +0200 | [diff] [blame] | 4883 | if (var.unusable) { |
| 4884 | memset(desc, 0, sizeof(*desc)); |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4885 | return false; |
Gleb Natapov | 378a8b0 | 2013-01-21 15:36:48 +0200 | [diff] [blame] | 4886 | } |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4887 | |
| 4888 | if (var.g) |
| 4889 | var.limit >>= 12; |
| 4890 | set_desc_limit(desc, var.limit); |
| 4891 | set_desc_base(desc, (unsigned long)var.base); |
Gleb Natapov | 5601d05 | 2011-03-07 14:55:06 +0200 | [diff] [blame] | 4892 | #ifdef CONFIG_X86_64 |
| 4893 | if (base3) |
| 4894 | *base3 = var.base >> 32; |
| 4895 | #endif |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4896 | desc->type = var.type; |
| 4897 | desc->s = var.s; |
| 4898 | desc->dpl = var.dpl; |
| 4899 | desc->p = var.present; |
| 4900 | desc->avl = var.avl; |
| 4901 | desc->l = var.l; |
| 4902 | desc->d = var.db; |
| 4903 | desc->g = var.g; |
| 4904 | |
| 4905 | return true; |
| 4906 | } |
| 4907 | |
Avi Kivity | 1aa3661 | 2011-04-27 13:20:30 +0300 | [diff] [blame] | 4908 | static void emulator_set_segment(struct x86_emulate_ctxt *ctxt, u16 selector, |
| 4909 | struct desc_struct *desc, u32 base3, |
| 4910 | int seg) |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4911 | { |
Avi Kivity | 4bff1e86 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4912 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4913 | struct kvm_segment var; |
| 4914 | |
Avi Kivity | 1aa3661 | 2011-04-27 13:20:30 +0300 | [diff] [blame] | 4915 | var.selector = selector; |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4916 | var.base = get_desc_base(desc); |
Gleb Natapov | 5601d05 | 2011-03-07 14:55:06 +0200 | [diff] [blame] | 4917 | #ifdef CONFIG_X86_64 |
| 4918 | var.base |= ((u64)base3) << 32; |
| 4919 | #endif |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4920 | var.limit = get_desc_limit(desc); |
| 4921 | if (desc->g) |
| 4922 | var.limit = (var.limit << 12) | 0xfff; |
| 4923 | var.type = desc->type; |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 4924 | var.dpl = desc->dpl; |
| 4925 | var.db = desc->d; |
| 4926 | var.s = desc->s; |
| 4927 | var.l = desc->l; |
| 4928 | var.g = desc->g; |
| 4929 | var.avl = desc->avl; |
| 4930 | var.present = desc->p; |
| 4931 | var.unusable = !var.present; |
| 4932 | var.padding = 0; |
| 4933 | |
| 4934 | kvm_set_segment(vcpu, &var, seg); |
| 4935 | return; |
| 4936 | } |
| 4937 | |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4938 | static int emulator_get_msr(struct x86_emulate_ctxt *ctxt, |
| 4939 | u32 msr_index, u64 *pdata) |
| 4940 | { |
Paolo Bonzini | 609e36d | 2015-04-08 15:30:38 +0200 | [diff] [blame] | 4941 | struct msr_data msr; |
| 4942 | int r; |
| 4943 | |
| 4944 | msr.index = msr_index; |
| 4945 | msr.host_initiated = false; |
| 4946 | r = kvm_get_msr(emul_to_vcpu(ctxt), &msr); |
| 4947 | if (r) |
| 4948 | return r; |
| 4949 | |
| 4950 | *pdata = msr.data; |
| 4951 | return 0; |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4952 | } |
| 4953 | |
| 4954 | static int emulator_set_msr(struct x86_emulate_ctxt *ctxt, |
| 4955 | u32 msr_index, u64 data) |
| 4956 | { |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 4957 | struct msr_data msr; |
| 4958 | |
| 4959 | msr.data = data; |
| 4960 | msr.index = msr_index; |
| 4961 | msr.host_initiated = false; |
| 4962 | return kvm_set_msr(emul_to_vcpu(ctxt), &msr); |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 4963 | } |
| 4964 | |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 4965 | static u64 emulator_get_smbase(struct x86_emulate_ctxt *ctxt) |
| 4966 | { |
| 4967 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
| 4968 | |
| 4969 | return vcpu->arch.smbase; |
| 4970 | } |
| 4971 | |
| 4972 | static void emulator_set_smbase(struct x86_emulate_ctxt *ctxt, u64 smbase) |
| 4973 | { |
| 4974 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
| 4975 | |
| 4976 | vcpu->arch.smbase = smbase; |
| 4977 | } |
| 4978 | |
Nadav Amit | 67f4d42 | 2014-06-02 18:34:09 +0300 | [diff] [blame] | 4979 | static int emulator_check_pmc(struct x86_emulate_ctxt *ctxt, |
| 4980 | u32 pmc) |
| 4981 | { |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 4982 | return kvm_pmu_is_valid_msr_idx(emul_to_vcpu(ctxt), pmc); |
Nadav Amit | 67f4d42 | 2014-06-02 18:34:09 +0300 | [diff] [blame] | 4983 | } |
| 4984 | |
Avi Kivity | 222d21a | 2011-11-10 14:57:30 +0200 | [diff] [blame] | 4985 | static int emulator_read_pmc(struct x86_emulate_ctxt *ctxt, |
| 4986 | u32 pmc, u64 *pdata) |
| 4987 | { |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 4988 | return kvm_pmu_rdpmc(emul_to_vcpu(ctxt), pmc, pdata); |
Avi Kivity | 222d21a | 2011-11-10 14:57:30 +0200 | [diff] [blame] | 4989 | } |
| 4990 | |
Avi Kivity | 6c3287f | 2011-04-20 15:43:05 +0300 | [diff] [blame] | 4991 | static void emulator_halt(struct x86_emulate_ctxt *ctxt) |
| 4992 | { |
| 4993 | emul_to_vcpu(ctxt)->arch.halt_request = 1; |
| 4994 | } |
| 4995 | |
Avi Kivity | 5037f6f | 2011-03-28 16:53:59 +0200 | [diff] [blame] | 4996 | static void emulator_get_fpu(struct x86_emulate_ctxt *ctxt) |
| 4997 | { |
| 4998 | preempt_disable(); |
Avi Kivity | 5197b80 | 2011-04-20 15:55:40 +0300 | [diff] [blame] | 4999 | kvm_load_guest_fpu(emul_to_vcpu(ctxt)); |
Avi Kivity | 5037f6f | 2011-03-28 16:53:59 +0200 | [diff] [blame] | 5000 | /* |
| 5001 | * CR0.TS may reference the host fpu state, not the guest fpu state, |
| 5002 | * so it may be clear at this point. |
| 5003 | */ |
| 5004 | clts(); |
| 5005 | } |
| 5006 | |
| 5007 | static void emulator_put_fpu(struct x86_emulate_ctxt *ctxt) |
| 5008 | { |
| 5009 | preempt_enable(); |
| 5010 | } |
| 5011 | |
Avi Kivity | 2953538 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 5012 | static int emulator_intercept(struct x86_emulate_ctxt *ctxt, |
Joerg Roedel | 8a76d7f | 2011-04-04 12:39:27 +0200 | [diff] [blame] | 5013 | struct x86_instruction_info *info, |
Avi Kivity | c4f035c | 2011-04-04 12:39:22 +0200 | [diff] [blame] | 5014 | enum x86_intercept_stage stage) |
| 5015 | { |
Avi Kivity | 2953538 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 5016 | return kvm_x86_ops->check_intercept(emul_to_vcpu(ctxt), info, stage); |
Avi Kivity | c4f035c | 2011-04-04 12:39:22 +0200 | [diff] [blame] | 5017 | } |
| 5018 | |
Avi Kivity | 0017f93 | 2012-06-07 14:10:16 +0300 | [diff] [blame] | 5019 | static void emulator_get_cpuid(struct x86_emulate_ctxt *ctxt, |
Stephan Bärwolf | bdb42f5 | 2012-01-12 16:43:03 +0100 | [diff] [blame] | 5020 | u32 *eax, u32 *ebx, u32 *ecx, u32 *edx) |
| 5021 | { |
Avi Kivity | 0017f93 | 2012-06-07 14:10:16 +0300 | [diff] [blame] | 5022 | kvm_cpuid(emul_to_vcpu(ctxt), eax, ebx, ecx, edx); |
Stephan Bärwolf | bdb42f5 | 2012-01-12 16:43:03 +0100 | [diff] [blame] | 5023 | } |
| 5024 | |
Avi Kivity | dd856ef | 2012-08-27 23:46:17 +0300 | [diff] [blame] | 5025 | static ulong emulator_read_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg) |
| 5026 | { |
| 5027 | return kvm_register_read(emul_to_vcpu(ctxt), reg); |
| 5028 | } |
| 5029 | |
| 5030 | static void emulator_write_gpr(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val) |
| 5031 | { |
| 5032 | kvm_register_write(emul_to_vcpu(ctxt), reg, val); |
| 5033 | } |
| 5034 | |
Nadav Amit | 801806d | 2015-01-26 09:32:23 +0200 | [diff] [blame] | 5035 | static void emulator_set_nmi_mask(struct x86_emulate_ctxt *ctxt, bool masked) |
| 5036 | { |
| 5037 | kvm_x86_ops->set_nmi_mask(emul_to_vcpu(ctxt), masked); |
| 5038 | } |
| 5039 | |
Mathias Krause | 0225fb5 | 2012-08-30 01:30:16 +0200 | [diff] [blame] | 5040 | static const struct x86_emulate_ops emulate_ops = { |
Avi Kivity | dd856ef | 2012-08-27 23:46:17 +0300 | [diff] [blame] | 5041 | .read_gpr = emulator_read_gpr, |
| 5042 | .write_gpr = emulator_write_gpr, |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5043 | .read_std = kvm_read_guest_virt_system, |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 5044 | .write_std = kvm_write_guest_virt_system, |
Radim Krčmář | 7a036a6 | 2015-10-30 16:36:24 +0100 | [diff] [blame] | 5045 | .read_phys = kvm_read_guest_phys_system, |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 5046 | .fetch = kvm_fetch_guest_virt, |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5047 | .read_emulated = emulator_read_emulated, |
| 5048 | .write_emulated = emulator_write_emulated, |
| 5049 | .cmpxchg_emulated = emulator_cmpxchg_emulated, |
Avi Kivity | 3cb16fe | 2011-04-20 15:38:44 +0300 | [diff] [blame] | 5050 | .invlpg = emulator_invlpg, |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5051 | .pio_in_emulated = emulator_pio_in_emulated, |
| 5052 | .pio_out_emulated = emulator_pio_out_emulated, |
Avi Kivity | 1aa3661 | 2011-04-27 13:20:30 +0300 | [diff] [blame] | 5053 | .get_segment = emulator_get_segment, |
| 5054 | .set_segment = emulator_set_segment, |
Gleb Natapov | 5951c44 | 2010-04-28 19:15:29 +0300 | [diff] [blame] | 5055 | .get_cached_segment_base = emulator_get_cached_segment_base, |
Gleb Natapov | 2dafc6c | 2010-03-18 15:20:16 +0200 | [diff] [blame] | 5056 | .get_gdt = emulator_get_gdt, |
Mohammed Gamal | 160ce1f | 2010-08-04 05:44:24 +0300 | [diff] [blame] | 5057 | .get_idt = emulator_get_idt, |
Avi Kivity | 1ac9d0c | 2011-04-20 15:12:00 +0300 | [diff] [blame] | 5058 | .set_gdt = emulator_set_gdt, |
| 5059 | .set_idt = emulator_set_idt, |
Gleb Natapov | 52a4661 | 2010-03-18 15:20:03 +0200 | [diff] [blame] | 5060 | .get_cr = emulator_get_cr, |
| 5061 | .set_cr = emulator_set_cr, |
Gleb Natapov | 9c53724 | 2010-03-18 15:20:05 +0200 | [diff] [blame] | 5062 | .cpl = emulator_get_cpl, |
Gleb Natapov | 35aa537 | 2010-04-28 19:15:27 +0300 | [diff] [blame] | 5063 | .get_dr = emulator_get_dr, |
| 5064 | .set_dr = emulator_set_dr, |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 5065 | .get_smbase = emulator_get_smbase, |
| 5066 | .set_smbase = emulator_set_smbase, |
Avi Kivity | 717746e | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 5067 | .set_msr = emulator_set_msr, |
| 5068 | .get_msr = emulator_get_msr, |
Nadav Amit | 67f4d42 | 2014-06-02 18:34:09 +0300 | [diff] [blame] | 5069 | .check_pmc = emulator_check_pmc, |
Avi Kivity | 222d21a | 2011-11-10 14:57:30 +0200 | [diff] [blame] | 5070 | .read_pmc = emulator_read_pmc, |
Avi Kivity | 6c3287f | 2011-04-20 15:43:05 +0300 | [diff] [blame] | 5071 | .halt = emulator_halt, |
Avi Kivity | bcaf5cc | 2011-04-20 15:53:23 +0300 | [diff] [blame] | 5072 | .wbinvd = emulator_wbinvd, |
Avi Kivity | d6aa100 | 2011-04-20 15:47:13 +0300 | [diff] [blame] | 5073 | .fix_hypercall = emulator_fix_hypercall, |
Avi Kivity | 5037f6f | 2011-03-28 16:53:59 +0200 | [diff] [blame] | 5074 | .get_fpu = emulator_get_fpu, |
| 5075 | .put_fpu = emulator_put_fpu, |
Avi Kivity | c4f035c | 2011-04-04 12:39:22 +0200 | [diff] [blame] | 5076 | .intercept = emulator_intercept, |
Stephan Bärwolf | bdb42f5 | 2012-01-12 16:43:03 +0100 | [diff] [blame] | 5077 | .get_cpuid = emulator_get_cpuid, |
Nadav Amit | 801806d | 2015-01-26 09:32:23 +0200 | [diff] [blame] | 5078 | .set_nmi_mask = emulator_set_nmi_mask, |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5079 | }; |
| 5080 | |
Gleb Natapov | 95cb229 | 2010-04-28 19:15:43 +0300 | [diff] [blame] | 5081 | static void toggle_interruptibility(struct kvm_vcpu *vcpu, u32 mask) |
| 5082 | { |
Paolo Bonzini | 37ccdcb | 2014-05-20 14:29:47 +0200 | [diff] [blame] | 5083 | u32 int_shadow = kvm_x86_ops->get_interrupt_shadow(vcpu); |
Gleb Natapov | 95cb229 | 2010-04-28 19:15:43 +0300 | [diff] [blame] | 5084 | /* |
| 5085 | * an sti; sti; sequence only disable interrupts for the first |
| 5086 | * instruction. So, if the last instruction, be it emulated or |
| 5087 | * not, left the system with the INT_STI flag enabled, it |
| 5088 | * means that the last instruction is an sti. We should not |
| 5089 | * leave the flag on in this case. The same goes for mov ss |
| 5090 | */ |
Paolo Bonzini | 37ccdcb | 2014-05-20 14:29:47 +0200 | [diff] [blame] | 5091 | if (int_shadow & mask) |
| 5092 | mask = 0; |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 5093 | if (unlikely(int_shadow || mask)) { |
Gleb Natapov | 95cb229 | 2010-04-28 19:15:43 +0300 | [diff] [blame] | 5094 | kvm_x86_ops->set_interrupt_shadow(vcpu, mask); |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 5095 | if (!mask) |
| 5096 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 5097 | } |
Gleb Natapov | 95cb229 | 2010-04-28 19:15:43 +0300 | [diff] [blame] | 5098 | } |
| 5099 | |
Paolo Bonzini | ef54bcf | 2014-09-04 19:46:15 +0200 | [diff] [blame] | 5100 | static bool inject_emulated_exception(struct kvm_vcpu *vcpu) |
Gleb Natapov | 54b8486 | 2010-04-28 19:15:44 +0300 | [diff] [blame] | 5101 | { |
| 5102 | struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt; |
Avi Kivity | da9cb57 | 2010-11-22 17:53:21 +0200 | [diff] [blame] | 5103 | if (ctxt->exception.vector == PF_VECTOR) |
Paolo Bonzini | ef54bcf | 2014-09-04 19:46:15 +0200 | [diff] [blame] | 5104 | return kvm_propagate_fault(vcpu, &ctxt->exception); |
| 5105 | |
| 5106 | if (ctxt->exception.error_code_valid) |
Avi Kivity | da9cb57 | 2010-11-22 17:53:21 +0200 | [diff] [blame] | 5107 | kvm_queue_exception_e(vcpu, ctxt->exception.vector, |
| 5108 | ctxt->exception.error_code); |
Gleb Natapov | 54b8486 | 2010-04-28 19:15:44 +0300 | [diff] [blame] | 5109 | else |
Avi Kivity | da9cb57 | 2010-11-22 17:53:21 +0200 | [diff] [blame] | 5110 | kvm_queue_exception(vcpu, ctxt->exception.vector); |
Paolo Bonzini | ef54bcf | 2014-09-04 19:46:15 +0200 | [diff] [blame] | 5111 | return false; |
Gleb Natapov | 54b8486 | 2010-04-28 19:15:44 +0300 | [diff] [blame] | 5112 | } |
| 5113 | |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 5114 | static void init_emulate_ctxt(struct kvm_vcpu *vcpu) |
| 5115 | { |
Takuya Yoshikawa | adf5223 | 2011-05-25 11:06:16 +0900 | [diff] [blame] | 5116 | struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt; |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 5117 | int cs_db, cs_l; |
| 5118 | |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 5119 | kvm_x86_ops->get_cs_db_l_bits(vcpu, &cs_db, &cs_l); |
| 5120 | |
Takuya Yoshikawa | adf5223 | 2011-05-25 11:06:16 +0900 | [diff] [blame] | 5121 | ctxt->eflags = kvm_get_rflags(vcpu); |
| 5122 | ctxt->eip = kvm_rip_read(vcpu); |
| 5123 | ctxt->mode = (!is_protmode(vcpu)) ? X86EMUL_MODE_REAL : |
| 5124 | (ctxt->eflags & X86_EFLAGS_VM) ? X86EMUL_MODE_VM86 : |
Nadav Amit | 42bf549 | 2014-04-18 07:11:34 +0300 | [diff] [blame] | 5125 | (cs_l && is_long_mode(vcpu)) ? X86EMUL_MODE_PROT64 : |
Takuya Yoshikawa | adf5223 | 2011-05-25 11:06:16 +0900 | [diff] [blame] | 5126 | cs_db ? X86EMUL_MODE_PROT32 : |
| 5127 | X86EMUL_MODE_PROT16; |
Paolo Bonzini | a584539 | 2015-04-01 18:18:53 +0200 | [diff] [blame] | 5128 | BUILD_BUG_ON(HF_GUEST_MASK != X86EMUL_GUEST_MASK); |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 5129 | BUILD_BUG_ON(HF_SMM_MASK != X86EMUL_SMM_MASK); |
| 5130 | 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] | 5131 | ctxt->emul_flags = vcpu->arch.hflags; |
Takuya Yoshikawa | adf5223 | 2011-05-25 11:06:16 +0900 | [diff] [blame] | 5132 | |
Avi Kivity | dd856ef | 2012-08-27 23:46:17 +0300 | [diff] [blame] | 5133 | init_decode_cache(ctxt); |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5134 | vcpu->arch.emulate_regs_need_sync_from_vcpu = false; |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 5135 | } |
| 5136 | |
Serge E. Hallyn | 71f9833 | 2011-04-13 09:12:54 -0500 | [diff] [blame] | 5137 | 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] | 5138 | { |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5139 | struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt; |
Mohammed Gamal | 6399565 | 2010-09-19 14:34:06 +0200 | [diff] [blame] | 5140 | int ret; |
| 5141 | |
| 5142 | init_emulate_ctxt(vcpu); |
| 5143 | |
Avi Kivity | 9dac77f | 2011-06-01 15:34:25 +0300 | [diff] [blame] | 5144 | ctxt->op_bytes = 2; |
| 5145 | ctxt->ad_bytes = 2; |
| 5146 | ctxt->_eip = ctxt->eip + inc_eip; |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5147 | ret = emulate_int_real(ctxt, irq); |
Mohammed Gamal | 6399565 | 2010-09-19 14:34:06 +0200 | [diff] [blame] | 5148 | |
| 5149 | if (ret != X86EMUL_CONTINUE) |
| 5150 | return EMULATE_FAIL; |
| 5151 | |
Avi Kivity | 9dac77f | 2011-06-01 15:34:25 +0300 | [diff] [blame] | 5152 | ctxt->eip = ctxt->_eip; |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5153 | kvm_rip_write(vcpu, ctxt->eip); |
| 5154 | kvm_set_rflags(vcpu, ctxt->eflags); |
Mohammed Gamal | 6399565 | 2010-09-19 14:34:06 +0200 | [diff] [blame] | 5155 | |
| 5156 | if (irq == NMI_VECTOR) |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 5157 | vcpu->arch.nmi_pending = 0; |
Mohammed Gamal | 6399565 | 2010-09-19 14:34:06 +0200 | [diff] [blame] | 5158 | else |
| 5159 | vcpu->arch.interrupt.pending = false; |
| 5160 | |
| 5161 | return EMULATE_DONE; |
| 5162 | } |
| 5163 | EXPORT_SYMBOL_GPL(kvm_inject_realmode_interrupt); |
| 5164 | |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 5165 | static int handle_emulation_failure(struct kvm_vcpu *vcpu) |
| 5166 | { |
Joerg Roedel | fc3a915 | 2010-11-29 17:51:49 +0100 | [diff] [blame] | 5167 | int r = EMULATE_DONE; |
| 5168 | |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 5169 | ++vcpu->stat.insn_emulation_fail; |
| 5170 | trace_kvm_emulate_insn_failed(vcpu); |
Nadav Amit | a2b9e6c | 2014-09-17 02:50:50 +0300 | [diff] [blame] | 5171 | if (!is_guest_mode(vcpu) && kvm_x86_ops->get_cpl(vcpu) == 0) { |
Joerg Roedel | fc3a915 | 2010-11-29 17:51:49 +0100 | [diff] [blame] | 5172 | vcpu->run->exit_reason = KVM_EXIT_INTERNAL_ERROR; |
| 5173 | vcpu->run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; |
| 5174 | vcpu->run->internal.ndata = 0; |
| 5175 | r = EMULATE_FAIL; |
| 5176 | } |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 5177 | kvm_queue_exception(vcpu, UD_VECTOR); |
Joerg Roedel | fc3a915 | 2010-11-29 17:51:49 +0100 | [diff] [blame] | 5178 | |
| 5179 | return r; |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 5180 | } |
| 5181 | |
Xiao Guangrong | 93c05d3 | 2013-01-13 23:49:07 +0800 | [diff] [blame] | 5182 | static bool reexecute_instruction(struct kvm_vcpu *vcpu, gva_t cr2, |
Gleb Natapov | 991eebf | 2013-04-11 12:10:51 +0300 | [diff] [blame] | 5183 | bool write_fault_to_shadow_pgtable, |
| 5184 | int emulation_type) |
Gleb Natapov | a6f177e | 2010-07-08 12:41:12 +0300 | [diff] [blame] | 5185 | { |
Xiao Guangrong | 95b3cf6 | 2013-01-13 23:46:52 +0800 | [diff] [blame] | 5186 | gpa_t gpa = cr2; |
Dan Williams | ba049e9 | 2016-01-15 16:56:11 -0800 | [diff] [blame] | 5187 | kvm_pfn_t pfn; |
Gleb Natapov | a6f177e | 2010-07-08 12:41:12 +0300 | [diff] [blame] | 5188 | |
Gleb Natapov | 991eebf | 2013-04-11 12:10:51 +0300 | [diff] [blame] | 5189 | if (emulation_type & EMULTYPE_NO_REEXECUTE) |
| 5190 | return false; |
| 5191 | |
Xiao Guangrong | 95b3cf6 | 2013-01-13 23:46:52 +0800 | [diff] [blame] | 5192 | if (!vcpu->arch.mmu.direct_map) { |
| 5193 | /* |
| 5194 | * Write permission should be allowed since only |
| 5195 | * write access need to be emulated. |
| 5196 | */ |
| 5197 | gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL); |
Gleb Natapov | 68be080 | 2010-07-14 19:05:45 +0300 | [diff] [blame] | 5198 | |
Xiao Guangrong | 95b3cf6 | 2013-01-13 23:46:52 +0800 | [diff] [blame] | 5199 | /* |
| 5200 | * If the mapping is invalid in guest, let cpu retry |
| 5201 | * it to generate fault. |
| 5202 | */ |
| 5203 | if (gpa == UNMAPPED_GVA) |
| 5204 | return true; |
| 5205 | } |
Gleb Natapov | a6f177e | 2010-07-08 12:41:12 +0300 | [diff] [blame] | 5206 | |
Xiao Guangrong | 8e3d9d0 | 2012-08-21 10:57:42 +0800 | [diff] [blame] | 5207 | /* |
| 5208 | * Do not retry the unhandleable instruction if it faults on the |
| 5209 | * readonly host memory, otherwise it will goto a infinite loop: |
| 5210 | * retry instruction -> write #PF -> emulation fail -> retry |
| 5211 | * instruction -> ... |
| 5212 | */ |
| 5213 | pfn = gfn_to_pfn(vcpu->kvm, gpa_to_gfn(gpa)); |
Xiao Guangrong | 95b3cf6 | 2013-01-13 23:46:52 +0800 | [diff] [blame] | 5214 | |
| 5215 | /* |
| 5216 | * If the instruction failed on the error pfn, it can not be fixed, |
| 5217 | * report the error to userspace. |
| 5218 | */ |
| 5219 | if (is_error_noslot_pfn(pfn)) |
| 5220 | return false; |
| 5221 | |
| 5222 | kvm_release_pfn_clean(pfn); |
| 5223 | |
| 5224 | /* The instructions are well-emulated on direct mmu. */ |
| 5225 | if (vcpu->arch.mmu.direct_map) { |
| 5226 | unsigned int indirect_shadow_pages; |
| 5227 | |
| 5228 | spin_lock(&vcpu->kvm->mmu_lock); |
| 5229 | indirect_shadow_pages = vcpu->kvm->arch.indirect_shadow_pages; |
| 5230 | spin_unlock(&vcpu->kvm->mmu_lock); |
| 5231 | |
| 5232 | if (indirect_shadow_pages) |
| 5233 | kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa)); |
| 5234 | |
Gleb Natapov | a6f177e | 2010-07-08 12:41:12 +0300 | [diff] [blame] | 5235 | return true; |
Xiao Guangrong | 8e3d9d0 | 2012-08-21 10:57:42 +0800 | [diff] [blame] | 5236 | } |
Gleb Natapov | a6f177e | 2010-07-08 12:41:12 +0300 | [diff] [blame] | 5237 | |
Xiao Guangrong | 95b3cf6 | 2013-01-13 23:46:52 +0800 | [diff] [blame] | 5238 | /* |
| 5239 | * if emulation was due to access to shadowed page table |
| 5240 | * and it failed try to unshadow page and re-enter the |
| 5241 | * guest to let CPU execute the instruction. |
| 5242 | */ |
| 5243 | kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa)); |
Xiao Guangrong | 93c05d3 | 2013-01-13 23:49:07 +0800 | [diff] [blame] | 5244 | |
| 5245 | /* |
| 5246 | * If the access faults on its page table, it can not |
| 5247 | * be fixed by unprotecting shadow page and it should |
| 5248 | * be reported to userspace. |
| 5249 | */ |
| 5250 | return !write_fault_to_shadow_pgtable; |
Gleb Natapov | a6f177e | 2010-07-08 12:41:12 +0300 | [diff] [blame] | 5251 | } |
| 5252 | |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 5253 | static bool retry_instruction(struct x86_emulate_ctxt *ctxt, |
| 5254 | unsigned long cr2, int emulation_type) |
| 5255 | { |
| 5256 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
| 5257 | unsigned long last_retry_eip, last_retry_addr, gpa = cr2; |
| 5258 | |
| 5259 | last_retry_eip = vcpu->arch.last_retry_eip; |
| 5260 | last_retry_addr = vcpu->arch.last_retry_addr; |
| 5261 | |
| 5262 | /* |
| 5263 | * If the emulation is caused by #PF and it is non-page_table |
| 5264 | * writing instruction, it means the VM-EXIT is caused by shadow |
| 5265 | * page protected, we can zap the shadow page and retry this |
| 5266 | * instruction directly. |
| 5267 | * |
| 5268 | * Note: if the guest uses a non-page-table modifying instruction |
| 5269 | * on the PDE that points to the instruction, then we will unmap |
| 5270 | * the instruction and go to an infinite loop. So, we cache the |
| 5271 | * last retried eip and the last fault address, if we meet the eip |
| 5272 | * and the address again, we can break out of the potential infinite |
| 5273 | * loop. |
| 5274 | */ |
| 5275 | vcpu->arch.last_retry_eip = vcpu->arch.last_retry_addr = 0; |
| 5276 | |
| 5277 | if (!(emulation_type & EMULTYPE_RETRY)) |
| 5278 | return false; |
| 5279 | |
| 5280 | if (x86_page_table_writing_insn(ctxt)) |
| 5281 | return false; |
| 5282 | |
| 5283 | if (ctxt->eip == last_retry_eip && last_retry_addr == cr2) |
| 5284 | return false; |
| 5285 | |
| 5286 | vcpu->arch.last_retry_eip = ctxt->eip; |
| 5287 | vcpu->arch.last_retry_addr = cr2; |
| 5288 | |
| 5289 | if (!vcpu->arch.mmu.direct_map) |
| 5290 | gpa = kvm_mmu_gva_to_gpa_write(vcpu, cr2, NULL); |
| 5291 | |
Xiao Guangrong | 2236802 | 2013-01-13 23:44:12 +0800 | [diff] [blame] | 5292 | kvm_mmu_unprotect_page(vcpu->kvm, gpa_to_gfn(gpa)); |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 5293 | |
| 5294 | return true; |
| 5295 | } |
| 5296 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 5297 | static int complete_emulated_mmio(struct kvm_vcpu *vcpu); |
| 5298 | static int complete_emulated_pio(struct kvm_vcpu *vcpu); |
| 5299 | |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 5300 | static void kvm_smm_changed(struct kvm_vcpu *vcpu) |
Paolo Bonzini | a584539 | 2015-04-01 18:18:53 +0200 | [diff] [blame] | 5301 | { |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 5302 | if (!(vcpu->arch.hflags & HF_SMM_MASK)) { |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 5303 | /* This is a good place to trace that we are exiting SMM. */ |
| 5304 | trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, false); |
| 5305 | |
Paolo Bonzini | c43203c | 2016-06-01 22:26:00 +0200 | [diff] [blame] | 5306 | /* Process a latched INIT or SMI, if any. */ |
| 5307 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 5308 | } |
Paolo Bonzini | 699023e | 2015-05-18 15:03:39 +0200 | [diff] [blame] | 5309 | |
| 5310 | kvm_mmu_reset_context(vcpu); |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 5311 | } |
| 5312 | |
| 5313 | static void kvm_set_hflags(struct kvm_vcpu *vcpu, unsigned emul_flags) |
| 5314 | { |
| 5315 | unsigned changed = vcpu->arch.hflags ^ emul_flags; |
| 5316 | |
Paolo Bonzini | a584539 | 2015-04-01 18:18:53 +0200 | [diff] [blame] | 5317 | vcpu->arch.hflags = emul_flags; |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 5318 | |
| 5319 | if (changed & HF_SMM_MASK) |
| 5320 | kvm_smm_changed(vcpu); |
Paolo Bonzini | a584539 | 2015-04-01 18:18:53 +0200 | [diff] [blame] | 5321 | } |
| 5322 | |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 5323 | static int kvm_vcpu_check_hw_bp(unsigned long addr, u32 type, u32 dr7, |
| 5324 | unsigned long *db) |
| 5325 | { |
| 5326 | u32 dr6 = 0; |
| 5327 | int i; |
| 5328 | u32 enable, rwlen; |
| 5329 | |
| 5330 | enable = dr7; |
| 5331 | rwlen = dr7 >> 16; |
| 5332 | for (i = 0; i < 4; i++, enable >>= 2, rwlen >>= 4) |
| 5333 | if ((enable & 3) && (rwlen & 15) == type && db[i] == addr) |
| 5334 | dr6 |= (1 << i); |
| 5335 | return dr6; |
| 5336 | } |
| 5337 | |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 5338 | 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] | 5339 | { |
| 5340 | struct kvm_run *kvm_run = vcpu->run; |
| 5341 | |
| 5342 | /* |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 5343 | * rflags is the old, "raw" value of the flags. The new value has |
| 5344 | * not been saved yet. |
Paolo Bonzini | 663f4c6 | 2013-06-25 18:32:07 +0200 | [diff] [blame] | 5345 | * |
| 5346 | * This is correct even for TF set by the guest, because "the |
| 5347 | * processor will not generate this exception after the instruction |
| 5348 | * that sets the TF flag". |
| 5349 | */ |
Paolo Bonzini | 663f4c6 | 2013-06-25 18:32:07 +0200 | [diff] [blame] | 5350 | if (unlikely(rflags & X86_EFLAGS_TF)) { |
| 5351 | if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) { |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 5352 | kvm_run->debug.arch.dr6 = DR6_BS | DR6_FIXED_1 | |
| 5353 | DR6_RTM; |
Paolo Bonzini | 663f4c6 | 2013-06-25 18:32:07 +0200 | [diff] [blame] | 5354 | kvm_run->debug.arch.pc = vcpu->arch.singlestep_rip; |
| 5355 | kvm_run->debug.arch.exception = DB_VECTOR; |
| 5356 | kvm_run->exit_reason = KVM_EXIT_DEBUG; |
| 5357 | *r = EMULATE_USER_EXIT; |
| 5358 | } else { |
| 5359 | vcpu->arch.emulate_ctxt.eflags &= ~X86_EFLAGS_TF; |
| 5360 | /* |
| 5361 | * "Certain debug exceptions may clear bit 0-3. The |
| 5362 | * remaining contents of the DR6 register are never |
| 5363 | * cleared by the processor". |
| 5364 | */ |
| 5365 | vcpu->arch.dr6 &= ~15; |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 5366 | vcpu->arch.dr6 |= DR6_BS | DR6_RTM; |
Paolo Bonzini | 663f4c6 | 2013-06-25 18:32:07 +0200 | [diff] [blame] | 5367 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 5368 | } |
| 5369 | } |
| 5370 | } |
| 5371 | |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 5372 | static bool kvm_vcpu_check_breakpoint(struct kvm_vcpu *vcpu, int *r) |
| 5373 | { |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 5374 | if (unlikely(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) && |
| 5375 | (vcpu->arch.guest_debug_dr7 & DR7_BP_EN_MASK)) { |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 5376 | struct kvm_run *kvm_run = vcpu->run; |
| 5377 | unsigned long eip = kvm_get_linear_rip(vcpu); |
| 5378 | u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0, |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 5379 | vcpu->arch.guest_debug_dr7, |
| 5380 | vcpu->arch.eff_db); |
| 5381 | |
| 5382 | if (dr6 != 0) { |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 5383 | kvm_run->debug.arch.dr6 = dr6 | DR6_FIXED_1 | DR6_RTM; |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 5384 | kvm_run->debug.arch.pc = eip; |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 5385 | kvm_run->debug.arch.exception = DB_VECTOR; |
| 5386 | kvm_run->exit_reason = KVM_EXIT_DEBUG; |
| 5387 | *r = EMULATE_USER_EXIT; |
| 5388 | return true; |
| 5389 | } |
| 5390 | } |
| 5391 | |
Nadav Amit | 4161a56 | 2014-07-17 01:19:31 +0300 | [diff] [blame] | 5392 | if (unlikely(vcpu->arch.dr7 & DR7_BP_EN_MASK) && |
| 5393 | !(kvm_get_rflags(vcpu) & X86_EFLAGS_RF)) { |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 5394 | unsigned long eip = kvm_get_linear_rip(vcpu); |
| 5395 | u32 dr6 = kvm_vcpu_check_hw_bp(eip, 0, |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 5396 | vcpu->arch.dr7, |
| 5397 | vcpu->arch.db); |
| 5398 | |
| 5399 | if (dr6 != 0) { |
| 5400 | vcpu->arch.dr6 &= ~15; |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 5401 | vcpu->arch.dr6 |= dr6 | DR6_RTM; |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 5402 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 5403 | *r = EMULATE_DONE; |
| 5404 | return true; |
| 5405 | } |
| 5406 | } |
| 5407 | |
| 5408 | return false; |
| 5409 | } |
| 5410 | |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5411 | int x86_emulate_instruction(struct kvm_vcpu *vcpu, |
| 5412 | unsigned long cr2, |
Andre Przywara | dc25e89 | 2010-12-21 11:12:07 +0100 | [diff] [blame] | 5413 | int emulation_type, |
| 5414 | void *insn, |
| 5415 | int insn_len) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5416 | { |
Gleb Natapov | 95cb229 | 2010-04-28 19:15:43 +0300 | [diff] [blame] | 5417 | int r; |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5418 | struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt; |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5419 | bool writeback = true; |
Xiao Guangrong | 93c05d3 | 2013-01-13 23:49:07 +0800 | [diff] [blame] | 5420 | bool write_fault_to_spt = vcpu->arch.write_fault_to_shadow_pgtable; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5421 | |
Xiao Guangrong | 93c05d3 | 2013-01-13 23:49:07 +0800 | [diff] [blame] | 5422 | /* |
| 5423 | * Clear write_fault_to_shadow_pgtable here to ensure it is |
| 5424 | * never reused. |
| 5425 | */ |
| 5426 | vcpu->arch.write_fault_to_shadow_pgtable = false; |
Avi Kivity | 26eef70 | 2008-07-03 14:59:22 +0300 | [diff] [blame] | 5427 | kvm_clear_exception_queue(vcpu); |
Gleb Natapov | 8d7d8102 | 2011-04-12 12:36:21 +0300 | [diff] [blame] | 5428 | |
Sheng Yang | 571008d | 2008-01-02 14:49:22 +0800 | [diff] [blame] | 5429 | if (!(emulation_type & EMULTYPE_NO_DECODE)) { |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 5430 | init_emulate_ctxt(vcpu); |
Paolo Bonzini | 4a1e10d | 2013-05-30 11:48:30 +0200 | [diff] [blame] | 5431 | |
| 5432 | /* |
| 5433 | * We will reenter on the same instruction since |
| 5434 | * we do not set complete_userspace_io. This does not |
| 5435 | * handle watchpoints yet, those would be handled in |
| 5436 | * the emulate_ops. |
| 5437 | */ |
| 5438 | if (kvm_vcpu_check_breakpoint(vcpu, &r)) |
| 5439 | return r; |
| 5440 | |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5441 | ctxt->interruptibility = 0; |
| 5442 | ctxt->have_exception = false; |
Paolo Bonzini | e0ad0b4 | 2014-08-20 10:08:23 +0200 | [diff] [blame] | 5443 | ctxt->exception.vector = -1; |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5444 | ctxt->perm_ok = false; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5445 | |
Borislav Petkov | b51e974 | 2013-09-22 16:44:52 +0200 | [diff] [blame] | 5446 | ctxt->ud = emulation_type & EMULTYPE_TRAP_UD; |
Avi Kivity | 4005996 | 2011-02-01 16:32:04 +0200 | [diff] [blame] | 5447 | |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5448 | r = x86_decode_insn(ctxt, insn, insn_len); |
Joerg Roedel | d47f00a | 2010-09-10 17:30:56 +0200 | [diff] [blame] | 5449 | |
Avi Kivity | e46479f | 2010-04-11 13:05:16 +0300 | [diff] [blame] | 5450 | trace_kvm_emulate_insn_start(vcpu); |
Avi Kivity | f2b5756 | 2007-11-18 15:17:51 +0200 | [diff] [blame] | 5451 | ++vcpu->stat.insn_emulation; |
Takuya Yoshikawa | 1d2887e | 2011-07-30 18:03:34 +0900 | [diff] [blame] | 5452 | if (r != EMULATION_OK) { |
Avi Kivity | 4005996 | 2011-02-01 16:32:04 +0200 | [diff] [blame] | 5453 | if (emulation_type & EMULTYPE_TRAP_UD) |
| 5454 | return EMULATE_FAIL; |
Gleb Natapov | 991eebf | 2013-04-11 12:10:51 +0300 | [diff] [blame] | 5455 | if (reexecute_instruction(vcpu, cr2, write_fault_to_spt, |
| 5456 | emulation_type)) |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5457 | return EMULATE_DONE; |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 5458 | if (emulation_type & EMULTYPE_SKIP) |
| 5459 | return EMULATE_FAIL; |
| 5460 | return handle_emulation_failure(vcpu); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5461 | } |
| 5462 | } |
| 5463 | |
Gleb Natapov | ba8afb6 | 2009-04-12 13:36:57 +0300 | [diff] [blame] | 5464 | if (emulation_type & EMULTYPE_SKIP) { |
Avi Kivity | 9dac77f | 2011-06-01 15:34:25 +0300 | [diff] [blame] | 5465 | kvm_rip_write(vcpu, ctxt->_eip); |
Nadav Amit | bb663c7 | 2014-07-21 14:37:26 +0300 | [diff] [blame] | 5466 | if (ctxt->eflags & X86_EFLAGS_RF) |
| 5467 | kvm_set_rflags(vcpu, ctxt->eflags & ~X86_EFLAGS_RF); |
Gleb Natapov | ba8afb6 | 2009-04-12 13:36:57 +0300 | [diff] [blame] | 5468 | return EMULATE_DONE; |
| 5469 | } |
| 5470 | |
Xiao Guangrong | 1cb3f3a | 2011-09-22 17:02:48 +0800 | [diff] [blame] | 5471 | if (retry_instruction(ctxt, cr2, emulation_type)) |
| 5472 | return EMULATE_DONE; |
| 5473 | |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5474 | /* this is needed for vmware backdoor interface to work since it |
Gleb Natapov | 4d2179e | 2010-04-28 19:15:42 +0300 | [diff] [blame] | 5475 | changes registers values during IO operation */ |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5476 | if (vcpu->arch.emulate_regs_need_sync_from_vcpu) { |
| 5477 | vcpu->arch.emulate_regs_need_sync_from_vcpu = false; |
Avi Kivity | dd856ef | 2012-08-27 23:46:17 +0300 | [diff] [blame] | 5478 | emulator_invalidate_register_cache(ctxt); |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5479 | } |
Gleb Natapov | 4d2179e | 2010-04-28 19:15:42 +0300 | [diff] [blame] | 5480 | |
Gleb Natapov | 5cd2191 | 2010-03-18 15:20:26 +0200 | [diff] [blame] | 5481 | restart: |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5482 | r = x86_emulate_insn(ctxt); |
Gleb Natapov | c3cd7ff | 2010-04-28 19:15:35 +0300 | [diff] [blame] | 5483 | |
Joerg Roedel | 775fde8 | 2011-04-04 12:39:24 +0200 | [diff] [blame] | 5484 | if (r == EMULATION_INTERCEPTED) |
| 5485 | return EMULATE_DONE; |
| 5486 | |
Gleb Natapov | d2ddd1c | 2010-08-25 12:47:43 +0300 | [diff] [blame] | 5487 | if (r == EMULATION_FAILED) { |
Gleb Natapov | 991eebf | 2013-04-11 12:10:51 +0300 | [diff] [blame] | 5488 | if (reexecute_instruction(vcpu, cr2, write_fault_to_spt, |
| 5489 | emulation_type)) |
Gleb Natapov | c3cd7ff | 2010-04-28 19:15:35 +0300 | [diff] [blame] | 5490 | return EMULATE_DONE; |
| 5491 | |
Gleb Natapov | 6d77dbf | 2010-05-10 11:16:56 +0300 | [diff] [blame] | 5492 | return handle_emulation_failure(vcpu); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5493 | } |
| 5494 | |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5495 | if (ctxt->have_exception) { |
Gleb Natapov | d2ddd1c | 2010-08-25 12:47:43 +0300 | [diff] [blame] | 5496 | r = EMULATE_DONE; |
Paolo Bonzini | ef54bcf | 2014-09-04 19:46:15 +0200 | [diff] [blame] | 5497 | if (inject_emulated_exception(vcpu)) |
| 5498 | return r; |
Gleb Natapov | d2ddd1c | 2010-08-25 12:47:43 +0300 | [diff] [blame] | 5499 | } else if (vcpu->arch.pio.count) { |
Paolo Bonzini | 0912c97 | 2013-08-27 15:41:43 +0200 | [diff] [blame] | 5500 | if (!vcpu->arch.pio.in) { |
| 5501 | /* FIXME: return into emulator if single-stepping. */ |
Gleb Natapov | e85d28f | 2010-07-29 15:11:52 +0300 | [diff] [blame] | 5502 | vcpu->arch.pio.count = 0; |
Paolo Bonzini | 0912c97 | 2013-08-27 15:41:43 +0200 | [diff] [blame] | 5503 | } else { |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5504 | writeback = false; |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 5505 | vcpu->arch.complete_userspace_io = complete_emulated_pio; |
| 5506 | } |
Paolo Bonzini | ac0a48c | 2013-06-25 18:24:41 +0200 | [diff] [blame] | 5507 | r = EMULATE_USER_EXIT; |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5508 | } else if (vcpu->mmio_needed) { |
| 5509 | if (!vcpu->mmio_is_write) |
| 5510 | writeback = false; |
Paolo Bonzini | ac0a48c | 2013-06-25 18:24:41 +0200 | [diff] [blame] | 5511 | r = EMULATE_USER_EXIT; |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 5512 | vcpu->arch.complete_userspace_io = complete_emulated_mmio; |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5513 | } else if (r == EMULATION_RESTART) |
Gleb Natapov | e85d28f | 2010-07-29 15:11:52 +0300 | [diff] [blame] | 5514 | goto restart; |
Gleb Natapov | d2ddd1c | 2010-08-25 12:47:43 +0300 | [diff] [blame] | 5515 | else |
| 5516 | r = EMULATE_DONE; |
Gleb Natapov | e85d28f | 2010-07-29 15:11:52 +0300 | [diff] [blame] | 5517 | |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5518 | if (writeback) { |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 5519 | unsigned long rflags = kvm_x86_ops->get_rflags(vcpu); |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5520 | toggle_interruptibility(vcpu, ctxt->interruptibility); |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5521 | vcpu->arch.emulate_regs_need_sync_to_vcpu = false; |
Paolo Bonzini | a584539 | 2015-04-01 18:18:53 +0200 | [diff] [blame] | 5522 | if (vcpu->arch.hflags != ctxt->emul_flags) |
| 5523 | kvm_set_hflags(vcpu, ctxt->emul_flags); |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 5524 | kvm_rip_write(vcpu, ctxt->eip); |
Paolo Bonzini | 663f4c6 | 2013-06-25 18:32:07 +0200 | [diff] [blame] | 5525 | if (r == EMULATE_DONE) |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 5526 | kvm_vcpu_check_singlestep(vcpu, rflags, &r); |
Nadav Amit | 38827db | 2014-11-02 11:54:53 +0200 | [diff] [blame] | 5527 | if (!ctxt->have_exception || |
| 5528 | exception_type(ctxt->exception.vector) == EXCPT_TRAP) |
| 5529 | __kvm_set_rflags(vcpu, ctxt->eflags); |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 5530 | |
| 5531 | /* |
| 5532 | * For STI, interrupts are shadowed; so KVM_REQ_EVENT will |
| 5533 | * do nothing, and it will be requested again as soon as |
| 5534 | * the shadow expires. But we still need to check here, |
| 5535 | * because POPF has no interrupt shadow. |
| 5536 | */ |
| 5537 | if (unlikely((ctxt->eflags & ~rflags) & X86_EFLAGS_IF)) |
| 5538 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 5539 | } else |
| 5540 | vcpu->arch.emulate_regs_need_sync_to_vcpu = true; |
Gleb Natapov | 3457e41 | 2010-04-28 19:15:38 +0300 | [diff] [blame] | 5541 | |
Gleb Natapov | e85d28f | 2010-07-29 15:11:52 +0300 | [diff] [blame] | 5542 | return r; |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5543 | } |
Andre Przywara | 51d8b66 | 2010-12-21 11:12:02 +0100 | [diff] [blame] | 5544 | EXPORT_SYMBOL_GPL(x86_emulate_instruction); |
Carsten Otte | bbd9b64 | 2007-10-30 18:44:21 +0100 | [diff] [blame] | 5545 | |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5546 | 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] | 5547 | { |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5548 | unsigned long val = kvm_register_read(vcpu, VCPU_REGS_RAX); |
Avi Kivity | ca1d4a9 | 2011-04-20 13:37:53 +0300 | [diff] [blame] | 5549 | int ret = emulator_pio_out_emulated(&vcpu->arch.emulate_ctxt, |
| 5550 | size, port, &val, 1); |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5551 | /* do not return to emulator after return from userspace */ |
Gleb Natapov | 7972995 | 2010-03-18 15:20:24 +0200 | [diff] [blame] | 5552 | vcpu->arch.pio.count = 0; |
Izik Eidus | 0f34607 | 2008-12-29 01:42:20 +0200 | [diff] [blame] | 5553 | return ret; |
Carsten Otte | de7d789 | 2007-10-30 18:44:25 +0100 | [diff] [blame] | 5554 | } |
Gleb Natapov | cf8f70b | 2010-03-18 15:20:23 +0200 | [diff] [blame] | 5555 | EXPORT_SYMBOL_GPL(kvm_fast_pio_out); |
Carsten Otte | de7d789 | 2007-10-30 18:44:25 +0100 | [diff] [blame] | 5556 | |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 5557 | static void tsc_bad(void *info) |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5558 | { |
Tejun Heo | 0a3aee0 | 2010-12-18 16:28:55 +0100 | [diff] [blame] | 5559 | __this_cpu_write(cpu_tsc_khz, 0); |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 5560 | } |
| 5561 | |
| 5562 | static void tsc_khz_changed(void *data) |
| 5563 | { |
| 5564 | struct cpufreq_freqs *freq = data; |
| 5565 | unsigned long khz = 0; |
| 5566 | |
| 5567 | if (data) |
| 5568 | khz = freq->new; |
| 5569 | else if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) |
| 5570 | khz = cpufreq_quick_get(raw_smp_processor_id()); |
| 5571 | if (!khz) |
| 5572 | khz = tsc_khz; |
Tejun Heo | 0a3aee0 | 2010-12-18 16:28:55 +0100 | [diff] [blame] | 5573 | __this_cpu_write(cpu_tsc_khz, khz); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5574 | } |
| 5575 | |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5576 | static int kvmclock_cpufreq_notifier(struct notifier_block *nb, unsigned long val, |
| 5577 | void *data) |
| 5578 | { |
| 5579 | struct cpufreq_freqs *freq = data; |
| 5580 | struct kvm *kvm; |
| 5581 | struct kvm_vcpu *vcpu; |
| 5582 | int i, send_ipi = 0; |
| 5583 | |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 5584 | /* |
| 5585 | * We allow guests to temporarily run on slowing clocks, |
| 5586 | * provided we notify them after, or to run on accelerating |
| 5587 | * clocks, provided we notify them before. Thus time never |
| 5588 | * goes backwards. |
| 5589 | * |
| 5590 | * However, we have a problem. We can't atomically update |
| 5591 | * the frequency of a given CPU from this function; it is |
| 5592 | * merely a notifier, which can be called from any CPU. |
| 5593 | * Changing the TSC frequency at arbitrary points in time |
| 5594 | * requires a recomputation of local variables related to |
| 5595 | * the TSC for each VCPU. We must flag these local variables |
| 5596 | * to be updated and be sure the update takes place with the |
| 5597 | * new frequency before any guests proceed. |
| 5598 | * |
| 5599 | * Unfortunately, the combination of hotplug CPU and frequency |
| 5600 | * change creates an intractable locking scenario; the order |
| 5601 | * of when these callouts happen is undefined with respect to |
| 5602 | * CPU hotplug, and they can race with each other. As such, |
| 5603 | * merely setting per_cpu(cpu_tsc_khz) = X during a hotadd is |
| 5604 | * undefined; you can actually have a CPU frequency change take |
| 5605 | * place in between the computation of X and the setting of the |
| 5606 | * variable. To protect against this problem, all updates of |
| 5607 | * the per_cpu tsc_khz variable are done in an interrupt |
| 5608 | * protected IPI, and all callers wishing to update the value |
| 5609 | * must wait for a synchronous IPI to complete (which is trivial |
| 5610 | * if the caller is on the CPU already). This establishes the |
| 5611 | * necessary total order on variable updates. |
| 5612 | * |
| 5613 | * Note that because a guest time update may take place |
| 5614 | * anytime after the setting of the VCPU's request bit, the |
| 5615 | * correct TSC value must be set before the request. However, |
| 5616 | * to ensure the update actually makes it to any guest which |
| 5617 | * starts running in hardware virtualization between the set |
| 5618 | * and the acquisition of the spinlock, we must also ping the |
| 5619 | * CPU after setting the request bit. |
| 5620 | * |
| 5621 | */ |
| 5622 | |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5623 | if (val == CPUFREQ_PRECHANGE && freq->old > freq->new) |
| 5624 | return 0; |
| 5625 | if (val == CPUFREQ_POSTCHANGE && freq->old < freq->new) |
| 5626 | return 0; |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 5627 | |
| 5628 | smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5629 | |
Paolo Bonzini | 2f303b7 | 2013-09-25 13:53:07 +0200 | [diff] [blame] | 5630 | spin_lock(&kvm_lock); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5631 | list_for_each_entry(kvm, &vm_list, vm_list) { |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 5632 | kvm_for_each_vcpu(i, vcpu, kvm) { |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5633 | if (vcpu->cpu != freq->cpu) |
| 5634 | continue; |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 5635 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5636 | if (vcpu->cpu != smp_processor_id()) |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 5637 | send_ipi = 1; |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5638 | } |
| 5639 | } |
Paolo Bonzini | 2f303b7 | 2013-09-25 13:53:07 +0200 | [diff] [blame] | 5640 | spin_unlock(&kvm_lock); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5641 | |
| 5642 | if (freq->old < freq->new && send_ipi) { |
| 5643 | /* |
| 5644 | * We upscale the frequency. Must make the guest |
| 5645 | * doesn't see old kvmclock values while running with |
| 5646 | * the new frequency, otherwise we risk the guest sees |
| 5647 | * time go backwards. |
| 5648 | * |
| 5649 | * In case we update the frequency for another cpu |
| 5650 | * (which might be in guest context) send an interrupt |
| 5651 | * to kick the cpu out of guest context. Next time |
| 5652 | * guest context is entered kvmclock will be updated, |
| 5653 | * so the guest will not see stale values. |
| 5654 | */ |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 5655 | smp_call_function_single(freq->cpu, tsc_khz_changed, freq, 1); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5656 | } |
| 5657 | return 0; |
| 5658 | } |
| 5659 | |
| 5660 | static struct notifier_block kvmclock_cpufreq_notifier_block = { |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 5661 | .notifier_call = kvmclock_cpufreq_notifier |
| 5662 | }; |
| 5663 | |
| 5664 | static int kvmclock_cpu_notifier(struct notifier_block *nfb, |
| 5665 | unsigned long action, void *hcpu) |
| 5666 | { |
| 5667 | unsigned int cpu = (unsigned long)hcpu; |
| 5668 | |
| 5669 | switch (action) { |
| 5670 | case CPU_ONLINE: |
| 5671 | case CPU_DOWN_FAILED: |
| 5672 | smp_call_function_single(cpu, tsc_khz_changed, NULL, 1); |
| 5673 | break; |
| 5674 | case CPU_DOWN_PREPARE: |
| 5675 | smp_call_function_single(cpu, tsc_bad, NULL, 1); |
| 5676 | break; |
| 5677 | } |
| 5678 | return NOTIFY_OK; |
| 5679 | } |
| 5680 | |
| 5681 | static struct notifier_block kvmclock_cpu_notifier_block = { |
| 5682 | .notifier_call = kvmclock_cpu_notifier, |
| 5683 | .priority = -INT_MAX |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5684 | }; |
| 5685 | |
Zachary Amsden | b820cc0 | 2009-09-29 11:38:34 -1000 | [diff] [blame] | 5686 | static void kvm_timer_init(void) |
| 5687 | { |
| 5688 | int cpu; |
| 5689 | |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 5690 | max_tsc_khz = tsc_khz; |
Srivatsa S. Bhat | 460dd42 | 2014-03-11 02:09:01 +0530 | [diff] [blame] | 5691 | |
| 5692 | cpu_notifier_register_begin(); |
Zachary Amsden | b820cc0 | 2009-09-29 11:38:34 -1000 | [diff] [blame] | 5693 | if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) { |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 5694 | #ifdef CONFIG_CPU_FREQ |
| 5695 | struct cpufreq_policy policy; |
| 5696 | memset(&policy, 0, sizeof(policy)); |
Avi Kivity | 3e26f23 | 2010-12-16 12:16:34 +0200 | [diff] [blame] | 5697 | cpu = get_cpu(); |
| 5698 | cpufreq_get_policy(&policy, cpu); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 5699 | if (policy.cpuinfo.max_freq) |
| 5700 | max_tsc_khz = policy.cpuinfo.max_freq; |
Avi Kivity | 3e26f23 | 2010-12-16 12:16:34 +0200 | [diff] [blame] | 5701 | put_cpu(); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 5702 | #endif |
Zachary Amsden | b820cc0 | 2009-09-29 11:38:34 -1000 | [diff] [blame] | 5703 | cpufreq_register_notifier(&kvmclock_cpufreq_notifier_block, |
| 5704 | CPUFREQ_TRANSITION_NOTIFIER); |
| 5705 | } |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 5706 | pr_debug("kvm: max_tsc_khz = %ld\n", max_tsc_khz); |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 5707 | for_each_online_cpu(cpu) |
| 5708 | smp_call_function_single(cpu, tsc_khz_changed, NULL, 1); |
Srivatsa S. Bhat | 460dd42 | 2014-03-11 02:09:01 +0530 | [diff] [blame] | 5709 | |
| 5710 | __register_hotcpu_notifier(&kvmclock_cpu_notifier_block); |
| 5711 | cpu_notifier_register_done(); |
| 5712 | |
Zachary Amsden | b820cc0 | 2009-09-29 11:38:34 -1000 | [diff] [blame] | 5713 | } |
| 5714 | |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 5715 | static DEFINE_PER_CPU(struct kvm_vcpu *, current_vcpu); |
| 5716 | |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 5717 | int kvm_is_in_guest(void) |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 5718 | { |
Alex,Shi | 086c985 | 2011-10-20 15:34:01 +0800 | [diff] [blame] | 5719 | return __this_cpu_read(current_vcpu) != NULL; |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 5720 | } |
| 5721 | |
| 5722 | static int kvm_is_user_mode(void) |
| 5723 | { |
| 5724 | int user_mode = 3; |
Zhang, Yanmin | dcf46b9 | 2010-04-20 10:13:58 +0800 | [diff] [blame] | 5725 | |
Alex,Shi | 086c985 | 2011-10-20 15:34:01 +0800 | [diff] [blame] | 5726 | if (__this_cpu_read(current_vcpu)) |
| 5727 | user_mode = kvm_x86_ops->get_cpl(__this_cpu_read(current_vcpu)); |
Zhang, Yanmin | dcf46b9 | 2010-04-20 10:13:58 +0800 | [diff] [blame] | 5728 | |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 5729 | return user_mode != 0; |
| 5730 | } |
| 5731 | |
| 5732 | static unsigned long kvm_get_guest_ip(void) |
| 5733 | { |
| 5734 | unsigned long ip = 0; |
Zhang, Yanmin | dcf46b9 | 2010-04-20 10:13:58 +0800 | [diff] [blame] | 5735 | |
Alex,Shi | 086c985 | 2011-10-20 15:34:01 +0800 | [diff] [blame] | 5736 | if (__this_cpu_read(current_vcpu)) |
| 5737 | ip = kvm_rip_read(__this_cpu_read(current_vcpu)); |
Zhang, Yanmin | dcf46b9 | 2010-04-20 10:13:58 +0800 | [diff] [blame] | 5738 | |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 5739 | return ip; |
| 5740 | } |
| 5741 | |
| 5742 | static struct perf_guest_info_callbacks kvm_guest_cbs = { |
| 5743 | .is_in_guest = kvm_is_in_guest, |
| 5744 | .is_user_mode = kvm_is_user_mode, |
| 5745 | .get_guest_ip = kvm_get_guest_ip, |
| 5746 | }; |
| 5747 | |
| 5748 | void kvm_before_handle_nmi(struct kvm_vcpu *vcpu) |
| 5749 | { |
Alex,Shi | 086c985 | 2011-10-20 15:34:01 +0800 | [diff] [blame] | 5750 | __this_cpu_write(current_vcpu, vcpu); |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 5751 | } |
| 5752 | EXPORT_SYMBOL_GPL(kvm_before_handle_nmi); |
| 5753 | |
| 5754 | void kvm_after_handle_nmi(struct kvm_vcpu *vcpu) |
| 5755 | { |
Alex,Shi | 086c985 | 2011-10-20 15:34:01 +0800 | [diff] [blame] | 5756 | __this_cpu_write(current_vcpu, NULL); |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 5757 | } |
| 5758 | EXPORT_SYMBOL_GPL(kvm_after_handle_nmi); |
| 5759 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5760 | static void kvm_set_mmio_spte_mask(void) |
| 5761 | { |
| 5762 | u64 mask; |
| 5763 | int maxphyaddr = boot_cpu_data.x86_phys_bits; |
| 5764 | |
| 5765 | /* |
| 5766 | * Set the reserved bits and the present bit of an paging-structure |
| 5767 | * entry to generate page fault with PFER.RSV = 1. |
| 5768 | */ |
Xiao Guangrong | 885032b | 2013-06-07 16:51:23 +0800 | [diff] [blame] | 5769 | /* Mask the reserved physical address bits. */ |
Tiejun Chen | d143148 | 2014-09-01 18:44:04 +0800 | [diff] [blame] | 5770 | mask = rsvd_bits(maxphyaddr, 51); |
Xiao Guangrong | 885032b | 2013-06-07 16:51:23 +0800 | [diff] [blame] | 5771 | |
| 5772 | /* Bit 62 is always reserved for 32bit host. */ |
| 5773 | mask |= 0x3ull << 62; |
| 5774 | |
| 5775 | /* Set the present bit. */ |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5776 | mask |= 1ull; |
| 5777 | |
| 5778 | #ifdef CONFIG_X86_64 |
| 5779 | /* |
| 5780 | * If reserved bit is not supported, clear the present bit to disable |
| 5781 | * mmio page fault. |
| 5782 | */ |
| 5783 | if (maxphyaddr == 52) |
| 5784 | mask &= ~1ull; |
| 5785 | #endif |
| 5786 | |
| 5787 | kvm_mmu_set_mmio_spte_mask(mask); |
| 5788 | } |
| 5789 | |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 5790 | #ifdef CONFIG_X86_64 |
| 5791 | static void pvclock_gtod_update_fn(struct work_struct *work) |
| 5792 | { |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 5793 | struct kvm *kvm; |
| 5794 | |
| 5795 | struct kvm_vcpu *vcpu; |
| 5796 | int i; |
| 5797 | |
Paolo Bonzini | 2f303b7 | 2013-09-25 13:53:07 +0200 | [diff] [blame] | 5798 | spin_lock(&kvm_lock); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 5799 | list_for_each_entry(kvm, &vm_list, vm_list) |
| 5800 | kvm_for_each_vcpu(i, vcpu, kvm) |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 5801 | kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 5802 | atomic_set(&kvm_guest_has_master_clock, 0); |
Paolo Bonzini | 2f303b7 | 2013-09-25 13:53:07 +0200 | [diff] [blame] | 5803 | spin_unlock(&kvm_lock); |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 5804 | } |
| 5805 | |
| 5806 | static DECLARE_WORK(pvclock_gtod_work, pvclock_gtod_update_fn); |
| 5807 | |
| 5808 | /* |
| 5809 | * Notification about pvclock gtod data update. |
| 5810 | */ |
| 5811 | static int pvclock_gtod_notify(struct notifier_block *nb, unsigned long unused, |
| 5812 | void *priv) |
| 5813 | { |
| 5814 | struct pvclock_gtod_data *gtod = &pvclock_gtod_data; |
| 5815 | struct timekeeper *tk = priv; |
| 5816 | |
| 5817 | update_pvclock_gtod(tk); |
| 5818 | |
| 5819 | /* disable master clock if host does not trust, or does not |
| 5820 | * use, TSC clocksource |
| 5821 | */ |
| 5822 | if (gtod->clock.vclock_mode != VCLOCK_TSC && |
| 5823 | atomic_read(&kvm_guest_has_master_clock) != 0) |
| 5824 | queue_work(system_long_wq, &pvclock_gtod_work); |
| 5825 | |
| 5826 | return 0; |
| 5827 | } |
| 5828 | |
| 5829 | static struct notifier_block pvclock_gtod_notifier = { |
| 5830 | .notifier_call = pvclock_gtod_notify, |
| 5831 | }; |
| 5832 | #endif |
| 5833 | |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5834 | int kvm_arch_init(void *opaque) |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 5835 | { |
Zachary Amsden | b820cc0 | 2009-09-29 11:38:34 -1000 | [diff] [blame] | 5836 | int r; |
Mathias Krause | 6b61edf | 2013-06-26 20:36:23 +0200 | [diff] [blame] | 5837 | struct kvm_x86_ops *ops = opaque; |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5838 | |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5839 | if (kvm_x86_ops) { |
| 5840 | printk(KERN_ERR "kvm: already loaded the other module\n"); |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 5841 | r = -EEXIST; |
| 5842 | goto out; |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5843 | } |
| 5844 | |
| 5845 | if (!ops->cpu_has_kvm_support()) { |
| 5846 | printk(KERN_ERR "kvm: no hardware support\n"); |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 5847 | r = -EOPNOTSUPP; |
| 5848 | goto out; |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5849 | } |
| 5850 | if (ops->disabled_by_bios()) { |
| 5851 | printk(KERN_ERR "kvm: disabled by bios\n"); |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 5852 | r = -EOPNOTSUPP; |
| 5853 | goto out; |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5854 | } |
| 5855 | |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 5856 | r = -ENOMEM; |
| 5857 | shared_msrs = alloc_percpu(struct kvm_shared_msrs); |
| 5858 | if (!shared_msrs) { |
| 5859 | printk(KERN_ERR "kvm: failed to allocate percpu kvm_shared_msrs\n"); |
| 5860 | goto out; |
| 5861 | } |
| 5862 | |
Avi Kivity | 97db56c | 2008-01-13 13:23:56 +0200 | [diff] [blame] | 5863 | r = kvm_mmu_module_init(); |
| 5864 | if (r) |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 5865 | goto out_free_percpu; |
Avi Kivity | 97db56c | 2008-01-13 13:23:56 +0200 | [diff] [blame] | 5866 | |
Xiao Guangrong | ce88dec | 2011-07-12 03:33:44 +0800 | [diff] [blame] | 5867 | kvm_set_mmio_spte_mask(); |
Avi Kivity | 97db56c | 2008-01-13 13:23:56 +0200 | [diff] [blame] | 5868 | |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5869 | kvm_x86_ops = ops; |
Paolo Bonzini | 920c837 | 2014-03-26 15:54:00 +0100 | [diff] [blame] | 5870 | |
Sheng Yang | 7b52345 | 2008-04-25 21:13:50 +0800 | [diff] [blame] | 5871 | kvm_mmu_set_mask_ptes(PT_USER_MASK, PT_ACCESSED_MASK, |
Sheng Yang | 4b12f0d | 2009-04-27 20:35:42 +0800 | [diff] [blame] | 5872 | PT_DIRTY_MASK, PT64_NX_MASK, 0); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5873 | |
Zachary Amsden | b820cc0 | 2009-09-29 11:38:34 -1000 | [diff] [blame] | 5874 | kvm_timer_init(); |
Gerd Hoffmann | c807660 | 2009-02-04 17:52:04 +0100 | [diff] [blame] | 5875 | |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 5876 | perf_register_guest_info_callbacks(&kvm_guest_cbs); |
| 5877 | |
Borislav Petkov | d366bf7 | 2016-04-04 22:25:02 +0200 | [diff] [blame] | 5878 | if (boot_cpu_has(X86_FEATURE_XSAVE)) |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 5879 | host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK); |
| 5880 | |
Gleb Natapov | c5cc421 | 2012-08-05 15:58:30 +0300 | [diff] [blame] | 5881 | kvm_lapic_init(); |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 5882 | #ifdef CONFIG_X86_64 |
| 5883 | pvclock_gtod_register_notifier(&pvclock_gtod_notifier); |
| 5884 | #endif |
| 5885 | |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5886 | return 0; |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 5887 | |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 5888 | out_free_percpu: |
| 5889 | free_percpu(shared_msrs); |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 5890 | out: |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 5891 | return r; |
Carsten Otte | 043405e | 2007-10-10 17:16:19 +0200 | [diff] [blame] | 5892 | } |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 5893 | |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5894 | void kvm_arch_exit(void) |
| 5895 | { |
Zhang, Yanmin | ff9d07a | 2010-04-19 13:32:45 +0800 | [diff] [blame] | 5896 | perf_unregister_guest_info_callbacks(&kvm_guest_cbs); |
| 5897 | |
Jan Kiszka | 888d256 | 2009-04-17 19:24:58 +0200 | [diff] [blame] | 5898 | if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) |
| 5899 | cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block, |
| 5900 | CPUFREQ_TRANSITION_NOTIFIER); |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 5901 | unregister_hotcpu_notifier(&kvmclock_cpu_notifier_block); |
Marcelo Tosatti | 16e8d74 | 2012-11-27 23:29:00 -0200 | [diff] [blame] | 5902 | #ifdef CONFIG_X86_64 |
| 5903 | pvclock_gtod_unregister_notifier(&pvclock_gtod_notifier); |
| 5904 | #endif |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5905 | kvm_x86_ops = NULL; |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 5906 | kvm_mmu_module_exit(); |
Marcelo Tosatti | 013f6a5 | 2013-01-03 11:41:39 -0200 | [diff] [blame] | 5907 | free_percpu(shared_msrs); |
Zhang Xiantao | 56c6d28 | 2007-11-18 20:43:21 +0800 | [diff] [blame] | 5908 | } |
Zhang Xiantao | f8c16bb | 2007-11-14 20:40:21 +0800 | [diff] [blame] | 5909 | |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 5910 | int kvm_vcpu_halt(struct kvm_vcpu *vcpu) |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 5911 | { |
| 5912 | ++vcpu->stat.halt_exits; |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 5913 | if (lapic_in_kernel(vcpu)) { |
Avi Kivity | a453529 | 2008-04-13 17:54:35 +0300 | [diff] [blame] | 5914 | vcpu->arch.mp_state = KVM_MP_STATE_HALTED; |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 5915 | return 1; |
| 5916 | } else { |
| 5917 | vcpu->run->exit_reason = KVM_EXIT_HLT; |
| 5918 | return 0; |
| 5919 | } |
| 5920 | } |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 5921 | EXPORT_SYMBOL_GPL(kvm_vcpu_halt); |
| 5922 | |
| 5923 | int kvm_emulate_halt(struct kvm_vcpu *vcpu) |
| 5924 | { |
| 5925 | kvm_x86_ops->skip_emulated_instruction(vcpu); |
| 5926 | return kvm_vcpu_halt(vcpu); |
| 5927 | } |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 5928 | EXPORT_SYMBOL_GPL(kvm_emulate_halt); |
| 5929 | |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 5930 | /* |
| 5931 | * kvm_pv_kick_cpu_op: Kick a vcpu. |
| 5932 | * |
| 5933 | * @apicid - apicid of vcpu to be kicked. |
| 5934 | */ |
| 5935 | static void kvm_pv_kick_cpu_op(struct kvm *kvm, unsigned long flags, int apicid) |
| 5936 | { |
Raghavendra K T | 24d2166 | 2013-08-26 14:18:35 +0530 | [diff] [blame] | 5937 | struct kvm_lapic_irq lapic_irq; |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 5938 | |
Raghavendra K T | 24d2166 | 2013-08-26 14:18:35 +0530 | [diff] [blame] | 5939 | lapic_irq.shorthand = 0; |
| 5940 | lapic_irq.dest_mode = 0; |
| 5941 | lapic_irq.dest_id = apicid; |
James Sullivan | 93bbf0b | 2015-03-18 19:26:03 -0600 | [diff] [blame] | 5942 | lapic_irq.msi_redir_hint = false; |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 5943 | |
Raghavendra K T | 24d2166 | 2013-08-26 14:18:35 +0530 | [diff] [blame] | 5944 | lapic_irq.delivery_mode = APIC_DM_REMRD; |
Xiubo Li | 795a149 | 2015-03-13 17:39:44 +0800 | [diff] [blame] | 5945 | kvm_irq_delivery_to_apic(kvm, NULL, &lapic_irq, NULL); |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 5946 | } |
| 5947 | |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 5948 | void kvm_vcpu_deactivate_apicv(struct kvm_vcpu *vcpu) |
| 5949 | { |
| 5950 | vcpu->arch.apicv_active = false; |
| 5951 | kvm_x86_ops->refresh_apicv_exec_ctrl(vcpu); |
| 5952 | } |
| 5953 | |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 5954 | int kvm_emulate_hypercall(struct kvm_vcpu *vcpu) |
| 5955 | { |
| 5956 | unsigned long nr, a0, a1, a2, a3, ret; |
Nadav Amit | a449c7a | 2014-06-18 17:19:24 +0300 | [diff] [blame] | 5957 | int op_64_bit, r = 1; |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 5958 | |
Joel Schopp | 5cb5605 | 2015-03-02 13:43:31 -0600 | [diff] [blame] | 5959 | kvm_x86_ops->skip_emulated_instruction(vcpu); |
| 5960 | |
Gleb Natapov | 55cd8e5 | 2010-01-17 15:51:22 +0200 | [diff] [blame] | 5961 | if (kvm_hv_hypercall_enabled(vcpu->kvm)) |
| 5962 | return kvm_hv_hypercall(vcpu); |
| 5963 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 5964 | nr = kvm_register_read(vcpu, VCPU_REGS_RAX); |
| 5965 | a0 = kvm_register_read(vcpu, VCPU_REGS_RBX); |
| 5966 | a1 = kvm_register_read(vcpu, VCPU_REGS_RCX); |
| 5967 | a2 = kvm_register_read(vcpu, VCPU_REGS_RDX); |
| 5968 | a3 = kvm_register_read(vcpu, VCPU_REGS_RSI); |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 5969 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 5970 | trace_kvm_hypercall(nr, a0, a1, a2, a3); |
Feng (Eric) Liu | 2714d1d | 2008-04-10 15:31:10 -0400 | [diff] [blame] | 5971 | |
Nadav Amit | a449c7a | 2014-06-18 17:19:24 +0300 | [diff] [blame] | 5972 | op_64_bit = is_64_bit_mode(vcpu); |
| 5973 | if (!op_64_bit) { |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 5974 | nr &= 0xFFFFFFFF; |
| 5975 | a0 &= 0xFFFFFFFF; |
| 5976 | a1 &= 0xFFFFFFFF; |
| 5977 | a2 &= 0xFFFFFFFF; |
| 5978 | a3 &= 0xFFFFFFFF; |
| 5979 | } |
| 5980 | |
Jan Kiszka | 07708c4 | 2009-08-03 18:43:28 +0200 | [diff] [blame] | 5981 | if (kvm_x86_ops->get_cpl(vcpu) != 0) { |
| 5982 | ret = -KVM_EPERM; |
| 5983 | goto out; |
| 5984 | } |
| 5985 | |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 5986 | switch (nr) { |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 5987 | case KVM_HC_VAPIC_POLL_IRQ: |
| 5988 | ret = 0; |
| 5989 | break; |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 5990 | case KVM_HC_KICK_CPU: |
| 5991 | kvm_pv_kick_cpu_op(vcpu->kvm, a0, a1); |
| 5992 | ret = 0; |
| 5993 | break; |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 5994 | default: |
| 5995 | ret = -KVM_ENOSYS; |
| 5996 | break; |
| 5997 | } |
Jan Kiszka | 07708c4 | 2009-08-03 18:43:28 +0200 | [diff] [blame] | 5998 | out: |
Nadav Amit | a449c7a | 2014-06-18 17:19:24 +0300 | [diff] [blame] | 5999 | if (!op_64_bit) |
| 6000 | ret = (u32)ret; |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 6001 | kvm_register_write(vcpu, VCPU_REGS_RAX, ret); |
Amit Shah | f11c3a8 | 2008-02-21 01:00:30 +0530 | [diff] [blame] | 6002 | ++vcpu->stat.hypercalls; |
Marcelo Tosatti | 2f333bc | 2008-02-22 12:21:37 -0500 | [diff] [blame] | 6003 | return r; |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 6004 | } |
| 6005 | EXPORT_SYMBOL_GPL(kvm_emulate_hypercall); |
| 6006 | |
Jan Kiszka | b6785de | 2012-09-20 07:43:17 +0200 | [diff] [blame] | 6007 | static int emulator_fix_hypercall(struct x86_emulate_ctxt *ctxt) |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 6008 | { |
Avi Kivity | d6aa100 | 2011-04-20 15:47:13 +0300 | [diff] [blame] | 6009 | struct kvm_vcpu *vcpu = emul_to_vcpu(ctxt); |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 6010 | char instruction[3]; |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 6011 | unsigned long rip = kvm_rip_read(vcpu); |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 6012 | |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 6013 | kvm_x86_ops->patch_hypercall(vcpu, instruction); |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 6014 | |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 6015 | return emulator_write_emulated(ctxt, rip, instruction, 3, NULL); |
Hollis Blanchard | 8776e51 | 2007-10-31 17:24:24 -0500 | [diff] [blame] | 6016 | } |
| 6017 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6018 | static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6019 | { |
Matt Gingell | 782d422 | 2015-11-16 15:26:00 -0800 | [diff] [blame] | 6020 | return vcpu->run->request_interrupt_window && |
| 6021 | likely(!pic_in_kernel(vcpu->kvm)); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6022 | } |
| 6023 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6024 | static void post_kvm_run_save(struct kvm_vcpu *vcpu) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6025 | { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6026 | struct kvm_run *kvm_run = vcpu->run; |
| 6027 | |
Jan Kiszka | 91586a3 | 2009-10-05 13:07:21 +0200 | [diff] [blame] | 6028 | kvm_run->if_flag = (kvm_get_rflags(vcpu) & X86_EFLAGS_IF) != 0; |
Paolo Bonzini | f077825 | 2015-04-01 15:06:40 +0200 | [diff] [blame] | 6029 | kvm_run->flags = is_smm(vcpu) ? KVM_RUN_X86_SMM : 0; |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 6030 | kvm_run->cr8 = kvm_get_cr8(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6031 | kvm_run->apic_base = kvm_get_apic_base(vcpu); |
Matt Gingell | 127a457 | 2015-11-17 17:32:05 +0100 | [diff] [blame] | 6032 | kvm_run->ready_for_interrupt_injection = |
| 6033 | pic_in_kernel(vcpu->kvm) || |
Matt Gingell | 782d422 | 2015-11-16 15:26:00 -0800 | [diff] [blame] | 6034 | kvm_vcpu_ready_for_interrupt_injection(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6035 | } |
| 6036 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6037 | static void update_cr8_intercept(struct kvm_vcpu *vcpu) |
| 6038 | { |
| 6039 | int max_irr, tpr; |
| 6040 | |
| 6041 | if (!kvm_x86_ops->update_cr8_intercept) |
| 6042 | return; |
| 6043 | |
Paolo Bonzini | bce87cc | 2016-01-08 13:48:51 +0100 | [diff] [blame] | 6044 | if (!lapic_in_kernel(vcpu)) |
Avi Kivity | 88c808f | 2009-08-17 22:49:40 +0300 | [diff] [blame] | 6045 | return; |
| 6046 | |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 6047 | if (vcpu->arch.apicv_active) |
| 6048 | return; |
| 6049 | |
Gleb Natapov | 8db3baa | 2009-05-11 13:35:54 +0300 | [diff] [blame] | 6050 | if (!vcpu->arch.apic->vapic_addr) |
| 6051 | max_irr = kvm_lapic_find_highest_irr(vcpu); |
| 6052 | else |
| 6053 | max_irr = -1; |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6054 | |
| 6055 | if (max_irr != -1) |
| 6056 | max_irr >>= 4; |
| 6057 | |
| 6058 | tpr = kvm_lapic_get_cr8(vcpu); |
| 6059 | |
| 6060 | kvm_x86_ops->update_cr8_intercept(vcpu, tpr, max_irr); |
| 6061 | } |
| 6062 | |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 6063 | 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] | 6064 | { |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 6065 | int r; |
| 6066 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6067 | /* try to reinject previous events if any */ |
Gleb Natapov | b59bb7b | 2009-07-09 15:33:51 +0300 | [diff] [blame] | 6068 | if (vcpu->arch.exception.pending) { |
Avi Kivity | 5c1c85d0 | 2010-03-11 13:01:59 +0200 | [diff] [blame] | 6069 | trace_kvm_inj_exception(vcpu->arch.exception.nr, |
| 6070 | vcpu->arch.exception.has_error_code, |
| 6071 | vcpu->arch.exception.error_code); |
Nadav Amit | d6e8c85 | 2014-07-24 14:51:24 +0300 | [diff] [blame] | 6072 | |
| 6073 | if (exception_type(vcpu->arch.exception.nr) == EXCPT_FAULT) |
| 6074 | __kvm_set_rflags(vcpu, kvm_get_rflags(vcpu) | |
| 6075 | X86_EFLAGS_RF); |
| 6076 | |
Nadav Amit | 6bdf066 | 2014-09-30 20:49:14 +0300 | [diff] [blame] | 6077 | if (vcpu->arch.exception.nr == DB_VECTOR && |
| 6078 | (vcpu->arch.dr7 & DR7_GD)) { |
| 6079 | vcpu->arch.dr7 &= ~DR7_GD; |
| 6080 | kvm_update_dr7(vcpu); |
| 6081 | } |
| 6082 | |
Gleb Natapov | b59bb7b | 2009-07-09 15:33:51 +0300 | [diff] [blame] | 6083 | kvm_x86_ops->queue_exception(vcpu, vcpu->arch.exception.nr, |
| 6084 | vcpu->arch.exception.has_error_code, |
Joerg Roedel | ce7ddec | 2010-04-22 12:33:13 +0200 | [diff] [blame] | 6085 | vcpu->arch.exception.error_code, |
| 6086 | vcpu->arch.exception.reinject); |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 6087 | return 0; |
Gleb Natapov | b59bb7b | 2009-07-09 15:33:51 +0300 | [diff] [blame] | 6088 | } |
| 6089 | |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6090 | if (vcpu->arch.nmi_injected) { |
| 6091 | kvm_x86_ops->set_nmi(vcpu); |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 6092 | return 0; |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6093 | } |
| 6094 | |
| 6095 | if (vcpu->arch.interrupt.pending) { |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 6096 | kvm_x86_ops->set_irq(vcpu); |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 6097 | return 0; |
| 6098 | } |
| 6099 | |
| 6100 | if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events) { |
| 6101 | r = kvm_x86_ops->check_nested_events(vcpu, req_int_win); |
| 6102 | if (r != 0) |
| 6103 | return r; |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6104 | } |
| 6105 | |
| 6106 | /* try to inject new event if pending */ |
Paolo Bonzini | c43203c | 2016-06-01 22:26:00 +0200 | [diff] [blame] | 6107 | if (vcpu->arch.smi_pending && !is_smm(vcpu)) { |
| 6108 | vcpu->arch.smi_pending = false; |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 6109 | enter_smm(vcpu); |
Paolo Bonzini | c43203c | 2016-06-01 22:26:00 +0200 | [diff] [blame] | 6110 | } else if (vcpu->arch.nmi_pending && kvm_x86_ops->nmi_allowed(vcpu)) { |
Yuki Shibuya | 321c565 | 2016-03-24 05:17:03 +0000 | [diff] [blame] | 6111 | --vcpu->arch.nmi_pending; |
| 6112 | vcpu->arch.nmi_injected = true; |
| 6113 | kvm_x86_ops->set_nmi(vcpu); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 6114 | } else if (kvm_cpu_has_injectable_intr(vcpu)) { |
Bandan Das | 9242b5b | 2014-07-08 00:30:23 -0400 | [diff] [blame] | 6115 | /* |
| 6116 | * Because interrupts can be injected asynchronously, we are |
| 6117 | * calling check_nested_events again here to avoid a race condition. |
| 6118 | * See https://lkml.org/lkml/2014/7/2/60 for discussion about this |
| 6119 | * proposal and current concerns. Perhaps we should be setting |
| 6120 | * KVM_REQ_EVENT only on certain events and not unconditionally? |
| 6121 | */ |
| 6122 | if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events) { |
| 6123 | r = kvm_x86_ops->check_nested_events(vcpu, req_int_win); |
| 6124 | if (r != 0) |
| 6125 | return r; |
| 6126 | } |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6127 | if (kvm_x86_ops->interrupt_allowed(vcpu)) { |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 6128 | kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu), |
| 6129 | false); |
| 6130 | kvm_x86_ops->set_irq(vcpu); |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6131 | } |
| 6132 | } |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 6133 | |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 6134 | return 0; |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6135 | } |
| 6136 | |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 6137 | static void process_nmi(struct kvm_vcpu *vcpu) |
| 6138 | { |
| 6139 | unsigned limit = 2; |
| 6140 | |
| 6141 | /* |
| 6142 | * x86 is limited to one NMI running, and one NMI pending after it. |
| 6143 | * If an NMI is already in progress, limit further NMIs to just one. |
| 6144 | * Otherwise, allow two (and we'll inject the first one immediately). |
| 6145 | */ |
| 6146 | if (kvm_x86_ops->get_nmi_mask(vcpu) || vcpu->arch.nmi_injected) |
| 6147 | limit = 1; |
| 6148 | |
| 6149 | vcpu->arch.nmi_pending += atomic_xchg(&vcpu->arch.nmi_queued, 0); |
| 6150 | vcpu->arch.nmi_pending = min(vcpu->arch.nmi_pending, limit); |
| 6151 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 6152 | } |
| 6153 | |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6154 | #define put_smstate(type, buf, offset, val) \ |
| 6155 | *(type *)((buf) + (offset) - 0x7e00) = val |
| 6156 | |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 6157 | static u32 enter_smm_get_segment_flags(struct kvm_segment *seg) |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6158 | { |
| 6159 | u32 flags = 0; |
| 6160 | flags |= seg->g << 23; |
| 6161 | flags |= seg->db << 22; |
| 6162 | flags |= seg->l << 21; |
| 6163 | flags |= seg->avl << 20; |
| 6164 | flags |= seg->present << 15; |
| 6165 | flags |= seg->dpl << 13; |
| 6166 | flags |= seg->s << 12; |
| 6167 | flags |= seg->type << 8; |
| 6168 | return flags; |
| 6169 | } |
| 6170 | |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 6171 | static void enter_smm_save_seg_32(struct kvm_vcpu *vcpu, char *buf, int n) |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6172 | { |
| 6173 | struct kvm_segment seg; |
| 6174 | int offset; |
| 6175 | |
| 6176 | kvm_get_segment(vcpu, &seg, n); |
| 6177 | put_smstate(u32, buf, 0x7fa8 + n * 4, seg.selector); |
| 6178 | |
| 6179 | if (n < 3) |
| 6180 | offset = 0x7f84 + n * 12; |
| 6181 | else |
| 6182 | offset = 0x7f2c + (n - 3) * 12; |
| 6183 | |
| 6184 | put_smstate(u32, buf, offset + 8, seg.base); |
| 6185 | put_smstate(u32, buf, offset + 4, seg.limit); |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 6186 | put_smstate(u32, buf, offset, enter_smm_get_segment_flags(&seg)); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6187 | } |
| 6188 | |
Alexander Kuleshov | efbb288 | 2015-09-06 19:35:41 +0600 | [diff] [blame] | 6189 | #ifdef CONFIG_X86_64 |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 6190 | static void enter_smm_save_seg_64(struct kvm_vcpu *vcpu, char *buf, int n) |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6191 | { |
| 6192 | struct kvm_segment seg; |
| 6193 | int offset; |
| 6194 | u16 flags; |
| 6195 | |
| 6196 | kvm_get_segment(vcpu, &seg, n); |
| 6197 | offset = 0x7e00 + n * 16; |
| 6198 | |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 6199 | flags = enter_smm_get_segment_flags(&seg) >> 8; |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6200 | put_smstate(u16, buf, offset, seg.selector); |
| 6201 | put_smstate(u16, buf, offset + 2, flags); |
| 6202 | put_smstate(u32, buf, offset + 4, seg.limit); |
| 6203 | put_smstate(u64, buf, offset + 8, seg.base); |
| 6204 | } |
Alexander Kuleshov | efbb288 | 2015-09-06 19:35:41 +0600 | [diff] [blame] | 6205 | #endif |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6206 | |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 6207 | static void enter_smm_save_state_32(struct kvm_vcpu *vcpu, char *buf) |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6208 | { |
| 6209 | struct desc_ptr dt; |
| 6210 | struct kvm_segment seg; |
| 6211 | unsigned long val; |
| 6212 | int i; |
| 6213 | |
| 6214 | put_smstate(u32, buf, 0x7ffc, kvm_read_cr0(vcpu)); |
| 6215 | put_smstate(u32, buf, 0x7ff8, kvm_read_cr3(vcpu)); |
| 6216 | put_smstate(u32, buf, 0x7ff4, kvm_get_rflags(vcpu)); |
| 6217 | put_smstate(u32, buf, 0x7ff0, kvm_rip_read(vcpu)); |
| 6218 | |
| 6219 | for (i = 0; i < 8; i++) |
| 6220 | put_smstate(u32, buf, 0x7fd0 + i * 4, kvm_register_read(vcpu, i)); |
| 6221 | |
| 6222 | kvm_get_dr(vcpu, 6, &val); |
| 6223 | put_smstate(u32, buf, 0x7fcc, (u32)val); |
| 6224 | kvm_get_dr(vcpu, 7, &val); |
| 6225 | put_smstate(u32, buf, 0x7fc8, (u32)val); |
| 6226 | |
| 6227 | kvm_get_segment(vcpu, &seg, VCPU_SREG_TR); |
| 6228 | put_smstate(u32, buf, 0x7fc4, seg.selector); |
| 6229 | put_smstate(u32, buf, 0x7f64, seg.base); |
| 6230 | put_smstate(u32, buf, 0x7f60, seg.limit); |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 6231 | put_smstate(u32, buf, 0x7f5c, enter_smm_get_segment_flags(&seg)); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6232 | |
| 6233 | kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR); |
| 6234 | put_smstate(u32, buf, 0x7fc0, seg.selector); |
| 6235 | put_smstate(u32, buf, 0x7f80, seg.base); |
| 6236 | put_smstate(u32, buf, 0x7f7c, seg.limit); |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 6237 | put_smstate(u32, buf, 0x7f78, enter_smm_get_segment_flags(&seg)); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6238 | |
| 6239 | kvm_x86_ops->get_gdt(vcpu, &dt); |
| 6240 | put_smstate(u32, buf, 0x7f74, dt.address); |
| 6241 | put_smstate(u32, buf, 0x7f70, dt.size); |
| 6242 | |
| 6243 | kvm_x86_ops->get_idt(vcpu, &dt); |
| 6244 | put_smstate(u32, buf, 0x7f58, dt.address); |
| 6245 | put_smstate(u32, buf, 0x7f54, dt.size); |
| 6246 | |
| 6247 | for (i = 0; i < 6; i++) |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 6248 | enter_smm_save_seg_32(vcpu, buf, i); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6249 | |
| 6250 | put_smstate(u32, buf, 0x7f14, kvm_read_cr4(vcpu)); |
| 6251 | |
| 6252 | /* revision id */ |
| 6253 | put_smstate(u32, buf, 0x7efc, 0x00020000); |
| 6254 | put_smstate(u32, buf, 0x7ef8, vcpu->arch.smbase); |
| 6255 | } |
| 6256 | |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 6257 | static void enter_smm_save_state_64(struct kvm_vcpu *vcpu, char *buf) |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6258 | { |
| 6259 | #ifdef CONFIG_X86_64 |
| 6260 | struct desc_ptr dt; |
| 6261 | struct kvm_segment seg; |
| 6262 | unsigned long val; |
| 6263 | int i; |
| 6264 | |
| 6265 | for (i = 0; i < 16; i++) |
| 6266 | put_smstate(u64, buf, 0x7ff8 - i * 8, kvm_register_read(vcpu, i)); |
| 6267 | |
| 6268 | put_smstate(u64, buf, 0x7f78, kvm_rip_read(vcpu)); |
| 6269 | put_smstate(u32, buf, 0x7f70, kvm_get_rflags(vcpu)); |
| 6270 | |
| 6271 | kvm_get_dr(vcpu, 6, &val); |
| 6272 | put_smstate(u64, buf, 0x7f68, val); |
| 6273 | kvm_get_dr(vcpu, 7, &val); |
| 6274 | put_smstate(u64, buf, 0x7f60, val); |
| 6275 | |
| 6276 | put_smstate(u64, buf, 0x7f58, kvm_read_cr0(vcpu)); |
| 6277 | put_smstate(u64, buf, 0x7f50, kvm_read_cr3(vcpu)); |
| 6278 | put_smstate(u64, buf, 0x7f48, kvm_read_cr4(vcpu)); |
| 6279 | |
| 6280 | put_smstate(u32, buf, 0x7f00, vcpu->arch.smbase); |
| 6281 | |
| 6282 | /* revision id */ |
| 6283 | put_smstate(u32, buf, 0x7efc, 0x00020064); |
| 6284 | |
| 6285 | put_smstate(u64, buf, 0x7ed0, vcpu->arch.efer); |
| 6286 | |
| 6287 | kvm_get_segment(vcpu, &seg, VCPU_SREG_TR); |
| 6288 | put_smstate(u16, buf, 0x7e90, seg.selector); |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 6289 | put_smstate(u16, buf, 0x7e92, enter_smm_get_segment_flags(&seg) >> 8); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6290 | put_smstate(u32, buf, 0x7e94, seg.limit); |
| 6291 | put_smstate(u64, buf, 0x7e98, seg.base); |
| 6292 | |
| 6293 | kvm_x86_ops->get_idt(vcpu, &dt); |
| 6294 | put_smstate(u32, buf, 0x7e84, dt.size); |
| 6295 | put_smstate(u64, buf, 0x7e88, dt.address); |
| 6296 | |
| 6297 | kvm_get_segment(vcpu, &seg, VCPU_SREG_LDTR); |
| 6298 | put_smstate(u16, buf, 0x7e70, seg.selector); |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 6299 | put_smstate(u16, buf, 0x7e72, enter_smm_get_segment_flags(&seg) >> 8); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6300 | put_smstate(u32, buf, 0x7e74, seg.limit); |
| 6301 | put_smstate(u64, buf, 0x7e78, seg.base); |
| 6302 | |
| 6303 | kvm_x86_ops->get_gdt(vcpu, &dt); |
| 6304 | put_smstate(u32, buf, 0x7e64, dt.size); |
| 6305 | put_smstate(u64, buf, 0x7e68, dt.address); |
| 6306 | |
| 6307 | for (i = 0; i < 6; i++) |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 6308 | enter_smm_save_seg_64(vcpu, buf, i); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6309 | #else |
| 6310 | WARN_ON_ONCE(1); |
| 6311 | #endif |
| 6312 | } |
| 6313 | |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 6314 | static void enter_smm(struct kvm_vcpu *vcpu) |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 6315 | { |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6316 | struct kvm_segment cs, ds; |
Paolo Bonzini | 18c3626 | 2015-08-07 12:27:54 +0200 | [diff] [blame] | 6317 | struct desc_ptr dt; |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6318 | char buf[512]; |
| 6319 | u32 cr0; |
| 6320 | |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6321 | trace_kvm_enter_smm(vcpu->vcpu_id, vcpu->arch.smbase, true); |
| 6322 | vcpu->arch.hflags |= HF_SMM_MASK; |
| 6323 | memset(buf, 0, 512); |
| 6324 | if (guest_cpuid_has_longmode(vcpu)) |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 6325 | enter_smm_save_state_64(vcpu, buf); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6326 | else |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 6327 | enter_smm_save_state_32(vcpu, buf); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6328 | |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 6329 | kvm_vcpu_write_guest(vcpu, vcpu->arch.smbase + 0xfe00, buf, sizeof(buf)); |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6330 | |
| 6331 | if (kvm_x86_ops->get_nmi_mask(vcpu)) |
| 6332 | vcpu->arch.hflags |= HF_SMM_INSIDE_NMI_MASK; |
| 6333 | else |
| 6334 | kvm_x86_ops->set_nmi_mask(vcpu, true); |
| 6335 | |
| 6336 | kvm_set_rflags(vcpu, X86_EFLAGS_FIXED); |
| 6337 | kvm_rip_write(vcpu, 0x8000); |
| 6338 | |
| 6339 | cr0 = vcpu->arch.cr0 & ~(X86_CR0_PE | X86_CR0_EM | X86_CR0_TS | X86_CR0_PG); |
| 6340 | kvm_x86_ops->set_cr0(vcpu, cr0); |
| 6341 | vcpu->arch.cr0 = cr0; |
| 6342 | |
| 6343 | kvm_x86_ops->set_cr4(vcpu, 0); |
| 6344 | |
Paolo Bonzini | 18c3626 | 2015-08-07 12:27:54 +0200 | [diff] [blame] | 6345 | /* Undocumented: IDT limit is set to zero on entry to SMM. */ |
| 6346 | dt.address = dt.size = 0; |
| 6347 | kvm_x86_ops->set_idt(vcpu, &dt); |
| 6348 | |
Paolo Bonzini | 660a5d5 | 2015-05-05 11:50:23 +0200 | [diff] [blame] | 6349 | __kvm_set_dr(vcpu, 7, DR7_FIXED_1); |
| 6350 | |
| 6351 | cs.selector = (vcpu->arch.smbase >> 4) & 0xffff; |
| 6352 | cs.base = vcpu->arch.smbase; |
| 6353 | |
| 6354 | ds.selector = 0; |
| 6355 | ds.base = 0; |
| 6356 | |
| 6357 | cs.limit = ds.limit = 0xffffffff; |
| 6358 | cs.type = ds.type = 0x3; |
| 6359 | cs.dpl = ds.dpl = 0; |
| 6360 | cs.db = ds.db = 0; |
| 6361 | cs.s = ds.s = 1; |
| 6362 | cs.l = ds.l = 0; |
| 6363 | cs.g = ds.g = 1; |
| 6364 | cs.avl = ds.avl = 0; |
| 6365 | cs.present = ds.present = 1; |
| 6366 | cs.unusable = ds.unusable = 0; |
| 6367 | cs.padding = ds.padding = 0; |
| 6368 | |
| 6369 | kvm_set_segment(vcpu, &cs, VCPU_SREG_CS); |
| 6370 | kvm_set_segment(vcpu, &ds, VCPU_SREG_DS); |
| 6371 | kvm_set_segment(vcpu, &ds, VCPU_SREG_ES); |
| 6372 | kvm_set_segment(vcpu, &ds, VCPU_SREG_FS); |
| 6373 | kvm_set_segment(vcpu, &ds, VCPU_SREG_GS); |
| 6374 | kvm_set_segment(vcpu, &ds, VCPU_SREG_SS); |
| 6375 | |
| 6376 | if (guest_cpuid_has_longmode(vcpu)) |
| 6377 | kvm_x86_ops->set_efer(vcpu, 0); |
| 6378 | |
| 6379 | kvm_update_cpuid(vcpu); |
| 6380 | kvm_mmu_reset_context(vcpu); |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 6381 | } |
| 6382 | |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 6383 | static void process_smi(struct kvm_vcpu *vcpu) |
Paolo Bonzini | c43203c | 2016-06-01 22:26:00 +0200 | [diff] [blame] | 6384 | { |
| 6385 | vcpu->arch.smi_pending = true; |
| 6386 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 6387 | } |
| 6388 | |
Paolo Bonzini | 2860c4b | 2016-01-07 15:05:10 +0100 | [diff] [blame] | 6389 | void kvm_make_scan_ioapic_request(struct kvm *kvm) |
| 6390 | { |
| 6391 | kvm_make_all_cpus_request(kvm, KVM_REQ_SCAN_IOAPIC); |
| 6392 | } |
| 6393 | |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame] | 6394 | static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu) |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 6395 | { |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 6396 | u64 eoi_exit_bitmap[4]; |
| 6397 | |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame] | 6398 | if (!kvm_apic_hw_enabled(vcpu->arch.apic)) |
| 6399 | return; |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 6400 | |
Andrey Smetanin | 6308630 | 2015-11-10 15:36:32 +0300 | [diff] [blame] | 6401 | bitmap_zero(vcpu->arch.ioapic_handled_vectors, 256); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 6402 | |
Steve Rutherford | b053b2a | 2015-07-29 23:32:35 -0700 | [diff] [blame] | 6403 | if (irqchip_split(vcpu->kvm)) |
Andrey Smetanin | 6308630 | 2015-11-10 15:36:32 +0300 | [diff] [blame] | 6404 | kvm_scan_ioapic_routes(vcpu, vcpu->arch.ioapic_handled_vectors); |
Radim Krčmář | db2bdcb | 2015-10-08 20:23:34 +0200 | [diff] [blame] | 6405 | else { |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 6406 | if (vcpu->arch.apicv_active) |
| 6407 | kvm_x86_ops->sync_pir_to_irr(vcpu); |
Andrey Smetanin | 6308630 | 2015-11-10 15:36:32 +0300 | [diff] [blame] | 6408 | kvm_ioapic_scan_entry(vcpu, vcpu->arch.ioapic_handled_vectors); |
Radim Krčmář | db2bdcb | 2015-10-08 20:23:34 +0200 | [diff] [blame] | 6409 | } |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 6410 | bitmap_or((ulong *)eoi_exit_bitmap, vcpu->arch.ioapic_handled_vectors, |
| 6411 | vcpu_to_synic(vcpu)->vec_bitmap, 256); |
| 6412 | kvm_x86_ops->load_eoi_exitmap(vcpu, eoi_exit_bitmap); |
Yang Zhang | c7c9c56 | 2013-01-25 10:18:51 +0800 | [diff] [blame] | 6413 | } |
| 6414 | |
Radim Krčmář | a70656b | 2014-09-18 12:38:36 -0400 | [diff] [blame] | 6415 | static void kvm_vcpu_flush_tlb(struct kvm_vcpu *vcpu) |
| 6416 | { |
| 6417 | ++vcpu->stat.tlb_flush; |
| 6418 | kvm_x86_ops->tlb_flush(vcpu); |
| 6419 | } |
| 6420 | |
Tang Chen | 4256f43 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 6421 | void kvm_vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu) |
| 6422 | { |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 6423 | struct page *page = NULL; |
| 6424 | |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 6425 | if (!lapic_in_kernel(vcpu)) |
Paolo Bonzini | f439ed2 | 2014-10-02 13:53:24 +0200 | [diff] [blame] | 6426 | return; |
| 6427 | |
Tang Chen | 4256f43 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 6428 | if (!kvm_x86_ops->set_apic_access_page_addr) |
| 6429 | return; |
| 6430 | |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 6431 | page = gfn_to_page(vcpu->kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT); |
Andrea Arcangeli | e8fd5e9 | 2015-05-08 14:32:56 +0200 | [diff] [blame] | 6432 | if (is_error_page(page)) |
| 6433 | return; |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 6434 | kvm_x86_ops->set_apic_access_page_addr(vcpu, page_to_phys(page)); |
| 6435 | |
| 6436 | /* |
| 6437 | * Do not pin apic access page in memory, the MMU notifier |
| 6438 | * will call us again if it is migrated or swapped out. |
| 6439 | */ |
| 6440 | put_page(page); |
Tang Chen | 4256f43 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 6441 | } |
| 6442 | EXPORT_SYMBOL_GPL(kvm_vcpu_reload_apic_access_page); |
| 6443 | |
Tang Chen | fe71557 | 2014-09-24 15:57:57 +0800 | [diff] [blame] | 6444 | void kvm_arch_mmu_notifier_invalidate_page(struct kvm *kvm, |
| 6445 | unsigned long address) |
| 6446 | { |
Tang Chen | c24ae0d | 2014-09-24 15:57:58 +0800 | [diff] [blame] | 6447 | /* |
| 6448 | * The physical address of apic access page is stored in the VMCS. |
| 6449 | * Update it when it becomes invalid. |
| 6450 | */ |
| 6451 | if (address == gfn_to_hva(kvm, APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT)) |
| 6452 | kvm_make_all_cpus_request(kvm, KVM_REQ_APIC_PAGE_RELOAD); |
Tang Chen | fe71557 | 2014-09-24 15:57:57 +0800 | [diff] [blame] | 6453 | } |
| 6454 | |
Takuya Yoshikawa | 9357d93 | 2013-12-13 15:08:38 +0900 | [diff] [blame] | 6455 | /* |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 6456 | * Returns 1 to let vcpu_run() continue the guest execution loop without |
Takuya Yoshikawa | 9357d93 | 2013-12-13 15:08:38 +0900 | [diff] [blame] | 6457 | * exiting to the userspace. Otherwise, the value will be returned to the |
| 6458 | * userspace. |
| 6459 | */ |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6460 | static int vcpu_enter_guest(struct kvm_vcpu *vcpu) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6461 | { |
| 6462 | int r; |
Matt Gingell | 62a193e | 2015-11-16 15:26:07 -0800 | [diff] [blame] | 6463 | bool req_int_win = |
| 6464 | dm_request_for_irq_injection(vcpu) && |
| 6465 | kvm_cpu_accept_dm_intr(vcpu); |
| 6466 | |
Jan Kiszka | 730dca4 | 2013-04-28 10:50:52 +0200 | [diff] [blame] | 6467 | bool req_immediate_exit = false; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6468 | |
Avi Kivity | 3e00750 | 2010-06-23 14:26:18 +0300 | [diff] [blame] | 6469 | if (vcpu->requests) { |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 6470 | if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu)) |
Marcelo Tosatti | 2e53d63 | 2008-02-20 14:47:24 -0500 | [diff] [blame] | 6471 | kvm_mmu_unload(vcpu); |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 6472 | if (kvm_check_request(KVM_REQ_MIGRATE_TIMER, vcpu)) |
Marcelo Tosatti | 2f59971 | 2008-05-27 12:10:20 -0300 | [diff] [blame] | 6473 | __kvm_migrate_timers(vcpu); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 6474 | if (kvm_check_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu)) |
| 6475 | kvm_gen_update_masterclock(vcpu->kvm); |
Marcelo Tosatti | 0061d53 | 2013-05-09 20:21:41 -0300 | [diff] [blame] | 6476 | if (kvm_check_request(KVM_REQ_GLOBAL_CLOCK_UPDATE, vcpu)) |
| 6477 | kvm_gen_kvmclock_update(vcpu); |
Zachary Amsden | 34c238a | 2010-09-18 14:38:14 -1000 | [diff] [blame] | 6478 | if (kvm_check_request(KVM_REQ_CLOCK_UPDATE, vcpu)) { |
| 6479 | r = kvm_guest_time_update(vcpu); |
Zachary Amsden | 8cfdc00 | 2010-08-19 22:07:21 -1000 | [diff] [blame] | 6480 | if (unlikely(r)) |
| 6481 | goto out; |
| 6482 | } |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 6483 | if (kvm_check_request(KVM_REQ_MMU_SYNC, vcpu)) |
Marcelo Tosatti | 4731d4c | 2008-09-23 13:18:39 -0300 | [diff] [blame] | 6484 | kvm_mmu_sync_roots(vcpu); |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 6485 | if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu)) |
Radim Krčmář | a70656b | 2014-09-18 12:38:36 -0400 | [diff] [blame] | 6486 | kvm_vcpu_flush_tlb(vcpu); |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 6487 | if (kvm_check_request(KVM_REQ_REPORT_TPR_ACCESS, vcpu)) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6488 | vcpu->run->exit_reason = KVM_EXIT_TPR_ACCESS; |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 6489 | r = 0; |
| 6490 | goto out; |
| 6491 | } |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 6492 | if (kvm_check_request(KVM_REQ_TRIPLE_FAULT, vcpu)) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6493 | vcpu->run->exit_reason = KVM_EXIT_SHUTDOWN; |
Joerg Roedel | 71c4dfa | 2008-02-26 16:49:16 +0100 | [diff] [blame] | 6494 | r = 0; |
| 6495 | goto out; |
| 6496 | } |
Avi Kivity | a8eeb04 | 2010-05-10 12:34:53 +0300 | [diff] [blame] | 6497 | if (kvm_check_request(KVM_REQ_DEACTIVATE_FPU, vcpu)) { |
Avi Kivity | 02daab2 | 2009-12-30 12:40:26 +0200 | [diff] [blame] | 6498 | vcpu->fpu_active = 0; |
| 6499 | kvm_x86_ops->fpu_deactivate(vcpu); |
| 6500 | } |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 6501 | if (kvm_check_request(KVM_REQ_APF_HALT, vcpu)) { |
| 6502 | /* Page is swapped out. Do synthetic halt */ |
| 6503 | vcpu->arch.apf.halted = true; |
| 6504 | r = 1; |
| 6505 | goto out; |
| 6506 | } |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 6507 | if (kvm_check_request(KVM_REQ_STEAL_UPDATE, vcpu)) |
| 6508 | record_steal_time(vcpu); |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 6509 | if (kvm_check_request(KVM_REQ_SMI, vcpu)) |
Paolo Bonzini | ee2cd4b | 2016-06-01 22:26:01 +0200 | [diff] [blame] | 6510 | process_smi(vcpu); |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 6511 | if (kvm_check_request(KVM_REQ_NMI, vcpu)) |
| 6512 | process_nmi(vcpu); |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 6513 | if (kvm_check_request(KVM_REQ_PMU, vcpu)) |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 6514 | kvm_pmu_handle_event(vcpu); |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 6515 | if (kvm_check_request(KVM_REQ_PMI, vcpu)) |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 6516 | kvm_pmu_deliver_pmi(vcpu); |
Steve Rutherford | 7543a63 | 2015-07-29 23:21:41 -0700 | [diff] [blame] | 6517 | if (kvm_check_request(KVM_REQ_IOAPIC_EOI_EXIT, vcpu)) { |
| 6518 | BUG_ON(vcpu->arch.pending_ioapic_eoi > 255); |
| 6519 | if (test_bit(vcpu->arch.pending_ioapic_eoi, |
Andrey Smetanin | 6308630 | 2015-11-10 15:36:32 +0300 | [diff] [blame] | 6520 | vcpu->arch.ioapic_handled_vectors)) { |
Steve Rutherford | 7543a63 | 2015-07-29 23:21:41 -0700 | [diff] [blame] | 6521 | vcpu->run->exit_reason = KVM_EXIT_IOAPIC_EOI; |
| 6522 | vcpu->run->eoi.vector = |
| 6523 | vcpu->arch.pending_ioapic_eoi; |
| 6524 | r = 0; |
| 6525 | goto out; |
| 6526 | } |
| 6527 | } |
Yang Zhang | 3d81bc7 | 2013-04-11 19:25:13 +0800 | [diff] [blame] | 6528 | if (kvm_check_request(KVM_REQ_SCAN_IOAPIC, vcpu)) |
| 6529 | vcpu_scan_ioapic(vcpu); |
Tang Chen | 4256f43 | 2014-09-24 15:57:54 +0800 | [diff] [blame] | 6530 | if (kvm_check_request(KVM_REQ_APIC_PAGE_RELOAD, vcpu)) |
| 6531 | kvm_vcpu_reload_apic_access_page(vcpu); |
Andrey Smetanin | 2ce7918 | 2015-07-03 15:01:41 +0300 | [diff] [blame] | 6532 | if (kvm_check_request(KVM_REQ_HV_CRASH, vcpu)) { |
| 6533 | vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT; |
| 6534 | vcpu->run->system_event.type = KVM_SYSTEM_EVENT_CRASH; |
| 6535 | r = 0; |
| 6536 | goto out; |
| 6537 | } |
Andrey Smetanin | e516ceb | 2015-09-16 12:29:48 +0300 | [diff] [blame] | 6538 | if (kvm_check_request(KVM_REQ_HV_RESET, vcpu)) { |
| 6539 | vcpu->run->exit_reason = KVM_EXIT_SYSTEM_EVENT; |
| 6540 | vcpu->run->system_event.type = KVM_SYSTEM_EVENT_RESET; |
| 6541 | r = 0; |
| 6542 | goto out; |
| 6543 | } |
Andrey Smetanin | db397571 | 2015-11-10 15:36:35 +0300 | [diff] [blame] | 6544 | if (kvm_check_request(KVM_REQ_HV_EXIT, vcpu)) { |
| 6545 | vcpu->run->exit_reason = KVM_EXIT_HYPERV; |
| 6546 | vcpu->run->hyperv = vcpu->arch.hyperv.exit; |
| 6547 | r = 0; |
| 6548 | goto out; |
| 6549 | } |
Andrey Smetanin | f3b138c | 2015-12-28 18:27:24 +0300 | [diff] [blame] | 6550 | |
| 6551 | /* |
| 6552 | * KVM_REQ_HV_STIMER has to be processed after |
| 6553 | * KVM_REQ_CLOCK_UPDATE, because Hyper-V SynIC timers |
| 6554 | * depend on the guest clock being up-to-date |
| 6555 | */ |
Andrey Smetanin | 1f4b34f | 2015-11-30 19:22:21 +0300 | [diff] [blame] | 6556 | if (kvm_check_request(KVM_REQ_HV_STIMER, vcpu)) |
| 6557 | kvm_hv_process_stimers(vcpu); |
Avi Kivity | 2f52d58 | 2008-01-16 12:49:30 +0200 | [diff] [blame] | 6558 | } |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 6559 | |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 6560 | /* |
| 6561 | * KVM_REQ_EVENT is not set when posted interrupts are set by |
| 6562 | * VT-d hardware, so we have to update RVI unconditionally. |
| 6563 | */ |
| 6564 | if (kvm_lapic_enabled(vcpu)) { |
| 6565 | /* |
| 6566 | * Update architecture specific hints for APIC |
| 6567 | * virtual interrupt delivery. |
| 6568 | */ |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 6569 | if (vcpu->arch.apicv_active) |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 6570 | kvm_x86_ops->hwapic_irr_update(vcpu, |
| 6571 | kvm_lapic_find_highest_irr(vcpu)); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6572 | } |
| 6573 | |
Avi Kivity | b463a6f | 2010-07-20 15:06:17 +0300 | [diff] [blame] | 6574 | if (kvm_check_request(KVM_REQ_EVENT, vcpu) || req_int_win) { |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 6575 | kvm_apic_accept_events(vcpu); |
| 6576 | if (vcpu->arch.mp_state == KVM_MP_STATE_INIT_RECEIVED) { |
| 6577 | r = 1; |
| 6578 | goto out; |
| 6579 | } |
| 6580 | |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 6581 | if (inject_pending_event(vcpu, req_int_win) != 0) |
| 6582 | req_immediate_exit = true; |
Yuki Shibuya | 321c565 | 2016-03-24 05:17:03 +0000 | [diff] [blame] | 6583 | else { |
Paolo Bonzini | c43203c | 2016-06-01 22:26:00 +0200 | [diff] [blame] | 6584 | /* Enable NMI/IRQ window open exits if needed. |
| 6585 | * |
| 6586 | * SMIs have two cases: 1) they can be nested, and |
| 6587 | * then there is nothing to do here because RSM will |
| 6588 | * cause a vmexit anyway; 2) or the SMI can be pending |
| 6589 | * because inject_pending_event has completed the |
| 6590 | * injection of an IRQ or NMI from the previous vmexit, |
| 6591 | * and then we request an immediate exit to inject the SMI. |
| 6592 | */ |
| 6593 | if (vcpu->arch.smi_pending && !is_smm(vcpu)) |
| 6594 | req_immediate_exit = true; |
Yuki Shibuya | 321c565 | 2016-03-24 05:17:03 +0000 | [diff] [blame] | 6595 | if (vcpu->arch.nmi_pending) |
| 6596 | kvm_x86_ops->enable_nmi_window(vcpu); |
| 6597 | if (kvm_cpu_has_injectable_intr(vcpu) || req_int_win) |
| 6598 | kvm_x86_ops->enable_irq_window(vcpu); |
| 6599 | } |
Gleb Natapov | 6a8b1d1 | 2009-05-11 13:35:51 +0300 | [diff] [blame] | 6600 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 6601 | if (kvm_lapic_enabled(vcpu)) { |
| 6602 | update_cr8_intercept(vcpu); |
| 6603 | kvm_lapic_sync_to_vapic(vcpu); |
| 6604 | } |
Gleb Natapov | 95ba827313 | 2009-04-21 17:45:08 +0300 | [diff] [blame] | 6605 | } |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 6606 | |
Avi Kivity | d8368af | 2012-05-14 18:07:56 +0300 | [diff] [blame] | 6607 | r = kvm_mmu_reload(vcpu); |
| 6608 | if (unlikely(r)) { |
Michael S. Tsirkin | d905c06 | 2012-06-24 19:25:00 +0300 | [diff] [blame] | 6609 | goto cancel_injection; |
Avi Kivity | d8368af | 2012-05-14 18:07:56 +0300 | [diff] [blame] | 6610 | } |
| 6611 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 6612 | preempt_disable(); |
| 6613 | |
| 6614 | kvm_x86_ops->prepare_guest_switch(vcpu); |
| 6615 | if (vcpu->fpu_active) |
| 6616 | kvm_load_guest_fpu(vcpu); |
Xiao Guangrong | 6b7e2d0 | 2011-01-12 15:40:31 +0800 | [diff] [blame] | 6617 | vcpu->mode = IN_GUEST_MODE; |
| 6618 | |
Michael S. Tsirkin | 01b7191 | 2013-11-04 22:36:25 +0200 | [diff] [blame] | 6619 | srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx); |
| 6620 | |
Lan Tianyu | 0f127d1 | 2016-03-13 11:10:29 +0800 | [diff] [blame] | 6621 | /* |
| 6622 | * We should set ->mode before check ->requests, |
| 6623 | * Please see the comment in kvm_make_all_cpus_request. |
| 6624 | * This also orders the write to mode from any reads |
| 6625 | * to the page tables done while the VCPU is running. |
| 6626 | * Please see the comment in kvm_flush_remote_tlbs. |
Xiao Guangrong | 6b7e2d0 | 2011-01-12 15:40:31 +0800 | [diff] [blame] | 6627 | */ |
Michael S. Tsirkin | 01b7191 | 2013-11-04 22:36:25 +0200 | [diff] [blame] | 6628 | smp_mb__after_srcu_read_unlock(); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6629 | |
| 6630 | local_irq_disable(); |
| 6631 | |
Xiao Guangrong | 6b7e2d0 | 2011-01-12 15:40:31 +0800 | [diff] [blame] | 6632 | if (vcpu->mode == EXITING_GUEST_MODE || vcpu->requests |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6633 | || need_resched() || signal_pending(current)) { |
Xiao Guangrong | 6b7e2d0 | 2011-01-12 15:40:31 +0800 | [diff] [blame] | 6634 | vcpu->mode = OUTSIDE_GUEST_MODE; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6635 | smp_wmb(); |
| 6636 | local_irq_enable(); |
| 6637 | preempt_enable(); |
Michael S. Tsirkin | 01b7191 | 2013-11-04 22:36:25 +0200 | [diff] [blame] | 6638 | vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6639 | r = 1; |
Michael S. Tsirkin | d905c06 | 2012-06-24 19:25:00 +0300 | [diff] [blame] | 6640 | goto cancel_injection; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6641 | } |
| 6642 | |
David Matlack | fc5b7f3 | 2016-03-30 12:24:47 -0700 | [diff] [blame] | 6643 | kvm_load_guest_xcr0(vcpu); |
| 6644 | |
Paolo Bonzini | c43203c | 2016-06-01 22:26:00 +0200 | [diff] [blame] | 6645 | if (req_immediate_exit) { |
| 6646 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Nadav Har'El | d6185f2 | 2011-09-22 13:52:56 +0300 | [diff] [blame] | 6647 | smp_send_reschedule(vcpu->cpu); |
Paolo Bonzini | c43203c | 2016-06-01 22:26:00 +0200 | [diff] [blame] | 6648 | } |
Nadav Har'El | d6185f2 | 2011-09-22 13:52:56 +0300 | [diff] [blame] | 6649 | |
Paolo Bonzini | 8b89fe1 | 2015-12-10 18:37:32 +0100 | [diff] [blame] | 6650 | trace_kvm_entry(vcpu->vcpu_id); |
| 6651 | wait_lapic_expire(vcpu); |
Christian Borntraeger | ccf73aaf | 2015-04-30 13:43:31 +0200 | [diff] [blame] | 6652 | __kvm_guest_enter(); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6653 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6654 | if (unlikely(vcpu->arch.switch_db_regs)) { |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6655 | set_debugreg(0, 7); |
| 6656 | set_debugreg(vcpu->arch.eff_db[0], 0); |
| 6657 | set_debugreg(vcpu->arch.eff_db[1], 1); |
| 6658 | set_debugreg(vcpu->arch.eff_db[2], 2); |
| 6659 | set_debugreg(vcpu->arch.eff_db[3], 3); |
Paolo Bonzini | c77fb5f | 2014-02-21 10:17:24 +0100 | [diff] [blame] | 6660 | set_debugreg(vcpu->arch.dr6, 6); |
Nadav Amit | ae561ed | 2015-04-02 03:10:37 +0300 | [diff] [blame] | 6661 | vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6662 | } |
| 6663 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6664 | kvm_x86_ops->run(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6665 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 6666 | /* |
Paolo Bonzini | c77fb5f | 2014-02-21 10:17:24 +0100 | [diff] [blame] | 6667 | * Do this here before restoring debug registers on the host. And |
| 6668 | * since we do this before handling the vmexit, a DR access vmexit |
| 6669 | * can (a) read the correct value of the debug registers, (b) set |
| 6670 | * KVM_DEBUGREG_WONT_EXIT again. |
| 6671 | */ |
| 6672 | if (unlikely(vcpu->arch.switch_db_regs & KVM_DEBUGREG_WONT_EXIT)) { |
Paolo Bonzini | c77fb5f | 2014-02-21 10:17:24 +0100 | [diff] [blame] | 6673 | WARN_ON(vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP); |
| 6674 | kvm_x86_ops->sync_dirty_debug_regs(vcpu); |
Paolo Bonzini | 70e4da7 | 2016-02-26 12:28:40 +0100 | [diff] [blame] | 6675 | kvm_update_dr0123(vcpu); |
| 6676 | kvm_update_dr6(vcpu); |
| 6677 | kvm_update_dr7(vcpu); |
| 6678 | vcpu->arch.switch_db_regs &= ~KVM_DEBUGREG_RELOAD; |
Paolo Bonzini | c77fb5f | 2014-02-21 10:17:24 +0100 | [diff] [blame] | 6679 | } |
| 6680 | |
| 6681 | /* |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 6682 | * If the guest has used debug registers, at least dr7 |
| 6683 | * will be disabled while returning to the host. |
| 6684 | * If we don't have active breakpoints in the host, we don't |
| 6685 | * care about the messed up debug address registers. But if |
| 6686 | * we have some of them active, restore the old state. |
| 6687 | */ |
Frederic Weisbecker | 59d8eb5 | 2009-11-10 11:03:12 +0100 | [diff] [blame] | 6688 | if (hw_breakpoint_active()) |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 6689 | hw_breakpoint_restore(); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6690 | |
Haozhong Zhang | 4ba7653 | 2015-10-20 15:39:07 +0800 | [diff] [blame] | 6691 | vcpu->arch.last_guest_tsc = kvm_read_l1_tsc(vcpu, rdtsc()); |
Zachary Amsden | 1d5f066 | 2010-08-19 22:07:30 -1000 | [diff] [blame] | 6692 | |
Xiao Guangrong | 6b7e2d0 | 2011-01-12 15:40:31 +0800 | [diff] [blame] | 6693 | vcpu->mode = OUTSIDE_GUEST_MODE; |
Avi Kivity | d94e1dc | 2010-05-03 16:54:48 +0300 | [diff] [blame] | 6694 | smp_wmb(); |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 6695 | |
David Matlack | fc5b7f3 | 2016-03-30 12:24:47 -0700 | [diff] [blame] | 6696 | kvm_put_guest_xcr0(vcpu); |
| 6697 | |
Yang Zhang | a547c6d | 2013-04-11 19:25:10 +0800 | [diff] [blame] | 6698 | /* Interrupt is enabled by handle_external_intr() */ |
| 6699 | kvm_x86_ops->handle_external_intr(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6700 | |
| 6701 | ++vcpu->stat.exits; |
| 6702 | |
| 6703 | /* |
| 6704 | * We must have an instruction between local_irq_enable() and |
| 6705 | * kvm_guest_exit(), so the timer interrupt isn't delayed by |
| 6706 | * the interrupt shadow. The stat.exits increment will do nicely. |
| 6707 | * But we need to prevent reordering, hence this barrier(): |
| 6708 | */ |
| 6709 | barrier(); |
| 6710 | |
| 6711 | kvm_guest_exit(); |
| 6712 | |
| 6713 | preempt_enable(); |
| 6714 | |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 6715 | vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu); |
Marcelo Tosatti | 3200f40 | 2008-03-29 20:17:59 -0300 | [diff] [blame] | 6716 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6717 | /* |
| 6718 | * Profile KVM exit RIPs: |
| 6719 | */ |
| 6720 | if (unlikely(prof_on == KVM_PROFILING)) { |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 6721 | unsigned long rip = kvm_rip_read(vcpu); |
| 6722 | profile_hit(KVM_PROFILING, (void *)rip); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6723 | } |
| 6724 | |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 6725 | if (unlikely(vcpu->arch.tsc_always_catchup)) |
| 6726 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
Avi Kivity | 298101d | 2007-11-25 13:41:11 +0200 | [diff] [blame] | 6727 | |
Michael S. Tsirkin | 5cfb1d5 | 2012-06-24 19:24:54 +0300 | [diff] [blame] | 6728 | if (vcpu->arch.apic_attention) |
| 6729 | kvm_lapic_sync_from_vapic(vcpu); |
Avi Kivity | b93463a | 2007-10-25 16:52:32 +0200 | [diff] [blame] | 6730 | |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6731 | r = kvm_x86_ops->handle_exit(vcpu); |
Michael S. Tsirkin | d905c06 | 2012-06-24 19:25:00 +0300 | [diff] [blame] | 6732 | return r; |
| 6733 | |
| 6734 | cancel_injection: |
| 6735 | kvm_x86_ops->cancel_injection(vcpu); |
Michael S. Tsirkin | ae7a2a3 | 2012-06-24 19:25:07 +0300 | [diff] [blame] | 6736 | if (unlikely(vcpu->arch.apic_attention)) |
| 6737 | kvm_lapic_sync_from_vapic(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6738 | out: |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 6739 | return r; |
| 6740 | } |
| 6741 | |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 6742 | static inline int vcpu_block(struct kvm *kvm, struct kvm_vcpu *vcpu) |
| 6743 | { |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 6744 | if (!kvm_arch_vcpu_runnable(vcpu) && |
| 6745 | (!kvm_x86_ops->pre_block || kvm_x86_ops->pre_block(vcpu) == 0)) { |
Paolo Bonzini | 9c8fd1b | 2015-02-06 12:58:42 +0100 | [diff] [blame] | 6746 | srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx); |
| 6747 | kvm_vcpu_block(vcpu); |
| 6748 | vcpu->srcu_idx = srcu_read_lock(&kvm->srcu); |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 6749 | |
| 6750 | if (kvm_x86_ops->post_block) |
| 6751 | kvm_x86_ops->post_block(vcpu); |
| 6752 | |
Paolo Bonzini | 9c8fd1b | 2015-02-06 12:58:42 +0100 | [diff] [blame] | 6753 | if (!kvm_check_request(KVM_REQ_UNHALT, vcpu)) |
| 6754 | return 1; |
| 6755 | } |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 6756 | |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 6757 | kvm_apic_accept_events(vcpu); |
| 6758 | switch(vcpu->arch.mp_state) { |
| 6759 | case KVM_MP_STATE_HALTED: |
| 6760 | vcpu->arch.pv.pv_unhalted = false; |
| 6761 | vcpu->arch.mp_state = |
| 6762 | KVM_MP_STATE_RUNNABLE; |
| 6763 | case KVM_MP_STATE_RUNNABLE: |
| 6764 | vcpu->arch.apf.halted = false; |
| 6765 | break; |
| 6766 | case KVM_MP_STATE_INIT_RECEIVED: |
| 6767 | break; |
| 6768 | default: |
| 6769 | return -EINTR; |
| 6770 | break; |
| 6771 | } |
| 6772 | return 1; |
| 6773 | } |
| 6774 | |
Paolo Bonzini | 5d9bc64 | 2015-10-13 10:18:53 +0200 | [diff] [blame] | 6775 | static inline bool kvm_vcpu_running(struct kvm_vcpu *vcpu) |
| 6776 | { |
| 6777 | return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE && |
| 6778 | !vcpu->arch.apf.halted); |
| 6779 | } |
| 6780 | |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 6781 | static int vcpu_run(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 6782 | { |
| 6783 | int r; |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 6784 | struct kvm *kvm = vcpu->kvm; |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 6785 | |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 6786 | vcpu->srcu_idx = srcu_read_lock(&kvm->srcu); |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 6787 | |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 6788 | for (;;) { |
Paolo Bonzini | 58f800d | 2015-10-13 21:32:50 +0200 | [diff] [blame] | 6789 | if (kvm_vcpu_running(vcpu)) { |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6790 | r = vcpu_enter_guest(vcpu); |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 6791 | } else { |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 6792 | r = vcpu_block(kvm, vcpu); |
Feng Wu | bf9f6ac | 2015-09-18 22:29:55 +0800 | [diff] [blame] | 6793 | } |
| 6794 | |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 6795 | if (r <= 0) |
| 6796 | break; |
| 6797 | |
| 6798 | clear_bit(KVM_REQ_PENDING_TIMER, &vcpu->requests); |
| 6799 | if (kvm_cpu_has_pending_timer(vcpu)) |
| 6800 | kvm_inject_pending_timer_irqs(vcpu); |
| 6801 | |
Matt Gingell | 782d422 | 2015-11-16 15:26:00 -0800 | [diff] [blame] | 6802 | if (dm_request_for_irq_injection(vcpu) && |
| 6803 | kvm_vcpu_ready_for_interrupt_injection(vcpu)) { |
Paolo Bonzini | 4ca7dd8 | 2015-07-30 10:32:16 +0200 | [diff] [blame] | 6804 | r = 0; |
| 6805 | vcpu->run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN; |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 6806 | ++vcpu->stat.request_irq_exits; |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 6807 | break; |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 6808 | } |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 6809 | |
| 6810 | kvm_check_async_pf_completion(vcpu); |
| 6811 | |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 6812 | if (signal_pending(current)) { |
| 6813 | r = -EINTR; |
Avi Kivity | 851ba69 | 2009-08-24 11:10:17 +0300 | [diff] [blame] | 6814 | vcpu->run->exit_reason = KVM_EXIT_INTR; |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 6815 | ++vcpu->stat.signal_exits; |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 6816 | break; |
Gleb Natapov | 09cec75 | 2009-03-23 15:11:44 +0200 | [diff] [blame] | 6817 | } |
| 6818 | if (need_resched()) { |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 6819 | srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx); |
Takuya Yoshikawa | c08ac06 | 2013-12-13 15:07:21 +0900 | [diff] [blame] | 6820 | cond_resched(); |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 6821 | vcpu->srcu_idx = srcu_read_lock(&kvm->srcu); |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 6822 | } |
| 6823 | } |
| 6824 | |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 6825 | srcu_read_unlock(&kvm->srcu, vcpu->srcu_idx); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6826 | |
| 6827 | return r; |
| 6828 | } |
| 6829 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6830 | static inline int complete_emulated_io(struct kvm_vcpu *vcpu) |
| 6831 | { |
| 6832 | int r; |
| 6833 | vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu); |
| 6834 | r = emulate_instruction(vcpu, EMULTYPE_NO_DECODE); |
| 6835 | srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx); |
| 6836 | if (r != EMULATE_DONE) |
| 6837 | return 0; |
| 6838 | return 1; |
| 6839 | } |
| 6840 | |
| 6841 | static int complete_emulated_pio(struct kvm_vcpu *vcpu) |
| 6842 | { |
| 6843 | BUG_ON(!vcpu->arch.pio.count); |
| 6844 | |
| 6845 | return complete_emulated_io(vcpu); |
| 6846 | } |
| 6847 | |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 6848 | /* |
| 6849 | * Implements the following, as a state machine: |
| 6850 | * |
| 6851 | * read: |
| 6852 | * for each fragment |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 6853 | * for each mmio piece in the fragment |
| 6854 | * write gpa, len |
| 6855 | * exit |
| 6856 | * copy data |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 6857 | * execute insn |
| 6858 | * |
| 6859 | * write: |
| 6860 | * for each fragment |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 6861 | * for each mmio piece in the fragment |
| 6862 | * write gpa, len |
| 6863 | * copy data |
| 6864 | * exit |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 6865 | */ |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6866 | static int complete_emulated_mmio(struct kvm_vcpu *vcpu) |
Avi Kivity | 5287f19 | 2010-01-19 14:20:10 +0200 | [diff] [blame] | 6867 | { |
| 6868 | struct kvm_run *run = vcpu->run; |
Avi Kivity | f78146b | 2012-04-18 19:22:47 +0300 | [diff] [blame] | 6869 | struct kvm_mmio_fragment *frag; |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 6870 | unsigned len; |
Avi Kivity | 5287f19 | 2010-01-19 14:20:10 +0200 | [diff] [blame] | 6871 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6872 | BUG_ON(!vcpu->mmio_needed); |
Avi Kivity | 5287f19 | 2010-01-19 14:20:10 +0200 | [diff] [blame] | 6873 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6874 | /* Complete previous fragment */ |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 6875 | frag = &vcpu->mmio_fragments[vcpu->mmio_cur_fragment]; |
| 6876 | len = min(8u, frag->len); |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6877 | if (!vcpu->mmio_is_write) |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 6878 | memcpy(frag->data, run->mmio.data, len); |
| 6879 | |
| 6880 | if (frag->len <= 8) { |
| 6881 | /* Switch to the next fragment. */ |
| 6882 | frag++; |
| 6883 | vcpu->mmio_cur_fragment++; |
| 6884 | } else { |
| 6885 | /* Go forward to the next mmio piece. */ |
| 6886 | frag->data += len; |
| 6887 | frag->gpa += len; |
| 6888 | frag->len -= len; |
| 6889 | } |
| 6890 | |
Andrew Honig | a08d3b3 | 2014-02-27 19:35:14 +0100 | [diff] [blame] | 6891 | if (vcpu->mmio_cur_fragment >= vcpu->mmio_nr_fragments) { |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6892 | vcpu->mmio_needed = 0; |
Paolo Bonzini | 0912c97 | 2013-08-27 15:41:43 +0200 | [diff] [blame] | 6893 | |
| 6894 | /* FIXME: return into emulator if single-stepping. */ |
Avi Kivity | cef4dea | 2010-01-20 12:01:20 +0200 | [diff] [blame] | 6895 | if (vcpu->mmio_is_write) |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6896 | return 1; |
| 6897 | vcpu->mmio_read_completed = 1; |
| 6898 | return complete_emulated_io(vcpu); |
Avi Kivity | 5287f19 | 2010-01-19 14:20:10 +0200 | [diff] [blame] | 6899 | } |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 6900 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6901 | run->exit_reason = KVM_EXIT_MMIO; |
| 6902 | run->mmio.phys_addr = frag->gpa; |
| 6903 | if (vcpu->mmio_is_write) |
Xiao Guangrong | 87da7e6 | 2012-10-24 14:07:59 +0800 | [diff] [blame] | 6904 | memcpy(run->mmio.data, frag->data, min(8u, frag->len)); |
| 6905 | run->mmio.len = min(8u, frag->len); |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6906 | run->mmio.is_write = vcpu->mmio_is_write; |
| 6907 | vcpu->arch.complete_userspace_io = complete_emulated_mmio; |
| 6908 | return 0; |
Avi Kivity | 5287f19 | 2010-01-19 14:20:10 +0200 | [diff] [blame] | 6909 | } |
| 6910 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6911 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6912 | int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run) |
| 6913 | { |
Ingo Molnar | c5bedc6 | 2015-04-23 12:49:20 +0200 | [diff] [blame] | 6914 | struct fpu *fpu = ¤t->thread.fpu; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6915 | int r; |
| 6916 | sigset_t sigsaved; |
| 6917 | |
Ingo Molnar | c4d72e2 | 2015-04-27 07:18:17 +0200 | [diff] [blame] | 6918 | fpu__activate_curr(fpu); |
Avi Kivity | e5c3014 | 2011-01-11 12:15:54 +0200 | [diff] [blame] | 6919 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6920 | if (vcpu->sigset_active) |
| 6921 | sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved); |
| 6922 | |
Avi Kivity | ac9f6dc | 2008-07-06 15:48:31 +0300 | [diff] [blame] | 6923 | if (unlikely(vcpu->arch.mp_state == KVM_MP_STATE_UNINITIALIZED)) { |
| 6924 | kvm_vcpu_block(vcpu); |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 6925 | kvm_apic_accept_events(vcpu); |
Marcelo Tosatti | d769017 | 2008-09-08 15:23:48 -0300 | [diff] [blame] | 6926 | clear_bit(KVM_REQ_UNHALT, &vcpu->requests); |
Avi Kivity | ac9f6dc | 2008-07-06 15:48:31 +0300 | [diff] [blame] | 6927 | r = -EAGAIN; |
| 6928 | goto out; |
| 6929 | } |
| 6930 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6931 | /* re-sync apic's tpr */ |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 6932 | if (!lapic_in_kernel(vcpu)) { |
Andre Przywara | eea1cff | 2010-12-21 11:12:00 +0100 | [diff] [blame] | 6933 | if (kvm_set_cr8(vcpu, kvm_run->cr8) != 0) { |
| 6934 | r = -EINVAL; |
| 6935 | goto out; |
| 6936 | } |
| 6937 | } |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6938 | |
Gleb Natapov | 716d51a | 2012-09-03 15:24:26 +0300 | [diff] [blame] | 6939 | if (unlikely(vcpu->arch.complete_userspace_io)) { |
| 6940 | int (*cui)(struct kvm_vcpu *) = vcpu->arch.complete_userspace_io; |
| 6941 | vcpu->arch.complete_userspace_io = NULL; |
| 6942 | r = cui(vcpu); |
| 6943 | if (r <= 0) |
| 6944 | goto out; |
| 6945 | } else |
| 6946 | WARN_ON(vcpu->arch.pio.count || vcpu->mmio_needed); |
Avi Kivity | 5287f19 | 2010-01-19 14:20:10 +0200 | [diff] [blame] | 6947 | |
Paolo Bonzini | 362c698 | 2015-02-06 12:48:04 +0100 | [diff] [blame] | 6948 | r = vcpu_run(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6949 | |
| 6950 | out: |
Marcelo Tosatti | f1d86e4 | 2010-05-03 23:04:27 -0300 | [diff] [blame] | 6951 | post_kvm_run_save(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6952 | if (vcpu->sigset_active) |
| 6953 | sigprocmask(SIG_SETMASK, &sigsaved, NULL); |
| 6954 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6955 | return r; |
| 6956 | } |
| 6957 | |
| 6958 | int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs) |
| 6959 | { |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 6960 | if (vcpu->arch.emulate_regs_need_sync_to_vcpu) { |
| 6961 | /* |
| 6962 | * We are here if userspace calls get_regs() in the middle of |
| 6963 | * instruction emulation. Registers state needs to be copied |
Guo Chao | 4a96998 | 2012-06-28 15:17:27 +0800 | [diff] [blame] | 6964 | * back from emulation context to vcpu. Userspace shouldn't do |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 6965 | * that usually, but some bad designed PV devices (vmware |
| 6966 | * backdoor interface) need this to work |
| 6967 | */ |
Avi Kivity | dd856ef | 2012-08-27 23:46:17 +0300 | [diff] [blame] | 6968 | emulator_writeback_register_cache(&vcpu->arch.emulate_ctxt); |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 6969 | vcpu->arch.emulate_regs_need_sync_to_vcpu = false; |
| 6970 | } |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 6971 | regs->rax = kvm_register_read(vcpu, VCPU_REGS_RAX); |
| 6972 | regs->rbx = kvm_register_read(vcpu, VCPU_REGS_RBX); |
| 6973 | regs->rcx = kvm_register_read(vcpu, VCPU_REGS_RCX); |
| 6974 | regs->rdx = kvm_register_read(vcpu, VCPU_REGS_RDX); |
| 6975 | regs->rsi = kvm_register_read(vcpu, VCPU_REGS_RSI); |
| 6976 | regs->rdi = kvm_register_read(vcpu, VCPU_REGS_RDI); |
| 6977 | regs->rsp = kvm_register_read(vcpu, VCPU_REGS_RSP); |
| 6978 | regs->rbp = kvm_register_read(vcpu, VCPU_REGS_RBP); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6979 | #ifdef CONFIG_X86_64 |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 6980 | regs->r8 = kvm_register_read(vcpu, VCPU_REGS_R8); |
| 6981 | regs->r9 = kvm_register_read(vcpu, VCPU_REGS_R9); |
| 6982 | regs->r10 = kvm_register_read(vcpu, VCPU_REGS_R10); |
| 6983 | regs->r11 = kvm_register_read(vcpu, VCPU_REGS_R11); |
| 6984 | regs->r12 = kvm_register_read(vcpu, VCPU_REGS_R12); |
| 6985 | regs->r13 = kvm_register_read(vcpu, VCPU_REGS_R13); |
| 6986 | regs->r14 = kvm_register_read(vcpu, VCPU_REGS_R14); |
| 6987 | regs->r15 = kvm_register_read(vcpu, VCPU_REGS_R15); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6988 | #endif |
| 6989 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 6990 | regs->rip = kvm_rip_read(vcpu); |
Jan Kiszka | 91586a3 | 2009-10-05 13:07:21 +0200 | [diff] [blame] | 6991 | regs->rflags = kvm_get_rflags(vcpu); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6992 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 6993 | return 0; |
| 6994 | } |
| 6995 | |
| 6996 | int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs) |
| 6997 | { |
Gleb Natapov | 7ae441e | 2011-03-31 12:06:41 +0200 | [diff] [blame] | 6998 | vcpu->arch.emulate_regs_need_sync_from_vcpu = true; |
| 6999 | vcpu->arch.emulate_regs_need_sync_to_vcpu = false; |
| 7000 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 7001 | kvm_register_write(vcpu, VCPU_REGS_RAX, regs->rax); |
| 7002 | kvm_register_write(vcpu, VCPU_REGS_RBX, regs->rbx); |
| 7003 | kvm_register_write(vcpu, VCPU_REGS_RCX, regs->rcx); |
| 7004 | kvm_register_write(vcpu, VCPU_REGS_RDX, regs->rdx); |
| 7005 | kvm_register_write(vcpu, VCPU_REGS_RSI, regs->rsi); |
| 7006 | kvm_register_write(vcpu, VCPU_REGS_RDI, regs->rdi); |
| 7007 | kvm_register_write(vcpu, VCPU_REGS_RSP, regs->rsp); |
| 7008 | kvm_register_write(vcpu, VCPU_REGS_RBP, regs->rbp); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7009 | #ifdef CONFIG_X86_64 |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 7010 | kvm_register_write(vcpu, VCPU_REGS_R8, regs->r8); |
| 7011 | kvm_register_write(vcpu, VCPU_REGS_R9, regs->r9); |
| 7012 | kvm_register_write(vcpu, VCPU_REGS_R10, regs->r10); |
| 7013 | kvm_register_write(vcpu, VCPU_REGS_R11, regs->r11); |
| 7014 | kvm_register_write(vcpu, VCPU_REGS_R12, regs->r12); |
| 7015 | kvm_register_write(vcpu, VCPU_REGS_R13, regs->r13); |
| 7016 | kvm_register_write(vcpu, VCPU_REGS_R14, regs->r14); |
| 7017 | kvm_register_write(vcpu, VCPU_REGS_R15, regs->r15); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7018 | #endif |
| 7019 | |
Marcelo Tosatti | 5fdbf97 | 2008-06-27 14:58:02 -0300 | [diff] [blame] | 7020 | kvm_rip_write(vcpu, regs->rip); |
Jan Kiszka | 91586a3 | 2009-10-05 13:07:21 +0200 | [diff] [blame] | 7021 | kvm_set_rflags(vcpu, regs->rflags); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7022 | |
Jan Kiszka | b4f14ab | 2008-04-30 17:59:04 +0200 | [diff] [blame] | 7023 | vcpu->arch.exception.pending = false; |
| 7024 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 7025 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 7026 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7027 | return 0; |
| 7028 | } |
| 7029 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7030 | void kvm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l) |
| 7031 | { |
| 7032 | struct kvm_segment cs; |
| 7033 | |
Guillaume Thouvenin | 3e6e0aa | 2008-05-27 10:18:46 +0200 | [diff] [blame] | 7034 | kvm_get_segment(vcpu, &cs, VCPU_SREG_CS); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7035 | *db = cs.db; |
| 7036 | *l = cs.l; |
| 7037 | } |
| 7038 | EXPORT_SYMBOL_GPL(kvm_get_cs_db_l_bits); |
| 7039 | |
| 7040 | int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu, |
| 7041 | struct kvm_sregs *sregs) |
| 7042 | { |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 7043 | struct desc_ptr dt; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7044 | |
Guillaume Thouvenin | 3e6e0aa | 2008-05-27 10:18:46 +0200 | [diff] [blame] | 7045 | kvm_get_segment(vcpu, &sregs->cs, VCPU_SREG_CS); |
| 7046 | kvm_get_segment(vcpu, &sregs->ds, VCPU_SREG_DS); |
| 7047 | kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES); |
| 7048 | kvm_get_segment(vcpu, &sregs->fs, VCPU_SREG_FS); |
| 7049 | kvm_get_segment(vcpu, &sregs->gs, VCPU_SREG_GS); |
| 7050 | kvm_get_segment(vcpu, &sregs->ss, VCPU_SREG_SS); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7051 | |
Guillaume Thouvenin | 3e6e0aa | 2008-05-27 10:18:46 +0200 | [diff] [blame] | 7052 | kvm_get_segment(vcpu, &sregs->tr, VCPU_SREG_TR); |
| 7053 | kvm_get_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7054 | |
| 7055 | kvm_x86_ops->get_idt(vcpu, &dt); |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 7056 | sregs->idt.limit = dt.size; |
| 7057 | sregs->idt.base = dt.address; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7058 | kvm_x86_ops->get_gdt(vcpu, &dt); |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 7059 | sregs->gdt.limit = dt.size; |
| 7060 | sregs->gdt.base = dt.address; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7061 | |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 7062 | sregs->cr0 = kvm_read_cr0(vcpu); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 7063 | sregs->cr2 = vcpu->arch.cr2; |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 7064 | sregs->cr3 = kvm_read_cr3(vcpu); |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 7065 | sregs->cr4 = kvm_read_cr4(vcpu); |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 7066 | sregs->cr8 = kvm_get_cr8(vcpu); |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 7067 | sregs->efer = vcpu->arch.efer; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7068 | sregs->apic_base = kvm_get_apic_base(vcpu); |
| 7069 | |
Gleb Natapov | 923c61b | 2009-05-11 13:35:48 +0300 | [diff] [blame] | 7070 | memset(sregs->interrupt_bitmap, 0, sizeof sregs->interrupt_bitmap); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7071 | |
Gleb Natapov | 36752c9 | 2009-05-11 13:35:53 +0300 | [diff] [blame] | 7072 | if (vcpu->arch.interrupt.pending && !vcpu->arch.interrupt.soft) |
Gleb Natapov | 14d0bc1 | 2009-04-21 17:45:11 +0300 | [diff] [blame] | 7073 | set_bit(vcpu->arch.interrupt.nr, |
| 7074 | (unsigned long *)sregs->interrupt_bitmap); |
Gleb Natapov | 16d7a19 | 2009-04-21 17:45:10 +0300 | [diff] [blame] | 7075 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7076 | return 0; |
| 7077 | } |
| 7078 | |
Marcelo Tosatti | 62d9f0d | 2008-04-11 13:24:45 -0300 | [diff] [blame] | 7079 | int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu, |
| 7080 | struct kvm_mp_state *mp_state) |
| 7081 | { |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 7082 | kvm_apic_accept_events(vcpu); |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 7083 | if (vcpu->arch.mp_state == KVM_MP_STATE_HALTED && |
| 7084 | vcpu->arch.pv.pv_unhalted) |
| 7085 | mp_state->mp_state = KVM_MP_STATE_RUNNABLE; |
| 7086 | else |
| 7087 | mp_state->mp_state = vcpu->arch.mp_state; |
| 7088 | |
Marcelo Tosatti | 62d9f0d | 2008-04-11 13:24:45 -0300 | [diff] [blame] | 7089 | return 0; |
| 7090 | } |
| 7091 | |
| 7092 | int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu, |
| 7093 | struct kvm_mp_state *mp_state) |
| 7094 | { |
Paolo Bonzini | bce87cc | 2016-01-08 13:48:51 +0100 | [diff] [blame] | 7095 | if (!lapic_in_kernel(vcpu) && |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 7096 | mp_state->mp_state != KVM_MP_STATE_RUNNABLE) |
| 7097 | return -EINVAL; |
| 7098 | |
| 7099 | if (mp_state->mp_state == KVM_MP_STATE_SIPI_RECEIVED) { |
| 7100 | vcpu->arch.mp_state = KVM_MP_STATE_INIT_RECEIVED; |
| 7101 | set_bit(KVM_APIC_SIPI, &vcpu->arch.apic->pending_events); |
| 7102 | } else |
| 7103 | vcpu->arch.mp_state = mp_state->mp_state; |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 7104 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Marcelo Tosatti | 62d9f0d | 2008-04-11 13:24:45 -0300 | [diff] [blame] | 7105 | return 0; |
| 7106 | } |
| 7107 | |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 7108 | int kvm_task_switch(struct kvm_vcpu *vcpu, u16 tss_selector, int idt_index, |
| 7109 | int reason, bool has_error_code, u32 error_code) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7110 | { |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 7111 | struct x86_emulate_ctxt *ctxt = &vcpu->arch.emulate_ctxt; |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 7112 | int ret; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7113 | |
Mohammed Gamal | 8ec4722 | 2010-08-16 00:47:01 +0300 | [diff] [blame] | 7114 | init_emulate_ctxt(vcpu); |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 7115 | |
Kevin Wolf | 7f3d35f | 2012-02-08 14:34:38 +0100 | [diff] [blame] | 7116 | ret = emulator_task_switch(ctxt, tss_selector, idt_index, reason, |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 7117 | has_error_code, error_code); |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 7118 | |
Gleb Natapov | c697518 | 2010-02-18 12:15:01 +0200 | [diff] [blame] | 7119 | if (ret) |
Gleb Natapov | 19d0443 | 2010-04-15 12:29:50 +0300 | [diff] [blame] | 7120 | return EMULATE_FAIL; |
Gleb Natapov | c697518 | 2010-02-18 12:15:01 +0200 | [diff] [blame] | 7121 | |
Takuya Yoshikawa | 9d74191 | 2011-05-29 21:53:48 +0900 | [diff] [blame] | 7122 | kvm_rip_write(vcpu, ctxt->eip); |
| 7123 | kvm_set_rflags(vcpu, ctxt->eflags); |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 7124 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Gleb Natapov | 19d0443 | 2010-04-15 12:29:50 +0300 | [diff] [blame] | 7125 | return EMULATE_DONE; |
Izik Eidus | 37817f2 | 2008-03-24 23:14:53 +0200 | [diff] [blame] | 7126 | } |
| 7127 | EXPORT_SYMBOL_GPL(kvm_task_switch); |
| 7128 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7129 | int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu, |
| 7130 | struct kvm_sregs *sregs) |
| 7131 | { |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 7132 | struct msr_data apic_base_msr; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7133 | int mmu_reset_needed = 0; |
Xiao Guangrong | 63f42e0 | 2011-01-12 15:39:18 +0800 | [diff] [blame] | 7134 | int pending_vec, max_bits, idx; |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 7135 | struct desc_ptr dt; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7136 | |
Petr Matousek | 6d1068b | 2012-11-06 19:24:07 +0100 | [diff] [blame] | 7137 | if (!guest_cpuid_has_xsave(vcpu) && (sregs->cr4 & X86_CR4_OSXSAVE)) |
| 7138 | return -EINVAL; |
| 7139 | |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 7140 | dt.size = sregs->idt.limit; |
| 7141 | dt.address = sregs->idt.base; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7142 | kvm_x86_ops->set_idt(vcpu, &dt); |
Gleb Natapov | 89a27f4 | 2010-02-16 10:51:48 +0200 | [diff] [blame] | 7143 | dt.size = sregs->gdt.limit; |
| 7144 | dt.address = sregs->gdt.base; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7145 | kvm_x86_ops->set_gdt(vcpu, &dt); |
| 7146 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 7147 | vcpu->arch.cr2 = sregs->cr2; |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 7148 | mmu_reset_needed |= kvm_read_cr3(vcpu) != sregs->cr3; |
Jan Kiszka | dc7e795 | 2009-07-01 20:52:03 +0200 | [diff] [blame] | 7149 | vcpu->arch.cr3 = sregs->cr3; |
Avi Kivity | aff48ba | 2010-12-05 18:56:11 +0200 | [diff] [blame] | 7150 | __set_bit(VCPU_EXREG_CR3, (ulong *)&vcpu->arch.regs_avail); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7151 | |
Avi Kivity | 2d3ad1f | 2008-02-24 11:20:43 +0200 | [diff] [blame] | 7152 | kvm_set_cr8(vcpu, sregs->cr8); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7153 | |
Avi Kivity | f6801df | 2010-01-21 15:31:50 +0200 | [diff] [blame] | 7154 | mmu_reset_needed |= vcpu->arch.efer != sregs->efer; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7155 | kvm_x86_ops->set_efer(vcpu, sregs->efer); |
Jan Kiszka | 58cb628 | 2014-01-24 16:48:44 +0100 | [diff] [blame] | 7156 | apic_base_msr.data = sregs->apic_base; |
| 7157 | apic_base_msr.host_initiated = true; |
| 7158 | kvm_set_apic_base(vcpu, &apic_base_msr); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7159 | |
Avi Kivity | 4d4ec08 | 2009-12-29 18:07:30 +0200 | [diff] [blame] | 7160 | mmu_reset_needed |= kvm_read_cr0(vcpu) != sregs->cr0; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7161 | kvm_x86_ops->set_cr0(vcpu, sregs->cr0); |
Paul Knowles | d730616 | 2008-02-06 11:02:35 +0000 | [diff] [blame] | 7162 | vcpu->arch.cr0 = sregs->cr0; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7163 | |
Avi Kivity | fc78f51 | 2009-12-07 12:16:48 +0200 | [diff] [blame] | 7164 | mmu_reset_needed |= kvm_read_cr4(vcpu) != sregs->cr4; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7165 | kvm_x86_ops->set_cr4(vcpu, sregs->cr4); |
Huaitong Han | b9baba8 | 2016-03-22 16:51:21 +0800 | [diff] [blame] | 7166 | if (sregs->cr4 & (X86_CR4_OSXSAVE | X86_CR4_PKE)) |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 7167 | kvm_update_cpuid(vcpu); |
Xiao Guangrong | 63f42e0 | 2011-01-12 15:39:18 +0800 | [diff] [blame] | 7168 | |
| 7169 | idx = srcu_read_lock(&vcpu->kvm->srcu); |
Marcelo Tosatti | 7c93be4 | 2009-10-26 16:48:33 -0200 | [diff] [blame] | 7170 | if (!is_long_mode(vcpu) && is_pae(vcpu)) { |
Avi Kivity | 9f8fe50 | 2010-12-05 17:30:00 +0200 | [diff] [blame] | 7171 | load_pdptrs(vcpu, vcpu->arch.walk_mmu, kvm_read_cr3(vcpu)); |
Marcelo Tosatti | 7c93be4 | 2009-10-26 16:48:33 -0200 | [diff] [blame] | 7172 | mmu_reset_needed = 1; |
| 7173 | } |
Xiao Guangrong | 63f42e0 | 2011-01-12 15:39:18 +0800 | [diff] [blame] | 7174 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7175 | |
| 7176 | if (mmu_reset_needed) |
| 7177 | kvm_mmu_reset_context(vcpu); |
| 7178 | |
Michael S. Tsirkin | a50abc3 | 2012-09-05 20:00:52 +0300 | [diff] [blame] | 7179 | max_bits = KVM_NR_INTERRUPTS; |
Gleb Natapov | 923c61b | 2009-05-11 13:35:48 +0300 | [diff] [blame] | 7180 | pending_vec = find_first_bit( |
| 7181 | (const unsigned long *)sregs->interrupt_bitmap, max_bits); |
| 7182 | if (pending_vec < max_bits) { |
Gleb Natapov | 66fd3f7 | 2009-05-11 13:35:50 +0300 | [diff] [blame] | 7183 | kvm_queue_interrupt(vcpu, pending_vec, false); |
Gleb Natapov | 923c61b | 2009-05-11 13:35:48 +0300 | [diff] [blame] | 7184 | pr_debug("Set back pending irq %d\n", pending_vec); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7185 | } |
| 7186 | |
Guillaume Thouvenin | 3e6e0aa | 2008-05-27 10:18:46 +0200 | [diff] [blame] | 7187 | kvm_set_segment(vcpu, &sregs->cs, VCPU_SREG_CS); |
| 7188 | kvm_set_segment(vcpu, &sregs->ds, VCPU_SREG_DS); |
| 7189 | kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES); |
| 7190 | kvm_set_segment(vcpu, &sregs->fs, VCPU_SREG_FS); |
| 7191 | kvm_set_segment(vcpu, &sregs->gs, VCPU_SREG_GS); |
| 7192 | kvm_set_segment(vcpu, &sregs->ss, VCPU_SREG_SS); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7193 | |
Guillaume Thouvenin | 3e6e0aa | 2008-05-27 10:18:46 +0200 | [diff] [blame] | 7194 | kvm_set_segment(vcpu, &sregs->tr, VCPU_SREG_TR); |
| 7195 | kvm_set_segment(vcpu, &sregs->ldt, VCPU_SREG_LDTR); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7196 | |
Mikhail Ershov | 5f0269f | 2009-08-03 14:58:25 +0300 | [diff] [blame] | 7197 | update_cr8_intercept(vcpu); |
| 7198 | |
Marcelo Tosatti | 9c3e4aa | 2008-09-10 16:40:55 -0300 | [diff] [blame] | 7199 | /* Older userspace won't unhalt the vcpu on reset. */ |
Gleb Natapov | c5af89b | 2009-06-09 15:56:26 +0300 | [diff] [blame] | 7200 | if (kvm_vcpu_is_bsp(vcpu) && kvm_rip_read(vcpu) == 0xfff0 && |
Marcelo Tosatti | 9c3e4aa | 2008-09-10 16:40:55 -0300 | [diff] [blame] | 7201 | sregs->cs.selector == 0xf000 && sregs->cs.base == 0xffff0000 && |
Avi Kivity | 3eeb328 | 2010-01-21 15:31:48 +0200 | [diff] [blame] | 7202 | !is_protmode(vcpu)) |
Marcelo Tosatti | 9c3e4aa | 2008-09-10 16:40:55 -0300 | [diff] [blame] | 7203 | vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE; |
| 7204 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 7205 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
| 7206 | |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7207 | return 0; |
| 7208 | } |
| 7209 | |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 7210 | int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu, |
| 7211 | struct kvm_guest_debug *dbg) |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7212 | { |
Jan Kiszka | 355be0b | 2009-10-03 00:31:21 +0200 | [diff] [blame] | 7213 | unsigned long rflags; |
Jan Kiszka | ae675ef | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 7214 | int i, r; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7215 | |
Jan Kiszka | 4f926bf2 | 2009-10-30 12:46:59 +0100 | [diff] [blame] | 7216 | if (dbg->control & (KVM_GUESTDBG_INJECT_DB | KVM_GUESTDBG_INJECT_BP)) { |
| 7217 | r = -EBUSY; |
| 7218 | if (vcpu->arch.exception.pending) |
Avi Kivity | 2122ff5 | 2010-05-13 11:25:04 +0300 | [diff] [blame] | 7219 | goto out; |
Jan Kiszka | 4f926bf2 | 2009-10-30 12:46:59 +0100 | [diff] [blame] | 7220 | if (dbg->control & KVM_GUESTDBG_INJECT_DB) |
| 7221 | kvm_queue_exception(vcpu, DB_VECTOR); |
| 7222 | else |
| 7223 | kvm_queue_exception(vcpu, BP_VECTOR); |
| 7224 | } |
| 7225 | |
Jan Kiszka | 91586a3 | 2009-10-05 13:07:21 +0200 | [diff] [blame] | 7226 | /* |
| 7227 | * Read rflags as long as potentially injected trace flags are still |
| 7228 | * filtered out. |
| 7229 | */ |
| 7230 | rflags = kvm_get_rflags(vcpu); |
Jan Kiszka | 355be0b | 2009-10-03 00:31:21 +0200 | [diff] [blame] | 7231 | |
| 7232 | vcpu->guest_debug = dbg->control; |
| 7233 | if (!(vcpu->guest_debug & KVM_GUESTDBG_ENABLE)) |
| 7234 | vcpu->guest_debug = 0; |
| 7235 | |
| 7236 | if (vcpu->guest_debug & KVM_GUESTDBG_USE_HW_BP) { |
Jan Kiszka | ae675ef | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 7237 | for (i = 0; i < KVM_NR_DB_REGS; ++i) |
| 7238 | vcpu->arch.eff_db[i] = dbg->arch.debugreg[i]; |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 7239 | vcpu->arch.guest_debug_dr7 = dbg->arch.debugreg[7]; |
Jan Kiszka | ae675ef | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 7240 | } else { |
| 7241 | for (i = 0; i < KVM_NR_DB_REGS; i++) |
| 7242 | vcpu->arch.eff_db[i] = vcpu->arch.db[i]; |
Jan Kiszka | ae675ef | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 7243 | } |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 7244 | kvm_update_dr7(vcpu); |
Jan Kiszka | ae675ef | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 7245 | |
Jan Kiszka | f92653e | 2010-02-23 17:47:55 +0100 | [diff] [blame] | 7246 | if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) |
| 7247 | vcpu->arch.singlestep_rip = kvm_rip_read(vcpu) + |
| 7248 | get_segment_base(vcpu, VCPU_SREG_CS); |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7249 | |
Jan Kiszka | 91586a3 | 2009-10-05 13:07:21 +0200 | [diff] [blame] | 7250 | /* |
| 7251 | * Trigger an rflags update that will inject or remove the trace |
| 7252 | * flags. |
| 7253 | */ |
| 7254 | kvm_set_rflags(vcpu, rflags); |
Jan Kiszka | d0bfb94 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 7255 | |
Paolo Bonzini | a96036b | 2015-11-10 11:55:36 +0100 | [diff] [blame] | 7256 | kvm_x86_ops->update_bp_intercept(vcpu); |
Jan Kiszka | 355be0b | 2009-10-03 00:31:21 +0200 | [diff] [blame] | 7257 | |
Jan Kiszka | 4f926bf2 | 2009-10-30 12:46:59 +0100 | [diff] [blame] | 7258 | r = 0; |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7259 | |
Avi Kivity | 2122ff5 | 2010-05-13 11:25:04 +0300 | [diff] [blame] | 7260 | out: |
Hollis Blanchard | b6c7a5d | 2007-11-01 14:16:10 -0500 | [diff] [blame] | 7261 | |
| 7262 | return r; |
| 7263 | } |
| 7264 | |
| 7265 | /* |
Zhang Xiantao | 8b00679 | 2007-11-16 13:05:55 +0800 | [diff] [blame] | 7266 | * Translate a guest virtual address to a guest physical address. |
| 7267 | */ |
| 7268 | int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu, |
| 7269 | struct kvm_translation *tr) |
| 7270 | { |
| 7271 | unsigned long vaddr = tr->linear_address; |
| 7272 | gpa_t gpa; |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 7273 | int idx; |
Zhang Xiantao | 8b00679 | 2007-11-16 13:05:55 +0800 | [diff] [blame] | 7274 | |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 7275 | idx = srcu_read_lock(&vcpu->kvm->srcu); |
Gleb Natapov | 1871c60 | 2010-02-10 14:21:32 +0200 | [diff] [blame] | 7276 | gpa = kvm_mmu_gva_to_gpa_system(vcpu, vaddr, NULL); |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 7277 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
Zhang Xiantao | 8b00679 | 2007-11-16 13:05:55 +0800 | [diff] [blame] | 7278 | tr->physical_address = gpa; |
| 7279 | tr->valid = gpa != UNMAPPED_GVA; |
| 7280 | tr->writeable = 1; |
| 7281 | tr->usermode = 0; |
Zhang Xiantao | 8b00679 | 2007-11-16 13:05:55 +0800 | [diff] [blame] | 7282 | |
| 7283 | return 0; |
| 7284 | } |
| 7285 | |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7286 | int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu) |
| 7287 | { |
Ingo Molnar | c47ada3 | 2015-04-30 17:15:32 +0200 | [diff] [blame] | 7288 | struct fxregs_state *fxsave = |
Ingo Molnar | 7366ed7 | 2015-04-27 04:19:39 +0200 | [diff] [blame] | 7289 | &vcpu->arch.guest_fpu.state.fxsave; |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7290 | |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7291 | memcpy(fpu->fpr, fxsave->st_space, 128); |
| 7292 | fpu->fcw = fxsave->cwd; |
| 7293 | fpu->fsw = fxsave->swd; |
| 7294 | fpu->ftwx = fxsave->twd; |
| 7295 | fpu->last_opcode = fxsave->fop; |
| 7296 | fpu->last_ip = fxsave->rip; |
| 7297 | fpu->last_dp = fxsave->rdp; |
| 7298 | memcpy(fpu->xmm, fxsave->xmm_space, sizeof fxsave->xmm_space); |
| 7299 | |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7300 | return 0; |
| 7301 | } |
| 7302 | |
| 7303 | int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu) |
| 7304 | { |
Ingo Molnar | c47ada3 | 2015-04-30 17:15:32 +0200 | [diff] [blame] | 7305 | struct fxregs_state *fxsave = |
Ingo Molnar | 7366ed7 | 2015-04-27 04:19:39 +0200 | [diff] [blame] | 7306 | &vcpu->arch.guest_fpu.state.fxsave; |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7307 | |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7308 | memcpy(fxsave->st_space, fpu->fpr, 128); |
| 7309 | fxsave->cwd = fpu->fcw; |
| 7310 | fxsave->swd = fpu->fsw; |
| 7311 | fxsave->twd = fpu->ftwx; |
| 7312 | fxsave->fop = fpu->last_opcode; |
| 7313 | fxsave->rip = fpu->last_ip; |
| 7314 | fxsave->rdp = fpu->last_dp; |
| 7315 | memcpy(fxsave->xmm_space, fpu->xmm, sizeof fxsave->xmm_space); |
| 7316 | |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7317 | return 0; |
| 7318 | } |
| 7319 | |
Ingo Molnar | 0ee6a51 | 2015-04-27 06:58:22 +0200 | [diff] [blame] | 7320 | static void fx_init(struct kvm_vcpu *vcpu) |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7321 | { |
Ingo Molnar | bf935b0 | 2015-04-30 10:23:42 +0200 | [diff] [blame] | 7322 | fpstate_init(&vcpu->arch.guest_fpu.state); |
Borislav Petkov | 782511b | 2016-04-04 22:25:03 +0200 | [diff] [blame] | 7323 | if (boot_cpu_has(X86_FEATURE_XSAVES)) |
Ingo Molnar | 7366ed7 | 2015-04-27 04:19:39 +0200 | [diff] [blame] | 7324 | vcpu->arch.guest_fpu.state.xsave.header.xcomp_bv = |
Paolo Bonzini | df1daba | 2014-11-21 19:05:07 +0100 | [diff] [blame] | 7325 | host_xcr0 | XSTATE_COMPACTION_ENABLED; |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7326 | |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 7327 | /* |
| 7328 | * Ensure guest xcr0 is valid for loading |
| 7329 | */ |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 7330 | vcpu->arch.xcr0 = XFEATURE_MASK_FP; |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 7331 | |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 7332 | vcpu->arch.cr0 |= X86_CR0_ET; |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7333 | } |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7334 | |
| 7335 | void kvm_load_guest_fpu(struct kvm_vcpu *vcpu) |
| 7336 | { |
Avi Kivity | 2608d7a | 2010-01-21 15:31:45 +0200 | [diff] [blame] | 7337 | if (vcpu->guest_fpu_loaded) |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7338 | return; |
| 7339 | |
Dexuan Cui | 2acf923 | 2010-06-10 11:27:12 +0800 | [diff] [blame] | 7340 | /* |
| 7341 | * Restore all possible states in the guest, |
| 7342 | * and assume host would use all available bits. |
| 7343 | * Guest xcr0 would be loaded later. |
| 7344 | */ |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7345 | vcpu->guest_fpu_loaded = 1; |
Suresh Siddha | b1a74bf | 2012-09-20 11:01:49 -0700 | [diff] [blame] | 7346 | __kernel_fpu_begin(); |
Ingo Molnar | 003e2e8 | 2015-05-25 11:59:35 +0200 | [diff] [blame] | 7347 | __copy_kernel_to_fpregs(&vcpu->arch.guest_fpu.state); |
Avi Kivity | 0c04851 | 2010-01-21 15:31:52 +0200 | [diff] [blame] | 7348 | trace_kvm_fpu(1); |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7349 | } |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7350 | |
| 7351 | void kvm_put_guest_fpu(struct kvm_vcpu *vcpu) |
| 7352 | { |
Rik van Riel | 653f52c | 2015-04-23 11:52:37 -0400 | [diff] [blame] | 7353 | if (!vcpu->guest_fpu_loaded) { |
| 7354 | vcpu->fpu_counter = 0; |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7355 | return; |
Rik van Riel | 653f52c | 2015-04-23 11:52:37 -0400 | [diff] [blame] | 7356 | } |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7357 | |
| 7358 | vcpu->guest_fpu_loaded = 0; |
Ingo Molnar | 4f83634 | 2015-04-27 02:53:16 +0200 | [diff] [blame] | 7359 | copy_fpregs_to_fpstate(&vcpu->arch.guest_fpu); |
Suresh Siddha | b1a74bf | 2012-09-20 11:01:49 -0700 | [diff] [blame] | 7360 | __kernel_fpu_end(); |
Avi Kivity | f096ed8 | 2007-11-18 13:54:33 +0200 | [diff] [blame] | 7361 | ++vcpu->stat.fpu_reload; |
Rik van Riel | 653f52c | 2015-04-23 11:52:37 -0400 | [diff] [blame] | 7362 | /* |
| 7363 | * If using eager FPU mode, or if the guest is a frequent user |
| 7364 | * of the FPU, just leave the FPU active for next time. |
| 7365 | * Every 255 times fpu_counter rolls over to 0; a guest that uses |
| 7366 | * the FPU in bursts will revert to loading it on demand. |
| 7367 | */ |
Paolo Bonzini | 5a5fbdc | 2016-03-08 10:00:11 +0100 | [diff] [blame] | 7368 | if (!use_eager_fpu()) { |
Rik van Riel | 653f52c | 2015-04-23 11:52:37 -0400 | [diff] [blame] | 7369 | if (++vcpu->fpu_counter < 5) |
| 7370 | kvm_make_request(KVM_REQ_DEACTIVATE_FPU, vcpu); |
| 7371 | } |
Avi Kivity | 0c04851 | 2010-01-21 15:31:52 +0200 | [diff] [blame] | 7372 | trace_kvm_fpu(0); |
Hollis Blanchard | d075206 | 2007-10-31 17:24:25 -0500 | [diff] [blame] | 7373 | } |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7374 | |
| 7375 | void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu) |
| 7376 | { |
Glauber Costa | 12f9a48 | 2011-02-01 14:16:40 -0500 | [diff] [blame] | 7377 | kvmclock_reset(vcpu); |
Joerg Roedel | 7f1ea20 | 2009-02-25 16:08:31 +0100 | [diff] [blame] | 7378 | |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 7379 | free_cpumask_var(vcpu->arch.wbinvd_dirty_mask); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7380 | kvm_x86_ops->vcpu_free(vcpu); |
| 7381 | } |
| 7382 | |
| 7383 | struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, |
| 7384 | unsigned int id) |
| 7385 | { |
Liang Li | c447e76 | 2015-05-21 04:41:25 +0800 | [diff] [blame] | 7386 | struct kvm_vcpu *vcpu; |
| 7387 | |
Zachary Amsden | 6755bae | 2010-08-19 22:07:22 -1000 | [diff] [blame] | 7388 | if (check_tsc_unstable() && atomic_read(&kvm->online_vcpus) != 0) |
| 7389 | printk_once(KERN_WARNING |
| 7390 | "kvm: SMP vm created on host with unstable TSC; " |
| 7391 | "guest TSC will not be reliable\n"); |
Liang Li | c447e76 | 2015-05-21 04:41:25 +0800 | [diff] [blame] | 7392 | |
| 7393 | vcpu = kvm_x86_ops->vcpu_create(kvm, id); |
| 7394 | |
Liang Li | c447e76 | 2015-05-21 04:41:25 +0800 | [diff] [blame] | 7395 | return vcpu; |
Avi Kivity | 26e5215 | 2007-11-20 15:30:24 +0200 | [diff] [blame] | 7396 | } |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7397 | |
Avi Kivity | 26e5215 | 2007-11-20 15:30:24 +0200 | [diff] [blame] | 7398 | int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu) |
| 7399 | { |
| 7400 | int r; |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7401 | |
Xiao Guangrong | 19efffa | 2015-06-15 16:55:31 +0800 | [diff] [blame] | 7402 | kvm_vcpu_mtrr_init(vcpu); |
Michael S. Tsirkin | 9fc7744 | 2012-09-16 11:50:30 +0300 | [diff] [blame] | 7403 | r = vcpu_load(vcpu); |
| 7404 | if (r) |
| 7405 | return r; |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 7406 | kvm_vcpu_reset(vcpu, false); |
Paolo Bonzini | 8a3c1a33 | 2013-10-02 16:56:13 +0200 | [diff] [blame] | 7407 | kvm_mmu_setup(vcpu); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7408 | vcpu_put(vcpu); |
Avi Kivity | 26e5215 | 2007-11-20 15:30:24 +0200 | [diff] [blame] | 7409 | return r; |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7410 | } |
| 7411 | |
Dominik Dingel | 31928aa | 2014-12-04 15:47:07 +0100 | [diff] [blame] | 7412 | void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu) |
Marcelo Tosatti | 42897d8 | 2012-11-27 23:29:02 -0200 | [diff] [blame] | 7413 | { |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 7414 | struct msr_data msr; |
Andrew Jones | 332967a | 2014-02-28 12:52:55 +0100 | [diff] [blame] | 7415 | struct kvm *kvm = vcpu->kvm; |
Marcelo Tosatti | 42897d8 | 2012-11-27 23:29:02 -0200 | [diff] [blame] | 7416 | |
Dominik Dingel | 31928aa | 2014-12-04 15:47:07 +0100 | [diff] [blame] | 7417 | if (vcpu_load(vcpu)) |
| 7418 | return; |
Will Auld | 8fe8ab4 | 2012-11-29 12:42:12 -0800 | [diff] [blame] | 7419 | msr.data = 0x0; |
| 7420 | msr.index = MSR_IA32_TSC; |
| 7421 | msr.host_initiated = true; |
| 7422 | kvm_write_tsc(vcpu, &msr); |
Marcelo Tosatti | 42897d8 | 2012-11-27 23:29:02 -0200 | [diff] [blame] | 7423 | vcpu_put(vcpu); |
| 7424 | |
Marcelo Tosatti | 630994b | 2015-05-12 22:42:04 -0300 | [diff] [blame] | 7425 | if (!kvmclock_periodic_sync) |
| 7426 | return; |
| 7427 | |
Andrew Jones | 332967a | 2014-02-28 12:52:55 +0100 | [diff] [blame] | 7428 | schedule_delayed_work(&kvm->arch.kvmclock_sync_work, |
| 7429 | KVMCLOCK_SYNC_PERIOD); |
Marcelo Tosatti | 42897d8 | 2012-11-27 23:29:02 -0200 | [diff] [blame] | 7430 | } |
| 7431 | |
Hollis Blanchard | d40ccc6 | 2007-11-19 14:04:43 -0600 | [diff] [blame] | 7432 | void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu) |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7433 | { |
Michael S. Tsirkin | 9fc7744 | 2012-09-16 11:50:30 +0300 | [diff] [blame] | 7434 | int r; |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 7435 | vcpu->arch.apf.msr_val = 0; |
| 7436 | |
Michael S. Tsirkin | 9fc7744 | 2012-09-16 11:50:30 +0300 | [diff] [blame] | 7437 | r = vcpu_load(vcpu); |
| 7438 | BUG_ON(r); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7439 | kvm_mmu_unload(vcpu); |
| 7440 | vcpu_put(vcpu); |
| 7441 | |
| 7442 | kvm_x86_ops->vcpu_free(vcpu); |
| 7443 | } |
| 7444 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 7445 | void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event) |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7446 | { |
Paolo Bonzini | e69fab5 | 2015-06-04 10:44:44 +0200 | [diff] [blame] | 7447 | vcpu->arch.hflags = 0; |
| 7448 | |
Paolo Bonzini | c43203c | 2016-06-01 22:26:00 +0200 | [diff] [blame] | 7449 | vcpu->arch.smi_pending = 0; |
Avi Kivity | 7460fb4a | 2011-09-20 13:43:14 +0300 | [diff] [blame] | 7450 | atomic_set(&vcpu->arch.nmi_queued, 0); |
| 7451 | vcpu->arch.nmi_pending = 0; |
Jan Kiszka | 448fa4a | 2008-09-26 09:30:48 +0200 | [diff] [blame] | 7452 | vcpu->arch.nmi_injected = false; |
Nadav Amit | 5f7552d | 2014-06-30 12:03:02 +0300 | [diff] [blame] | 7453 | kvm_clear_interrupt_queue(vcpu); |
| 7454 | kvm_clear_exception_queue(vcpu); |
Jan Kiszka | 448fa4a | 2008-09-26 09:30:48 +0200 | [diff] [blame] | 7455 | |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 7456 | memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db)); |
Nadav Amit | ae561ed | 2015-04-02 03:10:37 +0300 | [diff] [blame] | 7457 | kvm_update_dr0123(vcpu); |
Nadav Amit | 6f43ed0 | 2014-07-15 17:37:46 +0300 | [diff] [blame] | 7458 | vcpu->arch.dr6 = DR6_INIT; |
Jan Kiszka | 73aaf249e | 2014-01-04 18:47:16 +0100 | [diff] [blame] | 7459 | kvm_update_dr6(vcpu); |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 7460 | vcpu->arch.dr7 = DR7_FIXED_1; |
Jan Kiszka | c863901 | 2012-09-21 05:42:55 +0200 | [diff] [blame] | 7461 | kvm_update_dr7(vcpu); |
Jan Kiszka | 42dbaa5 | 2008-12-15 13:52:10 +0100 | [diff] [blame] | 7462 | |
Nadav Amit | 1119022 | 2015-04-02 03:10:38 +0300 | [diff] [blame] | 7463 | vcpu->arch.cr2 = 0; |
| 7464 | |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 7465 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Gleb Natapov | 344d958 | 2010-10-14 11:22:50 +0200 | [diff] [blame] | 7466 | vcpu->arch.apf.msr_val = 0; |
Glauber Costa | c9aaa89 | 2011-07-11 15:28:14 -0400 | [diff] [blame] | 7467 | vcpu->arch.st.msr_val = 0; |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 7468 | |
Glauber Costa | 12f9a48 | 2011-02-01 14:16:40 -0500 | [diff] [blame] | 7469 | kvmclock_reset(vcpu); |
| 7470 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 7471 | kvm_clear_async_pf_completion_queue(vcpu); |
| 7472 | kvm_async_pf_hash_reset(vcpu); |
| 7473 | vcpu->arch.apf.halted = false; |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7474 | |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 7475 | if (!init_event) { |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 7476 | kvm_pmu_reset(vcpu); |
Paolo Bonzini | 64d6067 | 2015-05-07 11:36:11 +0200 | [diff] [blame] | 7477 | vcpu->arch.smbase = 0x30000; |
| 7478 | } |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 7479 | |
Julian Stecklina | 66f7b72 | 2012-12-05 15:26:19 +0100 | [diff] [blame] | 7480 | memset(vcpu->arch.regs, 0, sizeof(vcpu->arch.regs)); |
| 7481 | vcpu->arch.regs_avail = ~0; |
| 7482 | vcpu->arch.regs_dirty = ~0; |
| 7483 | |
Nadav Amit | d28bc9d | 2015-04-13 14:34:08 +0300 | [diff] [blame] | 7484 | kvm_x86_ops->vcpu_reset(vcpu, init_event); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7485 | } |
| 7486 | |
Paolo Bonzini | 2b4a273 | 2014-11-24 14:35:24 +0100 | [diff] [blame] | 7487 | void kvm_vcpu_deliver_sipi_vector(struct kvm_vcpu *vcpu, u8 vector) |
Jan Kiszka | 66450a2 | 2013-03-13 12:42:34 +0100 | [diff] [blame] | 7488 | { |
| 7489 | struct kvm_segment cs; |
| 7490 | |
| 7491 | kvm_get_segment(vcpu, &cs, VCPU_SREG_CS); |
| 7492 | cs.selector = vector << 8; |
| 7493 | cs.base = vector << 12; |
| 7494 | kvm_set_segment(vcpu, &cs, VCPU_SREG_CS); |
| 7495 | kvm_rip_write(vcpu, 0); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7496 | } |
| 7497 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 7498 | int kvm_arch_hardware_enable(void) |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7499 | { |
Zachary Amsden | ca84d1a | 2010-08-19 22:07:28 -1000 | [diff] [blame] | 7500 | struct kvm *kvm; |
| 7501 | struct kvm_vcpu *vcpu; |
| 7502 | int i; |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 7503 | int ret; |
| 7504 | u64 local_tsc; |
| 7505 | u64 max_tsc = 0; |
| 7506 | bool stable, backwards_tsc = false; |
Avi Kivity | 18863bd | 2009-09-07 11:12:18 +0300 | [diff] [blame] | 7507 | |
| 7508 | kvm_shared_msr_cpu_online(); |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 7509 | ret = kvm_x86_ops->hardware_enable(); |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 7510 | if (ret != 0) |
| 7511 | return ret; |
| 7512 | |
Andy Lutomirski | 4ea1636 | 2015-06-25 18:44:07 +0200 | [diff] [blame] | 7513 | local_tsc = rdtsc(); |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 7514 | stable = !check_tsc_unstable(); |
| 7515 | list_for_each_entry(kvm, &vm_list, vm_list) { |
| 7516 | kvm_for_each_vcpu(i, vcpu, kvm) { |
| 7517 | if (!stable && vcpu->cpu == smp_processor_id()) |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 7518 | kvm_make_request(KVM_REQ_CLOCK_UPDATE, vcpu); |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 7519 | if (stable && vcpu->arch.last_host_tsc > local_tsc) { |
| 7520 | backwards_tsc = true; |
| 7521 | if (vcpu->arch.last_host_tsc > max_tsc) |
| 7522 | max_tsc = vcpu->arch.last_host_tsc; |
| 7523 | } |
| 7524 | } |
| 7525 | } |
| 7526 | |
| 7527 | /* |
| 7528 | * Sometimes, even reliable TSCs go backwards. This happens on |
| 7529 | * platforms that reset TSC during suspend or hibernate actions, but |
| 7530 | * maintain synchronization. We must compensate. Fortunately, we can |
| 7531 | * detect that condition here, which happens early in CPU bringup, |
| 7532 | * before any KVM threads can be running. Unfortunately, we can't |
| 7533 | * bring the TSCs fully up to date with real time, as we aren't yet far |
| 7534 | * enough into CPU bringup that we know how much real time has actually |
| 7535 | * elapsed; our helper function, get_kernel_ns() will be using boot |
| 7536 | * variables that haven't been updated yet. |
| 7537 | * |
| 7538 | * So we simply find the maximum observed TSC above, then record the |
| 7539 | * adjustment to TSC in each VCPU. When the VCPU later gets loaded, |
| 7540 | * the adjustment will be applied. Note that we accumulate |
| 7541 | * adjustments, in case multiple suspend cycles happen before some VCPU |
| 7542 | * gets a chance to run again. In the event that no KVM threads get a |
| 7543 | * chance to run, we will miss the entire elapsed period, as we'll have |
| 7544 | * reset last_host_tsc, so VCPUs will not have the TSC adjusted and may |
| 7545 | * loose cycle time. This isn't too big a deal, since the loss will be |
| 7546 | * uniform across all VCPUs (not to mention the scenario is extremely |
| 7547 | * unlikely). It is possible that a second hibernate recovery happens |
| 7548 | * much faster than a first, causing the observed TSC here to be |
| 7549 | * smaller; this would require additional padding adjustment, which is |
| 7550 | * why we set last_host_tsc to the local tsc observed here. |
| 7551 | * |
| 7552 | * N.B. - this code below runs only on platforms with reliable TSC, |
| 7553 | * as that is the only way backwards_tsc is set above. Also note |
| 7554 | * that this runs for ALL vcpus, which is not a bug; all VCPUs should |
| 7555 | * have the same delta_cyc adjustment applied if backwards_tsc |
| 7556 | * is detected. Note further, this adjustment is only done once, |
| 7557 | * as we reset last_host_tsc on all VCPUs to stop this from being |
| 7558 | * called multiple times (one for each physical CPU bringup). |
| 7559 | * |
Guo Chao | 4a96998 | 2012-06-28 15:17:27 +0800 | [diff] [blame] | 7560 | * Platforms with unreliable TSCs don't have to deal with this, they |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 7561 | * will be compensated by the logic in vcpu_load, which sets the TSC to |
| 7562 | * catchup mode. This will catchup all VCPUs to real time, but cannot |
| 7563 | * guarantee that they stay in perfect synchronization. |
| 7564 | */ |
| 7565 | if (backwards_tsc) { |
| 7566 | u64 delta_cyc = max_tsc - local_tsc; |
Marcelo Tosatti | 16a9602 | 2014-05-14 12:43:24 -0300 | [diff] [blame] | 7567 | backwards_tsc_observed = true; |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 7568 | list_for_each_entry(kvm, &vm_list, vm_list) { |
| 7569 | kvm_for_each_vcpu(i, vcpu, kvm) { |
| 7570 | vcpu->arch.tsc_offset_adjustment += delta_cyc; |
| 7571 | vcpu->arch.last_host_tsc = local_tsc; |
Guo Hui Liu | 105b21b | 2014-09-12 13:43:19 +0800 | [diff] [blame] | 7572 | kvm_make_request(KVM_REQ_MASTERCLOCK_UPDATE, vcpu); |
Zachary Amsden | 0dd6a6e | 2012-02-03 15:43:56 -0200 | [diff] [blame] | 7573 | } |
| 7574 | |
| 7575 | /* |
| 7576 | * We have to disable TSC offset matching.. if you were |
| 7577 | * booting a VM while issuing an S4 host suspend.... |
| 7578 | * you may have some problem. Solving this issue is |
| 7579 | * left as an exercise to the reader. |
| 7580 | */ |
| 7581 | kvm->arch.last_tsc_nsec = 0; |
| 7582 | kvm->arch.last_tsc_write = 0; |
| 7583 | } |
| 7584 | |
| 7585 | } |
| 7586 | return 0; |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7587 | } |
| 7588 | |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 7589 | void kvm_arch_hardware_disable(void) |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7590 | { |
Radim Krčmář | 13a34e0 | 2014-08-28 15:13:03 +0200 | [diff] [blame] | 7591 | kvm_x86_ops->hardware_disable(); |
| 7592 | drop_user_return_notifiers(); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7593 | } |
| 7594 | |
| 7595 | int kvm_arch_hardware_setup(void) |
| 7596 | { |
Nadav Amit | 9e9c3fe | 2015-04-12 21:47:15 +0300 | [diff] [blame] | 7597 | int r; |
| 7598 | |
| 7599 | r = kvm_x86_ops->hardware_setup(); |
| 7600 | if (r != 0) |
| 7601 | return r; |
| 7602 | |
Haozhong Zhang | 35181e8 | 2015-10-20 15:39:03 +0800 | [diff] [blame] | 7603 | if (kvm_has_tsc_control) { |
| 7604 | /* |
| 7605 | * Make sure the user can only configure tsc_khz values that |
| 7606 | * fit into a signed integer. |
| 7607 | * A min value is not calculated needed because it will always |
| 7608 | * be 1 on all machines. |
| 7609 | */ |
| 7610 | u64 max = min(0x7fffffffULL, |
| 7611 | __scale_tsc(kvm_max_tsc_scaling_ratio, tsc_khz)); |
| 7612 | kvm_max_guest_tsc_khz = max; |
| 7613 | |
Haozhong Zhang | ad72188 | 2015-10-20 15:39:02 +0800 | [diff] [blame] | 7614 | kvm_default_tsc_scaling_ratio = 1ULL << kvm_tsc_scaling_ratio_frac_bits; |
Haozhong Zhang | 35181e8 | 2015-10-20 15:39:03 +0800 | [diff] [blame] | 7615 | } |
Haozhong Zhang | ad72188 | 2015-10-20 15:39:02 +0800 | [diff] [blame] | 7616 | |
Nadav Amit | 9e9c3fe | 2015-04-12 21:47:15 +0300 | [diff] [blame] | 7617 | kvm_init_msr_list(); |
| 7618 | return 0; |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7619 | } |
| 7620 | |
| 7621 | void kvm_arch_hardware_unsetup(void) |
| 7622 | { |
| 7623 | kvm_x86_ops->hardware_unsetup(); |
| 7624 | } |
| 7625 | |
| 7626 | void kvm_arch_check_processor_compat(void *rtn) |
| 7627 | { |
| 7628 | kvm_x86_ops->check_processor_compatibility(rtn); |
| 7629 | } |
| 7630 | |
Paolo Bonzini | d71ba78 | 2015-07-29 11:56:48 +0200 | [diff] [blame] | 7631 | bool kvm_vcpu_is_reset_bsp(struct kvm_vcpu *vcpu) |
| 7632 | { |
| 7633 | return vcpu->kvm->arch.bsp_vcpu_id == vcpu->vcpu_id; |
| 7634 | } |
| 7635 | EXPORT_SYMBOL_GPL(kvm_vcpu_is_reset_bsp); |
| 7636 | |
| 7637 | bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu) |
| 7638 | { |
| 7639 | return (vcpu->arch.apic_base & MSR_IA32_APICBASE_BSP) != 0; |
| 7640 | } |
| 7641 | |
Avi Kivity | 3e51570 | 2012-03-05 14:23:29 +0200 | [diff] [blame] | 7642 | bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu) |
| 7643 | { |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 7644 | return irqchip_in_kernel(vcpu->kvm) == lapic_in_kernel(vcpu); |
Avi Kivity | 3e51570 | 2012-03-05 14:23:29 +0200 | [diff] [blame] | 7645 | } |
| 7646 | |
Gleb Natapov | 54e9818 | 2012-08-05 15:58:32 +0300 | [diff] [blame] | 7647 | struct static_key kvm_no_apic_vcpu __read_mostly; |
Paolo Bonzini | bce87cc | 2016-01-08 13:48:51 +0100 | [diff] [blame] | 7648 | EXPORT_SYMBOL_GPL(kvm_no_apic_vcpu); |
Gleb Natapov | 54e9818 | 2012-08-05 15:58:32 +0300 | [diff] [blame] | 7649 | |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7650 | int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu) |
| 7651 | { |
| 7652 | struct page *page; |
| 7653 | struct kvm *kvm; |
| 7654 | int r; |
| 7655 | |
| 7656 | BUG_ON(vcpu->kvm == NULL); |
| 7657 | kvm = vcpu->kvm; |
| 7658 | |
Andrey Smetanin | d62caab | 2015-11-10 15:36:33 +0300 | [diff] [blame] | 7659 | vcpu->arch.apicv_active = kvm_x86_ops->get_enable_apicv(); |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 7660 | vcpu->arch.pv.pv_unhalted = false; |
Avi Kivity | 9aabc88f | 2010-07-29 15:11:50 +0300 | [diff] [blame] | 7661 | vcpu->arch.emulate_ctxt.ops = &emulate_ops; |
Nadav Amit | 58d269d | 2015-04-02 03:10:36 +0300 | [diff] [blame] | 7662 | if (!irqchip_in_kernel(kvm) || kvm_vcpu_is_reset_bsp(vcpu)) |
Avi Kivity | a453529 | 2008-04-13 17:54:35 +0300 | [diff] [blame] | 7663 | vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE; |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7664 | else |
Avi Kivity | a453529 | 2008-04-13 17:54:35 +0300 | [diff] [blame] | 7665 | vcpu->arch.mp_state = KVM_MP_STATE_UNINITIALIZED; |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7666 | |
| 7667 | page = alloc_page(GFP_KERNEL | __GFP_ZERO); |
| 7668 | if (!page) { |
| 7669 | r = -ENOMEM; |
| 7670 | goto fail; |
| 7671 | } |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 7672 | vcpu->arch.pio_data = page_address(page); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7673 | |
Zachary Amsden | cc57828 | 2012-02-03 15:43:50 -0200 | [diff] [blame] | 7674 | kvm_set_tsc_khz(vcpu, max_tsc_khz); |
Zachary Amsden | c285545 | 2010-09-18 14:38:15 -1000 | [diff] [blame] | 7675 | |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7676 | r = kvm_mmu_create(vcpu); |
| 7677 | if (r < 0) |
| 7678 | goto fail_free_pio_data; |
| 7679 | |
| 7680 | if (irqchip_in_kernel(kvm)) { |
| 7681 | r = kvm_create_lapic(vcpu); |
| 7682 | if (r < 0) |
| 7683 | goto fail_mmu_destroy; |
Gleb Natapov | 54e9818 | 2012-08-05 15:58:32 +0300 | [diff] [blame] | 7684 | } else |
| 7685 | static_key_slow_inc(&kvm_no_apic_vcpu); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7686 | |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 7687 | vcpu->arch.mce_banks = kzalloc(KVM_MAX_MCE_BANKS * sizeof(u64) * 4, |
| 7688 | GFP_KERNEL); |
| 7689 | if (!vcpu->arch.mce_banks) { |
| 7690 | r = -ENOMEM; |
Wei Yongjun | 443c39b | 2010-01-22 14:21:29 +0800 | [diff] [blame] | 7691 | goto fail_free_lapic; |
Huang Ying | 890ca9a | 2009-05-11 16:48:15 +0800 | [diff] [blame] | 7692 | } |
| 7693 | vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS; |
| 7694 | |
Wei Yongjun | f179735 | 2013-04-18 07:41:00 +0800 | [diff] [blame] | 7695 | if (!zalloc_cpumask_var(&vcpu->arch.wbinvd_dirty_mask, GFP_KERNEL)) { |
| 7696 | r = -ENOMEM; |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 7697 | goto fail_free_mce_banks; |
Wei Yongjun | f179735 | 2013-04-18 07:41:00 +0800 | [diff] [blame] | 7698 | } |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 7699 | |
Ingo Molnar | 0ee6a51 | 2015-04-27 06:58:22 +0200 | [diff] [blame] | 7700 | fx_init(vcpu); |
Julian Stecklina | 66f7b72 | 2012-12-05 15:26:19 +0100 | [diff] [blame] | 7701 | |
Will Auld | ba90463 | 2012-11-29 12:42:50 -0800 | [diff] [blame] | 7702 | vcpu->arch.ia32_tsc_adjust_msr = 0x0; |
Andy Honig | 0b79459 | 2013-02-20 14:48:10 -0800 | [diff] [blame] | 7703 | vcpu->arch.pv_time_enabled = false; |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 7704 | |
| 7705 | vcpu->arch.guest_supported_xcr0 = 0; |
Paolo Bonzini | 4344ee9 | 2013-10-02 16:06:16 +0200 | [diff] [blame] | 7706 | vcpu->arch.guest_xstate_size = XSAVE_HDR_SIZE + XSAVE_HDR_OFFSET; |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 7707 | |
Eugene Korenevsky | 5a4f55c | 2015-03-29 23:56:12 +0300 | [diff] [blame] | 7708 | vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu); |
| 7709 | |
Radim Krčmář | 7454570 | 2015-04-27 15:11:25 +0200 | [diff] [blame] | 7710 | vcpu->arch.pat = MSR_IA32_CR_PAT_DEFAULT; |
| 7711 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 7712 | kvm_async_pf_hash_reset(vcpu); |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 7713 | kvm_pmu_init(vcpu); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 7714 | |
Steve Rutherford | 1c1a9ce | 2015-07-30 11:27:16 +0200 | [diff] [blame] | 7715 | vcpu->arch.pending_external_vector = -1; |
| 7716 | |
Andrey Smetanin | 5c919412 | 2015-11-10 15:36:34 +0300 | [diff] [blame] | 7717 | kvm_hv_vcpu_init(vcpu); |
| 7718 | |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7719 | return 0; |
Ingo Molnar | 0ee6a51 | 2015-04-27 06:58:22 +0200 | [diff] [blame] | 7720 | |
Sheng Yang | f5f48ee | 2010-06-30 12:25:15 +0800 | [diff] [blame] | 7721 | fail_free_mce_banks: |
| 7722 | kfree(vcpu->arch.mce_banks); |
Wei Yongjun | 443c39b | 2010-01-22 14:21:29 +0800 | [diff] [blame] | 7723 | fail_free_lapic: |
| 7724 | kvm_free_lapic(vcpu); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7725 | fail_mmu_destroy: |
| 7726 | kvm_mmu_destroy(vcpu); |
| 7727 | fail_free_pio_data: |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 7728 | free_page((unsigned long)vcpu->arch.pio_data); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7729 | fail: |
| 7730 | return r; |
| 7731 | } |
| 7732 | |
| 7733 | void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu) |
| 7734 | { |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 7735 | int idx; |
| 7736 | |
Andrey Smetanin | 1f4b34f | 2015-11-30 19:22:21 +0300 | [diff] [blame] | 7737 | kvm_hv_vcpu_uninit(vcpu); |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 7738 | kvm_pmu_destroy(vcpu); |
Wei Yongjun | 36cb93f | 2010-01-22 14:18:47 +0800 | [diff] [blame] | 7739 | kfree(vcpu->arch.mce_banks); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7740 | kvm_free_lapic(vcpu); |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 7741 | idx = srcu_read_lock(&vcpu->kvm->srcu); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7742 | kvm_mmu_destroy(vcpu); |
Marcelo Tosatti | f656ce0 | 2009-12-23 14:35:25 -0200 | [diff] [blame] | 7743 | srcu_read_unlock(&vcpu->kvm->srcu, idx); |
Zhang Xiantao | ad312c7 | 2007-12-13 23:50:52 +0800 | [diff] [blame] | 7744 | free_page((unsigned long)vcpu->arch.pio_data); |
Paolo Bonzini | 35754c9 | 2015-07-29 12:05:37 +0200 | [diff] [blame] | 7745 | if (!lapic_in_kernel(vcpu)) |
Gleb Natapov | 54e9818 | 2012-08-05 15:58:32 +0300 | [diff] [blame] | 7746 | static_key_slow_dec(&kvm_no_apic_vcpu); |
Zhang Xiantao | e9b11c1 | 2007-11-14 20:38:21 +0800 | [diff] [blame] | 7747 | } |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7748 | |
Radim Krčmář | e790d9e | 2014-08-21 18:08:05 +0200 | [diff] [blame] | 7749 | void kvm_arch_sched_in(struct kvm_vcpu *vcpu, int cpu) |
| 7750 | { |
Radim Krčmář | ae97a3b | 2014-08-21 18:08:06 +0200 | [diff] [blame] | 7751 | kvm_x86_ops->sched_in(vcpu, cpu); |
Radim Krčmář | e790d9e | 2014-08-21 18:08:05 +0200 | [diff] [blame] | 7752 | } |
| 7753 | |
Carsten Otte | e08b963 | 2012-01-04 10:25:20 +0100 | [diff] [blame] | 7754 | int kvm_arch_init_vm(struct kvm *kvm, unsigned long type) |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7755 | { |
Carsten Otte | e08b963 | 2012-01-04 10:25:20 +0100 | [diff] [blame] | 7756 | if (type) |
| 7757 | return -EINVAL; |
| 7758 | |
Paolo Bonzini | 6ef768f | 2014-11-20 13:45:31 +0100 | [diff] [blame] | 7759 | INIT_HLIST_HEAD(&kvm->arch.mask_notifier_list); |
Zhang Xiantao | f05e70a | 2007-12-14 10:01:48 +0800 | [diff] [blame] | 7760 | INIT_LIST_HEAD(&kvm->arch.active_mmu_pages); |
Xiao Guangrong | 365c886 | 2013-05-31 08:36:29 +0800 | [diff] [blame] | 7761 | INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages); |
Ben-Ami Yassour | 4d5c5d0 | 2008-07-28 19:26:26 +0300 | [diff] [blame] | 7762 | INIT_LIST_HEAD(&kvm->arch.assigned_dev_head); |
Alex Williamson | e0f0bbc | 2013-10-30 11:02:30 -0600 | [diff] [blame] | 7763 | atomic_set(&kvm->arch.noncoherent_dma_count, 0); |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7764 | |
Sheng Yang | 5550af4 | 2008-10-15 20:15:06 +0800 | [diff] [blame] | 7765 | /* Reserve bit 0 of irq_sources_bitmap for userspace irq source */ |
| 7766 | set_bit(KVM_USERSPACE_IRQ_SOURCE_ID, &kvm->arch.irq_sources_bitmap); |
Alex Williamson | 7a84428 | 2012-09-21 11:58:03 -0600 | [diff] [blame] | 7767 | /* Reserve bit 1 of irq_sources_bitmap for irqfd-resampler */ |
| 7768 | set_bit(KVM_IRQFD_RESAMPLE_IRQ_SOURCE_ID, |
| 7769 | &kvm->arch.irq_sources_bitmap); |
Sheng Yang | 5550af4 | 2008-10-15 20:15:06 +0800 | [diff] [blame] | 7770 | |
Jan Kiszka | 038f8c1 | 2011-02-04 10:49:11 +0100 | [diff] [blame] | 7771 | raw_spin_lock_init(&kvm->arch.tsc_write_lock); |
Gleb Natapov | 1e08ec4 | 2012-09-13 17:19:24 +0300 | [diff] [blame] | 7772 | mutex_init(&kvm->arch.apic_map_lock); |
Marcelo Tosatti | d828199 | 2012-11-27 23:29:01 -0200 | [diff] [blame] | 7773 | spin_lock_init(&kvm->arch.pvclock_gtod_sync_lock); |
| 7774 | |
| 7775 | pvclock_update_vm_gtod_copy(kvm); |
Marcelo Tosatti | 53f658b3 | 2008-12-11 20:45:05 +0100 | [diff] [blame] | 7776 | |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 7777 | INIT_DELAYED_WORK(&kvm->arch.kvmclock_update_work, kvmclock_update_fn); |
Andrew Jones | 332967a | 2014-02-28 12:52:55 +0100 | [diff] [blame] | 7778 | INIT_DELAYED_WORK(&kvm->arch.kvmclock_sync_work, kvmclock_sync_fn); |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 7779 | |
Xiao Guangrong | 0eb05bf | 2016-02-24 17:51:13 +0800 | [diff] [blame] | 7780 | kvm_page_track_init(kvm); |
Xiao Guangrong | 13d268c | 2016-02-24 17:51:16 +0800 | [diff] [blame] | 7781 | kvm_mmu_init_vm(kvm); |
Xiao Guangrong | 0eb05bf | 2016-02-24 17:51:13 +0800 | [diff] [blame] | 7782 | |
Suravee Suthikulpanit | 0354313 | 2016-05-04 14:09:42 -0500 | [diff] [blame] | 7783 | if (kvm_x86_ops->vm_init) |
| 7784 | return kvm_x86_ops->vm_init(kvm); |
| 7785 | |
Jan Kiszka | d89f5ef | 2010-11-09 17:02:49 +0100 | [diff] [blame] | 7786 | return 0; |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7787 | } |
| 7788 | |
| 7789 | static void kvm_unload_vcpu_mmu(struct kvm_vcpu *vcpu) |
| 7790 | { |
Michael S. Tsirkin | 9fc7744 | 2012-09-16 11:50:30 +0300 | [diff] [blame] | 7791 | int r; |
| 7792 | r = vcpu_load(vcpu); |
| 7793 | BUG_ON(r); |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7794 | kvm_mmu_unload(vcpu); |
| 7795 | vcpu_put(vcpu); |
| 7796 | } |
| 7797 | |
| 7798 | static void kvm_free_vcpus(struct kvm *kvm) |
| 7799 | { |
| 7800 | unsigned int i; |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 7801 | struct kvm_vcpu *vcpu; |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7802 | |
| 7803 | /* |
| 7804 | * Unpin any mmu pages first. |
| 7805 | */ |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 7806 | kvm_for_each_vcpu(i, vcpu, kvm) { |
| 7807 | kvm_clear_async_pf_completion_queue(vcpu); |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 7808 | kvm_unload_vcpu_mmu(vcpu); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 7809 | } |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 7810 | kvm_for_each_vcpu(i, vcpu, kvm) |
| 7811 | kvm_arch_vcpu_free(vcpu); |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7812 | |
Gleb Natapov | 988a2ca | 2009-06-09 15:56:29 +0300 | [diff] [blame] | 7813 | mutex_lock(&kvm->lock); |
| 7814 | for (i = 0; i < atomic_read(&kvm->online_vcpus); i++) |
| 7815 | kvm->vcpus[i] = NULL; |
| 7816 | |
| 7817 | atomic_set(&kvm->online_vcpus, 0); |
| 7818 | mutex_unlock(&kvm->lock); |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7819 | } |
| 7820 | |
Sheng Yang | ad8ba2c | 2009-01-06 10:03:02 +0800 | [diff] [blame] | 7821 | void kvm_arch_sync_events(struct kvm *kvm) |
| 7822 | { |
Andrew Jones | 332967a | 2014-02-28 12:52:55 +0100 | [diff] [blame] | 7823 | cancel_delayed_work_sync(&kvm->arch.kvmclock_sync_work); |
Andrew Jones | 7e44e44 | 2014-02-28 12:52:54 +0100 | [diff] [blame] | 7824 | cancel_delayed_work_sync(&kvm->arch.kvmclock_update_work); |
Sheng Yang | ba4cef3 | 2009-01-06 10:03:03 +0800 | [diff] [blame] | 7825 | kvm_free_all_assigned_devices(kvm); |
Xiao Guangrong | aea924f | 2010-07-10 17:37:56 +0800 | [diff] [blame] | 7826 | kvm_free_pit(kvm); |
Sheng Yang | ad8ba2c | 2009-01-06 10:03:02 +0800 | [diff] [blame] | 7827 | } |
| 7828 | |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 7829 | int __x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa, u32 size) |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 7830 | { |
| 7831 | int i, r; |
Paolo Bonzini | 25188b9 | 2015-10-14 15:51:08 +0200 | [diff] [blame] | 7832 | unsigned long hva; |
Paolo Bonzini | f0d648b | 2015-10-12 13:56:27 +0200 | [diff] [blame] | 7833 | struct kvm_memslots *slots = kvm_memslots(kvm); |
| 7834 | struct kvm_memory_slot *slot, old; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 7835 | |
| 7836 | /* Called with kvm->slots_lock held. */ |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 7837 | if (WARN_ON(id >= KVM_MEM_SLOTS_NUM)) |
| 7838 | return -EINVAL; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 7839 | |
Paolo Bonzini | f0d648b | 2015-10-12 13:56:27 +0200 | [diff] [blame] | 7840 | slot = id_to_memslot(slots, id); |
| 7841 | if (size) { |
Paolo Bonzini | b21629d | 2016-06-01 14:09:18 +0200 | [diff] [blame] | 7842 | if (slot->npages) |
Paolo Bonzini | f0d648b | 2015-10-12 13:56:27 +0200 | [diff] [blame] | 7843 | return -EEXIST; |
| 7844 | |
| 7845 | /* |
| 7846 | * MAP_SHARED to prevent internal slot pages from being moved |
| 7847 | * by fork()/COW. |
| 7848 | */ |
| 7849 | hva = vm_mmap(NULL, 0, size, PROT_READ | PROT_WRITE, |
| 7850 | MAP_SHARED | MAP_ANONYMOUS, 0); |
| 7851 | if (IS_ERR((void *)hva)) |
| 7852 | return PTR_ERR((void *)hva); |
| 7853 | } else { |
| 7854 | if (!slot->npages) |
| 7855 | return 0; |
| 7856 | |
| 7857 | hva = 0; |
| 7858 | } |
| 7859 | |
| 7860 | old = *slot; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 7861 | for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) { |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 7862 | struct kvm_userspace_memory_region m; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 7863 | |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 7864 | m.slot = id | (i << 16); |
| 7865 | m.flags = 0; |
| 7866 | m.guest_phys_addr = gpa; |
Paolo Bonzini | f0d648b | 2015-10-12 13:56:27 +0200 | [diff] [blame] | 7867 | m.userspace_addr = hva; |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 7868 | m.memory_size = size; |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 7869 | r = __kvm_set_memory_region(kvm, &m); |
| 7870 | if (r < 0) |
| 7871 | return r; |
| 7872 | } |
| 7873 | |
Paolo Bonzini | f0d648b | 2015-10-12 13:56:27 +0200 | [diff] [blame] | 7874 | if (!size) { |
| 7875 | r = vm_munmap(old.userspace_addr, old.npages * PAGE_SIZE); |
| 7876 | WARN_ON(r < 0); |
| 7877 | } |
| 7878 | |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 7879 | return 0; |
| 7880 | } |
| 7881 | EXPORT_SYMBOL_GPL(__x86_set_memory_region); |
| 7882 | |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 7883 | int x86_set_memory_region(struct kvm *kvm, int id, gpa_t gpa, u32 size) |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 7884 | { |
| 7885 | int r; |
| 7886 | |
| 7887 | mutex_lock(&kvm->slots_lock); |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 7888 | r = __x86_set_memory_region(kvm, id, gpa, size); |
Paolo Bonzini | 9da0e4d | 2015-05-18 13:33:16 +0200 | [diff] [blame] | 7889 | mutex_unlock(&kvm->slots_lock); |
| 7890 | |
| 7891 | return r; |
| 7892 | } |
| 7893 | EXPORT_SYMBOL_GPL(x86_set_memory_region); |
| 7894 | |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7895 | void kvm_arch_destroy_vm(struct kvm *kvm) |
| 7896 | { |
Andrew Honig | 27469d2 | 2013-04-18 09:38:14 -0700 | [diff] [blame] | 7897 | if (current->mm == kvm->mm) { |
| 7898 | /* |
| 7899 | * Free memory regions allocated on behalf of userspace, |
| 7900 | * unless the the memory map has changed due to process exit |
| 7901 | * or fd copying. |
| 7902 | */ |
Paolo Bonzini | 1d8007b | 2015-10-12 13:38:32 +0200 | [diff] [blame] | 7903 | x86_set_memory_region(kvm, APIC_ACCESS_PAGE_PRIVATE_MEMSLOT, 0, 0); |
| 7904 | x86_set_memory_region(kvm, IDENTITY_PAGETABLE_PRIVATE_MEMSLOT, 0, 0); |
| 7905 | x86_set_memory_region(kvm, TSS_PRIVATE_MEMSLOT, 0, 0); |
Andrew Honig | 27469d2 | 2013-04-18 09:38:14 -0700 | [diff] [blame] | 7906 | } |
Suravee Suthikulpanit | 0354313 | 2016-05-04 14:09:42 -0500 | [diff] [blame] | 7907 | if (kvm_x86_ops->vm_destroy) |
| 7908 | kvm_x86_ops->vm_destroy(kvm); |
Sheng Yang | 6eb5581 | 2008-10-31 12:37:41 +0800 | [diff] [blame] | 7909 | kvm_iommu_unmap_guest(kvm); |
Zhang Xiantao | d7deeeb0 | 2007-12-14 10:17:34 +0800 | [diff] [blame] | 7910 | kfree(kvm->arch.vpic); |
| 7911 | kfree(kvm->arch.vioapic); |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7912 | kvm_free_vcpus(kvm); |
Gleb Natapov | 1e08ec4 | 2012-09-13 17:19:24 +0300 | [diff] [blame] | 7913 | kfree(rcu_dereference_check(kvm->arch.apic_map, 1)); |
Xiao Guangrong | 13d268c | 2016-02-24 17:51:16 +0800 | [diff] [blame] | 7914 | kvm_mmu_uninit_vm(kvm); |
Zhang Xiantao | d19a9cd | 2007-11-18 18:43:45 +0800 | [diff] [blame] | 7915 | } |
Zhang Xiantao | 0de1034 | 2007-11-20 16:25:04 +0800 | [diff] [blame] | 7916 | |
Aneesh Kumar K.V | 5587027 | 2013-10-07 22:18:00 +0530 | [diff] [blame] | 7917 | 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] | 7918 | struct kvm_memory_slot *dont) |
| 7919 | { |
| 7920 | int i; |
| 7921 | |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7922 | for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) { |
| 7923 | if (!dont || free->arch.rmap[i] != dont->arch.rmap[i]) { |
Thomas Huth | 548ef28 | 2015-02-24 21:29:25 +0100 | [diff] [blame] | 7924 | kvfree(free->arch.rmap[i]); |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7925 | free->arch.rmap[i] = NULL; |
Takuya Yoshikawa | 77d1130 | 2012-07-02 17:57:17 +0900 | [diff] [blame] | 7926 | } |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7927 | if (i == 0) |
| 7928 | continue; |
| 7929 | |
| 7930 | if (!dont || free->arch.lpage_info[i - 1] != |
| 7931 | dont->arch.lpage_info[i - 1]) { |
Thomas Huth | 548ef28 | 2015-02-24 21:29:25 +0100 | [diff] [blame] | 7932 | kvfree(free->arch.lpage_info[i - 1]); |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7933 | free->arch.lpage_info[i - 1] = NULL; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7934 | } |
| 7935 | } |
Xiao Guangrong | 21ebbed | 2016-02-24 17:51:09 +0800 | [diff] [blame] | 7936 | |
| 7937 | kvm_page_track_free_memslot(free, dont); |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7938 | } |
| 7939 | |
Aneesh Kumar K.V | 5587027 | 2013-10-07 22:18:00 +0530 | [diff] [blame] | 7940 | int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot, |
| 7941 | unsigned long npages) |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7942 | { |
| 7943 | int i; |
| 7944 | |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7945 | for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) { |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 7946 | struct kvm_lpage_info *linfo; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7947 | unsigned long ugfn; |
| 7948 | int lpages; |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7949 | int level = i + 1; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7950 | |
| 7951 | lpages = gfn_to_index(slot->base_gfn + npages - 1, |
| 7952 | slot->base_gfn, level) + 1; |
| 7953 | |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7954 | slot->arch.rmap[i] = |
| 7955 | kvm_kvzalloc(lpages * sizeof(*slot->arch.rmap[i])); |
| 7956 | if (!slot->arch.rmap[i]) |
Takuya Yoshikawa | 77d1130 | 2012-07-02 17:57:17 +0900 | [diff] [blame] | 7957 | goto out_free; |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7958 | if (i == 0) |
| 7959 | continue; |
Takuya Yoshikawa | 77d1130 | 2012-07-02 17:57:17 +0900 | [diff] [blame] | 7960 | |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 7961 | linfo = kvm_kvzalloc(lpages * sizeof(*linfo)); |
| 7962 | if (!linfo) |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7963 | goto out_free; |
| 7964 | |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 7965 | slot->arch.lpage_info[i - 1] = linfo; |
| 7966 | |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7967 | if (slot->base_gfn & (KVM_PAGES_PER_HPAGE(level) - 1)) |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 7968 | linfo[0].disallow_lpage = 1; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7969 | if ((slot->base_gfn + npages) & (KVM_PAGES_PER_HPAGE(level) - 1)) |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 7970 | linfo[lpages - 1].disallow_lpage = 1; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7971 | ugfn = slot->userspace_addr >> PAGE_SHIFT; |
| 7972 | /* |
| 7973 | * If the gfn and userspace address are not aligned wrt each |
| 7974 | * other, or if explicitly asked to, disable large page |
| 7975 | * support for this slot |
| 7976 | */ |
| 7977 | if ((slot->base_gfn ^ ugfn) & (KVM_PAGES_PER_HPAGE(level) - 1) || |
| 7978 | !kvm_largepages_enabled()) { |
| 7979 | unsigned long j; |
| 7980 | |
| 7981 | for (j = 0; j < lpages; ++j) |
Xiao Guangrong | 92f94f1 | 2016-02-24 17:51:06 +0800 | [diff] [blame] | 7982 | linfo[j].disallow_lpage = 1; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7983 | } |
| 7984 | } |
| 7985 | |
Xiao Guangrong | 21ebbed | 2016-02-24 17:51:09 +0800 | [diff] [blame] | 7986 | if (kvm_page_track_create_memslot(slot, npages)) |
| 7987 | goto out_free; |
| 7988 | |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 7989 | return 0; |
| 7990 | |
| 7991 | out_free: |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7992 | for (i = 0; i < KVM_NR_PAGE_SIZES; ++i) { |
Thomas Huth | 548ef28 | 2015-02-24 21:29:25 +0100 | [diff] [blame] | 7993 | kvfree(slot->arch.rmap[i]); |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7994 | slot->arch.rmap[i] = NULL; |
| 7995 | if (i == 0) |
| 7996 | continue; |
| 7997 | |
Thomas Huth | 548ef28 | 2015-02-24 21:29:25 +0100 | [diff] [blame] | 7998 | kvfree(slot->arch.lpage_info[i - 1]); |
Takuya Yoshikawa | d89cc61 | 2012-08-01 18:03:28 +0900 | [diff] [blame] | 7999 | slot->arch.lpage_info[i - 1] = NULL; |
Takuya Yoshikawa | db3fe4e | 2012-02-08 13:02:18 +0900 | [diff] [blame] | 8000 | } |
| 8001 | return -ENOMEM; |
| 8002 | } |
| 8003 | |
Paolo Bonzini | 15f4601 | 2015-05-17 21:26:08 +0200 | [diff] [blame] | 8004 | void kvm_arch_memslots_updated(struct kvm *kvm, struct kvm_memslots *slots) |
Takuya Yoshikawa | e59dbe0 | 2013-07-04 13:40:29 +0900 | [diff] [blame] | 8005 | { |
Takuya Yoshikawa | e6dff7d | 2013-07-04 13:41:26 +0900 | [diff] [blame] | 8006 | /* |
| 8007 | * memslots->generation has been incremented. |
| 8008 | * mmio generation may have reached its maximum value. |
| 8009 | */ |
Paolo Bonzini | 54bf36a | 2015-04-08 15:39:23 +0200 | [diff] [blame] | 8010 | kvm_mmu_invalidate_mmio_sptes(kvm, slots); |
Takuya Yoshikawa | e59dbe0 | 2013-07-04 13:40:29 +0900 | [diff] [blame] | 8011 | } |
| 8012 | |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 8013 | int kvm_arch_prepare_memory_region(struct kvm *kvm, |
| 8014 | struct kvm_memory_slot *memslot, |
Paolo Bonzini | 09170a4 | 2015-05-18 13:59:39 +0200 | [diff] [blame] | 8015 | const struct kvm_userspace_memory_region *mem, |
Takuya Yoshikawa | 7b6195a | 2013-02-27 19:44:34 +0900 | [diff] [blame] | 8016 | enum kvm_mr_change change) |
Zhang Xiantao | 0de1034 | 2007-11-20 16:25:04 +0800 | [diff] [blame] | 8017 | { |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 8018 | return 0; |
| 8019 | } |
| 8020 | |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 8021 | static void kvm_mmu_slot_apply_flags(struct kvm *kvm, |
| 8022 | struct kvm_memory_slot *new) |
| 8023 | { |
| 8024 | /* Still write protect RO slot */ |
| 8025 | if (new->flags & KVM_MEM_READONLY) { |
| 8026 | kvm_mmu_slot_remove_write_access(kvm, new); |
| 8027 | return; |
| 8028 | } |
| 8029 | |
| 8030 | /* |
| 8031 | * Call kvm_x86_ops dirty logging hooks when they are valid. |
| 8032 | * |
| 8033 | * kvm_x86_ops->slot_disable_log_dirty is called when: |
| 8034 | * |
| 8035 | * - KVM_MR_CREATE with dirty logging is disabled |
| 8036 | * - KVM_MR_FLAGS_ONLY with dirty logging is disabled in new flag |
| 8037 | * |
| 8038 | * The reason is, in case of PML, we need to set D-bit for any slots |
| 8039 | * with dirty logging disabled in order to eliminate unnecessary GPA |
| 8040 | * logging in PML buffer (and potential PML buffer full VMEXT). This |
| 8041 | * guarantees leaving PML enabled during guest's lifetime won't have |
| 8042 | * any additonal overhead from PML when guest is running with dirty |
| 8043 | * logging disabled for memory slots. |
| 8044 | * |
| 8045 | * kvm_x86_ops->slot_enable_log_dirty is called when switching new slot |
| 8046 | * to dirty logging mode. |
| 8047 | * |
| 8048 | * If kvm_x86_ops dirty logging hooks are invalid, use write protect. |
| 8049 | * |
| 8050 | * In case of write protect: |
| 8051 | * |
| 8052 | * Write protect all pages for dirty logging. |
| 8053 | * |
| 8054 | * All the sptes including the large sptes which point to this |
| 8055 | * slot are set to readonly. We can not create any new large |
| 8056 | * spte on this slot until the end of the logging. |
| 8057 | * |
| 8058 | * See the comments in fast_page_fault(). |
| 8059 | */ |
| 8060 | if (new->flags & KVM_MEM_LOG_DIRTY_PAGES) { |
| 8061 | if (kvm_x86_ops->slot_enable_log_dirty) |
| 8062 | kvm_x86_ops->slot_enable_log_dirty(kvm, new); |
| 8063 | else |
| 8064 | kvm_mmu_slot_remove_write_access(kvm, new); |
| 8065 | } else { |
| 8066 | if (kvm_x86_ops->slot_disable_log_dirty) |
| 8067 | kvm_x86_ops->slot_disable_log_dirty(kvm, new); |
| 8068 | } |
| 8069 | } |
| 8070 | |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 8071 | void kvm_arch_commit_memory_region(struct kvm *kvm, |
Paolo Bonzini | 09170a4 | 2015-05-18 13:59:39 +0200 | [diff] [blame] | 8072 | const struct kvm_userspace_memory_region *mem, |
Takuya Yoshikawa | 8482644 | 2013-02-27 19:45:25 +0900 | [diff] [blame] | 8073 | const struct kvm_memory_slot *old, |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 8074 | const struct kvm_memory_slot *new, |
Takuya Yoshikawa | 8482644 | 2013-02-27 19:45:25 +0900 | [diff] [blame] | 8075 | enum kvm_mr_change change) |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 8076 | { |
Takuya Yoshikawa | 8482644 | 2013-02-27 19:45:25 +0900 | [diff] [blame] | 8077 | int nr_mmu_pages = 0; |
Marcelo Tosatti | f7784b8 | 2009-12-23 14:35:18 -0200 | [diff] [blame] | 8078 | |
Xiao Guangrong | 48c0e4e | 2011-03-04 18:59:21 +0800 | [diff] [blame] | 8079 | if (!kvm->arch.n_requested_mmu_pages) |
| 8080 | nr_mmu_pages = kvm_mmu_calculate_mmu_pages(kvm); |
Zhang Xiantao | 0de1034 | 2007-11-20 16:25:04 +0800 | [diff] [blame] | 8081 | |
Xiao Guangrong | 48c0e4e | 2011-03-04 18:59:21 +0800 | [diff] [blame] | 8082 | if (nr_mmu_pages) |
| 8083 | kvm_mmu_change_mmu_pages(kvm, nr_mmu_pages); |
Kai Huang | 1c91cad4 | 2015-01-28 10:54:26 +0800 | [diff] [blame] | 8084 | |
Takuya Yoshikawa | c972f3b | 2013-01-08 19:43:28 +0900 | [diff] [blame] | 8085 | /* |
Wanpeng Li | 3ea3b7f | 2015-04-03 15:40:25 +0800 | [diff] [blame] | 8086 | * Dirty logging tracks sptes in 4k granularity, meaning that large |
| 8087 | * sptes have to be split. If live migration is successful, the guest |
| 8088 | * in the source machine will be destroyed and large sptes will be |
| 8089 | * created in the destination. However, if the guest continues to run |
| 8090 | * in the source machine (for example if live migration fails), small |
| 8091 | * sptes will remain around and cause bad performance. |
| 8092 | * |
| 8093 | * Scan sptes if dirty logging has been stopped, dropping those |
| 8094 | * which can be collapsed into a single large-page spte. Later |
| 8095 | * page faults will create the large-page sptes. |
| 8096 | */ |
| 8097 | if ((change != KVM_MR_DELETE) && |
| 8098 | (old->flags & KVM_MEM_LOG_DIRTY_PAGES) && |
| 8099 | !(new->flags & KVM_MEM_LOG_DIRTY_PAGES)) |
| 8100 | kvm_mmu_zap_collapsible_sptes(kvm, new); |
| 8101 | |
| 8102 | /* |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 8103 | * Set up write protection and/or dirty logging for the new slot. |
Xiao Guangrong | c126d94 | 2014-04-17 17:06:14 +0800 | [diff] [blame] | 8104 | * |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 8105 | * For KVM_MR_DELETE and KVM_MR_MOVE, the shadow pages of old slot have |
| 8106 | * been zapped so no dirty logging staff is needed for old slot. For |
| 8107 | * KVM_MR_FLAGS_ONLY, the old slot is essentially the same one as the |
| 8108 | * new and it's also covered when dealing with the new slot. |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 8109 | * |
| 8110 | * FIXME: const-ify all uses of struct kvm_memory_slot. |
Takuya Yoshikawa | c972f3b | 2013-01-08 19:43:28 +0900 | [diff] [blame] | 8111 | */ |
Kai Huang | 88178fd | 2015-01-28 10:54:27 +0800 | [diff] [blame] | 8112 | if (change != KVM_MR_DELETE) |
Paolo Bonzini | f36f3f2 | 2015-05-18 13:20:23 +0200 | [diff] [blame] | 8113 | kvm_mmu_slot_apply_flags(kvm, (struct kvm_memory_slot *) new); |
Zhang Xiantao | 0de1034 | 2007-11-20 16:25:04 +0800 | [diff] [blame] | 8114 | } |
Zhang Xiantao | 1d737c8 | 2007-12-14 09:35:10 +0800 | [diff] [blame] | 8115 | |
Marcelo Tosatti | 2df72e9 | 2012-08-24 15:54:57 -0300 | [diff] [blame] | 8116 | void kvm_arch_flush_shadow_all(struct kvm *kvm) |
Marcelo Tosatti | 34d4cb8 | 2008-07-10 20:49:31 -0300 | [diff] [blame] | 8117 | { |
Xiao Guangrong | 6ca18b6 | 2013-05-31 08:36:23 +0800 | [diff] [blame] | 8118 | kvm_mmu_invalidate_zap_all_pages(kvm); |
Marcelo Tosatti | 34d4cb8 | 2008-07-10 20:49:31 -0300 | [diff] [blame] | 8119 | } |
| 8120 | |
Marcelo Tosatti | 2df72e9 | 2012-08-24 15:54:57 -0300 | [diff] [blame] | 8121 | void kvm_arch_flush_shadow_memslot(struct kvm *kvm, |
| 8122 | struct kvm_memory_slot *slot) |
| 8123 | { |
Xiao Guangrong | 6ca18b6 | 2013-05-31 08:36:23 +0800 | [diff] [blame] | 8124 | kvm_mmu_invalidate_zap_all_pages(kvm); |
Marcelo Tosatti | 2df72e9 | 2012-08-24 15:54:57 -0300 | [diff] [blame] | 8125 | } |
| 8126 | |
Paolo Bonzini | 5d9bc64 | 2015-10-13 10:18:53 +0200 | [diff] [blame] | 8127 | static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu) |
| 8128 | { |
| 8129 | if (!list_empty_careful(&vcpu->async_pf.done)) |
| 8130 | return true; |
| 8131 | |
| 8132 | if (kvm_apic_has_events(vcpu)) |
| 8133 | return true; |
| 8134 | |
| 8135 | if (vcpu->arch.pv.pv_unhalted) |
| 8136 | return true; |
| 8137 | |
| 8138 | if (atomic_read(&vcpu->arch.nmi_queued)) |
| 8139 | return true; |
| 8140 | |
Paolo Bonzini | 7391773 | 2015-10-13 10:19:35 +0200 | [diff] [blame] | 8141 | if (test_bit(KVM_REQ_SMI, &vcpu->requests)) |
| 8142 | return true; |
| 8143 | |
Paolo Bonzini | 5d9bc64 | 2015-10-13 10:18:53 +0200 | [diff] [blame] | 8144 | if (kvm_arch_interrupt_allowed(vcpu) && |
| 8145 | kvm_cpu_has_interrupt(vcpu)) |
| 8146 | return true; |
| 8147 | |
Andrey Smetanin | 1f4b34f | 2015-11-30 19:22:21 +0300 | [diff] [blame] | 8148 | if (kvm_hv_has_stimer_pending(vcpu)) |
| 8149 | return true; |
| 8150 | |
Paolo Bonzini | 5d9bc64 | 2015-10-13 10:18:53 +0200 | [diff] [blame] | 8151 | return false; |
| 8152 | } |
| 8153 | |
Zhang Xiantao | 1d737c8 | 2007-12-14 09:35:10 +0800 | [diff] [blame] | 8154 | int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu) |
| 8155 | { |
Jan Kiszka | b6b8a14 | 2014-03-07 20:03:12 +0100 | [diff] [blame] | 8156 | if (is_guest_mode(vcpu) && kvm_x86_ops->check_nested_events) |
| 8157 | kvm_x86_ops->check_nested_events(vcpu, false); |
| 8158 | |
Paolo Bonzini | 5d9bc64 | 2015-10-13 10:18:53 +0200 | [diff] [blame] | 8159 | return kvm_vcpu_running(vcpu) || kvm_vcpu_has_events(vcpu); |
Zhang Xiantao | 1d737c8 | 2007-12-14 09:35:10 +0800 | [diff] [blame] | 8160 | } |
Zhang Xiantao | 5736199 | 2007-12-17 14:21:40 +0800 | [diff] [blame] | 8161 | |
Christoffer Dall | b6d3383 | 2012-03-08 16:44:24 -0500 | [diff] [blame] | 8162 | int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu) |
Zhang Xiantao | 5736199 | 2007-12-17 14:21:40 +0800 | [diff] [blame] | 8163 | { |
Christoffer Dall | b6d3383 | 2012-03-08 16:44:24 -0500 | [diff] [blame] | 8164 | return kvm_vcpu_exiting_guest_mode(vcpu) == IN_GUEST_MODE; |
Zhang Xiantao | 5736199 | 2007-12-17 14:21:40 +0800 | [diff] [blame] | 8165 | } |
Gleb Natapov | 7864612 | 2009-03-23 12:12:11 +0200 | [diff] [blame] | 8166 | |
| 8167 | int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu) |
| 8168 | { |
| 8169 | return kvm_x86_ops->interrupt_allowed(vcpu); |
| 8170 | } |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 8171 | |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 8172 | unsigned long kvm_get_linear_rip(struct kvm_vcpu *vcpu) |
| 8173 | { |
| 8174 | if (is_64_bit_mode(vcpu)) |
| 8175 | return kvm_rip_read(vcpu); |
| 8176 | return (u32)(get_segment_base(vcpu, VCPU_SREG_CS) + |
| 8177 | kvm_rip_read(vcpu)); |
| 8178 | } |
| 8179 | EXPORT_SYMBOL_GPL(kvm_get_linear_rip); |
| 8180 | |
Jan Kiszka | f92653e | 2010-02-23 17:47:55 +0100 | [diff] [blame] | 8181 | bool kvm_is_linear_rip(struct kvm_vcpu *vcpu, unsigned long linear_rip) |
| 8182 | { |
Nadav Amit | 82b3277 | 2014-11-02 11:54:45 +0200 | [diff] [blame] | 8183 | return kvm_get_linear_rip(vcpu) == linear_rip; |
Jan Kiszka | f92653e | 2010-02-23 17:47:55 +0100 | [diff] [blame] | 8184 | } |
| 8185 | EXPORT_SYMBOL_GPL(kvm_is_linear_rip); |
| 8186 | |
Jan Kiszka | 94fe45d | 2009-10-18 13:24:44 +0200 | [diff] [blame] | 8187 | unsigned long kvm_get_rflags(struct kvm_vcpu *vcpu) |
| 8188 | { |
| 8189 | unsigned long rflags; |
| 8190 | |
| 8191 | rflags = kvm_x86_ops->get_rflags(vcpu); |
| 8192 | if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP) |
Jan Kiszka | c310bac | 2010-02-23 17:47:58 +0100 | [diff] [blame] | 8193 | rflags &= ~X86_EFLAGS_TF; |
Jan Kiszka | 94fe45d | 2009-10-18 13:24:44 +0200 | [diff] [blame] | 8194 | return rflags; |
| 8195 | } |
| 8196 | EXPORT_SYMBOL_GPL(kvm_get_rflags); |
| 8197 | |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 8198 | static void __kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags) |
Jan Kiszka | 94fe45d | 2009-10-18 13:24:44 +0200 | [diff] [blame] | 8199 | { |
| 8200 | if (vcpu->guest_debug & KVM_GUESTDBG_SINGLESTEP && |
Jan Kiszka | f92653e | 2010-02-23 17:47:55 +0100 | [diff] [blame] | 8201 | kvm_is_linear_rip(vcpu, vcpu->arch.singlestep_rip)) |
Jan Kiszka | c310bac | 2010-02-23 17:47:58 +0100 | [diff] [blame] | 8202 | rflags |= X86_EFLAGS_TF; |
Jan Kiszka | 94fe45d | 2009-10-18 13:24:44 +0200 | [diff] [blame] | 8203 | kvm_x86_ops->set_rflags(vcpu, rflags); |
Paolo Bonzini | 6addfc4 | 2014-03-27 11:29:28 +0100 | [diff] [blame] | 8204 | } |
| 8205 | |
| 8206 | void kvm_set_rflags(struct kvm_vcpu *vcpu, unsigned long rflags) |
| 8207 | { |
| 8208 | __kvm_set_rflags(vcpu, rflags); |
Avi Kivity | 3842d13 | 2010-07-27 12:30:24 +0300 | [diff] [blame] | 8209 | kvm_make_request(KVM_REQ_EVENT, vcpu); |
Jan Kiszka | 94fe45d | 2009-10-18 13:24:44 +0200 | [diff] [blame] | 8210 | } |
| 8211 | EXPORT_SYMBOL_GPL(kvm_set_rflags); |
| 8212 | |
Gleb Natapov | 56028d0 | 2010-10-17 18:13:42 +0200 | [diff] [blame] | 8213 | void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu, struct kvm_async_pf *work) |
| 8214 | { |
| 8215 | int r; |
| 8216 | |
Xiao Guangrong | fb67e14 | 2010-12-07 10:35:25 +0800 | [diff] [blame] | 8217 | if ((vcpu->arch.mmu.direct_map != work->arch.direct_map) || |
chai wen | f2e1066 | 2013-10-14 22:22:33 +0800 | [diff] [blame] | 8218 | work->wakeup_all) |
Gleb Natapov | 56028d0 | 2010-10-17 18:13:42 +0200 | [diff] [blame] | 8219 | return; |
| 8220 | |
| 8221 | r = kvm_mmu_reload(vcpu); |
| 8222 | if (unlikely(r)) |
| 8223 | return; |
| 8224 | |
Xiao Guangrong | fb67e14 | 2010-12-07 10:35:25 +0800 | [diff] [blame] | 8225 | if (!vcpu->arch.mmu.direct_map && |
| 8226 | work->arch.cr3 != vcpu->arch.mmu.get_cr3(vcpu)) |
| 8227 | return; |
| 8228 | |
Gleb Natapov | 56028d0 | 2010-10-17 18:13:42 +0200 | [diff] [blame] | 8229 | vcpu->arch.mmu.page_fault(vcpu, work->gva, 0, true); |
| 8230 | } |
| 8231 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 8232 | static inline u32 kvm_async_pf_hash_fn(gfn_t gfn) |
| 8233 | { |
| 8234 | return hash_32(gfn & 0xffffffff, order_base_2(ASYNC_PF_PER_VCPU)); |
| 8235 | } |
| 8236 | |
| 8237 | static inline u32 kvm_async_pf_next_probe(u32 key) |
| 8238 | { |
| 8239 | return (key + 1) & (roundup_pow_of_two(ASYNC_PF_PER_VCPU) - 1); |
| 8240 | } |
| 8241 | |
| 8242 | static void kvm_add_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn) |
| 8243 | { |
| 8244 | u32 key = kvm_async_pf_hash_fn(gfn); |
| 8245 | |
| 8246 | while (vcpu->arch.apf.gfns[key] != ~0) |
| 8247 | key = kvm_async_pf_next_probe(key); |
| 8248 | |
| 8249 | vcpu->arch.apf.gfns[key] = gfn; |
| 8250 | } |
| 8251 | |
| 8252 | static u32 kvm_async_pf_gfn_slot(struct kvm_vcpu *vcpu, gfn_t gfn) |
| 8253 | { |
| 8254 | int i; |
| 8255 | u32 key = kvm_async_pf_hash_fn(gfn); |
| 8256 | |
| 8257 | for (i = 0; i < roundup_pow_of_two(ASYNC_PF_PER_VCPU) && |
Xiao Guangrong | c7d28c2 | 2010-11-01 17:00:30 +0800 | [diff] [blame] | 8258 | (vcpu->arch.apf.gfns[key] != gfn && |
| 8259 | vcpu->arch.apf.gfns[key] != ~0); i++) |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 8260 | key = kvm_async_pf_next_probe(key); |
| 8261 | |
| 8262 | return key; |
| 8263 | } |
| 8264 | |
| 8265 | bool kvm_find_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn) |
| 8266 | { |
| 8267 | return vcpu->arch.apf.gfns[kvm_async_pf_gfn_slot(vcpu, gfn)] == gfn; |
| 8268 | } |
| 8269 | |
| 8270 | static void kvm_del_async_pf_gfn(struct kvm_vcpu *vcpu, gfn_t gfn) |
| 8271 | { |
| 8272 | u32 i, j, k; |
| 8273 | |
| 8274 | i = j = kvm_async_pf_gfn_slot(vcpu, gfn); |
| 8275 | while (true) { |
| 8276 | vcpu->arch.apf.gfns[i] = ~0; |
| 8277 | do { |
| 8278 | j = kvm_async_pf_next_probe(j); |
| 8279 | if (vcpu->arch.apf.gfns[j] == ~0) |
| 8280 | return; |
| 8281 | k = kvm_async_pf_hash_fn(vcpu->arch.apf.gfns[j]); |
| 8282 | /* |
| 8283 | * k lies cyclically in ]i,j] |
| 8284 | * | i.k.j | |
| 8285 | * |....j i.k.| or |.k..j i...| |
| 8286 | */ |
| 8287 | } while ((i <= j) ? (i < k && k <= j) : (i < k || k <= j)); |
| 8288 | vcpu->arch.apf.gfns[i] = vcpu->arch.apf.gfns[j]; |
| 8289 | i = j; |
| 8290 | } |
| 8291 | } |
| 8292 | |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 8293 | static int apf_put_user(struct kvm_vcpu *vcpu, u32 val) |
| 8294 | { |
| 8295 | |
| 8296 | return kvm_write_guest_cached(vcpu->kvm, &vcpu->arch.apf.data, &val, |
| 8297 | sizeof(val)); |
| 8298 | } |
| 8299 | |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 8300 | void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu, |
| 8301 | struct kvm_async_pf *work) |
| 8302 | { |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 8303 | struct x86_exception fault; |
| 8304 | |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 8305 | trace_kvm_async_pf_not_present(work->arch.token, work->gva); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 8306 | kvm_add_async_pf_gfn(vcpu, work->arch.gfn); |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 8307 | |
| 8308 | if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) || |
Gleb Natapov | fc5f06f | 2010-10-14 11:22:56 +0200 | [diff] [blame] | 8309 | (vcpu->arch.apf.send_user_only && |
| 8310 | kvm_x86_ops->get_cpl(vcpu) == 0)) |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 8311 | kvm_make_request(KVM_REQ_APF_HALT, vcpu); |
| 8312 | else if (!apf_put_user(vcpu, KVM_PV_REASON_PAGE_NOT_PRESENT)) { |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 8313 | fault.vector = PF_VECTOR; |
| 8314 | fault.error_code_valid = true; |
| 8315 | fault.error_code = 0; |
| 8316 | fault.nested_page_fault = false; |
| 8317 | fault.address = work->arch.token; |
| 8318 | kvm_inject_page_fault(vcpu, &fault); |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 8319 | } |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 8320 | } |
| 8321 | |
| 8322 | void kvm_arch_async_page_present(struct kvm_vcpu *vcpu, |
| 8323 | struct kvm_async_pf *work) |
| 8324 | { |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 8325 | struct x86_exception fault; |
| 8326 | |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 8327 | trace_kvm_async_pf_ready(work->arch.token, work->gva); |
chai wen | f2e1066 | 2013-10-14 22:22:33 +0800 | [diff] [blame] | 8328 | if (work->wakeup_all) |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 8329 | work->arch.token = ~0; /* broadcast wakeup */ |
| 8330 | else |
| 8331 | kvm_del_async_pf_gfn(vcpu, work->arch.gfn); |
| 8332 | |
| 8333 | if ((vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED) && |
| 8334 | !apf_put_user(vcpu, KVM_PV_REASON_PAGE_READY)) { |
Avi Kivity | 6389ee9 | 2010-11-29 16:12:30 +0200 | [diff] [blame] | 8335 | fault.vector = PF_VECTOR; |
| 8336 | fault.error_code_valid = true; |
| 8337 | fault.error_code = 0; |
| 8338 | fault.nested_page_fault = false; |
| 8339 | fault.address = work->arch.token; |
| 8340 | kvm_inject_page_fault(vcpu, &fault); |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 8341 | } |
Xiao Guangrong | e6d53e3 | 2010-11-01 17:01:28 +0800 | [diff] [blame] | 8342 | vcpu->arch.apf.halted = false; |
Gleb Natapov | a4fa163 | 2012-05-03 11:36:39 +0300 | [diff] [blame] | 8343 | vcpu->arch.mp_state = KVM_MP_STATE_RUNNABLE; |
Gleb Natapov | 7c90705 | 2010-10-14 11:22:53 +0200 | [diff] [blame] | 8344 | } |
| 8345 | |
| 8346 | bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu) |
| 8347 | { |
| 8348 | if (!(vcpu->arch.apf.msr_val & KVM_ASYNC_PF_ENABLED)) |
| 8349 | return true; |
| 8350 | else |
| 8351 | return !kvm_event_needs_reinjection(vcpu) && |
| 8352 | kvm_x86_ops->interrupt_allowed(vcpu); |
Gleb Natapov | af585b9 | 2010-10-14 11:22:46 +0200 | [diff] [blame] | 8353 | } |
| 8354 | |
Paolo Bonzini | 5544eb9 | 2015-07-07 15:41:58 +0200 | [diff] [blame] | 8355 | void kvm_arch_start_assignment(struct kvm *kvm) |
| 8356 | { |
| 8357 | atomic_inc(&kvm->arch.assigned_device_count); |
| 8358 | } |
| 8359 | EXPORT_SYMBOL_GPL(kvm_arch_start_assignment); |
| 8360 | |
| 8361 | void kvm_arch_end_assignment(struct kvm *kvm) |
| 8362 | { |
| 8363 | atomic_dec(&kvm->arch.assigned_device_count); |
| 8364 | } |
| 8365 | EXPORT_SYMBOL_GPL(kvm_arch_end_assignment); |
| 8366 | |
| 8367 | bool kvm_arch_has_assigned_device(struct kvm *kvm) |
| 8368 | { |
| 8369 | return atomic_read(&kvm->arch.assigned_device_count); |
| 8370 | } |
| 8371 | EXPORT_SYMBOL_GPL(kvm_arch_has_assigned_device); |
| 8372 | |
Alex Williamson | e0f0bbc | 2013-10-30 11:02:30 -0600 | [diff] [blame] | 8373 | void kvm_arch_register_noncoherent_dma(struct kvm *kvm) |
| 8374 | { |
| 8375 | atomic_inc(&kvm->arch.noncoherent_dma_count); |
| 8376 | } |
| 8377 | EXPORT_SYMBOL_GPL(kvm_arch_register_noncoherent_dma); |
| 8378 | |
| 8379 | void kvm_arch_unregister_noncoherent_dma(struct kvm *kvm) |
| 8380 | { |
| 8381 | atomic_dec(&kvm->arch.noncoherent_dma_count); |
| 8382 | } |
| 8383 | EXPORT_SYMBOL_GPL(kvm_arch_unregister_noncoherent_dma); |
| 8384 | |
| 8385 | bool kvm_arch_has_noncoherent_dma(struct kvm *kvm) |
| 8386 | { |
| 8387 | return atomic_read(&kvm->arch.noncoherent_dma_count); |
| 8388 | } |
| 8389 | EXPORT_SYMBOL_GPL(kvm_arch_has_noncoherent_dma); |
| 8390 | |
Alex Williamson | 14717e2 | 2016-05-05 11:58:35 -0600 | [diff] [blame] | 8391 | bool kvm_arch_has_irq_bypass(void) |
| 8392 | { |
| 8393 | return kvm_x86_ops->update_pi_irte != NULL; |
| 8394 | } |
| 8395 | |
Feng Wu | 8727688 | 2015-09-18 22:29:40 +0800 | [diff] [blame] | 8396 | int kvm_arch_irq_bypass_add_producer(struct irq_bypass_consumer *cons, |
| 8397 | struct irq_bypass_producer *prod) |
| 8398 | { |
| 8399 | struct kvm_kernel_irqfd *irqfd = |
| 8400 | container_of(cons, struct kvm_kernel_irqfd, consumer); |
| 8401 | |
Alex Williamson | 14717e2 | 2016-05-05 11:58:35 -0600 | [diff] [blame] | 8402 | irqfd->producer = prod; |
Feng Wu | 8727688 | 2015-09-18 22:29:40 +0800 | [diff] [blame] | 8403 | |
Alex Williamson | 14717e2 | 2016-05-05 11:58:35 -0600 | [diff] [blame] | 8404 | return kvm_x86_ops->update_pi_irte(irqfd->kvm, |
| 8405 | prod->irq, irqfd->gsi, 1); |
Feng Wu | 8727688 | 2015-09-18 22:29:40 +0800 | [diff] [blame] | 8406 | } |
| 8407 | |
| 8408 | void kvm_arch_irq_bypass_del_producer(struct irq_bypass_consumer *cons, |
| 8409 | struct irq_bypass_producer *prod) |
| 8410 | { |
| 8411 | int ret; |
| 8412 | struct kvm_kernel_irqfd *irqfd = |
| 8413 | container_of(cons, struct kvm_kernel_irqfd, consumer); |
| 8414 | |
Feng Wu | 8727688 | 2015-09-18 22:29:40 +0800 | [diff] [blame] | 8415 | WARN_ON(irqfd->producer != prod); |
| 8416 | irqfd->producer = NULL; |
| 8417 | |
| 8418 | /* |
| 8419 | * When producer of consumer is unregistered, we change back to |
| 8420 | * remapped mode, so we can re-use the current implementation |
| 8421 | * when the irq is masked/disabed or the consumer side (KVM |
| 8422 | * int this case doesn't want to receive the interrupts. |
| 8423 | */ |
| 8424 | ret = kvm_x86_ops->update_pi_irte(irqfd->kvm, prod->irq, irqfd->gsi, 0); |
| 8425 | if (ret) |
| 8426 | printk(KERN_INFO "irq bypass consumer (token %p) unregistration" |
| 8427 | " fails: %d\n", irqfd->consumer.token, ret); |
| 8428 | } |
| 8429 | |
| 8430 | int kvm_arch_update_irqfd_routing(struct kvm *kvm, unsigned int host_irq, |
| 8431 | uint32_t guest_irq, bool set) |
| 8432 | { |
| 8433 | if (!kvm_x86_ops->update_pi_irte) |
| 8434 | return -EINVAL; |
| 8435 | |
| 8436 | return kvm_x86_ops->update_pi_irte(kvm, host_irq, guest_irq, set); |
| 8437 | } |
| 8438 | |
Feng Wu | 52004014 | 2016-01-25 16:53:33 +0800 | [diff] [blame] | 8439 | bool kvm_vector_hashing_enabled(void) |
| 8440 | { |
| 8441 | return vector_hashing; |
| 8442 | } |
| 8443 | EXPORT_SYMBOL_GPL(kvm_vector_hashing_enabled); |
| 8444 | |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 8445 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_exit); |
Jason Wang | 931c33b | 2015-09-15 14:41:58 +0800 | [diff] [blame] | 8446 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_fast_mmio); |
Marcelo Tosatti | 229456f | 2009-06-17 09:22:14 -0300 | [diff] [blame] | 8447 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_inj_virq); |
| 8448 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_page_fault); |
| 8449 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_msr); |
| 8450 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_cr); |
Joerg Roedel | 0ac406d | 2009-10-09 16:08:27 +0200 | [diff] [blame] | 8451 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmrun); |
Joerg Roedel | d8cabdd | 2009-10-09 16:08:28 +0200 | [diff] [blame] | 8452 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit); |
Joerg Roedel | 17897f3 | 2009-10-09 16:08:29 +0200 | [diff] [blame] | 8453 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_vmexit_inject); |
Joerg Roedel | 236649d | 2009-10-09 16:08:30 +0200 | [diff] [blame] | 8454 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intr_vmexit); |
Joerg Roedel | ec1ff79 | 2009-10-09 16:08:31 +0200 | [diff] [blame] | 8455 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_invlpga); |
Joerg Roedel | 532a46b | 2009-10-09 16:08:32 +0200 | [diff] [blame] | 8456 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_skinit); |
Joerg Roedel | 2e554e8 | 2010-02-24 18:59:14 +0100 | [diff] [blame] | 8457 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_nested_intercepts); |
Yoshihiro YUNOMAE | 489223e | 2013-06-12 16:43:44 +0900 | [diff] [blame] | 8458 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_write_tsc_offset); |
Radim Krčmář | 7b46268 | 2014-08-21 18:08:09 +0200 | [diff] [blame] | 8459 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_ple_window); |
Kai Huang | 843e433 | 2015-01-28 10:54:28 +0800 | [diff] [blame] | 8460 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pml_full); |
Feng Wu | efc6440 | 2015-09-18 22:29:51 +0800 | [diff] [blame] | 8461 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_pi_irte_update); |
Suravee Suthikulpanit | 18f40c5 | 2016-05-04 14:09:48 -0500 | [diff] [blame] | 8462 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_unaccelerated_access); |
| 8463 | EXPORT_TRACEPOINT_SYMBOL_GPL(kvm_avic_incomplete_ipi); |